aboutsummaryrefslogtreecommitdiff
path: root/tests/figs/plotting/mixed-model-fit-for-nlme-object.svg
blob: db13b159b23f5a45c6d917131aacabfd6a68b5b2 (plain) (blame)
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
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
<?xml version='1.0' encoding='UTF-8' ?>
<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 720.00 576.00'>
<defs>
  <style type='text/css'><![CDATA[
    line, polyline, polygon, path, rect, circle {
      fill: none;
      stroke: #000000;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-miterlimit: 10.00;
    }
  ]]></style>
</defs>
<rect width='100%' height='100%' style='stroke: none; fill: #FFFFFF;'/>
<defs>
  <clipPath id='cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw'>
    <rect x='25.10' y='1.20' width='669.80' height='130.53' />
  </clipPath>
</defs>
<line x1='207.22' y1='48.53' x2='225.15' y2='48.53' style='stroke-width: 1.50;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='207.22' y1='60.49' x2='225.15' y2='60.49' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='207.22' y1='72.44' x2='225.15' y2='72.44' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='207.22' y1='84.39' x2='225.15' y2='84.39' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='283.84' y1='48.53' x2='301.76' y2='48.53' style='stroke-width: 0.75; stroke: #28E2E5; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='283.84' y1='60.49' x2='301.76' y2='60.49' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='283.84' y1='72.44' x2='301.76' y2='72.44' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='283.84' y1='84.39' x2='301.76' y2='84.39' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='360.45' y1='48.53' x2='378.38' y2='48.53' style='stroke-width: 0.75; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='360.45' y1='60.49' x2='378.38' y2='60.49' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='360.45' y1='72.44' x2='378.38' y2='72.44' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='360.45' y1='84.39' x2='378.38' y2='84.39' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='437.06' y1='48.53' x2='454.99' y2='48.53' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='437.06' y1='60.49' x2='454.99' y2='60.49' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='437.06' y1='72.44' x2='454.99' y2='72.44' style='stroke-width: 0.75; stroke: #F5C710; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='437.06' y1='84.39' x2='454.99' y2='84.39' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<circle cx='216.19' cy='60.49' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<polyline points='216.19,68.95 219.21,74.18 213.17,74.18 216.19,68.95 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='213.02' y1='84.39' x2='219.36' y2='84.39' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='216.19' y1='87.56' x2='216.19' y2='81.22' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='290.56' y1='50.77' x2='295.04' y2='46.29' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='290.56' y1='46.29' x2='295.04' y2='50.77' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<polyline points='289.63,60.49 292.80,57.32 295.97,60.49 292.80,63.65 289.63,60.49 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<polyline points='292.80,75.92 295.82,70.70 289.78,70.70 292.80,75.92 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<rect x='290.56' y='82.15' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='290.56' y1='86.63' x2='295.04' y2='82.15' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='290.56' y1='82.15' x2='295.04' y2='86.63' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='367.17' y1='50.77' x2='371.65' y2='46.29' style='stroke-width: 0.75;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='367.17' y1='46.29' x2='371.65' y2='50.77' style='stroke-width: 0.75;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='366.24' y1='48.53' x2='372.58' y2='48.53' style='stroke-width: 0.75;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='369.41' y1='51.70' x2='369.41' y2='45.36' style='stroke-width: 0.75;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='366.24' y1='60.49' x2='372.58' y2='60.49' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='369.41' y1='63.65' x2='369.41' y2='57.32' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<polyline points='366.24,60.49 369.41,57.32 372.58,60.49 369.41,63.65 366.24,60.49 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<circle cx='369.41' cy='72.44' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='367.17' y1='72.44' x2='371.65' y2='72.44' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='369.41' y1='74.68' x2='369.41' y2='70.20' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<polyline points='369.41,87.87 372.43,81.78 366.39,81.78 369.41,87.87 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<polyline points='369.41,80.90 372.43,87.00 366.39,87.00 369.41,80.90 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='443.78' y1='48.53' x2='448.27' y2='48.53' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='446.02' y1='50.77' x2='446.02' y2='46.29' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<rect x='443.78' y='46.29' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<circle cx='446.02' cy='60.49' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='443.78' y1='62.73' x2='448.27' y2='58.24' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<line x1='443.78' y1='58.24' x2='448.27' y2='62.73' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<polyline points='446.02,70.20 448.27,74.68 443.78,74.68 446.02,70.20 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<rect x='443.78' y='70.20' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<polygon points='443.78,86.63 448.27,86.63 448.27,82.15 443.78,82.15 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)' />
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)'><text x='234.12' y='51.96' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='47.03px' lengthAdjust='spacingAndGlyphs'>Population</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)'><text x='234.12' y='63.91' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>1</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)'><text x='234.12' y='75.86' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>2</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)'><text x='234.12' y='87.81' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>3</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)'><text x='310.73' y='51.96' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>4</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)'><text x='310.73' y='63.91' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>5</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)'><text x='310.73' y='75.86' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>6</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)'><text x='310.73' y='87.81' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>7</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)'><text x='387.34' y='51.96' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>8</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)'><text x='387.34' y='63.91' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>9</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)'><text x='387.34' y='75.86' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>10</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)'><text x='387.34' y='87.81' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='10.33px' lengthAdjust='spacingAndGlyphs'>11</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)'><text x='463.95' y='51.96' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>12</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)'><text x='463.95' y='63.91' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>13</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)'><text x='463.95' y='75.86' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>14</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDEzMS43M3wxLjIw)'><text x='463.95' y='87.81' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>15</text></g>
<defs>
  <clipPath id='cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc='>
    <rect x='49.00' y='146.07' width='285.90' height='368.97' />
  </clipPath>
</defs>
<polyline points='59.59,170.38 61.80,182.39 64.99,198.65 66.21,204.51 70.40,223.40 75.03,242.23 75.80,245.14 81.20,264.32 86.60,281.30 90.48,292.30 92.01,296.40 97.41,309.89 102.81,321.99 108.21,332.89 113.62,342.75 119.02,351.71 121.36,355.34 124.42,359.88 129.82,367.38 135.23,374.27 140.63,380.63 146.03,386.52 151.43,392.00 156.84,397.11 162.24,401.89 167.64,406.38 173.04,410.59 178.45,414.56 183.85,418.32 189.25,421.87 191.95,423.57 194.65,425.23 200.06,428.42 205.46,431.46 210.86,434.35 216.26,437.10 221.67,439.72 227.07,442.23 232.47,444.62 237.87,446.91 243.28,449.10 248.68,451.19 254.08,453.20 258.13,454.64 259.48,455.12 264.89,456.96 270.29,458.72 275.69,460.41 281.09,462.03 286.49,463.59 291.90,465.08 297.30,466.51 302.70,467.89 308.10,469.21 313.51,470.47 318.91,471.69 324.31,472.86 ' style='stroke-width: 1.50;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<defs>
  <clipPath id='cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA='>
    <rect x='0.00' y='0.00' width='720.00' height='576.00' />
  </clipPath>
</defs>
<line x1='59.59' y1='515.04' x2='324.31' y2='515.04' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='59.59' y1='515.04' x2='59.59' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='103.71' y1='515.04' x2='103.71' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='147.83' y1='515.04' x2='147.83' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='191.95' y1='515.04' x2='191.95' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='236.07' y1='515.04' x2='236.07' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='280.19' y1='515.04' x2='280.19' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='324.31' y1='515.04' x2='324.31' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='56.83' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='98.18' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='142.30' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='186.42' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>60</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='230.54' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>80</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='271.90' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='16.59px' lengthAdjust='spacingAndGlyphs'>100</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='316.02' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='16.59px' lengthAdjust='spacingAndGlyphs'>120</text></g>
<line x1='49.00' y1='501.38' x2='49.00' y2='170.65' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='49.00' y1='501.38' x2='43.03' y2='501.38' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='49.00' y1='435.23' x2='43.03' y2='435.23' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='49.00' y1='369.09' x2='43.03' y2='369.09' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='49.00' y1='302.94' x2='43.03' y2='302.94' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='49.00' y1='236.80' x2='43.03' y2='236.80' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='49.00' y1='170.65' x2='43.03' y2='170.65' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(34.66,504.14) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(34.66,440.76) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(34.66,374.62) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(34.66,308.47) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>60</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(34.66,242.33) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>80</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(34.66,178.95) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='16.59px' lengthAdjust='spacingAndGlyphs'>100</text></g>
<polyline points='49.00,515.04 334.90,515.04 334.90,146.07 49.00,146.07 49.00,515.04 ' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<defs>
  <clipPath id='cpMC4wMHwzNjAuMDB8NTc2LjAwfDEzMi45Mg=='>
    <rect x='0.00' y='132.92' width='360.00' height='443.08' />
  </clipPath>
</defs>
<g clip-path='url(#cpMC4wMHwzNjAuMDB8NTc2LjAwfDEzMi45Mg==)'><text x='181.08' y='560.46' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='21.75px' lengthAdjust='spacingAndGlyphs'>Time</text></g>
<g clip-path='url(#cpMC4wMHwzNjAuMDB8NTc2LjAwfDEzMi45Mg==)'><text transform='translate(10.76,366.79) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='72.47px' lengthAdjust='spacingAndGlyphs'>Residues parent</text></g>
<defs>
  <clipPath id='cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc='>
    <rect x='49.00' y='146.07' width='285.90' height='368.97' />
  </clipPath>
