-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtesi.drawio
3589 lines (3589 loc) · 727 KB
/
tesi.drawio
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<mxfile host="app.diagrams.net" modified="2022-12-01T07:51:51.027Z" agent="5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36" etag="LLzO6Zn0mozNnRK1xYMf" version="20.6.0" type="github" pages="15">
<diagram id="hdZx6P8LRJRJxtUfOlNM" name="8-kmm">
<mxGraphModel dx="1426" dy="819" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="UgGLIutJKbKIAoUDtqfj-1" value="" style="endArrow=none;html=1;strokeWidth=2;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="220" y="328" as="sourcePoint" />
<mxPoint x="220" y="187" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UgGLIutJKbKIAoUDtqfj-2" value="VIEW" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="170" y="185.5" width="50" height="20" as="geometry" />
</mxCell>
<mxCell id="UgGLIutJKbKIAoUDtqfj-3" value="" style="endArrow=none;html=1;strokeWidth=2;rounded=0;strokeColor=#000000;entryX=0.987;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" target="UgGLIutJKbKIAoUDtqfj-4" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="219" y="530" as="sourcePoint" />
<mxPoint x="220" y="330" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UgGLIutJKbKIAoUDtqfj-4" value="BUSINESS<br><div style="text-align: right;"><span style="background-color: initial;">LOGIC</span></div>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="140" y="350" width="80" height="30" as="geometry" />
</mxCell>
<mxCell id="Pdn0QqkjSusynj_vJayC-1" value="" style="endArrow=none;html=1;strokeWidth=2;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="534" y="267.5" as="sourcePoint" />
<mxPoint x="534" y="227.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="Pdn0QqkjSusynj_vJayC-2" value="" style="endArrow=none;html=1;strokeWidth=2;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="534" y="317.5" as="sourcePoint" />
<mxPoint x="534" y="277.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="Pdn0QqkjSusynj_vJayC-3" value="Imperative UI<br><div style="text-align: left;"><span style="background-color: initial;">Toolkit</span></div>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="530" y="227.5" width="90" height="30" as="geometry" />
</mxCell>
<mxCell id="Pdn0QqkjSusynj_vJayC-4" value="Declarative UI<br><div style="text-align: left;"><span style="background-color: initial;">Toolkit</span></div>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="530" y="277.5" width="90" height="30" as="geometry" />
</mxCell>
<mxCell id="LDotGmCRF9YZUuTk6oFZ-2" value="<span style="font-size: 14px;">Presentation</span>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=14;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="240" y="380" width="270" height="40" as="geometry" />
</mxCell>
<mxCell id="LDotGmCRF9YZUuTk6oFZ-4" value="<span style="font-size: 14px;">Model</span>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=14;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="240" y="430" width="270" height="40" as="geometry" />
</mxCell>
<mxCell id="LDotGmCRF9YZUuTk6oFZ-5" value="<span style="font-size: 14px;">Network</span>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=14;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="240" y="480" width="130" height="40" as="geometry" />
</mxCell>
<mxCell id="LDotGmCRF9YZUuTk6oFZ-6" value="<span style="font-size: 14px;">Storage</span>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=14;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="380" y="480" width="130" height="40" as="geometry" />
</mxCell>
<mxCell id="LDotGmCRF9YZUuTk6oFZ-10" value="<font style="font-size: 14px;">Interface Builder + UIViewController</font>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=14;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="240" y="227.5" width="120" height="40" as="geometry" />
</mxCell>
<mxCell id="LDotGmCRF9YZUuTk6oFZ-11" value="<span style="font-size: 14px;">SwiftUI</span>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=14;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="240" y="277.5" width="120" height="40" as="geometry" />
</mxCell>
<mxCell id="LDotGmCRF9YZUuTk6oFZ-17" value="<font style="font-size: 14px;">XML Layout + Activity</font>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=14;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="390" y="227.5" width="120" height="40" as="geometry" />
</mxCell>
<mxCell id="LDotGmCRF9YZUuTk6oFZ-18" value="<font style="font-size: 14px;">Jetpack Compose</font>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=14;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="390" y="277.5" width="120" height="40" as="geometry" />
</mxCell>
<mxCell id="KnQ6LfaWhDNCqp7mCphB-1" value="Shared Code" style="swimlane;strokeColor=#000000;fontSize=14;fillColor=#FFD966;fontStyle=3" parent="1" vertex="1">
<mxGeometry x="230" y="350" width="290" height="180" as="geometry" />
</mxCell>
<mxCell id="KnQ6LfaWhDNCqp7mCphB-2" value="Native Code" style="swimlane;strokeColor=#000000;fontSize=14;fillColor=#FFD966;fontStyle=3" parent="1" vertex="1">
<mxGeometry x="230" y="187.5" width="140" height="140" as="geometry" />
</mxCell>
<mxCell id="KnQ6LfaWhDNCqp7mCphB-3" value="Native Code" style="swimlane;strokeColor=#000000;fontSize=14;fillColor=#FFD966;fontStyle=3" parent="1" vertex="1">
<mxGeometry x="380" y="187.5" width="140" height="140" as="geometry" />
</mxCell>
<mxCell id="KnQ6LfaWhDNCqp7mCphB-4" value="" style="shape=image;verticalLabelPosition=bottom;labelBackgroundColor=default;verticalAlign=top;aspect=fixed;imageAspect=0;image=https://www.pngplay.com/wp-content/uploads/9/Android-Download-Free-PNG.png;" parent="1" vertex="1">
<mxGeometry x="470" y="150" width="100.01" height="75" as="geometry" />
</mxCell>
<mxCell id="KnQ6LfaWhDNCqp7mCphB-5" value="" style="shape=image;verticalLabelPosition=bottom;labelBackgroundColor=default;verticalAlign=top;aspect=fixed;imageAspect=0;image=https://upload.wikimedia.org/wikipedia/commons/a/ab/Apple-logo.png;strokeColor=#000000;" parent="1" vertex="1">
<mxGeometry x="335" y="157.5" width="50" height="50" as="geometry" />
</mxCell>
<mxCell id="KnQ6LfaWhDNCqp7mCphB-6" value="" style="shape=image;verticalLabelPosition=bottom;labelBackgroundColor=default;verticalAlign=top;aspect=fixed;imageAspect=0;image=https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Kotlin_Icon.png/1200px-Kotlin_Icon.png;" parent="1" vertex="1">
<mxGeometry x="505.01" y="340" width="30" height="30" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="-KRhnopRJ0bwVoLISsUi" name="11-cicd">
<mxGraphModel dx="1426" dy="819" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="x-TBb6uTDjNG0q6MgV5P-51" value="<i style="font-size: 13px;"><b>dev</b></i>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=13;" parent="1" vertex="1">
<mxGeometry x="110" y="185" width="50" height="30" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-8" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="zvR7ELOfTeRtxZ8-Dyfo-1" target="zvR7ELOfTeRtxZ8-Dyfo-2" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-1" value="<b style="font-size: 13px;"><i style="font-size: 13px;">.pre</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#fff2cc;" parent="1" vertex="1">
<mxGeometry x="166" y="185" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-9" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="zvR7ELOfTeRtxZ8-Dyfo-2" target="zvR7ELOfTeRtxZ8-Dyfo-3" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-2" value="<b style="font-size: 13px;"><i style="font-size: 13px;">build</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="166" y="275" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-10" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="zvR7ELOfTeRtxZ8-Dyfo-3" target="zvR7ELOfTeRtxZ8-Dyfo-4" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-3" value="<b style="font-size: 13px;"><i style="font-size: 13px;">test:unit</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="166" y="365" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-11" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="zvR7ELOfTeRtxZ8-Dyfo-4" target="zvR7ELOfTeRtxZ8-Dyfo-5" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-4" value="<b style="font-size: 13px;"><i style="font-size: 13px;">test:ui</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="166" y="455" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-12" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="zvR7ELOfTeRtxZ8-Dyfo-5" target="zvR7ELOfTeRtxZ8-Dyfo-6" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-5" value="<b style="font-size: 13px;"><i style="font-size: 13px;">release:alpha</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="166" y="545" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-13" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="zvR7ELOfTeRtxZ8-Dyfo-6" target="zvR7ELOfTeRtxZ8-Dyfo-7" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-6" value="<b style="font-size: 13px;"><i style="font-size: 13px;">release:beta</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="166" y="660" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-7" value="<b style="font-size: 13px;"><i style="font-size: 13px;">release:prod</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="166" y="770" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-20" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="zvR7ELOfTeRtxZ8-Dyfo-14" target="zvR7ELOfTeRtxZ8-Dyfo-17" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-23" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="zvR7ELOfTeRtxZ8-Dyfo-14" target="zvR7ELOfTeRtxZ8-Dyfo-16" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="339.5" y="215" as="targetPoint" />
<Array as="points">
<mxPoint x="464.5" y="255" />
<mxPoint x="363.5" y="255" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-24" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="zvR7ELOfTeRtxZ8-Dyfo-14" target="zvR7ELOfTeRtxZ8-Dyfo-18" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="464.5" y="255" />
<mxPoint x="565.5" y="255" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-14" value="<b style="font-size: 13px;"><i style="font-size: 13px;">base-android</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#fff2cc;" parent="1" vertex="1">
<mxGeometry x="419.5" y="195" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-21" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="zvR7ELOfTeRtxZ8-Dyfo-15" target="zvR7ELOfTeRtxZ8-Dyfo-18" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-15" value="<b style="font-size: 13px;"><i style="font-size: 13px;">base-ios</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#fff2cc;" parent="1" vertex="1">
<mxGeometry x="520.5" y="195" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-45" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="zvR7ELOfTeRtxZ8-Dyfo-16" target="Jr3qG0rcFjKLJbuQsa5G-1" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="363.5" y="405" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-16" value="<b style="font-size: 13px;"><i style="font-size: 13px;">android</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="318.5" y="285" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-43" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="zvR7ELOfTeRtxZ8-Dyfo-17" target="zvR7ELOfTeRtxZ8-Dyfo-25" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-17" value="<b style="font-size: 13px;"><i style="font-size: 13px;">shared</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="419.5" y="285" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-47" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="zvR7ELOfTeRtxZ8-Dyfo-18" target="Jr3qG0rcFjKLJbuQsa5G-3" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="565.5" y="405" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-18" value="<b style="font-size: 13px;"><i style="font-size: 13px;">ios</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="520.5" y="285" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-19" value="<b style="font-size: 13px;"><i style="font-size: 13px;">packages (apk, aar, ipa)</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="637.5" y="285" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-49" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="zvR7ELOfTeRtxZ8-Dyfo-25" target="zvR7ELOfTeRtxZ8-Dyfo-26" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="339.5" y="395" as="targetPoint" />
<Array as="points">
<mxPoint x="465" y="440" />
<mxPoint x="364" y="440" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-51" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="zvR7ELOfTeRtxZ8-Dyfo-25" target="zvR7ELOfTeRtxZ8-Dyfo-28" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="589.5" y="395" as="targetPoint" />
<Array as="points">
<mxPoint x="465" y="440" />
<mxPoint x="566" y="440" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-25" value="<b style="font-size: 13px;"><i style="font-size: 13px;">shared</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="419.5" y="375" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-52" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="zvR7ELOfTeRtxZ8-Dyfo-26" target="zvR7ELOfTeRtxZ8-Dyfo-29" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-26" value="<b style="font-size: 13px;"><i style="font-size: 13px;">android</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="318.5" y="465" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-53" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="zvR7ELOfTeRtxZ8-Dyfo-28" target="zvR7ELOfTeRtxZ8-Dyfo-31" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-28" value="<b style="font-size: 13px;"><i style="font-size: 13px;">ios</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="520.5" y="465" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-54" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="zvR7ELOfTeRtxZ8-Dyfo-29" target="zvR7ELOfTeRtxZ8-Dyfo-35" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-29" value="<b style="font-size: 13px;"><i style="font-size: 13px;">android</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="318.5" y="555" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-55" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="zvR7ELOfTeRtxZ8-Dyfo-31" target="zvR7ELOfTeRtxZ8-Dyfo-36" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-31" value="<b style="font-size: 13px;"><i style="font-size: 13px;">ios</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="520.5" y="555" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-32" value="<b style="font-size: 13px;"><i style="font-size: 13px;">codecov/test report</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="637.5" y="375" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-33" value="<b style="font-size: 13px;"><i style="font-size: 13px;">test report, screenshots</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="637.5" y="465" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-34" value="<b style="font-size: 13px;"><i style="font-size: 13px;">app bundles (aab, ipa)</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="637.5" y="555" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-56" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="zvR7ELOfTeRtxZ8-Dyfo-35" target="zvR7ELOfTeRtxZ8-Dyfo-38" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-35" value="<b style="font-size: 13px;"><i style="font-size: 13px;">android</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="318.5" y="670" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-57" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="zvR7ELOfTeRtxZ8-Dyfo-36" target="zvR7ELOfTeRtxZ8-Dyfo-39" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-36" value="<b style="font-size: 13px;"><i style="font-size: 13px;">ios</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="520" y="670" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-38" value="<b style="font-size: 13px;"><i style="font-size: 13px;">android</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="318.5" y="780" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-39" value="<b style="font-size: 13px;"><i style="font-size: 13px;">ios</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="520" y="780" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-41" value="<b style="font-size: 13px;"><i style="font-size: 13px;">app bundles (aab, ipa)</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="637.5" y="670" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-42" value="<b style="font-size: 13px;"><i style="font-size: 13px;">app bundles (aab, ipa)</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="637.5" y="780" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-63" value="<i style="font-size: 13px;"><b>test</b></i>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=13;" parent="1" vertex="1">
<mxGeometry x="110" y="660" width="50" height="30" as="geometry" />
</mxCell>
<mxCell id="zvR7ELOfTeRtxZ8-Dyfo-64" value="<i style="font-size: 13px;"><b>main</b></i>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=13;" parent="1" vertex="1">
<mxGeometry x="100" y="770" width="50" height="30" as="geometry" />
</mxCell>
<mxCell id="Jr3qG0rcFjKLJbuQsa5G-2" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="Jr3qG0rcFjKLJbuQsa5G-1" target="zvR7ELOfTeRtxZ8-Dyfo-26" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Jr3qG0rcFjKLJbuQsa5G-1" value="<b style="font-size: 13px;"><i style="font-size: 13px;">android</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="318.5" y="375" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="Jr3qG0rcFjKLJbuQsa5G-4" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="Jr3qG0rcFjKLJbuQsa5G-3" target="zvR7ELOfTeRtxZ8-Dyfo-28" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Jr3qG0rcFjKLJbuQsa5G-3" value="<b style="font-size: 13px;"><i style="font-size: 13px;">ios</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="520.5" y="375" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="D9876S19HfbM5bV6choY-1" value="Stages" style="swimlane;fillColor=#FFD966;fontSize=14;fontStyle=3" parent="1" vertex="1">
<mxGeometry x="150" y="150" width="150" height="690" as="geometry" />
</mxCell>
<mxCell id="D9876S19HfbM5bV6choY-5" value="Jobs" style="swimlane;fillColor=#FFD966;fontSize=14;fontStyle=3" parent="1" vertex="1">
<mxGeometry x="310" y="150" width="310" height="690" as="geometry" />
</mxCell>
<mxCell id="D9876S19HfbM5bV6choY-6" value="Artifacts" style="swimlane;fillColor=#FFD966;fontSize=14;fontStyle=3" parent="1" vertex="1">
<mxGeometry x="630" y="150" width="110" height="690" as="geometry" />
</mxCell>
<mxCell id="D9876S19HfbM5bV6choY-7" value="" style="endArrow=none;html=1;rounded=0;fontSize=13;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="140" y="600" as="sourcePoint" />
<mxPoint x="140" y="190" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="D9876S19HfbM5bV6choY-8" value="" style="endArrow=none;html=1;rounded=0;fontSize=13;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="140" y="720" as="sourcePoint" />
<mxPoint x="140" y="660" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="D9876S19HfbM5bV6choY-9" value="" style="endArrow=none;html=1;rounded=0;fontSize=13;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="140" y="835" as="sourcePoint" />
<mxPoint x="140" y="775" as="targetPoint" />
</mxGeometry>
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="gV0JRaA_5-7KrptA2NpW" name="14-mockup1">
<mxGraphModel dx="1426" dy="819" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="O85LoBK4Xxi0jYtrbFAn-156" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="98.75" y="260" width="190" height="320" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-127" value="Lorem Ipsum is simply&nbsp;<br><span style="background-color: initial;">dummy text of the <br>printing and typesetting<br>industry.</span>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=11;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="619.5" y="318.5" width="140" height="70" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-19" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="104.75" y="680" width="190" height="320" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-13" value="" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="324.25" y="680" width="190" height="320" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-11" value="********" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.pwField;strokeColor=#999999;mainText=;align=left;fontColor=#666666;fontSize=17;spacingLeft=3;" parent="1" vertex="1">
<mxGeometry x="344.25" y="830" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-14" value="" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#999999;" parent="1" vertex="1">
<mxGeometry x="344.25" y="770" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-15" value="<i>Username</i>" style="text;html=1;align=left;verticalAlign=bottom;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="344.25" y="740" width="80" height="30" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-16" value="<i>Password</i>" style="text;html=1;align=left;verticalAlign=bottom;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="344.25" y="800" width="80" height="30" as="geometry" />
</mxCell>
<mxCell id="bHZ-7I8HP_9Ybfboiqb0-31" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=19;fontColor=#000000;fillColor=#e1d5e7;strokeColor=#000000;entryX=0.838;entryY=0.998;entryDx=0;entryDy=0;entryPerimeter=0;strokeWidth=2;jumpStyle=arc;" parent="1" source="O85LoBK4Xxi0jYtrbFAn-17" target="7jrRo_I1MsU-UXWrBlhk-14" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="310" y="895" />
<mxPoint x="310" y="1050" />
<mxPoint x="267" y="1050" />
</Array>
<mxPoint x="190" y="1040" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-17" value="<font color="#999999">Accedi</font>" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.buttons.button;strokeColor=#999999;fontColor=#ffffff;mainText=;buttonStyle=round;fontSize=17;fontStyle=1;fillColor=#FFFFFF;whiteSpace=wrap;" parent="1" vertex="1">
<mxGeometry x="369.25" y="880" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-18" value="<font size="1" style=""><i style="font-size: 24px;">Ebook-PoC</i></font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="344.25" y="710" width="150" height="40" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-33" value="Cerca" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.searchBox;strokeColor=#999999;mainText=;strokeColor2=#008cff;fontColor=#666666;fontSize=17;align=left;spacingLeft=3;fillColor=#FFFFFF;" parent="1" vertex="1">
<mxGeometry x="144.75" y="690" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="bHZ-7I8HP_9Ybfboiqb0-32" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=19;fontColor=#000000;entryX=0.003;entryY=0.774;entryDx=0;entryDy=0;entryPerimeter=0;fillColor=#e1d5e7;strokeColor=#000000;jumpStyle=arc;strokeWidth=2;" parent="1" source="O85LoBK4Xxi0jYtrbFAn-34" target="O85LoBK4Xxi0jYtrbFAn-94" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="90" y="705" />
<mxPoint x="90" y="620" />
<mxPoint x="315" y="620" />
<mxPoint x="315" y="538" />
<mxPoint x="325" y="538" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-34" value="" style="html=1;verticalLabelPosition=bottom;align=left;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#999999;shadow=0;dashed=0;shape=mxgraph.ios7.icons.most_viewed;pointerEvents=1;fontSize=24;fontColor=#999999;fillColor=#FFFFFF;" parent="1" vertex="1">
<mxGeometry x="108.75" y="693.6" width="28.2" height="22.8" as="geometry" />
</mxCell>
<mxCell id="bHZ-7I8HP_9Ybfboiqb0-37" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=19;fontColor=#000000;entryX=0.003;entryY=0.476;entryDx=0;entryDy=0;fillColor=#e1d5e7;strokeColor=#000000;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryPerimeter=0;strokeWidth=2;jumpStyle=arc;" parent="1" source="A559MiaNzECCN0CY55F5-2" target="7jrRo_I1MsU-UXWrBlhk-11" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="59" y="764.5" as="targetPoint" />
<Array as="points">
<mxPoint x="80" y="776" />
<mxPoint x="80" y="411" />
</Array>
<mxPoint x="129.75" y="805" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-67" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="324.5" y="260" width="190" height="320" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-68" value="Cerca" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.searchBox;strokeColor=#999999;mainText=;strokeColor2=#008cff;fontColor=#666666;fontSize=17;align=left;spacingLeft=3;fillColor=#FFFFFF;" parent="1" vertex="1">
<mxGeometry x="364.5" y="270" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-69" value="" style="html=1;verticalLabelPosition=bottom;align=left;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#999999;shadow=0;dashed=0;shape=mxgraph.ios7.icons.most_viewed;pointerEvents=1;fontSize=24;fontColor=#999999;fillColor=#FFFFFF;" parent="1" vertex="1">
<mxGeometry x="328.5" y="273.6" width="28.2" height="22.8" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-70" value="<i style="font-size: 14px;">Le mie riviste</i>" style="text;html=1;align=left;verticalAlign=bottom;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=14;" parent="1" vertex="1">
<mxGeometry x="334.5" y="310" width="110" height="30" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-71" value="" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#999999;" parent="1" vertex="1">
<mxGeometry x="349.5" y="350" width="60" height="70" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-72" value="<i><font color="#000000">Item</font></i>" style="text;html=1;align=center;verticalAlign=bottom;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=11;fontColor=#999999;" parent="1" vertex="1">
<mxGeometry x="359.5" y="410" width="40" height="30" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-73" value="" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.book_journal;fontSize=11;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="358.5" y="360" width="41" height="49" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-74" value="" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#999999;" parent="1" vertex="1">
<mxGeometry x="429.5" y="350" width="60" height="70" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-75" value="<i><font color="#000000">Item</font></i>" style="text;html=1;align=center;verticalAlign=bottom;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=11;fontColor=#999999;" parent="1" vertex="1">
<mxGeometry x="439.5" y="410" width="40" height="30" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-76" value="" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.book_journal;fontSize=11;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="438.5" y="360" width="41" height="49" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-77" value="" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#999999;" parent="1" vertex="1">
<mxGeometry x="349.5" y="450" width="60" height="70" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-78" value="<i><font color="#000000">Item</font></i>" style="text;html=1;align=center;verticalAlign=bottom;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=11;fontColor=#999999;" parent="1" vertex="1">
<mxGeometry x="359.5" y="510" width="40" height="30" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-79" value="" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.book_journal;fontSize=11;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="358.5" y="460" width="41" height="49" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-80" value="" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#999999;" parent="1" vertex="1">
<mxGeometry x="429.5" y="450" width="60" height="70" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-81" value="<i><font color="#000000">Item</font></i>" style="text;html=1;align=center;verticalAlign=bottom;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=11;fontColor=#999999;" parent="1" vertex="1">
<mxGeometry x="439.5" y="510" width="40" height="30" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-82" value="" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.book_journal;fontSize=11;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="438.5" y="460" width="41" height="49" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-83" value="" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#999999;" parent="1" vertex="1">
<mxGeometry x="349.5" y="550" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-84" value="" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.book_journal;fontSize=11;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="358.5" y="560" width="41" height="20" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-85" value="" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#999999;" parent="1" vertex="1">
<mxGeometry x="429.5" y="550" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-86" value="" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.book_journal;fontSize=11;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="438.5" y="560" width="41" height="20" as="geometry" />
</mxCell>
<mxCell id="bHZ-7I8HP_9Ybfboiqb0-35" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=19;fontColor=#000000;fillColor=#e1d5e7;strokeColor=#000000;exitX=-0.03;exitY=0.565;exitDx=0;exitDy=0;exitPerimeter=0;strokeWidth=2;jumpStyle=arc;" parent="1" source="O85LoBK4Xxi0jYtrbFAn-97" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="305" y="327" />
<mxPoint x="305" y="840" />
</Array>
<mxPoint x="300" y="840" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="bHZ-7I8HP_9Ybfboiqb0-38" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=19;fontColor=#000000;entryX=0.709;entryY=-0.002;entryDx=0;entryDy=0;fillColor=#e1d5e7;strokeColor=#000000;jumpStyle=arc;entryPerimeter=0;strokeWidth=2;" parent="1" source="O85LoBK4Xxi0jYtrbFAn-98" target="7jrRo_I1MsU-UXWrBlhk-13" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="395" y="620" />
<mxPoint x="461" y="620" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-94" value="" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.containers.rrect;rSize=0;strokeColor=#666666;fontSize=11;fontColor=#000000;fillColor=default;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="324.5" y="260" width="140" height="320" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-95" value="About&nbsp;" style="strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;shadow=0;dashed=0;align=right;html=1;shape=mxgraph.mockup.containers.rrect;rSize=0;fontSize=17;fontColor=#666666;fontStyle=1;resizeWidth=1;" parent="O85LoBK4Xxi0jYtrbFAn-94" vertex="1">
<mxGeometry width="140" height="26" relative="1" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-96" value="Preferiti&nbsp;" style="strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;shadow=0;dashed=0;align=right;html=1;shape=mxgraph.mockup.containers.rrect;rSize=0;fontSize=17;fontColor=#666666;fontStyle=1;resizeWidth=1;" parent="O85LoBK4Xxi0jYtrbFAn-94" vertex="1">
<mxGeometry width="140" height="26" relative="1" as="geometry">
<mxPoint y="26" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-97" value="I miei libri" style="strokeWidth=1;shadow=0;dashed=0;align=right;html=1;shape=mxgraph.mockup.containers.rrect;rSize=0;fontSize=17;fontColor=#ffffff;fontStyle=1;fillColor=#B3B3B3;strokeColor=#000000;resizeWidth=1;" parent="O85LoBK4Xxi0jYtrbFAn-94" vertex="1">
<mxGeometry width="140" height="26" relative="1" as="geometry">
<mxPoint y="52" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-98" value="Esci" style="strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.containers.rrect;rSize=0;fontSize=17;fontColor=#666666;fontStyle=1;resizeWidth=1;" parent="O85LoBK4Xxi0jYtrbFAn-94" vertex="1">
<mxGeometry y="1" width="140" height="26" relative="1" as="geometry">
<mxPoint y="-26" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-178" value="Impostazioni" style="strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;shadow=0;dashed=0;align=right;html=1;shape=mxgraph.mockup.containers.rrect;rSize=0;fontSize=17;fontColor=#666666;fontStyle=1;resizeWidth=1;" parent="O85LoBK4Xxi0jYtrbFAn-94" vertex="1">
<mxGeometry y="79" width="140" height="26" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-182" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.heart;fontSize=11;fontColor=#000000;strokeColor=#000000;fillColor=#999999;gradientColor=none;opacity=70;" parent="O85LoBK4Xxi0jYtrbFAn-94" vertex="1">
<mxGeometry x="10" y="30" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-183" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#999999;shadow=0;dashed=0;shape=mxgraph.ios7.icons.user;fontSize=19;fontColor=#000000;fillColor=#FFFFFF;gradientColor=none;opacity=70;" parent="O85LoBK4Xxi0jYtrbFAn-94" vertex="1">
<mxGeometry x="10" y="3" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-184" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#999999;shadow=0;dashed=0;shape=mxgraph.ios7.icons.settings;fontSize=19;fontColor=#000000;fillColor=#FFFFFF;gradientColor=none;opacity=70;" parent="O85LoBK4Xxi0jYtrbFAn-94" vertex="1">
<mxGeometry x="10" y="83" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-99" value="" style="rounded=0;whiteSpace=wrap;html=1;fontSize=11;fontColor=#000000;strokeColor=#000000;fillColor=#999999;gradientColor=none;opacity=70;" parent="1" vertex="1">
<mxGeometry x="464.5" y="260" width="50" height="320" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-103" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="549.5" y="260" width="190" height="320" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-107" value="" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#999999;" parent="1" vertex="1">
<mxGeometry x="559.5" y="319" width="60" height="70" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-108" value="<i><font color="#000000">Item</font></i>" style="text;html=1;align=center;verticalAlign=bottom;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=11;fontColor=#999999;" parent="1" vertex="1">
<mxGeometry x="569.5" y="379" width="40" height="30" as="geometry" />
</mxCell>
<mxCell id="bHZ-7I8HP_9Ybfboiqb0-34" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=19;fontColor=#000000;entryX=1.013;entryY=0.152;entryDx=0;entryDy=0;fillColor=#e1d5e7;strokeColor=#000000;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryPerimeter=0;strokeWidth=2;jumpStyle=arc;" parent="1" source="O85LoBK4Xxi0jYtrbFAn-107" target="7jrRo_I1MsU-UXWrBlhk-11" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="175" y="250" as="targetPoint" />
<Array as="points">
<mxPoint x="535" y="354" />
<mxPoint x="535" y="220" />
<mxPoint x="310" y="220" />
<mxPoint x="310" y="284" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-109" value="" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.book_journal;fontSize=11;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="568.5" y="329" width="41" height="49" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-113" value="" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#999999;" parent="1" vertex="1">
<mxGeometry x="559.5" y="430" width="60" height="70" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-114" value="<i><font color="#000000">Item</font></i>" style="text;html=1;align=center;verticalAlign=bottom;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=11;fontColor=#999999;" parent="1" vertex="1">
<mxGeometry x="569.5" y="490" width="40" height="30" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-115" value="" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.book_journal;fontSize=11;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="568.5" y="440" width="41" height="49" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-128" value="Lorem Ipsum is simply&nbsp;<br><span style="background-color: initial;">dummy text of the <br>printing and typesetting<br>industry.</span>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=11;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="619.5" y="430" width="140" height="70" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-135" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.heart;fontSize=11;fontColor=#000000;strokeColor=#000000;fillColor=#999999;gradientColor=none;opacity=70;" parent="1" vertex="1">
<mxGeometry x="709.5" y="489" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-173" value="<font style="font-size: 19px;">L</font>orem Ipsum is simply&nbsp;<span style="background-color: initial;">dummy <br>text of the printing and typesetting<br>industry.<br>It was popularised in the 1960s <br>with the release of Letraset sheets <br>containing Lorem Ipsum passages, <br>and more recently with desktop <br>publishing software like Aldus <br>PageMaker including versions of <br>Lorem Ipsum.<br>Contrary to popular belief, Lorem <br>Ipsum is not simply random text. <br>It has roots in a piece of classical <br>Latin literature from 45 BC, <br>making it over 2000 years old.<br></span>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=11;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="111.25" y="348.5" width="190" height="220" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-174" value="" style="endArrow=none;html=1;rounded=0;fontSize=11;fontColor=#000000;curved=1;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="116.25" y="349.5" as="sourcePoint" />
<mxPoint x="276.25" y="349.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-175" value="1" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=11;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="178.75" y="555" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="bHZ-7I8HP_9Ybfboiqb0-25" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=19;fontColor=#000000;fillColor=#e1d5e7;strokeColor=#000000;entryX=0.224;entryY=-0.001;entryDx=0;entryDy=0;entryPerimeter=0;exitX=0.127;exitY=0.434;exitDx=0;exitDy=0;exitPerimeter=0;strokeWidth=2;jumpStyle=arc;" parent="1" source="O85LoBK4Xxi0jYtrbFAn-176" target="7jrRo_I1MsU-UXWrBlhk-10" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="80" y="280" />
<mxPoint x="80" y="210" />
<mxPoint x="359" y="210" />
</Array>
<mxPoint x="360" y="170" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-176" value="" style="html=1;verticalLabelPosition=bottom;align=left;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#999999;shadow=0;dashed=0;shape=mxgraph.ios7.icons.most_viewed;pointerEvents=1;fontSize=24;fontColor=#999999;fillColor=#FFFFFF;" parent="1" vertex="1">
<mxGeometry x="102.75" y="270" width="28.2" height="22.8" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-177" value="<i style="font-size: 14px;">Lorem Ipsum</i>" style="text;html=1;align=left;verticalAlign=bottom;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=14;" parent="1" vertex="1">
<mxGeometry x="148.75" y="318.5" width="110" height="30" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-185" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#999999;shadow=0;dashed=0;shape=mxgraph.ios7.icons.down;fontSize=19;fontColor=#000000;fillColor=#FFFFFF;gradientColor=none;opacity=70;" parent="1" vertex="1">
<mxGeometry x="258.75" y="268.65" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-186" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#999999;shadow=0;dashed=0;shape=mxgraph.ios7.icons.edit;fontSize=19;fontColor=#000000;fillColor=#FFFFFF;gradientColor=none;opacity=70;" parent="1" vertex="1">
<mxGeometry x="228.75" y="270" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="O85LoBK4Xxi0jYtrbFAn-187" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#999999;shadow=0;dashed=0;shape=mxgraph.ios7.icons.glasses;fontSize=19;fontColor=#000000;fillColor=#FFFFFF;gradientColor=none;opacity=70;" parent="1" vertex="1">
<mxGeometry x="191.25" y="272.65" width="30" height="12" as="geometry" />
</mxCell>
<mxCell id="saC0lkM0H2np4jDVo3HE-1" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.heart;fontSize=11;fontColor=#000000;strokeColor=#000000;fillColor=#999999;gradientColor=none;opacity=70;" parent="1" vertex="1">
<mxGeometry x="163.75" y="268.65" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="0OU2qZ-K5Hh0hn2c_LaC-1" value="1" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;fontSize=16;fillColor=none;strokeWidth=2;strokeColor=#000000;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="409.5" y="1050" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="0OU2qZ-K5Hh0hn2c_LaC-3" value="2" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;fontSize=16;fillColor=none;strokeWidth=2;strokeColor=#000000;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="190" y="1050" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="0OU2qZ-K5Hh0hn2c_LaC-4" value="3<span style="font-family: monospace; font-size: 0px; text-align: start;">%3CmxGraphModel%3E%3Croot%3E%3CmxCell%20id%3D%220%22%2F%3E%3CmxCell%20id%3D%221%22%20parent%3D%220%22%2F%3E%3CmxCell%20id%3D%222%22%20value%3D%221%22%20style%3D%22ellipse%3BwhiteSpace%3Dwrap%3Bhtml%3D1%3Baspect%3Dfixed%3BfontSize%3D16%3BfillColor%3Dnone%3BstrokeWidth%3D2%3B%22%20vertex%3D%221%22%20parent%3D%221%22%3E%3CmxGeometry%20x%3D%22800%22%20y%3D%22590%22%20width%3D%2220%22%20height%3D%2220%22%20as%3D%22geometry%22%2F%3E%3C%2FmxCell%3E%3C%2Froot%3E%3C%2FmxGraphModel%3E</span>" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;fontSize=16;fillColor=none;strokeWidth=2;strokeColor=#000000;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="409.25" y="180" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="0OU2qZ-K5Hh0hn2c_LaC-5" value="4" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;fontSize=16;fillColor=none;strokeWidth=2;strokeColor=#000000;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="183.75" y="180" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="0OU2qZ-K5Hh0hn2c_LaC-6" value="5" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;fontSize=16;fillColor=none;strokeWidth=2;strokeColor=#000000;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="634.5" y="180" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-1" value="" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="544.25" y="680" width="190" height="320" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-3" value="10" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#999999;" parent="1" vertex="1">
<mxGeometry x="629.25" y="760" width="90.75" height="20" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-4" value="<i>Dim. Testo</i>" style="text;html=1;align=left;verticalAlign=bottom;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="559" y="750" width="80" height="30" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-5" value="<i>Font Family</i>" style="text;html=1;align=left;verticalAlign=bottom;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="559.5" y="780" width="90" height="30" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-8" value="6" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;fontSize=16;fillColor=none;strokeWidth=2;strokeColor=#000000;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="629.25" y="1050" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-9" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shadow=0;dashed=0;strokeWidth=1;shape=mxgraph.android.phone2;strokeColor=#c0c0c0;fillColor=#000000;" parent="1" vertex="1">
<mxGeometry x="544.5" y="225" width="200" height="390" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-10" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shadow=0;dashed=0;strokeWidth=1;shape=mxgraph.android.phone2;strokeColor=#c0c0c0;fillColor=#000000;" parent="1" vertex="1">
<mxGeometry x="314.5" y="225" width="200" height="390" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-11" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shadow=0;dashed=0;strokeWidth=1;shape=mxgraph.android.phone2;strokeColor=#c0c0c0;fillColor=#000000;" parent="1" vertex="1">
<mxGeometry x="93.75" y="225" width="200" height="390" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-12" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shadow=0;dashed=0;strokeWidth=1;shape=mxgraph.android.phone2;strokeColor=#c0c0c0;fillColor=#000000;" parent="1" vertex="1">
<mxGeometry x="539.5" y="645" width="200" height="390" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-13" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shadow=0;dashed=0;strokeWidth=1;shape=mxgraph.android.phone2;strokeColor=#c0c0c0;fillColor=#000000;" parent="1" vertex="1">
<mxGeometry x="319.5" y="645" width="200" height="390" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-14" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shadow=0;dashed=0;strokeWidth=1;shape=mxgraph.android.phone2;strokeColor=#c0c0c0;fillColor=#000000;" parent="1" vertex="1">
<mxGeometry x="99.75" y="645" width="200" height="390" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-16" value="" style="html=1;verticalLabelPosition=bottom;align=left;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#999999;shadow=0;dashed=0;shape=mxgraph.ios7.icons.most_viewed;pointerEvents=1;fontSize=24;fontColor=#999999;fillColor=#FFFFFF;" parent="1" vertex="1">
<mxGeometry x="549.5" y="690" width="28.2" height="22.8" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-17" value="<i style="font-size: 14px;">Impostazioni</i>" style="text;html=1;align=left;verticalAlign=bottom;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=14;" parent="1" vertex="1">
<mxGeometry x="555.5" y="726.4" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-18" value="Calibri" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#999999;" parent="1" vertex="1">
<mxGeometry x="629.25" y="790" width="90.75" height="20" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-20" value="2.5" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#999999;" parent="1" vertex="1">
<mxGeometry x="629.75" y="825" width="90.75" height="20" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-21" value="<i>Margine Dx</i>" style="text;html=1;align=left;verticalAlign=bottom;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="559.5" y="815" width="80" height="30" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-22" value="<i>Margine Sx</i>" style="text;html=1;align=left;verticalAlign=bottom;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="560" y="845" width="80" height="30" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-23" value="2.5" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#999999;" parent="1" vertex="1">
<mxGeometry x="629.75" y="855" width="90.75" height="20" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-24" value="2.5" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#999999;" parent="1" vertex="1">
<mxGeometry x="630.25" y="890" width="90.75" height="20" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-25" value="<i>Margine Top</i>" style="text;html=1;align=left;verticalAlign=bottom;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="560" y="880" width="90" height="30" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-26" value="<i>Margine Bot.</i>" style="text;html=1;align=left;verticalAlign=bottom;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="560.5" y="910" width="90" height="30" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-27" value="2.5" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#999999;" parent="1" vertex="1">
<mxGeometry x="630.25" y="920" width="90.75" height="20" as="geometry" />
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-28" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=19;fontColor=#000000;fillColor=#e1d5e7;strokeColor=#000000;jumpStyle=arc;strokeWidth=2;exitX=1.006;exitY=0.458;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" source="O85LoBK4Xxi0jYtrbFAn-178" target="7jrRo_I1MsU-UXWrBlhk-12" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="490" y="351" />
<mxPoint x="490" y="460" />
<mxPoint x="530" y="460" />
<mxPoint x="530" y="840" />
</Array>
<mxPoint x="404.5" y="590" as="sourcePoint" />
<mxPoint x="471.29999999999995" y="654.22" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="7jrRo_I1MsU-UXWrBlhk-29" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=19;fontColor=#000000;fillColor=#e1d5e7;strokeColor=#000000;jumpStyle=arc;strokeWidth=2;" parent="1" target="7jrRo_I1MsU-UXWrBlhk-10" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="550" y="705" />
<mxPoint x="520" y="705" />
<mxPoint x="520" y="640" />
<mxPoint x="481" y="640" />
</Array>
<mxPoint x="550" y="701" as="sourcePoint" />
<mxPoint x="481.29999999999995" y="664.22" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="A559MiaNzECCN0CY55F5-1" value="Lorem Ipsum is simply&nbsp;<br><span style="background-color: initial;">dummy text of the <br>printing and typesetting<br>industry.</span>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=11;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="171.75" y="740" width="140" height="70" as="geometry" />
</mxCell>
<mxCell id="A559MiaNzECCN0CY55F5-2" value="" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#999999;" parent="1" vertex="1">
<mxGeometry x="111.75" y="740.5" width="60" height="70" as="geometry" />
</mxCell>
<mxCell id="A559MiaNzECCN0CY55F5-3" value="<i><font color="#000000">Item</font></i>" style="text;html=1;align=center;verticalAlign=bottom;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=11;fontColor=#999999;" parent="1" vertex="1">
<mxGeometry x="121.75" y="800.5" width="40" height="30" as="geometry" />
</mxCell>
<mxCell id="A559MiaNzECCN0CY55F5-4" value="" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.book_journal;fontSize=11;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="120.75" y="750.5" width="41" height="49" as="geometry" />
</mxCell>
<mxCell id="A559MiaNzECCN0CY55F5-5" value="" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#999999;" parent="1" vertex="1">
<mxGeometry x="111.75" y="851.5" width="60" height="70" as="geometry" />
</mxCell>
<mxCell id="A559MiaNzECCN0CY55F5-6" value="<i><font color="#000000">Item</font></i>" style="text;html=1;align=center;verticalAlign=bottom;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=11;fontColor=#999999;" parent="1" vertex="1">
<mxGeometry x="121.75" y="911.5" width="40" height="30" as="geometry" />
</mxCell>
<mxCell id="A559MiaNzECCN0CY55F5-7" value="" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.book_journal;fontSize=11;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="120.75" y="861.5" width="41" height="49" as="geometry" />
</mxCell>
<mxCell id="A559MiaNzECCN0CY55F5-8" value="" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#999999;" parent="1" vertex="1">
<mxGeometry x="111.25" y="961.5" width="60" height="40" as="geometry" />
</mxCell>
<mxCell id="A559MiaNzECCN0CY55F5-9" value="" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.book_journal;fontSize=11;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="120.25" y="971.5" width="41" height="30" as="geometry" />
</mxCell>
<mxCell id="A559MiaNzECCN0CY55F5-10" value="Lorem Ipsum is simply&nbsp;<br><span style="background-color: initial;">dummy text of the <br>printing and typesetting<br>industry.</span>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=11;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="171.75" y="851.5" width="140" height="70" as="geometry" />
</mxCell>
<mxCell id="A559MiaNzECCN0CY55F5-11" value="Lorem Ipsum is simply&nbsp;<br><span style="background-color: initial;">dummy text of the <br><br></span>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=11;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="171.75" y="971.5" width="140" height="50" as="geometry" />
</mxCell>
<mxCell id="A559MiaNzECCN0CY55F5-12" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.heart;fontSize=11;fontColor=#000000;strokeColor=#000000;fillColor=#999999;gradientColor=none;opacity=70;" parent="1" vertex="1">
<mxGeometry x="261.75" y="910.5" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="A559MiaNzECCN0CY55F5-13" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.heart;fontSize=11;fontColor=#000000;strokeColor=#000000;fillColor=#FFFFFF;gradientColor=none;opacity=70;" parent="1" vertex="1">
<mxGeometry x="261.75" y="796.5" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="A559MiaNzECCN0CY55F5-14" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.heart;fontSize=11;fontColor=#000000;strokeColor=#000000;fillColor=#999999;gradientColor=none;opacity=70;" parent="1" vertex="1">
<mxGeometry x="709.5" y="379" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="A559MiaNzECCN0CY55F5-15" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;jumpStyle=arc;orthogonalLoop=1;jettySize=auto;html=1;strokeColor=#000000;strokeWidth=2;fontColor=#000000;startArrow=none;startFill=0;" parent="1" source="O85LoBK4Xxi0jYtrbFAn-96" target="7jrRo_I1MsU-UXWrBlhk-9" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="500" y="299" />
<mxPoint x="500" y="420" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="A559MiaNzECCN0CY55F5-16" value="Cerca" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.searchBox;strokeColor=#999999;mainText=;strokeColor2=#008cff;fontColor=#666666;fontSize=17;align=left;spacingLeft=3;fillColor=#FFFFFF;" parent="1" vertex="1">
<mxGeometry x="591.5" y="263.65" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="A559MiaNzECCN0CY55F5-18" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;jumpStyle=arc;orthogonalLoop=1;jettySize=auto;html=1;strokeColor=#000000;strokeWidth=2;fontColor=#000000;startArrow=none;startFill=0;entryX=1.014;entryY=0.134;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="A559MiaNzECCN0CY55F5-17" target="7jrRo_I1MsU-UXWrBlhk-10" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A559MiaNzECCN0CY55F5-17" value="" style="html=1;verticalLabelPosition=bottom;align=left;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#999999;shadow=0;dashed=0;shape=mxgraph.ios7.icons.most_viewed;pointerEvents=1;fontSize=24;fontColor=#999999;fillColor=#FFFFFF;" parent="1" vertex="1">
<mxGeometry x="555.5" y="267.25" width="28.2" height="22.8" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="R8pAUmwOsVNKsxFh6yui" name="16-cicd-scheduled">
<mxGraphModel dx="1426" dy="819" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="eUlvXIBj8svcH7vQ0TzT-69" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="eUlvXIBj8svcH7vQ0TzT-70" target="eUlvXIBj8svcH7vQ0TzT-72" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-70" value="<b style="font-size: 13px;"><i style="font-size: 13px;">test:unit</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="157" y="310" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-71" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="eUlvXIBj8svcH7vQ0TzT-72" target="eUlvXIBj8svcH7vQ0TzT-74" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-72" value="<b style="font-size: 13px;"><i style="font-size: 13px;">test:ui</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="157" y="400" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="SLw1gM98EWFf63yfLO7k-1" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="eUlvXIBj8svcH7vQ0TzT-74" target="eUlvXIBj8svcH7vQ0TzT-116" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-74" value="<b style="font-size: 13px;"><i style="font-size: 13px;">analysis:sast</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="157" y="490" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-92" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;exitX=0.5;exitY=1;exitDx=0;exitDy=0;" parent="1" source="eUlvXIBj8svcH7vQ0TzT-93" target="SLw1gM98EWFf63yfLO7k-2" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="581" y="340" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="SLw1gM98EWFf63yfLO7k-4" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="eUlvXIBj8svcH7vQ0TzT-93" target="eUlvXIBj8svcH7vQ0TzT-97" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="456" y="440" as="targetPoint" />
<Array as="points">
<mxPoint x="456.5" y="390" />
<mxPoint x="557.5" y="390" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="SLw1gM98EWFf63yfLO7k-6" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="eUlvXIBj8svcH7vQ0TzT-93" target="eUlvXIBj8svcH7vQ0TzT-95" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="331" y="340" as="targetPoint" />
<Array as="points">
<mxPoint x="456.5" y="390" />
<mxPoint x="355.5" y="390" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-93" value="<b style="font-size: 13px;"><i style="font-size: 13px;">shared</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="411" y="320" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-94" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="eUlvXIBj8svcH7vQ0TzT-95" target="eUlvXIBj8svcH7vQ0TzT-99" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-95" value="<b style="font-size: 13px;"><i style="font-size: 13px;">android</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="310" y="410" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-96" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="eUlvXIBj8svcH7vQ0TzT-97" target="eUlvXIBj8svcH7vQ0TzT-101" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-97" value="<b style="font-size: 13px;"><i style="font-size: 13px;">ios</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="512" y="410" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="SLw1gM98EWFf63yfLO7k-9" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="eUlvXIBj8svcH7vQ0TzT-99" target="SLw1gM98EWFf63yfLO7k-8" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-99" value="<b style="font-size: 13px;"><i style="font-size: 13px;">android</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="310" y="500" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="SLw1gM98EWFf63yfLO7k-11" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="eUlvXIBj8svcH7vQ0TzT-101" target="eUlvXIBj8svcH7vQ0TzT-123" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-101" value="<b style="font-size: 13px;"><i style="font-size: 13px;">ios</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="512" y="500" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-102" value="<b style="font-size: 13px;"><i style="font-size: 13px;">codecov/test report</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="629" y="320" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-103" value="<b style="font-size: 13px;"><i style="font-size: 13px;">test report, screenshots</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="629" y="410" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-104" value="<b style="font-size: 13px;"><i style="font-size: 13px;">scan report</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="629" y="500" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-115" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="eUlvXIBj8svcH7vQ0TzT-116" target="eUlvXIBj8svcH7vQ0TzT-117" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-116" value="<b style="font-size: 13px;"><i style="font-size: 13px;">analysis:sca</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#fff2cc;" parent="1" vertex="1">
<mxGeometry x="157" y="580" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-117" value="<b style="font-size: 13px;"><i style="font-size: 13px;">analysis:sonar</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="157" y="670" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-118" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="eUlvXIBj8svcH7vQ0TzT-121" target="eUlvXIBj8svcH7vQ0TzT-125" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-121" value="<b style="font-size: 13px;"><i style="font-size: 13px;">shared</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#fff2cc;" parent="1" vertex="1">
<mxGeometry x="411" y="590" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-122" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="eUlvXIBj8svcH7vQ0TzT-123" target="eUlvXIBj8svcH7vQ0TzT-126" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-123" value="<b style="font-size: 13px;"><i style="font-size: 13px;">ios</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#fff2cc;" parent="1" vertex="1">
<mxGeometry x="512" y="590" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-124" value="<b style="font-size: 13px;"><i style="font-size: 13px;">android</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="310" y="680" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-125" value="<b style="font-size: 13px;"><i style="font-size: 13px;">shared</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="411" y="680" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="eUlvXIBj8svcH7vQ0TzT-126" value="<b style="font-size: 13px;"><i style="font-size: 13px;">ios</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="512" y="680" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="SLw1gM98EWFf63yfLO7k-10" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="SLw1gM98EWFf63yfLO7k-2" target="eUlvXIBj8svcH7vQ0TzT-121" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="SLw1gM98EWFf63yfLO7k-2" value="<b style="font-size: 13px;"><i style="font-size: 13px;">shared</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="411" y="500" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="SLw1gM98EWFf63yfLO7k-12" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=13;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeColor=#000000;" parent="1" source="SLw1gM98EWFf63yfLO7k-8" target="eUlvXIBj8svcH7vQ0TzT-124" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="SLw1gM98EWFf63yfLO7k-8" value="<b style="font-size: 13px;"><i style="font-size: 13px;">android</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#fff2cc;" parent="1" vertex="1">
<mxGeometry x="310" y="590" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="SLw1gM98EWFf63yfLO7k-13" value="<b style="font-size: 13px;"><i style="font-size: 13px;">scan report</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#fff2cc;" parent="1" vertex="1">
<mxGeometry x="628" y="590" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="5o4kctWvARvSzEOz9x_2-4" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="5o4kctWvARvSzEOz9x_2-1" target="eUlvXIBj8svcH7vQ0TzT-95" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="5o4kctWvARvSzEOz9x_2-1" value="<b style="font-size: 13px;"><i style="font-size: 13px;">android</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="310" y="320" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="5o4kctWvARvSzEOz9x_2-3" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="5o4kctWvARvSzEOz9x_2-2" target="eUlvXIBj8svcH7vQ0TzT-97" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="5o4kctWvARvSzEOz9x_2-2" value="<b style="font-size: 13px;"><i style="font-size: 13px;">ios</i></b>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=13;strokeColor=#000000;fillColor=#FFF2CC;" parent="1" vertex="1">
<mxGeometry x="512" y="320" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="ay3uIq-reTBJ-_qoyuM1-1" value="Stages" style="swimlane;fillColor=#FFD966;fontSize=14;fontStyle=3" parent="1" vertex="1">
<mxGeometry x="142" y="270" width="150" height="470" as="geometry" />
</mxCell>
<mxCell id="9MLpEEMG2RKPQxhhEJg--1" value="Jobs" style="swimlane;fillColor=#FFD966;fontSize=14;fontStyle=3" parent="1" vertex="1">
<mxGeometry x="300" y="270" width="310" height="470" as="geometry" />
</mxCell>
<mxCell id="9MLpEEMG2RKPQxhhEJg--2" value="Artifacts" style="swimlane;fillColor=#FFD966;fontSize=14;fontStyle=3" parent="1" vertex="1">
<mxGeometry x="620" y="270" width="110" height="470" as="geometry" />
</mxCell>
<mxCell id="RVcjjk5G2QVKM2j4W15w-1" value="<i style="font-size: 13px;"><b>dev</b></i>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=13;" parent="1" vertex="1">
<mxGeometry x="100" y="305" width="50" height="30" as="geometry" />
</mxCell>
<mxCell id="RVcjjk5G2QVKM2j4W15w-2" value="" style="endArrow=none;html=1;rounded=0;fontSize=13;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="130" y="730" as="sourcePoint" />
<mxPoint x="130" y="310" as="targetPoint" />
</mxGeometry>
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="mzyPxPZCydnWi6c984Vo" name="18-release-flow">
<mxGraphModel dx="1426" dy="819" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="H0tQbBpCta_xfN0__vDj-2" value="<b style="font-size: 14px;"><i style="font-size: 14px;">dev<br style="font-size: 14px;">(alpha)<br style="font-size: 14px;"></i></b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=14;" parent="1" vertex="1">
<mxGeometry x="35" y="555" width="70" height="50" as="geometry" />
</mxCell>
<mxCell id="H0tQbBpCta_xfN0__vDj-5" value="<b style="font-size: 14px;"><i style="font-size: 14px;">test<br style="font-size: 14px;">(beta)<br style="font-size: 14px;"></i></b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=14;" parent="1" vertex="1">
<mxGeometry x="40" y="475" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="H0tQbBpCta_xfN0__vDj-6" value="<b style="font-size: 14px;"><i style="font-size: 14px;">main<br style="font-size: 14px;">(prod)<br style="font-size: 14px;"></i></b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=14;" parent="1" vertex="1">
<mxGeometry x="40" y="360" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="H0tQbBpCta_xfN0__vDj-16" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;startArrow=none;" parent="1" source="H0tQbBpCta_xfN0__vDj-49" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="100" y="385" as="sourcePoint" />
<mxPoint x="500" y="385" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="H0tQbBpCta_xfN0__vDj-23" value="a9eaefd<br>(<span style="color: rgba(0, 0, 0, 0); font-family: monospace; font-size: 0px; text-align: start;">%3CmxGraphModel%3E%3Croot%3E%3CmxCell%20id%3D%220%22%2F%3E%3CmxCell%20id%3D%221%22%20parent%3D%220%22%2F%3E%3CmxCell%20id%3D%222%22%20value%3D%221.0.0%22%20style%3D%22text%3Bhtml%3D1%3Balign%3Dcenter%3BverticalAlign%3Dmiddle%3Bresizable%3D0%3Bpoints%3D%5B%5D%3Bautosize%3D1%3BstrokeColor%3Dnone%3BfillColor%3Dnone%3Brotation%3D45%3B%22%20vertex%3D%221%22%20parent%3D%221%22%3E%3CmxGeometry%20x%3D%22240%22%20y%3D%22167%22%20width%3D%2250%22%20height%3D%2230%22%20as%3D%22geometry%22%2F%3E%3C%2FmxCell%3E%3C%2Froot%3E%3C%2FmxGraphModel%3E)</span>1.0.0)" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;rotation=45;" parent="1" vertex="1">
<mxGeometry x="125" y="591" width="70" height="40" as="geometry" />
</mxCell>
<mxCell id="H0tQbBpCta_xfN0__vDj-24" value="1.0.0" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;rotation=45;" parent="1" vertex="1">
<mxGeometry x="180" y="507" width="50" height="30" as="geometry" />
</mxCell>
<mxCell id="H0tQbBpCta_xfN0__vDj-32" value="61a5850" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;rotation=45;" parent="1" vertex="1">
<mxGeometry x="190" y="596" width="70" height="30" as="geometry" />
</mxCell>
<mxCell id="H0tQbBpCta_xfN0__vDj-33" value="e6219c6&nbsp;" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;rotation=45;" parent="1" vertex="1">
<mxGeometry x="225" y="596" width="70" height="30" as="geometry" />
</mxCell>
<mxCell id="H0tQbBpCta_xfN0__vDj-35" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;startArrow=none;" parent="1" source="H0tQbBpCta_xfN0__vDj-47" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="100" y="500" as="sourcePoint" />
<mxPoint x="500" y="500" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="H0tQbBpCta_xfN0__vDj-36" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;startArrow=none;" parent="1" source="H0tQbBpCta_xfN0__vDj-45" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="100" y="580" as="sourcePoint" />
<mxPoint x="500" y="580" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="H0tQbBpCta_xfN0__vDj-54" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;curved=1;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="H0tQbBpCta_xfN0__vDj-15" target="H0tQbBpCta_xfN0__vDj-39" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="160" y="580" />
<mxPoint x="160" y="500" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="H0tQbBpCta_xfN0__vDj-15" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;direction=west;fillColor=#FFF2CC;strokeColor=#000000;" parent="1" vertex="1">
<mxGeometry x="130" y="570" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="H0tQbBpCta_xfN0__vDj-38" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;" parent="1" target="H0tQbBpCta_xfN0__vDj-15" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="100" y="580" as="sourcePoint" />
<mxPoint x="500" y="580" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="H0tQbBpCta_xfN0__vDj-57" value="" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="H0tQbBpCta_xfN0__vDj-39" target="H0tQbBpCta_xfN0__vDj-49" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="180" y="410" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="H0tQbBpCta_xfN0__vDj-39" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;direction=west;fillColor=#FFF2CC;strokeColor=#000000;" parent="1" vertex="1">
<mxGeometry x="180" y="490" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="H0tQbBpCta_xfN0__vDj-40" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;" parent="1" target="H0tQbBpCta_xfN0__vDj-39" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="100" y="500" as="sourcePoint" />
<mxPoint x="500" y="500" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="H0tQbBpCta_xfN0__vDj-41" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;direction=west;fillColor=#FFF2CC;strokeColor=#000000;" parent="1" vertex="1">
<mxGeometry x="190" y="570" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="H0tQbBpCta_xfN0__vDj-42" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;startArrow=none;" parent="1" source="H0tQbBpCta_xfN0__vDj-15" target="H0tQbBpCta_xfN0__vDj-41" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="150" y="580" as="sourcePoint" />
<mxPoint x="500" y="580" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="H0tQbBpCta_xfN0__vDj-43" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;direction=west;fillColor=#FFF2CC;strokeColor=#000000;" parent="1" vertex="1">
<mxGeometry x="225" y="570" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="H0tQbBpCta_xfN0__vDj-44" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;startArrow=none;" parent="1" source="H0tQbBpCta_xfN0__vDj-41" target="H0tQbBpCta_xfN0__vDj-43" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="210" y="580" as="sourcePoint" />
<mxPoint x="500" y="580" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="H0tQbBpCta_xfN0__vDj-58" value="" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="H0tQbBpCta_xfN0__vDj-45" target="H0tQbBpCta_xfN0__vDj-47" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">