forked from billhoph/whiteboards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrisma Cloud - Code to Cloud.drawio
4251 lines (4251 loc) · 873 KB
/
Prisma Cloud - Code to Cloud.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="Electron" modified="2024-07-26T02:51:21.628Z" agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/24.2.5 Chrome/120.0.6099.109 Electron/28.1.0 Safari/537.36" etag="mS4NflHkL1MEqy4s4yxR" version="24.2.5" type="device" pages="11">
<diagram name="AWS" id="nojwFFKbEJfxAIoV3yGd">
<mxGraphModel dx="1464" dy="868" grid="0" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="0" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-1" value="Developer" style="shape=umlActor;verticalLabelPosition=bottom;verticalAlign=top;html=1;outlineConnect=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;sketch=1;curveFitting=1;jiggle=2;" parent="1" vertex="1">
<mxGeometry x="125" y="160" width="30" height="60" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-2" value="IAC<div>Repo</div>" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="250" y="320" width="60" height="80" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-3" value="Application<div>Code Repo</div>" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="90" y="320" width="100" height="80" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-25" value="PR/Commit" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;strokeColor=#FF8000;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="1" source="hN2UPd_6Lu9fuNbE9eLv-4" target="hN2UPd_6Lu9fuNbE9eLv-2" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-4" value="Cloud Engineer" style="shape=umlActor;verticalLabelPosition=bottom;verticalAlign=top;html=1;outlineConnect=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;sketch=1;curveFitting=1;jiggle=2;" parent="1" vertex="1">
<mxGeometry x="265" y="160" width="30" height="60" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-5" value="CI/CD Tools" style="rounded=1;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=bottom;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="70" y="470" width="260" height="220" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-6" value="" style="endArrow=classic;html=1;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;flowAnimation=1;strokeColor=#7F00FF;" parent="1" source="hN2UPd_6Lu9fuNbE9eLv-16" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="80" y="573" as="sourcePoint" />
<mxPoint x="320" y="573" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-12" value="" style="endArrow=classic;html=1;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;flowAnimation=1;strokeColor=#7F00FF;" parent="1" source="hN2UPd_6Lu9fuNbE9eLv-13" target="hN2UPd_6Lu9fuNbE9eLv-11" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="80" y="573" as="sourcePoint" />
<mxPoint x="320" y="573" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-11" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="176" y="568" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-15" value="" style="endArrow=classic;html=1;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;flowAnimation=1;strokeColor=#7F00FF;" parent="1" source="hN2UPd_6Lu9fuNbE9eLv-11" target="hN2UPd_6Lu9fuNbE9eLv-14" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="155" y="573" as="sourcePoint" />
<mxPoint x="320" y="573" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-14" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="231" y="568" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-17" value="" style="endArrow=classic;html=1;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;flowAnimation=1;strokeColor=#7F00FF;" parent="1" source="hN2UPd_6Lu9fuNbE9eLv-14" target="hN2UPd_6Lu9fuNbE9eLv-16" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="200" y="573" as="sourcePoint" />
<mxPoint x="320" y="573" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-16" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="284" y="568" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-21" value="" style="endArrow=classic;html=1;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;flowAnimation=1;strokeColor=#7F00FF;" parent="1" target="hN2UPd_6Lu9fuNbE9eLv-13" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="80" y="573" as="sourcePoint" />
<mxPoint x="145" y="573" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-13" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="114" y="568" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-24" value="Git<div>Checkout</div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;" parent="1" vertex="1">
<mxGeometry x="89" y="520" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-25" value="Code<div>Scan</div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;" parent="1" vertex="1">
<mxGeometry x="149" y="520" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-26" value="image<div>Scan</div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;" parent="1" vertex="1">
<mxGeometry x="259" y="520" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-27" value="Test<div>&amp;</div><div>Build</div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;" parent="1" vertex="1">
<mxGeometry x="205" y="520" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-28" value="" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="380" y="130" width="730" height="560" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-29" value="Non-VPC Workloads (PaaS)" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="420" y="150" width="470" height="240" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-32" value="" style="ellipse;shape=cloud;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="319" y="60" width="140" height="100" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-31" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;image=https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Amazon_Web_Services_Logo.svg/1024px-Amazon_Web_Services_Logo.svg.png;" parent="1" vertex="1">
<mxGeometry x="355.14000000000004" y="89.75" width="67.71" height="40.5" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-34" value="VPC Workloads (IaaS)" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="422.85" y="429" width="467.15" height="230" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-35" value="" style="sketch=0;points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];outlineConnect=0;fontColor=#232F3E;fillColor=#8C4FFF;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.vpc;jiggle=2;curveFitting=1;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;" parent="1" vertex="1">
<mxGeometry x="422.85" y="429" width="29" height="29" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-37" value="Subnet" style="outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;shape=mxgraph.aws4.group;grIcon=mxgraph.aws4.group_subnet;strokeColor=#879196;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#879196;dashed=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;" parent="1" vertex="1">
<mxGeometry x="440" y="470" width="420" height="170" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-41" value="" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="451.85" y="503" width="218.15" height="127" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-40" value="" style="sketch=0;points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];outlineConnect=0;fontColor=#232F3E;fillColor=#ED7100;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.eks;jiggle=2;curveFitting=1;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;" parent="1" vertex="1">
<mxGeometry x="640" y="503" width="28" height="28" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-38" value="EC2" style="sketch=0;points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];outlineConnect=0;fontColor=#232F3E;fillColor=#ED7100;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.ec2;jiggle=2;curveFitting=1;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;" parent="1" vertex="1">
<mxGeometry x="706" y="556.5" width="54" height="54" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-39" value="EKS Nodes<div>(EC2)</div>" style="sketch=0;points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];outlineConnect=0;fontColor=#232F3E;fillColor=#ED7100;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.ec2;jiggle=2;curveFitting=1;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;" parent="1" vertex="1">
<mxGeometry x="480" y="531" width="54" height="54" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-42" value="EKS Nodes<div>(EC2)</div>" style="sketch=0;points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];outlineConnect=0;fontColor=#232F3E;fillColor=#ED7100;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.ec2;jiggle=2;curveFitting=1;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;" parent="1" vertex="1">
<mxGeometry x="560" y="531" width="54" height="54" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-43" value="EC2" style="sketch=0;points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];outlineConnect=0;fontColor=#232F3E;fillColor=#ED7100;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.ec2;jiggle=2;curveFitting=1;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;" parent="1" vertex="1">
<mxGeometry x="786" y="557.5" width="54" height="54" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-45" value="Generic<div>VM</div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;" parent="1" vertex="1">
<mxGeometry x="703" y="509" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-46" value="Image<div>Registry</div>" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="459" y="288" width="100" height="80" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-47" value="ECR" style="sketch=0;points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];outlineConnect=0;fontColor=#232F3E;fillColor=#ED7100;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.ecr;jiggle=2;curveFitting=1;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;" parent="1" vertex="1">
<mxGeometry x="430" y="311" width="48" height="48" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-49" value="DB" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=middle;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="630.4300000000001" y="290" width="60" height="80" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-48" value="RDS" style="sketch=0;points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];outlineConnect=0;fontColor=#232F3E;fillColor=#C925D1;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.rds;jiggle=2;curveFitting=1;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;direction=east;" parent="1" vertex="1">
<mxGeometry x="590" y="310" width="48" height="48" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-51" value="Large Lang<div>Model (LLM)</div>" style="rounded=1;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=middle;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="757" y="293" width="103" height="60" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-55" value="Cloud Storage" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="469" y="192" width="80" height="80" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-54" value="S3" style="sketch=0;points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];outlineConnect=0;fontColor=#232F3E;fillColor=#7AA116;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.s3;jiggle=2;curveFitting=1;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;" parent="1" vertex="1">
<mxGeometry x="428" y="182" width="50" height="50" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-56" value="Large Lang<div>Model (LLM)</div>" style="rounded=1;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=middle;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="767" y="303" width="103" height="60" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-57" value="Prisma CLoud<div>Scanner</div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;" parent="1" vertex="1">
<mxGeometry x="783" y="509" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-58" value="Fire<div>Shares</div>" style="shape=document;whiteSpace=wrap;html=1;boundedLbl=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="620.65" y="202" width="79.57" height="70" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-59" value="EFS" style="sketch=0;points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];outlineConnect=0;fontColor=#232F3E;fillColor=#7AA116;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.efs_standard;jiggle=2;curveFitting=1;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;" parent="1" vertex="1">
<mxGeometry x="582.43" y="183" width="48" height="48" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-60" value="Fargate" style="sketch=0;points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];outlineConnect=0;fontColor=#232F3E;fillColor=#ED7100;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.fargate;jiggle=2;curveFitting=1;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;" parent="1" vertex="1">
<mxGeometry x="740" y="192" width="47.5" height="47.5" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-61" value="Lambda" style="sketch=0;points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];outlineConnect=0;fontColor=#232F3E;fillColor=#ED7100;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.lambda;jiggle=2;curveFitting=1;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;" parent="1" vertex="1">
<mxGeometry x="813" y="192.5" width="47" height="47" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-31" style="edgeStyle=orthogonalEdgeStyle;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;strokeColor=#FF00FF;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;curved=1;" parent="1" source="hN2UPd_6Lu9fuNbE9eLv-62" target="hN2UPd_6Lu9fuNbE9eLv-63" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-62" value="Transit<div>Gateway</div>" style="sketch=0;points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];outlineConnect=0;fontColor=#232F3E;fillColor=#8C4FFF;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.transit_gateway;jiggle=2;curveFitting=1;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;" parent="1" vertex="1">
<mxGeometry x="940" y="511" width="48" height="48" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-63" value="Security VPC" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="930" y="260" width="150" height="155" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-32" value="Insepection" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.75;entryY=1;entryDx=0;entryDy=0;strokeColor=#FF00FF;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;startArrow=classic;startFill=1;" parent="1" source="hN2UPd_6Lu9fuNbE9eLv-65" target="hN2UPd_6Lu9fuNbE9eLv-63" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-65" value="Cloud NGFW
For AWS" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;image=https://www.paloaltonetworks.co.uk/content/dam/pan/en_US/includes/igw/cloud-ngfw/assets/images/find-out-more/circle-logo-2.png;" parent="1" vertex="1">
<mxGeometry x="1006.07" y="494.25" width="73.93" height="73.75" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-66" value="Subnet" style="outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;shape=mxgraph.aws4.group;grIcon=mxgraph.aws4.group_subnet;strokeColor=#879196;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#879196;dashed=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;" parent="1" vertex="1">
<mxGeometry x="950" y="291" width="110.43" height="109" as="geometry" />
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-67" value="NGFW Endpoint" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#DD344C;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.network_firewall_endpoints;jiggle=2;curveFitting=1;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;" parent="1" vertex="1">
<mxGeometry x="980.5" y="321" width="49" height="49" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-1" value="On Premises" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="1230" y="430" width="500" height="260" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-2" value="" style="sketch=0;points=[[0.015,0.015,0],[0.985,0.015,0],[0.985,0.985,0],[0.015,0.985,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0.25,0],[1,0.5,0],[1,0.75,0],[0.75,1,0],[0.5,1,0],[0.25,1,0],[0,0.75,0],[0,0.5,0],[0,0.25,0]];verticalLabelPosition=bottom;html=1;verticalAlign=top;aspect=fixed;align=center;pointerEvents=1;shape=mxgraph.cisco19.rect;prIcon=firewall;fillColor=#FAFAFA;strokeColor=#005073;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="1" vertex="1">
<mxGeometry x="1260" y="470" width="64" height="50" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-7" value="Office Network" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;verticalAlign=bottom;" parent="1" vertex="1">
<mxGeometry x="1378" y="470" width="196.5" height="90" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-8" value="Internal Network" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;verticalAlign=bottom;" parent="1" vertex="1">
<mxGeometry x="1378" y="570" width="196.5" height="103" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-4" value="" style="fontColor=#0066CC;verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;fillColor=#CCCCCC;strokeColor=#6881B3;gradientColor=none;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.monitor;hachureGap=4;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="1" vertex="1">
<mxGeometry x="1394.5" y="484.5" width="43.69" height="35.5" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-5" value="" style="fontColor=#0066CC;verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;fillColor=#CCCCCC;strokeColor=#6881B3;gradientColor=none;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.desktop_pc;hachureGap=4;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="1" vertex="1">
<mxGeometry x="1444.5" y="494.25" width="10" height="28" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-11" value="" style="fontColor=#0066CC;verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;fillColor=#CCCCCC;strokeColor=#6881B3;gradientColor=none;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.monitor;hachureGap=4;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="1" vertex="1">
<mxGeometry x="1474.5" y="484.5" width="43.69" height="35.5" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-12" value="" style="fontColor=#0066CC;verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;fillColor=#CCCCCC;strokeColor=#6881B3;gradientColor=none;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.desktop_pc;hachureGap=4;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="1" vertex="1">
<mxGeometry x="1524.5" y="494.25" width="10" height="28" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-13" value="EKS Anywhere" style="sketch=0;points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];outlineConnect=0;fontColor=#232F3E;fillColor=#ED7100;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.eks_anywhere;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="1" vertex="1">
<mxGeometry x="1424.5" y="585" width="40" height="40" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-14" value="Outpost" style="sketch=0;points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];outlineConnect=0;fontColor=#232F3E;fillColor=#ED7100;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.outposts;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="1" vertex="1">
<mxGeometry x="1504.5" y="583" width="44" height="44" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-15" value="VPN / Direct Connect" style="shape=flexArrow;endArrow=classic;startArrow=classic;html=1;rounded=0;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;width=36;endSize=9;fontSize=13;fillColor=#f5f5f5;strokeColor=#666666;" parent="1" edge="1">
<mxGeometry width="100" height="100" relative="1" as="geometry">
<mxPoint x="1100" y="566" as="sourcePoint" />
<mxPoint x="1250" y="566" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-16" value="Internet" style="ellipse;shape=cloud;whiteSpace=wrap;html=1;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;" parent="1" vertex="1">
<mxGeometry x="1268" y="110" width="177" height="118" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-17" value="Insecure TLS" style="ellipse;shape=cloud;whiteSpace=wrap;html=1;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;" parent="1" vertex="1">
<mxGeometry x="1190" y="169.25" width="166.5" height="109" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-18" value="Unmanaged<div>Domain</div>" style="ellipse;shape=cloud;whiteSpace=wrap;html=1;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;" parent="1" vertex="1">
<mxGeometry x="1318" y="179" width="166.5" height="109" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-19" value="Shadow Clouds" style="ellipse;shape=cloud;whiteSpace=wrap;html=1;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;" parent="1" vertex="1">
<mxGeometry x="1214.5" y="239.5" width="164.97" height="108" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-20" value="Hacker" style="shape=umlActor;verticalLabelPosition=bottom;verticalAlign=top;html=1;outlineConnect=0;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="1" vertex="1">
<mxGeometry x="1604.5" y="211.75" width="30" height="60" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-21" value="Application Users<div>(Public)</div>" style="shape=umlActor;verticalLabelPosition=bottom;verticalAlign=top;html=1;outlineConnect=0;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="1" vertex="1">
<mxGeometry x="1604.5" y="80" width="30" height="60" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-22" value="Application Users<div>(Internal)</div>" style="shape=umlActor;verticalLabelPosition=bottom;verticalAlign=top;html=1;outlineConnect=0;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="1" vertex="1">
<mxGeometry x="1654" y="484.5" width="30" height="60" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-24" value="PR/Commit" style="edgeStyle=orthogonalEdgeStyle;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;strokeWidth=2;curved=1;flowAnimation=1;strokeColor=#FF8000;" parent="1" source="hN2UPd_6Lu9fuNbE9eLv-1" target="hN2UPd_6Lu9fuNbE9eLv-3" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-26" value="Trigger" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.335;entryY=-0.005;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF8000;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="1" source="hN2UPd_6Lu9fuNbE9eLv-3" target="hN2UPd_6Lu9fuNbE9eLv-5" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-27" value="Trigger" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.631;entryY=0.009;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF8000;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="1" source="hN2UPd_6Lu9fuNbE9eLv-2" target="hN2UPd_6Lu9fuNbE9eLv-5" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="280" y="430" />
<mxPoint x="234" y="430" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-28" value="Continuous Integration<div>(CI)</div>" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.25;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF8000;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="1" source="hN2UPd_6Lu9fuNbE9eLv-5" target="hN2UPd_6Lu9fuNbE9eLv-47" edge="1">
<mxGeometry x="-0.069" relative="1" as="geometry">
<Array as="points">
<mxPoint x="360" y="525" />
<mxPoint x="360" y="335" />
</Array>
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-29" value="Continuous<div>Deployment/</div><div>Delivery</div><div>(CD)</div>" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.75;exitDx=0;exitDy=0;strokeColor=#FF8000;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="hN2UPd_6Lu9fuNbE9eLv-5" target="hN2UPd_6Lu9fuNbE9eLv-39" edge="1">
<mxGeometry x="0.1454" y="25" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-30" style="edgeStyle=orthogonalEdgeStyle;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;strokeColor=#FF00FF;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;curved=1;" parent="1" source="hN2UPd_6Lu9fuNbE9eLv-37" target="hN2UPd_6Lu9fuNbE9eLv-62" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="907" y="571" as="sourcePoint" />
<mxPoint x="1029" y="503" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-33" value="Exposure" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0.07;entryY=0.4;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF00FF;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="1" source="hN2UPd_6Lu9fuNbE9eLv-63" target="5URiSfWugU1SPOrfES1A-16" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="1170" y="338" />
<mxPoint x="1170" y="157" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-34" value="ZTNA" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.904;entryY=0.316;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=default;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="1" source="5URiSfWugU1SPOrfES1A-21" target="5URiSfWugU1SPOrfES1A-16" edge="1">
<mxGeometry x="-0.3966" y="10" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-35" value="Outside-In<div>Connection</div>" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.875;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=default;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="1" source="5URiSfWugU1SPOrfES1A-20" target="5URiSfWugU1SPOrfES1A-16" edge="1">
<mxGeometry x="0.3151" y="-9" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-36" value="XDR<div>Protected<br><div>Endpoint</div></div>" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.796;entryY=0.222;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#00CC00;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="1" source="5URiSfWugU1SPOrfES1A-22" target="5URiSfWugU1SPOrfES1A-7" edge="1">
<mxGeometry x="-0.0043" y="-12" relative="1" as="geometry">
<mxPoint x="5" y="2" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-40" value="&nbsp;SaaS<div>Applications</div>" style="ellipse;shape=cloud;whiteSpace=wrap;html=1;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;" parent="1" vertex="1">
<mxGeometry x="1335.5" y="256.75" width="139" height="91" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-41" value="SASE / SDWAN" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.75;exitY=0;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.55;entryY=0.95;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#00CC00;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="1" source="5URiSfWugU1SPOrfES1A-2" target="5URiSfWugU1SPOrfES1A-40" edge="1">
<mxGeometry x="0.0005" relative="1" as="geometry">
<Array as="points">
<mxPoint x="1308" y="400" />
<mxPoint x="1412" y="400" />
</Array>
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-42" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.996;entryY=0.948;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#007FFF;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="1" source="5URiSfWugU1SPOrfES1A-2" target="hN2UPd_6Lu9fuNbE9eLv-34" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-43" value="Cloud App<div>Development</div>" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0;dx=30;notch=30;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;labelBackgroundColor=none;fillColor=#b1ddf0;strokeColor=#10739e;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="70" y="753" width="251" height="50" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-44" value="Cloud App<div>Deployment</div>" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0;dx=30;notch=30;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;labelBackgroundColor=none;fillColor=#b1ddf0;strokeColor=#10739e;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="299" y="753" width="251" height="50" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-45" value="Cloud Workloads<div>Operation</div>" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0;dx=30;notch=30;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;labelBackgroundColor=none;fillColor=#b1ddf0;strokeColor=#10739e;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="530.5" y="753" width="300.5" height="50" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-46" value="Cloud App<br>Exposing to Public" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0;dx=30;notch=30;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;labelBackgroundColor=none;fillColor=#fad7ac;strokeColor=#b46504;" parent="1" vertex="1">
<mxGeometry x="814.75" y="753" width="300.5" height="50" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-47" value="Hybrid Cloud<div>Connectivity</div>" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0;dx=30;notch=30;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;labelBackgroundColor=none;fillColor=#fad7ac;strokeColor=#b46504;" parent="1" vertex="1">
<mxGeometry x="1095" y="753" width="256" height="50" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-48" value="Hybrid Cloud App<div>Operation</div>" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0;dx=30;notch=30;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;labelBackgroundColor=none;fillColor=#b1ddf0;strokeColor=#10739e;" parent="1" vertex="1">
<mxGeometry x="1331" y="753" width="210" height="50" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-49" value="Cloud Application<div>Consumption</div>" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0;dx=30;notch=30;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;labelBackgroundColor=none;fillColor=#b0e3e6;strokeColor=#0e8088;" parent="1" vertex="1">
<mxGeometry x="1525.5" y="753" width="210" height="50" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-50" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.25;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#00CC00;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="1" source="5URiSfWugU1SPOrfES1A-7" target="5URiSfWugU1SPOrfES1A-2" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-51" value="Hybrid Cloud Connection" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=0.75;entryY=1;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#007FFF;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="1" source="5URiSfWugU1SPOrfES1A-8" target="5URiSfWugU1SPOrfES1A-2" edge="1">
<mxGeometry x="-0.0496" y="28" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="hN2UPd_6Lu9fuNbE9eLv-52" value="Sagemaker/Bedrock" style="sketch=0;points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];outlineConnect=0;fontColor=#232F3E;fillColor=#01A88D;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.sagemaker;jiggle=2;curveFitting=1;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;" parent="1" vertex="1">
<mxGeometry x="723" y="311" width="48" height="48" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-53" value="IAM" style="sketch=0;points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];outlineConnect=0;fontColor=#232F3E;fillColor=#DD344C;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.identity_and_access_management;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;labelBackgroundColor=default;" parent="1" vertex="1">
<mxGeometry x="938" y="160" width="50" height="50" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-55" value="Guard Duty" style="sketch=0;points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];outlineConnect=0;fontColor=#232F3E;fillColor=#DD344C;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.guardduty;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;labelBackgroundColor=default;" parent="1" vertex="1">
<mxGeometry x="1006.07" y="160" width="50" height="50" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-59" value="Security Operation &amp; Automation" style="endArrow=classic;startArrow=classic;html=1;rounded=0;hachureGap=4;strokeColor=default;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=16;fontColor=default;labelBackgroundColor=default;edgeStyle=orthogonalEdgeStyle;flowAnimation=1;curved=1;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="80" y="730" as="sourcePoint" />
<mxPoint x="1720" y="730" as="targetPoint" />
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-60" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;image=https://avatars.githubusercontent.com/u/73199731?s=200&v=4;" parent="1" vertex="1">
<mxGeometry x="400" y="820" width="80" height="80" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-62" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;image=https://media.licdn.com/dms/image/D560BAQFtROBHKAD45A/company-logo_200_200/0/1703201210882/strata_by_palo_alto_networks_logo?e=2147483647&v=beta&t=QUShqbnp8qkFPZrzmQ2B0UH5K-oadhjrt2q18d8NZnA;" parent="1" vertex="1">
<mxGeometry x="1019" y="825" width="70" height="70" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-64" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;image=https://lh3.googleusercontent.com/YlwczxRATj_a4sGRLSJi7JzhGsxiYupSzuAu1i94PlJ6CYl71ghwYgeiDiEyDQxD8NRQI62OWXLxpbdz2Qk;" parent="1" vertex="1">
<mxGeometry x="1569" y="820" width="55.75" height="71" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-65" value="Prisma Cloud" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=16;fontColor=default;labelBackgroundColor=default;" parent="1" vertex="1">
<mxGeometry x="474" y="845" width="106" height="30" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-66" value="Strata &amp; Prisma Access" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=16;fontColor=default;labelBackgroundColor=default;" parent="1" vertex="1">
<mxGeometry x="1089" y="840.5" width="134.75" height="30" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-67" value="Cortex" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=16;fontColor=default;labelBackgroundColor=default;" parent="1" vertex="1">
<mxGeometry x="1629.75" y="840.5" width="64.75" height="30" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-68" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;image=https://avatars.githubusercontent.com/u/73199731?s=200&v=4;" parent="1" vertex="1">
<mxGeometry x="1338.19" y="820" width="80" height="80" as="geometry" />
</mxCell>
<mxCell id="5URiSfWugU1SPOrfES1A-69" value="Prisma Cloud" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=16;fontColor=default;labelBackgroundColor=default;" parent="1" vertex="1">
<mxGeometry x="1412.19" y="845" width="106" height="30" as="geometry" />
</mxCell>
<mxCell id="Nb5rTclSnH1GQpTnZ5ED-1" value="Cloud Pipeline" style="sketch=0;points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];outlineConnect=0;fontColor=#232F3E;fillColor=#E7157B;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.cloudformation;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="1" vertex="1">
<mxGeometry x="180" y="590" width="40" height="40" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram name="Azure" id="DNghscNcO7W9YugJITcc">
<mxGraphModel dx="1676" dy="902" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="jYaan8TBMuX1WAMJRSyH-0" />
<mxCell id="jYaan8TBMuX1WAMJRSyH-1" parent="jYaan8TBMuX1WAMJRSyH-0" />
<mxCell id="jYaan8TBMuX1WAMJRSyH-2" value="Developer" style="shape=umlActor;verticalLabelPosition=bottom;verticalAlign=top;html=1;outlineConnect=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;sketch=1;curveFitting=1;jiggle=2;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="125" y="160" width="30" height="60" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-3" value="IAC<div>Repo</div>" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="250" y="320" width="60" height="80" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-4" value="Application<div>Code Repo</div>" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="90" y="320" width="100" height="80" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-5" value="PR/Commit" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;strokeColor=#FF8000;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="jYaan8TBMuX1WAMJRSyH-1" source="jYaan8TBMuX1WAMJRSyH-6" target="jYaan8TBMuX1WAMJRSyH-3" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-6" value="Cloud Engineer" style="shape=umlActor;verticalLabelPosition=bottom;verticalAlign=top;html=1;outlineConnect=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;sketch=1;curveFitting=1;jiggle=2;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="265" y="160" width="30" height="60" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-7" value="CI/CD Tools" style="rounded=1;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=bottom;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="70" y="470" width="260" height="220" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-8" value="" style="endArrow=classic;html=1;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;flowAnimation=1;strokeColor=#7F00FF;" parent="jYaan8TBMuX1WAMJRSyH-1" source="jYaan8TBMuX1WAMJRSyH-14" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="80" y="573" as="sourcePoint" />
<mxPoint x="320" y="573" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-9" value="" style="endArrow=classic;html=1;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;flowAnimation=1;strokeColor=#7F00FF;" parent="jYaan8TBMuX1WAMJRSyH-1" source="jYaan8TBMuX1WAMJRSyH-16" target="jYaan8TBMuX1WAMJRSyH-10" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="80" y="573" as="sourcePoint" />
<mxPoint x="320" y="573" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-10" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="176" y="568" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-11" value="" style="endArrow=classic;html=1;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;flowAnimation=1;strokeColor=#7F00FF;" parent="jYaan8TBMuX1WAMJRSyH-1" source="jYaan8TBMuX1WAMJRSyH-10" target="jYaan8TBMuX1WAMJRSyH-12" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="155" y="573" as="sourcePoint" />
<mxPoint x="320" y="573" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-12" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="231" y="568" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-13" value="" style="endArrow=classic;html=1;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;flowAnimation=1;strokeColor=#7F00FF;" parent="jYaan8TBMuX1WAMJRSyH-1" source="jYaan8TBMuX1WAMJRSyH-12" target="jYaan8TBMuX1WAMJRSyH-14" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="200" y="573" as="sourcePoint" />
<mxPoint x="320" y="573" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-14" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="284" y="568" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-15" value="" style="endArrow=classic;html=1;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;flowAnimation=1;strokeColor=#7F00FF;" parent="jYaan8TBMuX1WAMJRSyH-1" target="jYaan8TBMuX1WAMJRSyH-16" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="80" y="573" as="sourcePoint" />
<mxPoint x="145" y="573" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-16" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="114" y="568" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-18" value="Git<div>Checkout</div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="89" y="520" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-19" value="Code<div>Scan</div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="149" y="520" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-20" value="image<div>Scan</div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="259" y="520" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-21" value="Test<div>&amp;</div><div>Build</div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="205" y="520" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-22" value="" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="380" y="130" width="730" height="560" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-23" value="Non-vNet Workloads (PaaS)" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="420" y="150" width="470" height="240" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-24" value="Azure" style="ellipse;shape=cloud;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=middle;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=17;fontColor=default;fillColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="319" y="60" width="140" height="100" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-26" value="vNet Workloads (IaaS)" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="422.85" y="429" width="467.15" height="230" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-36" value="Image<div>Registry</div>" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="459" y="288" width="100" height="80" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-38" value="DB" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=middle;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="630.4300000000001" y="290" width="60" height="80" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-40" value="Large Lang<div>Model (LLM)</div>" style="rounded=1;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=middle;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="757" y="293" width="103" height="60" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-41" value="Cloud Storage" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="469" y="192" width="80" height="80" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-43" value="Large Lang<div>Model (LLM)</div>" style="rounded=1;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=middle;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="767" y="303" width="103" height="60" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-45" value="Fire<div>Shares</div>" style="shape=document;whiteSpace=wrap;html=1;boundedLbl=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="620.65" y="202" width="79.57" height="70" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-51" value="Security vNet" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="930" y="260" width="150" height="270" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-56" value="On Premises" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1230" y="430" width="500" height="260" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-57" value="" style="sketch=0;points=[[0.015,0.015,0],[0.985,0.015,0],[0.985,0.985,0],[0.015,0.985,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0.25,0],[1,0.5,0],[1,0.75,0],[0.75,1,0],[0.5,1,0],[0.25,1,0],[0,0.75,0],[0,0.5,0],[0,0.25,0]];verticalLabelPosition=bottom;html=1;verticalAlign=top;aspect=fixed;align=center;pointerEvents=1;shape=mxgraph.cisco19.rect;prIcon=firewall;fillColor=#FAFAFA;strokeColor=#005073;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1260" y="470" width="64" height="50" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-58" value="Office Network" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;verticalAlign=bottom;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1378" y="470" width="196.5" height="90" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-59" value="Internal Network" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;verticalAlign=bottom;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1378" y="570" width="196.5" height="110" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-60" value="" style="fontColor=#0066CC;verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;fillColor=#CCCCCC;strokeColor=#6881B3;gradientColor=none;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.monitor;hachureGap=4;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1394.5" y="484.5" width="43.69" height="35.5" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-61" value="" style="fontColor=#0066CC;verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;fillColor=#CCCCCC;strokeColor=#6881B3;gradientColor=none;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.desktop_pc;hachureGap=4;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1444.5" y="494.25" width="10" height="28" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-62" value="" style="fontColor=#0066CC;verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;fillColor=#CCCCCC;strokeColor=#6881B3;gradientColor=none;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.monitor;hachureGap=4;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1474.5" y="484.5" width="43.69" height="35.5" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-63" value="" style="fontColor=#0066CC;verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;fillColor=#CCCCCC;strokeColor=#6881B3;gradientColor=none;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.desktop_pc;hachureGap=4;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1524.5" y="494.25" width="10" height="28" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-66" value="VPN / Express Route" style="shape=flexArrow;endArrow=classic;startArrow=classic;html=1;rounded=0;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;width=36;endSize=9;fontSize=13;fillColor=#f5f5f5;strokeColor=#666666;" parent="jYaan8TBMuX1WAMJRSyH-1" edge="1">
<mxGeometry width="100" height="100" relative="1" as="geometry">
<mxPoint x="1100" y="566" as="sourcePoint" />
<mxPoint x="1250" y="566" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-67" value="Internet" style="ellipse;shape=cloud;whiteSpace=wrap;html=1;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1268" y="110" width="177" height="118" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-68" value="Insecure TLS" style="ellipse;shape=cloud;whiteSpace=wrap;html=1;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1190" y="169.25" width="166.5" height="109" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-69" value="Unmanaged<div>Domain</div>" style="ellipse;shape=cloud;whiteSpace=wrap;html=1;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1318" y="179" width="166.5" height="109" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-70" value="Shadow Clouds" style="ellipse;shape=cloud;whiteSpace=wrap;html=1;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1214.5" y="239.5" width="164.97" height="108" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-71" value="Hacker" style="shape=umlActor;verticalLabelPosition=bottom;verticalAlign=top;html=1;outlineConnect=0;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1604.5" y="211.75" width="30" height="60" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-72" value="Application Users<div>(Public)</div>" style="shape=umlActor;verticalLabelPosition=bottom;verticalAlign=top;html=1;outlineConnect=0;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1604.5" y="80" width="30" height="60" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-73" value="Application Users<div>(Internal)</div>" style="shape=umlActor;verticalLabelPosition=bottom;verticalAlign=top;html=1;outlineConnect=0;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1654" y="484.5" width="30" height="60" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-74" value="PR/Commit" style="edgeStyle=orthogonalEdgeStyle;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;strokeWidth=2;curved=1;flowAnimation=1;strokeColor=#FF8000;" parent="jYaan8TBMuX1WAMJRSyH-1" source="jYaan8TBMuX1WAMJRSyH-2" target="jYaan8TBMuX1WAMJRSyH-4" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-75" value="Trigger" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.335;entryY=-0.005;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF8000;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="jYaan8TBMuX1WAMJRSyH-1" source="jYaan8TBMuX1WAMJRSyH-4" target="jYaan8TBMuX1WAMJRSyH-7" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-76" value="Trigger" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.631;entryY=0.009;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF8000;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="jYaan8TBMuX1WAMJRSyH-1" source="jYaan8TBMuX1WAMJRSyH-3" target="jYaan8TBMuX1WAMJRSyH-7" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="280" y="430" />
<mxPoint x="234" y="430" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-77" value="Continuous Integration<div>(CI)</div>" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.25;exitDx=0;exitDy=0;strokeColor=#FF8000;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="jYaan8TBMuX1WAMJRSyH-1" source="jYaan8TBMuX1WAMJRSyH-7" edge="1">
<mxGeometry x="-0.069" relative="1" as="geometry">
<Array as="points">
<mxPoint x="360" y="525" />
<mxPoint x="360" y="335" />
</Array>
<mxPoint as="offset" />
<mxPoint x="430" y="335" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-78" value="Continuous<div>Deployment/</div><div>Delivery</div><div>(CD)</div>" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.75;exitDx=0;exitDy=0;strokeColor=#FF8000;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" parent="jYaan8TBMuX1WAMJRSyH-1" source="jYaan8TBMuX1WAMJRSyH-7" edge="1">
<mxGeometry x="0.1454" y="25" relative="1" as="geometry">
<mxPoint as="offset" />
<mxPoint x="480" y="558" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-80" value="Exposure" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0.07;entryY=0.4;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF00FF;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="jYaan8TBMuX1WAMJRSyH-1" source="Y3HwV5XOBynX86l8i73X-27" target="jYaan8TBMuX1WAMJRSyH-67" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="1170" y="316" />
<mxPoint x="1170" y="157" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-81" value="ZTNA" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.904;entryY=0.316;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=default;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="jYaan8TBMuX1WAMJRSyH-1" source="jYaan8TBMuX1WAMJRSyH-72" target="jYaan8TBMuX1WAMJRSyH-67" edge="1">
<mxGeometry x="-0.3966" y="10" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-82" value="Outside-In<div>Connection</div>" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.875;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=default;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="jYaan8TBMuX1WAMJRSyH-1" source="jYaan8TBMuX1WAMJRSyH-71" target="jYaan8TBMuX1WAMJRSyH-67" edge="1">
<mxGeometry x="0.3151" y="-9" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-83" value="XDR<div>Protected<br><div>Endpoint</div></div>" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.796;entryY=0.222;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#00CC00;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="jYaan8TBMuX1WAMJRSyH-1" source="jYaan8TBMuX1WAMJRSyH-73" target="jYaan8TBMuX1WAMJRSyH-58" edge="1">
<mxGeometry x="-0.0043" y="-12" relative="1" as="geometry">
<mxPoint x="5" y="2" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-84" value="&nbsp;SaaS<div>Applications</div>" style="ellipse;shape=cloud;whiteSpace=wrap;html=1;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1335.5" y="256.75" width="139" height="91" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-85" value="SASE / SDWAN" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.75;exitY=0;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.55;entryY=0.95;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#00CC00;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="jYaan8TBMuX1WAMJRSyH-1" source="jYaan8TBMuX1WAMJRSyH-57" target="jYaan8TBMuX1WAMJRSyH-84" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="1308" y="400" />
<mxPoint x="1412" y="400" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-86" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.996;entryY=0.948;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#007FFF;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="jYaan8TBMuX1WAMJRSyH-1" source="jYaan8TBMuX1WAMJRSyH-57" target="jYaan8TBMuX1WAMJRSyH-26" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-87" value="Cloud App<div>Development</div>" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0;dx=30;notch=30;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;labelBackgroundColor=none;fillColor=#b1ddf0;strokeColor=#10739e;fontStyle=1" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="70" y="753" width="251" height="50" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-88" value="Cloud App<div>Deployment</div>" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0;dx=30;notch=30;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;labelBackgroundColor=none;fillColor=#b1ddf0;strokeColor=#10739e;fontStyle=1" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="299" y="753" width="251" height="50" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-89" value="Cloud Workloads<div>Operation</div>" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0;dx=30;notch=30;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;labelBackgroundColor=none;fillColor=#b1ddf0;strokeColor=#10739e;fontStyle=1" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="530.5" y="753" width="300.5" height="50" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-90" value="Cloud App<br>Exposing to Public" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0;dx=30;notch=30;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;labelBackgroundColor=none;fillColor=#fad7ac;strokeColor=#b46504;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="814.75" y="753" width="300.5" height="50" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-91" value="Hybrid Cloud<div>Connectivity</div>" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0;dx=30;notch=30;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;labelBackgroundColor=none;fillColor=#fad7ac;strokeColor=#b46504;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1095" y="753" width="256" height="50" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-92" value="Hybrid Cloud App<div>Operation</div>" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0;dx=30;notch=30;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;labelBackgroundColor=none;fillColor=#b1ddf0;strokeColor=#10739e;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1331" y="753" width="210" height="50" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-93" value="Cloud Application<div>Consumption</div>" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0;dx=30;notch=30;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;labelBackgroundColor=none;fillColor=#b0e3e6;strokeColor=#0e8088;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1525.5" y="753" width="210" height="50" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-94" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.25;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#00CC00;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="jYaan8TBMuX1WAMJRSyH-1" source="jYaan8TBMuX1WAMJRSyH-58" target="jYaan8TBMuX1WAMJRSyH-57" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-95" value="Hybrid Cloud Connection" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=0.75;entryY=1;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#007FFF;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="jYaan8TBMuX1WAMJRSyH-1" source="jYaan8TBMuX1WAMJRSyH-59" target="jYaan8TBMuX1WAMJRSyH-57" edge="1">
<mxGeometry x="-0.0496" y="28" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-99" value="Security Operation &amp; Automation" style="endArrow=classic;startArrow=classic;html=1;rounded=0;hachureGap=4;strokeColor=default;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=16;fontColor=default;labelBackgroundColor=default;edgeStyle=orthogonalEdgeStyle;flowAnimation=1;curved=1;" parent="jYaan8TBMuX1WAMJRSyH-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="80" y="730" as="sourcePoint" />
<mxPoint x="1720" y="730" as="targetPoint" />
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-100" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;image=https://avatars.githubusercontent.com/u/73199731?s=200&v=4;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="400" y="820" width="80" height="80" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-101" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;image=https://media.licdn.com/dms/image/D560BAQFtROBHKAD45A/company-logo_200_200/0/1703201210882/strata_by_palo_alto_networks_logo?e=2147483647&v=beta&t=QUShqbnp8qkFPZrzmQ2B0UH5K-oadhjrt2q18d8NZnA;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1045.25" y="825" width="70" height="70" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-102" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;image=https://lh3.googleusercontent.com/YlwczxRATj_a4sGRLSJi7JzhGsxiYupSzuAu1i94PlJ6CYl71ghwYgeiDiEyDQxD8NRQI62OWXLxpbdz2Qk;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1569" y="820" width="55.75" height="71" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-103" value="Prisma Cloud" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=16;fontColor=default;labelBackgroundColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="474" y="845" width="106" height="30" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-104" value="Strata" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=16;fontColor=default;labelBackgroundColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1115.25" y="840.5" width="64.75" height="30" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-105" value="Cortex" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=16;fontColor=default;labelBackgroundColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1629.75" y="840.5" width="64.75" height="30" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-106" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;image=https://avatars.githubusercontent.com/u/73199731?s=200&v=4;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1338.19" y="820" width="80" height="80" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-107" value="Prisma Cloud" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=16;fontColor=default;labelBackgroundColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1412.19" y="845" width="106" height="30" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-0" value="Azure DevOps" style="image;aspect=fixed;html=1;points=[];align=center;fontSize=12;image=img/lib/azure2/devops/Azure_DevOps.svg;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="178.25" y="586.5" width="43.5" height="43.5" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-1" value="" style="shape=image;verticalLabelPosition=bottom;labelBackgroundColor=default;verticalAlign=top;aspect=fixed;imageAspect=0;image=https://swimburger.net/media/ppnn3pcl/azure.png;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="310" y="80" width="40" height="40" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-2" value="Storage<div>Account</div>" style="image;aspect=fixed;html=1;points=[];align=center;fontSize=12;image=img/lib/azure2/storage/Storage_Accounts.svg;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="432.5" y="179" width="47.5" height="38" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-4" value="ACR" style="image;aspect=fixed;html=1;points=[];align=center;fontSize=12;image=img/lib/azure2/containers/Container_Registries.svg;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="432.5" y="282.63" width="43.75" height="39.25" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-5" value="Azure<div>NetApp</div><div>File</div>" style="image;aspect=fixed;html=1;points=[];align=center;fontSize=12;image=img/lib/azure2/storage/Azure_NetApp_Files.svg;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="590" y="182" width="47.5" height="38" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-6" value="Azure<div>SQL</div>" style="image;aspect=fixed;html=1;points=[];align=center;fontSize=12;image=img/lib/azure2/databases/SQL_Database.svg;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="596.53" y="278.25" width="40.97" height="54.63" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-7" value="Azure<div>Function</div><div>App</div>" style="image;aspect=fixed;html=1;points=[];align=center;fontSize=12;image=img/lib/azure2/compute/Function_Apps.svg;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="808.15" y="180" width="51.85" height="45.75" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-8" value="Azure<div>App</div><div>Service</div>" style="image;aspect=fixed;html=1;points=[];align=center;fontSize=12;image=img/lib/azure2/app_services/App_Services.svg;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="740" y="182" width="48" height="48" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-9" value="Cognitive<div>Services</div>" style="image;aspect=fixed;html=1;points=[];align=center;fontSize=12;image=img/lib/azure2/ai_machine_learning/Cognitive_Services.svg;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="730" y="309.5" width="52.42" height="37" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-10" value="" style="image;aspect=fixed;html=1;points=[];align=center;fontSize=12;image=img/lib/azure2/networking/Virtual_Networks.svg;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="427" y="434" width="33.5" height="20" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-12" value="" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=none;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="440" y="465" width="420" height="185" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-11" value="" style="image;aspect=fixed;html=1;points=[];align=center;fontSize=12;image=img/lib/azure2/networking/Subnet.svg;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="441.65" y="473.53" width="34.6" height="20.72" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-13" value="Subnet" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="474" y="468.89" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-29" value="" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="451.85" y="503" width="218.15" height="127" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-35" value="Generic<div>VM</div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="703" y="509" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-44" value="Prisma CLoud<div>Scanner</div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="783" y="509" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-15" value="vNet Peering" style="edgeStyle=orthogonalEdgeStyle;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.367;entryY=1;entryDx=0;entryDy=0;entryPerimeter=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;strokeColor=#FF00FF;flowAnimation=1;strokeWidth=2;curved=1;exitX=1.006;exitY=0.796;exitDx=0;exitDy=0;exitPerimeter=0;" parent="jYaan8TBMuX1WAMJRSyH-1" source="jYaan8TBMuX1WAMJRSyH-26" target="jYaan8TBMuX1WAMJRSyH-51" edge="1">
<mxGeometry x="0.4267" y="15" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-16" value="" style="image;aspect=fixed;html=1;points=[];align=center;fontSize=12;image=img/lib/azure2/compute/Kubernetes_Services.svg;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="633.66" y="509" width="32.67" height="28.83" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-18" value="AKS Nodes<br>(Azure VM)" style="image;aspect=fixed;html=1;points=[];align=center;fontSize=12;image=img/lib/azure2/compute/VM_Scale_Sets.svg;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="469" y="525.5" width="64" height="64" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-19" value="AKS Nodes<br>(Azure VM)" style="image;aspect=fixed;html=1;points=[];align=center;fontSize=12;image=img/lib/azure2/compute/VM_Scale_Sets.svg;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="556.65" y="525.5" width="64" height="64" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-20" value="Azure<div>VM</div>" style="image;aspect=fixed;html=1;points=[];align=center;fontSize=12;image=img/lib/azure2/compute/Virtual_Machine.svg;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="709.82" y="551.5" width="46.36" height="43" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-21" value="Azure<div>VM</div>" style="image;aspect=fixed;html=1;points=[];align=center;fontSize=12;image=img/lib/azure2/compute/Virtual_Machine.svg;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="789.82" y="550" width="46.36" height="43" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-22" value="Azure Defender<div>For Cloud</div>" style="image;aspect=fixed;html=1;points=[];align=center;fontSize=12;image=img/lib/azure2/security/Azure_Defender.svg;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1021.62" y="150" width="42.83" height="52" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-23" value="Entra ID<div>(AAD)</div>" style="image;aspect=fixed;html=1;points=[];align=center;fontSize=12;image=img/lib/azure2/identity/Azure_AD_Domain_Services.svg;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="930" y="152" width="54.69" height="50" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-24" value="" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=none;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="945" y="470" width="120" height="44.25" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-25" value="" style="image;aspect=fixed;html=1;points=[];align=center;fontSize=12;image=img/lib/azure2/networking/Subnet.svg;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="958.8299999999999" y="482.89" width="34.6" height="20.72" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-26" value="Private Subnet" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="991.18" y="478.25" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-27" value="" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=none;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="944.45" y="295.56" width="120" height="41.12" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-28" value="" style="image;aspect=fixed;html=1;points=[];align=center;fontSize=12;image=img/lib/azure2/networking/Subnet.svg;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="958.8199999999999" y="305.76" width="34.6" height="20.72" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-29" value="Public Subnet" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="991.17" y="301.12" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="jYaan8TBMuX1WAMJRSyH-53" value="Cloud NGFW
for Azure" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;image=https://www.paloaltonetworks.co.uk/content/dam/pan/en_US/includes/igw/cloud-ngfw/assets/images/find-out-more/circle-logo-2.png;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="967.4800000000001" y="347.75" width="73.93" height="73.75" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-35" value="Azure Arc<div>K8S</div>" style="image;aspect=fixed;html=1;points=[];align=center;fontSize=12;image=img/lib/azure2/other/Arc_Kubernetes.svg;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontColor=default;labelBackgroundColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1414.47" y="581.75" width="42" height="42" as="geometry" />
</mxCell>
<mxCell id="Y3HwV5XOBynX86l8i73X-36" value="Azure Arc<div>VM</div>" style="image;aspect=fixed;html=1;points=[];align=center;fontSize=12;image=img/lib/azure2/management_governance/Arc_Machines.svg;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontColor=default;labelBackgroundColor=default;" parent="jYaan8TBMuX1WAMJRSyH-1" vertex="1">
<mxGeometry x="1494.47" y="578" width="43.57" height="45.75" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram name="GCP" id="wgnr8lyszHvBEXwM_j5K">
<mxGraphModel dx="1764" dy="949" grid="0" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="0" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-0" />
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-1" parent="W0DvvO2Jg0oDPbuxaWbn-0" />
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-2" value="Developer" style="shape=umlActor;verticalLabelPosition=bottom;verticalAlign=top;html=1;outlineConnect=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;sketch=1;curveFitting=1;jiggle=2;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="125" y="160" width="30" height="60" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-3" value="IAC<div>Repo</div>" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="250" y="320" width="60" height="80" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-4" value="Application<div>Code Repo</div>" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="90" y="320" width="100" height="80" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-5" value="PR/Commit" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;strokeColor=#FF8000;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="W0DvvO2Jg0oDPbuxaWbn-1" source="W0DvvO2Jg0oDPbuxaWbn-6" target="W0DvvO2Jg0oDPbuxaWbn-3" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-6" value="Cloud Engineer" style="shape=umlActor;verticalLabelPosition=bottom;verticalAlign=top;html=1;outlineConnect=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;sketch=1;curveFitting=1;jiggle=2;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="265" y="160" width="30" height="60" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-7" value="CI/CD Tools" style="rounded=1;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=bottom;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="70" y="470" width="260" height="220" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-8" value="" style="endArrow=classic;html=1;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;flowAnimation=1;strokeColor=#7F00FF;" parent="W0DvvO2Jg0oDPbuxaWbn-1" source="W0DvvO2Jg0oDPbuxaWbn-14" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="80" y="573" as="sourcePoint" />
<mxPoint x="320" y="573" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-9" value="" style="endArrow=classic;html=1;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;flowAnimation=1;strokeColor=#7F00FF;" parent="W0DvvO2Jg0oDPbuxaWbn-1" source="W0DvvO2Jg0oDPbuxaWbn-16" target="W0DvvO2Jg0oDPbuxaWbn-10" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="80" y="573" as="sourcePoint" />
<mxPoint x="320" y="573" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-10" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="176" y="568" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-11" value="" style="endArrow=classic;html=1;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;flowAnimation=1;strokeColor=#7F00FF;" parent="W0DvvO2Jg0oDPbuxaWbn-1" source="W0DvvO2Jg0oDPbuxaWbn-10" target="W0DvvO2Jg0oDPbuxaWbn-12" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="155" y="573" as="sourcePoint" />
<mxPoint x="320" y="573" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-12" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="231" y="568" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-13" value="" style="endArrow=classic;html=1;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;flowAnimation=1;strokeColor=#7F00FF;" parent="W0DvvO2Jg0oDPbuxaWbn-1" source="W0DvvO2Jg0oDPbuxaWbn-12" target="W0DvvO2Jg0oDPbuxaWbn-14" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="200" y="573" as="sourcePoint" />
<mxPoint x="320" y="573" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-14" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="284" y="568" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-15" value="" style="endArrow=classic;html=1;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;flowAnimation=1;strokeColor=#7F00FF;" parent="W0DvvO2Jg0oDPbuxaWbn-1" target="W0DvvO2Jg0oDPbuxaWbn-16" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="80" y="573" as="sourcePoint" />
<mxPoint x="145" y="573" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-16" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="114" y="568" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-17" value="Git<div>Checkout</div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="89" y="520" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-18" value="Code<div>Scan</div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="149" y="520" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-19" value="image<div>Scan</div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="259" y="520" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-20" value="Test<div>&amp;</div><div>Build</div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="205" y="520" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-21" value="" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="380" y="130" width="730" height="560" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-22" value="Non-vPC Workloads (PaaS)" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="420" y="150" width="470" height="240" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-24" value="vPC Workloads (IaaS)" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="422.85" y="429" width="467.15" height="230" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-25" value="Image<div>Registry</div>" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="480" y="288" width="79" height="80" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-26" value="DB" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=middle;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="630.4300000000001" y="290" width="60" height="80" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-27" value="Large Lang<div>Model (LLM)</div>" style="rounded=1;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=middle;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="757" y="293" width="103" height="60" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-28" value="Cloud Storage" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="480" y="192" width="69" height="80" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-29" value="Large Lang<div>Model (LLM)</div>" style="rounded=1;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=middle;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="767" y="303" width="103" height="60" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-30" value="Fire<div>Shares</div>" style="shape=document;whiteSpace=wrap;html=1;boundedLbl=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="620.65" y="202" width="79.57" height="70" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-31" value="Security VPC" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="930" y="260" width="150" height="270" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-32" value="On Premises" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;jiggle=2;curveFitting=1;strokeColor=default;align=center;verticalAlign=top;fontFamily=Gloria Hallelujah;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DGloria%2BHallelujah;fontSize=12;fontColor=default;fillColor=default;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="1230" y="430" width="500" height="260" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-33" value="" style="sketch=0;points=[[0.015,0.015,0],[0.985,0.015,0],[0.985,0.985,0],[0.015,0.985,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0.25,0],[1,0.5,0],[1,0.75,0],[0.75,1,0],[0.5,1,0],[0.25,1,0],[0,0.75,0],[0,0.5,0],[0,0.25,0]];verticalLabelPosition=bottom;html=1;verticalAlign=top;aspect=fixed;align=center;pointerEvents=1;shape=mxgraph.cisco19.rect;prIcon=firewall;fillColor=#FAFAFA;strokeColor=#005073;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="1260" y="470" width="64" height="50" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-34" value="Office Network" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;verticalAlign=bottom;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="1378" y="470" width="196.5" height="90" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-35" value="Internal Network" style="rounded=0;whiteSpace=wrap;html=1;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;verticalAlign=bottom;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="1378" y="570" width="196.5" height="110" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-36" value="" style="fontColor=#0066CC;verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;fillColor=#CCCCCC;strokeColor=#6881B3;gradientColor=none;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.monitor;hachureGap=4;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="1394.5" y="484.5" width="43.69" height="35.5" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-37" value="" style="fontColor=#0066CC;verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;fillColor=#CCCCCC;strokeColor=#6881B3;gradientColor=none;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.desktop_pc;hachureGap=4;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="1444.5" y="494.25" width="10" height="28" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-38" value="" style="fontColor=#0066CC;verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;fillColor=#CCCCCC;strokeColor=#6881B3;gradientColor=none;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.monitor;hachureGap=4;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="1474.5" y="484.5" width="43.69" height="35.5" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-39" value="" style="fontColor=#0066CC;verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;fillColor=#CCCCCC;strokeColor=#6881B3;gradientColor=none;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.desktop_pc;hachureGap=4;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="1524.5" y="494.25" width="10" height="28" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-40" value="VPN /&nbsp;<div>Cloud Interconnect</div>" style="shape=flexArrow;endArrow=classic;startArrow=classic;html=1;rounded=0;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;width=36;endSize=9;fontSize=13;fillColor=#f5f5f5;strokeColor=#666666;" parent="W0DvvO2Jg0oDPbuxaWbn-1" edge="1">
<mxGeometry width="100" height="100" relative="1" as="geometry">
<mxPoint x="1100" y="566" as="sourcePoint" />
<mxPoint x="1250" y="566" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-41" value="Internet" style="ellipse;shape=cloud;whiteSpace=wrap;html=1;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="1268" y="110" width="177" height="118" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-42" value="Insecure TLS" style="ellipse;shape=cloud;whiteSpace=wrap;html=1;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="1190" y="169.25" width="166.5" height="109" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-43" value="Unmanaged<div>Domain</div>" style="ellipse;shape=cloud;whiteSpace=wrap;html=1;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="1318" y="179" width="166.5" height="109" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-44" value="Shadow Clouds" style="ellipse;shape=cloud;whiteSpace=wrap;html=1;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="1214.5" y="239.5" width="164.97" height="108" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-45" value="Hacker" style="shape=umlActor;verticalLabelPosition=bottom;verticalAlign=top;html=1;outlineConnect=0;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="1604.5" y="211.75" width="30" height="60" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-46" value="Application Users<div>(Public)</div>" style="shape=umlActor;verticalLabelPosition=bottom;verticalAlign=top;html=1;outlineConnect=0;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="1604.5" y="80" width="30" height="60" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-47" value="Application Users<div>(Internal)</div>" style="shape=umlActor;verticalLabelPosition=bottom;verticalAlign=top;html=1;outlineConnect=0;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="1654" y="484.5" width="30" height="60" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-48" value="PR/Commit" style="edgeStyle=orthogonalEdgeStyle;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;strokeWidth=2;curved=1;flowAnimation=1;strokeColor=#FF8000;" parent="W0DvvO2Jg0oDPbuxaWbn-1" source="W0DvvO2Jg0oDPbuxaWbn-2" target="W0DvvO2Jg0oDPbuxaWbn-4" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-49" value="Trigger" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.335;entryY=-0.005;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF8000;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="W0DvvO2Jg0oDPbuxaWbn-1" source="W0DvvO2Jg0oDPbuxaWbn-4" target="W0DvvO2Jg0oDPbuxaWbn-7" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-50" value="Trigger" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.631;entryY=0.009;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF8000;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="W0DvvO2Jg0oDPbuxaWbn-1" source="W0DvvO2Jg0oDPbuxaWbn-3" target="W0DvvO2Jg0oDPbuxaWbn-7" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="280" y="430" />
<mxPoint x="234" y="430" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-51" value="Continuous Integration<div>(CI)</div>" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.25;exitDx=0;exitDy=0;strokeColor=#FF8000;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="W0DvvO2Jg0oDPbuxaWbn-1" source="W0DvvO2Jg0oDPbuxaWbn-7" edge="1">
<mxGeometry x="-0.069" relative="1" as="geometry">
<Array as="points">
<mxPoint x="360" y="525" />
<mxPoint x="360" y="335" />
</Array>
<mxPoint as="offset" />
<mxPoint x="430" y="335" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-52" value="Continuous<div>Deployment/</div><div>Delivery</div><div>(CD)</div>" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.75;exitDx=0;exitDy=0;strokeColor=#FF8000;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" parent="W0DvvO2Jg0oDPbuxaWbn-1" source="W0DvvO2Jg0oDPbuxaWbn-7" edge="1">
<mxGeometry x="0.1454" y="25" relative="1" as="geometry">
<mxPoint as="offset" />
<mxPoint x="480" y="558" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-53" value="Exposure" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0.07;entryY=0.4;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF00FF;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="W0DvvO2Jg0oDPbuxaWbn-1" source="W0DvvO2Jg0oDPbuxaWbn-105" target="W0DvvO2Jg0oDPbuxaWbn-41" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="1170" y="316" />
<mxPoint x="1170" y="157" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-54" value="ZTNA" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.904;entryY=0.316;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=default;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="W0DvvO2Jg0oDPbuxaWbn-1" source="W0DvvO2Jg0oDPbuxaWbn-46" target="W0DvvO2Jg0oDPbuxaWbn-41" edge="1">
<mxGeometry x="-0.3966" y="10" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-55" value="Outside-In<div>Connection</div>" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.875;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=default;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="W0DvvO2Jg0oDPbuxaWbn-1" source="W0DvvO2Jg0oDPbuxaWbn-45" target="W0DvvO2Jg0oDPbuxaWbn-41" edge="1">
<mxGeometry x="0.3151" y="-9" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-56" value="XDR<div>Protected<br><div>Endpoint</div></div>" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.796;entryY=0.222;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#00CC00;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="W0DvvO2Jg0oDPbuxaWbn-1" source="W0DvvO2Jg0oDPbuxaWbn-47" target="W0DvvO2Jg0oDPbuxaWbn-34" edge="1">
<mxGeometry x="-0.0043" y="-12" relative="1" as="geometry">
<mxPoint x="5" y="2" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-57" value="&nbsp;SaaS<div>Applications</div>" style="ellipse;shape=cloud;whiteSpace=wrap;html=1;sketch=1;hachureGap=4;jiggle=2;curveFitting=1;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;" parent="W0DvvO2Jg0oDPbuxaWbn-1" vertex="1">
<mxGeometry x="1335.5" y="256.75" width="139" height="91" as="geometry" />
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-58" value="SASE / SDWAN" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.75;exitY=0;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.55;entryY=0.95;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#00CC00;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=14;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="W0DvvO2Jg0oDPbuxaWbn-1" source="W0DvvO2Jg0oDPbuxaWbn-33" target="W0DvvO2Jg0oDPbuxaWbn-57" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="1308" y="400" />
<mxPoint x="1412" y="400" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="W0DvvO2Jg0oDPbuxaWbn-59" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;hachureGap=4;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.996;entryY=0.948;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#007FFF;strokeWidth=2;align=center;verticalAlign=middle;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=11;fontColor=default;labelBackgroundColor=default;endArrow=classic;flowAnimation=1;" parent="W0DvvO2Jg0oDPbuxaWbn-1" source="W0DvvO2Jg0oDPbuxaWbn-33" target="W0DvvO2Jg0oDPbuxaWbn-24" edge="1">
<mxGeometry relative="1" as="geometry" />