</defs>
<circle cx='59.59' cy='165.03' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='59.59' cy='172.63' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='61.80' cy='184.54' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='61.80' cy='181.56' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='66.21' cy='188.84' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='66.21' cy='198.10' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='75.03' cy='230.84' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='75.03' cy='223.24' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='90.48' cy='279.13' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='90.48' cy='289.71' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='121.36' cy='352.55' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='121.36' cy='353.54' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='191.95' cy='413.41' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='191.95' cy='405.14' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='258.13' cy='439.20' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='258.13' cy='445.49' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='324.31' cy='471.28' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='324.31' cy='460.37' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,169.72 61.80,180.49 64.99,195.18 66.21,200.50 70.40,217.78 75.03,235.18 75.80,237.90 81.20,255.86 86.60,271.94 90.48,282.44 92.01,286.38 97.41,299.41 102.81,311.18 108.21,321.86 113.62,331.59 119.02,340.48 121.36,344.09 124.42,348.62 129.82,356.12 135.23,363.03 140.63,369.43 146.03,375.38 151.43,380.92 156.84,386.09 162.24,390.94 167.64,395.49 173.04,399.77 178.45,403.81 183.85,407.63 189.25,411.26 191.95,413.00 194.65,414.69 200.06,417.96 205.46,421.07 210.86,424.04 216.26,426.87 221.67,429.58 227.07,432.17 232.47,434.65 237.87,437.03 243.28,439.32 248.68,441.51 254.08,443.61 258.13,445.14 259.48,445.64 264.89,447.59 270.29,449.46 275.69,451.26 281.09,453.00 286.49,454.67 291.90,456.29 297.30,457.84 302.70,459.34 308.10,460.78 313.51,462.18 318.91,463.52 324.31,464.82 ' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,156.25 62.61,161.48 56.57,161.48 59.59,156.25 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,163.53 62.61,168.75 56.57,168.75 59.59,163.53 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='61.80,181.72 64.82,186.94 58.78,186.94 61.80,181.72 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='61.80,168.49 64.82,173.72 58.78,173.72 61.80,168.49 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='66.21,194.28 69.23,199.51 63.19,199.51 66.21,194.28 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='66.21,193.29 69.23,198.52 63.19,198.52 66.21,193.29 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='75.03,223.06 78.05,228.29 72.02,228.29 75.03,223.06 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='75.03,228.68 78.05,233.91 72.02,233.91 75.03,228.68 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='90.48,269.69 93.49,274.92 87.46,274.92 90.48,269.69 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='90.48,265.06 93.49,270.29 87.46,270.29 90.48,265.06 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='121.36,322.28 124.38,327.50 118.34,327.50 121.36,322.28 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='121.36,332.86 124.38,338.09 118.34,338.09 121.36,332.86 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='191.95,402.97 194.97,408.20 188.93,408.20 191.95,402.97 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='191.95,397.02 194.97,402.25 188.93,402.25 191.95,397.02 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='258.13,437.37 261.15,442.60 255.11,442.60 258.13,437.37 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='258.13,448.62 261.15,453.84 255.11,453.84 258.13,448.62 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='324.31,458.87 327.33,464.10 321.29,464.10 324.31,458.87 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='324.31,456.88 327.33,462.11 321.29,462.11 324.31,456.88 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,169.83 61.80,179.07 64.99,191.82 66.21,196.47 70.40,211.75 75.03,227.40 75.80,229.86 81.20,246.34 86.60,261.39 90.48,271.36 92.01,275.14 97.41,287.74 102.81,299.32 108.21,309.98 113.62,319.82 119.02,328.91 121.36,332.65 124.42,337.35 129.82,345.18 135.23,352.48 140.63,359.29 146.03,365.65 151.43,371.62 156.84,377.22 162.24,382.48 167.64,387.44 173.04,392.13 178.45,396.56 183.85,400.75 189.25,404.72 191.95,406.63 194.65,408.50 200.06,412.09 205.46,415.50 210.86,418.76 216.26,421.86 221.67,424.83 227.07,427.66 232.47,430.37 237.87,432.97 243.28,435.46 248.68,437.84 254.08,440.13 258.13,441.79 259.48,442.33 264.89,444.43 270.29,446.46 275.69,448.41 281.09,450.28 286.49,452.08 291.90,453.82 297.30,455.49 302.70,457.09 308.10,458.64 313.51,460.13 318.91,461.57 324.31,462.95 ' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='56.42' y1='160.40' x2='62.76' y2='160.40' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.59' y1='163.57' x2='59.59' y2='157.23' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='56.42' y1='164.04' x2='62.76' y2='164.04' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.59' y1='167.20' x2='59.59' y2='160.87' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='58.63' y1='173.96' x2='64.97' y2='173.96' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='61.80' y1='177.13' x2='61.80' y2='170.79' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='58.63' y1='188.18' x2='64.97' y2='188.18' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='61.80' y1='191.35' x2='61.80' y2='185.01' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.04' y1='206.70' x2='69.38' y2='206.70' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='66.21' y1='209.87' x2='66.21' y2='203.53' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.04' y1='193.14' x2='69.38' y2='193.14' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='66.21' y1='196.31' x2='66.21' y2='189.97' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='71.86' y1='232.50' x2='78.20' y2='232.50' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='75.03' y1='235.67' x2='75.03' y2='229.33' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='71.86' y1='239.44' x2='78.20' y2='239.44' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='75.03' y1='242.61' x2='75.03' y2='236.27' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='87.31' y1='280.78' x2='93.65' y2='280.78' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='90.48' y1='283.95' x2='90.48' y2='277.61' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='87.31' y1='285.41' x2='93.65' y2='285.41' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='90.48' y1='288.58' x2='90.48' y2='282.24' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='118.19' y1='356.19' x2='124.53' y2='356.19' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='121.36' y1='359.36' x2='121.36' y2='353.02' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='118.19' y1='350.57' x2='124.53' y2='350.57' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='121.36' y1='353.74' x2='121.36' y2='347.40' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='188.78' y1='422.33' x2='195.12' y2='422.33' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='191.95' y1='425.50' x2='191.95' y2='419.17' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='188.78' y1='437.55' x2='195.12' y2='437.55' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='191.95' y1='440.72' x2='191.95' y2='434.38' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='254.96' y1='474.92' x2='261.30' y2='474.92' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='258.13' y1='478.09' x2='258.13' y2='471.75' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='254.96' y1='466.32' x2='261.30' y2='466.32' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='258.13' y1='469.49' x2='258.13' y2='463.15' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='321.14' y1='478.56' x2='327.48' y2='478.56' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='324.31' y1='481.73' x2='324.31' y2='475.39' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='321.14' y1='470.95' x2='327.48' y2='470.95' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='324.31' y1='474.12' x2='324.31' y2='467.78' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,169.72 61.80,180.25 64.99,194.76 66.21,200.06 70.40,217.44 75.03,235.21 75.80,238.01 81.20,256.70 86.60,273.71 90.48,284.97 92.01,289.22 97.41,303.39 102.81,316.35 108.21,328.24 113.62,339.15 119.02,349.20 121.36,353.30 124.42,358.45 129.82,367.00 135.23,374.90 140.63,382.22 146.03,389.01 151.43,395.33 156.84,401.20 162.24,406.68 167.64,411.79 173.04,416.57 178.45,421.05 183.85,425.24 189.25,429.17 191.95,431.05 194.65,432.87 200.06,436.34 205.46,439.62 210.86,442.70 216.26,445.61 221.67,448.35 227.07,450.95 232.47,453.40 237.87,455.72 243.28,457.91 248.68,460.00 254.08,461.97 258.13,463.38 259.48,463.84 264.89,465.61 270.29,467.30 275.69,468.90 281.09,470.42 286.49,471.87 291.90,473.24 297.30,474.55 302.70,475.79 308.10,476.98 313.51,478.10 318.91,479.18 324.31,480.20 ' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='57.35' y1='162.64' x2='61.83' y2='158.16' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='57.35' y1='158.16' x2='61.83' y2='162.64' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='57.35' y1='175.21' x2='61.83' y2='170.72' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='57.35' y1='170.72' x2='61.83' y2='175.21' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.56' y1='190.75' x2='64.04' y2='186.27' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.56' y1='186.27' x2='64.04' y2='190.75' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.56' y1='193.40' x2='64.04' y2='188.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.56' y1='188.91' x2='64.04' y2='193.40' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.97' y1='205.63' x2='68.45' y2='201.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.97' y1='201.15' x2='68.45' y2='205.63' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.97' y1='204.64' x2='68.45' y2='200.16' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.97' y1='200.16' x2='68.45' y2='204.64' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='72.79' y1='244.00' x2='77.27' y2='239.52' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='72.79' y1='239.52' x2='77.27' y2='244.00' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='72.79' y1='237.71' x2='77.27' y2='233.23' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='72.79' y1='233.23' x2='77.27' y2='237.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='88.23' y1='290.30' x2='92.72' y2='285.82' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='88.23' y1='285.82' x2='92.72' y2='290.30' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='88.23' y1='296.58' x2='92.72' y2='292.10' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='88.23' y1='292.10' x2='92.72' y2='296.58' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='119.12' y1='358.43' x2='123.60' y2='353.95' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='119.12' y1='353.95' x2='123.60' y2='358.43' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='119.12' y1='364.05' x2='123.60' y2='359.57' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='119.12' y1='359.57' x2='123.60' y2='364.05' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='189.71' y1='445.08' x2='194.19' y2='440.60' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='189.71' y1='440.60' x2='194.19' y2='445.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='189.71' y1='443.76' x2='194.19' y2='439.28' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='189.71' y1='439.28' x2='194.19' y2='443.76' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='255.89' y1='478.82' x2='260.37' y2='474.33' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='255.89' y1='474.33' x2='260.37' y2='478.82' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='255.89' y1='480.47' x2='260.37' y2='475.99' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='255.89' y1='475.99' x2='260.37' y2='480.47' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='322.07' y1='481.79' x2='326.55' y2='477.31' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='322.07' y1='477.31' x2='326.55' y2='481.79' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='322.07' y1='486.75' x2='326.55' y2='482.27' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='322.07' y1='482.27' x2='326.55' y2='486.75' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,170.67 61.80,181.69 64.99,196.88 66.21,202.43 70.40,220.61 75.03,239.21 75.80,242.13 81.20,261.67 86.60,279.44 90.48,291.19 92.01,295.62 97.41,310.39 102.81,323.88 108.21,336.23 113.62,347.54 119.02,357.93 121.36,362.16 124.42,367.47 129.82,376.26 135.23,384.36 140.63,391.84 146.03,398.75 151.43,405.15 156.84,411.08 162.24,416.59 167.64,421.70 173.04,426.46 178.45,430.89 183.85,435.02 189.25,438.88 191.95,440.71 194.65,442.48 200.06,445.85 205.46,449.00 210.86,451.96 216.26,454.72 221.67,457.32 227.07,459.76 232.47,462.06 237.87,464.21 243.28,466.24 248.68,468.15 254.08,469.94 258.13,471.22 259.48,471.64 264.89,473.23 270.29,474.74 275.69,476.16 281.09,477.50 286.49,478.77 291.90,479.96 297.30,481.10 302.70,482.16 308.10,483.17 313.51,484.13 318.91,485.03 324.31,485.89 ' style='stroke-width: 0.75; stroke: #28E2E5; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='56.42,182.56 59.59,179.39 62.76,182.56 59.59,185.73 56.42,182.56 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='56.42,167.67 59.59,164.50 62.76,167.67 59.59,170.84 56.42,167.67 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='58.63,196.12 61.80,192.95 64.97,196.12 61.80,199.29 58.63,196.12 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='58.63,180.24 61.80,177.07 64.97,180.24 61.80,183.41 58.63,180.24 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='63.04,218.94 66.21,215.77 69.38,218.94 66.21,222.11 63.04,218.94 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='63.04,213.64 66.21,210.48 69.38,213.64 66.21,216.81 63.04,213.64 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='71.86,266.89 75.03,263.72 78.20,266.89 75.03,270.06 71.86,266.89 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='71.86,271.85 75.03,268.68 78.20,271.85 75.03,275.02 71.86,271.85 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='87.31,298.31 90.48,295.14 93.65,298.31 90.48,301.48 87.31,298.31 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='87.31,310.55 90.48,307.38 93.65,310.55 90.48,313.72 87.31,310.55 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='118.19,371.40 121.36,368.23 124.53,371.40 121.36,374.57 118.19,371.40 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='118.19,357.51 121.36,354.34 124.53,357.51 121.36,360.68 118.19,357.51 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='188.78,430.93 191.95,427.76 195.12,430.93 191.95,434.10 188.78,430.93 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='188.78,423.66 191.95,420.49 195.12,423.66 191.95,426.83 188.78,423.66 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='254.96,450.45 258.13,447.28 261.30,450.45 258.13,453.62 254.96,450.45 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='254.96,453.09 258.13,449.92 261.30,453.09 258.13,456.26 254.96,453.09 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='321.14,471.28 324.31,468.11 327.48,471.28 324.31,474.45 321.14,471.28 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='321.14,476.24 324.31,473.07 327.48,476.24 324.31,479.41 321.14,476.24 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,171.01 61.80,187.53 64.99,208.93 66.21,216.36 70.40,239.38 75.03,260.88 75.80,264.08 81.20,284.35 86.60,301.20 90.48,311.60 92.01,315.39 97.41,327.50 102.81,337.99 108.21,347.18 113.62,355.35 119.02,362.69 121.36,365.65 124.42,369.36 129.82,375.47 135.23,381.12 140.63,386.38 146.03,391.30 151.43,395.93 156.84,400.31 162.24,404.46 167.64,408.40 173.04,412.15 178.45,415.73 183.85,419.16 189.25,422.43 191.95,424.01 194.65,425.57 200.06,428.57 205.46,431.45 210.86,434.21 216.26,436.86 221.67,439.40 227.07,441.84 232.47,444.18 237.87,446.43 243.28,448.59 248.68,450.67 254.08,452.66 258.13,454.11 259.48,454.58 264.89,456.42 270.29,458.18 275.69,459.88 281.09,461.51 286.49,463.07 291.90,464.58 297.30,466.02 302.70,467.41 308.10,468.75 313.51,470.03 318.91,471.26 324.31,472.44 ' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,177.44 62.61,172.21 56.57,172.21 59.59,177.44 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,165.87 62.61,160.64 56.57,160.64 59.59,165.87 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='61.80,181.41 64.82,176.18 58.78,176.18 61.80,181.41 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='61.80,187.36 64.82,182.14 58.78,182.14 61.80,187.36 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='66.21,200.26 69.23,195.04 63.19,195.04 66.21,200.26 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='66.21,199.27 69.23,194.04 63.19,194.04 66.21,199.27 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='75.03,235.98 78.05,230.75 72.02,230.75 75.03,235.98 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='75.03,228.04 78.05,222.82 72.02,222.82 75.03,228.04 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='90.48,281.62 93.49,276.39 87.46,276.39 90.48,281.62 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='90.48,281.29 93.49,276.06 87.46,276.06 90.48,281.29 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='121.36,341.15 124.38,335.93 118.34,335.93 121.36,341.15 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='121.36,328.59 124.38,323.36 118.34,323.36 121.36,328.59 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='191.95,405.31 194.97,400.09 188.93,400.09 191.95,405.31 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='191.95,393.41 194.97,388.18 188.93,388.18 191.95,393.41 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='258.13,424.50 261.15,419.27 255.11,419.27 258.13,424.50 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='258.13,423.84 261.15,418.61 255.11,418.61 258.13,423.84 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='324.31,461.21 327.33,455.98 321.29,455.98 324.31,461.21 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='324.31,452.94 327.33,447.71 321.29,447.71 324.31,452.94 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,169.97 61.80,180.19 64.99,194.08 66.21,199.09 70.40,215.30 75.03,231.51 75.80,234.03 81.20,250.63 86.60,265.40 90.48,275.00 92.01,278.60 97.41,290.44 102.81,301.12 108.21,310.78 113.62,319.58 119.02,327.61 121.36,330.88 124.42,334.98 129.82,341.77 135.23,348.06 140.63,353.90 146.03,359.35 151.43,364.46 156.84,369.25 162.24,373.78 167.64,378.05 173.04,382.11 178.45,385.96 183.85,389.64 189.25,393.15 191.95,394.85 194.65,396.51 200.06,399.73 205.46,402.82 210.86,405.79 216.26,408.65 221.67,411.40 227.07,414.06 232.47,416.63 237.87,419.10 243.28,421.50 248.68,423.82 254.08,426.06 258.13,427.70 259.48,428.24 264.89,430.34 270.29,432.39 275.69,434.36 281.09,436.28 286.49,438.14 291.90,439.95 297.30,441.70 302.70,443.40 308.10,445.05 313.51,446.66 318.91,448.21 324.31,449.72 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='57.35' y='174.69' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='57.35' y1='179.17' x2='61.83' y2='174.69' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='57.35' y1='174.69' x2='61.83' y2='179.17' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='57.35' y='160.14' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='57.35' y1='164.62' x2='61.83' y2='160.14' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='57.35' y1='160.14' x2='61.83' y2='164.62' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='59.56' y='192.22' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.56' y1='196.70' x2='64.04' y2='192.22' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.56' y1='192.22' x2='64.04' y2='196.70' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='59.56' y='184.61' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.56' y1='189.10' x2='64.04' y2='184.61' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.56' y1='184.61' x2='64.04' y2='189.10' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='63.97' y='219.01' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.97' y1='223.49' x2='68.45' y2='219.01' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.97' y1='219.01' x2='68.45' y2='223.49' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='63.97' y='221.66' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.97' y1='226.14' x2='68.45' y2='221.66' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.97' y1='221.66' x2='68.45' y2='226.14' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='72.79' y='271.93' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='72.79' y1='276.41' x2='77.27' y2='271.93' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='72.79' y1='271.93' x2='77.27' y2='276.41' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='72.79' y='272.92' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='72.79' y1='277.40' x2='77.27' y2='272.92' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='72.79' y1='272.92' x2='77.27' y2='277.40' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='88.23' y='338.40' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='88.23' y1='342.89' x2='92.72' y2='338.40' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='88.23' y1='338.40' x2='92.72' y2='342.89' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='88.23' y='325.51' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='88.23' y1='329.99' x2='92.72' y2='325.51' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='88.23' y1='325.51' x2='92.72' y2='329.99' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='119.12' y='400.91' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='119.12' y1='405.39' x2='123.60' y2='400.91' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='119.12' y1='400.91' x2='123.60' y2='405.39' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='119.12' y='399.26' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='119.12' y1='403.74' x2='123.60' y2='399.26' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='119.12' y1='399.26' x2='123.60' y2='403.74' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='189.71' y='447.21' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='189.71' y1='451.70' x2='194.19' y2='447.21' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='189.71' y1='447.21' x2='194.19' y2='451.70' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='189.71' y='465.73' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='189.71' y1='470.22' x2='194.19' y2='465.73' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='189.71' y1='465.73' x2='194.19' y2='470.22' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='255.89' y='491.86' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='255.89' y1='496.34' x2='260.37' y2='491.86' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='255.89' y1='491.86' x2='260.37' y2='496.34' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='255.89' y='490.21' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='255.89' y1='494.69' x2='260.37' y2='490.21' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='255.89' y1='490.21' x2='260.37' y2='494.69' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='322.07' y='491.86' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='322.07' y1='496.34' x2='326.55' y2='491.86' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='322.07' y1='491.86' x2='326.55' y2='496.34' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='322.07' y='482.93' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='322.07' y1='487.41' x2='326.55' y2='482.93' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='322.07' y1='482.93' x2='326.55' y2='487.41' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,170.56 61.80,189.00 64.99,213.21 66.21,221.71 70.40,248.34 75.03,273.68 75.80,277.50 81.20,301.88 86.60,322.44 90.48,335.25 92.01,339.93 97.41,354.93 102.81,367.91 108.21,379.23 113.62,389.19 119.02,398.01 121.36,401.52 124.42,405.87 129.82,412.94 135.23,419.32 140.63,425.11 146.03,430.40 151.43,435.24 156.84,439.68 162.24,443.78 167.64,447.57 173.04,451.08 178.45,454.34 183.85,457.37 189.25,460.19 191.95,461.53 194.65,462.82 200.06,465.27 205.46,467.56 210.86,469.70 216.26,471.69 221.67,473.56 227.07,475.31 232.47,476.95 237.87,478.49 243.28,479.92 248.68,481.27 254.08,482.53 258.13,483.42 259.48,483.71 264.89,484.81 270.29,485.85 275.69,486.82 281.09,487.73 286.49,488.58 291.90,489.38 297.30,490.13 302.70,490.84 308.10,491.50 313.51,492.11 318.91,492.69 324.31,493.23 ' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='57.35' y1='173.55' x2='61.83' y2='169.07' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='57.35' y1='169.07' x2='61.83' y2='173.55' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='56.42' y1='171.31' x2='62.76' y2='171.31' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.59' y1='174.48' x2='59.59' y2='168.14' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='57.35' y1='170.58' x2='61.83' y2='166.09' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='57.35' y1='166.09' x2='61.83' y2='170.58' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='56.42' y1='168.33' x2='62.76' y2='168.33' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.59' y1='171.50' x2='59.59' y2='165.17' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.56' y1='200.67' x2='64.04' y2='196.19' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.56' y1='196.19' x2='64.04' y2='200.67' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='58.63' y1='198.43' x2='64.97' y2='198.43' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='61.80' y1='201.60' x2='61.80' y2='195.26' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.56' y1='192.07' x2='64.04' y2='187.59' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.56' y1='187.59' x2='64.04' y2='192.07' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='58.63' y1='189.83' x2='64.97' y2='189.83' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='61.80' y1='193.00' x2='61.80' y2='186.66' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.97' y1='230.11' x2='68.45' y2='225.63' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.97' y1='225.63' x2='68.45' y2='230.11' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.04' y1='227.87' x2='69.38' y2='227.87' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='66.21' y1='231.04' x2='66.21' y2='224.70' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.97' y1='237.05' x2='68.45' y2='232.57' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.97' y1='232.57' x2='68.45' y2='237.05' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.04' y1='234.81' x2='69.38' y2='234.81' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='66.21' y1='237.98' x2='66.21' y2='231.64' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='72.79' y1='277.73' x2='77.27' y2='273.25' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='72.79' y1='273.25' x2='77.27' y2='277.73' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='71.86' y1='275.49' x2='78.20' y2='275.49' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='75.03' y1='278.66' x2='75.03' y2='272.32' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='72.79' y1='279.72' x2='77.27' y2='275.23' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='72.79' y1='275.23' x2='77.27' y2='279.72' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='71.86' y1='277.48' x2='78.20' y2='277.48' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='75.03' y1='280.64' x2='75.03' y2='274.31' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='88.23' y1='346.85' x2='92.72' y2='342.37' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='88.23' y1='342.37' x2='92.72' y2='346.85' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='87.31' y1='344.61' x2='93.65' y2='344.61' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='90.48' y1='347.78' x2='90.48' y2='341.44' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='88.23' y1='330.98' x2='92.72' y2='326.50' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='88.23' y1='326.50' x2='92.72' y2='330.98' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='87.31' y1='328.74' x2='93.65' y2='328.74' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='90.48' y1='331.91' x2='90.48' y2='325.57' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='119.12' y1='386.87' x2='123.60' y2='382.39' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='119.12' y1='382.39' x2='123.60' y2='386.87' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='118.19' y1='384.63' x2='124.53' y2='384.63' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='121.36' y1='387.80' x2='121.36' y2='381.46' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='119.12' y1='373.31' x2='123.60' y2='368.83' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='119.12' y1='368.83' x2='123.60' y2='373.31' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='118.19' y1='371.07' x2='124.53' y2='371.07' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='121.36' y1='374.24' x2='121.36' y2='367.90' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='189.71' y1='432.51' x2='194.19' y2='428.03' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='189.71' y1='428.03' x2='194.19' y2='432.51' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='188.78' y1='430.27' x2='195.12' y2='430.27' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='191.95' y1='433.44' x2='191.95' y2='427.10' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='189.71' y1='439.13' x2='194.19' y2='434.65' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='189.71' y1='434.65' x2='194.19' y2='439.13' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='188.78' y1='436.89' x2='195.12' y2='436.89' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='191.95' y1='440.06' x2='191.95' y2='433.72' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='255.89' y1='446.40' x2='260.37' y2='441.92' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='255.89' y1='441.92' x2='260.37' y2='446.40' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='254.96' y1='444.16' x2='261.30' y2='444.16' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='258.13' y1='447.33' x2='258.13' y2='440.99' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='255.89' y1='458.64' x2='260.37' y2='454.16' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='255.89' y1='454.16' x2='260.37' y2='458.64' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='254.96' y1='456.40' x2='261.30' y2='456.40' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='258.13' y1='459.57' x2='258.13' y2='453.23' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='322.07' y1='477.82' x2='326.55' y2='473.34' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='322.07' y1='473.34' x2='326.55' y2='477.82' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='321.14' y1='475.58' x2='327.48' y2='475.58' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='324.31' y1='478.75' x2='324.31' y2='472.41' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='322.07' y1='468.56' x2='326.55' y2='464.08' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='322.07' y1='464.08' x2='326.55' y2='468.56' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='321.14' y1='466.32' x2='327.48' y2='466.32' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='324.31' y1='469.49' x2='324.31' y2='463.15' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,170.63 61.80,192.22 64.99,219.30 66.21,228.45 70.40,255.92 75.03,280.29 75.80,283.81 81.20,305.38 86.60,322.33 90.48,332.35 92.01,335.91 97.41,347.02 102.81,356.30 108.21,364.21 113.62,371.10 119.02,377.21 121.36,379.66 124.42,382.72 129.82,387.75 135.23,392.40 140.63,396.73 146.03,400.81 151.43,404.67 156.84,408.33 162.24,411.82 167.64,415.15 173.04,418.35 178.45,421.41 183.85,424.35 189.25,427.18 191.95,428.55 194.65,429.90 200.06,432.51 205.46,435.03 210.86,437.45 216.26,439.79 221.67,442.04 227.07,444.20 232.47,446.29 237.87,448.30 243.28,450.23 248.68,452.10 254.08,453.89 258.13,455.20 259.48,455.63 264.89,457.29 270.29,458.90 275.69,460.45 281.09,461.94 286.49,463.38 291.90,464.77 297.30,466.10 302.70,467.39 308.10,468.63 313.51,469.82 318.91,470.97 324.31,472.08 ' style='stroke-width: 0.75; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='56.42' y1='163.04' x2='62.76' y2='163.04' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.59' y1='166.21' x2='59.59' y2='159.87' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='56.42,163.04 59.59,159.87 62.76,163.04 59.59,166.21 56.42,163.04 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='56.42' y1='175.94' x2='62.76' y2='175.94' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.59' y1='179.11' x2='59.59' y2='172.77' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='56.42,175.94 59.59,172.77 62.76,175.94 59.59,179.11 56.42,175.94 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='58.63' y1='181.23' x2='64.97' y2='181.23' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='61.80' y1='184.40' x2='61.80' y2='178.06' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='58.63,181.23 61.80,178.06 64.97,181.23 61.80,184.40 58.63,181.23 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='58.63' y1='199.42' x2='64.97' y2='199.42' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='61.80' y1='202.59' x2='61.80' y2='196.25' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='58.63,199.42 61.80,196.25 64.97,199.42 61.80,202.59 58.63,199.42 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.04' y1='216.62' x2='69.38' y2='216.62' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='66.21' y1='219.79' x2='66.21' y2='213.45' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='63.04,216.62 66.21,213.45 69.38,216.62 66.21,219.79 63.04,216.62 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.04' y1='211.66' x2='69.38' y2='211.66' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='66.21' y1='214.83' x2='66.21' y2='208.49' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='63.04,211.66 66.21,208.49 69.38,211.66 66.21,214.83 63.04,211.66 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='71.86' y1='257.96' x2='78.20' y2='257.96' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='75.03' y1='261.13' x2='75.03' y2='254.79' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='71.86,257.96 75.03,254.79 78.20,257.96 75.03,261.13 71.86,257.96 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='71.86' y1='253.33' x2='78.20' y2='253.33' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='75.03' y1='256.50' x2='75.03' y2='250.16' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='71.86,253.33 75.03,250.16 78.20,253.33 75.03,256.50 71.86,253.33 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='87.31' y1='318.16' x2='93.65' y2='318.16' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='90.48' y1='321.32' x2='90.48' y2='314.99' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='87.31,318.16 90.48,314.99 93.65,318.16 90.48,321.32 87.31,318.16 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='87.31' y1='314.52' x2='93.65' y2='314.52' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='90.48' y1='317.69' x2='90.48' y2='311.35' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='87.31,314.52 90.48,311.35 93.65,314.52 90.48,317.69 87.31,314.52 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='118.19' y1='377.02' x2='124.53' y2='377.02' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='121.36' y1='380.19' x2='121.36' y2='373.86' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='118.19,377.02 121.36,373.86 124.53,377.02 121.36,380.19 118.19,377.02 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='118.19' y1='367.43' x2='124.53' y2='367.43' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='121.36' y1='370.60' x2='121.36' y2='364.26' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='118.19,367.43 121.36,364.26 124.53,367.43 121.36,370.60 118.19,367.43 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='188.78' y1='438.54' x2='195.12' y2='438.54' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='191.95' y1='441.71' x2='191.95' y2='435.37' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='188.78,438.54 191.95,435.37 195.12,438.54 191.95,441.71 188.78,438.54 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='188.78' y1='423.66' x2='195.12' y2='423.66' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='191.95' y1='426.83' x2='191.95' y2='420.49' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='188.78,423.66 191.95,420.49 195.12,423.66 191.95,426.83 188.78,423.66 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='254.96' y1='454.08' x2='261.30' y2='454.08' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='258.13' y1='457.25' x2='258.13' y2='450.92' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='254.96,454.08 258.13,450.92 261.30,454.08 258.13,457.25 254.96,454.08 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='254.96' y1='454.42' x2='261.30' y2='454.42' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='258.13' y1='457.58' x2='258.13' y2='451.25' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='254.96,454.42 258.13,451.25 261.30,454.42 258.13,457.58 254.96,454.42 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='321.14' y1='477.90' x2='327.48' y2='477.90' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='324.31' y1='481.07' x2='324.31' y2='474.73' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='321.14,477.90 324.31,474.73 327.48,477.90 324.31,481.07 321.14,477.90 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='321.14' y1='474.92' x2='327.48' y2='474.92' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='324.31' y1='478.09' x2='324.31' y2='471.75' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='321.14,474.92 324.31,471.75 327.48,474.92 324.31,478.09 321.14,474.92 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,170.55 61.80,186.36 64.99,207.17 66.21,214.49 70.40,237.47 75.03,259.39 75.80,262.70 81.20,283.87 86.60,301.77 90.48,312.94 92.01,317.03 97.41,330.17 102.81,341.57 108.21,351.56 113.62,360.40 119.02,368.28 121.36,371.44 124.42,375.37 129.82,381.80 135.23,387.68 140.63,393.08 146.03,398.09 151.43,402.74 156.84,407.09 162.24,411.18 167.64,415.03 173.04,418.67 178.45,422.12 183.85,425.39 189.25,428.51 191.95,430.01 194.65,431.47 200.06,434.31 205.46,437.01 210.86,439.60 216.26,442.08 221.67,444.45 227.07,446.72 232.47,448.90 237.87,450.98 243.28,452.99 248.68,454.91 254.08,456.75 258.13,458.08 259.48,458.52 264.89,460.22 270.29,461.85 275.69,463.41 281.09,464.91 286.49,466.36 291.90,467.74 297.30,469.07 302.70,470.35 308.10,471.58 313.51,472.75 318.91,473.88 324.31,474.97 ' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='59.59' cy='169.66' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='57.35' y1='169.66' x2='61.83' y2='169.66' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.59' y1='171.90' x2='59.59' y2='167.42' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='59.59' cy='186.86' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='57.35' y1='186.86' x2='61.83' y2='186.86' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.59' y1='189.10' x2='59.59' y2='184.61' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='61.80' cy='182.23' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.56' y1='182.23' x2='64.04' y2='182.23' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='61.80' y1='184.47' x2='61.80' y2='179.98' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='61.80' cy='188.51' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.56' y1='188.51' x2='64.04' y2='188.51' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='61.80' y1='190.75' x2='61.80' y2='186.27' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='66.21' cy='210.34' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.97' y1='210.34' x2='68.45' y2='210.34' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='66.21' y1='212.58' x2='66.21' y2='208.10' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='66.21' cy='193.80' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.97' y1='193.80' x2='68.45' y2='193.80' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='66.21' y1='196.04' x2='66.21' y2='191.56' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='75.03' cy='240.43' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='72.79' y1='240.43' x2='77.27' y2='240.43' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='75.03' y1='242.67' x2='75.03' y2='238.19' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='75.03' cy='231.83' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='72.79' y1='231.83' x2='77.27' y2='231.83' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='75.03' y1='234.08' x2='75.03' y2='229.59' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='90.48' cy='284.75' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='88.23' y1='284.75' x2='92.72' y2='284.75' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='90.48' y1='286.99' x2='90.48' y2='282.51' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='90.48' cy='262.26' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='88.23' y1='262.26' x2='92.72' y2='262.26' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='90.48' y1='264.50' x2='90.48' y2='260.02' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='121.36' cy='332.38' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='119.12' y1='332.38' x2='123.60' y2='332.38' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='121.36' y1='334.62' x2='121.36' y2='330.14' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='121.36' cy='340.98' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='119.12' y1='340.98' x2='123.60' y2='340.98' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='121.36' y1='343.22' x2='121.36' y2='338.73' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='191.95' cy='409.44' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='189.71' y1='409.44' x2='194.19' y2='409.44' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='191.95' y1='411.68' x2='191.95' y2='407.20' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='191.95' cy='419.36' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='189.71' y1='419.36' x2='194.19' y2='419.36' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='191.95' y1='421.60' x2='191.95' y2='417.12' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='258.13' cy='451.77' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='255.89' y1='451.77' x2='260.37' y2='451.77' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='258.13' y1='454.01' x2='258.13' y2='449.53' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='258.13' cy='455.74' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='255.89' y1='455.74' x2='260.37' y2='455.74' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='258.13' y1='457.98' x2='258.13' y2='453.50' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='324.31' cy='460.04' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='322.07' y1='460.04' x2='326.55' y2='460.04' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='324.31' y1='462.28' x2='324.31' y2='457.80' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='324.31' cy='469.30' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='322.07' y1='469.30' x2='326.55' y2='469.30' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='324.31' y1='471.54' x2='324.31' y2='467.06' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,171.63 61.80,181.26 64.99,194.54 66.21,199.38 70.40,215.26 75.03,231.50 75.80,234.06 81.20,251.13 86.60,266.68 90.48,276.98 92.01,280.87 97.41,293.85 102.81,305.75 108.21,316.69 113.62,326.76 119.02,336.05 121.36,339.85 124.42,344.64 129.82,352.61 135.23,360.02 140.63,366.91 146.03,373.34 151.43,379.35 156.84,384.98 162.24,390.26 167.64,395.23 173.04,399.90 178.45,404.31 183.85,408.48 189.25,412.41 191.95,414.30 194.65,416.14 200.06,419.68 205.46,423.04 210.86,426.23 216.26,429.27 221.67,432.16 227.07,434.91 232.47,437.55 237.87,440.06 243.28,442.46 248.68,444.75 254.08,446.95 258.13,448.53 259.48,449.05 264.89,451.06 270.29,452.99 275.69,454.84 281.09,456.61 286.49,458.31 291.90,459.94 297.30,461.51 302.70,463.01 308.10,464.46 313.51,465.84 318.91,467.18 324.31,468.46 ' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,178.43 62.61,172.34 56.57,172.34 59.59,178.43 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,171.46 62.61,177.56 56.57,177.56 59.59,171.46 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,174.47 62.61,168.37 56.57,168.37 59.59,174.47 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,167.50 62.61,173.59 56.57,173.59 59.59,167.50 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='61.80,174.14 64.82,168.04 58.78,168.04 61.80,174.14 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='61.80,167.17 64.82,173.26 58.78,173.26 61.80,167.17 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='61.80,179.76 64.82,173.66 58.78,173.66 61.80,179.76 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='61.80,172.79 64.82,178.89 58.78,178.89 61.80,172.79 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='66.21,193.32 69.23,187.22 63.19,187.22 66.21,193.32 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='66.21,186.35 69.23,192.45 63.19,192.45 66.21,186.35 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='66.21,188.36 69.23,182.26 63.19,182.26 66.21,188.36 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='66.21,181.39 69.23,187.49 63.19,187.49 66.21,181.39 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='75.03,232.01 78.05,225.91 72.02,225.91 75.03,232.01 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='75.03,225.04 78.05,231.14 72.02,231.14 75.03,225.04 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='75.03,226.72 78.05,220.62 72.02,220.62 75.03,226.72 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='75.03,219.75 78.05,225.85 72.02,225.85 75.03,219.75 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='90.48,266.08 93.49,259.98 87.46,259.98 90.48,266.08 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='90.48,259.11 93.49,265.21 87.46,265.21 90.48,259.11 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='90.48,257.15 93.49,251.05 87.46,251.05 90.48,257.15 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='90.48,250.18 93.49,256.28 87.46,256.28 90.48,250.18 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='121.36,330.57 124.38,324.47 118.34,324.47 121.36,330.57 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='121.36,323.60 124.38,329.70 118.34,329.70 121.36,323.60 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='121.36,322.63 124.38,316.53 118.34,316.53 121.36,322.63 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='121.36,315.66 124.38,321.76 118.34,321.76 121.36,315.66 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='191.95,389.11 194.97,383.01 188.93,383.01 191.95,389.11 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='191.95,382.14 194.97,388.24 188.93,388.24 191.95,382.14 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='191.95,395.06 194.97,388.96 188.93,388.96 191.95,395.06 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='191.95,388.09 194.97,394.19 188.93,394.19 191.95,388.09 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='258.13,437.40 261.15,431.30 255.11,431.30 258.13,437.40 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='258.13,430.43 261.15,436.52 255.11,436.52 258.13,430.43 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='258.13,433.43 261.15,427.33 255.11,427.33 258.13,433.43 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='258.13,426.46 261.15,432.56 255.11,432.56 258.13,426.46 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='324.31,456.25 327.33,450.15 321.29,450.15 324.31,456.25 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='324.31,449.28 327.33,455.38 321.29,455.38 324.31,449.28 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='324.31,458.56 327.33,452.46 321.29,452.46 324.31,458.56 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='324.31,451.59 327.33,457.69 321.29,457.69 324.31,451.59 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,169.92 61.80,178.05 64.99,189.33 66.21,193.47 70.40,207.12 75.03,221.21 75.80,223.44 81.20,238.45 86.60,252.28 90.48,261.52 92.01,265.04 97.41,276.83 102.81,287.76 108.21,297.89 113.62,307.32 119.02,316.09 121.36,319.71 124.42,324.28 129.82,331.94 135.23,339.11 140.63,345.83 146.03,352.16 151.43,358.11 156.84,363.72 162.24,369.02 167.64,374.03 173.04,378.78 178.45,383.29 183.85,387.57 189.25,391.64 191.95,393.60 194.65,395.52 200.06,399.22 205.46,402.75 210.86,406.13 216.26,409.35 221.67,412.45 227.07,415.41 232.47,418.26 237.87,420.99 243.28,423.61 248.68,426.13 254.08,428.56 258.13,430.32 259.48,430.90 264.89,433.15 270.29,435.32 275.69,437.41 281.09,439.42 286.49,441.37 291.90,443.25 297.30,445.07 302.70,446.82 308.10,448.51 313.51,450.15 318.91,451.74 324.31,453.27 ' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='57.35' y1='172.30' x2='61.83' y2='172.30' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.59' y1='174.54' x2='59.59' y2='170.06' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='57.35' y='170.06' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='57.35' y1='173.30' x2='61.83' y2='173.30' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.59' y1='175.54' x2='59.59' y2='171.05' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='57.35' y='171.05' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.56' y1='187.19' x2='64.04' y2='187.19' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='61.80' y1='189.43' x2='61.80' y2='184.95' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='59.56' y='184.95' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.56' y1='180.24' x2='64.04' y2='180.24' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='61.80' y1='182.48' x2='61.80' y2='178.00' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='59.56' y='178.00' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.97' y1='192.48' x2='68.45' y2='192.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='66.21' y1='194.72' x2='66.21' y2='190.24' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='63.97' y='190.24' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.97' y1='192.15' x2='68.45' y2='192.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='66.21' y1='194.39' x2='66.21' y2='189.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='63.97' y='189.91' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='72.79' y1='215.63' x2='77.27' y2='215.63' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='75.03' y1='217.87' x2='75.03' y2='213.39' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='72.79' y='213.39' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='72.79' y1='222.91' x2='77.27' y2='222.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='75.03' y1='225.15' x2='75.03' y2='220.66' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='72.79' y='220.66' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='88.23' y1='282.11' x2='92.72' y2='282.11' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='90.48' y1='284.35' x2='90.48' y2='279.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='88.23' y='279.86' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='88.23' y1='270.53' x2='92.72' y2='270.53' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='90.48' y1='272.77' x2='90.48' y2='268.29' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='88.23' y='268.29' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='119.12' y1='338.00' x2='123.60' y2='338.00' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='121.36' y1='340.24' x2='121.36' y2='335.76' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='119.12' y='335.76' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='119.12' y1='331.38' x2='123.60' y2='331.38' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='121.36' y1='333.63' x2='121.36' y2='329.14' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='119.12' y='329.14' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='189.71' y1='431.26' x2='194.19' y2='431.26' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='191.95' y1='433.51' x2='191.95' y2='429.02' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='189.71' y='429.02' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='189.71' y1='415.72' x2='194.19' y2='415.72' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='191.95' y1='417.96' x2='191.95' y2='413.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='189.71' y='413.48' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='255.89' y1='453.42' x2='260.37' y2='453.42' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='258.13' y1='455.66' x2='258.13' y2='451.18' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='255.89' y='451.18' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='255.89' y1='452.43' x2='260.37' y2='452.43' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='258.13' y1='454.67' x2='258.13' y2='450.19' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='255.89' y='450.19' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='322.07' y1='466.32' x2='326.55' y2='466.32' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='324.31' y1='468.56' x2='324.31' y2='464.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='322.07' y='464.08' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='322.07' y1='473.27' x2='326.55' y2='473.27' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='324.31' y1='475.51' x2='324.31' y2='471.03' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='322.07' y='471.03' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,170.34 61.80,179.27 64.99,191.68 66.21,196.24 70.40,211.33 75.03,226.97 75.80,229.44 81.20,246.16 86.60,261.60 90.48,271.95 92.01,275.89 97.41,289.12 102.81,301.38 108.21,312.76 113.62,323.34 119.02,333.18 121.36,337.24 124.42,342.35 129.82,350.90 135.23,358.88 140.63,366.34 146.03,373.31 151.43,379.85 156.84,385.98 162.24,391.73 167.64,397.13 173.04,402.22 178.45,407.00 183.85,411.51 189.25,415.76 191.95,417.80 194.65,419.78 200.06,423.57 205.46,427.16 210.86,430.55 216.26,433.76 221.67,436.81 227.07,439.70 232.47,442.44 237.87,445.04 243.28,447.52 248.68,449.87 254.08,452.11 258.13,453.71 259.48,454.24 264.89,456.26 270.29,458.20 275.69,460.04 281.09,461.79 286.49,463.47 291.90,465.07 297.30,466.59 302.70,468.05 308.10,469.44 313.51,470.77 318.91,472.04 324.31,473.26 ' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='59.59' cy='167.67' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='57.35' y1='169.91' x2='61.83' y2='165.43' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='57.35' y1='165.43' x2='61.83' y2='169.91' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='59.59' cy='173.63' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='57.35' y1='175.87' x2='61.83' y2='171.39' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='57.35' y1='171.39' x2='61.83' y2='175.87' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='61.80' cy='178.26' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.56' y1='180.50' x2='64.04' y2='176.02' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.56' y1='176.02' x2='64.04' y2='180.50' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='61.80' cy='172.63' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.56' y1='174.88' x2='64.04' y2='170.39' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='59.56' y1='170.39' x2='64.04' y2='174.88' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='66.21' cy='193.47' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.97' y1='195.71' x2='68.45' y2='191.23' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.97' y1='191.23' x2='68.45' y2='195.71' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='66.21' cy='204.05' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.97' y1='206.29' x2='68.45' y2='201.81' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='63.97' y1='201.81' x2='68.45' y2='206.29' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='75.03' cy='252.01' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='72.79' y1='254.25' x2='77.27' y2='249.77' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='72.79' y1='249.77' x2='77.27' y2='254.25' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='75.03' cy='240.43' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='72.79' y1='242.67' x2='77.27' y2='238.19' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='72.79' y1='238.19' x2='77.27' y2='242.67' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='90.48' cy='291.04' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='88.23' y1='293.28' x2='92.72' y2='288.79' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='88.23' y1='288.79' x2='92.72' y2='293.28' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='90.48' cy='291.70' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='88.23' y1='293.94' x2='92.72' y2='289.46' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='88.23' y1='289.46' x2='92.72' y2='293.94' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='121.36' cy='363.80' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='119.12' y1='366.04' x2='123.60' y2='361.55' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='119.12' y1='361.55' x2='123.60' y2='366.04' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='121.36' cy='366.44' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='119.12' y1='368.68' x2='123.60' y2='364.20' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='119.12' y1='364.20' x2='123.60' y2='368.68' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='191.95' cy='437.55' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='189.71' y1='439.79' x2='194.19' y2='435.31' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='189.71' y1='435.31' x2='194.19' y2='439.79' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='191.95' cy='426.30' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='189.71' y1='428.54' x2='194.19' y2='424.06' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='189.71' y1='424.06' x2='194.19' y2='428.54' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='258.13' cy='454.75' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='255.89' y1='456.99' x2='260.37' y2='452.51' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='255.89' y1='452.51' x2='260.37' y2='456.99' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='258.13' cy='469.30' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='255.89' y1='471.54' x2='260.37' y2='467.06' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='255.89' y1='467.06' x2='260.37' y2='471.54' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='324.31' cy='474.26' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='322.07' y1='476.50' x2='326.55' y2='472.02' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='322.07' y1='472.02' x2='326.55' y2='476.50' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<circle cx='324.31' cy='484.18' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='322.07' y1='486.42' x2='326.55' y2='481.94' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<line x1='322.07' y1='481.94' x2='326.55' y2='486.42' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,169.71 61.80,181.72 64.99,198.08 66.21,203.99 70.40,223.16 75.03,242.41 75.80,245.41 81.20,265.20 86.60,282.86 90.48,294.36 92.01,298.66 97.41,312.86 102.81,325.64 108.21,337.20 113.62,347.69 119.02,357.22 121.36,361.09 124.42,365.93 129.82,373.90 135.23,381.22 140.63,387.97 146.03,394.20 151.43,399.97 156.84,405.32 162.24,410.31 167.64,414.96 173.04,419.32 178.45,423.39 183.85,427.22 189.25,430.82 191.95,432.53 194.65,434.20 200.06,437.40 205.46,440.42 210.86,443.27 216.26,445.97 221.67,448.53 227.07,450.96 232.47,453.26 237.87,455.45 243.28,457.53 248.68,459.51 254.08,461.39 258.13,462.74 259.48,463.18 264.89,464.89 270.29,466.52 275.69,468.07 281.09,469.55 286.49,470.96 291.90,472.31 297.30,473.59 302.70,474.82 308.10,475.99 313.51,477.11 318.91,478.18 324.31,479.20 ' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,169.40 61.83,173.88 57.35,173.88 59.59,169.40 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='57.35' y='169.40' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,170.39 61.83,174.88 57.35,174.88 59.59,170.39 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='57.35' y='170.39' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='61.80,187.26 64.04,191.74 59.56,191.74 61.80,187.26 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='59.56' y='187.26' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='61.80,177.01 64.04,181.49 59.56,181.49 61.80,177.01 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='59.56' y='177.01' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='66.21,210.41 68.45,214.89 63.97,214.89 66.21,210.41 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='63.97' y='210.41' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='66.21,209.42 68.45,213.90 63.97,213.90 66.21,209.42 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='63.97' y='209.42' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='75.03,245.47 77.27,249.95 72.79,249.95 75.03,245.47 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='72.79' y='245.47' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='75.03,248.45 77.27,252.93 72.79,252.93 75.03,248.45 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='72.79' y='248.45' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='90.48,297.72 92.72,302.21 88.23,302.21 90.48,297.72 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='88.23' y='297.72' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='90.48,304.34 92.72,308.82 88.23,308.82 90.48,304.34 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='88.23' y='304.34' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='121.36,364.20 123.60,368.68 119.12,368.68 121.36,364.20 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='119.12' y='364.20' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='121.36,359.24 123.60,363.72 119.12,363.72 121.36,359.24 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='119.12' y='359.24' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='191.95,438.61 194.19,443.10 189.71,443.10 191.95,438.61 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='189.71' y='438.61' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='191.95,435.64 194.19,440.12 189.71,440.12 191.95,435.64 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='189.71' y='435.64' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='258.13,464.08 260.37,468.56 255.89,468.56 258.13,464.08 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='255.89' y='464.08' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='258.13,462.43 260.37,466.91 255.89,466.91 258.13,462.43 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='255.89' y='462.43' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='324.31,477.64 326.55,482.12 322.07,482.12 324.31,477.64 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='322.07' y='477.64' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='324.31,483.26 326.55,487.75 322.07,487.75 324.31,483.26 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<rect x='322.07' y='483.26' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,170.80 61.80,184.03 64.99,201.86 66.21,208.25 70.40,228.80 75.03,249.14 75.80,252.28 81.20,272.83 86.60,290.90 90.48,302.54 92.01,306.86 97.41,321.03 102.81,333.67 108.21,344.99 113.62,355.19 119.02,364.41 121.36,368.13 124.42,372.78 129.82,380.43 135.23,387.43 140.63,393.87 146.03,399.81 151.43,405.32 156.84,410.43 162.24,415.19 167.64,419.64 173.04,423.80 178.45,427.70 183.85,431.37 189.25,434.83 191.95,436.48 194.65,438.09 200.06,441.17 205.46,444.08 210.86,446.83 216.26,449.44 221.67,451.91 227.07,454.26 232.47,456.48 237.87,458.60 243.28,460.61 248.68,462.53 254.08,464.34 258.13,465.65 259.48,466.08 264.89,467.72 270.29,469.29 275.69,470.79 281.09,472.21 286.49,473.57 291.90,474.86 297.30,476.09 302.70,477.26 308.10,478.38 313.51,479.45 318.91,480.46 324.31,481.43 ' style='stroke-width: 0.75; stroke: #F5C710; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polygon points='57.35,171.90 61.83,171.90 61.83,167.42 57.35,167.42 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polygon points='57.35,169.58 61.83,169.58 61.83,165.10 57.35,165.10 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polygon points='59.56,201.66 64.04,201.66 64.04,197.18 59.56,197.18 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polygon points='59.56,182.48 64.04,182.48 64.04,178.00 59.56,178.00 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polygon points='63.97,205.63 68.45,205.63 68.45,201.15 63.97,201.15 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polygon points='63.97,214.23 68.45,214.23 68.45,209.75 63.97,209.75 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polygon points='72.79,257.89 77.27,257.89 77.27,253.41 72.79,253.41 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polygon points='72.79,244.99 77.27,244.99 77.27,240.51 72.79,240.51 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polygon points='88.23,299.23 92.72,299.23 92.72,294.75 88.23,294.75 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polygon points='88.23,290.96 92.72,290.96 92.72,286.48 88.23,286.48 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polygon points='119.12,345.86 123.60,345.86 123.60,341.38 119.12,341.38 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polygon points='119.12,345.86 123.60,345.86 123.60,341.38 119.12,341.38 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polygon points='189.71,421.27 194.19,421.27 194.19,416.79 189.71,416.79 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polygon points='189.71,393.16 194.19,393.16 194.19,388.67 189.71,388.67 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polygon points='255.89,442.44 260.37,442.44 260.37,437.95 255.89,437.95 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polygon points='255.89,440.78 260.37,440.78 260.37,436.30 255.89,436.30 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polygon points='322.07,464.92 326.55,464.92 326.55,460.44 322.07,460.44 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polygon points='322.07,457.32 326.55,457.32 326.55,452.84 322.07,452.84 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<polyline points='59.59,170.66 61.80,184.13 64.99,201.90 66.21,208.16 70.40,227.86 75.03,246.76 75.80,249.62 81.20,267.99 86.60,283.65 90.48,293.50 92.01,297.12 97.41,308.83 102.81,319.10 108.21,328.20 113.62,336.35 119.02,343.71 121.36,346.69 124.42,350.41 129.82,356.57 135.23,362.26 140.63,367.57 146.03,372.54 151.43,377.21 156.84,381.64 162.24,385.83 167.64,389.83 173.04,393.65 178.45,397.30 183.85,400.80 189.25,404.16 191.95,405.79 194.65,407.39 200.06,410.50 205.46,413.50 210.86,416.39 216.26,419.18 221.67,421.87 227.07,424.47 232.47,426.98 237.87,429.41 243.28,431.75 248.68,434.02 254.08,436.21 258.13,437.81 259.48,438.33 264.89,440.38 270.29,442.36 275.69,444.28 281.09,446.14 286.49,447.93 291.90,449.67 297.30,451.34 302.70,452.97 308.10,454.54 313.51,456.06 318.91,457.53 324.31,458.96 ' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNDYuMDc=)' />
<defs>
  <clipPath id='cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3'>
    <rect x='409.00' y='146.07' width='285.90' height='368.97' />
  </clipPath>
