forked from pafnow/vrt-graphml-for-yed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVRT Industrial Automation.graphml
5090 lines (5069 loc) · 640 KB
/
VRT Industrial Automation.graphml
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:java="http://www.yworks.com/xml/yfiles-common/1.0/java" xmlns:sys="http://www.yworks.com/xml/yfiles-common/markup/primitives/2.0" xmlns:x="http://www.yworks.com/xml/yfiles-common/markup/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
<!--Created by yEd 3.17.2-->
<key for="port" id="d0" yfiles.type="portgraphics"/>
<key for="port" id="d1" yfiles.type="portgeometry"/>
<key for="port" id="d2" yfiles.type="portuserdata"/>
<key attr.name="yed.palette.node.name" attr.type="string" for="node" id="d3"/>
<key attr.name="Palette ToolTip" attr.type="string" for="node" id="d4"/>
<key attr.name="url" attr.type="string" for="node" id="d5"/>
<key attr.name="description" attr.type="string" for="node" id="d6"/>
<key for="node" id="d7" yfiles.type="nodegraphics"/>
<key for="graphml" id="d8" yfiles.type="resources"/>
<key attr.name="yed.palette.edge.name" attr.type="string" for="edge" id="d9"/>
<key attr.name="Palette ToolTip" attr.type="string" for="edge" id="d10"/>
<key attr.name="url" attr.type="string" for="edge" id="d11"/>
<key attr.name="description" attr.type="string" for="edge" id="d12"/>
<key for="edge" id="d13" yfiles.type="edgegraphics"/>
<graph edgedefault="directed" id="G">
<node id="n0">
<data key="d3"><![CDATA[5198f4ce-6a64-411f-b77d-b06a2c43e99a]]></data>
<data key="d4"><![CDATA[Allen-Bradley Controllogix PLC]]></data>
<data key="d6"/>
<data key="d7">
<y:SVGNode>
<y:Geometry height="191.3119354248047" width="224.16798400878906" x="0.0" y="30.0"/>
<y:Fill color="#CCCCFF" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" horizontalTextPosition="center" iconTextGap="4" modelName="sandwich" modelPosition="s" textColor="#000000" verticalTextPosition="bottom" visible="true" width="4.0" x="110.08399200439453" y="195.3119354248047"/>
<y:SVGNodeProperties usingVisualBounds="true"/>
<y:SVGModel svgBoundsPolicy="0">
<y:SVGContent refid="1"/>
</y:SVGModel>
</y:SVGNode>
</data>
</node>
<node id="n1">
<data key="d3"><![CDATA[7c4d7539-434e-4cca-aa1d-d9e817b06912]]></data>
<data key="d4"><![CDATA[Allen-Bradley FlexIO]]></data>
<data key="d6"/>
<data key="d7">
<y:SVGNode>
<y:Geometry height="183.63951110839844" width="228.21209716796875" x="254.16798400878906" y="33.836212158203125"/>
<y:Fill color="#CCCCFF" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" horizontalTextPosition="center" iconTextGap="4" modelName="sandwich" modelPosition="s" textColor="#000000" verticalTextPosition="bottom" visible="true" width="4.0" x="112.10604858398438" y="187.63951110839844"/>
<y:SVGNodeProperties usingVisualBounds="true"/>
<y:SVGModel svgBoundsPolicy="0">
<y:SVGContent refid="2"/>
</y:SVGModel>
</y:SVGNode>
</data>
</node>
<node id="n2">
<data key="d3"><![CDATA[53b77d14-09b4-4914-8bd3-89daff214924]]></data>
<data key="d4"><![CDATA[Allen-Bradley FlexIO small]]></data>
<data key="d6"/>
<data key="d7">
<y:SVGNode>
<y:Geometry height="117.19917297363281" width="124.49765014648438" x="512.3800811767578" y="67.05638122558594"/>
<y:Fill color="#CCCCFF" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" horizontalTextPosition="center" iconTextGap="4" modelName="sandwich" modelPosition="s" textColor="#000000" verticalTextPosition="bottom" visible="true" width="4.0" x="60.24882507324219" y="121.19917297363281"/>
<y:SVGNodeProperties usingVisualBounds="true"/>
<y:SVGModel svgBoundsPolicy="0">
<y:SVGContent refid="3"/>
</y:SVGModel>
</y:SVGNode>
</data>
</node>
<node id="n3">
<data key="d3"><![CDATA[d175e822-861c-49a3-b785-407cadb80523]]></data>
<data key="d4"><![CDATA[Compact PLC (black)]]></data>
<data key="d6"/>
<data key="d7">
<y:SVGNode>
<y:Geometry height="107.9355697631836" width="122.72547912597656" x="666.8777313232422" y="71.68818283081055"/>
<y:Fill color="#CCCCFF" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" horizontalTextPosition="center" iconTextGap="4" modelName="sandwich" modelPosition="s" textColor="#000000" verticalTextPosition="bottom" visible="true" width="4.0" x="59.36273956298828" y="111.9355697631836"/>
<y:SVGNodeProperties usingVisualBounds="true"/>
<y:SVGModel svgBoundsPolicy="0">
<y:SVGContent refid="4"/>
</y:SVGModel>
</y:SVGNode>
</data>
</node>
<node id="n4">
<data key="d3"><![CDATA[5c6c6820-97ea-413f-afec-303570a7d8d4]]></data>
<data key="d4"><![CDATA[Compact PLC (grey)]]></data>
<data key="d6"/>
<data key="d7">
<y:SVGNode>
<y:Geometry height="107.9355697631836" width="122.7254638671875" x="0.0" y="288.65365982055664"/>
<y:Fill color="#CCCCFF" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" horizontalTextPosition="center" iconTextGap="4" modelName="sandwich" modelPosition="s" textColor="#000000" verticalTextPosition="bottom" visible="true" width="4.0" x="59.36273193359375" y="111.9355697631836"/>
<y:SVGNodeProperties usingVisualBounds="true"/>
<y:SVGModel svgBoundsPolicy="0">
<y:SVGContent refid="5"/>
</y:SVGModel>
</y:SVGNode>
</data>
</node>
<node id="n5">
<data key="d3"><![CDATA[1f21932a-39d2-47b4-8cf3-1ff236d16d13]]></data>
<data key="d4"><![CDATA[Data Logger RTU (black)]]></data>
<data key="d6"/>
<data key="d7">
<y:SVGNode>
<y:Geometry height="99.73397827148438" width="92.71601867675781" x="152.7254638671875" y="292.75445556640625"/>
<y:Fill color="#CCCCFF" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" horizontalTextPosition="center" iconTextGap="4" modelName="sandwich" modelPosition="s" textColor="#000000" verticalTextPosition="bottom" visible="true" width="4.0" x="44.358009338378906" y="103.73397827148438"/>
<y:SVGNodeProperties usingVisualBounds="true"/>
<y:SVGModel svgBoundsPolicy="0">
<y:SVGContent refid="6"/>
</y:SVGModel>
</y:SVGNode>
</data>
</node>
<node id="n6">
<data key="d3"><![CDATA[c1072dcf-0860-484c-be66-d71d47c0315d]]></data>
<data key="d4"><![CDATA[Data Logger RTU (grey)]]></data>
<data key="d6"/>
<data key="d7">
<y:SVGNode>
<y:Geometry height="99.73399353027344" width="92.71600341796875" x="275.4414825439453" y="292.7544479370117"/>
<y:Fill color="#CCCCFF" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" horizontalTextPosition="center" iconTextGap="4" modelName="sandwich" modelPosition="s" textColor="#000000" verticalTextPosition="bottom" visible="true" width="4.0" x="44.358001708984375" y="103.73399353027344"/>
<y:SVGNodeProperties usingVisualBounds="true"/>
<y:SVGModel svgBoundsPolicy="0">
<y:SVGContent refid="7"/>
</y:SVGModel>
</y:SVGNode>
</data>
</node>
<node id="n7">
<data key="d3"><![CDATA[95197d99-d10c-415e-8507-e3713051af6c]]></data>
<data key="d4"><![CDATA[Generic Black Box (black)]]></data>
<data key="d6"/>
<data key="d7">
<y:SVGNode>
<y:Geometry height="66.2095718383789" width="52.08607864379883" x="398.15748596191406" y="309.516658782959"/>
<y:Fill color="#CCCCFF" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" horizontalTextPosition="center" iconTextGap="4" modelName="sandwich" modelPosition="s" textColor="#000000" verticalTextPosition="bottom" visible="true" width="4.0" x="24.043039321899414" y="70.2095718383789"/>
<y:SVGNodeProperties usingVisualBounds="true"/>
<y:SVGModel svgBoundsPolicy="0">
<y:SVGContent refid="8"/>
</y:SVGModel>
</y:SVGNode>
</data>
</node>
<node id="n8">
<data key="d3"><![CDATA[d70b78c3-e5c2-4762-80bd-dd146b81f656]]></data>
<data key="d4"><![CDATA[Generic Black Box (grey)]]></data>
<data key="d6"/>
<data key="d7">
<y:SVGNode>
<y:Geometry height="66.2095718383789" width="52.08607864379883" x="480.2435646057129" y="309.516658782959"/>
<y:Fill color="#CCCCFF" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" horizontalTextPosition="center" iconTextGap="4" modelName="sandwich" modelPosition="s" textColor="#000000" verticalTextPosition="bottom" visible="true" width="4.0" x="24.043039321899414" y="70.2095718383789"/>
<y:SVGNodeProperties usingVisualBounds="true"/>
<y:SVGModel svgBoundsPolicy="0">
<y:SVGContent refid="9"/>
</y:SVGModel>
</y:SVGNode>
</data>
</node>
<node id="n9">
<data key="d3"><![CDATA[c5be3ab3-9789-48cb-9842-e05416052152]]></data>
<data key="d4"><![CDATA[Generic PLC DCS Controller (black)]]></data>
<data key="d6"/>
<data key="d7">
<y:SVGNode>
<y:Geometry height="182.6190185546875" width="181.8372802734375" x="562.3296432495117" y="251.3119354248047"/>
<y:Fill color="#CCCCFF" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" horizontalTextPosition="center" iconTextGap="4" modelName="sandwich" modelPosition="s" textColor="#000000" verticalTextPosition="bottom" visible="true" width="4.0" x="88.91864013671875" y="186.6190185546875"/>
<y:SVGNodeProperties usingVisualBounds="true"/>
<y:SVGModel svgBoundsPolicy="0">
<y:SVGContent refid="10"/>
</y:SVGModel>
</y:SVGNode>
</data>
</node>
<node id="n10">
<data key="d3"><![CDATA[815dd4b1-f736-4d85-a353-eb9669daf552]]></data>
<data key="d4"><![CDATA[Generic PLC DCS Controller (grey)]]></data>
<data key="d6"/>
<data key="d7">
<y:SVGNode>
<y:Geometry height="182.6190185546875" width="181.8372802734375" x="774.1669235229492" y="251.3119354248047"/>
<y:Fill color="#CCCCFF" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" horizontalTextPosition="center" iconTextGap="4" modelName="sandwich" modelPosition="s" textColor="#000000" verticalTextPosition="bottom" visible="true" width="4.0" x="88.91864013671875" y="186.6190185546875"/>
<y:SVGNodeProperties usingVisualBounds="true"/>
<y:SVGModel svgBoundsPolicy="0">
<y:SVGContent refid="11"/>
</y:SVGModel>
</y:SVGNode>
</data>
</node>
<node id="n11">
<data key="d3"><![CDATA[123dc235-2517-454d-82ce-7e6e6f710273]]></data>
<data key="d4"><![CDATA[Industrial PC (black)]]></data>
<data key="d6"/>
<data key="d7">
<y:SVGNode>
<y:Geometry height="139.15469360351562" width="110.40000915527344" x="0.0" y="504.44872283935547"/>
<y:Fill color="#CCCCFF" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" horizontalTextPosition="center" iconTextGap="4" modelName="sandwich" modelPosition="s" textColor="#000000" verticalTextPosition="bottom" visible="true" width="4.0" x="53.20000457763672" y="143.15469360351562"/>
<y:SVGNodeProperties usingVisualBounds="true"/>
<y:SVGModel svgBoundsPolicy="0">
<y:SVGContent refid="12"/>
</y:SVGModel>
</y:SVGNode>
</data>
</node>
<node id="n12">
<data key="d3"><![CDATA[24e56ec3-c3b0-47a5-8489-a4ff298b294b]]></data>
<data key="d4"><![CDATA[Industrial PC (grey)]]></data>
<data key="d6"/>
<data key="d7">
<y:SVGNode>
<y:Geometry height="139.15469360351562" width="110.40000915527344" x="140.40000915527344" y="504.44872283935547"/>
<y:Fill color="#CCCCFF" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" horizontalTextPosition="center" iconTextGap="4" modelName="sandwich" modelPosition="s" textColor="#000000" verticalTextPosition="bottom" visible="true" width="4.0" x="53.20000457763672" y="143.15469360351562"/>
<y:SVGNodeProperties usingVisualBounds="true"/>
<y:SVGModel svgBoundsPolicy="0">
<y:SVGContent refid="13"/>
</y:SVGModel>
</y:SVGNode>
</data>
</node>
<node id="n13">
<data key="d3"><![CDATA[ce4123ff-8fbb-412a-83df-f9f29da40eb6]]></data>
<data key="d4"><![CDATA[Industrial PC slim (black)]]></data>
<data key="d6"/>
<data key="d7">
<y:SVGNode>
<y:Geometry height="160.50901794433594" width="115.8471450805664" x="280.8000183105469" y="493.7715606689453"/>
<y:Fill color="#CCCCFF" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" horizontalTextPosition="center" iconTextGap="4" modelName="sandwich" modelPosition="s" textColor="#000000" verticalTextPosition="bottom" visible="true" width="4.0" x="55.9235725402832" y="164.50901794433594"/>
<y:SVGNodeProperties usingVisualBounds="true"/>
<y:SVGModel svgBoundsPolicy="0">
<y:SVGContent refid="14"/>
</y:SVGModel>
</y:SVGNode>
</data>
</node>
<node id="n14">
<data key="d3"><![CDATA[96c44f72-1dc1-4723-9bd9-318dae624c14]]></data>
<data key="d4"><![CDATA[Industrial PC slim (grey)]]></data>
<data key="d6"/>
<data key="d7">
<y:SVGNode>
<y:Geometry height="160.50901794433594" width="115.84712219238281" x="426.6471633911133" y="493.7715606689453"/>
<y:Fill color="#CCCCFF" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" horizontalTextPosition="center" iconTextGap="4" modelName="sandwich" modelPosition="s" textColor="#000000" verticalTextPosition="bottom" visible="true" width="4.0" x="55.923561096191406" y="164.50901794433594"/>
<y:SVGNodeProperties usingVisualBounds="true"/>
<y:SVGModel svgBoundsPolicy="0">
<y:SVGContent refid="15"/>
</y:SVGModel>
</y:SVGNode>
</data>
</node>
<node id="n15">
<data key="d3"><![CDATA[dfe8d65c-5cd4-4a6d-8952-ec07c3f44a77]]></data>
<data key="d4"><![CDATA[Large HMI Panel (black)]]></data>
<data key="d6"/>
<data key="d7">
<y:SVGNode>
<y:Geometry height="220.03909301757812" width="192.03822326660156" x="572.4942855834961" y="464.0065231323242"/>
<y:Fill color="#CCCCFF" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" horizontalTextPosition="center" iconTextGap="4" modelName="sandwich" modelPosition="s" textColor="#000000" verticalTextPosition="bottom" visible="true" width="4.0" x="94.01911163330078" y="224.03909301757812"/>
<y:SVGNodeProperties usingVisualBounds="true"/>
<y:SVGModel svgBoundsPolicy="0">
<y:SVGContent refid="16"/>
</y:SVGModel>
</y:SVGNode>
</data>
</node>
<node id="n16">
<data key="d3"><![CDATA[beb8be23-f2d1-41e7-b8f5-56f5f35234df]]></data>
<data key="d4"><![CDATA[Large HMI Panel (grey)]]></data>
<data key="d6"/>
<data key="d7">
<y:SVGNode>
<y:Geometry height="220.1902313232422" width="192.07598876953125" x="794.5325088500977" y="463.9309539794922"/>
<y:Fill color="#CCCCFF" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" horizontalTextPosition="center" iconTextGap="4" modelName="sandwich" modelPosition="s" textColor="#000000" verticalTextPosition="bottom" visible="true" width="4.0" x="94.03799438476562" y="224.1902313232422"/>
<y:SVGNodeProperties usingVisualBounds="true"/>
<y:SVGModel svgBoundsPolicy="0">
<y:SVGContent refid="17"/>
</y:SVGModel>
</y:SVGNode>
</data>
</node>
<node id="n17">
<data key="d3"><![CDATA[a61c9d21-b658-42c2-abcf-b095617a5e00]]></data>
<data key="d4"><![CDATA[Small HMI Panel (black)]]></data>
<data key="d6"/>
<data key="d7">
<y:SVGNode>
<y:Geometry height="128.1964874267578" width="120.34434509277344" x="0.0" y="714.1214752197266"/>
<y:Fill color="#CCCCFF" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" horizontalTextPosition="center" iconTextGap="4" modelName="sandwich" modelPosition="s" textColor="#000000" verticalTextPosition="bottom" visible="true" width="4.0" x="58.17217254638672" y="132.1964874267578"/>
<y:SVGNodeProperties usingVisualBounds="true"/>
<y:SVGModel svgBoundsPolicy="0">
<y:SVGContent refid="18"/>
</y:SVGModel>
</y:SVGNode>
</data>
</node>
<node id="n18">
<data key="d3"><![CDATA[48a5173a-b45d-4bd0-999b-a1146dc82d4e]]></data>
<data key="d4"><![CDATA[Small HMI Panel (grey)]]></data>
<data key="d6"/>
<data key="d7">
<y:SVGNode>
<y:Geometry height="128.1964874267578" width="120.34434509277344" x="150.34434509277344" y="714.1214752197266"/>
<y:Fill color="#CCCCFF" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" horizontalTextPosition="center" iconTextGap="4" modelName="sandwich" modelPosition="s" textColor="#000000" verticalTextPosition="bottom" visible="true" width="4.0" x="58.17217254638672" y="132.1964874267578"/>
<y:SVGNodeProperties usingVisualBounds="true"/>
<y:SVGModel svgBoundsPolicy="0">
<y:SVGContent refid="19"/>
</y:SVGModel>
</y:SVGNode>
</data>
</node>
<node id="n19">
<data key="d3"><![CDATA[4a7c6c3a-c229-44fc-985c-9d5ea47d32cf]]></data>
<data key="d4"><![CDATA[Small Touch Panel (black)]]></data>
<data key="d6"/>
<data key="d7">
<y:SVGNode>
<y:Geometry height="128.1970672607422" width="120.34436798095703" x="300.6886901855469" y="714.1211853027344"/>
<y:Fill color="#CCCCFF" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" horizontalTextPosition="center" iconTextGap="4" modelName="sandwich" modelPosition="s" textColor="#000000" verticalTextPosition="bottom" visible="true" width="4.0" x="58.172183990478516" y="132.1970672607422"/>
<y:SVGNodeProperties usingVisualBounds="true"/>
<y:SVGModel svgBoundsPolicy="0">
<y:SVGContent refid="20"/>
</y:SVGModel>
</y:SVGNode>
</data>
</node>
<node id="n20">
<data key="d3"><![CDATA[3e573548-0794-4af9-89e0-3537776e680d]]></data>
<data key="d4"><![CDATA[Small Touch Panel (grey)]]></data>
<data key="d6"/>
<data key="d7">
<y:SVGNode>
<y:Geometry height="128.1970672607422" width="120.34436798095703" x="451.0330581665039" y="714.1211853027344"/>
<y:Fill color="#CCCCFF" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" horizontalTextPosition="center" iconTextGap="4" modelName="sandwich" modelPosition="s" textColor="#000000" verticalTextPosition="bottom" visible="true" width="4.0" x="58.172183990478516" y="132.1970672607422"/>
<y:SVGNodeProperties usingVisualBounds="true"/>
<y:SVGModel svgBoundsPolicy="0">
<y:SVGContent refid="21"/>
</y:SVGModel>
</y:SVGNode>
</data>
</node>
</graph>
<data key="d8">
<y:Resources>
<y:Resource id="1"><?xml version="1.0" encoding="UTF-8"?>
<svg version="1.2" baseProfile="tiny" width="59.18mm" height="50.6mm" viewBox="2853 7032 5918 5060" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve">
<g visibility="visible" id="Slide_1">
<g id="DrawingGroup_1">
<g>
<path fill="rgb(221,221,221)" stroke="none" d="M 6733,12072 C 7027,12072 8770,11514 8770,11266 8770,11018 8636,10894 8341,10894 8341,11080 6733,11823 6733,12072 Z"/>
<path fill="none" stroke="rgb(221,221,221)" id="Drawing_1_0" stroke-linejoin="round" d="M 6733,12072 C 7027,12072 8770,11514 8770,11266 8770,11018 8636,10894 8341,10894 8341,11080 6733,11823 6733,12072 Z"/>
</g>
<g id="DrawingGroup_2">
<g>
<defs>
<linearGradient id="Gradient_732" gradientUnits="userSpaceOnUse" x1="2870" y1="9282" x2="4161" y2="9284">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_732)" stroke="rgb(255,255,255)" id="Drawing_2_0" stroke-width="40" stroke-linejoin="round" d="M 2873,9841 L 2873,7982 4160,8726 4160,10585 2873,9841 Z"/>
</g>
<g>
<path fill="rgb(179,179,179)" stroke="none" d="M 6733,11486 L 6733,10213 8341,9283 8341,11142 7746,11486 6733,11486 Z"/>
<path fill="rgb(180,180,180)" stroke="none" d="M 7746,11486 L 6733,12072 6733,11486 7746,11486 Z M 6733,11458 L 6733,10213 8341,9283 8341,11142 7795,11458 6733,11458 Z"/>
<path fill="rgb(181,181,181)" stroke="none" d="M 7795,11458 L 6733,12072 6733,11458 7795,11458 Z M 6733,11430 L 6733,10213 8341,9283 8341,11142 7843,11430 6733,11430 Z"/>
<path fill="rgb(182,182,182)" stroke="none" d="M 7843,11430 L 6733,12072 6733,11430 7843,11430 Z M 6733,11402 L 6733,10213 8341,9283 8341,11142 7891,11402 6733,11402 Z"/>
<path fill="rgb(183,183,183)" stroke="none" d="M 7891,11402 L 6733,12072 6733,11402 7891,11402 Z M 6733,11374 L 6733,10213 8341,9283 8341,11142 7940,11374 6733,11374 Z"/>
<path fill="rgb(184,184,184)" stroke="none" d="M 7940,11374 L 6733,12072 6733,11374 7940,11374 Z M 6733,11346 L 6733,10213 8341,9283 8341,11142 7988,11346 6733,11346 Z"/>
<path fill="rgb(185,185,185)" stroke="none" d="M 7988,11346 L 6733,12072 6733,11346 7988,11346 Z M 6733,11318 L 6733,10213 8341,9283 8341,11142 8037,11318 6733,11318 Z"/>
<path fill="rgb(186,186,186)" stroke="none" d="M 8037,11318 L 6733,12072 6733,11318 8037,11318 Z M 6733,11290 L 6733,10213 8341,9283 8341,11142 8085,11290 6733,11290 Z"/>
<path fill="rgb(187,187,187)" stroke="none" d="M 8085,11290 L 6733,12072 6733,11290 8085,11290 Z M 6733,11262 L 6733,10213 8341,9283 8341,11142 8134,11262 6733,11262 Z"/>
<path fill="rgb(188,188,188)" stroke="none" d="M 8134,11262 L 6733,12072 6733,11262 8134,11262 Z M 8330,11148 L 8182,11234 6733,11234 6733,10213 8330,9289 8330,11148 Z"/>
<path fill="rgb(189,189,189)" stroke="none" d="M 8182,11234 L 6733,12072 6733,11234 8182,11234 Z M 8330,9289 L 8341,9283 8341,11142 8330,11148 8330,9289 Z M 8302,11165 L 8230,11206 6733,11206 6733,10213 8302,9306 8302,11165 Z"/>
<path fill="rgb(190,190,190)" stroke="none" d="M 8230,11206 L 6733,12072 6733,11206 8230,11206 Z M 8302,9306 L 8341,9283 8341,11142 8302,11165 8302,9306 Z M 8274,11178 L 6733,11178 6733,10213 8274,9322 8274,11178 Z"/>
<path fill="rgb(191,191,191)" stroke="none" d="M 8274,11178 L 8274,9322 8341,9283 8341,11142 6733,12072 6733,11178 8274,11178 Z M 8247,11151 L 6733,11151 6733,10213 8247,9337 8247,11151 Z"/>
<path fill="rgb(192,192,192)" stroke="none" d="M 8247,11151 L 8247,9337 8341,9283 8341,11142 6733,12072 6733,11151 8247,11151 Z M 8219,11123 L 6733,11123 6733,10213 8219,9354 8219,11123 Z"/>
<path fill="rgb(193,193,193)" stroke="none" d="M 8219,11123 L 8219,9354 8341,9283 8341,11142 6733,12072 6733,11123 8219,11123 Z M 8191,11095 L 6733,11095 6733,10213 8191,9370 8191,11095 Z"/>
<path fill="rgb(194,194,194)" stroke="none" d="M 8191,11095 L 8191,9370 8341,9283 8341,11142 6733,12072 6733,11095 8191,11095 Z M 8163,11067 L 6733,11067 6733,10213 8163,9386 8163,11067 Z"/>
<path fill="rgb(195,195,195)" stroke="none" d="M 8163,11067 L 8163,9386 8341,9283 8341,11142 6733,12072 6733,11067 8163,11067 Z M 8135,11039 L 6733,11039 6733,10213 8135,9402 8135,11039 Z"/>
<path fill="rgb(196,196,196)" stroke="none" d="M 8135,11039 L 8135,9402 8341,9283 8341,11142 6733,12072 6733,11039 8135,11039 Z M 8107,11011 L 6733,11011 6733,10213 8107,9418 8107,11011 Z"/>
<path fill="rgb(197,197,197)" stroke="none" d="M 8107,11011 L 8107,9418 8341,9283 8341,11142 6733,12072 6733,11011 8107,11011 Z M 8079,10983 L 6733,10983 6733,10213 8079,9435 8079,10983 Z"/>
<path fill="rgb(198,198,198)" stroke="none" d="M 8079,10983 L 8079,9435 8341,9283 8341,11142 6733,12072 6733,10983 8079,10983 Z M 8051,10955 L 6733,10955 6733,10213 8051,9451 8051,10955 Z"/>
<path fill="rgb(199,199,199)" stroke="none" d="M 8051,10955 L 8051,9451 8341,9283 8341,11142 6733,12072 6733,10955 8051,10955 Z M 8023,10927 L 6733,10927 6733,10213 8023,9467 8023,10927 Z"/>
<path fill="rgb(200,200,200)" stroke="none" d="M 8023,10927 L 8023,9467 8341,9283 8341,11142 6733,12072 6733,10927 8023,10927 Z M 7995,10899 L 6733,10899 6733,10213 7995,9483 7995,10899 Z"/>
<path fill="rgb(201,201,201)" stroke="none" d="M 7995,10899 L 7995,9483 8341,9283 8341,11142 6733,12072 6733,10899 7995,10899 Z M 7967,10871 L 6733,10871 6733,10213 7967,9499 7967,10871 Z"/>
<path fill="rgb(202,202,202)" stroke="none" d="M 7967,10871 L 7967,9499 8341,9283 8341,11142 6733,12072 6733,10871 7967,10871 Z M 7939,10843 L 6733,10843 6733,10213 7939,9516 7939,10843 Z"/>
<path fill="rgb(203,203,203)" stroke="none" d="M 7939,10843 L 7939,9516 8341,9283 8341,11142 6733,12072 6733,10843 7939,10843 Z M 7911,10815 L 6733,10815 6733,10213 7911,9532 7911,10815 Z"/>
<path fill="rgb(204,204,204)" stroke="none" d="M 7911,10815 L 7911,9532 8341,9283 8341,11142 6733,12072 6733,10815 7911,10815 Z M 7884,10788 L 6733,10788 6733,10213 7884,9547 7884,10788 Z"/>
<path fill="rgb(205,205,205)" stroke="none" d="M 7884,10788 L 7884,9547 8341,9283 8341,11142 6733,12072 6733,10788 7884,10788 Z M 7856,10760 L 6733,10760 6733,10213 7856,9564 7856,10760 Z"/>
<path fill="rgb(206,206,206)" stroke="none" d="M 7856,10760 L 7856,9564 8341,9283 8341,11142 6733,12072 6733,10760 7856,10760 Z M 7828,10732 L 6733,10732 6733,10213 7828,9580 7828,10732 Z"/>
<path fill="rgb(207,207,207)" stroke="none" d="M 7828,10732 L 7828,9580 8341,9283 8341,11142 6733,12072 6733,10732 7828,10732 Z M 7800,10704 L 6733,10704 6733,10213 7800,9596 7800,10704 Z"/>
<path fill="rgb(208,208,208)" stroke="none" d="M 7800,10704 L 7800,9596 8341,9283 8341,11142 6733,12072 6733,10704 7800,10704 Z M 7772,10676 L 6733,10676 6733,10213 7772,9612 7772,10676 Z"/>
<path fill="rgb(209,209,209)" stroke="none" d="M 7772,10676 L 7772,9612 8341,9283 8341,11142 6733,12072 6733,10676 7772,10676 Z M 7744,10648 L 6733,10648 6733,10213 7744,9628 7744,10648 Z"/>
<path fill="rgb(210,210,210)" stroke="none" d="M 7744,10648 L 7744,9628 8341,9283 8341,11142 6733,12072 6733,10648 7744,10648 Z M 7716,10620 L 6733,10620 6733,10213 7716,9644 7716,10620 Z"/>
<path fill="rgb(211,211,211)" stroke="none" d="M 7716,10620 L 7716,9644 8341,9283 8341,11142 6733,12072 6733,10620 7716,10620 Z M 7688,10592 L 6740,10592 6740,10209 7688,9661 7688,10592 Z"/>
<path fill="rgb(212,212,212)" stroke="none" d="M 6740,10592 L 7688,10592 7688,9661 8341,9283 8341,11142 6733,12072 6733,10213 6740,10209 6740,10592 Z M 7660,10564 L 6768,10564 6768,10193 7660,9677 7660,10564 Z"/>
<path fill="rgb(213,213,213)" stroke="none" d="M 6768,10564 L 7660,10564 7660,9677 8341,9283 8341,11142 6733,12072 6733,10213 6768,10193 6768,10564 Z M 7632,9700 L 7632,10536 6796,10536 6796,10177 7620,9700 7632,9700 Z"/>
<path fill="rgb(214,214,214)" stroke="none" d="M 6796,10536 L 7632,10536 7632,9700 7620,9700 8341,9283 8341,11142 6733,12072 6733,10213 6796,10177 6796,10536 Z M 7604,9728 L 7604,10508 6824,10508 6824,10160 7572,9728 7604,9728 Z"/>
<path fill="rgb(215,215,215)" stroke="none" d="M 6824,10508 L 7604,10508 7604,9728 7572,9728 8341,9283 8341,11142 6733,12072 6733,10213 6824,10160 6824,10508 Z M 7576,9756 L 7576,10480 6852,10480 6852,10144 7523,9756 7576,9756 Z"/>
<path fill="rgb(216,216,216)" stroke="none" d="M 6852,10480 L 7576,10480 7576,9756 7523,9756 8341,9283 8341,11142 6733,12072 6733,10213 6852,10144 6852,10480 Z M 7549,9783 L 7549,10453 6879,10453 6879,10129 7476,9783 7549,9783 Z"/>
<path fill="rgb(217,217,217)" stroke="none" d="M 6879,10453 L 7549,10453 7549,9783 7476,9783 8341,9283 8341,11142 6733,12072 6733,10213 6879,10129 6879,10453 Z M 7521,9811 L 7521,10425 6907,10425 6907,10112 7428,9811 7521,9811 Z"/>
<path fill="rgb(218,218,218)" stroke="none" d="M 6907,10425 L 7521,10425 7521,9811 7428,9811 8341,9283 8341,11142 6733,12072 6733,10213 6907,10112 6907,10425 Z M 7493,9839 L 7493,10397 6935,10397 6935,10096 7380,9839 7493,9839 Z"/>
<path fill="rgb(219,219,219)" stroke="none" d="M 6935,10397 L 7493,10397 7493,9839 7380,9839 8341,9283 8341,11142 6733,12072 6733,10213 6935,10096 6935,10397 Z M 7465,9867 L 7465,10369 6963,10369 6963,10080 7331,9867 7465,9867 Z"/>
<path fill="rgb(220,220,220)" stroke="none" d="M 6963,10369 L 7465,10369 7465,9867 7331,9867 8341,9283 8341,11142 6733,12072 6733,10213 6963,10080 6963,10369 Z M 7437,9895 L 7437,10341 6991,10341 6991,10064 7283,9895 7437,9895 Z"/>
<path fill="rgb(221,221,221)" stroke="none" d="M 6991,10341 L 7437,10341 7437,9895 7283,9895 8341,9283 8341,11142 6733,12072 6733,10213 6991,10064 6991,10341 Z M 7409,9923 L 7409,10313 7019,10313 7019,10048 7234,9923 7409,9923 Z"/>
<path fill="rgb(222,222,222)" stroke="none" d="M 7019,10313 L 7409,10313 7409,9923 7234,9923 8341,9283 8341,11142 6733,12072 6733,10213 7019,10048 7019,10313 Z M 7381,9951 L 7381,10285 7047,10285 7047,10031 7186,9951 7381,9951 Z"/>
<path fill="rgb(223,223,223)" stroke="none" d="M 7047,10285 L 7381,10285 7381,9951 7186,9951 8341,9283 8341,11142 6733,12072 6733,10213 7047,10031 7047,10285 Z M 7353,9979 L 7353,10257 7075,10257 7075,10015 7138,9979 7353,9979 Z"/>
<path fill="rgb(224,224,224)" stroke="none" d="M 7075,10257 L 7353,10257 7353,9979 7138,9979 8341,9283 8341,11142 6733,12072 6733,10213 7075,10015 7075,10257 Z M 7103,10007 L 7325,10007 7325,10229 7103,10229 7103,10007 Z"/>
<path fill="rgb(225,225,225)" stroke="none" d="M 7103,10007 L 7103,10229 7325,10229 7325,10007 7103,10007 Z M 7131,10035 L 7297,10035 7297,10201 7131,10201 7131,10035 Z M 6733,12072 L 6733,10213 8341,9283 8341,11142 6733,12072 Z"/>
<path fill="rgb(226,226,226)" stroke="none" d="M 7131,10035 L 7131,10201 7297,10201 7297,10035 7131,10035 Z M 7159,10063 L 7269,10063 7269,10173 7159,10173 7159,10063 Z M 6733,12072 L 6733,10213 8341,9283 8341,11142 6733,12072 Z"/>
<path fill="rgb(227,227,227)" stroke="none" d="M 7159,10063 L 7159,10173 7269,10173 7269,10063 7159,10063 Z M 7187,10091 L 7241,10091 7241,10145 7187,10145 7187,10091 Z M 6733,12072 L 6733,10213 8341,9283 8341,11142 6733,12072 Z"/>
<path fill="rgb(229,229,229)" stroke="none" d="M 7187,10091 L 7187,10145 7241,10145 7241,10091 7187,10091 Z M 6733,12072 L 6733,10213 8341,9283 8341,11142 6733,12072 Z"/>
<path fill="none" stroke="rgb(255,255,255)" id="Drawing_3_0" stroke-width="40" stroke-linejoin="round" d="M 6733,12072 L 6733,10213 8341,9283 8341,11142 6733,12072 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_733" gradientUnits="userSpaceOnUse" x1="4320" y1="7052" x2="4320" y2="8725">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_733)" stroke="rgb(255,255,255)" id="Drawing_4_0" stroke-width="40" stroke-linejoin="round" d="M 4160,8725 L 2873,7982 4481,7052 5768,7796 4160,8725 Z"/>
</g>
<g>
<path fill="rgb(127,127,127)" stroke="none" d="M 2873,8354 L 2873,7982 4160,8726 4160,9098 2873,8354 Z"/>
<path fill="none" stroke="rgb(0,0,0)" id="Drawing_5_0" stroke-width="40" stroke-linejoin="round" d="M 2873,8354 L 2873,7982 4160,8726 4160,9098 2873,8354 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_734" gradientUnits="userSpaceOnUse" x1="4157" y1="9933" x2="4590" y2="9933">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_734)" stroke="rgb(255,255,255)" id="Drawing_6_0" stroke-width="40" stroke-linejoin="round" d="M 4160,10584 L 4160,9035 4589,9283 4589,10832 4160,10584 Z"/>
</g>
<g>
<path fill="rgb(127,127,127)" stroke="none" d="M 4267,9469 L 4267,9283 4481,9407 4481,9593 4267,9469 Z"/>
<path fill="none" stroke="rgb(0,0,0)" id="Drawing_7_0" stroke-width="40" stroke-linejoin="round" d="M 4267,9469 L 4267,9283 4481,9407 4481,9593 4267,9469 Z"/>
</g>
<g>
<path fill="none" stroke="rgb(127,127,127)" id="Drawing_8_0" stroke-width="40" stroke-linejoin="round" d="M 3087,7982 L 4481,7176"/>
</g>
<g>
<path fill="none" stroke="rgb(127,127,127)" id="Drawing_9_0" stroke-width="40" stroke-linejoin="round" d="M 3195,8044 L 4589,7238"/>
</g>
<g>
<path fill="none" stroke="rgb(127,127,127)" id="Drawing_10_0" stroke-width="40" stroke-linejoin="round" d="M 3302,8106 L 4696,7300"/>
</g>
<g>
<path fill="none" stroke="rgb(127,127,127)" id="Drawing_11_0" stroke-width="40" stroke-linejoin="round" d="M 3409,8168 L 4803,7362"/>
</g>
<g>
<path fill="none" stroke="rgb(127,127,127)" id="Drawing_12_0" stroke-width="40" stroke-linejoin="round" d="M 3516,8230 L 4910,7424"/>
</g>
<g>
<path fill="none" stroke="rgb(127,127,127)" id="Drawing_13_0" stroke-width="40" stroke-linejoin="round" d="M 3624,8292 L 5018,7486"/>
</g>
<g>
<path fill="none" stroke="rgb(127,127,127)" id="Drawing_14_0" stroke-width="40" stroke-linejoin="round" d="M 3731,8354 L 5125,7548"/>
</g>
<g>
<path fill="none" stroke="rgb(127,127,127)" id="Drawing_15_0" stroke-width="40" stroke-linejoin="round" d="M 3838,8416 L 5232,7610"/>
</g>
<g>
<path fill="none" stroke="rgb(127,127,127)" id="Drawing_16_0" stroke-width="40" stroke-linejoin="round" d="M 3945,8478 L 5339,7672"/>
</g>
<g>
<path fill="none" stroke="rgb(127,127,127)" id="Drawing_17_0" stroke-width="40" stroke-linejoin="round" d="M 4052,8540 L 5446,7734"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_735" gradientUnits="userSpaceOnUse" x1="6464" y1="7796" x2="6464" y2="9965">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_735)" stroke="rgb(255,255,255)" id="Drawing_18_0" stroke-width="40" stroke-linejoin="round" d="M 7161,9965 L 4588,8478 5767,7796 8341,9283 7161,9965 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_736" gradientUnits="userSpaceOnUse" x1="4589" y1="8477" x2="4589" y2="8973">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_736)" stroke="rgb(255,255,255)" id="Drawing_19_0" stroke-width="40" stroke-linejoin="round" d="M 4589,8973 L 4160,8725 4589,8477 5018,8725 4589,8973 Z"/>
</g>
<g>
<path fill="rgb(127,127,127)" stroke="none" d="M 4160,9097 L 4160,8849 4589,9097 4589,9345 4160,9097 Z"/>
<path fill="none" stroke="rgb(0,0,0)" id="Drawing_20_0" stroke-width="40" stroke-linejoin="round" d="M 4160,9097 L 4160,8849 4589,9097 4589,9345 4160,9097 Z"/>
</g>
<g>
<path fill="rgb(230,230,230)" stroke="none" d="M 4160,8849 L 4160,8725 4589,8973 4589,9097 4160,8849 Z"/>
<path fill="none" stroke="rgb(255,255,255)" id="Drawing_21_0" stroke-width="40" stroke-linejoin="round" d="M 4160,8849 L 4160,8725 4589,8973 4589,9097 4160,8849 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_737" gradientUnits="userSpaceOnUse" x1="4585" y1="10181" x2="5018" y2="10181">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_737)" stroke="rgb(255,255,255)" id="Drawing_22_0" stroke-width="40" stroke-linejoin="round" d="M 4588,10832 L 4588,9283 5017,9531 5017,11080 4588,10832 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_738" gradientUnits="userSpaceOnUse" x1="5017" y1="8725" x2="5017" y2="9221">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_738)" stroke="rgb(255,255,255)" id="Drawing_23_0" stroke-width="40" stroke-linejoin="round" d="M 5017,9221 L 4588,8973 5017,8725 5446,8973 5017,9221 Z"/>
</g>
<g>
<path fill="rgb(127,127,127)" stroke="none" d="M 4588,9345 L 4588,9097 5017,9345 5017,9593 4588,9345 Z"/>
<path fill="none" stroke="rgb(0,0,0)" id="Drawing_24_0" stroke-width="40" stroke-linejoin="round" d="M 4588,9345 L 4588,9097 5017,9345 5017,9593 4588,9345 Z"/>
</g>
<g>
<path fill="rgb(0,115,188)" stroke="none" d="M 4588,9097 L 4588,8973 5017,9221 5017,9345 4588,9097 Z"/>
<path fill="none" stroke="rgb(255,255,255)" id="Drawing_25_0" stroke-width="40" stroke-linejoin="round" d="M 4588,9097 L 4588,8973 5017,9221 5017,9345 4588,9097 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_739" gradientUnits="userSpaceOnUse" x1="5014" y1="10429" x2="5447" y2="10429">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_739)" stroke="rgb(255,255,255)" id="Drawing_26_0" stroke-width="40" stroke-linejoin="round" d="M 5017,11080 L 5017,9531 5446,9779 5446,11328 5017,11080 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_740" gradientUnits="userSpaceOnUse" x1="5446" y1="8973" x2="5446" y2="9469">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_740)" stroke="rgb(255,255,255)" id="Drawing_27_0" stroke-width="40" stroke-linejoin="round" d="M 5446,9469 L 5017,9221 5446,8973 5875,9221 5446,9469 Z"/>
</g>
<g>
<path fill="rgb(127,127,127)" stroke="none" d="M 5017,9593 L 5017,9345 5446,9593 5446,9841 5017,9593 Z"/>
<path fill="none" stroke="rgb(0,0,0)" id="Drawing_28_0" stroke-width="40" stroke-linejoin="round" d="M 5017,9593 L 5017,9345 5446,9593 5446,9841 5017,9593 Z"/>
</g>
<g>
<path fill="rgb(0,115,188)" stroke="none" d="M 5017,9345 L 5017,9221 5446,9469 5446,9593 5017,9345 Z"/>
<path fill="none" stroke="rgb(255,255,255)" id="Drawing_29_0" stroke-width="40" stroke-linejoin="round" d="M 5017,9345 L 5017,9221 5446,9469 5446,9593 5017,9345 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_741" gradientUnits="userSpaceOnUse" x1="5443" y1="10677" x2="5876" y2="10677">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_741)" stroke="rgb(255,255,255)" id="Drawing_30_0" stroke-width="40" stroke-linejoin="round" d="M 5446,11328 L 5446,9779 5875,10027 5875,11576 5446,11328 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_742" gradientUnits="userSpaceOnUse" x1="5875" y1="9221" x2="5875" y2="9717">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_742)" stroke="rgb(255,255,255)" id="Drawing_31_0" stroke-width="40" stroke-linejoin="round" d="M 5875,9717 L 5446,9469 5875,9221 6304,9469 5875,9717 Z"/>
</g>
<g>
<path fill="rgb(127,127,127)" stroke="none" d="M 5446,9841 L 5446,9593 5875,9841 5875,10089 5446,9841 Z"/>
<path fill="none" stroke="rgb(0,0,0)" id="Drawing_32_0" stroke-width="40" stroke-linejoin="round" d="M 5446,9841 L 5446,9593 5875,9841 5875,10089 5446,9841 Z"/>
</g>
<g>
<path fill="rgb(57,181,74)" stroke="none" d="M 5446,9593 L 5446,9469 5875,9717 5875,9841 5446,9593 Z"/>
<path fill="none" stroke="rgb(255,255,255)" id="Drawing_33_0" stroke-width="40" stroke-linejoin="round" d="M 5446,9593 L 5446,9469 5875,9717 5875,9841 5446,9593 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_743" gradientUnits="userSpaceOnUse" x1="5872" y1="10925" x2="6305" y2="10925">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_743)" stroke="rgb(255,255,255)" id="Drawing_34_0" stroke-width="40" stroke-linejoin="round" d="M 5875,11576 L 5875,10027 6304,10275 6304,11824 5875,11576 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_744" gradientUnits="userSpaceOnUse" x1="6304" y1="9469" x2="6304" y2="9965">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_744)" stroke="rgb(255,255,255)" id="Drawing_35_0" stroke-width="40" stroke-linejoin="round" d="M 6304,9965 L 5875,9717 6304,9469 6733,9717 6304,9965 Z"/>
</g>
<g>
<path fill="rgb(127,127,127)" stroke="none" d="M 5875,10089 L 5875,9841 6304,10089 6304,10337 5875,10089 Z"/>
<path fill="none" stroke="rgb(0,0,0)" id="Drawing_36_0" stroke-width="40" stroke-linejoin="round" d="M 5875,10089 L 5875,9841 6304,10089 6304,10337 5875,10089 Z"/>
</g>
<g>
<path fill="rgb(230,230,230)" stroke="none" d="M 5875,9841 L 5875,9717 6304,9965 6304,10089 5875,9841 Z"/>
<path fill="none" stroke="rgb(255,255,255)" id="Drawing_37_0" stroke-width="40" stroke-linejoin="round" d="M 5875,9841 L 5875,9717 6304,9965 6304,10089 5875,9841 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_745" gradientUnits="userSpaceOnUse" x1="6301" y1="11173" x2="6734" y2="11173">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_745)" stroke="rgb(255,255,255)" id="Drawing_38_0" stroke-width="40" stroke-linejoin="round" d="M 6304,11824 L 6304,10275 6733,10523 6733,12072 6304,11824 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_746" gradientUnits="userSpaceOnUse" x1="6733" y1="9717" x2="6733" y2="10213">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_746)" stroke="rgb(255,255,255)" id="Drawing_39_0" stroke-width="40" stroke-linejoin="round" d="M 6733,10213 L 6304,9965 6733,9717 7162,9965 6733,10213 Z"/>
</g>
<g>
<path fill="rgb(127,127,127)" stroke="none" d="M 6304,10337 L 6304,10089 6733,10337 6733,10585 6304,10337 Z"/>
<path fill="none" stroke="rgb(0,0,0)" id="Drawing_40_0" stroke-width="40" stroke-linejoin="round" d="M 6304,10337 L 6304,10089 6733,10337 6733,10585 6304,10337 Z"/>
</g>
<g>
<path fill="rgb(190,30,45)" stroke="none" d="M 6304,10089 L 6304,9965 6733,10213 6733,10337 6304,10089 Z"/>
<path fill="none" stroke="rgb(255,255,255)" id="Drawing_41_0" stroke-width="40" stroke-linejoin="round" d="M 6304,10089 L 6304,9965 6733,10213 6733,10337 6304,10089 Z"/>
</g>
<g>
<path fill="none" stroke="rgb(0,0,0)" id="Drawing_42_0" stroke-width="40" stroke-linejoin="round" d="M 2873,9841 L 2873,7982 4481,7052 8341,9283 8341,11142 6733,12072 2873,9841 Z"/>
</g>
<g>
<path fill="none" stroke="rgb(127,127,127)" id="Drawing_43_0" stroke-width="40" stroke-linejoin="round" d="M 5125,8664 L 6090,8106"/>
</g>
<g>
<path fill="none" stroke="rgb(127,127,127)" id="Drawing_44_0" stroke-width="40" stroke-linejoin="round" d="M 5553,8911 L 6518,8353"/>
</g>
<g>
<path fill="none" stroke="rgb(127,127,127)" id="Drawing_45_0" stroke-width="40" stroke-linejoin="round" d="M 5982,9159 L 6947,8601"/>
</g>
<g>
<path fill="none" stroke="rgb(127,127,127)" id="Drawing_46_0" stroke-width="40" stroke-linejoin="round" d="M 6411,9407 L 7376,8849"/>
</g>
<g>
<path fill="none" stroke="rgb(127,127,127)" id="Drawing_47_0" stroke-width="40" stroke-linejoin="round" d="M 6840,9655 L 7805,9097"/>
</g>
</g>
</g>
</g>
</svg></y:Resource>
<y:Resource id="2"><?xml version="1.0" encoding="UTF-8"?>
<svg version="1.2" baseProfile="tiny" width="60.24mm" height="48.57mm" viewBox="4663 4799 6024 4857" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve">
<g visibility="visible" id="Slide_1">
<g id="DrawingGroup_1">
<g>
<path fill="rgb(221,221,221)" stroke="none" d="M 10239,9636 C 10485,9636 10687,9584 10687,9428 10687,9273 10597,9273 10508,9273 10508,9428 10239,9428 10239,9636 Z"/>
<path fill="none" stroke="rgb(221,221,221)" id="Drawing_1_0" stroke-linejoin="round" d="M 10239,9636 C 10485,9636 10687,9584 10687,9428 10687,9273 10597,9273 10508,9273 10508,9428 10239,9428 10239,9636 Z"/>
</g>
<g id="DrawingGroup_2">
<g>
<defs>
<linearGradient id="Gradient_747" gradientUnits="userSpaceOnUse" x1="5220" y1="6709" x2="6476" y2="6711">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_747)" stroke="rgb(255,255,255)" id="Drawing_2_0" stroke-width="40" stroke-linejoin="round" d="M 5221,6736 L 5221,5959 6475,6684 6475,7461 5221,6736 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_748" gradientUnits="userSpaceOnUse" x1="5713" y1="4819" x2="5713" y2="6010">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_748)" stroke="rgb(255,255,255)" id="Drawing_3_0" stroke-width="40" stroke-linejoin="round" d="M 5937,6010 L 4683,5285 5489,4819 6744,5544 5937,6010 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_749" gradientUnits="userSpaceOnUse" x1="4682" y1="6138" x2="5938" y2="6140">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_749)" stroke="rgb(255,255,255)" id="Drawing_4_0" stroke-width="40" stroke-linejoin="round" d="M 4683,6269 L 4683,5285 5937,6010 5937,6994 4683,6269 Z"/>
</g>
<g>
<path fill="rgb(179,179,179)" stroke="none" d="M 6475,7057 L 6475,6684 5937,6994 5937,6010 6743,5544 6743,7057 6475,7057 Z"/>
<path fill="rgb(180,180,180)" stroke="none" d="M 6743,7057 L 6743,7305 6475,7460 6475,7057 6743,7057 Z M 6475,7038 L 6475,6684 5937,6994 5937,6010 6743,5544 6743,7038 6475,7038 Z"/>
<path fill="rgb(181,181,181)" stroke="none" d="M 6743,7038 L 6743,7305 6475,7460 6475,7038 6743,7038 Z M 6475,7019 L 6475,6684 5937,6994 5937,6010 6743,5544 6743,7019 6475,7019 Z"/>
<path fill="rgb(182,182,182)" stroke="none" d="M 6743,7019 L 6743,7305 6475,7460 6475,7019 6743,7019 Z M 6475,7000 L 6475,6684 5937,6994 5937,6010 6743,5544 6743,7000 6475,7000 Z"/>
<path fill="rgb(183,183,183)" stroke="none" d="M 6743,7000 L 6743,7305 6475,7460 6475,7000 6743,7000 Z M 6475,6981 L 6475,6684 5960,6981 5937,6981 5937,6010 6743,5544 6743,6981 6475,6981 Z"/>
<path fill="rgb(184,184,184)" stroke="none" d="M 5960,6981 L 5937,6994 5937,6981 5960,6981 Z M 6743,6981 L 6743,7305 6475,7460 6475,6981 6743,6981 Z M 6475,6961 L 6475,6684 5994,6961 5937,6961 5937,6010 6743,5544 6743,6961 6475,6961 Z"/>
<path fill="rgb(185,185,185)" stroke="none" d="M 5994,6961 L 5937,6994 5937,6961 5994,6961 Z M 6743,6961 L 6743,7305 6475,7460 6475,6961 6743,6961 Z M 6475,6942 L 6475,6684 6027,6942 5937,6942 5937,6010 6743,5544 6743,6942 6475,6942 Z"/>
<path fill="rgb(186,186,186)" stroke="none" d="M 6027,6942 L 5937,6994 5937,6942 6027,6942 Z M 6743,6942 L 6743,7305 6475,7460 6475,6942 6743,6942 Z M 6475,6923 L 6475,6684 6060,6923 5937,6923 5937,6010 6743,5544 6743,6923 6475,6923 Z"/>
<path fill="rgb(187,187,187)" stroke="none" d="M 6060,6923 L 5937,6994 5937,6923 6060,6923 Z M 6743,6923 L 6743,7305 6475,7460 6475,6923 6743,6923 Z M 6475,6904 L 6475,6684 6093,6904 5937,6904 5937,6010 6743,5544 6743,6904 6475,6904 Z"/>
<path fill="rgb(188,188,188)" stroke="none" d="M 6093,6904 L 5937,6994 5937,6904 6093,6904 Z M 6743,6904 L 6743,7305 6475,7460 6475,6904 6743,6904 Z M 6475,6885 L 6475,6684 6126,6885 5937,6885 5937,6010 6743,5544 6743,6885 6475,6885 Z"/>
<path fill="rgb(189,189,189)" stroke="none" d="M 6126,6885 L 5937,6994 5937,6885 6126,6885 Z M 6743,6885 L 6743,7305 6475,7460 6475,6885 6743,6885 Z M 6475,6865 L 6475,6684 6161,6865 5937,6865 5937,6010 6743,5544 6743,6865 6475,6865 Z"/>
<path fill="rgb(190,190,190)" stroke="none" d="M 6161,6865 L 5937,6994 5937,6865 6161,6865 Z M 6743,6865 L 6743,7305 6475,7460 6475,6865 6743,6865 Z M 6475,6846 L 6475,6684 6194,6846 5937,6846 5937,6010 6743,5544 6743,6846 6475,6846 Z"/>
<path fill="rgb(191,191,191)" stroke="none" d="M 6194,6846 L 5937,6994 5937,6846 6194,6846 Z M 6743,6846 L 6743,7305 6475,7460 6475,6846 6743,6846 Z M 6475,6827 L 6475,6684 6227,6827 5937,6827 5937,6010 6743,5544 6743,6827 6475,6827 Z"/>
<path fill="rgb(192,192,192)" stroke="none" d="M 6227,6827 L 5937,6994 5937,6827 6227,6827 Z M 6743,6827 L 6743,7305 6475,7460 6475,6827 6743,6827 Z M 6475,6808 L 6475,6684 6260,6808 5937,6808 5937,6010 6743,5544 6743,6808 6475,6808 Z"/>
<path fill="rgb(193,193,193)" stroke="none" d="M 6260,6808 L 5937,6994 5937,6808 6260,6808 Z M 6743,6808 L 6743,7305 6475,7460 6475,6808 6743,6808 Z M 6475,6789 L 6475,6684 6293,6789 5937,6789 5937,6010 6743,5544 6743,6789 6475,6789 Z"/>
<path fill="rgb(194,194,194)" stroke="none" d="M 6293,6789 L 5937,6994 5937,6789 6293,6789 Z M 6743,6789 L 6743,7305 6475,7460 6475,6789 6743,6789 Z M 6475,6769 L 6475,6684 6327,6769 5937,6769 5937,6010 6743,5544 6743,6769 6475,6769 Z"/>
<path fill="rgb(195,195,195)" stroke="none" d="M 6327,6769 L 5937,6994 5937,6769 6327,6769 Z M 6743,6769 L 6743,7305 6475,7460 6475,6769 6743,6769 Z M 6475,6750 L 6475,6684 6360,6750 5937,6750 5937,6010 6743,5544 6743,6750 6475,6750 Z"/>
<path fill="rgb(196,196,196)" stroke="none" d="M 6360,6750 L 5937,6994 5937,6750 6360,6750 Z M 6743,6750 L 6743,7305 6475,7460 6475,6750 6743,6750 Z M 6475,6731 L 6475,6684 6393,6731 5937,6731 5937,6010 6743,5544 6743,6731 6475,6731 Z"/>
<path fill="rgb(197,197,197)" stroke="none" d="M 6393,6731 L 5937,6994 5937,6731 6393,6731 Z M 6743,6731 L 6743,7305 6475,7460 6475,6731 6743,6731 Z M 6475,6712 L 6475,6684 6426,6712 5937,6712 5937,6010 6743,5544 6743,6712 6475,6712 Z"/>
<path fill="rgb(198,198,198)" stroke="none" d="M 6426,6712 L 5937,6994 5937,6712 6426,6712 Z M 6743,6712 L 6743,7305 6475,7460 6475,6712 6743,6712 Z M 6475,6693 L 6475,6684 6459,6693 5937,6693 5937,6010 6743,5544 6743,6693 6475,6693 Z"/>
<path fill="rgb(199,199,199)" stroke="none" d="M 6459,6693 L 5937,6994 5937,6693 6459,6693 Z M 6743,6693 L 6743,7305 6475,7460 6475,6693 6743,6693 Z M 6734,5561 L 6734,6674 5937,6674 5937,6010 6714,5561 6734,5561 Z"/>
<path fill="rgb(200,200,200)" stroke="none" d="M 6734,6674 L 6734,5561 6714,5561 6743,5544 6743,7305 6475,7460 6475,6684 5937,6994 5937,6674 6734,6674 Z M 6714,5581 L 6714,6654 5937,6654 5937,6010 6679,5581 6714,5581 Z"/>
<path fill="rgb(201,201,201)" stroke="none" d="M 6714,6654 L 6714,5581 6679,5581 6743,5544 6743,7305 6475,7460 6475,6684 5937,6994 5937,6654 6714,6654 Z M 6695,5600 L 6695,6635 5937,6635 5937,6010 6646,5600 6695,5600 Z"/>
<path fill="rgb(202,202,202)" stroke="none" d="M 6695,6635 L 6695,5600 6646,5600 6743,5544 6743,7305 6475,7460 6475,6684 5937,6994 5937,6635 6695,6635 Z M 6676,5619 L 6676,6616 5937,6616 5937,6010 6613,5619 6676,5619 Z"/>
<path fill="rgb(203,203,203)" stroke="none" d="M 6676,6616 L 6676,5619 6613,5619 6743,5544 6743,7305 6475,7460 6475,6684 5937,6994 5937,6616 6676,6616 Z M 6657,5638 L 6657,6597 5937,6597 5937,6010 6580,5638 6657,5638 Z"/>
<path fill="rgb(204,204,204)" stroke="none" d="M 6657,6597 L 6657,5638 6580,5638 6743,5544 6743,7305 6475,7460 6475,6684 5937,6994 5937,6597 6657,6597 Z M 6638,5657 L 6638,6578 5937,6578 5937,6010 6548,5657 6638,5657 Z"/>
<path fill="rgb(205,205,205)" stroke="none" d="M 6638,6578 L 6638,5657 6548,5657 6743,5544 6743,7305 6475,7460 6475,6684 5937,6994 5937,6578 6638,6578 Z M 6618,5677 L 6618,6558 5937,6558 5937,6010 6513,5677 6618,5677 Z"/>
<path fill="rgb(206,206,206)" stroke="none" d="M 6618,6558 L 6618,5677 6513,5677 6743,5544 6743,7305 6475,7460 6475,6684 5937,6994 5937,6558 6618,6558 Z M 6599,5696 L 6599,6539 5937,6539 5937,6010 6480,5696 6599,5696 Z"/>
<path fill="rgb(207,207,207)" stroke="none" d="M 6599,6539 L 6599,5696 6480,5696 6743,5544 6743,7305 6475,7460 6475,6684 5937,6994 5937,6539 6599,6539 Z M 6580,5715 L 6580,6520 5937,6520 5937,6010 6447,5715 6580,5715 Z"/>
<path fill="rgb(208,208,208)" stroke="none" d="M 6580,6520 L 6580,5715 6447,5715 6743,5544 6743,7305 6475,7460 6475,6684 5937,6994 5937,6520 6580,6520 Z M 6561,5734 L 6561,6501 5937,6501 5937,6010 6414,5734 6561,5734 Z"/>
<path fill="rgb(209,209,209)" stroke="none" d="M 6561,6501 L 6561,5734 6414,5734 6743,5544 6743,7305 6475,7460 6475,6684 5937,6994 5937,6501 6561,6501 Z M 6542,5753 L 6542,6482 5937,6482 5937,6010 6382,5753 6542,5753 Z"/>
<path fill="rgb(210,210,210)" stroke="none" d="M 6542,6482 L 6542,5753 6382,5753 6743,5544 6743,7305 6475,7460 6475,6684 5937,6994 5937,6482 6542,6482 Z M 6522,5773 L 6522,6462 5937,6462 5937,6010 6347,5773 6522,5773 Z"/>
<path fill="rgb(211,211,211)" stroke="none" d="M 6522,6462 L 6522,5773 6347,5773 6743,5544 6743,7305 6475,7460 6475,6684 5937,6994 5937,6462 6522,6462 Z M 6503,5792 L 6503,6443 5937,6443 5937,6010 6314,5792 6503,5792 Z"/>
<path fill="rgb(212,212,212)" stroke="none" d="M 6503,6443 L 6503,5792 6314,5792 6743,5544 6743,7305 6475,7460 6475,6684 5937,6994 5937,6443 6503,6443 Z M 6484,5811 L 6484,6424 5937,6424 5937,6010 6281,5811 6484,5811 Z"/>
<path fill="rgb(213,213,213)" stroke="none" d="M 6484,6424 L 6484,5811 6281,5811 6743,5544 6743,7305 6475,7460 6475,6684 5937,6994 5937,6424 6484,6424 Z M 6465,5830 L 6465,6405 5937,6405 5937,6010 6248,5830 6465,5830 Z"/>
<path fill="rgb(214,214,214)" stroke="none" d="M 6465,6405 L 6465,5830 6248,5830 6743,5544 6743,7305 6475,7460 6475,6684 5937,6994 5937,6405 6465,6405 Z M 6446,5849 L 6446,6386 5937,6386 5937,6010 6215,5849 6446,5849 Z"/>
<path fill="rgb(215,215,215)" stroke="none" d="M 6446,6386 L 6446,5849 6215,5849 6743,5544 6743,7305 6475,7460 6475,6684 5937,6994 5937,6386 6446,6386 Z M 6426,5869 L 6426,6366 5937,6366 5937,6010 6181,5869 6426,5869 Z"/>
<path fill="rgb(216,216,216)" stroke="none" d="M 6426,6366 L 6426,5869 6181,5869 6743,5544 6743,7305 6475,7460 6475,6684 5937,6994 5937,6366 6426,6366 Z M 6407,5888 L 6407,6347 5948,6347 5948,6004 6148,5888 6407,5888 Z"/>
<path fill="rgb(217,217,217)" stroke="none" d="M 5948,6347 L 6407,6347 6407,5888 6148,5888 6743,5544 6743,7305 6475,7460 6475,6684 5937,6994 5937,6010 5948,6004 5948,6347 Z M 6388,5907 L 6388,6328 5967,6328 5967,5993 6115,5907 6388,5907 Z"/>
<path fill="rgb(218,218,218)" stroke="none" d="M 5967,6328 L 6388,6328 6388,5907 6115,5907 6743,5544 6743,7305 6475,7460 6475,6684 5937,6994 5937,6010 5967,5993 5967,6328 Z M 6369,5926 L 6369,6309 5986,6309 5986,5982 6082,5926 6369,5926 Z"/>
<path fill="rgb(219,219,219)" stroke="none" d="M 5986,6309 L 6369,6309 6369,5926 6082,5926 6743,5544 6743,7305 6475,7460 6475,6684 5937,6994 5937,6010 5986,5982 5986,6309 Z M 6350,5945 L 6350,6290 6005,6290 6005,5971 6049,5945 6350,5945 Z"/>
<path fill="rgb(220,220,220)" stroke="none" d="M 6005,6290 L 6350,6290 6350,5945 6049,5945 6743,5544 6743,7305 6475,7460 6475,6684 5937,6994 5937,6010 6005,5971 6005,6290 Z M 6024,5964 L 6331,5964 6331,6271 6024,6271 6024,5964 Z"/>
<path fill="rgb(221,221,221)" stroke="none" d="M 6024,5964 L 6024,6271 6331,6271 6331,5964 6024,5964 Z M 6044,5984 L 6311,5984 6311,6251 6044,6251 6044,5984 Z M 6475,6684 L 5937,6994 5937,6010 6743,5544 6743,7305 6475,7460 6475,6684 Z"/>
<path fill="rgb(222,222,222)" stroke="none" d="M 6044,5984 L 6044,6251 6311,6251 6311,5984 6044,5984 Z M 6063,6003 L 6292,6003 6292,6232 6063,6232 6063,6003 Z M 6475,6684 L 5937,6994 5937,6010 6743,5544 6743,7305 6475,7460 6475,6684 Z"/>
<path fill="rgb(223,223,223)" stroke="none" d="M 6063,6003 L 6063,6232 6292,6232 6292,6003 6063,6003 Z M 6082,6022 L 6273,6022 6273,6213 6082,6213 6082,6022 Z M 6475,6684 L 5937,6994 5937,6010 6743,5544 6743,7305 6475,7460 6475,6684 Z"/>
<path fill="rgb(224,224,224)" stroke="none" d="M 6082,6022 L 6082,6213 6273,6213 6273,6022 6082,6022 Z M 6101,6041 L 6254,6041 6254,6194 6101,6194 6101,6041 Z M 6475,6684 L 5937,6994 5937,6010 6743,5544 6743,7305 6475,7460 6475,6684 Z"/>
<path fill="rgb(225,225,225)" stroke="none" d="M 6101,6041 L 6101,6194 6254,6194 6254,6041 6101,6041 Z M 6120,6060 L 6235,6060 6235,6175 6120,6175 6120,6060 Z M 6475,6684 L 5937,6994 5937,6010 6743,5544 6743,7305 6475,7460 6475,6684 Z"/>
<path fill="rgb(226,226,226)" stroke="none" d="M 6120,6060 L 6120,6175 6235,6175 6235,6060 6120,6060 Z M 6140,6080 L 6215,6080 6215,6155 6140,6155 6140,6080 Z M 6475,6684 L 5937,6994 5937,6010 6743,5544 6743,7305 6475,7460 6475,6684 Z"/>
<path fill="rgb(227,227,227)" stroke="none" d="M 6140,6080 L 6140,6155 6215,6155 6215,6080 6140,6080 Z M 6159,6099 L 6196,6099 6196,6136 6159,6136 6159,6099 Z M 6475,6684 L 5937,6994 5937,6010 6743,5544 6743,7305 6475,7460 6475,6684 Z"/>
<path fill="rgb(229,229,229)" stroke="none" d="M 6159,6099 L 6159,6136 6196,6136 6196,6099 6159,6099 Z M 6475,6684 L 5937,6994 5937,6010 6743,5544 6743,7305 6475,7460 6475,6684 Z"/>
<path fill="none" stroke="rgb(255,255,255)" id="Drawing_5_0" stroke-width="40" stroke-linejoin="round" d="M 6475,6684 L 5937,6994 5937,6010 6743,5544 6743,7305 6475,7460 6475,6684 Z"/>
</g>
<g>
<path fill="none" stroke="rgb(0,0,0)" id="Drawing_6_0" stroke-width="40" stroke-linejoin="round" d="M 5221,6735 L 5221,6580 4683,6269 4683,5285 5489,4819 6744,5544 6744,7305 6475,7461 5221,6735 Z"/>
</g>
<g>
<path fill="rgb(127,127,127)" stroke="none" d="M 4773,5596 L 4773,5492 4863,5544 4863,5647 4773,5596 Z"/>
<path fill="none" stroke="rgb(0,0,0)" id="Drawing_7_0" stroke-width="40" stroke-linejoin="round" d="M 4773,5596 L 4773,5492 4863,5544 4863,5647 4773,5596 Z"/>
</g>
</g>
<g id="DrawingGroup_3">
<g>
<defs>
<linearGradient id="Gradient_750" gradientUnits="userSpaceOnUse" x1="6474" y1="7873" x2="8358" y2="7877">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_750)" stroke="rgb(255,255,255)" id="Drawing_8_0" stroke-width="40" stroke-linejoin="round" d="M 6475,7461 L 6475,7202 8357,8290 8357,8549 6475,7461 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_751" gradientUnits="userSpaceOnUse" x1="6295" y1="7717" x2="8179" y2="7721">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_751)" stroke="rgb(255,255,255)" id="Drawing_9_0" stroke-width="40" stroke-linejoin="round" d="M 6296,7305 L 6296,7046 8178,8134 8178,8393 6296,7305 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_752" gradientUnits="userSpaceOnUse" x1="6116" y1="7562" x2="8000" y2="7566">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_752)" stroke="rgb(255,255,255)" id="Drawing_10_0" stroke-width="40" stroke-linejoin="round" d="M 6117,7150 L 6117,6891 7999,7979 7999,8238 6117,7150 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_753" gradientUnits="userSpaceOnUse" x1="7281" y1="5544" x2="7281" y2="7098">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_753)" stroke="rgb(255,255,255)" id="Drawing_11_0" stroke-width="40" stroke-linejoin="round" d="M 7819,7098 L 5937,6010 6743,5544 8625,6632 7819,7098 Z"/>
</g>
<g>
<path fill="rgb(127,127,127)" stroke="none" d="M 8178,8393 L 8178,8289 8268,8341 8268,8444 8178,8393 Z"/>
<path fill="none" stroke="rgb(0,0,0)" id="Drawing_12_0" stroke-width="40" stroke-linejoin="round" d="M 8178,8393 L 8178,8289 8268,8341 8268,8444 8178,8393 Z"/>
</g>
<g>
<path fill="rgb(127,127,127)" stroke="none" d="M 7998,8238 L 7998,8134 8088,8186 8088,8289 7998,8238 Z"/>
<path fill="none" stroke="rgb(0,0,0)" id="Drawing_13_0" stroke-width="40" stroke-linejoin="round" d="M 7998,8238 L 7998,8134 8088,8186 8088,8289 7998,8238 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_754" gradientUnits="userSpaceOnUse" x1="5935" y1="7044" x2="7821" y2="7048">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_754)" stroke="rgb(255,255,255)" id="Drawing_14_0" stroke-width="40" stroke-linejoin="round" d="M 5937,6994 L 5937,6010 7819,7098 7819,8082 5937,6994 Z"/>
</g>
<g>
<path fill="rgb(127,127,127)" stroke="none" d="M 7819,8083 L 7819,7979 7909,8031 7909,8134 7819,8083 Z"/>
<path fill="none" stroke="rgb(0,0,0)" id="Drawing_15_0" stroke-width="40" stroke-linejoin="round" d="M 7819,8083 L 7819,7979 7909,8031 7909,8134 7819,8083 Z"/>
</g>
<g>
<path fill="rgb(179,179,179)" stroke="none" d="M 8177,8145 L 8177,8134 8158,8145 7998,8145 7998,7979 7819,8082 7819,7098 8625,6632 8625,8145 8177,8145 Z"/>
<path fill="rgb(180,180,180)" stroke="none" d="M 8158,8145 L 7998,8238 7998,8145 8158,8145 Z M 8625,8145 L 8625,8393 8357,8548 8357,8289 8177,8393 8177,8145 8625,8145 Z M 7998,8126 L 7998,7979 7819,8082 7819,7098 8625,6632 8625,8126 7998,8126 Z"/>
<path fill="rgb(181,181,181)" stroke="none" d="M 8625,8126 L 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,8126 8625,8126 Z M 7998,8107 L 7998,7979 7819,8082 7819,7098 8625,6632 8625,8107 7998,8107 Z"/>
<path fill="rgb(182,182,182)" stroke="none" d="M 8625,8107 L 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,8107 8625,8107 Z M 7998,8088 L 7998,7979 7819,8082 7819,7098 8625,6632 8625,8088 7998,8088 Z"/>
<path fill="rgb(183,183,183)" stroke="none" d="M 8625,8088 L 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,8088 8625,8088 Z M 7998,8069 L 7998,7979 7842,8069 7819,8069 7819,7098 8625,6632 8625,8069 7998,8069 Z"/>
<path fill="rgb(184,184,184)" stroke="none" d="M 7842,8069 L 7819,8082 7819,8069 7842,8069 Z M 8625,8069 L 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,8069 8625,8069 Z M 7998,8049 L 7998,7979 7876,8049 7819,8049 7819,7098 8625,6632 8625,8049 7998,8049 Z"/>
<path fill="rgb(185,185,185)" stroke="none" d="M 7876,8049 L 7819,8082 7819,8049 7876,8049 Z M 8625,8049 L 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,8049 8625,8049 Z M 7998,8030 L 7998,7979 7909,8030 7819,8030 7819,7098 8625,6632 8625,8030 7998,8030 Z"/>
<path fill="rgb(186,186,186)" stroke="none" d="M 7909,8030 L 7819,8082 7819,8030 7909,8030 Z M 8625,8030 L 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,8030 8625,8030 Z M 7998,8011 L 7998,7979 7942,8011 7819,8011 7819,7098 8625,6632 8625,8011 7998,8011 Z"/>
<path fill="rgb(187,187,187)" stroke="none" d="M 7942,8011 L 7819,8082 7819,8011 7942,8011 Z M 8625,8011 L 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,8011 8625,8011 Z M 7998,7992 L 7998,7979 7975,7992 7819,7992 7819,7098 8625,6632 8625,7992 7998,7992 Z"/>
<path fill="rgb(188,188,188)" stroke="none" d="M 7975,7992 L 7819,8082 7819,7992 7975,7992 Z M 8625,7992 L 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7992 8625,7992 Z M 7819,7973 L 7819,7098 8625,6632 8625,7973 7819,7973 Z"/>
<path fill="rgb(189,189,189)" stroke="none" d="M 8625,7973 L 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7973 8625,7973 Z M 7819,7953 L 7819,7098 8625,6632 8625,7953 7819,7953 Z"/>
<path fill="rgb(190,190,190)" stroke="none" d="M 8625,7953 L 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7953 8625,7953 Z M 7819,7934 L 7819,7098 8625,6632 8625,7934 7819,7934 Z"/>
<path fill="rgb(191,191,191)" stroke="none" d="M 8625,7934 L 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7934 8625,7934 Z M 7819,7915 L 7819,7098 8625,6632 8625,7915 7819,7915 Z"/>
<path fill="rgb(192,192,192)" stroke="none" d="M 8625,7915 L 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7915 8625,7915 Z M 7819,7896 L 7819,7098 8625,6632 8625,7896 7819,7896 Z"/>
<path fill="rgb(193,193,193)" stroke="none" d="M 8625,7896 L 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7896 8625,7896 Z M 7819,7877 L 7819,7098 8625,6632 8625,7877 7819,7877 Z"/>
<path fill="rgb(194,194,194)" stroke="none" d="M 8625,7877 L 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7877 8625,7877 Z M 7819,7857 L 7819,7098 8625,6632 8625,7857 7819,7857 Z"/>
<path fill="rgb(195,195,195)" stroke="none" d="M 8625,7857 L 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7857 8625,7857 Z M 7819,7838 L 7819,7098 8625,6632 8625,7838 7819,7838 Z"/>
<path fill="rgb(196,196,196)" stroke="none" d="M 8625,7838 L 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7838 8625,7838 Z M 7819,7819 L 7819,7098 8625,6632 8625,7819 7819,7819 Z"/>
<path fill="rgb(197,197,197)" stroke="none" d="M 8625,7819 L 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7819 8625,7819 Z M 7819,7800 L 7819,7098 8625,6632 8625,7800 7819,7800 Z"/>
<path fill="rgb(198,198,198)" stroke="none" d="M 8625,7800 L 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7800 8625,7800 Z M 7819,7781 L 7819,7098 8625,6632 8625,7781 7819,7781 Z"/>
<path fill="rgb(199,199,199)" stroke="none" d="M 8625,7781 L 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7781 8625,7781 Z M 8616,6649 L 8616,7762 7819,7762 7819,7098 8596,6649 8616,6649 Z"/>
<path fill="rgb(200,200,200)" stroke="none" d="M 8616,7762 L 8616,6649 8596,6649 8625,6632 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7762 8616,7762 Z M 8596,6669 L 8596,7742 7819,7742 7819,7098 8561,6669 8596,6669 Z"/>
<path fill="rgb(201,201,201)" stroke="none" d="M 8596,7742 L 8596,6669 8561,6669 8625,6632 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7742 8596,7742 Z M 8577,6688 L 8577,7723 7819,7723 7819,7098 8528,6688 8577,6688 Z"/>
<path fill="rgb(202,202,202)" stroke="none" d="M 8577,7723 L 8577,6688 8528,6688 8625,6632 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7723 8577,7723 Z M 8558,6707 L 8558,7704 7819,7704 7819,7098 8495,6707 8558,6707 Z"/>
<path fill="rgb(203,203,203)" stroke="none" d="M 8558,7704 L 8558,6707 8495,6707 8625,6632 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7704 8558,7704 Z M 8539,6726 L 8539,7685 7819,7685 7819,7098 8462,6726 8539,6726 Z"/>
<path fill="rgb(204,204,204)" stroke="none" d="M 8539,7685 L 8539,6726 8462,6726 8625,6632 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7685 8539,7685 Z M 8520,6745 L 8520,7666 7819,7666 7819,7098 8430,6745 8520,6745 Z"/>
<path fill="rgb(205,205,205)" stroke="none" d="M 8520,7666 L 8520,6745 8430,6745 8625,6632 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7666 8520,7666 Z M 8500,6765 L 8500,7646 7819,7646 7819,7098 8395,6765 8500,6765 Z"/>
<path fill="rgb(206,206,206)" stroke="none" d="M 8500,7646 L 8500,6765 8395,6765 8625,6632 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7646 8500,7646 Z M 8481,6784 L 8481,7627 7819,7627 7819,7098 8362,6784 8481,6784 Z"/>
<path fill="rgb(207,207,207)" stroke="none" d="M 8481,7627 L 8481,6784 8362,6784 8625,6632 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7627 8481,7627 Z M 8462,6803 L 8462,7608 7819,7608 7819,7098 8329,6803 8462,6803 Z"/>
<path fill="rgb(208,208,208)" stroke="none" d="M 8462,7608 L 8462,6803 8329,6803 8625,6632 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7608 8462,7608 Z M 8443,6822 L 8443,7589 7819,7589 7819,7098 8296,6822 8443,6822 Z"/>
<path fill="rgb(209,209,209)" stroke="none" d="M 8443,7589 L 8443,6822 8296,6822 8625,6632 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7589 8443,7589 Z M 8424,6841 L 8424,7570 7819,7570 7819,7098 8264,6841 8424,6841 Z"/>
<path fill="rgb(210,210,210)" stroke="none" d="M 8424,7570 L 8424,6841 8264,6841 8625,6632 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7570 8424,7570 Z M 8404,6861 L 8404,7550 7819,7550 7819,7098 8229,6861 8404,6861 Z"/>
<path fill="rgb(211,211,211)" stroke="none" d="M 8404,7550 L 8404,6861 8229,6861 8625,6632 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7550 8404,7550 Z M 8385,6880 L 8385,7531 7819,7531 7819,7098 8196,6880 8385,6880 Z"/>
<path fill="rgb(212,212,212)" stroke="none" d="M 8385,7531 L 8385,6880 8196,6880 8625,6632 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7531 8385,7531 Z M 8366,6899 L 8366,7512 7819,7512 7819,7098 8163,6899 8366,6899 Z"/>
<path fill="rgb(213,213,213)" stroke="none" d="M 8366,7512 L 8366,6899 8163,6899 8625,6632 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7512 8366,7512 Z M 8347,6918 L 8347,7493 7819,7493 7819,7098 8130,6918 8347,6918 Z"/>
<path fill="rgb(214,214,214)" stroke="none" d="M 8347,7493 L 8347,6918 8130,6918 8625,6632 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7493 8347,7493 Z M 8328,6937 L 8328,7474 7819,7474 7819,7098 8097,6937 8328,6937 Z"/>
<path fill="rgb(215,215,215)" stroke="none" d="M 8328,7474 L 8328,6937 8097,6937 8625,6632 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7474 8328,7474 Z M 8308,6957 L 8308,7454 7819,7454 7819,7098 8063,6957 8308,6957 Z"/>
<path fill="rgb(216,216,216)" stroke="none" d="M 8308,7454 L 8308,6957 8063,6957 8625,6632 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7454 8308,7454 Z M 8289,6976 L 8289,7435 7830,7435 7830,7092 8030,6976 8289,6976 Z"/>
<path fill="rgb(217,217,217)" stroke="none" d="M 7830,7435 L 8289,7435 8289,6976 8030,6976 8625,6632 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7098 7830,7092 7830,7435 Z M 8270,6995 L 8270,7416 7849,7416 7849,7081 7997,6995 8270,6995 Z"/>
<path fill="rgb(218,218,218)" stroke="none" d="M 7849,7416 L 8270,7416 8270,6995 7997,6995 8625,6632 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7098 7849,7081 7849,7416 Z M 8251,7014 L 8251,7397 7868,7397 7868,7070 7964,7014 8251,7014 Z"/>
<path fill="rgb(219,219,219)" stroke="none" d="M 7868,7397 L 8251,7397 8251,7014 7964,7014 8625,6632 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7098 7868,7070 7868,7397 Z M 8232,7033 L 8232,7378 7887,7378 7887,7059 7931,7033 8232,7033 Z"/>
<path fill="rgb(220,220,220)" stroke="none" d="M 7887,7378 L 8232,7378 8232,7033 7931,7033 8625,6632 8625,8393 8357,8548 8357,8289 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7098 7887,7059 7887,7378 Z M 7906,7052 L 8213,7052 8213,7359 7906,7359 7906,7052 Z"/>
<path fill="rgb(221,221,221)" stroke="none" d="M 7906,7052 L 7906,7359 8213,7359 8213,7052 7906,7052 Z M 7926,7072 L 8193,7072 8193,7339 7926,7339 7926,7072 Z M 8357,8289 L 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7098 8625,6632 8625,8393 8357,8548 8357,8289 Z"/>
<path fill="rgb(222,222,222)" stroke="none" d="M 7926,7072 L 7926,7339 8193,7339 8193,7072 7926,7072 Z M 7945,7091 L 8174,7091 8174,7320 7945,7320 7945,7091 Z M 8357,8289 L 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7098 8625,6632 8625,8393 8357,8548 8357,8289 Z"/>
<path fill="rgb(223,223,223)" stroke="none" d="M 7945,7091 L 7945,7320 8174,7320 8174,7091 7945,7091 Z M 7964,7110 L 8155,7110 8155,7301 7964,7301 7964,7110 Z M 8357,8289 L 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7098 8625,6632 8625,8393 8357,8548 8357,8289 Z"/>
<path fill="rgb(224,224,224)" stroke="none" d="M 7964,7110 L 7964,7301 8155,7301 8155,7110 7964,7110 Z M 7983,7129 L 8136,7129 8136,7282 7983,7282 7983,7129 Z M 8357,8289 L 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7098 8625,6632 8625,8393 8357,8548 8357,8289 Z"/>
<path fill="rgb(225,225,225)" stroke="none" d="M 7983,7129 L 7983,7282 8136,7282 8136,7129 7983,7129 Z M 8002,7148 L 8117,7148 8117,7263 8002,7263 8002,7148 Z M 8357,8289 L 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7098 8625,6632 8625,8393 8357,8548 8357,8289 Z"/>
<path fill="rgb(226,226,226)" stroke="none" d="M 8002,7148 L 8002,7263 8117,7263 8117,7148 8002,7148 Z M 8022,7168 L 8097,7168 8097,7243 8022,7243 8022,7168 Z M 8357,8289 L 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7098 8625,6632 8625,8393 8357,8548 8357,8289 Z"/>
<path fill="rgb(227,227,227)" stroke="none" d="M 8022,7168 L 8022,7243 8097,7243 8097,7168 8022,7168 Z M 8041,7187 L 8078,7187 8078,7224 8041,7224 8041,7187 Z M 8357,8289 L 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7098 8625,6632 8625,8393 8357,8548 8357,8289 Z"/>
<path fill="rgb(229,229,229)" stroke="none" d="M 8041,7187 L 8041,7224 8078,7224 8078,7187 8041,7187 Z M 8357,8289 L 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7098 8625,6632 8625,8393 8357,8548 8357,8289 Z"/>
<path fill="none" stroke="rgb(255,255,255)" id="Drawing_16_0" stroke-width="40" stroke-linejoin="round" d="M 8357,8289 L 8177,8393 8177,8134 7998,8238 7998,7979 7819,8082 7819,7098 8625,6632 8625,8393 8357,8548 8357,8289 Z"/>
</g>
<g>
<path fill="none" stroke="rgb(0,0,0)" id="Drawing_17_0" stroke-width="40" stroke-linejoin="round" d="M 6475,7460 L 6475,7409 6295,7305 6295,7253 6116,7150 6116,7098 5937,6994 5937,6010 6743,5544 8625,6632 8625,8393 8356,8548 6475,7460 Z"/>
</g>
<g>
<path fill="rgb(230,230,230)" stroke="none" d="M 6027,6891 L 6027,6373 7730,7357 7730,7875 6027,6891 Z"/>
<path fill="none" stroke="rgb(153,153,153)" id="Drawing_18_0" stroke-width="40" stroke-linejoin="round" d="M 6027,6891 L 6027,6373 7730,7357 7730,7875 6027,6891 Z"/>
</g>
<g>
<path fill="rgb(127,127,127)" stroke="none" d="M 6027,6321 L 6027,6217 6117,6269 6117,6372 6027,6321 Z"/>
<path fill="none" stroke="rgb(0,0,0)" id="Drawing_19_0" stroke-width="40" stroke-linejoin="round" d="M 6027,6321 L 6027,6217 6117,6269 6117,6372 6027,6321 Z"/>
</g>
</g>
<g id="DrawingGroup_4">
<g>
<defs>
<linearGradient id="Gradient_755" gradientUnits="userSpaceOnUse" x1="8356" y1="8960" x2="10240" y2="8964">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_755)" stroke="rgb(255,255,255)" id="Drawing_20_0" stroke-width="40" stroke-linejoin="round" d="M 8357,8548 L 8357,8289 10239,9377 10239,9636 8357,8548 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_756" gradientUnits="userSpaceOnUse" x1="8177" y1="8805" x2="10061" y2="8809">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_756)" stroke="rgb(255,255,255)" id="Drawing_21_0" stroke-width="40" stroke-linejoin="round" d="M 8178,8393 L 8178,8134 10060,9222 10060,9481 8178,8393 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_757" gradientUnits="userSpaceOnUse" x1="7997" y1="8650" x2="9881" y2="8654">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_757)" stroke="rgb(255,255,255)" id="Drawing_22_0" stroke-width="40" stroke-linejoin="round" d="M 7998,8238 L 7998,7979 9880,9067 9880,9326 7998,8238 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_758" gradientUnits="userSpaceOnUse" x1="9163" y1="6632" x2="9163" y2="8186">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_758)" stroke="rgb(255,255,255)" id="Drawing_23_0" stroke-width="40" stroke-linejoin="round" d="M 9701,8186 L 7819,7098 8625,6632 10507,7720 9701,8186 Z"/>
</g>
<g>
<path fill="rgb(127,127,127)" stroke="none" d="M 10059,9481 L 10059,9377 10149,9429 10149,9532 10059,9481 Z"/>
<path fill="none" stroke="rgb(0,0,0)" id="Drawing_24_0" stroke-width="40" stroke-linejoin="round" d="M 10059,9481 L 10059,9377 10149,9429 10149,9532 10059,9481 Z"/>
</g>
<g>
<path fill="rgb(127,127,127)" stroke="none" d="M 9880,9326 L 9880,9222 9970,9274 9970,9377 9880,9326 Z"/>
<path fill="none" stroke="rgb(0,0,0)" id="Drawing_25_0" stroke-width="40" stroke-linejoin="round" d="M 9880,9326 L 9880,9222 9970,9274 9970,9377 9880,9326 Z"/>
</g>
<g>
<defs>
<linearGradient id="Gradient_759" gradientUnits="userSpaceOnUse" x1="7817" y1="8132" x2="9703" y2="8136">
<stop offset="0.1" stop-color="rgb(179,179,179)"/>
<stop offset="1" stop-color="rgb(229,229,229)"/>
</linearGradient>
</defs>
<path fill="url(#Gradient_759)" stroke="rgb(255,255,255)" id="Drawing_26_0" stroke-width="40" stroke-linejoin="round" d="M 7819,8082 L 7819,7098 9701,8186 9701,9170 7819,8082 Z"/>
</g>
<g>
<path fill="rgb(127,127,127)" stroke="none" d="M 9701,9170 L 9701,9066 9791,9118 9791,9221 9701,9170 Z"/>
<path fill="none" stroke="rgb(0,0,0)" id="Drawing_27_0" stroke-width="40" stroke-linejoin="round" d="M 9701,9170 L 9701,9066 9791,9118 9791,9221 9701,9170 Z"/>
</g>
<g>
<path fill="rgb(179,179,179)" stroke="none" d="M 10059,9233 L 10059,9222 10040,9233 9880,9233 9880,9067 9701,9170 9701,8186 10507,7720 10507,9233 10059,9233 Z"/>
<path fill="rgb(180,180,180)" stroke="none" d="M 10040,9233 L 9880,9326 9880,9233 10040,9233 Z M 10507,9233 L 10507,9481 10239,9636 10239,9377 10059,9481 10059,9233 10507,9233 Z M 9880,9214 L 9880,9067 9701,9170 9701,8186 10507,7720 10507,9214 9880,9214 Z"/>
<path fill="rgb(181,181,181)" stroke="none" d="M 10507,9214 L 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9214 10507,9214 Z M 9880,9195 L 9880,9067 9701,9170 9701,8186 10507,7720 10507,9195 9880,9195 Z"/>
<path fill="rgb(182,182,182)" stroke="none" d="M 10507,9195 L 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9195 10507,9195 Z M 9880,9176 L 9880,9067 9701,9170 9701,8186 10507,7720 10507,9176 9880,9176 Z"/>
<path fill="rgb(183,183,183)" stroke="none" d="M 10507,9176 L 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9176 10507,9176 Z M 9880,9157 L 9880,9067 9724,9157 9701,9157 9701,8186 10507,7720 10507,9157 9880,9157 Z"/>
<path fill="rgb(184,184,184)" stroke="none" d="M 9724,9157 L 9701,9170 9701,9157 9724,9157 Z M 10507,9157 L 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9157 10507,9157 Z M 9880,9137 L 9880,9067 9758,9137 9701,9137 9701,8186 10507,7720 10507,9137 9880,9137 Z"/>
<path fill="rgb(185,185,185)" stroke="none" d="M 9758,9137 L 9701,9170 9701,9137 9758,9137 Z M 10507,9137 L 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9137 10507,9137 Z M 9880,9118 L 9880,9067 9791,9118 9701,9118 9701,8186 10507,7720 10507,9118 9880,9118 Z"/>
<path fill="rgb(186,186,186)" stroke="none" d="M 9791,9118 L 9701,9170 9701,9118 9791,9118 Z M 10507,9118 L 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9118 10507,9118 Z M 9880,9099 L 9880,9067 9824,9099 9701,9099 9701,8186 10507,7720 10507,9099 9880,9099 Z"/>
<path fill="rgb(187,187,187)" stroke="none" d="M 9824,9099 L 9701,9170 9701,9099 9824,9099 Z M 10507,9099 L 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9099 10507,9099 Z M 9880,9080 L 9880,9067 9857,9080 9701,9080 9701,8186 10507,7720 10507,9080 9880,9080 Z"/>
<path fill="rgb(188,188,188)" stroke="none" d="M 9857,9080 L 9701,9170 9701,9080 9857,9080 Z M 10507,9080 L 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9080 10507,9080 Z M 9701,9061 L 9701,8186 10507,7720 10507,9061 9701,9061 Z"/>
<path fill="rgb(189,189,189)" stroke="none" d="M 10507,9061 L 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,9061 10507,9061 Z M 9701,9041 L 9701,8186 10507,7720 10507,9041 9701,9041 Z"/>
<path fill="rgb(190,190,190)" stroke="none" d="M 10507,9041 L 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,9041 10507,9041 Z M 9701,9022 L 9701,8186 10507,7720 10507,9022 9701,9022 Z"/>
<path fill="rgb(191,191,191)" stroke="none" d="M 10507,9022 L 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,9022 10507,9022 Z M 9701,9003 L 9701,8186 10507,7720 10507,9003 9701,9003 Z"/>
<path fill="rgb(192,192,192)" stroke="none" d="M 10507,9003 L 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,9003 10507,9003 Z M 9701,8984 L 9701,8186 10507,7720 10507,8984 9701,8984 Z"/>
<path fill="rgb(193,193,193)" stroke="none" d="M 10507,8984 L 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,8984 10507,8984 Z M 9701,8965 L 9701,8186 10507,7720 10507,8965 9701,8965 Z"/>
<path fill="rgb(194,194,194)" stroke="none" d="M 10507,8965 L 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,8965 10507,8965 Z M 9701,8945 L 9701,8186 10507,7720 10507,8945 9701,8945 Z"/>
<path fill="rgb(195,195,195)" stroke="none" d="M 10507,8945 L 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,8945 10507,8945 Z M 9701,8926 L 9701,8186 10507,7720 10507,8926 9701,8926 Z"/>
<path fill="rgb(196,196,196)" stroke="none" d="M 10507,8926 L 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,8926 10507,8926 Z M 9701,8907 L 9701,8186 10507,7720 10507,8907 9701,8907 Z"/>
<path fill="rgb(197,197,197)" stroke="none" d="M 10507,8907 L 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,8907 10507,8907 Z M 9701,8888 L 9701,8186 10507,7720 10507,8888 9701,8888 Z"/>
<path fill="rgb(198,198,198)" stroke="none" d="M 10507,8888 L 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,8888 10507,8888 Z M 9701,8869 L 9701,8186 10507,7720 10507,8869 9701,8869 Z"/>
<path fill="rgb(199,199,199)" stroke="none" d="M 10507,8869 L 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,8869 10507,8869 Z M 10498,7737 L 10498,8850 9701,8850 9701,8186 10478,7737 10498,7737 Z"/>
<path fill="rgb(200,200,200)" stroke="none" d="M 10498,8850 L 10498,7737 10478,7737 10507,7720 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,8850 10498,8850 Z M 10478,7757 L 10478,8830 9701,8830 9701,8186 10443,7757 10478,7757 Z"/>
<path fill="rgb(201,201,201)" stroke="none" d="M 10478,8830 L 10478,7757 10443,7757 10507,7720 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,8830 10478,8830 Z M 10459,7776 L 10459,8811 9701,8811 9701,8186 10410,7776 10459,7776 Z"/>
<path fill="rgb(202,202,202)" stroke="none" d="M 10459,8811 L 10459,7776 10410,7776 10507,7720 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,8811 10459,8811 Z M 10440,7795 L 10440,8792 9701,8792 9701,8186 10377,7795 10440,7795 Z"/>
<path fill="rgb(203,203,203)" stroke="none" d="M 10440,8792 L 10440,7795 10377,7795 10507,7720 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,8792 10440,8792 Z M 10421,7814 L 10421,8773 9701,8773 9701,8186 10344,7814 10421,7814 Z"/>
<path fill="rgb(204,204,204)" stroke="none" d="M 10421,8773 L 10421,7814 10344,7814 10507,7720 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,8773 10421,8773 Z M 10402,7833 L 10402,8754 9701,8754 9701,8186 10312,7833 10402,7833 Z"/>
<path fill="rgb(205,205,205)" stroke="none" d="M 10402,8754 L 10402,7833 10312,7833 10507,7720 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,8754 10402,8754 Z M 10382,7853 L 10382,8734 9701,8734 9701,8186 10277,7853 10382,7853 Z"/>
<path fill="rgb(206,206,206)" stroke="none" d="M 10382,8734 L 10382,7853 10277,7853 10507,7720 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,8734 10382,8734 Z M 10363,7872 L 10363,8715 9701,8715 9701,8186 10244,7872 10363,7872 Z"/>
<path fill="rgb(207,207,207)" stroke="none" d="M 10363,8715 L 10363,7872 10244,7872 10507,7720 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,8715 10363,8715 Z M 10344,7891 L 10344,8696 9701,8696 9701,8186 10211,7891 10344,7891 Z"/>
<path fill="rgb(208,208,208)" stroke="none" d="M 10344,8696 L 10344,7891 10211,7891 10507,7720 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,8696 10344,8696 Z M 10325,7910 L 10325,8677 9701,8677 9701,8186 10178,7910 10325,7910 Z"/>
<path fill="rgb(209,209,209)" stroke="none" d="M 10325,8677 L 10325,7910 10178,7910 10507,7720 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,8677 10325,8677 Z M 10306,7929 L 10306,8658 9701,8658 9701,8186 10146,7929 10306,7929 Z"/>
<path fill="rgb(210,210,210)" stroke="none" d="M 10306,8658 L 10306,7929 10146,7929 10507,7720 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,8658 10306,8658 Z M 10286,7949 L 10286,8638 9701,8638 9701,8186 10111,7949 10286,7949 Z"/>
<path fill="rgb(211,211,211)" stroke="none" d="M 10286,8638 L 10286,7949 10111,7949 10507,7720 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,8638 10286,8638 Z M 10267,7968 L 10267,8619 9701,8619 9701,8186 10078,7968 10267,7968 Z"/>
<path fill="rgb(212,212,212)" stroke="none" d="M 10267,8619 L 10267,7968 10078,7968 10507,7720 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,8619 10267,8619 Z M 10248,7987 L 10248,8600 9701,8600 9701,8186 10045,7987 10248,7987 Z"/>
<path fill="rgb(213,213,213)" stroke="none" d="M 10248,8600 L 10248,7987 10045,7987 10507,7720 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,8600 10248,8600 Z M 10229,8006 L 10229,8581 9701,8581 9701,8186 10012,8006 10229,8006 Z"/>
<path fill="rgb(214,214,214)" stroke="none" d="M 10229,8581 L 10229,8006 10012,8006 10507,7720 10507,9481 10239,9636 10239,9377 10059,9481 10059,9222 9880,9326 9880,9067 9701,9170 9701,8581 10229,8581 Z M 10210,8025 L 10210,8562 9701,8562 9701,8186 9979,8025 10210,8025 Z"/>