File: bench-c5-18xlarge-2021-01-30-rss-b.svg

package info (click to toggle)
solvespace 3.1%2Bds1-3.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 15,964 kB
  • sloc: cpp: 122,491; ansic: 11,375; javascript: 1,919; sh: 89; xml: 44; makefile: 25
file content (1131 lines) | stat: -rw-r--r-- 87,699 bytes parent folder | download | duplicates (4)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
<?xml version='1.0' encoding='UTF-8'?>
<!-- This file was generated by dvisvgm 2.9.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='381.627pt' height='254.34pt' viewBox='106.732 54.992 381.627 254.34'>
<rect width="1000%" height="1000%" fill="white"/>
<defs>
<clipPath id='clip2'>
<path d='M135.949 246.637H487.961V78.871H135.949Z'/>
</clipPath>
<path id='g1-82' d='M3.891-2.914C4.806-3.165 5.452-3.811 5.452-4.546C5.452-5.469 4.411-6.223 3.129-6.223H.87V0H1.704V-2.824H3.138L4.842 0H5.703L3.891-2.914ZM1.704-3.407V-5.694H3.022C4.062-5.694 4.671-5.192 4.671-4.546C4.671-3.963 4.125-3.407 3.022-3.407H1.704Z'/>
<path id='g1-97' d='M3.694-2.591C3.694-3.479 3.04-4.133 2.152-4.133C1.569-4.133 1.139-3.981 .708-3.739L.762-3.102C1.21-3.434 1.65-3.569 2.143-3.569C2.645-3.569 2.95-3.165 2.95-2.582V-2.206C1.408-2.17 .395-1.766 .395-1.04C.395-.619 .672 .099 1.453 .099C1.632 .099 2.412 .081 2.977-.341V0H3.694V-2.591ZM2.95-1.255C2.95-1.067 2.95-.843 2.627-.655C2.403-.52 2.107-.484 1.928-.484C1.47-.484 1.085-.699 1.085-1.058C1.085-1.695 2.833-1.722 2.95-1.722V-1.255Z'/>
<path id='g1-101' d='M3.829-1.964C3.829-2.242 3.82-2.923 3.47-3.461C3.093-4.026 2.52-4.133 2.179-4.133C1.139-4.133 .314-3.174 .314-2.026C.314-.843 1.193 .099 2.313 .099C2.744 .099 3.264-.009 3.784-.341L3.73-.959C3.165-.556 2.636-.484 2.322-.484C1.578-.484 1.004-1.139 .977-1.964H3.829ZM1.031-2.493C1.175-3.067 1.614-3.551 2.179-3.551C2.511-3.551 3.12-3.398 3.291-2.493H1.031Z'/>
<path id='g1-105' d='M1.524-6.133H.664V-5.272H1.524V-6.133ZM1.453-3.981H.735V0H1.453V-3.981Z'/>
<path id='g1-108' d='M1.453-6.223H.735V0H1.453V-6.223Z'/>
<path id='g1-114' d='M1.462-1.91C1.462-2.851 2.197-3.425 3.013-3.434V-4.08C2.367-4.071 1.775-3.748 1.408-3.219V-4.035H.744V0H1.462V-1.91Z'/>
<path id='g1-115' d='M3.165-3.847C2.609-4.098 2.197-4.133 1.829-4.133C1.623-4.133 .305-4.133 .305-2.95C.305-2.52 .565-2.251 .664-2.152C1.004-1.856 1.237-1.811 1.847-1.695C2.134-1.641 2.645-1.542 2.645-1.085C2.645-.502 1.919-.502 1.802-.502C1.273-.502 .762-.681 .377-.95L.26-.296C.798-.009 1.345 .099 1.802 .099C2.385 .099 3.318-.09 3.318-1.157C3.318-1.47 3.192-1.784 2.878-2.053C2.573-2.313 2.304-2.367 1.748-2.475C1.426-2.537 .977-2.618 .977-3.04C.977-3.569 1.614-3.569 1.748-3.569C2.403-3.569 2.789-3.362 3.049-3.219L3.165-3.847Z'/>
<path id='g1-116' d='M1.623-3.425H2.914V-3.981H1.623V-5.12H.959V-3.981H.17V-3.425H.933V-1.13C.933-.601 1.049 .099 1.704 .099C2.098 .099 2.564 .018 3.067-.233L2.914-.798C2.681-.619 2.367-.511 2.089-.511C1.739-.511 1.623-.825 1.623-1.291V-3.425Z'/>
<path id='g1-118' d='M4.116-3.981H3.407L2.699-2.161C2.52-1.695 2.188-.825 2.143-.493H2.125C2.107-.646 2.08-.816 1.587-2.107C1.318-2.833 .879-3.927 .861-3.981H.126L1.704 0H2.537L4.116-3.981Z'/>
<use id='g3-40' xlink:href='#g0-40' transform='scale(1.143)'/>
<use id='g3-41' xlink:href='#g0-41' transform='scale(1.143)'/>
<use id='g3-45' xlink:href='#g0-45' transform='scale(1.143)'/>
<use id='g3-49' xlink:href='#g0-49' transform='scale(1.143)'/>
<use id='g3-54' xlink:href='#g0-54' transform='scale(1.143)'/>
<use id='g3-56' xlink:href='#g0-56' transform='scale(1.143)'/>
<use id='g3-58' xlink:href='#g0-58' transform='scale(1.143)'/>
<use id='g3-78' xlink:href='#g0-78' transform='scale(1.143)'/>
<use id='g3-97' xlink:href='#g0-97' transform='scale(1.143)'/>
<use id='g3-98' xlink:href='#g0-98' transform='scale(1.143)'/>
<use id='g3-99' xlink:href='#g0-99' transform='scale(1.143)'/>
<use id='g3-100' xlink:href='#g0-100' transform='scale(1.143)'/>
<use id='g3-101' xlink:href='#g0-101' transform='scale(1.143)'/>
<use id='g3-103' xlink:href='#g0-103' transform='scale(1.143)'/>
<use id='g3-104' xlink:href='#g0-104' transform='scale(1.143)'/>
<use id='g3-105' xlink:href='#g0-105' transform='scale(1.143)'/>
<use id='g3-106' xlink:href='#g0-106' transform='scale(1.143)'/>
<use id='g3-108' xlink:href='#g0-108' transform='scale(1.143)'/>
<use id='g3-109' xlink:href='#g0-109' transform='scale(1.143)'/>
<use id='g3-110' xlink:href='#g0-110' transform='scale(1.143)'/>
<use id='g3-111' xlink:href='#g0-111' transform='scale(1.143)'/>
<use id='g3-112' xlink:href='#g0-112' transform='scale(1.143)'/>
<use id='g3-114' xlink:href='#g0-114' transform='scale(1.143)'/>
<use id='g3-115' xlink:href='#g0-115' transform='scale(1.143)'/>
<use id='g3-116' xlink:href='#g0-116' transform='scale(1.143)'/>
<use id='g3-119' xlink:href='#g0-119' transform='scale(1.143)'/>
<use id='g3-120' xlink:href='#g0-120' transform='scale(1.143)'/>
<path id='g0-40' d='M2.127-5.23C2.008-5.23 1.995-5.23 1.911-5.154C1.032-4.387 .586-3.145 .586-1.743C.586-.425 .983 .844 1.904 1.653C1.995 1.743 2.008 1.743 2.127 1.743H2.462C2.441 1.73 1.764 1.151 1.444 .063C1.276-.481 1.193-1.053 1.193-1.743C1.193-4.156 2.322-5.112 2.462-5.23H2.127Z'/>
<path id='g0-41' d='M.746 1.743C.865 1.743 .879 1.743 .962 1.667C1.841 .9 2.287-.342 2.287-1.743C2.287-3.062 1.89-4.331 .969-5.14C.879-5.23 .865-5.23 .746-5.23H.411C.432-5.216 1.109-4.638 1.43-3.55C1.597-3.006 1.681-2.434 1.681-1.743C1.681 .669 .551 1.625 .411 1.743H.746Z'/>
<path id='g0-44' d='M1.339-.007V-.628H.711V0H.907L.704 .893H1.018L1.339-.007Z'/>
<path id='g0-45' d='M2.05-1.332V-1.771H.084V-1.332H2.05Z'/>
<path id='g0-46' d='M1.339-.628H.711V0H1.339V-.628Z'/>
<path id='g0-48' d='M3.403-2.267C3.403-2.601 3.403-3.417 3.075-3.989C2.72-4.617 2.183-4.721 1.848-4.721C1.534-4.721 .99-4.624 .642-4.024C.307-3.466 .293-2.706 .293-2.267C.293-1.75 .321-1.116 .614-.586C.921-.021 1.437 .146 1.848 .146C2.545 .146 2.929-.258 3.138-.697C3.382-1.193 3.403-1.834 3.403-2.267ZM1.848-.314C1.555-.314 1.22-.481 1.046-.983C.907-1.409 .9-1.848 .9-2.357C.9-2.999 .9-4.261 1.848-4.261S2.797-2.999 2.797-2.357C2.797-1.897 2.797-1.374 2.629-.928C2.434-.425 2.078-.314 1.848-.314Z'/>
<path id='g0-49' d='M2.239-4.721H2.085C1.632-4.303 1.06-4.275 .642-4.261V-3.822C.914-3.829 1.262-3.843 1.611-3.982V-.439H.683V0H3.166V-.439H2.239V-4.721Z'/>
<path id='g0-50' d='M1.974-.537C1.89-.537 1.806-.53 1.723-.53H.928L2.008-1.485C2.134-1.597 2.476-1.855 2.608-1.967C2.915-2.246 3.327-2.608 3.327-3.215C3.327-4.003 2.741-4.721 1.743-4.721C1.004-4.721 .544-4.324 .307-3.612L.635-3.201C.795-3.787 1.039-4.24 1.646-4.24C2.232-4.24 2.678-3.829 2.678-3.201C2.678-2.622 2.336-2.294 1.918-1.897C1.778-1.757 1.402-1.444 1.255-1.304C1.053-1.123 .572-.656 .37-.481V0H3.327V-.537H1.974Z'/>
<path id='g0-51' d='M.697-3.578C.983-4.135 1.485-4.289 1.82-4.289C2.232-4.289 2.538-4.052 2.538-3.654C2.538-3.285 2.287-2.831 1.757-2.741C1.723-2.734 1.695-2.734 1.234-2.699V-2.239H1.778C2.441-2.239 2.685-1.716 2.685-1.276C2.685-.732 2.35-.314 1.806-.314C1.311-.314 .746-.551 .398-.997L.307-.544C.711-.091 1.276 .146 1.82 .146C2.734 .146 3.389-.537 3.389-1.269C3.389-1.841 2.929-2.301 2.378-2.462C2.908-2.734 3.18-3.201 3.18-3.654C3.18-4.247 2.573-4.721 1.827-4.721C1.213-4.721 .704-4.4 .411-3.982L.697-3.578Z'/>
<path id='g0-52' d='M2.762-1.165H3.487V-1.625H2.762V-4.575H2.071L.209-1.625V-1.165H2.162V0H2.762V-1.165ZM.802-1.625C1.011-1.953 2.211-3.815 2.211-4.233V-1.625H.802Z'/>
<path id='g0-53' d='M1.144-4.094H3.075V-4.575H.586V-1.967H1.095C1.262-2.343 1.59-2.511 1.904-2.511C2.19-2.511 2.622-2.315 2.622-1.43C2.622-.516 2.043-.314 1.688-.314C1.227-.314 .781-.558 .544-.955L.279-.537C.621-.112 1.137 .146 1.688 .146C2.608 .146 3.327-.565 3.327-1.416C3.327-2.28 2.685-2.971 1.918-2.971C1.618-2.971 1.353-2.866 1.144-2.692V-4.094Z'/>
<path id='g0-54' d='M3.062-4.582C2.685-4.721 2.42-4.721 2.287-4.721C1.227-4.721 .307-3.724 .307-2.253C.307-.363 1.158 .146 1.862 .146C2.427 .146 2.72-.119 2.936-.342C3.382-.816 3.389-1.311 3.389-1.555C3.389-2.469 2.894-3.229 2.218-3.229C1.534-3.229 1.165-2.873 .962-2.671C1.053-3.626 1.541-4.289 2.294-4.289C2.434-4.289 2.713-4.275 3.062-4.142V-4.582ZM.969-1.534C.969-1.576 .969-1.681 .976-1.716C.976-2.19 1.276-2.769 1.897-2.769C2.748-2.769 2.748-1.792 2.748-1.555C2.748-1.29 2.748-.997 2.559-.704C2.392-.453 2.183-.314 1.862-.314C1.123-.314 1.004-1.227 .969-1.534Z'/>
<path id='g0-55' d='M1.723-4.038C1.806-4.038 1.89-4.045 1.974-4.045H2.852C1.792-3.006 1.116-1.548 1.116 .07H1.771C1.771-1.967 2.762-3.431 3.389-4.087V-4.575H.307V-4.038H1.723Z'/>
<path id='g0-56' d='M2.385-2.469C2.845-2.615 3.285-2.985 3.285-3.501C3.285-4.135 2.678-4.721 1.848-4.721S.411-4.135 .411-3.501C.411-2.978 .865-2.608 1.311-2.469C.697-2.28 .307-1.806 .307-1.269C.307-.523 .969 .146 1.848 .146S3.389-.523 3.389-1.269C3.389-1.806 2.992-2.28 2.385-2.469ZM1.848-2.699C1.353-2.699 .948-2.985 .948-3.494C.948-3.94 1.262-4.289 1.848-4.289C2.427-4.289 2.748-3.94 2.748-3.494C2.748-2.999 2.357-2.699 1.848-2.699ZM1.848-.314C1.367-.314 .941-.621 .941-1.276C.941-1.904 1.346-2.239 1.848-2.239S2.755-1.897 2.755-1.276C2.755-.621 2.322-.314 1.848-.314Z'/>
<path id='g0-57' d='M.537-.174C.879 .077 1.193 .146 1.52 .146C2.497 .146 3.389-.837 3.389-2.336C3.389-4.24 2.545-4.721 1.876-4.721C1.255-4.721 .969-4.428 .767-4.226C.321-3.773 .307-3.292 .307-3.02C.307-2.12 .795-1.346 1.478-1.346C2.267-1.346 2.699-1.869 2.734-1.911C2.636-.802 2.092-.314 1.52-.314C1.158-.314 .934-.446 .774-.579L.537-.174ZM2.713-3.027C2.72-2.985 2.72-2.915 2.72-2.873C2.72-2.357 2.406-1.806 1.799-1.806C1.534-1.806 1.325-1.883 1.144-2.169C.962-2.441 .948-2.706 .948-3.02C.948-3.292 .948-3.605 1.165-3.912C1.311-4.122 1.52-4.289 1.869-4.289C2.545-4.289 2.692-3.473 2.713-3.027Z'/>
<path id='g0-58' d='M1.339-3.096H.711V-2.469H1.339V-3.096ZM.711-.628V0H1.339V-.628H.711Z'/>
<path id='g0-64' d='M4.142-.614C4.038-.614 4.024-.614 3.968-.586C3.626-.467 3.271-.391 2.901-.391C1.778-.391 .976-1.339 .976-2.42C.976-3.592 1.883-4.449 2.859-4.449C3.055-4.449 3.515-4.4 3.745-3.843C3.55-3.954 3.333-4.003 3.152-4.003C2.406-4.003 1.778-3.306 1.778-2.42C1.778-1.513 2.427-.837 3.145-.837C3.689-.837 4.519-1.276 4.519-2.518C4.519-3.222 4.47-4.91 2.866-4.91C1.541-4.91 .411-3.815 .411-2.42C.411-1.039 1.527 .07 2.873 .07C3.515 .07 4.115-.195 4.519-.614H4.142ZM3.152-1.297C2.72-1.297 2.343-1.778 2.343-2.42C2.343-3.082 2.734-3.543 3.145-3.543C3.578-3.543 3.954-3.062 3.954-2.42C3.954-1.757 3.564-1.297 3.152-1.297Z'/>
<path id='g0-67' d='M4.317-.851C3.829-.551 3.605-.418 2.908-.418C1.827-.418 1.172-1.43 1.172-2.434C1.172-3.466 1.89-4.435 2.908-4.435C3.368-4.435 3.843-4.289 4.163-4.045L4.275-4.679C3.787-4.861 3.396-4.917 2.887-4.917C1.506-4.917 .474-3.773 .474-2.427C.474-.99 1.569 .07 2.929 .07C3.612 .07 3.898-.07 4.359-.321L4.317-.851Z'/>
<path id='g0-71' d='M4.442-2.085H2.88V-1.625H3.829V-.558C3.522-.481 3.222-.418 2.908-.418C1.834-.418 1.172-1.43 1.172-2.427C1.172-3.382 1.82-4.435 2.873-4.435C3.515-4.435 3.919-4.24 4.268-3.947L4.38-4.582C3.898-4.812 3.473-4.924 2.943-4.924C1.534-4.924 .474-3.822 .474-2.427C.474-1.067 1.527 .07 2.901 .07C3.403 .07 3.996-.042 4.442-.272V-2.085Z'/>
<path id='g0-73' d='M1.381-4.84H.676V0H1.381V-4.84Z'/>
<path id='g0-78' d='M1.646-4.84H.697V0H1.283V-4.289H1.29L3.578 0H4.526V-4.84H3.94V-.551H3.933L1.646-4.84Z'/>
<path id='g0-85' d='M4.4-4.84H3.794V-1.625C3.794-.69 3.166-.265 2.566-.265S1.381-.697 1.381-1.618V-4.84H.676V-1.632C.676-.607 1.555 .146 2.559 .146C3.557 .146 4.4-.614 4.4-1.632V-4.84Z'/>
<path id='g0-88' d='M2.755-2.552L4.519-4.84H3.759L2.413-3.055L1.039-4.84H.209L2.071-2.552L.105 0H.865L2.413-2.099L3.996 0H4.826L2.755-2.552Z'/>
<path id='g0-97' d='M2.971-2.008C2.971-2.72 2.427-3.201 1.736-3.201C1.297-3.201 .962-3.11 .572-2.901L.614-2.392C.844-2.545 1.186-2.755 1.736-2.755C2.043-2.755 2.364-2.525 2.364-2.001V-1.723C1.332-1.688 .314-1.471 .314-.823C.314-.474 .551 .07 1.165 .07C1.465 .07 2.015 .007 2.385-.265V0H2.971V-2.008ZM2.364-.99C2.364-.851 2.364-.669 2.12-.523C1.897-.398 1.625-.391 1.548-.391C1.165-.391 .872-.565 .872-.83C.872-1.276 2.05-1.318 2.364-1.332V-.99Z'/>
<path id='g0-98' d='M1.179-4.84H.593V0H1.2V-.328C1.353-.195 1.688 .07 2.197 .07C2.957 .07 3.571-.642 3.571-1.555C3.571-2.399 3.089-3.166 2.392-3.166C1.953-3.166 1.527-3.027 1.179-2.769V-4.84ZM1.2-2.197C1.2-2.308 1.2-2.392 1.444-2.552C1.548-2.615 1.736-2.706 1.974-2.706C2.441-2.706 2.964-2.392 2.964-1.555C2.964-.704 2.385-.391 1.897-.391C1.639-.391 1.395-.509 1.2-.823V-2.197Z'/>
<path id='g0-99' d='M3.034-.76C2.685-.537 2.308-.411 1.876-.411C1.234-.411 .858-.928 .858-1.555C.858-2.092 1.137-2.72 1.897-2.72C2.371-2.72 2.594-2.622 2.95-2.399L3.041-2.901C2.622-3.11 2.441-3.201 1.897-3.201C.851-3.201 .251-2.357 .251-1.548C.251-.697 .921 .07 1.869 .07C2.357 .07 2.776-.077 3.075-.251L3.034-.76Z'/>
<path id='g0-100' d='M3.229-4.84H2.643V-2.797C2.197-3.124 1.743-3.166 1.541-3.166C.809-3.166 .251-2.434 .251-1.548S.802 .07 1.52 .07C1.953 .07 2.357-.126 2.622-.363V0H3.229V-4.84ZM2.622-.865C2.448-.579 2.183-.391 1.848-.391C1.36-.391 .858-.732 .858-1.541C.858-2.413 1.451-2.706 1.925-2.706C2.204-2.706 2.441-2.587 2.622-2.35V-.865Z'/>
<path id='g0-101' d='M2.999-.76C2.608-.481 2.169-.391 1.869-.391C1.262-.391 .802-.886 .781-1.527H3.068C3.068-1.848 3.034-2.315 2.762-2.713C2.511-3.068 2.092-3.201 1.75-3.201C.9-3.201 .244-2.455 .244-1.569C.244-.676 .941 .07 1.862 .07C2.267 .07 2.685-.049 3.041-.265L2.999-.76ZM.83-1.946C.99-2.504 1.402-2.741 1.75-2.741C2.057-2.741 2.511-2.594 2.643-1.946H.83Z'/>
<path id='g0-103' d='M3.508-3.166C3.354-3.166 2.887-3.159 2.357-2.957L2.343-2.95C2.092-3.117 1.848-3.166 1.646-3.166C.962-3.166 .453-2.629 .453-2.029C.453-1.785 .537-1.534 .697-1.339C.6-1.22 .495-1.025 .495-.76C.495-.488 .607-.314 .669-.23C.286-.007 .209 .314 .209 .481C.209 1.011 .941 1.43 1.848 1.43C2.762 1.43 3.487 1.011 3.487 .481C3.487-.502 2.267-.502 1.967-.502H1.318C1.206-.502 .907-.502 .907-.865C.907-1.004 .955-1.074 .962-1.088C1.206-.934 1.451-.886 1.639-.886C2.322-.886 2.831-1.423 2.831-2.022C2.831-2.246 2.769-2.448 2.643-2.636C2.615-2.678 2.615-2.685 2.615-2.692C2.615-2.72 3.034-2.72 3.068-2.72C3.075-2.72 3.34-2.72 3.592-2.692L3.508-3.166ZM1.646-1.318C1.269-1.318 .99-1.555 .99-2.022C.99-2.566 1.339-2.734 1.639-2.734C2.015-2.734 2.294-2.497 2.294-2.029C2.294-1.485 1.946-1.318 1.646-1.318ZM1.974 .042C2.134 .042 2.957 .042 2.957 .488C2.957 .788 2.434 .997 1.848 .997S.739 .788 .739 .488C.739 .453 .739 .042 1.304 .042H1.974Z'/>
<path id='g0-104' d='M3.243-2.064C3.243-2.608 3.082-3.166 2.225-3.166C1.625-3.166 1.304-2.817 1.165-2.671V-4.84H.579V0H1.186V-1.695C1.186-2.155 1.381-2.706 1.918-2.706C2.636-2.706 2.636-2.218 2.636-2.015V0H3.243V-2.064Z'/>
<path id='g0-105' d='M1.227-4.784H.523V-4.08H1.227V-4.784ZM1.172-3.096H.586V0H1.172V-3.096Z'/>
<path id='g0-106' d='M1.381-4.784H.676V-4.08H1.381V-4.784ZM-.453 1.186C-.133 1.36 .181 1.423 .446 1.423C.928 1.423 1.381 1.053 1.381 .411V-3.096H.795V.46C.795 .586 .795 .697 .649 .816C.488 .934 .293 .934 .23 .934C-.063 .934-.244 .802-.328 .725L-.453 1.186Z'/>
<path id='g0-108' d='M1.172-4.84H.586V0H1.172V-4.84Z'/>
<path id='g0-109' d='M5.3-2.064C5.3-2.608 5.14-3.166 4.282-3.166C3.696-3.166 3.333-2.824 3.166-2.601C3.096-2.79 2.922-3.166 2.225-3.166C1.827-3.166 1.444-3.006 1.137-2.636V-3.145H.579V0H1.186V-1.695C1.186-2.155 1.381-2.706 1.918-2.706C2.636-2.706 2.636-2.218 2.636-2.015V0H3.243V-1.695C3.243-2.155 3.438-2.706 3.975-2.706C4.693-2.706 4.693-2.218 4.693-2.015V0H5.3V-2.064Z'/>
<path id='g0-110' d='M3.243-2.064C3.243-2.608 3.082-3.166 2.225-3.166C1.827-3.166 1.444-3.006 1.137-2.636V-3.145H.579V0H1.186V-1.695C1.186-2.155 1.381-2.706 1.918-2.706C2.636-2.706 2.636-2.218 2.636-2.015V0H3.243V-2.064Z'/>
<path id='g0-111' d='M3.487-1.527C3.487-2.448 2.755-3.201 1.848-3.201S.209-2.441 .209-1.527C.209-.642 .948 .07 1.848 .07C2.755 .07 3.487-.642 3.487-1.527ZM1.848-.411C1.297-.411 .816-.816 .816-1.604S1.332-2.741 1.848-2.741C2.371-2.741 2.88-2.378 2.88-1.604C2.88-.809 2.385-.411 1.848-.411Z'/>
<path id='g0-112' d='M1.2-.328C1.569 .007 1.967 .07 2.204 .07C2.943 .07 3.571-.635 3.571-1.555C3.571-2.392 3.11-3.166 2.42-3.166C2.106-3.166 1.583-3.075 1.179-2.762V-3.096H.593V1.353H1.2V-.328ZM1.2-2.315C1.36-2.511 1.632-2.685 1.967-2.685C2.525-2.685 2.964-2.169 2.964-1.555C2.964-.865 2.441-.391 1.897-.391C1.792-.391 1.618-.404 1.437-.551C1.227-.711 1.2-.816 1.2-.948V-2.315Z'/>
<path id='g0-114' d='M1.179-1.485C1.179-2.239 1.806-2.643 2.42-2.65V-3.166C1.834-3.159 1.409-2.873 1.13-2.504V-3.145H.593V0H1.179V-1.485Z'/>
<path id='g0-115' d='M2.545-2.985C2.071-3.18 1.723-3.201 1.471-3.201C1.297-3.201 .244-3.201 .244-2.273C.244-1.946 .425-1.764 .516-1.681C.76-1.437 1.053-1.381 1.423-1.311C1.75-1.248 2.127-1.179 2.127-.844C2.127-.404 1.548-.404 1.451-.404C1.004-.404 .586-.565 .307-.76L.209-.237C.446-.119 .872 .07 1.451 .07C1.764 .07 2.071 .021 2.329-.167C2.587-.363 2.671-.669 2.671-.907C2.671-1.032 2.657-1.304 2.364-1.569C2.106-1.799 1.855-1.848 1.52-1.911C1.109-1.988 .788-2.05 .788-2.357C.788-2.755 1.297-2.755 1.402-2.755C1.799-2.755 2.106-2.671 2.455-2.49L2.545-2.985Z'/>
<path id='g0-116' d='M1.311-2.657H2.343V-3.096H1.311V-3.982H.774V-3.096H.139V-2.657H.753V-.893C.753-.425 .872 .07 1.374 .07S2.26-.091 2.469-.188L2.35-.635C2.12-.467 1.876-.411 1.681-.411C1.388-.411 1.311-.697 1.311-1.018V-2.657Z'/>
<path id='g0-117' d='M3.243-3.096H2.636V-1.074C2.636-.516 2.162-.342 1.757-.342C1.241-.342 1.186-.481 1.186-.802V-3.096H.579V-.76C.579-.139 .851 .07 1.339 .07C1.625 .07 2.239 .014 2.657-.321V0H3.243V-3.096Z'/>
<path id='g0-119' d='M4.951-3.096H4.407C4.345-2.901 3.954-1.723 3.738-.997C3.682-.795 3.612-.572 3.592-.411H3.585C3.543-.697 3.299-1.451 3.285-1.499L2.769-3.096H2.239C2.036-2.497 1.513-.934 1.458-.425H1.451C1.395-.921 .879-2.462 .767-2.797C.711-2.964 .711-2.978 .676-3.096H.105L1.123 0H1.709C1.716-.028 1.904-.579 2.148-1.353C2.253-1.695 2.462-2.364 2.497-2.671L2.504-2.678C2.518-2.532 2.559-2.378 2.608-2.204S2.706-1.841 2.755-1.681L3.292 0H3.933L4.951-3.096Z'/>
<path id='g0-120' d='M1.932-1.597L3.285-3.096H2.671L1.681-1.953L.669-3.096H.042L1.437-1.597L0 0H.621L1.681-1.311L2.783 0H3.41L1.932-1.597Z'/>
<path id='g0-122' d='M2.957-2.803V-3.096H.307V-2.65H1.332C1.416-2.65 1.499-2.657 1.583-2.657H2.127L.209-.307V0H2.978V-.467H1.897C1.813-.467 1.73-.46 1.646-.46H1.039L2.957-2.803Z'/>
<path id='g4-1' d='M1.445-1.245C1.445-1.41 1.305-1.549 1.141-1.549S.837-1.41 .837-1.245S.976-.941 1.141-.941S1.445-1.081 1.445-1.245Z'/>
<path id='g4-2' d='M4.13-2.481C4.184-2.535 4.204-2.57 4.204-2.615C4.204-2.69 4.139-2.755 4.065-2.755C4.01-2.755 3.985-2.73 3.93-2.675L2.7-1.445L1.465-2.68C1.41-2.735 1.375-2.755 1.33-2.755C1.255-2.755 1.191-2.69 1.191-2.615C1.191-2.56 1.215-2.535 1.27-2.481L2.501-1.245L1.27-.01C1.215 .045 1.191 .07 1.191 .125C1.191 .199 1.255 .264 1.33 .264C1.385 .264 1.41 .239 1.46 .189L2.695-1.046L3.97 .229C3.995 .249 4.03 .264 4.065 .264C4.139 .264 4.204 .199 4.204 .125C4.204 .095 4.194 .075 4.184 .05C4.164 .02 3.238-.892 2.894-1.245L4.13-2.481Z'/>
<use id='g2-41' xlink:href='#g0-41' transform='scale(.714)'/>
<use id='g2-44' xlink:href='#g0-44' transform='scale(.714)'/>
<use id='g2-45' xlink:href='#g0-45' transform='scale(.714)'/>
<use id='g2-46' xlink:href='#g0-46' transform='scale(.714)'/>
<use id='g2-48' xlink:href='#g0-48' transform='scale(.714)'/>
<use id='g2-49' xlink:href='#g0-49' transform='scale(.714)'/>
<use id='g2-50' xlink:href='#g0-50' transform='scale(.714)'/>
<use id='g2-51' xlink:href='#g0-51' transform='scale(.714)'/>
<use id='g2-52' xlink:href='#g0-52' transform='scale(.714)'/>
<use id='g2-53' xlink:href='#g0-53' transform='scale(.714)'/>
<use id='g2-54' xlink:href='#g0-54' transform='scale(.714)'/>
<use id='g2-55' xlink:href='#g0-55' transform='scale(.714)'/>
<use id='g2-56' xlink:href='#g0-56' transform='scale(.714)'/>
<use id='g2-57' xlink:href='#g0-57' transform='scale(.714)'/>
<use id='g2-64' xlink:href='#g0-64' transform='scale(.714)'/>
<use id='g2-67' xlink:href='#g0-67' transform='scale(.714)'/>
<use id='g2-71' xlink:href='#g0-71' transform='scale(.714)'/>
<use id='g2-73' xlink:href='#g0-73' transform='scale(.714)'/>
<use id='g2-85' xlink:href='#g0-85' transform='scale(.714)'/>
<use id='g2-88' xlink:href='#g0-88' transform='scale(.714)'/>
<use id='g2-97' xlink:href='#g0-97' transform='scale(.714)'/>
<use id='g2-98' xlink:href='#g0-98' transform='scale(.714)'/>
<use id='g2-99' xlink:href='#g0-99' transform='scale(.714)'/>
<use id='g2-100' xlink:href='#g0-100' transform='scale(.714)'/>
<use id='g2-101' xlink:href='#g0-101' transform='scale(.714)'/>
<use id='g2-103' xlink:href='#g0-103' transform='scale(.714)'/>
<use id='g2-104' xlink:href='#g0-104' transform='scale(.714)'/>
<use id='g2-105' xlink:href='#g0-105' transform='scale(.714)'/>
<use id='g2-108' xlink:href='#g0-108' transform='scale(.714)'/>
<use id='g2-109' xlink:href='#g0-109' transform='scale(.714)'/>
<use id='g2-110' xlink:href='#g0-110' transform='scale(.714)'/>
<use id='g2-111' xlink:href='#g0-111' transform='scale(.714)'/>
<use id='g2-114' xlink:href='#g0-114' transform='scale(.714)'/>
<use id='g2-115' xlink:href='#g0-115' transform='scale(.714)'/>
<use id='g2-116' xlink:href='#g0-116' transform='scale(.714)'/>
<use id='g2-117' xlink:href='#g0-117' transform='scale(.714)'/>
<use id='g2-120' xlink:href='#g0-120' transform='scale(.714)'/>
<use id='g2-122' xlink:href='#g0-122' transform='scale(.714)'/>
</defs>
<g id='page2'>
<path d='M194.617 255.492V246.637M253.285 255.492V246.637M311.953 255.492V246.637M370.625 255.492V246.637M429.293 255.492V246.637M194.617 70.016V78.871M253.285 70.016V78.871M311.953 70.016V78.871M370.625 70.016V78.871M429.293 70.016V78.871' stroke='#808080' fill='none' stroke-width='.199' stroke-miterlimit='10'/>
<path d='M165.281 250.887V246.637M223.953 250.887V246.637M282.621 250.887V246.637M341.289 250.887V246.637M399.957 250.887V246.637M458.629 250.887V246.637M165.281 74.617V78.871M223.953 74.617V78.871M282.621 74.617V78.871M341.289 74.617V78.871M399.957 74.617V78.871M458.629 74.617V78.871' stroke='#808080' fill='none' stroke-width='.199' stroke-miterlimit='10'/>
<path d='M135.949 246.637H140.199M135.949 213.082H140.199M135.949 179.531H140.199M135.949 145.976H140.199M135.949 112.426H140.199M135.949 78.871H140.199M487.961 246.637H483.711M487.961 213.082H483.711M487.961 179.531H483.711M487.961 145.976H483.711M487.961 112.426H483.711M487.961 78.871H483.711' stroke='#808080' fill='none' stroke-width='.199' stroke-miterlimit='10'/>
<path d='M135.949 246.637V78.871H487.961V246.637H135.949Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
<g transform='matrix(1 0 0 1 -21.265 74.992)'>
<use x='168.285' y='186.041' xlink:href='#g3-97'/>
<use x='172.353' y='186.041' xlink:href='#g3-108'/>
<use x='174.373' y='186.041' xlink:href='#g3-108'/>
<use x='176.393' y='186.041' xlink:href='#g3-111'/>
<use x='180.863' y='186.041' xlink:href='#g3-99'/>
<use x='184.627' y='186.041' xlink:href='#g3-45'/>
<use x='187.449' y='186.041' xlink:href='#g3-116'/>
<use x='190.507' y='186.041' xlink:href='#g3-101'/>
<use x='194.271' y='186.041' xlink:href='#g3-115'/>
<use x='197.517' y='186.041' xlink:href='#g3-116'/>
<use x='200.575' y='186.041' xlink:href='#g3-49'/>
</g>
<g transform='matrix(1 0 0 1 36.532 74.992)'>
<use x='168.285' y='186.041' xlink:href='#g3-97'/>
<use x='172.353' y='186.041' xlink:href='#g3-108'/>
<use x='174.373' y='186.041' xlink:href='#g3-108'/>
<use x='176.393' y='186.041' xlink:href='#g3-111'/>
<use x='180.863' y='186.041' xlink:href='#g3-99'/>
<use x='184.627' y='186.041' xlink:href='#g3-45'/>
<use x='187.449' y='186.041' xlink:href='#g3-116'/>
<use x='190.507' y='186.041' xlink:href='#g3-101'/>
<use x='194.271' y='186.041' xlink:href='#g3-115'/>
<use x='197.517' y='186.041' xlink:href='#g3-116'/>
<use x='200.575' y='186.041' xlink:href='#g3-78'/>
</g>
<g transform='matrix(1 0 0 1 94.98 74.992)'>
<use x='168.285' y='186.041' xlink:href='#g3-115'/>
<use x='171.531' y='186.041' xlink:href='#g3-104'/>
<use x='175.904' y='186.041' xlink:href='#g3-54'/>
<use x='180.138' y='186.041' xlink:href='#g3-98'/>
<use x='184.746' y='186.041' xlink:href='#g3-101'/>
<use x='188.509' y='186.041' xlink:href='#g3-110'/>
<use x='192.882' y='186.041' xlink:href='#g3-99'/>
<use x='196.646' y='186.041' xlink:href='#g3-104'/>
<use x='201.018' y='186.041' xlink:href='#g3-78'/>
</g>
<g transform='matrix(1 0 0 1 153.649 74.992)'>
<use x='168.285' y='186.041' xlink:href='#g3-115'/>
<use x='171.531' y='186.041' xlink:href='#g3-104'/>
<use x='175.904' y='186.041' xlink:href='#g3-56'/>
<use x='180.138' y='186.041' xlink:href='#g3-98'/>
<use x='184.746' y='186.041' xlink:href='#g3-101'/>
<use x='188.509' y='186.041' xlink:href='#g3-110'/>
<use x='192.882' y='186.041' xlink:href='#g3-99'/>
<use x='196.646' y='186.041' xlink:href='#g3-104'/>
<use x='201.018' y='186.041' xlink:href='#g3-78'/>
</g>
<g transform='matrix(1 0 0 1 207.225 74.992)'>
<use x='168.285' y='186.041' xlink:href='#g3-120'/>
<use x='172.187' y='186.041' xlink:href='#g3-109'/>
<use x='178.912' y='186.041' xlink:href='#g3-97'/>
<use x='182.98' y='186.041' xlink:href='#g3-108'/>
<use x='185' y='186.041' xlink:href='#g3-108'/>
<use x='187.02' y='186.041' xlink:href='#g3-111'/>
<use x='191.49' y='186.041' xlink:href='#g3-99'/>
<use x='195.254' y='186.041' xlink:href='#g3-45'/>
<use x='198.076' y='186.041' xlink:href='#g3-116'/>
<use x='201.134' y='186.041' xlink:href='#g3-101'/>
<use x='204.898' y='186.041' xlink:href='#g3-115'/>
<use x='208.144' y='186.041' xlink:href='#g3-116'/>
<use x='211.202' y='186.041' xlink:href='#g3-78'/>
</g>
<g transform='matrix(1 0 0 1 263.494 74.992)'>
<use x='168.285' y='186.041' xlink:href='#g3-99'/>
<use x='172.049' y='186.041' xlink:href='#g3-97'/>
<use x='176.117' y='186.041' xlink:href='#g3-99'/>
<use x='179.88' y='186.041' xlink:href='#g3-104'/>
<use x='184.253' y='186.041' xlink:href='#g3-101'/>
<use x='188.017' y='186.041' xlink:href='#g3-45'/>
<use x='190.839' y='186.041' xlink:href='#g3-115'/>
<use x='194.086' y='186.041' xlink:href='#g3-99'/>
<use x='197.849' y='186.041' xlink:href='#g3-114'/>
<use x='200.741' y='186.041' xlink:href='#g3-97'/>
<use x='204.81' y='186.041' xlink:href='#g3-116'/>
<use x='207.868' y='186.041' xlink:href='#g3-99'/>
<use x='211.631' y='186.041' xlink:href='#g3-104'/>
<use x='216.004' y='186.041' xlink:href='#g3-78'/>
</g>
<g transform='matrix(1 0 0 1 -40.942 62.23)'>
<use x='168.285' y='186.041' xlink:href='#g2-48'/>
<use x='170.931' y='186.041' xlink:href='#g2-120'/>
</g>
<g transform='matrix(1 0 0 1 -45.059 28.677)'>
<use x='168.285' y='186.041' xlink:href='#g2-48'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-53'/>
<use x='175.048' y='186.041' xlink:href='#g2-120'/>
</g>
<g transform='matrix(1 0 0 1 -45.059 -4.876)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-48'/>
<use x='175.048' y='186.041' xlink:href='#g2-120'/>
</g>
<g transform='matrix(1 0 0 1 -45.059 -38.43)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-53'/>
<use x='175.048' y='186.041' xlink:href='#g2-120'/>
</g>
<g transform='matrix(1 0 0 1 -45.059 -71.983)'>
<use x='168.285' y='186.041' xlink:href='#g2-50'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-48'/>
<use x='175.048' y='186.041' xlink:href='#g2-120'/>
</g>
<g transform='matrix(1 0 0 1 -45.059 -105.536)'>
<use x='168.285' y='186.041' xlink:href='#g2-50'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-53'/>
<use x='175.048' y='186.041' xlink:href='#g2-120'/>
</g>
<path d='M135.949 179.531H487.961' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M140.125 246.637H143.363V179.531H140.125ZM198.797 246.637H202.035V179.531H198.797ZM257.465 246.637H260.703V179.531H257.465ZM316.133 246.637H319.371V179.531H316.133ZM374.801 246.637H378.039V179.531H374.801ZM433.473 246.637H436.711V179.531H433.473Z' fill='#fff' clip-path='url(#clip2)'/>
<path d='M140.125 246.637H143.363V179.531H140.125ZM198.797 246.637H202.035V179.531H198.797ZM257.465 246.637H260.703V179.531H257.465ZM316.133 246.637H319.371V179.531H316.133ZM374.801 246.637H378.039V179.531H374.801ZM433.473 246.637H436.711V179.531H433.473Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M141.746 179.531' fill='#fff' clip-path='url(#clip2)'/>
<path d='M139.754 179.531H143.738' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M141.746 179.531' fill='#fff' clip-path='url(#clip2)'/>
<path d='M139.754 179.531H143.738' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M200.414 179.531' fill='#fff' clip-path='url(#clip2)'/>
<path d='M198.422 179.531H202.406' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M200.414 179.531' fill='#fff' clip-path='url(#clip2)'/>
<path d='M198.422 179.531H202.406' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M259.082 179.531' fill='#fff' clip-path='url(#clip2)'/>
<path d='M257.09 179.531H261.078' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M259.082 179.531' fill='#fff' clip-path='url(#clip2)'/>
<path d='M257.09 179.531H261.078' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M317.754 179.531' fill='#fff' clip-path='url(#clip2)'/>
<path d='M315.762 179.531H319.746' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M317.754 179.531' fill='#fff' clip-path='url(#clip2)'/>
<path d='M315.762 179.531H319.746' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M376.422 179.531' fill='#fff' clip-path='url(#clip2)'/>
<path d='M374.43 179.531H378.414' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M376.422 179.531' fill='#fff' clip-path='url(#clip2)'/>
<path d='M374.43 179.531H378.414' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M435.09 179.531' fill='#fff' clip-path='url(#clip2)'/>
<path d='M433.098 179.531H437.082' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M435.09 179.531' fill='#fff' clip-path='url(#clip2)'/>
<path d='M433.098 179.531H437.082' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M145.356 246.637H148.594V180.066H145.356ZM204.028 246.637H207.266V179.195H204.028ZM262.695 246.637H265.934V181.008H262.695ZM321.363 246.637H324.602V179.934H321.363ZM380.031 246.637H383.27V175.637H380.031ZM438.703 246.637H441.942V179.664H438.703Z' fill='#f0e0f0' clip-path='url(#clip2)'/>
<path d='M145.356 246.637H148.594V180.066H145.356ZM204.028 246.637H207.266V179.195H204.028ZM262.695 246.637H265.934V181.008H262.695ZM321.363 246.637H324.602V179.934H321.363ZM380.031 246.637H383.27V175.637H380.031ZM438.703 246.637H441.942V179.664H438.703Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M146.977 180.066' fill='#f0e0f0' clip-path='url(#clip2)'/>
<path d='M144.984 180.067H148.968' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M146.977 180.066' fill='#f0e0f0' clip-path='url(#clip2)'/>
<path d='M144.984 180.067H148.968' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M205.645 179.195' fill='#f0e0f0' clip-path='url(#clip2)'/>
<path d='M203.652 179.196H207.636' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M205.645 179.195' fill='#f0e0f0' clip-path='url(#clip2)'/>
<path d='M203.652 179.196H207.636' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M264.313 181.008' fill='#f0e0f0' clip-path='url(#clip2)'/>
<path d='M262.32 181.007H266.308' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M264.313 181.008' fill='#f0e0f0' clip-path='url(#clip2)'/>
<path d='M262.32 181.007H266.308' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M322.984 179.934' fill='#f0e0f0' clip-path='url(#clip2)'/>
<path d='M320.992 179.934H324.976' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M322.984 179.934' fill='#f0e0f0' clip-path='url(#clip2)'/>
<path d='M320.992 179.934H324.976' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M381.652 175.637' fill='#f0e0f0' clip-path='url(#clip2)'/>
<path d='M379.66 175.637H383.644' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M381.652 175.637' fill='#f0e0f0' clip-path='url(#clip2)'/>
<path d='M379.66 175.637H383.644' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M440.32 179.664' fill='#f0e0f0' clip-path='url(#clip2)'/>
<path d='M438.328 179.664H442.312' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M440.32 179.664' fill='#f0e0f0' clip-path='url(#clip2)'/>
<path d='M438.328 179.664H442.312' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M150.586 246.637H153.824V163.426H150.586ZM209.258 246.637H212.496V159.062H209.258ZM267.926 246.637H271.164V184.027H267.926ZM326.594 246.637H329.832V203.687H326.594ZM385.262 246.637H388.5V219.859H385.262ZM443.934 246.637H447.172V139.734H443.934Z' fill='#e1c2e1' clip-path='url(#clip2)'/>
<path d='M150.586 246.637H153.824V163.426H150.586ZM209.258 246.637H212.496V159.062H209.258ZM267.926 246.637H271.164V184.027H267.926ZM326.594 246.637H329.832V203.687H326.594ZM385.262 246.637H388.5V219.859H385.262ZM443.934 246.637H447.172V139.734H443.934Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M152.207 163.426' fill='#e1c2e1' clip-path='url(#clip2)'/>
<path d='M150.215 163.426H154.199' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M152.207 163.426' fill='#e1c2e1' clip-path='url(#clip2)'/>
<path d='M150.215 163.426H154.199' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M210.875 159.062' fill='#e1c2e1' clip-path='url(#clip2)'/>
<path d='M208.883 159.063H212.867' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M210.875 159.062' fill='#e1c2e1' clip-path='url(#clip2)'/>
<path d='M208.883 159.063H212.867' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M269.543 184.027' fill='#e1c2e1' clip-path='url(#clip2)'/>
<path d='M267.551 184.027H271.539' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M269.543 184.027' fill='#e1c2e1' clip-path='url(#clip2)'/>
<path d='M267.551 184.027H271.539' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M328.215 203.687' fill='#e1c2e1' clip-path='url(#clip2)'/>
<path d='M326.223 203.687H330.207' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M328.215 203.687' fill='#e1c2e1' clip-path='url(#clip2)'/>
<path d='M326.223 203.687H330.207' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M386.883 219.859' fill='#e1c2e1' clip-path='url(#clip2)'/>
<path d='M384.891 219.86H388.875' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M386.883 219.859' fill='#e1c2e1' clip-path='url(#clip2)'/>
<path d='M384.891 219.86H388.875' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M445.551 139.734' fill='#e1c2e1' clip-path='url(#clip2)'/>
<path d='M443.559 139.734H447.543' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M445.551 139.734' fill='#e1c2e1' clip-path='url(#clip2)'/>
<path d='M443.559 139.734H447.543' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M155.817 246.637H159.055V183.824H155.817ZM214.488 246.637H217.727V176.109H214.488ZM273.156 246.637H276.395V181.344H273.156ZM331.824 246.637H335.063V193.086H331.824ZM390.492 246.637H393.731V195.164H390.492ZM449.164 246.637H452.402V144.566H449.164Z' fill='#d1a3d1' clip-path='url(#clip2)'/>
<path d='M155.817 246.637H159.055V183.824H155.817ZM214.488 246.637H217.727V176.109H214.488ZM273.156 246.637H276.395V181.344H273.156ZM331.824 246.637H335.063V193.086H331.824ZM390.492 246.637H393.731V195.164H390.492ZM449.164 246.637H452.402V144.566H449.164Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M157.438 183.824' fill='#d1a3d1' clip-path='url(#clip2)'/>
<path d='M155.445 183.824H159.429' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M157.438 183.824' fill='#d1a3d1' clip-path='url(#clip2)'/>
<path d='M155.445 183.824H159.429' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M216.106 176.109' fill='#d1a3d1' clip-path='url(#clip2)'/>
<path d='M214.113 176.11H218.097' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M216.106 176.109' fill='#d1a3d1' clip-path='url(#clip2)'/>
<path d='M214.113 176.11H218.097' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M274.774 181.344' fill='#d1a3d1' clip-path='url(#clip2)'/>
<path d='M272.781 181.344H276.769' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M274.774 181.344' fill='#d1a3d1' clip-path='url(#clip2)'/>
<path d='M272.781 181.344H276.769' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M333.445 193.086' fill='#d1a3d1' clip-path='url(#clip2)'/>
<path d='M331.453 193.085H335.437' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M333.445 193.086' fill='#d1a3d1' clip-path='url(#clip2)'/>
<path d='M331.453 193.085H335.437' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M392.113 195.164' fill='#d1a3d1' clip-path='url(#clip2)'/>
<path d='M390.121 195.164H394.105' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M392.113 195.164' fill='#d1a3d1' clip-path='url(#clip2)'/>
<path d='M390.121 195.164H394.105' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M450.781 144.566' fill='#d1a3d1' clip-path='url(#clip2)'/>
<path d='M448.789 144.567H452.773' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M450.781 144.566' fill='#d1a3d1' clip-path='url(#clip2)'/>
<path d='M448.789 144.567H452.773' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M161.047 246.637H164.285V178.926H161.047ZM219.719 246.637H222.957V169.934H219.719ZM278.387 246.637H281.625V176.644H278.387ZM337.055 246.637H340.293V195.234H337.055ZM395.723 246.637H398.961V182.078H395.723ZM454.395 246.637H457.633V177.652H454.395Z' fill='#c285c2' clip-path='url(#clip2)'/>
<path d='M161.047 246.637H164.285V178.926H161.047ZM219.719 246.637H222.957V169.934H219.719ZM278.387 246.637H281.625V176.644H278.387ZM337.055 246.637H340.293V195.234H337.055ZM395.723 246.637H398.961V182.078H395.723ZM454.395 246.637H457.633V177.652H454.395Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M162.668 178.926' fill='#c285c2' clip-path='url(#clip2)'/>
<path d='M160.676 178.926H164.66' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M162.668 178.926' fill='#c285c2' clip-path='url(#clip2)'/>
<path d='M160.676 178.926H164.66' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M221.336 169.934' fill='#c285c2' clip-path='url(#clip2)'/>
<path d='M219.344 169.934H223.328' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M221.336 169.934' fill='#c285c2' clip-path='url(#clip2)'/>
<path d='M219.344 169.934H223.328' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M280.004 176.644' fill='#c285c2' clip-path='url(#clip2)'/>
<path d='M278.012 176.644H282' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M280.004 176.644' fill='#c285c2' clip-path='url(#clip2)'/>
<path d='M278.012 176.644H282' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M338.676 195.234' fill='#c285c2' clip-path='url(#clip2)'/>
<path d='M336.684 195.235H340.668' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M338.676 195.234' fill='#c285c2' clip-path='url(#clip2)'/>
<path d='M336.684 195.235H340.668' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M397.344 182.078' fill='#c285c2' clip-path='url(#clip2)'/>
<path d='M395.352 182.078H399.336' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M397.344 182.078' fill='#c285c2' clip-path='url(#clip2)'/>
<path d='M395.352 182.078H399.336' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M456.012 177.652' fill='#c285c2' clip-path='url(#clip2)'/>
<path d='M454.02 177.652H458.004' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M456.012 177.652' fill='#c285c2' clip-path='url(#clip2)'/>
<path d='M454.02 177.652H458.004' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M166.278 246.637H169.516V179.598H166.278ZM224.949 246.637H228.188V144.098H224.949ZM283.617 246.637H286.856V172.82H283.617ZM342.285 246.637H345.524V155.91H342.285ZM400.953 246.637H404.192V172.484H400.953ZM459.625 246.637H462.863V172.016H459.625Z' fill='#b366b3' clip-path='url(#clip2)'/>
<path d='M166.278 246.637H169.516V179.598H166.278ZM224.949 246.637H228.188V144.098H224.949ZM283.617 246.637H286.856V172.82H283.617ZM342.285 246.637H345.524V155.91H342.285ZM400.953 246.637H404.192V172.484H400.953ZM459.625 246.637H462.863V172.016H459.625Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M167.899 179.598' fill='#b366b3' clip-path='url(#clip2)'/>
<path d='M165.906 179.598H169.89' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M167.899 179.598' fill='#b366b3' clip-path='url(#clip2)'/>
<path d='M165.906 179.598H169.89' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M226.567 144.098' fill='#b366b3' clip-path='url(#clip2)'/>
<path d='M224.574 144.098H228.558' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M226.567 144.098' fill='#b366b3' clip-path='url(#clip2)'/>
<path d='M224.574 144.098H228.558' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M285.234 172.82' fill='#b366b3' clip-path='url(#clip2)'/>
<path d='M283.242 172.82H287.23' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M285.234 172.82' fill='#b366b3' clip-path='url(#clip2)'/>
<path d='M283.242 172.82H287.23' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M343.906 155.91' fill='#b366b3' clip-path='url(#clip2)'/>
<path d='M341.914 155.91H345.898' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M343.906 155.91' fill='#b366b3' clip-path='url(#clip2)'/>
<path d='M341.914 155.91H345.898' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M402.574 172.484' fill='#b366b3' clip-path='url(#clip2)'/>
<path d='M400.582 172.484H404.566' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M402.574 172.484' fill='#b366b3' clip-path='url(#clip2)'/>
<path d='M400.582 172.484H404.566' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M461.242 172.016' fill='#b366b3' clip-path='url(#clip2)'/>
<path d='M459.25 172.015H463.234' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M461.242 172.016' fill='#b366b3' clip-path='url(#clip2)'/>
<path d='M459.25 172.015H463.234' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M171.508 246.637H174.746V177.113H171.508ZM230.18 246.637H233.414V179.465H230.18ZM288.848 246.637H292.086V166.176H288.848ZM347.516 246.637H350.754V160.605H347.516ZM406.184 246.637H409.422V78.871H406.184ZM464.856 246.637H468.094V189.797H464.856Z' fill='#a447a4' clip-path='url(#clip2)'/>
<path d='M171.508 246.637H174.746V177.113H171.508ZM230.18 246.637H233.414V179.465H230.18ZM288.848 246.637H292.086V166.176H288.848ZM347.516 246.637H350.754V160.605H347.516ZM406.184 246.637H409.422V78.871H406.184ZM464.856 246.637H468.094V189.797H464.856Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M173.129 177.113' fill='#a447a4' clip-path='url(#clip2)'/>
<path d='M171.137 177.113H175.121' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M173.129 177.113' fill='#a447a4' clip-path='url(#clip2)'/>
<path d='M171.137 177.113H175.121' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M231.797 179.465' fill='#a447a4' clip-path='url(#clip2)'/>
<path d='M229.805 179.465H233.789' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M231.797 179.465' fill='#a447a4' clip-path='url(#clip2)'/>
<path d='M229.805 179.465H233.789' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M290.465 166.176' fill='#a447a4' clip-path='url(#clip2)'/>
<path d='M288.473 166.176H292.461' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M290.465 166.176' fill='#a447a4' clip-path='url(#clip2)'/>
<path d='M288.473 166.176H292.461' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M349.137 160.605' fill='#a447a4' clip-path='url(#clip2)'/>
<path d='M347.145 160.605H351.129' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M349.137 160.605' fill='#a447a4' clip-path='url(#clip2)'/>
<path d='M347.145 160.605H351.129' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M407.805 78.871' fill='#a447a4' clip-path='url(#clip2)'/>
<path d='M405.813 78.871H409.797' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M407.805 78.871' fill='#a447a4' clip-path='url(#clip2)'/>
<path d='M405.813 78.871H409.797' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M466.473 189.797' fill='#a447a4' clip-path='url(#clip2)'/>
<path d='M464.481 189.797H468.465' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M466.473 189.797' fill='#a447a4' clip-path='url(#clip2)'/>
<path d='M464.481 189.797H468.465' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M176.738 246.637H179.977V167.383H176.738ZM235.41 246.637H238.645V78.871H235.41ZM294.078 246.637H297.317V143.09H294.078ZM352.746 246.637H355.984V166.711H352.746ZM411.414 246.637H414.652V219.391H411.414ZM470.086 246.637H473.324V160.336H470.086Z' fill='#942994' clip-path='url(#clip2)'/>
<path d='M176.738 246.637H179.977V167.383H176.738ZM235.41 246.637H238.645V78.871H235.41ZM294.078 246.637H297.317V143.09H294.078ZM352.746 246.637H355.984V166.711H352.746ZM411.414 246.637H414.652V219.391H411.414ZM470.086 246.637H473.324V160.336H470.086Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M178.36 167.383' fill='#942994' clip-path='url(#clip2)'/>
<path d='M176.367 167.383H180.351' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M178.36 167.383' fill='#942994' clip-path='url(#clip2)'/>
<path d='M176.367 167.383H180.351' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M237.027 78.871' fill='#942994' clip-path='url(#clip2)'/>
<path d='M235.035 78.871H239.019' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M237.027 78.871' fill='#942994' clip-path='url(#clip2)'/>
<path d='M235.035 78.871H239.019' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M295.695 143.09' fill='#942994' clip-path='url(#clip2)'/>
<path d='M293.703 143.089H297.691' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M295.695 143.09' fill='#942994' clip-path='url(#clip2)'/>
<path d='M293.703 143.089H297.691' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M354.367 166.711' fill='#942994' clip-path='url(#clip2)'/>
<path d='M352.375 166.711H356.359' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M354.367 166.711' fill='#942994' clip-path='url(#clip2)'/>
<path d='M352.375 166.711H356.359' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M413.035 219.391' fill='#942994' clip-path='url(#clip2)'/>
<path d='M411.043 219.391H415.027' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M413.035 219.391' fill='#942994' clip-path='url(#clip2)'/>
<path d='M411.043 219.391H415.027' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M471.703 160.336' fill='#942994' clip-path='url(#clip2)'/>
<path d='M469.711 160.336H473.695' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M471.703 160.336' fill='#942994' clip-path='url(#clip2)'/>
<path d='M469.711 160.336H473.695' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M181.969 246.637H185.207V176.711H181.969ZM240.641 246.637H243.875V169.062H240.641ZM299.309 246.637H302.547V151.547H299.309ZM357.977 246.637H361.215V113.43H357.977ZM416.645 246.637H419.883V188.387H416.645ZM475.317 246.637H478.555V190.402H475.317Z' fill='#850a85' clip-path='url(#clip2)'/>
<path d='M181.969 246.637H185.207V176.711H181.969ZM240.641 246.637H243.875V169.062H240.641ZM299.309 246.637H302.547V151.547H299.309ZM357.977 246.637H361.215V113.43H357.977ZM416.645 246.637H419.883V188.387H416.645ZM475.317 246.637H478.555V190.402H475.317Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M183.59 176.711' fill='#850a85' clip-path='url(#clip2)'/>
<path d='M181.598 176.711H185.583' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M183.59 176.711' fill='#850a85' clip-path='url(#clip2)'/>
<path d='M181.598 176.711H185.583' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M242.258 169.062' fill='#850a85' clip-path='url(#clip2)'/>
<path d='M240.266 169.062H244.25' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M242.258 169.062' fill='#850a85' clip-path='url(#clip2)'/>
<path d='M240.266 169.062H244.25' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M300.926 151.547' fill='#850a85' clip-path='url(#clip2)'/>
<path d='M298.933 151.547H302.921' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M300.926 151.547' fill='#850a85' clip-path='url(#clip2)'/>
<path d='M298.933 151.547H302.921' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M359.598 113.43' fill='#850a85' clip-path='url(#clip2)'/>
<path d='M357.606 113.43H361.59' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M359.598 113.43' fill='#850a85' clip-path='url(#clip2)'/>
<path d='M357.606 113.43H361.59' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M418.266 188.387' fill='#850a85' clip-path='url(#clip2)'/>
<path d='M416.274 188.387H420.258' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M418.266 188.387' fill='#850a85' clip-path='url(#clip2)'/>
<path d='M416.274 188.387H420.258' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M476.934 190.402' fill='#850a85' clip-path='url(#clip2)'/>
<path d='M474.942 190.402H478.926' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M476.934 190.402' fill='#850a85' clip-path='url(#clip2)'/>
<path d='M474.942 190.402H478.926' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M187.199 246.637H190.438V179.465H187.199ZM245.871 246.637H249.106V113.094H245.871ZM304.539 246.637H307.777V164.094H304.539ZM363.207 246.637H366.445V156.578H363.207ZM421.875 246.637H425.113V174.496H421.875ZM480.547 246.637H483.785V176.375H480.547Z' fill='#760076' clip-path='url(#clip2)'/>
<path d='M187.199 246.637H190.438V179.465H187.199ZM245.871 246.637H249.106V113.094H245.871ZM304.539 246.637H307.777V164.094H304.539ZM363.207 246.637H366.445V156.578H363.207ZM421.875 246.637H425.113V174.496H421.875ZM480.547 246.637H483.785V176.375H480.547Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M188.82 179.465' fill='#760076' clip-path='url(#clip2)'/>
<path d='M186.828 179.465H190.813' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M188.82 179.465' fill='#760076' clip-path='url(#clip2)'/>
<path d='M186.828 179.465H190.813' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M247.488 113.094' fill='#760076' clip-path='url(#clip2)'/>
<path d='M245.496 113.094H249.481' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M247.488 113.094' fill='#760076' clip-path='url(#clip2)'/>
<path d='M245.496 113.094H249.481' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M306.156 164.094' fill='#760076' clip-path='url(#clip2)'/>
<path d='M304.164 164.094H308.152' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M306.156 164.094' fill='#760076' clip-path='url(#clip2)'/>
<path d='M304.164 164.094H308.152' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M364.828 156.578' fill='#760076' clip-path='url(#clip2)'/>
<path d='M362.836 156.578H366.82' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M364.828 156.578' fill='#760076' clip-path='url(#clip2)'/>
<path d='M362.836 156.578H366.82' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M423.496 174.496' fill='#760076' clip-path='url(#clip2)'/>
<path d='M421.504 174.496H425.488' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M423.496 174.496' fill='#760076' clip-path='url(#clip2)'/>
<path d='M421.504 174.496H425.488' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M482.164 176.375' fill='#760076' clip-path='url(#clip2)'/>
<path d='M480.172 176.375H484.156' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M482.164 176.375' fill='#760076' clip-path='url(#clip2)'/>
<path d='M480.172 176.375H484.156' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<path d='M369.781 308.934H487.762V273.68H369.781Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
<g transform='matrix(1 0 0 1 204.818 118.327)'>
<use x='168.285' y='162.131' xlink:href='#g2-99'/>
<use x='170.637' y='162.131' xlink:href='#g2-53'/>
<use x='173.284' y='162.131' xlink:href='#g2-45'/>
<use x='175.048' y='162.131' xlink:href='#g2-49'/>
<use x='177.694' y='162.131' xlink:href='#g2-56'/>
<use x='180.341' y='162.131' xlink:href='#g2-120'/>
<use x='182.779' y='162.131' xlink:href='#g2-108'/>
<use x='184.042' y='162.131' xlink:href='#g2-97'/>
<use x='186.438' y='162.131' xlink:href='#g2-114'/>
<use x='188.245' y='162.131' xlink:href='#g2-103'/>
<use x='190.891' y='162.131' xlink:href='#g2-101'/>
<use x='193.244' y='162.131' xlink:href='#g2-44'/>
<use x='196.478' y='162.131' xlink:href='#g2-49'/>
<use x='199.124' y='162.131' xlink:href='#g2-52'/>
<use x='201.771' y='162.131' xlink:href='#g2-52'/>
<use x='204.417' y='162.131' xlink:href='#g2-71'/>
<use x='207.946' y='162.131' xlink:href='#g2-98'/>
<use x='168.285' y='168.109' xlink:href='#g2-50'/>
<use x='170.931' y='168.109' xlink:href='#g4-2'/>
<use x='178.092' y='168.109' xlink:href='#g2-49'/>
<use x='180.738' y='168.109' xlink:href='#g2-56'/>
<use x='183.385' y='168.109' xlink:href='#g2-45'/>
<use x='185.149' y='168.109' xlink:href='#g2-99'/>
<use x='187.501' y='168.109' xlink:href='#g2-111'/>
<use x='190.001' y='168.109' xlink:href='#g2-114'/>
<use x='191.808' y='168.109' xlink:href='#g2-101'/>
<use x='195.925' y='168.109' xlink:href='#g2-73'/>
<use x='197.395' y='168.109' xlink:href='#g2-110'/>
<use x='200.128' y='168.109' xlink:href='#g2-116'/>
<use x='202.039' y='168.109' xlink:href='#g2-101'/>
<use x='204.391' y='168.109' xlink:href='#g2-108'/>
<use x='207.418' y='168.109' xlink:href='#g2-88'/>
<use x='210.947' y='168.109' xlink:href='#g2-101'/>
<use x='213.299' y='168.109' xlink:href='#g2-111'/>
<use x='215.945' y='168.109' xlink:href='#g2-110'/>
<use x='220.442' y='168.109' xlink:href='#g2-64'/>
<use x='223.971' y='168.109' xlink:href='#g2-51'/>
<use x='226.617' y='168.109' xlink:href='#g2-71'/>
<use x='230.146' y='168.109' xlink:href='#g2-104'/>
<use x='232.879' y='168.109' xlink:href='#g2-122'/>
<use x='168.285' y='174.086' xlink:href='#g2-85'/>
<use x='171.917' y='174.086' xlink:href='#g2-98'/>
<use x='174.65' y='174.086' xlink:href='#g2-117'/>
<use x='177.383' y='174.086' xlink:href='#g2-110'/>
<use x='180.116' y='174.086' xlink:href='#g2-116'/>
<use x='182.027' y='174.086' xlink:href='#g2-117'/>
<use x='186.524' y='174.086' xlink:href='#g2-50'/>
<use x='189.17' y='174.086' xlink:href='#g2-48'/>
<use x='191.817' y='174.086' xlink:href='#g2-46'/>
<use x='193.287' y='174.086' xlink:href='#g2-48'/>
<use x='195.933' y='174.086' xlink:href='#g2-52'/>
<use x='198.58' y='174.086' xlink:href='#g2-44'/>
<use x='201.814' y='174.086' xlink:href='#g2-71'/>
<use x='205.343' y='174.086' xlink:href='#g2-67'/>
<use x='208.724' y='174.086' xlink:href='#g2-67'/>
<use x='213.87' y='174.086' xlink:href='#g2-57'/>
<use x='216.516' y='174.086' xlink:href='#g2-46'/>
<use x='217.986' y='174.086' xlink:href='#g2-51'/>
<use x='220.633' y='174.086' xlink:href='#g2-46'/>
<use x='222.103' y='174.086' xlink:href='#g2-48'/>
<use x='224.749' y='174.086' xlink:href='#g2-44'/>
<use x='227.984' y='174.086' xlink:href='#g2-103'/>
<use x='230.63' y='174.086' xlink:href='#g2-108'/>
<use x='231.893' y='174.086' xlink:href='#g2-105'/>
<use x='233.155' y='174.086' xlink:href='#g2-98'/>
<use x='236.035' y='174.086' xlink:href='#g2-99'/>
<use x='240.152' y='174.086' xlink:href='#g2-50'/>
<use x='242.798' y='174.086' xlink:href='#g2-46'/>
<use x='244.268' y='174.086' xlink:href='#g2-51'/>
<use x='246.915' y='174.086' xlink:href='#g2-49'/>
<use x='249.561' y='174.086' xlink:href='#g2-44'/>
<use x='252.796' y='174.086' xlink:href='#g2-99'/>
<use x='255.148' y='174.086' xlink:href='#g2-108'/>
<use x='256.41' y='174.086' xlink:href='#g2-97'/>
<use x='258.953' y='174.086' xlink:href='#g2-110'/>
<use x='261.686' y='174.086' xlink:href='#g2-103'/>
<use x='266.097' y='174.086' xlink:href='#g2-49'/>
<use x='268.743' y='174.086' xlink:href='#g2-48'/>
<use x='271.389' y='174.086' xlink:href='#g2-46'/>
<use x='272.859' y='174.086' xlink:href='#g2-48'/>
<use x='275.506' y='174.086' xlink:href='#g2-46'/>
<use x='276.976' y='174.086' xlink:href='#g2-48'/>
<use x='168.285' y='180.064' xlink:href='#g2-55'/>
<use x='170.931' y='180.064' xlink:href='#g2-50'/>
<use x='175.342' y='180.064' xlink:href='#g2-108'/>
<use x='176.604' y='180.064' xlink:href='#g2-111'/>
<use x='179.251' y='180.064' xlink:href='#g2-103'/>
<use x='181.897' y='180.064' xlink:href='#g2-105'/>
<use x='183.16' y='180.064' xlink:href='#g2-99'/>
<use x='185.512' y='180.064' xlink:href='#g2-97'/>
<use x='188.055' y='180.064' xlink:href='#g2-108'/>
<use x='191.082' y='180.064' xlink:href='#g2-99'/>
<use x='193.434' y='180.064' xlink:href='#g2-111'/>
<use x='195.933' y='180.064' xlink:href='#g2-114'/>
<use x='197.741' y='180.064' xlink:href='#g2-101'/>
<use x='200.093' y='180.064' xlink:href='#g2-115'/>
<use x='203.886' y='180.064' xlink:href='#g2-111'/>
<use x='206.533' y='180.064' xlink:href='#g2-110'/>
<use x='211.03' y='180.064' xlink:href='#g2-50'/>
<use x='215.44' y='180.064' xlink:href='#g2-110'/>
<use x='218.173' y='180.064' xlink:href='#g2-117'/>
<use x='220.906' y='180.064' xlink:href='#g2-109'/>
<use x='225.109' y='180.064' xlink:href='#g2-97'/>
<use x='229.416' y='180.064' xlink:href='#g2-110'/>
<use x='232.149' y='180.064' xlink:href='#g2-111'/>
<use x='234.942' y='180.064' xlink:href='#g2-100'/>
<use x='237.675' y='180.064' xlink:href='#g2-101'/>
<use x='240.027' y='180.064' xlink:href='#g2-115'/>
<use x='168.285' y='186.041' xlink:href='#g2-50'/>
<use x='170.931' y='186.041' xlink:href='#g2-48'/>
<use x='173.578' y='186.041' xlink:href='#g2-50'/>
<use x='176.224' y='186.041' xlink:href='#g2-49'/>
<use x='178.87' y='186.041' xlink:href='#g2-45'/>
<use x='180.635' y='186.041' xlink:href='#g2-48'/>
<use x='183.281' y='186.041' xlink:href='#g2-49'/>
<use x='185.927' y='186.041' xlink:href='#g2-45'/>
<use x='187.692' y='186.041' xlink:href='#g2-51'/>
<use x='190.338' y='186.041' xlink:href='#g2-48'/>
<use x='192.984' y='186.041' xlink:href='#g2-41'/>
</g>
<g transform='matrix(0 -1 1 0 -42.661 341.611)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-48'/>
<use x='175.048' y='186.041' xlink:href='#g2-48'/>
</g>
<g transform='matrix(0 -1 1 0 16.008 341.611)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-48'/>
<use x='175.048' y='186.041' xlink:href='#g2-48'/>
</g>
<g transform='matrix(0 -1 1 0 74.677 341.611)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-48'/>
<use x='175.048' y='186.041' xlink:href='#g2-48'/>
</g>
<g transform='matrix(0 -1 1 0 133.346 341.611)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-48'/>
<use x='175.048' y='186.041' xlink:href='#g2-48'/>
</g>
<g transform='matrix(0 -1 1 0 192.015 341.611)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-48'/>
<use x='175.048' y='186.041' xlink:href='#g2-48'/>
</g>
<g transform='matrix(0 -1 1 0 250.684 341.611)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-48'/>
<use x='175.048' y='186.041' xlink:href='#g2-48'/>
</g>
<g transform='matrix(0 -1 1 0 -37.431 342.148)'>
<use x='168.285' y='186.041' xlink:href='#g2-48'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-57'/>
<use x='175.048' y='186.041' xlink:href='#g2-57'/>
</g>
<g transform='matrix(0 -1 1 0 21.238 341.275)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-48'/>
<use x='175.048' y='186.041' xlink:href='#g2-49'/>
</g>
<g transform='matrix(0 -1 1 0 79.907 343.087)'>
<use x='168.285' y='186.041' xlink:href='#g2-48'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-57'/>
<use x='175.048' y='186.041' xlink:href='#g2-56'/>
</g>
<g transform='matrix(0 -1 1 0 138.576 342.014)'>
<use x='168.285' y='186.041' xlink:href='#g2-48'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-57'/>
<use x='175.048' y='186.041' xlink:href='#g2-57'/>
</g>
<g transform='matrix(0 -1 1 0 197.245 337.719)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-48'/>
<use x='175.048' y='186.041' xlink:href='#g2-54'/>
</g>
<g transform='matrix(0 -1 1 0 255.914 341.745)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-48'/>
<use x='175.048' y='186.041' xlink:href='#g2-48'/>
</g>
<g transform='matrix(0 -1 1 0 -32.2 325.505)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-50'/>
<use x='175.048' y='186.041' xlink:href='#g2-52'/>
</g>
<g transform='matrix(0 -1 1 0 26.469 321.144)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-51'/>
<use x='175.048' y='186.041' xlink:href='#g2-49'/>
</g>
<g transform='matrix(0 -1 1 0 85.138 346.107)'>
<use x='168.285' y='186.041' xlink:href='#g2-48'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-57'/>
<use x='175.048' y='186.041' xlink:href='#g2-51'/>
</g>
<g transform='matrix(0 -1 1 0 143.807 365.769)'>
<use x='168.285' y='186.041' xlink:href='#g2-48'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-54'/>
<use x='175.048' y='186.041' xlink:href='#g2-52'/>
</g>
<g transform='matrix(0 -1 1 0 202.476 381.942)'>
<use x='168.285' y='186.041' xlink:href='#g2-48'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-52'/>
<use x='175.048' y='186.041' xlink:href='#g2-48'/>
</g>
<g transform='matrix(0 -1 1 0 261.145 301.817)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-53'/>
<use x='175.048' y='186.041' xlink:href='#g2-57'/>
</g>
<g transform='matrix(0 -1 1 0 -26.97 345.906)'>
<use x='168.285' y='186.041' xlink:href='#g2-48'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-57'/>
<use x='175.048' y='186.041' xlink:href='#g2-52'/>
</g>
<g transform='matrix(0 -1 1 0 31.699 338.189)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-48'/>
<use x='175.048' y='186.041' xlink:href='#g2-53'/>
</g>
<g transform='matrix(0 -1 1 0 90.368 343.423)'>
<use x='168.285' y='186.041' xlink:href='#g2-48'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-57'/>
<use x='175.048' y='186.041' xlink:href='#g2-55'/>
</g>
<g transform='matrix(0 -1 1 0 149.037 355.166)'>
<use x='168.285' y='186.041' xlink:href='#g2-48'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-56'/>
<use x='175.048' y='186.041' xlink:href='#g2-48'/>
</g>
<g transform='matrix(0 -1 1 0 207.706 357.247)'>
<use x='168.285' y='186.041' xlink:href='#g2-48'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-55'/>
<use x='175.048' y='186.041' xlink:href='#g2-55'/>
</g>
<g transform='matrix(0 -1 1 0 266.375 306.649)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-53'/>
<use x='175.048' y='186.041' xlink:href='#g2-50'/>
</g>
<g transform='matrix(0 -1 1 0 -21.739 341.007)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-48'/>
<use x='175.048' y='186.041' xlink:href='#g2-49'/>
</g>
<g transform='matrix(0 -1 1 0 36.93 332.015)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-49'/>
<use x='175.048' y='186.041' xlink:href='#g2-52'/>
</g>
<g transform='matrix(0 -1 1 0 95.599 338.725)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-48'/>
<use x='175.048' y='186.041' xlink:href='#g2-52'/>
</g>
<g transform='matrix(0 -1 1 0 154.268 357.314)'>
<use x='168.285' y='186.041' xlink:href='#g2-48'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-55'/>
<use x='175.048' y='186.041' xlink:href='#g2-55'/>
</g>
<g transform='matrix(0 -1 1 0 212.937 344.161)'>
<use x='168.285' y='186.041' xlink:href='#g2-48'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-57'/>
<use x='175.048' y='186.041' xlink:href='#g2-54'/>
</g>
<g transform='matrix(0 -1 1 0 271.606 339.732)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-48'/>
<use x='175.048' y='186.041' xlink:href='#g2-51'/>
</g>
<g transform='matrix(0 -1 1 0 -16.509 341.678)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-48'/>
<use x='175.048' y='186.041' xlink:href='#g2-48'/>
</g>
<g transform='matrix(0 -1 1 0 42.16 306.179)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-53'/>
<use x='175.048' y='186.041' xlink:href='#g2-51'/>
</g>
<g transform='matrix(0 -1 1 0 100.829 334.9)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-49'/>
<use x='175.048' y='186.041' xlink:href='#g2-48'/>
</g>
<g transform='matrix(0 -1 1 0 159.498 317.99)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-51'/>
<use x='175.048' y='186.041' xlink:href='#g2-53'/>
</g>
<g transform='matrix(0 -1 1 0 218.167 334.565)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-49'/>
<use x='175.048' y='186.041' xlink:href='#g2-49'/>
</g>
<g transform='matrix(0 -1 1 0 276.836 334.095)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-49'/>
<use x='175.048' y='186.041' xlink:href='#g2-49'/>
</g>
<g transform='matrix(0 -1 1 0 -11.278 339.195)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-48'/>
<use x='175.048' y='186.041' xlink:href='#g2-52'/>
</g>
<g transform='matrix(0 -1 1 0 47.391 341.544)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-48'/>
<use x='175.048' y='186.041' xlink:href='#g2-48'/>
</g>
<g transform='matrix(0 -1 1 0 106.06 328.257)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-50'/>
<use x='175.048' y='186.041' xlink:href='#g2-48'/>
</g>
<g transform='matrix(0 -1 1 0 164.729 322.687)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-50'/>
<use x='175.048' y='186.041' xlink:href='#g2-56'/>
</g>
<g transform='matrix(0 -1 1 0 223.398 240.952)'>
<use x='163.396' y='186.041' xlink:href='#g4-1'/>
<use x='166.901' y='186.041' xlink:href='#g4-1'/>
<use x='170.407' y='186.041' xlink:href='#g4-1'/>
<use x='173.912' y='186.041' xlink:href='#g2-57'/>
<use x='176.558' y='186.041' xlink:href='#g2-46'/>
<use x='178.029' y='186.041' xlink:href='#g2-54'/>
<use x='180.675' y='186.041' xlink:href='#g2-56'/>
<use x='183.321' y='186.041' xlink:href='#g2-120'/>
</g>
<g transform='matrix(0 -1 1 0 282.067 351.878)'>
<use x='168.285' y='186.041' xlink:href='#g2-48'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-56'/>
<use x='175.048' y='186.041' xlink:href='#g2-53'/>
</g>
<g transform='matrix(0 -1 1 0 -6.048 329.465)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-49'/>
<use x='175.048' y='186.041' xlink:href='#g2-56'/>
</g>
<g transform='matrix(0 -1 1 0 52.621 240.952)'>
<use x='163.396' y='186.041' xlink:href='#g4-1'/>
<use x='166.901' y='186.041' xlink:href='#g4-1'/>
<use x='170.407' y='186.041' xlink:href='#g4-1'/>
<use x='173.912' y='186.041' xlink:href='#g2-50'/>
<use x='176.558' y='186.041' xlink:href='#g2-46'/>
<use x='178.029' y='186.041' xlink:href='#g2-54'/>
<use x='180.675' y='186.041' xlink:href='#g2-50'/>
<use x='183.321' y='186.041' xlink:href='#g2-120'/>
</g>
<g transform='matrix(0 -1 1 0 111.29 305.172)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-53'/>
<use x='175.048' y='186.041' xlink:href='#g2-52'/>
</g>
<g transform='matrix(0 -1 1 0 169.959 328.794)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-49'/>
<use x='175.048' y='186.041' xlink:href='#g2-57'/>
</g>
<g transform='matrix(0 -1 1 0 228.628 381.472)'>
<use x='168.285' y='186.041' xlink:href='#g2-48'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-52'/>
<use x='175.048' y='186.041' xlink:href='#g2-49'/>
</g>
<g transform='matrix(0 -1 1 0 287.297 322.419)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-50'/>
<use x='175.048' y='186.041' xlink:href='#g2-57'/>
</g>
<g transform='matrix(0 -1 1 0 -.818 338.793)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-48'/>
<use x='175.048' y='186.041' xlink:href='#g2-52'/>
</g>
<g transform='matrix(0 -1 1 0 57.851 331.142)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-49'/>
<use x='175.048' y='186.041' xlink:href='#g2-54'/>
</g>
<g transform='matrix(0 -1 1 0 116.52 313.628)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-52'/>
<use x='175.048' y='186.041' xlink:href='#g2-50'/>
</g>
<g transform='matrix(0 -1 1 0 175.189 275.511)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-57'/>
<use x='175.048' y='186.041' xlink:href='#g2-57'/>
</g>
<g transform='matrix(0 -1 1 0 233.858 350.469)'>
<use x='168.285' y='186.041' xlink:href='#g2-48'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-56'/>
<use x='175.048' y='186.041' xlink:href='#g2-55'/>
</g>
<g transform='matrix(0 -1 1 0 292.527 352.482)'>
<use x='168.285' y='186.041' xlink:href='#g2-48'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-56'/>
<use x='175.048' y='186.041' xlink:href='#g2-52'/>
</g>
<g transform='matrix(0 -1 1 0 4.413 341.544)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-48'/>
<use x='175.048' y='186.041' xlink:href='#g2-48'/>
</g>
<g transform='matrix(0 -1 1 0 63.082 275.176)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-57'/>
<use x='175.048' y='186.041' xlink:href='#g2-57'/>
</g>
<g transform='matrix(0 -1 1 0 121.751 326.177)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-50'/>
<use x='175.048' y='186.041' xlink:href='#g2-51'/>
</g>
<g transform='matrix(0 -1 1 0 180.42 318.661)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-51'/>
<use x='175.048' y='186.041' xlink:href='#g2-52'/>
</g>
<g transform='matrix(0 -1 1 0 239.089 336.578)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-48'/>
<use x='175.048' y='186.041' xlink:href='#g2-55'/>
</g>
<g transform='matrix(0 -1 1 0 297.758 338.457)'>
<use x='168.285' y='186.041' xlink:href='#g2-49'/>
<use x='170.931' y='186.041' xlink:href='#g2-46'/>
<use x='172.401' y='186.041' xlink:href='#g2-48'/>
<use x='175.048' y='186.041' xlink:href='#g2-53'/>
</g>
<g transform='matrix(0 -1 1 0 -72.883 382.933)'>
<use x='168.285' y='186.041' xlink:href='#g1-82'/>
<use x='174.255' y='186.041' xlink:href='#g1-101'/>
<use x='178.351' y='186.041' xlink:href='#g1-108'/>
<use x='180.551' y='186.041' xlink:href='#g1-97'/>
<use x='184.979' y='186.041' xlink:href='#g1-116'/>
<use x='188.307' y='186.041' xlink:href='#g1-105'/>
<use x='190.507' y='186.041' xlink:href='#g1-118'/>
<use x='194.755' y='186.041' xlink:href='#g1-101'/>
<use x='201.922' y='186.041' xlink:href='#g1-114'/>
<use x='205.07' y='186.041' xlink:href='#g1-115'/>
<use x='208.603' y='186.041' xlink:href='#g1-115'/>
<use x='215.207' y='186.041' xlink:href='#g3-40'/>
<use x='218.5' y='186.041' xlink:href='#g3-108'/>
<use x='220.521' y='186.041' xlink:href='#g3-111'/>
<use x='224.52' y='186.041' xlink:href='#g3-119'/>
<use x='230.068' y='186.041' xlink:href='#g3-101'/>
<use x='233.832' y='186.041' xlink:href='#g3-114'/>
<use x='239.547' y='186.041' xlink:href='#g3-105'/>
<use x='241.567' y='186.041' xlink:href='#g3-115'/>
<use x='247.636' y='186.041' xlink:href='#g3-98'/>
<use x='252.244' y='186.041' xlink:href='#g3-101'/>
<use x='256.008' y='186.041' xlink:href='#g3-116'/>
<use x='259.066' y='186.041' xlink:href='#g3-116'/>
<use x='262.124' y='186.041' xlink:href='#g3-101'/>
<use x='265.887' y='186.041' xlink:href='#g3-114'/>
<use x='268.779' y='186.041' xlink:href='#g3-41'/>
</g>
<path d='M136.149 307.031H346.746V277.031H136.149Z' fill='#fff'/>
<path d='M136.149 307.031H346.746V277.031H136.149Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
<path d='M139.336 287.523H142.324V279.551H139.336ZM145.313 287.523H148.301V281.543H145.313Z' fill='#fff'/>
<path d='M139.336 287.523H142.324V279.551H139.336ZM145.313 287.523H148.301V281.543H145.313Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
<g transform='matrix(1 0 0 1 -40.354 114.479)'>
<use x='191.843' y='173.035' xlink:href='#g3-120'/>
<use x='195.745' y='173.035' xlink:href='#g3-109'/>
<use x='202.47' y='173.035' xlink:href='#g3-105'/>
<use x='204.49' y='173.035' xlink:href='#g3-58'/>
<use x='206.843' y='173.035' xlink:href='#g0-54'/>
<use x='210.548' y='173.035' xlink:href='#g0-56'/>
</g>
<path d='M177.086 287.523H180.074V279.551H177.086ZM183.063 287.523H186.055V281.543H183.063Z' fill='#f0e0f0'/>
<path d='M177.086 287.523H180.074V279.551H177.086ZM183.063 287.523H186.055V281.543H183.063Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
<g transform='matrix(1 0 0 1 -38.403 114.479)'>
<use x='233.123' y='173.035' xlink:href='#g3-109'/>
<use x='239.848' y='173.035' xlink:href='#g3-105'/>
<use x='241.869' y='173.035' xlink:href='#g3-58'/>
<use x='244.221' y='173.035' xlink:href='#g0-54'/>
<use x='247.926' y='173.035' xlink:href='#g0-56'/>
</g>
<path d='M221.895 287.523H224.883V279.551H221.895ZM227.875 287.523H230.863V281.543H227.875Z' fill='#e1c2e1'/>
<path d='M221.895 287.523H224.883V279.551H221.895ZM227.875 287.523H230.863V281.543H227.875Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
<g transform='matrix(1 0 0 1 -37.441 114.036)'>
<use x='277.134' y='173.035' xlink:href='#g3-116'/>
<use x='280.192' y='173.035' xlink:href='#g3-99'/>
<use x='283.956' y='173.035' xlink:href='#g3-58'/>
<use x='286.308' y='173.035' xlink:href='#g0-55'/>
<use x='290.013' y='173.035' xlink:href='#g0-50'/>
</g>
<path d='M265.109 287.523H268.098V279.551H265.109ZM271.086 287.523H274.074V281.543H271.086Z' fill='#d1a3d1'/>
<path d='M265.109 287.523H268.098V279.551H265.109ZM271.086 287.523H274.074V281.543H271.086Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
<g transform='matrix(1 0 0 1 -37.04 114.479)'>
<use x='319.615' y='173.035' xlink:href='#g3-106'/>
<use x='321.871' y='173.035' xlink:href='#g3-101'/>
<use x='325.634' y='173.035' xlink:href='#g3-58'/>
<use x='327.987' y='173.035' xlink:href='#g0-55'/>
<use x='331.691' y='173.035' xlink:href='#g0-49'/>
</g>
<path d='M306.859 287.523H309.848V279.551H306.859ZM312.836 287.523H315.824V281.543H312.836Z' fill='#c285c2'/>
<path d='M306.859 287.523H309.848V279.551H306.859ZM312.836 287.523H315.824V281.543H312.836Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
<g transform='matrix(1 0 0 1 -39.932 114.515)'>
<use x='359.038' y='173.035' xlink:href='#g3-116'/>
<use x='362.096' y='173.035' xlink:href='#g3-98'/>
<use x='366.469' y='173.035' xlink:href='#g3-98'/>
<use x='370.842' y='173.035' xlink:href='#g3-58'/>
<use x='373.194' y='173.035' xlink:href='#g0-54'/>
<use x='376.899' y='173.035' xlink:href='#g0-51'/>
</g>
<path d='M139.336 300.527H142.324V292.559H139.336ZM145.313 300.527H148.301V294.551H145.313Z' fill='#b366b3'/>
<path d='M139.336 300.527H142.324V292.559H139.336ZM145.313 300.527H148.301V294.551H145.313Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
<g transform='matrix(1 0 0 1 -37.662 114.036)'>
<use x='191.843' y='186.041' xlink:href='#g3-114'/>
<use x='194.735' y='186.041' xlink:href='#g3-112'/>
<use x='199.108' y='186.041' xlink:href='#g3-58'/>
<use x='201.46' y='186.041' xlink:href='#g0-52'/>
<use x='205.165' y='186.041' xlink:href='#g0-50'/>
</g>
<path d='M177.086 300.527H180.074V292.559H177.086ZM183.063 300.527H186.055V294.551H183.063Z' fill='#a447a4'/>
<path d='M177.086 300.527H180.074V292.559H177.086ZM183.063 300.527H186.055V294.551H183.063Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
<g transform='matrix(1 0 0 1 -43.882 114.515)'>
<use x='233.123' y='186.041' xlink:href='#g3-104'/>
<use x='237.496' y='186.041' xlink:href='#g3-111'/>
<use x='241.73' y='186.041' xlink:href='#g3-97'/>
<use x='245.563' y='186.041' xlink:href='#g3-114'/>
<use x='248.455' y='186.041' xlink:href='#g3-100'/>
<use x='252.828' y='186.041' xlink:href='#g3-58'/>
<use x='255.18' y='186.041' xlink:href='#g0-53'/>
<use x='258.885' y='186.041' xlink:href='#g0-51'/>
</g>
<path d='M221.895 300.527H224.883V292.559H221.895ZM227.875 300.527H230.863V294.551H227.875Z' fill='#942994'/>
<path d='M221.895 300.527H224.883V292.559H221.895ZM227.875 300.527H230.863V294.551H227.875Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
<g transform='matrix(1 0 0 1 -43.084 114.515)'>
<use x='277.134' y='186.041' xlink:href='#g3-109'/>
<use x='283.859' y='186.041' xlink:href='#g3-101'/>
<use x='287.622' y='186.041' xlink:href='#g3-115'/>
<use x='290.869' y='186.041' xlink:href='#g3-104'/>
<use x='295.241' y='186.041' xlink:href='#g3-58'/>
<use x='297.593' y='186.041' xlink:href='#g0-53'/>
<use x='301.298' y='186.041' xlink:href='#g0-50'/>
</g>
<path d='M265.109 300.527H268.098V292.559H265.109ZM271.086 300.527H274.074V294.551H271.086Z' fill='#850a85'/>
<path d='M265.109 300.527H268.098V292.559H265.109ZM271.086 300.527H274.074V294.551H271.086Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
<g transform='matrix(1 0 0 1 -42.353 114.515)'>
<use x='319.615' y='186.041' xlink:href='#g3-103'/>
<use x='323.849' y='186.041' xlink:href='#g3-108'/>
<use x='325.869' y='186.041' xlink:href='#g3-105'/>
<use x='327.89' y='186.041' xlink:href='#g3-98'/>
<use x='332.498' y='186.041' xlink:href='#g3-99'/>
<use x='336.261' y='186.041' xlink:href='#g3-58'/>
<use x='338.614' y='186.041' xlink:href='#g0-54'/>
<use x='342.318' y='186.041' xlink:href='#g0-52'/>
</g>
<path d='M306.859 300.527H309.848V292.559H306.859ZM312.836 300.527H315.824V294.551H312.836Z' fill='#760076'/>
<path d='M306.859 300.527H309.848V292.559H306.859ZM312.836 300.527H315.824V294.551H312.836Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
<g transform='matrix(1 0 0 1 -40.026 114.479)'>
<use x='359.038' y='186.041' xlink:href='#g3-115'/>
<use x='362.285' y='186.041' xlink:href='#g3-109'/>
<use x='369.009' y='186.041' xlink:href='#g3-105'/>
<use x='371.03' y='186.041' xlink:href='#g3-58'/>
<use x='373.382' y='186.041' xlink:href='#g0-52'/>
<use x='377.087' y='186.041' xlink:href='#g0-51'/>
</g>
</g>
</svg>