-
Notifications
You must be signed in to change notification settings - Fork 2
/
UI_MockUps
1078 lines (1078 loc) · 111 KB
/
UI_MockUps
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<mxfile host="app.diagrams.net" modified="2021-10-18T11:19:43.025Z" agent="5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 Edg/94.0.992.50" etag="-pABkpH7znEuqTPYG4rV" version="15.5.4" type="github">
<diagram id="HzL5nLl4aqMytPJhs5fx" name="Page-1">
<mxGraphModel dx="5560" dy="3216" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1600" pageHeight="900" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="kOYK7Mknpjplnk_gRkZT-1" value="Tool Comparision" style="swimlane;swimlaneFillColor=#E6E6E6;fillColor=#2196F3;fontColor=#FFFFFF;" parent="1" vertex="1">
<mxGeometry x="-750" y="40" width="520" height="410" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-3" value="Create New
Comparision" style="dashed=0;align=center;fontSize=12;shape=rect;fillColor=#2196F3;strokeColor=none;fontStyle=1;shadow=1;fontColor=#ffffff;" parent="kOYK7Mknpjplnk_gRkZT-1" vertex="1">
<mxGeometry x="195" y="64" width="130" height="66" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-2" value="Load Existing 
Comparision" style="dashed=0;align=center;fontSize=12;shape=rect;fillColor=#2196F3;strokeColor=none;fontStyle=1;shadow=1;fontColor=#ffffff;" parent="kOYK7Mknpjplnk_gRkZT-1" vertex="1">
<mxGeometry x="195" y="160" width="130" height="70" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-36" value="Close 
Application" style="dashed=0;align=center;fontSize=12;shape=rect;fillColor=#2196F3;strokeColor=none;fontStyle=1;shadow=1;fontColor=#ffffff;" parent="kOYK7Mknpjplnk_gRkZT-1" vertex="1">
<mxGeometry x="195" y="260" width="130" height="66" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-8" value="Create New" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;notch=0;" parent="1" vertex="1">
<mxGeometry x="530" y="-650" width="100" height="70" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-9" value="Tool Comparision" style="swimlane;fillColor=#2196F3;swimlaneFillColor=#E6E6E6;fontColor=#FFFFFF;" parent="1" vertex="1">
<mxGeometry x="640" width="1000" height="651" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-42" value="" style="dashed=0;shape=rect;fillColor=#B3B3B3;strokeColor=none;" parent="kOYK7Mknpjplnk_gRkZT-9" vertex="1">
<mxGeometry x="375" y="100" width="250" height="330" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-45" value="Criterias" style="dashed=0;shape=rect;strokeColor=#001DBC;fillColor=#2196F3;resizeWidth=1;fontSize=21;spacingTop=-3;verticalAlign=middle;align=left;spacingLeft=72;fontColor=#ffffff;" parent="kOYK7Mknpjplnk_gRkZT-42" vertex="1">
<mxGeometry width="249.99999999999997" height="57" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-48" value="Criteria 1" style="dashed=0;shape=rect;strokeColor=none;fillColor=#ffffff;resizeWidth=1;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=40;strokeWidth=1;fontSize=17;" parent="kOYK7Mknpjplnk_gRkZT-42" vertex="1">
<mxGeometry width="220" height="48" relative="1" as="geometry">
<mxPoint x="10" y="81" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-50" value="" style="dashed=0;shape=mxgraph.gmdl.up;strokeColor=#737373;strokeWidth=2;flipV=1;align=left;" parent="kOYK7Mknpjplnk_gRkZT-48" vertex="1">
<mxGeometry x="1" y="0.5" width="12" height="6" relative="1" as="geometry">
<mxPoint x="-95" y="-5" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-90" value="" style="dashed=0;html=1;shape=mxgraph.gmdl.edit;strokeColor=none;fillColor=#737373;shadow=0;sketch=0;fontSize=14;align=center;" parent="kOYK7Mknpjplnk_gRkZT-48" vertex="1">
<mxGeometry x="148.2608695652174" y="19" width="19.130434782608695" height="20" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-95" value="" style="dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.x;strokeColor=#737373;fillColor=#737373;shadow=0;strokeWidth=2;sketch=0;labelBackgroundColor=none;fontSize=14;" parent="kOYK7Mknpjplnk_gRkZT-48" vertex="1">
<mxGeometry x="185" y="23" width="16" height="16" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-51" value="Criteria 2" style="dashed=0;shape=rect;strokeColor=none;fillColor=#ffffff;resizeWidth=1;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=40;fontSize=17;" parent="kOYK7Mknpjplnk_gRkZT-42" vertex="1">
<mxGeometry width="220" height="48" relative="1" as="geometry">
<mxPoint x="10" y="129" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-53" value="" style="dashed=0;shape=mxgraph.gmdl.up;strokeColor=#737373;strokeWidth=2;flipV=1;" parent="kOYK7Mknpjplnk_gRkZT-51" vertex="1">
<mxGeometry x="1" y="0.5" width="12" height="6" relative="1" as="geometry">
<mxPoint x="-95" y="-3" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-94" value="" style="dashed=0;html=1;shape=mxgraph.gmdl.edit;strokeColor=none;fillColor=#737373;shadow=0;sketch=0;fontSize=14;align=center;" parent="kOYK7Mknpjplnk_gRkZT-51" vertex="1">
<mxGeometry x="148.2608695652174" y="21" width="19.130434782608695" height="20" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-96" value="" style="dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.x;strokeColor=#737373;fillColor=#737373;shadow=0;strokeWidth=2;sketch=0;labelBackgroundColor=none;fontSize=14;" parent="kOYK7Mknpjplnk_gRkZT-51" vertex="1">
<mxGeometry x="185" y="23" width="16" height="16" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-54" value="Criteria 3" style="dashed=0;shape=rect;strokeColor=none;fillColor=#ffffff;resizeWidth=1;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=40;fontSize=17;" parent="kOYK7Mknpjplnk_gRkZT-42" vertex="1">
<mxGeometry width="220" height="48" relative="1" as="geometry">
<mxPoint x="10" y="177" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-56" value="" style="dashed=0;shape=mxgraph.gmdl.up;strokeColor=#737373;strokeWidth=2;flipV=1;" parent="kOYK7Mknpjplnk_gRkZT-54" vertex="1">
<mxGeometry x="1" y="0.5" width="12" height="6" relative="1" as="geometry">
<mxPoint x="-95" y="-4" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-93" value="" style="dashed=0;html=1;shape=mxgraph.gmdl.edit;strokeColor=none;fillColor=#737373;shadow=0;sketch=0;fontSize=14;align=center;" parent="kOYK7Mknpjplnk_gRkZT-54" vertex="1">
<mxGeometry x="148.2608695652174" y="13" width="19.130434782608695" height="20" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-97" value="" style="dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.x;strokeColor=#737373;fillColor=#737373;shadow=0;strokeWidth=2;sketch=0;labelBackgroundColor=none;fontSize=14;" parent="kOYK7Mknpjplnk_gRkZT-54" vertex="1">
<mxGeometry x="185" y="17" width="16" height="16" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-57" value="Criteria 4" style="dashed=0;shape=rect;strokeColor=none;fillColor=#ffffff;resizeWidth=1;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=40;fontSize=17;" parent="kOYK7Mknpjplnk_gRkZT-42" vertex="1">
<mxGeometry width="220" height="48" relative="1" as="geometry">
<mxPoint x="10" y="225" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-59" value="" style="dashed=0;shape=mxgraph.gmdl.up;strokeColor=#737373;strokeWidth=2;flipV=1;" parent="kOYK7Mknpjplnk_gRkZT-57" vertex="1">
<mxGeometry x="1" y="0.5" width="12" height="6" relative="1" as="geometry">
<mxPoint x="-95" y="1" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-92" value="" style="dashed=0;html=1;shape=mxgraph.gmdl.edit;strokeColor=none;fillColor=#737373;shadow=0;sketch=0;fontSize=14;align=center;" parent="kOYK7Mknpjplnk_gRkZT-57" vertex="1">
<mxGeometry x="148.2608695652174" y="15" width="19.130434782608695" height="20" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-98" value="" style="dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.x;strokeColor=#737373;fillColor=#737373;shadow=0;strokeWidth=2;sketch=0;labelBackgroundColor=none;fontSize=14;" parent="kOYK7Mknpjplnk_gRkZT-57" vertex="1">
<mxGeometry x="185" y="15" width="16" height="16" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-60" value="Criteria 5" style="dashed=0;shape=rect;strokeColor=none;fillColor=#ffffff;resizeWidth=1;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=40;fontSize=17;" parent="kOYK7Mknpjplnk_gRkZT-42" vertex="1">
<mxGeometry width="220" height="48" relative="1" as="geometry">
<mxPoint x="10" y="273" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-62" value="" style="dashed=0;shape=mxgraph.gmdl.up;strokeColor=#737373;strokeWidth=2;flipV=1;" parent="kOYK7Mknpjplnk_gRkZT-60" vertex="1">
<mxGeometry x="1" y="0.5" width="12" height="6" relative="1" as="geometry">
<mxPoint x="-95" y="-7" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-91" value="" style="dashed=0;html=1;shape=mxgraph.gmdl.edit;strokeColor=none;fillColor=#737373;shadow=0;sketch=0;fontSize=14;align=center;" parent="kOYK7Mknpjplnk_gRkZT-60" vertex="1">
<mxGeometry x="148.2608695652174" y="17" width="19.130434782608695" height="20" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-99" value="" style="dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.x;strokeColor=#737373;fillColor=#737373;shadow=0;strokeWidth=2;sketch=0;labelBackgroundColor=none;fontSize=14;" parent="kOYK7Mknpjplnk_gRkZT-60" vertex="1">
<mxGeometry x="185" y="17" width="16" height="16" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-86" value="" style="verticalLabelPosition=bottom;shadow=0;dashed=0;align=center;html=1;verticalAlign=top;strokeWidth=1;shape=mxgraph.mockup.navigation.scrollBar;strokeColor=#999999;barPos=100;fillColor2=#99ddff;strokeColor2=none;direction=north;fontSize=14;fillColor=#B3B3B3;fontStyle=4;" parent="kOYK7Mknpjplnk_gRkZT-42" vertex="1">
<mxGeometry x="230" y="80" width="20" height="240" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-170" value="" style="text;spacingLeft=16;fontColor=#B3B3B3;fontSize=11;spacingTop=6;resizeWidth=1;labelBackgroundColor=#B3B3B3;fillColor=#FFFFFF;align=center;" parent="kOYK7Mknpjplnk_gRkZT-9" vertex="1">
<mxGeometry x="372.5" y="430" width="255" height="50" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-169" value="CANCEL" style="text;fontSize=11;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;" parent="kOYK7Mknpjplnk_gRkZT-9" vertex="1">
<mxGeometry x="390" y="434" width="75" height="42" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-171" value="ADD
CRITERIA" style="text;fontSize=12;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;align=center;" parent="kOYK7Mknpjplnk_gRkZT-9" vertex="1">
<mxGeometry x="460" y="434" width="75" height="42" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-172" value="ADD
TOOLS" style="text;fontSize=13;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;align=center;" parent="kOYK7Mknpjplnk_gRkZT-9" vertex="1">
<mxGeometry x="535" y="434" width="75" height="42" as="geometry" />
</mxCell>
<mxCell id="x5_B62W5w27Jvr4w5505-102" value="Import Criteria from: 
\\?\C:\file.json" style="text;fontSize=8;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;align=left;" vertex="1" parent="kOYK7Mknpjplnk_gRkZT-9">
<mxGeometry x="390" y="490" width="100" height="42" as="geometry" />
</mxCell>
<mxCell id="x5_B62W5w27Jvr4w5505-103" value="Export as JSON" style="text;fontSize=8;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;align=left;" vertex="1" parent="kOYK7Mknpjplnk_gRkZT-9">
<mxGeometry x="510" y="490" width="100" height="42" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-101" value="Add Criteria" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;notch=0;" parent="1" vertex="1">
<mxGeometry x="1650" y="50" width="100" height="70" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-102" value="Tool Comparision" style="swimlane;fillColor=#2196F3;swimlaneFillColor=#E6E6E6;fontColor=#FFFFFF;" parent="1" vertex="1">
<mxGeometry x="1760" width="1000" height="600" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-127" value="" style="dashed=0;shape=rect;fillColor=#FFFFFF;strokeColor=none;shadow=1;labelBackgroundColor=none;fontSize=14;fontColor=none;align=center;" parent="kOYK7Mknpjplnk_gRkZT-102" vertex="1">
<mxGeometry x="372.5" y="110" width="255.63" height="380" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-180" value="|" style="text;verticalAlign=bottom;spacingBottom=0;spacingLeft=16;fontSize=20;fontColor=#2196F3;resizeWidth=1;labelBackgroundColor=none;fillColor=#FFFFFF;" parent="kOYK7Mknpjplnk_gRkZT-127" vertex="1">
<mxGeometry x="0.6299999999999955" y="109.99999999999955" width="255" height="30" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-128" value="Add Criteria" style="text;verticalAlign=middle;spacing=16;fontSize=20;fontStyle=1;resizeWidth=1;labelBackgroundColor=none;fontColor=#FFFFFF;fillColor=#2196F3;align=center;" parent="kOYK7Mknpjplnk_gRkZT-127" vertex="1">
<mxGeometry width="255" height="60" relative="1" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-129" value="" style="text;spacingLeft=16;fontColor=#B3B3B3;fontSize=11;spacingTop=6;resizeWidth=1;labelBackgroundColor=#B3B3B3;fillColor=#B3B3B3;align=center;" parent="kOYK7Mknpjplnk_gRkZT-127" vertex="1">
<mxGeometry width="255" height="30" relative="1" as="geometry">
<mxPoint y="60" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-132" value="" style="text;spacingLeft=16;fontSize=15;fontStyle=1;resizeWidth=1;labelBackgroundColor=none;fontColor=none;fillColor=#FFFFFF;align=center;" parent="kOYK7Mknpjplnk_gRkZT-127" vertex="1">
<mxGeometry width="255" height="40" relative="1" as="geometry">
<mxPoint y="170" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-133" value="Description" style="text;verticalAlign=middle;spacingLeft=16;fontColor=#2196F3;resizeWidth=1;labelBackgroundColor=none;fontSize=14;fillColor=#FFFFFF;" parent="kOYK7Mknpjplnk_gRkZT-127" vertex="1">
<mxGeometry width="255" height="30" relative="1" as="geometry">
<mxPoint y="150" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-136" value="Exklusion Criteria" style="shape=rect;strokeWidth=2;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=16;fontColor=#000000;strokeColor=#2196F3;fontSize=14;rounded=1;size=2;labelBackgroundColor=none;fillColor=#FFFFFF;" parent="kOYK7Mknpjplnk_gRkZT-127" vertex="1">
<mxGeometry width="20" height="20" relative="1" as="geometry">
<mxPoint x="16" y="310" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-138" value="CANCEL" style="text;fontSize=12;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;" parent="kOYK7Mknpjplnk_gRkZT-127" vertex="1">
<mxGeometry x="1" y="1" width="75" height="42" relative="1" as="geometry">
<mxPoint x="-160" y="-42" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-139" value="ADD" style="text;fontSize=13;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;" parent="kOYK7Mknpjplnk_gRkZT-127" vertex="1">
<mxGeometry x="1" y="1" width="85" height="42" relative="1" as="geometry">
<mxPoint x="-85" y="-42" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-151" value="" style="dashed=0;align=center;fontSize=12;shape=rect;fillColor=#ffffff;strokeColor=#cccccc;labelBackgroundColor=none;fontColor=#2196F3;" parent="kOYK7Mknpjplnk_gRkZT-127" vertex="1">
<mxGeometry x="16.25" y="260" width="222.5" height="40" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-152" value="Weigthing" style="text;fontColor=#000000;verticalAlign=middle;spacingLeft=13;fontSize=14;labelBackgroundColor=none;strokeColor=#2196F3;fillColor=#FFFFFF;" parent="kOYK7Mknpjplnk_gRkZT-151" vertex="1">
<mxGeometry width="222.5" height="40" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-153" value="" style="shape=rect;fillColor=none;strokeColor=#cccccc;resizeHeight=1;labelBackgroundColor=none;fontSize=12;fontColor=#2196F3;align=center;" parent="kOYK7Mknpjplnk_gRkZT-151" vertex="1">
<mxGeometry x="1" width="40" height="40" relative="1" as="geometry">
<mxPoint x="-40" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-154" value="" style="dashed=0;html=1;shape=mxgraph.gmdl.triangle;fillColor=#cccccc;strokeColor=none;labelBackgroundColor=none;fontSize=12;fontColor=#2196F3;align=center;" parent="kOYK7Mknpjplnk_gRkZT-153" vertex="1">
<mxGeometry x="0.5" y="0.5" width="10" height="5" relative="1" as="geometry">
<mxPoint x="-5" y="-2.5" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-293" value="<h1><span style="color: rgb(0 , 0 , 0) ; font-size: 12px ; font-weight: normal">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</span><br></h1>" style="text;html=1;strokeColor=#2196F3;fillColor=none;spacing=5;spacingTop=-20;whiteSpace=wrap;overflow=hidden;rounded=0;labelBackgroundColor=none;fontSize=12;fontColor=#FFFFFF;align=center;" parent="kOYK7Mknpjplnk_gRkZT-127" vertex="1">
<mxGeometry x="16.25" y="180" width="223.75" height="70" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-177" value="Name" style="text;fontColor=#1F9BFD;fontSize=12;verticalAlign=middle;strokeColor=none;fillColor=none;labelBackgroundColor=none;labelBorderColor=none;" parent="kOYK7Mknpjplnk_gRkZT-102" vertex="1">
<mxGeometry x="390" y="204" width="240" height="30" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-179" value="" style="dashed=0;shape=line;strokeWidth=2;noLabel=1;strokeColor=#1F9BFD;labelBackgroundColor=#B3B3B3;labelBorderColor=none;fontSize=12;fontColor=#FFCCCC;fillColor=#B3B3B3;gradientColor=none;align=center;verticalAlign=top;" parent="kOYK7Mknpjplnk_gRkZT-102" vertex="1">
<mxGeometry x="390" y="249" width="230" height="10" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-173" value="Tool Comparision" style="swimlane;fillColor=#2196F3;swimlaneFillColor=#E6E6E6;fontColor=#FFFFFF;" parent="1" vertex="1">
<mxGeometry x="640" y="720" width="1016" height="702" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-207" value="" style="dashed=0;shape=rect;fillColor=#B3B3B3;strokeColor=none;" parent="kOYK7Mknpjplnk_gRkZT-173" vertex="1">
<mxGeometry x="375" y="120" width="250" height="330" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-208" value="Tools" style="dashed=0;shape=rect;strokeColor=#001DBC;fillColor=#2196F3;resizeWidth=1;fontSize=21;spacingTop=-3;verticalAlign=middle;align=left;spacingLeft=72;fontColor=#ffffff;" parent="kOYK7Mknpjplnk_gRkZT-207" vertex="1">
<mxGeometry width="249.99999999999997" height="57" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-209" value="Tool 1" style="dashed=0;shape=rect;strokeColor=none;fillColor=#ffffff;resizeWidth=1;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=40;strokeWidth=1;fontSize=17;" parent="kOYK7Mknpjplnk_gRkZT-207" vertex="1">
<mxGeometry width="220" height="48" relative="1" as="geometry">
<mxPoint x="10" y="81" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-210" value="" style="dashed=0;shape=mxgraph.gmdl.up;strokeColor=#737373;strokeWidth=2;flipV=1;align=left;" parent="kOYK7Mknpjplnk_gRkZT-209" vertex="1">
<mxGeometry x="1" y="0.5" width="12" height="6" relative="1" as="geometry">
<mxPoint x="-95" y="-5" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-211" value="" style="dashed=0;html=1;shape=mxgraph.gmdl.edit;strokeColor=none;fillColor=#737373;shadow=0;sketch=0;fontSize=14;align=center;" parent="kOYK7Mknpjplnk_gRkZT-209" vertex="1">
<mxGeometry x="148.2608695652174" y="19" width="19.130434782608695" height="20" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-212" value="" style="dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.x;strokeColor=#737373;fillColor=#737373;shadow=0;strokeWidth=2;sketch=0;labelBackgroundColor=none;fontSize=14;" parent="kOYK7Mknpjplnk_gRkZT-209" vertex="1">
<mxGeometry x="185" y="23" width="16" height="16" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-213" value="Tool 2" style="dashed=0;shape=rect;strokeColor=none;fillColor=#ffffff;resizeWidth=1;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=40;fontSize=17;" parent="kOYK7Mknpjplnk_gRkZT-207" vertex="1">
<mxGeometry width="220" height="48" relative="1" as="geometry">
<mxPoint x="10" y="129" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-214" value="" style="dashed=0;shape=mxgraph.gmdl.up;strokeColor=#737373;strokeWidth=2;flipV=1;" parent="kOYK7Mknpjplnk_gRkZT-213" vertex="1">
<mxGeometry x="1" y="0.5" width="12" height="6" relative="1" as="geometry">
<mxPoint x="-95" y="-3" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-215" value="" style="dashed=0;html=1;shape=mxgraph.gmdl.edit;strokeColor=none;fillColor=#737373;shadow=0;sketch=0;fontSize=14;align=center;" parent="kOYK7Mknpjplnk_gRkZT-213" vertex="1">
<mxGeometry x="148.2608695652174" y="21" width="19.130434782608695" height="20" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-216" value="" style="dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.x;strokeColor=#737373;fillColor=#737373;shadow=0;strokeWidth=2;sketch=0;labelBackgroundColor=none;fontSize=14;" parent="kOYK7Mknpjplnk_gRkZT-213" vertex="1">
<mxGeometry x="185" y="23" width="16" height="16" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-217" value="Tool 3" style="dashed=0;shape=rect;strokeColor=none;fillColor=#ffffff;resizeWidth=1;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=40;fontSize=17;" parent="kOYK7Mknpjplnk_gRkZT-207" vertex="1">
<mxGeometry width="220" height="48" relative="1" as="geometry">
<mxPoint x="10" y="177" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-218" value="" style="dashed=0;shape=mxgraph.gmdl.up;strokeColor=#737373;strokeWidth=2;flipV=1;" parent="kOYK7Mknpjplnk_gRkZT-217" vertex="1">
<mxGeometry x="1" y="0.5" width="12" height="6" relative="1" as="geometry">
<mxPoint x="-95" y="-4" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-219" value="" style="dashed=0;html=1;shape=mxgraph.gmdl.edit;strokeColor=none;fillColor=#737373;shadow=0;sketch=0;fontSize=14;align=center;" parent="kOYK7Mknpjplnk_gRkZT-217" vertex="1">
<mxGeometry x="148.2608695652174" y="13" width="19.130434782608695" height="20" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-220" value="" style="dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.x;strokeColor=#737373;fillColor=#737373;shadow=0;strokeWidth=2;sketch=0;labelBackgroundColor=none;fontSize=14;" parent="kOYK7Mknpjplnk_gRkZT-217" vertex="1">
<mxGeometry x="185" y="17" width="16" height="16" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-221" value="Tool 4" style="dashed=0;shape=rect;strokeColor=none;fillColor=#ffffff;resizeWidth=1;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=40;fontSize=17;" parent="kOYK7Mknpjplnk_gRkZT-207" vertex="1">
<mxGeometry width="220" height="48" relative="1" as="geometry">
<mxPoint x="10" y="225" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-222" value="" style="dashed=0;shape=mxgraph.gmdl.up;strokeColor=#737373;strokeWidth=2;flipV=1;" parent="kOYK7Mknpjplnk_gRkZT-221" vertex="1">
<mxGeometry x="1" y="0.5" width="12" height="6" relative="1" as="geometry">
<mxPoint x="-95" y="1" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-223" value="" style="dashed=0;html=1;shape=mxgraph.gmdl.edit;strokeColor=none;fillColor=#737373;shadow=0;sketch=0;fontSize=14;align=center;" parent="kOYK7Mknpjplnk_gRkZT-221" vertex="1">
<mxGeometry x="148.2608695652174" y="15" width="19.130434782608695" height="20" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-224" value="" style="dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.x;strokeColor=#737373;fillColor=#737373;shadow=0;strokeWidth=2;sketch=0;labelBackgroundColor=none;fontSize=14;" parent="kOYK7Mknpjplnk_gRkZT-221" vertex="1">
<mxGeometry x="185" y="15" width="16" height="16" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-225" value="Tool 5" style="dashed=0;shape=rect;strokeColor=none;fillColor=#ffffff;resizeWidth=1;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=40;fontSize=17;" parent="kOYK7Mknpjplnk_gRkZT-207" vertex="1">
<mxGeometry width="220" height="48" relative="1" as="geometry">
<mxPoint x="10" y="273" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-226" value="" style="dashed=0;shape=mxgraph.gmdl.up;strokeColor=#737373;strokeWidth=2;flipV=1;" parent="kOYK7Mknpjplnk_gRkZT-225" vertex="1">
<mxGeometry x="1" y="0.5" width="12" height="6" relative="1" as="geometry">
<mxPoint x="-95" y="-7" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-227" value="" style="dashed=0;html=1;shape=mxgraph.gmdl.edit;strokeColor=none;fillColor=#737373;shadow=0;sketch=0;fontSize=14;align=center;" parent="kOYK7Mknpjplnk_gRkZT-225" vertex="1">
<mxGeometry x="148.2608695652174" y="17" width="19.130434782608695" height="20" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-228" value="" style="dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.x;strokeColor=#737373;fillColor=#737373;shadow=0;strokeWidth=2;sketch=0;labelBackgroundColor=none;fontSize=14;" parent="kOYK7Mknpjplnk_gRkZT-225" vertex="1">
<mxGeometry x="185" y="17" width="16" height="16" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-229" value="" style="verticalLabelPosition=bottom;shadow=0;dashed=0;align=center;html=1;verticalAlign=top;strokeWidth=1;shape=mxgraph.mockup.navigation.scrollBar;strokeColor=#999999;barPos=100;fillColor2=#99ddff;strokeColor2=none;direction=north;fontSize=14;fillColor=#B3B3B3;fontStyle=4;" parent="kOYK7Mknpjplnk_gRkZT-207" vertex="1">
<mxGeometry x="230" y="80" width="20" height="240" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-230" value="" style="text;spacingLeft=16;fontColor=#B3B3B3;fontSize=11;spacingTop=6;resizeWidth=1;labelBackgroundColor=#B3B3B3;fillColor=#FFFFFF;align=center;" parent="kOYK7Mknpjplnk_gRkZT-173" vertex="1">
<mxGeometry x="372.5" y="450" width="255" height="50" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-231" value="CHANGE
CRITERIAS" style="text;fontSize=11;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;align=center;" parent="kOYK7Mknpjplnk_gRkZT-173" vertex="1">
<mxGeometry x="390" y="454" width="75" height="42" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-232" value="ADD
TOOL" style="text;fontSize=12;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;align=center;" parent="kOYK7Mknpjplnk_gRkZT-173" vertex="1">
<mxGeometry x="460" y="454" width="75" height="42" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-233" value="START
COMPARISION" style="text;fontSize=13;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;align=center;" parent="kOYK7Mknpjplnk_gRkZT-173" vertex="1">
<mxGeometry x="535" y="454" width="75" height="42" as="geometry" />
</mxCell>
<mxCell id="x5_B62W5w27Jvr4w5505-105" value="Import Criteria from: 
\\?\C:\file.json" style="text;fontSize=8;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;align=left;" vertex="1" parent="kOYK7Mknpjplnk_gRkZT-173">
<mxGeometry x="390" y="510" width="100" height="42" as="geometry" />
</mxCell>
<mxCell id="x5_B62W5w27Jvr4w5505-106" value="Export as JSON" style="text;fontSize=8;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;align=left;" vertex="1" parent="kOYK7Mknpjplnk_gRkZT-173">
<mxGeometry x="510" y="510" width="100" height="42" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-201" value="ADD TOOLS<br>" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;direction=south;notch=0;labelBackgroundColor=none;fontSize=12;fontColor=#000000;strokeColor=#2196F3;fillColor=#FFFFFF;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="1100" y="610" width="70" height="100" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-234" value="Add Tool" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;notch=0;" parent="1" vertex="1">
<mxGeometry x="1660" y="750" width="100" height="70" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-235" value="Tool Comparision" style="swimlane;fillColor=#2196F3;swimlaneFillColor=#E6E6E6;fontColor=#FFFFFF;" parent="1" vertex="1">
<mxGeometry x="1760" y="720" width="1000" height="600" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-276" value="" style="dashed=0;shape=rect;fillColor=#FFFFFF;strokeColor=#eeeeee;shadow=1;labelBackgroundColor=none;fontSize=14;fontColor=none;align=center;" parent="kOYK7Mknpjplnk_gRkZT-235" vertex="1">
<mxGeometry x="372.5" y="132" width="255" height="380" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-277" value="Add Tool" style="text;verticalAlign=middle;spacing=16;fontSize=20;fontStyle=1;resizeWidth=1;labelBackgroundColor=none;fontColor=#FFFFFF;fillColor=#2196F3;align=center;" parent="kOYK7Mknpjplnk_gRkZT-276" vertex="1">
<mxGeometry width="255" height="60" relative="1" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-278" value="" style="text;spacingLeft=16;fontColor=#B3B3B3;fontSize=11;spacingTop=6;resizeWidth=1;labelBackgroundColor=#B3B3B3;fillColor=#B3B3B3;align=center;" parent="kOYK7Mknpjplnk_gRkZT-276" vertex="1">
<mxGeometry width="255" height="30" relative="1" as="geometry">
<mxPoint y="60" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-279" value="" style="text;spacingLeft=16;fontSize=15;fontStyle=1;resizeWidth=1;labelBackgroundColor=none;fontColor=none;fillColor=#FFFFFF;align=center;" parent="kOYK7Mknpjplnk_gRkZT-276" vertex="1">
<mxGeometry width="255" height="40" relative="1" as="geometry">
<mxPoint y="170" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-280" value="Name" style="text;verticalAlign=middle;spacingLeft=16;fontColor=#2196F3;resizeWidth=1;labelBackgroundColor=none;fontSize=14;fillColor=#FFFFFF;" parent="kOYK7Mknpjplnk_gRkZT-276" vertex="1">
<mxGeometry width="255" height="30" relative="1" as="geometry">
<mxPoint y="100" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-281" value="|" style="text;verticalAlign=bottom;spacingBottom=0;spacingLeft=16;fontSize=20;fontColor=#2196F3;resizeWidth=1;labelBackgroundColor=none;fillColor=#FFFFFF;" parent="kOYK7Mknpjplnk_gRkZT-276" vertex="1">
<mxGeometry width="255" height="30" relative="1" as="geometry">
<mxPoint y="130" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-282" value="" style="shape=line;strokeWidth=2;noLabel=1;strokeColor=#2196F3;resizeWidth=1;labelBackgroundColor=none;fontSize=14;fontColor=none;fillColor=#FFFFFF;align=center;" parent="kOYK7Mknpjplnk_gRkZT-276" vertex="1">
<mxGeometry x="0.0571" width="225.85714285714286" height="30" relative="1" as="geometry">
<mxPoint x="2" y="150" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-284" value="CANCEL" style="text;fontSize=12;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;" parent="kOYK7Mknpjplnk_gRkZT-276" vertex="1">
<mxGeometry x="1" y="1" width="75" height="42" relative="1" as="geometry">
<mxPoint x="-160" y="-42" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-285" value="ADD 
CRITERIAS" style="text;fontSize=13;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;align=center;" parent="kOYK7Mknpjplnk_gRkZT-276" vertex="1">
<mxGeometry x="1" y="1" width="85" height="42" relative="1" as="geometry">
<mxPoint x="-85" y="-42" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-290" value="Description" style="text;verticalAlign=middle;spacingLeft=16;fontColor=#2196F3;resizeWidth=1;labelBackgroundColor=none;fontSize=14;fillColor=#FFFFFF;" parent="kOYK7Mknpjplnk_gRkZT-276" vertex="1">
<mxGeometry y="178" width="255" height="30" as="geometry" />
</mxCell>
<mxCell id="kOYK7Mknpjplnk_gRkZT-294" value="<h1><span style="color: rgb(0 , 0 , 0) ; font-size: 12px ; font-weight: normal">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</span><br></h1>" style="text;html=1;strokeColor=#2196F3;fillColor=none;spacing=5;spacingTop=-20;whiteSpace=wrap;overflow=hidden;rounded=0;labelBackgroundColor=none;fontSize=12;fontColor=#FFFFFF;align=center;" parent="kOYK7Mknpjplnk_gRkZT-276" vertex="1">
<mxGeometry x="15.62000000000011" y="218" width="223.75" height="120" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-1" value="ADD CRITERIAS" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;notch=0;" parent="1" vertex="1">
<mxGeometry x="2770" y="750" width="100" height="70" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-27" value="<span style="background-color: rgb(255 , 255 , 255)"><font color="#000000">NEXT CRITERIA</font></span>" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.uTurnArrow;dy=11;arrowHead=43;dx2=25;labelBackgroundColor=#B3B3B3;fontSize=11;fontColor=#FFFFFF;fillColor=#FFFFFF;gradientColor=none;rotation=-180;" parent="1" vertex="1">
<mxGeometry x="3890" y="750" width="100" height="100" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-29" value="<span style="background-color: rgb(255 , 255 , 255)"><font color="#000000">Go Back</font></span>" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.uTurnArrow;dy=11;arrowHead=43;dx2=25;labelBackgroundColor=#B3B3B3;fontSize=11;fontColor=#FFFFFF;fillColor=#FFFFFF;gradientColor=none;rotation=-180;" parent="1" vertex="1">
<mxGeometry x="3890" y="860" width="100" height="100" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-30" value="Go Back" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;flipH=1;notch=0;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;fillColor=#FFFFFF;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="2770" y="820" width="100" height="70" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-31" value="Cancel" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;flipH=1;notch=0;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;fillColor=#FFFFFF;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="1656" y="820" width="100" height="70" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-32" value="CHANGE CRITERIAS" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;direction=north;notch=0;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;fillColor=#FFFFFF;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="1240" y="610" width="70" height="100" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-33" value="Cancel" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;flipH=1;notch=0;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;fillColor=#FFFFFF;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="1650" y="130" width="100" height="70" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-34" value="ADD" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;flipH=1;notch=0;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;fillColor=#FFFFFF;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="1650" y="210" width="100" height="70" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-35" value="Cancel" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;flipH=1;notch=0;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;fillColor=#FFFFFF;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="530" y="-580" width="100" height="70" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-42" value="START COMPARISION" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;direction=south;notch=0;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;fillColor=#FFFFFF;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="1105" y="1440" width="70" height="100" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-43" value="Tool Comparision" style="swimlane;fillColor=#2196F3;swimlaneFillColor=#E6E6E6;fontColor=#FFFFFF;" parent="1" vertex="1">
<mxGeometry x="640" y="1590" width="1090" height="680" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-160" value="" style="whiteSpace=wrap;html=1;labelBackgroundColor=#B3B3B3;labelBorderColor=none;fontSize=8;fontColor=#FFCCCC;fillColor=#B3B3B3;gradientColor=none;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-43" vertex="1">
<mxGeometry x="386.72" y="120" width="316.56" height="490" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-116" value="" style="shape=rect;fillColor=#ffffff;strokeColor=#eeeeee;shadow=1;labelBackgroundColor=#FFFF66;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-43" vertex="1">
<mxGeometry x="399.53" y="370" width="257.5" height="110" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-117" value="" style="shape=rect;strokeColor=#eeeeee;fillColor=#ffffff;resizeWidth=1;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-116" vertex="1">
<mxGeometry y="1" width="257.5" height="48" relative="1" as="geometry">
<mxPoint y="-79" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-118" value="Tool 3" style="text;fontSize=23;fontColor=#666666;spacingTop=10;verticalAlign=middle;spacingLeft=16;resizeWidth=1;labelBackgroundColor=#FFFFFF;fillColor=#FFFFFF;gradientColor=none;" parent="ZeC3kZPHNxn_P1dObeFd-116" vertex="1">
<mxGeometry width="250" height="40" relative="1" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-119" value="" style="text;fontSize=12;fontColor=#FFFF66;spacingTop=0;verticalAlign=middle;spacingLeft=16;resizeWidth=1;labelBackgroundColor=#FFFF66;fillColor=#FFFFFF;gradientColor=none;" parent="ZeC3kZPHNxn_P1dObeFd-116" vertex="1">
<mxGeometry width="185.63953488372096" height="20" relative="1" as="geometry">
<mxPoint y="44" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-120" value="" style="text;fontSize=13;fontColor=#3C3C3C;spacingTop=0;verticalAlign=middle;spacingLeft=16;resizeWidth=1;labelBackgroundColor=#FFFFFF;fillColor=#FFFFFF;gradientColor=none;" parent="ZeC3kZPHNxn_P1dObeFd-116" vertex="1">
<mxGeometry width="250" height="20" relative="1" as="geometry">
<mxPoint y="65" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-121" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFF66;fontSize=11;fontColor=#FFFF66;align=center;verticalAlign=top;labelBorderColor=#FFFF66;" parent="ZeC3kZPHNxn_P1dObeFd-116" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="14" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-122" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-116" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="45" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-123" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-116" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="79" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-124" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-116" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="113" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-125" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFFFF;labelBackgroundColor=#FFD966;fontSize=11;fontColor=#FFFF66;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-116" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="147" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-126" value="Details" style="text;fontSize=11;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;" parent="ZeC3kZPHNxn_P1dObeFd-116" vertex="1">
<mxGeometry x="13.75" y="68" width="75" height="42" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-127" value="60/80" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;labelBackgroundColor=#FFFFFF;labelBorderColor=none;fontSize=11;fontColor=#000000;" parent="ZeC3kZPHNxn_P1dObeFd-116" vertex="1">
<mxGeometry x="163.75" y="40" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-128" value="<font style="font-size: 20px">3.</font>" style="text;html=1;strokeColor=none;fillColor=#FFFF66;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;labelBackgroundColor=none;labelBorderColor=none;fontSize=11;fontColor=#000000;" parent="ZeC3kZPHNxn_P1dObeFd-116" vertex="1">
<mxGeometry x="197.5" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-103" value="" style="shape=rect;fillColor=#ffffff;strokeColor=#eeeeee;shadow=1;labelBackgroundColor=#FFFF66;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-43" vertex="1">
<mxGeometry x="399.53" y="250" width="257.5" height="110" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-104" value="" style="shape=rect;strokeColor=#eeeeee;fillColor=#ffffff;resizeWidth=1;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-103" vertex="1">
<mxGeometry y="1" width="257.5" height="48" relative="1" as="geometry">
<mxPoint y="-79" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-105" value="Tool 2" style="text;fontSize=23;fontColor=#666666;spacingTop=10;verticalAlign=middle;spacingLeft=16;resizeWidth=1;labelBackgroundColor=#FFFFFF;fillColor=#FFFFFF;gradientColor=none;" parent="ZeC3kZPHNxn_P1dObeFd-103" vertex="1">
<mxGeometry width="250" height="40" relative="1" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-106" value="" style="text;fontSize=12;fontColor=#FFFF66;spacingTop=0;verticalAlign=middle;spacingLeft=16;resizeWidth=1;labelBackgroundColor=#FFFF66;fillColor=#FFFFFF;gradientColor=none;" parent="ZeC3kZPHNxn_P1dObeFd-103" vertex="1">
<mxGeometry width="185.63953488372096" height="20" relative="1" as="geometry">
<mxPoint y="44" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-107" value="" style="text;fontSize=13;fontColor=#3C3C3C;spacingTop=0;verticalAlign=middle;spacingLeft=16;resizeWidth=1;labelBackgroundColor=#FFFFFF;fillColor=#FFFFFF;gradientColor=none;" parent="ZeC3kZPHNxn_P1dObeFd-103" vertex="1">
<mxGeometry width="250" height="20" relative="1" as="geometry">
<mxPoint y="65" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-108" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFF66;fontSize=11;fontColor=#FFFF66;align=center;verticalAlign=top;labelBorderColor=#FFFF66;" parent="ZeC3kZPHNxn_P1dObeFd-103" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="14" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-109" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-103" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="45" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-110" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-103" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="79" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-111" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-103" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="113" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-112" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFD966;fontSize=11;fontColor=#FFFF66;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-103" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="147" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-113" value="Details" style="text;fontSize=11;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;" parent="ZeC3kZPHNxn_P1dObeFd-103" vertex="1">
<mxGeometry x="13.75" y="68" width="75" height="42" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-114" value="70/80" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;labelBackgroundColor=#FFFFFF;labelBorderColor=none;fontSize=11;fontColor=#000000;" parent="ZeC3kZPHNxn_P1dObeFd-103" vertex="1">
<mxGeometry x="163.75" y="40" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-115" value="<font style="font-size: 20px">2.</font>" style="text;html=1;strokeColor=none;fillColor=#FFFF66;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;labelBackgroundColor=none;labelBorderColor=none;fontSize=11;fontColor=#000000;" parent="ZeC3kZPHNxn_P1dObeFd-103" vertex="1">
<mxGeometry x="197.5" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-129" value="" style="shape=rect;fillColor=#B3B3B3;strokeColor=#eeeeee;shadow=1;labelBackgroundColor=#B3B3B3;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-43" vertex="1">
<mxGeometry x="399.53" y="490" width="260.63" height="110" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-130" value="" style="shape=rect;strokeColor=#eeeeee;fillColor=#B3B3B3;resizeWidth=1;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-129" vertex="1">
<mxGeometry y="1" width="257.5" height="48" relative="1" as="geometry">
<mxPoint y="-79" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-131" value="Tool 4" style="text;fontSize=23;fontColor=#666666;spacingTop=10;verticalAlign=middle;spacingLeft=16;resizeWidth=1;labelBackgroundColor=#B3B3B3;fillColor=#B3B3B3;gradientColor=none;" parent="ZeC3kZPHNxn_P1dObeFd-129" vertex="1">
<mxGeometry width="250" height="40" relative="1" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-132" value="" style="text;fontSize=12;fontColor=#FFFF66;spacingTop=0;verticalAlign=middle;spacingLeft=16;resizeWidth=1;labelBackgroundColor=#B3B3B3;fillColor=#B3B3B3;gradientColor=none;" parent="ZeC3kZPHNxn_P1dObeFd-129" vertex="1">
<mxGeometry width="185.63953488372096" height="20" relative="1" as="geometry">
<mxPoint y="44" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-133" value="" style="text;fontSize=13;fontColor=#3C3C3C;spacingTop=0;verticalAlign=middle;spacingLeft=16;resizeWidth=1;labelBackgroundColor=#FFFFFF;fillColor=#B3B3B3;gradientColor=none;" parent="ZeC3kZPHNxn_P1dObeFd-129" vertex="1">
<mxGeometry width="250" height="20" relative="1" as="geometry">
<mxPoint y="65" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-134" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFF66;fontSize=11;fontColor=#FFFF66;align=center;verticalAlign=top;labelBorderColor=#FFFF66;" parent="ZeC3kZPHNxn_P1dObeFd-129" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="14" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-135" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-129" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="45" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-136" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-129" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="79" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-137" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-129" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="113" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-138" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFFFF;labelBackgroundColor=#FFD966;fontSize=11;fontColor=#FFFF66;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-129" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="147" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-139" value="Details" style="text;fontSize=11;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#B3B3B3;" parent="ZeC3kZPHNxn_P1dObeFd-129" vertex="1">
<mxGeometry x="13.75" y="68" width="75" height="42" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-140" value="50/80" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;labelBackgroundColor=#B3B3B3;labelBorderColor=none;fontSize=11;fontColor=#000000;" parent="ZeC3kZPHNxn_P1dObeFd-129" vertex="1">
<mxGeometry x="163.75" y="40" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-144" value="<font style="font-size: 8px" color="#ffcccc">Does not fullfill excluding criteria</font>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;labelBackgroundColor=#B3B3B3;labelBorderColor=none;fontSize=20;fontColor=#000000;" parent="ZeC3kZPHNxn_P1dObeFd-129" vertex="1">
<mxGeometry x="140.63" y="25" width="120" height="20" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-141" value="<font style="font-size: 20px">4.</font>" style="text;html=1;strokeColor=none;fillColor=#FFFF66;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;labelBackgroundColor=none;labelBorderColor=none;fontSize=11;fontColor=#000000;" parent="ZeC3kZPHNxn_P1dObeFd-129" vertex="1">
<mxGeometry x="197.5" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-143" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.x;labelBackgroundColor=#B3B3B3;labelBorderColor=none;fontSize=20;fontColor=#000000;fillColor=#FFCCCC;gradientColor=none;" parent="ZeC3kZPHNxn_P1dObeFd-129" vertex="1">
<mxGeometry x="217.5" y="5" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-159" value="" style="verticalLabelPosition=bottom;shadow=0;dashed=0;align=center;html=1;verticalAlign=top;strokeWidth=1;shape=mxgraph.mockup.navigation.scrollBar;strokeColor=#999999;barPos=100;fillColor2=#99ddff;strokeColor2=none;direction=north;fontSize=14;fillColor=#B3B3B3;fontStyle=4;" parent="ZeC3kZPHNxn_P1dObeFd-43" vertex="1">
<mxGeometry x="683.28" y="120" width="20" height="490" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-161" value="" style="shape=rect;fillColor=#ffffff;strokeColor=#eeeeee;shadow=1;labelBackgroundColor=#FFFF66;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-43" vertex="1">
<mxGeometry x="399.53" y="130" width="257.5" height="110" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-162" value="" style="shape=rect;strokeColor=#eeeeee;fillColor=#ffffff;resizeWidth=1;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-161" vertex="1">
<mxGeometry y="1" width="257.5" height="48" relative="1" as="geometry">
<mxPoint y="-79" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-163" value="Tool 1" style="text;fontSize=23;fontColor=#666666;spacingTop=10;verticalAlign=middle;spacingLeft=16;resizeWidth=1;labelBackgroundColor=#FFFFFF;fillColor=#FFFFFF;gradientColor=none;" parent="ZeC3kZPHNxn_P1dObeFd-161" vertex="1">
<mxGeometry width="250" height="40" relative="1" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-164" value="" style="text;fontSize=12;fontColor=#FFFF66;spacingTop=0;verticalAlign=middle;spacingLeft=16;resizeWidth=1;labelBackgroundColor=#FFFF66;fillColor=#FFFFFF;gradientColor=none;" parent="ZeC3kZPHNxn_P1dObeFd-161" vertex="1">
<mxGeometry width="185.63953488372096" height="20" relative="1" as="geometry">
<mxPoint y="44" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-165" value="" style="text;fontSize=13;fontColor=#3C3C3C;spacingTop=0;verticalAlign=middle;spacingLeft=16;resizeWidth=1;labelBackgroundColor=#FFFFFF;fillColor=#FFFFFF;gradientColor=none;" parent="ZeC3kZPHNxn_P1dObeFd-161" vertex="1">
<mxGeometry width="250" height="20" relative="1" as="geometry">
<mxPoint y="65" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-166" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFF66;fontSize=11;fontColor=#FFFF66;align=center;verticalAlign=top;labelBorderColor=#FFFF66;" parent="ZeC3kZPHNxn_P1dObeFd-161" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="14" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-167" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-161" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="45" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-168" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-161" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="79" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-169" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-161" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="113" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-170" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFD966;fontSize=11;fontColor=#FFFF66;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-161" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="147" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-171" value="Details" style="text;fontSize=11;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;" parent="ZeC3kZPHNxn_P1dObeFd-161" vertex="1">
<mxGeometry x="13.75" y="68" width="75" height="42" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-172" value="75/80" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;labelBackgroundColor=#FFFFFF;labelBorderColor=none;fontSize=11;fontColor=#000000;" parent="ZeC3kZPHNxn_P1dObeFd-161" vertex="1">
<mxGeometry x="163.75" y="40" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-173" value="<font style="font-size: 20px">1.</font>" style="text;html=1;strokeColor=none;fillColor=#FFFF66;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;labelBackgroundColor=none;labelBorderColor=none;fontSize=11;fontColor=#000000;" parent="ZeC3kZPHNxn_P1dObeFd-161" vertex="1">
<mxGeometry x="197.5" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-174" value="" style="text;spacingLeft=16;fontColor=#B3B3B3;fontSize=11;spacingTop=6;resizeWidth=1;labelBackgroundColor=#B3B3B3;fillColor=#FFFFFF;align=center;" parent="ZeC3kZPHNxn_P1dObeFd-43" vertex="1">
<mxGeometry x="386.72" y="610" width="316.56" height="50" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-175" value="EXPORT 
RESULT" style="text;fontSize=13;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;align=center;" parent="ZeC3kZPHNxn_P1dObeFd-43" vertex="1">
<mxGeometry x="608.28" y="614" width="75" height="42" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-176" value="CHANGE 
TOOLS" style="text;fontSize=12;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;align=center;" parent="ZeC3kZPHNxn_P1dObeFd-43" vertex="1">
<mxGeometry x="520.7800000000001" y="614" width="75" height="42" as="geometry" />
</mxCell>
<mxCell id="x5_B62W5w27Jvr4w5505-11" value="Result" style="dashed=0;shape=rect;strokeColor=#001DBC;fillColor=#2196F3;resizeWidth=1;fontSize=21;spacingTop=-3;verticalAlign=middle;align=left;spacingLeft=72;fontColor=#ffffff;" vertex="1" parent="ZeC3kZPHNxn_P1dObeFd-43">
<mxGeometry x="386.72" y="63" width="313.28" height="57" as="geometry" />
</mxCell>
<mxCell id="x5_B62W5w27Jvr4w5505-108" value="IMPORT
RESULT" style="text;fontSize=13;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;align=center;" vertex="1" parent="ZeC3kZPHNxn_P1dObeFd-43">
<mxGeometry x="386.72" y="618" width="75" height="42" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-2" value="Tool Comparision" style="swimlane;fillColor=#2196F3;swimlaneFillColor=#E6E6E6;fontColor=#FFFFFF;" parent="1" vertex="1">
<mxGeometry x="2880" y="720" width="1000" height="600" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-14" value="" style="dashed=0;shape=rect;fillColor=#FFFFFF;strokeColor=none;shadow=1;labelBackgroundColor=none;fontSize=14;fontColor=none;align=center;" parent="ZeC3kZPHNxn_P1dObeFd-2" vertex="1">
<mxGeometry x="372.5" y="110" width="255" height="380" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-15" value="Tool" style="text;verticalAlign=middle;spacing=16;fontSize=20;fontStyle=1;resizeWidth=1;labelBackgroundColor=none;fontColor=#FFFFFF;fillColor=#2196F3;align=center;" parent="ZeC3kZPHNxn_P1dObeFd-14" vertex="1">
<mxGeometry width="255" height="60" relative="1" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-16" value="Criteria" style="text;spacingLeft=8;fontColor=#FFFFFF;fontSize=11;spacingTop=6;resizeWidth=1;labelBackgroundColor=#B3B3B3;fillColor=#B3B3B3;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-14" vertex="1">
<mxGeometry width="255" height="30" relative="1" as="geometry">
<mxPoint y="60" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-17" value="" style="text;spacingLeft=16;fontSize=15;fontStyle=1;resizeWidth=1;labelBackgroundColor=none;fontColor=none;fillColor=#FFFFFF;align=center;" parent="ZeC3kZPHNxn_P1dObeFd-14" vertex="1">
<mxGeometry width="255" height="40" relative="1" as="geometry">
<mxPoint y="170" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-18" value="Criteria Description" style="text;verticalAlign=middle;spacingLeft=16;fontColor=#2196F3;resizeWidth=1;labelBackgroundColor=none;fontSize=14;fillColor=#FFFFFF;" parent="ZeC3kZPHNxn_P1dObeFd-14" vertex="1">
<mxGeometry width="255" height="30" relative="1" as="geometry">
<mxPoint y="100" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-20" value="GO BACK" style="text;fontSize=12;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;" parent="ZeC3kZPHNxn_P1dObeFd-14" vertex="1">
<mxGeometry x="1" y="1" width="75" height="42" relative="1" as="geometry">
<mxPoint x="-160" y="-42" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-21" value="NEXT
CRITERIA" style="text;fontSize=13;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;align=center;" parent="ZeC3kZPHNxn_P1dObeFd-14" vertex="1">
<mxGeometry x="1" y="1" width="85" height="42" relative="1" as="geometry">
<mxPoint x="-85" y="-42" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-22" value="" style="dashed=0;align=center;fontSize=12;shape=rect;fillColor=#ffffff;strokeColor=#cccccc;labelBackgroundColor=none;fontColor=#2196F3;" parent="ZeC3kZPHNxn_P1dObeFd-14" vertex="1">
<mxGeometry x="16.25" y="220" width="222.5" height="40" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-23" value="Fullfillment" style="text;fontColor=#000000;verticalAlign=middle;spacingLeft=13;fontSize=14;labelBackgroundColor=none;strokeColor=#2196F3;fillColor=#FFFFFF;" parent="ZeC3kZPHNxn_P1dObeFd-22" vertex="1">
<mxGeometry width="222.5" height="40" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-24" value="" style="shape=rect;fillColor=none;strokeColor=#cccccc;resizeHeight=1;labelBackgroundColor=none;fontSize=12;fontColor=#2196F3;align=center;" parent="ZeC3kZPHNxn_P1dObeFd-22" vertex="1">
<mxGeometry x="1" width="40" height="40" relative="1" as="geometry">
<mxPoint x="-40" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-25" value="" style="dashed=0;html=1;shape=mxgraph.gmdl.triangle;fillColor=#cccccc;strokeColor=none;labelBackgroundColor=none;fontSize=12;fontColor=#2196F3;align=center;" parent="ZeC3kZPHNxn_P1dObeFd-24" vertex="1">
<mxGeometry x="0.5" y="0.5" width="10" height="5" relative="1" as="geometry">
<mxPoint x="-5" y="-2.5" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-26" value="<h1><span style="color: rgb(0 , 0 , 0) ; font-size: 12px ; font-weight: normal">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</span><br></h1>" style="text;html=1;strokeColor=#2196F3;fillColor=none;spacing=5;spacingTop=-20;whiteSpace=wrap;overflow=hidden;rounded=0;labelBackgroundColor=none;fontSize=12;fontColor=#FFFFFF;align=center;" parent="ZeC3kZPHNxn_P1dObeFd-14" vertex="1">
<mxGeometry x="16.25" y="130" width="223.75" height="70" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-71" value="Justification for Selection" style="text;fontColor=#1F9BFD;fontSize=12;verticalAlign=middle;strokeColor=none;fillColor=none;labelBackgroundColor=#FFFFFF;" parent="ZeC3kZPHNxn_P1dObeFd-14" vertex="1">
<mxGeometry x="16.25" y="270" width="221.25" height="30" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-85" value="|" style="text;verticalAlign=bottom;spacingBottom=0;spacingLeft=16;fontSize=20;fontColor=#2196F3;resizeWidth=1;labelBackgroundColor=none;fillColor=#FFFFFF;" parent="ZeC3kZPHNxn_P1dObeFd-2" vertex="1">
<mxGeometry x="371.8800000000001" y="399.99999999999955" width="255" height="30" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-73" value="" style="dashed=0;shape=line;strokeWidth=2;noLabel=1;strokeColor=#1F9BFD;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;fillColor=#FFFFFF;gradientColor=none;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-2" vertex="1">
<mxGeometry x="388.75" y="430" width="221.25" height="10" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-181" value="<font color="#000000">CHANGE TOOLS</font>" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;direction=north;notch=0;labelBackgroundColor=none;labelBorderColor=none;fontSize=12;fontColor=#FFCCCC;fillColor=#FFFFFF;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="1230" y="1440" width="70" height="100" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-183" value="When user got throu all criterias, button will change to "FINISH" and go to 'StartPage'" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.bendArrow;dy=15;dx=38;notch=0;arrowHead=55;rounded=1;labelBackgroundColor=none;labelBorderColor=none;fontSize=12;fontColor=#000000;fillColor=#FFFFFF;gradientColor=none;rotation=-180;" parent="1" vertex="1">
<mxGeometry x="1660" y="1322" width="1250" height="100" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-184" value="Tool Comparision" style="swimlane;fillColor=#2196F3;swimlaneFillColor=#E6E6E6;fontColor=#FFFFFF;" parent="1" vertex="1">
<mxGeometry x="1875" y="1590" width="1115" height="680" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-185" value="" style="whiteSpace=wrap;html=1;labelBackgroundColor=#B3B3B3;labelBorderColor=none;fontSize=8;fontColor=#FFCCCC;fillColor=#B3B3B3;gradientColor=none;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-184" vertex="1">
<mxGeometry x="399.22" y="120" width="316.56" height="490" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-227" value="" style="verticalLabelPosition=bottom;shadow=0;dashed=0;align=center;html=1;verticalAlign=top;strokeWidth=1;shape=mxgraph.mockup.navigation.scrollBar;strokeColor=#999999;barPos=100;fillColor2=#99ddff;strokeColor2=none;direction=north;fontSize=14;fillColor=#B3B3B3;fontStyle=4;" parent="ZeC3kZPHNxn_P1dObeFd-184" vertex="1">
<mxGeometry x="695.78" y="120" width="20" height="490" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-228" value="" style="shape=rect;fillColor=#ffffff;strokeColor=#eeeeee;shadow=1;labelBackgroundColor=#FFFF66;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-184" vertex="1">
<mxGeometry x="412.03" y="130" width="257.5" height="110" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-229" value="" style="shape=rect;strokeColor=#eeeeee;fillColor=#ffffff;resizeWidth=1;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-228" vertex="1">
<mxGeometry y="1" width="257.5" height="48" relative="1" as="geometry">
<mxPoint y="-79" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-230" value="Tool 1" style="text;fontSize=23;fontColor=#666666;spacingTop=10;verticalAlign=middle;spacingLeft=16;resizeWidth=1;labelBackgroundColor=#FFFFFF;fillColor=#FFFFFF;gradientColor=none;" parent="ZeC3kZPHNxn_P1dObeFd-228" vertex="1">
<mxGeometry width="250" height="40" relative="1" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-231" value="" style="text;fontSize=12;fontColor=#FFFF66;spacingTop=0;verticalAlign=middle;spacingLeft=16;resizeWidth=1;labelBackgroundColor=#FFFF66;fillColor=#FFFFFF;gradientColor=none;" parent="ZeC3kZPHNxn_P1dObeFd-228" vertex="1">
<mxGeometry width="185.63953488372096" height="20" relative="1" as="geometry">
<mxPoint x="4" y="78" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-232" value="" style="text;fontSize=13;fontColor=#3C3C3C;spacingTop=0;verticalAlign=middle;spacingLeft=16;resizeWidth=1;labelBackgroundColor=#FFFFFF;fillColor=#FFFFFF;gradientColor=none;" parent="ZeC3kZPHNxn_P1dObeFd-228" vertex="1">
<mxGeometry width="250" height="20" relative="1" as="geometry">
<mxPoint x="4" y="99" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-233" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFF66;fontSize=11;fontColor=#FFFF66;align=center;verticalAlign=top;labelBorderColor=#FFFF66;" parent="ZeC3kZPHNxn_P1dObeFd-228" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="18" y="-30" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-234" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-228" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="49" y="-30" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-235" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-228" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="83" y="-30" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-236" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-228" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="117" y="-30" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-237" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFD966;fontSize=11;fontColor=#FFFF66;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-228" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="151" y="-30" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-238" value="Details" style="text;fontSize=11;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;" parent="ZeC3kZPHNxn_P1dObeFd-228" vertex="1">
<mxGeometry x="17.5" y="102.28999999999999" width="75" height="42" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-239" value="75/80" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;labelBackgroundColor=#FFFFFF;labelBorderColor=none;fontSize=11;fontColor=#000000;" parent="ZeC3kZPHNxn_P1dObeFd-228" vertex="1">
<mxGeometry x="167.5" y="74.28999999999999" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-240" value="<font style="font-size: 20px">1.</font>" style="text;html=1;strokeColor=none;fillColor=#FFFF66;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;labelBackgroundColor=none;labelBorderColor=none;fontSize=11;fontColor=#000000;" parent="ZeC3kZPHNxn_P1dObeFd-228" vertex="1">
<mxGeometry x="197.5" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-241" value="" style="text;spacingLeft=16;fontColor=#B3B3B3;fontSize=11;spacingTop=6;resizeWidth=1;labelBackgroundColor=#B3B3B3;fillColor=#FFFFFF;align=center;" parent="ZeC3kZPHNxn_P1dObeFd-184" vertex="1">
<mxGeometry x="399.22" y="610" width="316.56" height="50" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-242" value="EXPORT 
RESULT" style="text;fontSize=13;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;align=center;" parent="ZeC3kZPHNxn_P1dObeFd-184" vertex="1">
<mxGeometry x="620.78" y="614" width="75" height="42" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-243" value="CHANGE
TOOLS" style="text;fontSize=12;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;align=center;" parent="ZeC3kZPHNxn_P1dObeFd-184" vertex="1">
<mxGeometry x="533.28" y="614" width="75" height="42" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-256" value="" style="shape=rect;fillColor=#ffffff;strokeColor=#eeeeee;shadow=1;labelBackgroundColor=#FFFF66;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-184" vertex="1">
<mxGeometry x="412.03" y="130" width="257.5" height="280" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-257" value="" style="shape=rect;strokeColor=#eeeeee;fillColor=#ffffff;resizeWidth=1;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-256" vertex="1">
<mxGeometry y="1" width="257.5" height="48" relative="1" as="geometry">
<mxPoint y="-240" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-258" value="Tool 1" style="text;fontSize=23;fontColor=#666666;spacingTop=10;verticalAlign=middle;spacingLeft=16;resizeWidth=1;labelBackgroundColor=#FFFFFF;fillColor=#FFFFFF;gradientColor=none;" parent="ZeC3kZPHNxn_P1dObeFd-256" vertex="1">
<mxGeometry width="250" height="40" relative="1" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-259" value="" style="text;fontSize=12;fontColor=#FFFF66;spacingTop=0;verticalAlign=middle;spacingLeft=16;resizeWidth=1;labelBackgroundColor=#FFFF66;fillColor=#FFFFFF;gradientColor=none;" parent="ZeC3kZPHNxn_P1dObeFd-256" vertex="1">
<mxGeometry width="185.63953488372096" height="20" relative="1" as="geometry">
<mxPoint x="4" y="78" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-260" value="" style="text;fontSize=13;fontColor=#3C3C3C;spacingTop=0;verticalAlign=middle;spacingLeft=16;resizeWidth=1;labelBackgroundColor=#FFFFFF;fillColor=#FFFFFF;gradientColor=none;" parent="ZeC3kZPHNxn_P1dObeFd-256" vertex="1">
<mxGeometry width="250" height="20" relative="1" as="geometry">
<mxPoint x="4" y="99" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-261" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFF66;fontSize=11;fontColor=#FFFF66;align=center;verticalAlign=top;labelBorderColor=#FFFF66;" parent="ZeC3kZPHNxn_P1dObeFd-256" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="14" y="-230" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-262" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-256" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="40" y="-230" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-263" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-256" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="69" y="-230" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-264" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-256" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="90" y="-230" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-265" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFD966;fontSize=11;fontColor=#FFFF66;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-256" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="115" y="-230" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-266" value="Show less" style="text;fontSize=11;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;" parent="ZeC3kZPHNxn_P1dObeFd-256" vertex="1">
<mxGeometry x="10" y="240.00121212121212" width="75" height="29.89212121212121" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-267" value="75/80" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;labelBackgroundColor=#FFFFFF;labelBorderColor=none;fontSize=11;fontColor=#000000;" parent="ZeC3kZPHNxn_P1dObeFd-256" vertex="1">
<mxGeometry x="138.75" y="50.00142857142857" width="60" height="18.182857142857145" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-268" value="<font style="font-size: 20px">1.</font>" style="text;html=1;strokeColor=none;fillColor=#FFFF66;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;labelBackgroundColor=none;labelBorderColor=none;fontSize=11;fontColor=#000000;" parent="ZeC3kZPHNxn_P1dObeFd-256" vertex="1">
<mxGeometry x="197.5" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-294" value="" style="whiteSpace=wrap;html=1;labelBackgroundColor=none;labelBorderColor=none;fontSize=20;fontColor=#000000;fillColor=#B3B3B3;gradientColor=none;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-256" vertex="1">
<mxGeometry x="13.75" y="91.43285714285713" width="240" height="148.57142857142858" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-273" value="Criteria 1" style="dashed=0;shape=rect;strokeColor=none;fillColor=#ffffff;resizeWidth=1;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=40;strokeWidth=1;fontSize=17;" parent="ZeC3kZPHNxn_P1dObeFd-256" vertex="1">
<mxGeometry x="23.75" y="97.71857142857144" width="210" height="27.428571428571427" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-274" value="" style="dashed=0;shape=mxgraph.gmdl.up;strokeColor=#737373;strokeWidth=2;flipV=1;align=left;" parent="ZeC3kZPHNxn_P1dObeFd-273" vertex="1">
<mxGeometry x="1" y="0.5" width="12" height="6" relative="1" as="geometry">
<mxPoint x="-67" y="6" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-275" value="" style="dashed=0;html=1;shape=mxgraph.gmdl.edit;strokeColor=none;fillColor=#737373;shadow=0;sketch=0;fontSize=14;align=center;" parent="ZeC3kZPHNxn_P1dObeFd-273" vertex="1">
<mxGeometry x="185.0017391304348" y="7.997142857142858" width="18.26086956521739" height="11.428571428571429" as="geometry" />
</mxCell>
<mxCell id="x5_B62W5w27Jvr4w5505-5" value="<span style="font-size: 8px">10/10</span>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;labelBackgroundColor=#FFFFFF;labelBorderColor=none;fontSize=11;fontColor=#000000;" vertex="1" parent="ZeC3kZPHNxn_P1dObeFd-273">
<mxGeometry x="115" y="1.2428571428570194" width="60" height="18.182857142857145" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-277" value="Criteria 2" style="dashed=0;shape=rect;strokeColor=none;fillColor=#ffffff;resizeWidth=1;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=40;fontSize=17;" parent="ZeC3kZPHNxn_P1dObeFd-256" vertex="1">
<mxGeometry x="23.75" y="125.14714285714285" width="210" height="27.428571428571427" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-278" value="" style="dashed=0;shape=mxgraph.gmdl.up;strokeColor=#737373;strokeWidth=2;flipV=1;" parent="ZeC3kZPHNxn_P1dObeFd-277" vertex="1">
<mxGeometry x="1" y="0.5" width="12" height="6" relative="1" as="geometry">
<mxPoint x="-65" y="6" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-279" value="" style="dashed=0;html=1;shape=mxgraph.gmdl.edit;strokeColor=none;fillColor=#737373;shadow=0;sketch=0;fontSize=14;align=center;" parent="ZeC3kZPHNxn_P1dObeFd-277" vertex="1">
<mxGeometry x="185.0017391304348" y="8" width="18.26086956521739" height="11.428571428571429" as="geometry" />
</mxCell>
<mxCell id="x5_B62W5w27Jvr4w5505-7" value="<span style="font-size: 8px">9/10</span>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;labelBackgroundColor=#FFFFFF;labelBorderColor=none;fontSize=11;fontColor=#000000;" vertex="1" parent="ZeC3kZPHNxn_P1dObeFd-277">
<mxGeometry x="115" y="0.00428571428574287" width="60" height="18.182857142857145" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-281" value="Criteria 3" style="dashed=0;shape=rect;strokeColor=none;fillColor=#ffffff;resizeWidth=1;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=40;fontSize=17;" parent="ZeC3kZPHNxn_P1dObeFd-256" vertex="1">
<mxGeometry x="23.75" y="152.57571428571427" width="210" height="27.428571428571427" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-282" value="" style="dashed=0;shape=mxgraph.gmdl.up;strokeColor=#737373;strokeWidth=2;flipV=1;" parent="ZeC3kZPHNxn_P1dObeFd-281" vertex="1">
<mxGeometry x="1" y="0.5" width="12" height="6" relative="1" as="geometry">
<mxPoint x="-65" y="6" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-283" value="" style="dashed=0;html=1;shape=mxgraph.gmdl.edit;strokeColor=none;fillColor=#737373;shadow=0;sketch=0;fontSize=14;align=center;" parent="ZeC3kZPHNxn_P1dObeFd-281" vertex="1">
<mxGeometry x="185.0017391304348" y="7.998571428571428" width="18.26086956521739" height="11.428571428571429" as="geometry" />
</mxCell>
<mxCell id="x5_B62W5w27Jvr4w5505-8" value="<span style="font-size: 8px">9/10</span>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;labelBackgroundColor=#FFFFFF;labelBorderColor=none;fontSize=11;fontColor=#000000;" vertex="1" parent="ZeC3kZPHNxn_P1dObeFd-281">
<mxGeometry x="115" y="1.2457142857142571" width="60" height="18.182857142857145" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-285" value="Criteria 4" style="dashed=0;shape=rect;strokeColor=none;fillColor=#ffffff;resizeWidth=1;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=40;fontSize=17;" parent="ZeC3kZPHNxn_P1dObeFd-256" vertex="1">
<mxGeometry x="23.75" y="180.0042857142857" width="210" height="27.428571428571427" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-286" value="" style="dashed=0;shape=mxgraph.gmdl.up;strokeColor=#737373;strokeWidth=2;flipV=1;" parent="ZeC3kZPHNxn_P1dObeFd-285" vertex="1">
<mxGeometry x="1" y="0.5" width="12" height="6" relative="1" as="geometry">
<mxPoint x="-65" y="6" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-287" value="" style="dashed=0;html=1;shape=mxgraph.gmdl.edit;strokeColor=none;fillColor=#737373;shadow=0;sketch=0;fontSize=14;align=center;" parent="ZeC3kZPHNxn_P1dObeFd-285" vertex="1">
<mxGeometry x="185.0017391304348" y="8.001428571428571" width="18.26086956521739" height="11.428571428571429" as="geometry" />
</mxCell>
<mxCell id="x5_B62W5w27Jvr4w5505-9" value="<span style="font-size: 8px">9/10</span>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;labelBackgroundColor=#FFFFFF;labelBorderColor=none;fontSize=11;fontColor=#000000;" vertex="1" parent="ZeC3kZPHNxn_P1dObeFd-285">
<mxGeometry x="115" y="-0.0028571428572377044" width="60" height="18.182857142857145" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-289" value="Criteria 5" style="dashed=0;shape=rect;strokeColor=none;fillColor=#ffffff;resizeWidth=1;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=40;fontSize=17;" parent="ZeC3kZPHNxn_P1dObeFd-256" vertex="1">
<mxGeometry x="23.75" y="207.43285714285713" width="210" height="27.428571428571427" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-290" value="" style="dashed=0;shape=mxgraph.gmdl.up;strokeColor=#737373;strokeWidth=2;flipV=1;" parent="ZeC3kZPHNxn_P1dObeFd-289" vertex="1">
<mxGeometry x="1" y="0.5" width="12" height="6" relative="1" as="geometry">
<mxPoint x="-65" y="6" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-291" value="" style="dashed=0;html=1;shape=mxgraph.gmdl.edit;strokeColor=none;fillColor=#737373;shadow=0;sketch=0;fontSize=14;align=center;" parent="ZeC3kZPHNxn_P1dObeFd-289" vertex="1">
<mxGeometry x="185.0017391304348" y="8.004285714285714" width="18.26086956521739" height="11.428571428571429" as="geometry" />
</mxCell>
<mxCell id="x5_B62W5w27Jvr4w5505-10" value="<span style="font-size: 8px">8/10</span>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;labelBackgroundColor=#FFFFFF;labelBorderColor=none;fontSize=11;fontColor=#000000;" vertex="1" parent="ZeC3kZPHNxn_P1dObeFd-289">
<mxGeometry x="115" y="-0.0014285714285051654" width="60" height="18.182857142857145" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-293" value="" style="verticalLabelPosition=bottom;shadow=0;dashed=0;align=center;html=1;verticalAlign=top;strokeWidth=1;shape=mxgraph.mockup.navigation.scrollBar;strokeColor=#999999;barPos=100;fillColor2=#99ddff;strokeColor2=none;direction=north;fontSize=14;fillColor=#B3B3B3;fontStyle=4;" parent="ZeC3kZPHNxn_P1dObeFd-256" vertex="1">
<mxGeometry x="233.75" y="97.14714285714285" width="20" height="137.14285714285714" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-199" value="" style="shape=rect;fillColor=#ffffff;strokeColor=#eeeeee;shadow=1;labelBackgroundColor=#FFFF66;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-184" vertex="1">
<mxGeometry x="412.03" y="430" width="257.5" height="110" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-200" value="" style="shape=rect;strokeColor=#eeeeee;fillColor=#ffffff;resizeWidth=1;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-199" vertex="1">
<mxGeometry y="1" width="257.5" height="48" relative="1" as="geometry">
<mxPoint y="-79" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-201" value="Tool 2" style="text;fontSize=23;fontColor=#666666;spacingTop=10;verticalAlign=middle;spacingLeft=16;resizeWidth=1;labelBackgroundColor=#FFFFFF;fillColor=#FFFFFF;gradientColor=none;" parent="ZeC3kZPHNxn_P1dObeFd-199" vertex="1">
<mxGeometry width="250" height="40" relative="1" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-202" value="" style="text;fontSize=12;fontColor=#FFFF66;spacingTop=0;verticalAlign=middle;spacingLeft=16;resizeWidth=1;labelBackgroundColor=#FFFF66;fillColor=#FFFFFF;gradientColor=none;" parent="ZeC3kZPHNxn_P1dObeFd-199" vertex="1">
<mxGeometry width="185.63953488372096" height="20" relative="1" as="geometry">
<mxPoint y="44" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-203" value="" style="text;fontSize=13;fontColor=#3C3C3C;spacingTop=0;verticalAlign=middle;spacingLeft=16;resizeWidth=1;labelBackgroundColor=#FFFFFF;fillColor=#FFFFFF;gradientColor=none;" parent="ZeC3kZPHNxn_P1dObeFd-199" vertex="1">
<mxGeometry width="250" height="20" relative="1" as="geometry">
<mxPoint y="65" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-204" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFF66;fontSize=11;fontColor=#FFFF66;align=center;verticalAlign=top;labelBorderColor=#FFFF66;" parent="ZeC3kZPHNxn_P1dObeFd-199" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="14" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-205" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-199" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="45" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-206" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-199" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="79" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-207" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-199" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="113" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-208" value="" style="dashed=0;shape=mxgraph.gmdl.star;strokeColor=#666666;fillColor=#FFFF66;labelBackgroundColor=#FFD966;fontSize=11;fontColor=#FFFF66;align=center;verticalAlign=top;" parent="ZeC3kZPHNxn_P1dObeFd-199" vertex="1">
<mxGeometry y="1" width="18" height="18" relative="1" as="geometry">
<mxPoint x="147" y="-64" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-209" value="Details" style="text;fontSize=11;fontStyle=1;fontColor=#2196F3;verticalAlign=middle;labelBackgroundColor=none;fillColor=#FFFFFF;" parent="ZeC3kZPHNxn_P1dObeFd-199" vertex="1">
<mxGeometry x="13.75" y="68" width="75" height="42" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-210" value="70/80" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;labelBackgroundColor=#FFFFFF;labelBorderColor=none;fontSize=11;fontColor=#000000;" parent="ZeC3kZPHNxn_P1dObeFd-199" vertex="1">
<mxGeometry x="163.75" y="40" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-211" value="<font style="font-size: 20px">2.</font>" style="text;html=1;strokeColor=none;fillColor=#FFFF66;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;labelBackgroundColor=none;labelBorderColor=none;fontSize=11;fontColor=#000000;" parent="ZeC3kZPHNxn_P1dObeFd-199" vertex="1">
<mxGeometry x="197.5" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="x5_B62W5w27Jvr4w5505-12" value="Result" style="dashed=0;shape=rect;strokeColor=#001DBC;fillColor=#2196F3;resizeWidth=1;fontSize=21;spacingTop=-3;verticalAlign=middle;align=left;spacingLeft=72;fontColor=#ffffff;" vertex="1" parent="ZeC3kZPHNxn_P1dObeFd-184">
<mxGeometry x="399.22000000000025" y="63" width="313.28" height="57" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-244" value="Details" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;notch=0;labelBackgroundColor=none;labelBorderColor=none;fontSize=20;fontColor=#000000;fillColor=#FFFFFF;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="1750" y="1650" width="100" height="70" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-249" value="Tool Comparision" style="swimlane;swimlaneFillColor=#E6E6E6;fillColor=#2196F3;fontColor=#FFFFFF;" parent="1" vertex="1">
<mxGeometry x="-20" y="-660" width="520" height="410" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-250" value="Create New
Criterias" style="dashed=0;align=center;fontSize=12;shape=rect;fillColor=#2196F3;strokeColor=none;fontStyle=1;shadow=1;fontColor=#ffffff;" parent="ZeC3kZPHNxn_P1dObeFd-249" vertex="1">
<mxGeometry x="195" y="64" width="130" height="66" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-251" value="Load Existing 
Criterias" style="dashed=0;align=center;fontSize=12;shape=rect;fillColor=#2196F3;strokeColor=none;fontStyle=1;shadow=1;fontColor=#ffffff;" parent="ZeC3kZPHNxn_P1dObeFd-249" vertex="1">
<mxGeometry x="195" y="160" width="130" height="70" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-252" value="Go Back " style="dashed=0;align=center;fontSize=12;shape=rect;fillColor=#2196F3;strokeColor=none;fontStyle=1;shadow=1;fontColor=#ffffff;" parent="ZeC3kZPHNxn_P1dObeFd-249" vertex="1">
<mxGeometry x="195" y="260" width="130" height="66" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-253" value="Create New" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;notch=0;" parent="1" vertex="1">
<mxGeometry x="-170" y="50" width="780" height="70" as="geometry" />
</mxCell>
<mxCell id="ZeC3kZPHNxn_P1dObeFd-255" value="Go Back" style="html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;flipH=1;notch=0;labelBackgroundColor=#FFFFFF;fontSize=11;fontColor=#000000;fillColor=#FFFFFF;gradientColor=none;" parent="1" vertex="1">