</defs>
<defs>
  <clipPath id='cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA='>
    <rect x='0.00' y='0.00' width='720.00' height='576.00' />
  </clipPath>
</defs>
<line x1='419.59' y1='515.04' x2='683.56' y2='515.04' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='419.59' y1='515.04' x2='419.59' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='472.39' y1='515.04' x2='472.39' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='525.18' y1='515.04' x2='525.18' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='577.97' y1='515.04' x2='577.97' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='630.77' y1='515.04' x2='630.77' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='683.56' y1='515.04' x2='683.56' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='416.83' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='466.85' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='519.65' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='572.44' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>60</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='625.24' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>80</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='675.27' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='16.59px' lengthAdjust='spacingAndGlyphs'>100</text></g>
<line x1='409.00' y1='505.61' x2='409.00' y2='155.51' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='409.00' y1='505.61' x2='403.03' y2='505.61' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='409.00' y1='447.26' x2='403.03' y2='447.26' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='409.00' y1='388.91' x2='403.03' y2='388.91' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='409.00' y1='330.56' x2='403.03' y2='330.56' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='409.00' y1='272.21' x2='403.03' y2='272.21' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='409.00' y1='213.86' x2='403.03' y2='213.86' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='409.00' y1='155.51' x2='403.03' y2='155.51' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(394.66,510.03) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='8.84px' lengthAdjust='spacingAndGlyphs'>-3</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(394.66,451.68) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='8.84px' lengthAdjust='spacingAndGlyphs'>-2</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(394.66,393.33) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='8.84px' lengthAdjust='spacingAndGlyphs'>-1</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(394.66,333.32) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(394.66,274.97) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>1</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(394.66,216.62) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>2</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(394.66,158.27) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>3</text></g>
<polyline points='409.00,515.04 694.90,515.04 694.90,146.07 409.00,146.07 409.00,515.04 ' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<defs>
  <clipPath id='cpMzYwLjAwfDcyMC4wMHw1NzYuMDB8MTMyLjky'>
    <rect x='360.00' y='132.92' width='360.00' height='443.08' />
  </clipPath>
</defs>
<g clip-path='url(#cpMzYwLjAwfDcyMC4wMHw1NzYuMDB8MTMyLjky)'><text x='530.93' y='560.46' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='42.05px' lengthAdjust='spacingAndGlyphs'>Predicted</text></g>
<g clip-path='url(#cpMzYwLjAwfDcyMC4wMHw1NzYuMDB8MTMyLjky)'><text transform='translate(370.76,378.69) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='96.27px' lengthAdjust='spacingAndGlyphs'>Standardized residual</text></g>
<defs>
  <clipPath id='cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3'>
    <rect x='409.00' y='146.07' width='285.90' height='368.97' />
  </clipPath>
</defs>
<line x1='409.00' y1='330.56' x2='694.90' y2='330.56' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='684.31' cy='286.90' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='684.31' cy='357.70' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='675.71' cy='368.28' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='675.71' cy='340.58' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='659.74' cy='222.04' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='659.74' cy='308.23' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='632.05' cy='290.15' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='632.05' cy='219.35' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='594.33' cy='299.70' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='594.33' cy='398.20' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='545.13' cy='409.27' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='545.13' cy='418.51' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='490.13' cy='334.36' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='490.13' cy='257.41' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='464.48' cy='275.30' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='464.48' cy='333.78' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='448.77' cy='390.73' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='448.77' cy='289.15' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='684.22,233.16 687.24,238.39 681.20,238.39 684.22,233.16 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='684.22,300.88 687.24,306.11 681.20,306.11 684.22,300.88 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='676.84,384.15 679.86,389.37 673.82,389.37 676.84,384.15 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='676.84,261.02 679.86,266.25 673.82,266.25 676.84,261.02 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='662.95,339.15 665.97,344.37 659.93,344.37 662.95,339.15 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='662.95,329.91 665.97,335.14 659.93,335.14 662.95,329.91 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='638.27,319.12 641.29,324.35 635.25,324.35 638.27,319.12 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='638.27,371.45 641.29,376.68 635.25,376.68 638.27,371.45 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='603.18,343.94 606.20,349.17 600.16,349.17 603.18,343.94 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='603.18,300.85 606.20,306.07 600.16,306.07 603.18,300.85 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='554.27,263.00 557.28,268.23 551.25,268.23 554.27,263.00 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='554.27,361.50 557.28,366.73 551.25,366.73 554.27,361.50 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='495.21,325.45 498.23,330.68 492.19,330.68 495.21,325.45 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='495.21,270.05 498.23,275.27 492.19,275.27 495.21,270.05 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='467.16,318.42 470.17,323.64 464.14,323.64 467.16,318.42 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='467.16,423.08 470.17,428.30 464.14,428.30 467.16,423.08 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='450.26,321.48 453.28,326.71 447.24,326.71 450.26,321.48 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='450.26,303.01 453.28,308.24 447.24,308.24 450.26,303.01 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='681.14' y1='243.84' x2='687.48' y2='243.84' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='684.31' y1='247.00' x2='684.31' y2='240.67' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='681.14' y1='277.70' x2='687.48' y2='277.70' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='684.31' y1='280.86' x2='684.31' y2='274.53' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='672.73' y1='272.03' x2='679.07' y2='272.03' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='675.90' y1='275.20' x2='675.90' y2='268.86' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='672.73' y1='404.39' x2='679.07' y2='404.39' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='675.90' y1='407.56' x2='675.90' y2='401.22' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='656.92' y1='392.35' x2='663.26' y2='392.35' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='660.09' y1='395.52' x2='660.09' y2='389.18' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='656.92' y1='266.15' x2='663.26' y2='266.15' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='660.09' y1='269.32' x2='660.09' y2='262.98' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='628.86' y1='305.27' x2='635.20' y2='305.27' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='632.03' y1='308.43' x2='632.03' y2='302.10' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='628.86' y1='369.91' x2='635.20' y2='369.91' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='632.03' y1='373.08' x2='632.03' y2='366.74' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='589.15' y1='291.61' x2='595.49' y2='291.61' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='592.32' y1='294.78' x2='592.32' y2='288.44' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='589.15' y1='334.70' x2='595.49' y2='334.70' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='592.32' y1='337.87' x2='592.32' y2='331.53' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='534.61' y1='357.44' x2='540.95' y2='357.44' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='537.78' y1='360.61' x2='537.78' y2='354.27' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='534.61' y1='305.11' x2='540.95' y2='305.11' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='537.78' y1='308.28' x2='537.78' y2='301.95' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='472.56' y1='249.44' x2='478.89' y2='249.44' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='475.73' y1='252.61' x2='475.73' y2='246.27' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='472.56' y1='391.04' x2='478.89' y2='391.04' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='475.73' y1='394.21' x2='475.73' y2='387.87' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='446.75' y1='437.97' x2='453.09' y2='437.97' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='449.92' y1='441.14' x2='449.92' y2='434.80' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='446.75' y1='357.94' x2='453.09' y2='357.94' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='449.92' y1='361.11' x2='449.92' y2='354.77' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='433.33' y1='315.30' x2='439.67' y2='315.30' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='436.50' y1='318.47' x2='436.50' y2='312.13' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='433.33' y1='244.50' x2='439.67' y2='244.50' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='436.50' y1='247.67' x2='436.50' y2='241.33' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='681.30' y1='237.15' x2='685.78' y2='232.67' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='681.30' y1='232.67' x2='685.78' y2='237.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='681.30' y1='354.12' x2='685.78' y2='349.64' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='681.30' y1='349.64' x2='685.78' y2='354.12' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='672.51' y1='396.23' x2='676.99' y2='391.75' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='672.51' y1='391.75' x2='676.99' y2='396.23' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='672.51' y1='420.86' x2='676.99' y2='416.37' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='672.51' y1='416.37' x2='676.99' y2='420.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='655.96' y1='341.77' x2='660.44' y2='337.29' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='655.96' y1='337.29' x2='660.44' y2='341.77' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='655.96' y1='332.54' x2='660.44' y2='328.05' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='655.96' y1='328.05' x2='660.44' y2='332.54' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='626.60' y1='356.54' x2='631.09' y2='352.06' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='626.60' y1='352.06' x2='631.09' y2='356.54' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='626.60' y1='298.05' x2='631.09' y2='293.57' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='626.60' y1='293.57' x2='631.09' y2='298.05' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='585.11' y1='303.66' x2='589.60' y2='299.18' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='585.11' y1='299.18' x2='589.60' y2='303.66' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='585.11' y1='362.15' x2='589.60' y2='357.66' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='585.11' y1='357.66' x2='589.60' y2='362.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='528.47' y1='277.22' x2='532.95' y2='272.73' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='528.47' y1='272.73' x2='532.95' y2='277.22' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='528.47' y1='329.54' x2='532.95' y2='325.06' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='528.47' y1='325.06' x2='532.95' y2='329.54' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='465.77' y1='352.63' x2='470.26' y2='348.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='465.77' y1='348.15' x2='470.26' y2='352.63' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='465.77' y1='340.32' x2='470.26' y2='335.84' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='465.77' y1='335.84' x2='470.26' y2='340.32' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='441.42' y1='382.60' x2='445.90' y2='378.12' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='441.42' y1='378.12' x2='445.90' y2='382.60' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='441.42' y1='397.99' x2='445.90' y2='393.51' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='441.42' y1='393.51' x2='445.90' y2='397.99' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='429.72' y1='273.83' x2='434.20' y2='269.34' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='429.72' y1='269.34' x2='434.20' y2='273.83' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='429.72' y1='320.00' x2='434.20' y2='315.52' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='429.72' y1='315.52' x2='434.20' y2='320.00' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='680.11,438.02 683.28,434.85 686.44,438.02 683.28,441.19 680.11,438.02 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='680.11,299.50 683.28,296.33 686.44,299.50 683.28,302.67 680.11,299.50 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='666.92,410.47 670.09,407.31 673.26,410.47 670.09,413.64 666.92,410.47 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='666.92,262.72 670.09,259.55 673.26,262.72 670.09,265.89 666.92,262.72 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='643.91,354.49 647.08,351.32 650.24,354.49 647.08,357.66 643.91,354.49 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='643.91,305.24 647.08,302.07 650.24,305.24 647.08,308.41 643.91,305.24 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='608.38,386.55 611.55,383.38 614.72,386.55 611.55,389.72 608.38,386.55 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='608.38,432.72 611.55,429.56 614.72,432.72 611.55,435.89 608.38,432.72 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='567.89,206.84 571.06,203.67 574.23,206.84 571.06,210.01 567.89,206.84 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='567.89,320.74 571.06,317.57 574.23,320.74 571.06,323.91 567.89,320.74 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='524.75,384.06 527.92,380.89 531.09,384.06 527.92,387.23 524.75,384.06 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='524.75,254.78 527.92,251.61 531.09,254.78 527.92,257.95 524.75,254.78 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='478.17,394.95 481.34,391.78 484.51,394.95 481.34,398.12 478.17,394.95 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='478.17,327.23 481.34,324.06 484.51,327.23 481.34,330.40 478.17,327.23 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='454.15,296.51 457.32,293.34 460.49,296.51 457.32,299.68 454.15,296.51 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='454.15,321.13 457.32,317.97 460.49,321.13 457.32,324.30 454.15,321.13 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='439.52,319.77 442.69,316.60 445.86,319.77 442.69,322.94 439.52,319.77 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='439.52,365.94 442.69,362.77 445.86,365.94 442.69,369.11 439.52,365.94 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='684.11,371.17 687.13,365.95 681.09,365.95 684.11,371.17 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='684.11,263.44 687.13,258.21 681.09,258.21 684.11,263.44 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='675.95,312.93 678.96,307.71 672.93,307.71 675.95,312.93 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='675.95,368.34 678.96,363.11 672.93,363.11 675.95,368.34 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='660.86,312.51 663.88,307.28 657.84,307.28 660.86,312.51 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='660.86,303.27 663.88,298.04 657.84,298.04 660.86,303.27 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='634.99,343.22 638.01,337.99 631.97,337.99 634.99,343.22 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='634.99,269.35 638.01,264.12 631.97,264.12 634.99,269.35 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='600.27,363.20 603.29,357.97 597.25,357.97 600.27,363.20 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='600.27,360.12 603.29,354.89 597.25,354.89 600.27,360.12 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='555.68,397.26 558.70,392.03 552.66,392.03 555.68,397.26 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='555.68,280.29 558.70,275.06 552.66,275.06 555.68,280.29 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='504.62,399.04 507.64,393.81 501.60,393.81 504.62,399.04 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='504.62,288.22 507.64,282.99 501.60,282.99 504.62,288.22 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='478.40,271.78 481.42,266.55 475.38,266.55 478.40,271.78 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='478.40,265.62 481.42,260.40 475.38,260.40 478.40,265.62 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='460.82,408.50 463.84,403.27 457.80,403.27 460.82,408.50 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='460.82,331.54 463.84,326.31 457.80,326.31 460.82,331.54 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='681.40' y='387.67' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='681.40' y1='392.15' x2='685.88' y2='387.67' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='681.40' y1='387.67' x2='685.88' y2='392.15' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='681.40' y='252.23' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='681.40' y1='256.71' x2='685.88' y2='252.23' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='681.40' y1='252.23' x2='685.88' y2='256.71' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='666.68' y='379.17' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='666.68' y1='383.66' x2='671.16' y2='379.17' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='666.68' y1='379.17' x2='671.16' y2='383.66' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='666.68' y='308.38' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='666.68' y1='312.86' x2='671.16' y2='308.38' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='666.68' y1='308.38' x2='671.16' y2='312.86' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='640.57' y='324.04' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='640.57' y1='328.52' x2='645.05' y2='324.04' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='640.57' y1='324.04' x2='645.05' y2='328.52' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='640.57' y='348.67' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='640.57' y1='353.15' x2='645.05' y2='348.67' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='640.57' y1='348.67' x2='645.05' y2='353.15' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='599.09' y='332.85' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='599.09' y1='337.34' x2='603.57' y2='332.85' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='599.09' y1='332.85' x2='603.57' y2='337.34' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='599.09' y='342.09' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='599.09' y1='346.57' x2='603.57' y2='342.09' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='599.09' y1='342.09' x2='603.57' y2='346.57' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='549.95' y='378.53' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='549.95' y1='383.01' x2='554.43' y2='378.53' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='549.95' y1='378.53' x2='554.43' y2='383.01' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='549.95' y='258.48' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='549.95' y1='262.96' x2='554.43' y2='258.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='549.95' y1='258.48' x2='554.43' y2='262.96' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='497.05' y='343.49' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='497.05' y1='347.97' x2='501.53' y2='343.49' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='497.05' y1='343.49' x2='501.53' y2='347.97' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='497.05' y='328.09' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='497.05' y1='332.58' x2='501.53' y2='328.09' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='497.05' y1='328.09' x2='501.53' y2='332.58' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='449.16' y='215.97' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='449.16' y1='220.45' x2='453.64' y2='215.97' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='449.16' y1='215.97' x2='453.64' y2='220.45' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='449.16' y='388.35' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='449.16' y1='392.83' x2='453.64' y2='388.35' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='449.16' y1='388.35' x2='453.64' y2='392.83' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='431.69' y='427.76' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='431.69' y1='432.24' x2='436.17' y2='427.76' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='431.69' y1='427.76' x2='436.17' y2='432.24' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='431.69' y='412.37' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='431.69' y1='416.85' x2='436.17' y2='412.37' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='431.69' y1='412.37' x2='436.17' y2='416.85' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='423.85' y='336.40' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='423.85' y1='340.88' x2='428.33' y2='336.40' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='423.85' y1='336.40' x2='428.33' y2='340.88' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='423.85' y='253.29' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='423.85' y1='257.77' x2='428.33' y2='253.29' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='423.85' y1='253.29' x2='428.33' y2='257.77' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='681.34' y1='339.14' x2='685.82' y2='334.66' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='681.34' y1='334.66' x2='685.82' y2='339.14' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='680.41' y1='336.90' x2='686.75' y2='336.90' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='683.58' y1='340.07' x2='683.58' y2='333.73' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='681.34' y1='311.44' x2='685.82' y2='306.96' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='681.34' y1='306.96' x2='685.82' y2='311.44' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='680.41' y1='309.20' x2='686.75' y2='309.20' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='683.58' y1='312.37' x2='683.58' y2='306.03' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='664.11' y1='390.62' x2='668.59' y2='386.14' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='664.11' y1='386.14' x2='668.59' y2='390.62' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='663.18' y1='388.38' x2='669.52' y2='388.38' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='666.35' y1='391.55' x2='666.35' y2='385.21' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='664.11' y1='310.59' x2='668.59' y2='306.10' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='664.11' y1='306.10' x2='668.59' y2='310.59' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='663.18' y1='308.35' x2='669.52' y2='308.35' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='666.35' y1='311.51' x2='666.35' y2='305.18' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='635.19' y1='327.36' x2='639.67' y2='322.87' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='635.19' y1='322.87' x2='639.67' y2='327.36' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='634.26' y1='325.11' x2='640.60' y2='325.11' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='637.43' y1='328.28' x2='637.43' y2='321.95' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='635.19' y1='392.00' x2='639.67' y2='387.52' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='635.19' y1='387.52' x2='639.67' y2='392.00' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='634.26' y1='389.76' x2='640.60' y2='389.76' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='637.43' y1='392.93' x2='637.43' y2='386.59' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='593.81' y1='288.10' x2='598.29' y2='283.62' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='593.81' y1='283.62' x2='598.29' y2='288.10' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='592.88' y1='285.86' x2='599.22' y2='285.86' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='596.05' y1='289.03' x2='596.05' y2='282.69' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='593.81' y1='306.57' x2='598.29' y2='302.09' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='593.81' y1='302.09' x2='598.29' y2='306.57' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='592.88' y1='304.33' x2='599.22' y2='304.33' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='596.05' y1='307.50' x2='596.05' y2='301.16' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='552.26' y1='446.96' x2='556.75' y2='442.48' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='552.26' y1='442.48' x2='556.75' y2='446.96' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='551.34' y1='444.72' x2='557.67' y2='444.72' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='554.50' y1='447.89' x2='554.50' y2='441.55' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='552.26' y1='299.21' x2='556.75' y2='294.73' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='552.26' y1='294.73' x2='556.75' y2='299.21' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='551.34' y1='296.97' x2='557.67' y2='296.97' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='554.50' y1='300.14' x2='554.50' y2='293.80' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='514.50' y1='379.04' x2='518.98' y2='374.55' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='514.50' y1='374.55' x2='518.98' y2='379.04' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='513.57' y1='376.79' x2='519.91' y2='376.79' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='516.74' y1='379.96' x2='516.74' y2='373.63' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='514.50' y1='252.83' x2='518.98' y2='248.35' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='514.50' y1='248.35' x2='518.98' y2='252.83' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='513.57' y1='250.59' x2='519.91' y2='250.59' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='516.74' y1='253.76' x2='516.74' y2='247.42' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='475.48' y1='348.83' x2='479.96' y2='344.34' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='475.48' y1='344.34' x2='479.96' y2='348.83' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='474.55' y1='346.59' x2='480.89' y2='346.59' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='477.72' y1='349.75' x2='477.72' y2='343.42' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='475.48' y1='410.39' x2='479.96' y2='405.91' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='475.48' y1='405.91' x2='479.96' y2='410.39' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='474.55' y1='408.15' x2='480.89' y2='408.15' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='477.72' y1='411.32' x2='477.72' y2='404.98' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='454.21' y1='230.08' x2='458.69' y2='225.60' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='454.21' y1='225.60' x2='458.69' y2='230.08' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='453.28' y1='227.84' x2='459.62' y2='227.84' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='456.45' y1='231.01' x2='456.45' y2='224.67' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='454.21' y1='343.98' x2='458.69' y2='339.50' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='454.21' y1='339.50' x2='458.69' y2='343.98' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='453.28' y1='341.74' x2='459.62' y2='341.74' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='456.45' y1='344.91' x2='456.45' y2='338.57' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='440.74' y1='365.41' x2='445.22' y2='360.92' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='440.74' y1='360.92' x2='445.22' y2='365.41' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='439.81' y1='363.17' x2='446.15' y2='363.17' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='442.98' y1='366.34' x2='442.98' y2='360.00' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='440.74' y1='279.22' x2='445.22' y2='274.74' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='440.74' y1='274.74' x2='445.22' y2='279.22' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='439.81' y1='276.98' x2='446.15' y2='276.98' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='442.98' y1='280.15' x2='442.98' y2='273.81' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='680.48' y1='260.73' x2='686.82' y2='260.73' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='683.65' y1='263.90' x2='683.65' y2='257.56' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='680.48,260.73 683.65,257.56 686.82,260.73 683.65,263.90 680.48,260.73 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='680.48' y1='380.78' x2='686.82' y2='380.78' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='683.65' y1='383.95' x2='683.65' y2='377.61' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='680.48,380.78 683.65,377.61 686.82,380.78 683.65,383.95 680.48,380.78 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='667.86' y1='282.86' x2='674.19' y2='282.86' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='671.03' y1='286.03' x2='671.03' y2='279.69' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='667.86,282.86 671.03,279.69 674.19,282.86 671.03,286.03 667.86,282.86 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='667.86' y1='452.16' x2='674.19' y2='452.16' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='671.03' y1='455.33' x2='671.03' y2='448.99' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='667.86,452.16 671.03,448.99 674.19,452.16 671.03,455.33 667.86,452.16 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='645.40' y1='350.41' x2='651.74' y2='350.41' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='648.57' y1='353.58' x2='648.57' y2='347.24' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='645.40,350.41 648.57,347.24 651.74,350.41 648.57,353.58 645.40,350.41 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='645.40' y1='304.24' x2='651.74' y2='304.24' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='648.57' y1='307.41' x2='648.57' y2='301.07' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='645.40,304.24 648.57,301.07 651.74,304.24 648.57,307.41 645.40,304.24 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='609.56' y1='317.25' x2='615.90' y2='317.25' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='612.73' y1='320.42' x2='612.73' y2='314.08' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='609.56,317.25 612.73,314.08 615.90,317.25 612.73,320.42 609.56,317.25 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='609.56' y1='274.15' x2='615.90' y2='274.15' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='612.73' y1='277.32' x2='612.73' y2='270.99' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='609.56,274.15 612.73,270.99 615.90,274.15 612.73,277.32 609.56,274.15 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='566.82' y1='379.05' x2='573.16' y2='379.05' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='569.99' y1='382.22' x2='569.99' y2='375.88' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='566.82,379.05 569.99,375.88 573.16,379.05 569.99,382.22 566.82,379.05 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='566.82' y1='345.19' x2='573.16' y2='345.19' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='569.99' y1='348.36' x2='569.99' y2='342.02' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='566.82,345.19 569.99,342.02 573.16,345.19 569.99,348.36 566.82,345.19 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='520.13' y1='382.53' x2='526.47' y2='382.53' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='523.30' y1='385.70' x2='523.30' y2='379.37' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='520.13,382.53 523.30,379.37 526.47,382.53 523.30,385.70 520.13,382.53 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='520.13' y1='293.27' x2='526.47' y2='293.27' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='523.30' y1='296.44' x2='523.30' y2='290.10' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='520.13,293.27 523.30,290.10 526.47,293.27 523.30,296.44 520.13,293.27 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='473.39' y1='409.97' x2='479.73' y2='409.97' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='476.56' y1='413.14' x2='476.56' y2='406.80' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='473.39,409.97 476.56,406.80 479.73,409.97 476.56,413.14 473.39,409.97 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='473.39' y1='271.45' x2='479.73' y2='271.45' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='476.56' y1='274.62' x2='476.56' y2='268.28' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='473.39,271.45 476.56,268.28 479.73,271.45 476.56,274.62 473.39,271.45 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='450.98' y1='293.34' x2='457.32' y2='293.34' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='454.15' y1='296.51' x2='454.15' y2='290.17' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='450.98,293.34 454.15,290.17 457.32,293.34 454.15,296.51 450.98,293.34 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='450.98' y1='296.41' x2='457.32' y2='296.41' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='454.15' y1='299.58' x2='454.15' y2='293.25' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='450.98,296.41 454.15,293.25 457.32,296.41 454.15,299.58 450.98,296.41 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='437.50' y1='357.79' x2='443.84' y2='357.79' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='440.67' y1='360.96' x2='440.67' y2='354.62' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='437.50,357.79 440.67,354.62 443.84,357.79 440.67,360.96 437.50,357.79 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='437.50' y1='330.09' x2='443.84' y2='330.09' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='440.67' y1='333.26' x2='440.67' y2='326.92' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='437.50,330.09 440.67,326.92 443.84,330.09 440.67,333.26 437.50,330.09 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='682.78' cy='312.22' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='680.54' y1='312.22' x2='685.02' y2='312.22' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='682.78' y1='314.46' x2='682.78' y2='309.98' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='682.78' cy='472.28' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='680.54' y1='472.28' x2='685.02' y2='472.28' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='682.78' y1='474.52' x2='682.78' y2='470.04' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='675.09' cy='339.52' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='672.85' y1='339.52' x2='677.33' y2='339.52' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='675.09' y1='341.76' x2='675.09' y2='337.28' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='675.09' cy='398.00' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='672.85' y1='398.00' x2='677.33' y2='398.00' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='675.09' y1='400.24' x2='675.09' y2='395.76' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='660.63' cy='432.54' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='658.39' y1='432.54' x2='662.87' y2='432.54' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='660.63' y1='434.78' x2='660.63' y2='430.30' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='660.63' cy='278.63' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='658.39' y1='278.63' x2='662.87' y2='278.63' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='660.63' y1='280.87' x2='660.63' y2='276.39' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='634.99' cy='413.68' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='632.75' y1='413.68' x2='637.23' y2='413.68' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='634.99' y1='415.92' x2='634.99' y2='411.43' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='634.99' cy='333.64' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='632.75' y1='333.64' x2='637.23' y2='333.64' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='634.99' y1='335.88' x2='634.99' y2='331.40' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='598.69' cy='402.87' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='596.45' y1='402.87' x2='600.94' y2='402.87' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='598.69' y1='405.11' x2='598.69' y2='400.63' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='598.69' cy='193.55' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='596.45' y1='193.55' x2='600.94' y2='193.55' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='598.69' y1='195.79' x2='598.69' y2='191.31' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='548.51' cy='260.96' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='546.27' y1='260.96' x2='550.75' y2='260.96' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='548.51' y1='263.20' x2='548.51' y2='258.72' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='548.51' cy='340.99' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='546.27' y1='340.99' x2='550.75' y2='340.99' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='548.51' y1='343.23' x2='548.51' y2='338.75' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='489.09' cy='285.26' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='486.85' y1='285.26' x2='491.33' y2='285.26' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='489.09' y1='287.50' x2='489.09' y2='283.02' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='489.09' cy='377.61' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='486.85' y1='377.61' x2='491.33' y2='377.61' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='489.09' y1='379.85' x2='489.09' y2='375.37' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='461.77' cy='360.71' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='459.53' y1='360.71' x2='464.01' y2='360.71' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='461.77' y1='362.95' x2='461.77' y2='358.47' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='461.77' cy='397.65' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='459.53' y1='397.65' x2='464.01' y2='397.65' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='461.77' y1='399.89' x2='461.77' y2='395.41' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='445.87' cy='252.17' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='443.63' y1='252.17' x2='448.11' y2='252.17' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='445.87' y1='254.41' x2='445.87' y2='249.93' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='445.87' cy='338.36' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='443.63' y1='338.36' x2='448.11' y2='338.36' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='445.87' y1='340.60' x2='445.87' y2='336.12' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='684.14,380.84 687.16,374.75 681.13,374.75 684.14,380.84 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='684.14,373.87 687.16,379.97 681.13,379.97 684.14,373.87 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='684.14,343.91 687.16,337.81 681.13,337.81 684.14,343.91 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='684.14,336.94 687.16,343.03 681.13,343.03 684.14,336.94 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='677.65,265.13 680.67,259.03 674.64,259.03 677.65,265.13 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='677.65,258.16 680.67,264.26 674.64,264.26 677.65,258.16 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='677.65,317.46 680.67,311.36 674.64,311.36 677.65,317.46 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='677.65,310.49 680.67,316.59 674.64,316.59 677.65,310.49 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='665.35,300.21 668.37,294.11 662.33,294.11 665.35,300.21 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='665.35,293.24 668.37,299.34 662.33,299.34 665.35,293.24 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='665.35,254.04 668.37,247.94 662.33,247.94 665.35,254.04 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='665.35,247.07 668.37,253.17 662.33,253.17 665.35,247.07 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='643.21,402.15 646.23,396.05 640.19,396.05 643.21,402.15 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='643.21,395.18 646.23,401.28 640.19,401.28 643.21,395.18 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='643.21,352.90 646.23,346.80 640.19,346.80 643.21,352.90 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='643.21,345.93 646.23,352.02 640.19,352.02 643.21,345.93 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='611.03,344.00 614.05,337.90 608.01,337.90 611.03,344.00 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='611.03,337.03 614.05,343.13 608.01,343.13 611.03,337.03 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='611.03,260.89 614.05,254.79 608.01,254.79 611.03,260.89 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='611.03,253.92 614.05,260.02 608.01,260.02 611.03,253.92 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='564.59,402.67 567.61,396.57 561.57,396.57 564.59,402.67 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='564.59,395.70 567.61,401.80 561.57,401.80 564.59,395.70 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='564.59,328.79 567.61,322.69 561.57,322.69 564.59,328.79 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='564.59,321.82 567.61,327.92 561.57,327.92 564.59,321.82 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='505.61,259.79 508.63,253.69 502.60,253.69 505.61,259.79 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='505.61,252.82 508.63,258.91 502.60,258.91 505.61,252.82 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='505.61,315.19 508.63,309.09 502.60,309.09 505.61,315.19 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='505.61,308.22 508.63,314.32 502.60,314.32 505.61,308.22 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='476.31,367.45 479.33,361.35 473.29,361.35 476.31,367.45 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='476.31,360.48 479.33,366.58 473.29,366.58 476.31,360.48 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='476.31,330.52 479.33,324.42 473.29,324.42 476.31,330.52 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='476.31,323.55 479.33,329.64 473.29,329.64 476.31,323.55 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='457.99,329.34 461.01,323.24 454.97,323.24 457.99,329.34 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='457.99,322.37 461.01,328.47 454.97,328.47 457.99,322.37 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='457.99,350.88 461.01,344.79 454.97,344.79 457.99,350.88 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='457.99,343.91 461.01,350.01 454.97,350.01 457.99,343.91 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='681.57' y1='348.83' x2='686.05' y2='348.83' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='683.81' y1='351.07' x2='683.81' y2='346.58' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='681.57' y='346.58' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='681.57' y1='358.06' x2='686.05' y2='358.06' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='683.81' y1='360.30' x2='683.81' y2='355.82' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='681.57' y='355.82' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='674.44' y1='404.24' x2='678.92' y2='404.24' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='676.68' y1='406.48' x2='676.68' y2='402.00' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='674.44' y='402.00' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='674.44' y1='339.60' x2='678.92' y2='339.60' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='676.68' y1='341.84' x2='676.68' y2='337.36' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='674.44' y='337.36' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='660.89' y1='295.51' x2='665.38' y2='295.51' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='663.14' y1='297.75' x2='663.14' y2='293.27' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='660.89' y='293.27' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='660.89' y1='292.43' x2='665.38' y2='292.43' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='663.14' y1='294.67' x2='663.14' y2='290.19' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='660.89' y='290.19' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='636.37' y1='225.05' x2='640.86' y2='225.05' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='638.61' y1='227.29' x2='638.61' y2='222.81' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='636.37' y='222.81' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='636.37' y1='292.77' x2='640.86' y2='292.77' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='638.61' y1='295.01' x2='638.61' y2='290.53' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='636.37' y='290.53' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='600.47' y1='425.06' x2='604.95' y2='425.06' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='602.71' y1='427.30' x2='602.71' y2='422.82' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='600.47' y='422.82' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='600.47' y1='317.32' x2='604.95' y2='317.32' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='602.71' y1='319.57' x2='602.71' y2='315.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='600.47' y='315.08' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='548.36' y1='337.66' x2='552.84' y2='337.66' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='550.60' y1='339.90' x2='550.60' y2='335.42' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='548.36' y='335.42' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='548.36' y1='276.10' x2='552.84' y2='276.10' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='550.60' y1='278.34' x2='550.60' y2='273.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='548.36' y='273.86' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='484.06' y1='455.88' x2='488.54' y2='455.88' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='486.30' y1='458.12' x2='486.30' y2='453.64' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='484.06' y='453.64' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='484.06' y1='311.21' x2='488.54' y2='311.21' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='486.30' y1='313.45' x2='486.30' y2='308.96' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='484.06' y='308.96' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='455.39' y1='327.85' x2='459.88' y2='327.85' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='457.64' y1='330.09' x2='457.64' y2='325.61' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='455.39' y='325.61' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='455.39' y1='318.62' x2='459.88' y2='318.62' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='457.64' y1='320.86' x2='457.64' y2='316.38' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='455.39' y='316.38' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='439.79' y1='265.98' x2='444.28' y2='265.98' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='442.04' y1='268.22' x2='442.04' y2='263.74' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='439.79' y='263.74' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='439.79' y1='330.62' x2='444.28' y2='330.62' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='442.04' y1='332.86' x2='442.04' y2='328.38' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='439.79' y='328.38' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='684.31' cy='311.59' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='682.07' y1='313.83' x2='686.55' y2='309.35' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='682.07' y1='309.35' x2='686.55' y2='313.83' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='684.31' cy='367.00' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='682.07' y1='369.24' x2='686.55' y2='364.75' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='682.07' y1='364.75' x2='686.55' y2='369.24' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='674.73' cy='298.30' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='672.48' y1='300.54' x2='676.97' y2='296.06' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='672.48' y1='296.06' x2='676.97' y2='300.54' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='674.73' cy='245.97' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='672.48' y1='248.21' x2='676.97' y2='243.73' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='672.48' y1='243.73' x2='676.97' y2='248.21' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='656.95' cy='232.63' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='654.71' y1='234.88' x2='659.19' y2='230.39' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='654.71' y1='230.39' x2='659.19' y2='234.88' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='656.95' cy='331.14' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='654.71' y1='333.38' x2='659.19' y2='328.90' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='654.71' y1='328.90' x2='659.19' y2='333.38' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='626.28' cy='419.86' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='624.04' y1='422.10' x2='628.52' y2='417.61' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='624.04' y1='417.61' x2='628.52' y2='422.10' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='626.28' cy='312.12' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='624.04' y1='314.36' x2='628.52' y2='309.88' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='624.04' y1='309.88' x2='628.52' y2='314.36' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='584.83' cy='299.65' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='582.59' y1='301.89' x2='587.07' y2='297.41' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='582.59' y1='297.41' x2='587.07' y2='301.89' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='584.83' cy='305.81' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='582.59' y1='308.05' x2='587.07' y2='303.57' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='582.59' y1='303.57' x2='587.07' y2='308.05' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='531.56' cy='355.71' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='529.32' y1='357.95' x2='533.80' y2='353.47' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='529.32' y1='353.47' x2='533.80' y2='357.95' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='531.56' cy='380.33' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='529.32' y1='382.57' x2='533.80' y2='378.09' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='529.32' y1='378.09' x2='533.80' y2='382.57' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='474.54' cy='377.22' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='472.30' y1='379.46' x2='476.78' y2='374.98' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='472.30' y1='374.98' x2='476.78' y2='379.46' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='474.54' cy='272.56' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='472.30' y1='274.81' x2='476.78' y2='270.32' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='472.30' y1='270.32' x2='476.78' y2='274.81' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='450.43' cy='256.13' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='448.19' y1='258.37' x2='452.67' y2='253.89' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='448.19' y1='253.89' x2='452.67' y2='258.37' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='450.43' cy='391.57' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='448.19' y1='393.81' x2='452.67' y2='389.33' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='448.19' y1='389.33' x2='452.67' y2='393.81' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='437.29' cy='284.56' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='435.05' y1='286.80' x2='439.53' y2='282.32' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='435.05' y1='282.32' x2='439.53' y2='286.80' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<circle cx='437.29' cy='376.90' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='435.05' y1='379.15' x2='439.53' y2='374.66' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<line x1='435.05' y1='374.66' x2='439.53' y2='379.15' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='683.44,336.12 685.68,340.60 681.20,340.60 683.44,336.12 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='681.20' y='336.12' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='683.44,345.35 685.68,349.83 681.20,349.83 683.44,345.35 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='681.20' y='345.35' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='672.89,379.27 675.13,383.76 670.65,383.76 672.89,379.27 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='670.65' y='379.27' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='672.89,283.85 675.13,288.33 670.65,288.33 672.89,283.85 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='670.65' y='283.85' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='653.55,369.27 655.79,373.75 651.31,373.75 653.55,369.27 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='651.31' y='369.27' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='653.55,360.03 655.79,364.51 651.31,364.51 653.55,360.03 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='651.31' y='360.03' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='620.91,314.96 623.15,319.45 618.67,319.45 620.91,314.96 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='618.67' y='314.96' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='620.91,342.67 623.15,347.15 618.67,347.15 620.91,342.67 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='618.67' y='342.67' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='578.30,304.39 580.54,308.87 576.06,308.87 578.30,304.39 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='576.06' y='304.39' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='578.30,365.95 580.54,370.43 576.06,370.43 578.30,365.95 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='576.06' y='365.95' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='525.94,312.56 528.18,317.04 523.70,317.04 525.94,312.56 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='523.70' y='312.56' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='525.94,266.39 528.18,270.87 523.70,270.87 525.94,266.39 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='523.70' y='266.39' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='471.39,369.01 473.63,373.49 469.15,373.49 471.39,369.01 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='469.15' y='369.01' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='471.39,341.31 473.63,345.79 469.15,345.79 471.39,341.31 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='469.15' y='341.31' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='448.11,334.56 450.35,339.04 445.87,339.04 448.11,334.56 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='445.87' y='334.56' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='448.11,319.17 450.35,323.65 445.87,323.65 448.11,319.17 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='445.87' y='319.17' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='435.51,313.89 437.75,318.37 433.27,318.37 435.51,313.89 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='433.27' y='313.89' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polyline points='435.51,366.22 437.75,370.70 433.27,370.70 435.51,366.22 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<rect x='433.27' y='366.22' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polygon points='681.31,323.48 685.80,323.48 685.80,319.00 681.31,319.00 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polygon points='681.31,301.93 685.80,301.93 685.80,297.45 681.31,297.45 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polygon points='670.56,475.15 675.05,475.15 675.05,470.67 670.56,470.67 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polygon points='670.56,296.61 675.05,296.61 675.05,292.13 670.56,292.13 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polygon points='651.39,288.45 655.87,288.45 655.87,283.97 651.39,283.97 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polygon points='651.39,368.49 655.87,368.49 655.87,364.00 651.39,364.00 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polygon points='620.58,415.54 625.06,415.54 625.06,411.06 620.58,411.06 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polygon points='620.58,295.49 625.06,295.49 625.06,291.01 620.58,291.01 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polygon points='583.27,365.26 587.75,365.26 587.75,360.78 583.27,360.78 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polygon points='583.27,288.31 587.75,288.31 587.75,283.82 583.27,283.82 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polygon points='540.82,304.27 545.30,304.27 545.30,299.79 540.82,299.79 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polygon points='540.82,304.27 545.30,304.27 545.30,299.79 540.82,299.79 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polygon points='493.65,456.00 498.13,456.00 498.13,451.52 493.65,451.52 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polygon points='493.65,194.36 498.13,194.36 498.13,189.88 493.65,189.88 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polygon points='468.09,355.01 472.57,355.01 472.57,350.53 468.09,350.53 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polygon points='468.09,339.62 472.57,339.62 472.57,335.14 468.09,335.14 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polygon points='451.21,367.50 455.69,367.50 455.69,363.01 451.21,363.01 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<polygon points='451.21,296.70 455.69,296.70 455.69,292.22 451.21,292.22 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTQ2LjA3)' />
<defs>
  <clipPath id='cpNTkuMDR8Njg5Ljc2fDUwMi41Nnw1OS4wNA=='>
    <rect x='59.04' y='59.04' width='630.72' height='443.52' />
  </clipPath>
</defs>
</svg>

Contact - Imprint