aboutsummaryrefslogtreecommitdiff
path: root/tests/figs/plotting/mixed-model-fit-for-mmkin-object.svg
blob: 972529607a9eb20983aa0da54d6e20da2bb1baa6 (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
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
<?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='cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA='>
    <rect x='19.96' y='5.70' width='680.08' height='75.63' />
  </clipPath>
</defs>
<line x1='238.69' y1='29.26' x2='252.94' y2='29.26' style='stroke-width: 1.50;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='238.69' y1='38.77' x2='252.94' y2='38.77' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='238.69' y1='48.27' x2='252.94' y2='48.27' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='238.69' y1='57.77' x2='252.94' y2='57.77' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='299.52' y1='29.26' x2='313.78' y2='29.26' style='stroke-width: 0.75; stroke: #28E2E5; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='299.52' y1='38.77' x2='313.78' y2='38.77' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='299.52' y1='48.27' x2='313.78' y2='48.27' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='299.52' y1='57.77' x2='313.78' y2='57.77' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='360.36' y1='29.26' x2='374.61' y2='29.26' style='stroke-width: 0.75; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='360.36' y1='38.77' x2='374.61' y2='38.77' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='360.36' y1='48.27' x2='374.61' y2='48.27' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='360.36' y1='57.77' x2='374.61' y2='57.77' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='421.19' y1='29.26' x2='435.45' y2='29.26' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='421.19' y1='38.77' x2='435.45' y2='38.77' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='421.19' y1='48.27' x2='435.45' y2='48.27' style='stroke-width: 0.75; stroke: #F5C710; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='421.19' y1='57.77' x2='435.45' y2='57.77' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<circle cx='245.81' cy='38.77' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polyline points='245.81,45.50 248.21,49.66 243.41,49.66 245.81,45.50 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='243.29' y1='57.77' x2='248.33' y2='57.77' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='245.81' y1='60.29' x2='245.81' y2='55.25' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='304.87' y1='31.04' x2='308.43' y2='27.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='304.87' y1='27.48' x2='308.43' y2='31.04' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polyline points='304.13,38.77 306.65,36.25 309.17,38.77 306.65,41.29 304.13,38.77 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polyline points='306.65,51.04 309.05,46.89 304.25,46.89 306.65,51.04 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<rect x='304.87' y='55.99' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='304.87' y1='59.56' x2='308.43' y2='55.99' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='304.87' y1='55.99' x2='308.43' y2='59.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='365.70' y1='31.04' x2='369.27' y2='27.48' style='stroke-width: 0.75;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='365.70' y1='27.48' x2='369.27' y2='31.04' style='stroke-width: 0.75;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='364.96' y1='29.26' x2='370.00' y2='29.26' style='stroke-width: 0.75;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='367.48' y1='31.78' x2='367.48' y2='26.74' style='stroke-width: 0.75;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='364.96' y1='38.77' x2='370.00' y2='38.77' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='367.48' y1='41.29' x2='367.48' y2='36.25' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polyline points='364.96,38.77 367.48,36.25 370.00,38.77 367.48,41.29 364.96,38.77 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<circle cx='367.48' cy='48.27' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='365.70' y1='48.27' x2='369.27' y2='48.27' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='367.48' y1='50.05' x2='367.48' y2='46.49' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polyline points='367.48,60.55 369.88,55.70 365.08,55.70 367.48,60.55 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polyline points='367.48,55.00 369.88,59.85 365.08,59.85 367.48,55.00 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='426.54' y1='29.26' x2='430.10' y2='29.26' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='428.32' y1='31.04' x2='428.32' y2='27.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<rect x='426.54' y='27.48' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<circle cx='428.32' cy='38.77' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='426.54' y1='40.55' x2='430.10' y2='36.98' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='426.54' y1='36.98' x2='430.10' y2='40.55' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polyline points='428.32,46.49 430.10,50.05 426.54,50.05 428.32,46.49 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<rect x='426.54' y='46.49' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polygon points='426.54,59.56 430.10,59.56 430.10,55.99 426.54,55.99 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='260.07' y='31.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='37.31px' lengthAdjust='spacingAndGlyphs'>Population</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='260.07' y='41.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>1</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='260.07' y='50.99' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>2</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='260.07' y='60.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>3</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='320.91' y='31.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>4</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='320.91' y='41.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>5</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='320.91' y='50.99' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>6</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='320.91' y='60.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>7</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='381.74' y='31.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>8</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='381.74' y='41.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>9</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='381.74' y='50.99' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>10</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='381.74' y='60.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.19px' lengthAdjust='spacingAndGlyphs'>11</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='442.58' y='31.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>12</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='442.58' y='41.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>13</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='442.58' y='50.99' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>14</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='442.58' y='60.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>15</text></g>
<defs>
  <clipPath id='cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ='>
    <rect x='38.97' y='102.24' width='301.08' height='186.63' />
  </clipPath>
</defs>
<polyline points='50.12,124.05 52.44,129.08 55.81,136.04 57.09,138.59 61.50,146.98 66.38,155.60 67.19,156.97 72.87,166.10 78.56,174.45 82.64,180.01 84.25,182.11 89.94,189.12 95.63,195.56 101.32,201.48 107.01,206.92 112.70,211.92 115.16,213.96 118.39,216.53 124.08,220.78 129.77,224.71 135.46,228.34 141.15,231.70 146.83,234.81 152.52,237.69 158.21,240.36 163.90,242.84 169.59,245.15 175.28,247.30 180.97,249.31 186.66,251.17 189.50,252.06 192.35,252.92 198.04,254.54 203.73,256.07 209.42,257.49 215.11,258.83 220.79,260.08 226.48,261.25 232.17,262.35 237.86,263.39 243.55,264.36 249.24,265.28 254.93,266.14 259.20,266.76 260.62,266.96 266.31,267.72 272.00,268.45 277.69,269.13 283.38,269.77 289.07,270.38 294.76,270.96 300.44,271.50 306.13,272.02 311.82,272.51 317.51,272.97 323.20,273.41 328.89,273.82 ' style='stroke-width: 1.50;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<defs>
  <clipPath id='cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA='>
    <rect x='0.00' y='0.00' width='720.00' height='576.00' />
  </clipPath>
</defs>
<line x1='50.12' y1='288.88' x2='328.89' y2='288.88' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='50.12' y1='288.88' x2='50.12' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='96.58' y1='288.88' x2='96.58' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='143.04' y1='288.88' x2='143.04' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='189.50' y1='288.88' x2='189.50' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='235.97' y1='288.88' x2='235.97' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='282.43' y1='288.88' x2='282.43' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='328.89' y1='288.88' x2='328.89' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='47.92' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='92.19' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='138.65' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='185.11' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>60</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='231.58' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>80</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='275.84' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='13.17px' lengthAdjust='spacingAndGlyphs'>100</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='322.30' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='13.17px' lengthAdjust='spacingAndGlyphs'>120</text></g>
<line x1='38.97' y1='281.96' x2='38.97' y2='125.15' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='281.96' x2='34.21' y2='281.96' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='250.60' x2='34.21' y2='250.60' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='219.24' x2='34.21' y2='219.24' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='187.88' x2='34.21' y2='187.88' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='156.51' x2='34.21' y2='156.51' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='125.15' x2='34.21' y2='125.15' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,284.16) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,254.99) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,223.63) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,192.27) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>60</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,160.90) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>80</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,131.74) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='13.17px' lengthAdjust='spacingAndGlyphs'>100</text></g>
<polyline points='38.97,288.88 340.04,288.88 340.04,102.24 38.97,102.24 38.97,288.88 ' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<defs>
  <clipPath id='cpMC4wMHwzNjAuMDB8MzE3LjM5fDgyLjI5'>
    <rect x='0.00' y='82.29' width='360.00' height='235.10' />
  </clipPath>
</defs>
<g clip-path='url(#cpMC4wMHwzNjAuMDB8MzE3LjM5fDgyLjI5)'><text x='180.87' y='324.99' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='17.27px' lengthAdjust='spacingAndGlyphs'>Time</text></g>
<g clip-path='url(#cpMC4wMHwzNjAuMDB8MzE3LjM5fDgyLjI5)'><text transform='translate(8.55,206.76) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='22.41px' lengthAdjust='spacingAndGlyphs'>parent</text></g>
<defs>
  <clipPath id='cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ='>
    <rect x='38.97' y='102.24' width='301.08' height='186.63' />
  </clipPath>
</defs>
<circle cx='50.12' cy='117.47' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='50.12' cy='130.95' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='52.44' cy='129.86' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='52.44' cy='142.40' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='57.09' cy='156.51' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='57.09' cy='131.42' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='66.38' cy='160.59' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='66.38' cy='166.24' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='82.64' cy='174.55' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='82.64' cy='183.33' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='115.16' cy='203.87' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='115.16' cy='200.58' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='189.50' cy='231.16' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='189.50' cy='231.00' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='259.20' cy='246.99' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='259.20' cy='247.46' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='328.89' cy='253.27' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='328.89' cy='254.68' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,127.49 52.44,133.45 55.81,141.26 57.09,144.00 61.50,152.59 66.38,160.76 67.19,161.99 72.87,169.87 78.56,176.56 82.64,180.74 84.25,182.28 89.94,187.25 95.63,191.61 101.32,195.48 107.01,198.95 112.70,202.11 115.16,203.39 118.39,204.99 124.08,207.67 129.77,210.15 135.46,212.49 141.15,214.69 146.83,216.78 152.52,218.77 158.21,220.68 163.90,222.50 169.59,224.26 175.28,225.95 180.97,227.58 186.66,229.15 189.50,229.92 192.35,230.67 198.04,232.15 203.73,233.58 209.42,234.96 215.11,236.30 220.79,237.61 226.48,238.87 232.17,240.10 237.86,241.29 243.55,242.44 249.24,243.57 254.93,244.66 259.20,245.46 260.62,245.72 266.31,246.75 272.00,247.75 277.69,248.72 283.38,249.66 289.07,250.58 294.76,251.47 300.44,252.33 306.13,253.17 311.82,253.99 317.51,254.78 323.20,255.55 328.89,256.30 ' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,120.34 52.52,124.50 47.72,124.50 50.12,120.34 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,123.01 52.52,127.16 47.72,127.16 50.12,123.01 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='52.44,130.38 54.84,134.53 50.04,134.53 52.44,130.38 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='52.44,128.65 54.84,132.81 50.04,132.81 52.44,128.65 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='57.09,137.43 59.49,141.59 54.69,141.59 57.09,137.43 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='57.09,141.51 59.49,145.67 54.69,145.67 57.09,141.51 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='66.38,141.67 68.78,145.82 63.98,145.82 66.38,141.67 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='66.38,151.23 68.78,155.39 63.98,155.39 66.38,151.23 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='82.64,169.27 85.04,173.42 80.24,173.42 82.64,169.27 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='82.64,161.43 85.04,165.58 80.24,165.58 82.64,161.43 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='115.16,202.51 117.56,206.67 112.76,206.67 115.16,202.51 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='115.16,205.49 117.56,209.65 112.76,209.65 115.16,205.49 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='189.50,232.46 191.90,236.62 187.10,236.62 189.50,232.46 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='189.50,228.23 191.90,232.39 187.10,232.39 189.50,228.23 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='259.20,238.42 261.60,242.58 256.80,242.58 259.20,238.42 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='259.20,240.46 261.60,244.62 256.80,244.62 259.20,240.46 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='328.89,248.46 331.29,252.61 326.49,252.61 328.89,248.46 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='328.89,251.44 331.29,255.59 326.49,255.59 328.89,251.44 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,126.15 52.44,130.34 55.81,136.14 57.09,138.27 61.50,145.30 66.38,152.53 67.19,153.67 72.87,161.35 78.56,168.38 82.64,173.05 84.25,174.82 89.94,180.73 95.63,186.15 101.32,191.13 107.01,195.70 112.70,199.90 115.16,201.61 118.39,203.76 124.08,207.32 129.77,210.59 135.46,213.61 141.15,216.39 146.83,218.96 152.52,221.33 158.21,223.53 163.90,225.56 169.59,227.44 175.28,229.19 180.97,230.81 186.66,232.32 189.50,233.04 192.35,233.73 198.04,235.04 203.73,236.27 209.42,237.41 215.11,238.49 220.79,239.49 226.48,240.44 232.17,241.33 237.86,242.17 243.55,242.96 249.24,243.71 254.93,244.42 259.20,244.93 260.62,245.09 266.31,245.73 272.00,246.34 277.69,246.92 283.38,247.48 289.07,248.01 294.76,248.52 300.44,249.01 306.13,249.48 311.82,249.93 317.51,250.37 323.20,250.79 328.89,251.20 ' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='47.60' y1='141.15' x2='52.64' y2='141.15' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='143.67' x2='50.12' y2='138.63' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='47.60' y1='127.97' x2='52.64' y2='127.97' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='130.49' x2='50.12' y2='125.45' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='49.92' y1='126.25' x2='54.96' y2='126.25' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='128.77' x2='52.44' y2='123.73' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='49.92' y1='127.19' x2='54.96' y2='127.19' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='129.71' x2='52.44' y2='124.67' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='54.57' y1='129.86' x2='59.61' y2='129.86' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='132.38' x2='57.09' y2='127.34' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='54.57' y1='140.68' x2='59.61' y2='140.68' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='143.20' x2='57.09' y2='138.16' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='63.86' y1='150.55' x2='68.90' y2='150.55' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='153.07' x2='66.38' y2='148.03' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='63.86' y1='152.12' x2='68.90' y2='152.12' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='154.64' x2='66.38' y2='149.60' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.12' y1='164.04' x2='85.16' y2='164.04' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='166.56' x2='82.64' y2='161.52' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.12' y1='175.49' x2='85.16' y2='175.49' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='178.01' x2='82.64' y2='172.97' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='112.64' y1='193.84' x2='117.68' y2='193.84' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='196.36' x2='115.16' y2='191.31' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='112.64' y1='196.81' x2='117.68' y2='196.81' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='199.33' x2='115.16' y2='194.29' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='186.98' y1='234.29' x2='192.02' y2='234.29' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='236.81' x2='189.50' y2='231.77' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='186.98' y1='237.43' x2='192.02' y2='237.43' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='239.95' x2='189.50' y2='234.91' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='256.68' y1='252.95' x2='261.72' y2='252.95' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='255.47' x2='259.20' y2='250.43' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='256.68' y1='252.95' x2='261.72' y2='252.95' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='255.47' x2='259.20' y2='250.43' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='326.37' y1='267.54' x2='331.41' y2='267.54' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='270.06' x2='328.89' y2='265.02' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='326.37' y1='263.77' x2='331.41' y2='263.77' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='266.29' x2='328.89' y2='261.25' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,128.11 52.44,131.60 55.81,136.47 57.09,138.26 61.50,144.23 66.38,150.46 67.19,151.45 72.87,158.18 78.56,164.47 82.64,168.72 84.25,170.35 89.94,175.85 95.63,181.02 101.32,185.87 107.01,190.44 112.70,194.73 115.16,196.52 118.39,198.79 124.08,202.61 129.77,206.23 135.46,209.65 141.15,212.89 146.83,215.97 152.52,218.88 158.21,221.65 163.90,224.28 169.59,226.78 175.28,229.16 180.97,231.42 186.66,233.58 189.50,234.62 192.35,235.64 198.04,237.60 203.73,239.47 209.42,241.26 215.11,242.97 220.79,244.60 226.48,246.16 232.17,247.65 237.86,249.07 243.55,250.44 249.24,251.74 254.93,252.99 259.20,253.89 260.62,254.18 266.31,255.32 272.00,256.42 277.69,257.47 283.38,258.47 289.07,259.43 294.76,260.36 300.44,261.24 306.13,262.09 311.82,262.90 317.51,263.67 323.20,264.42 328.89,265.13 ' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='124.58' x2='51.90' y2='121.02' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='121.02' x2='51.90' y2='124.58' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='123.17' x2='51.90' y2='119.61' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='119.61' x2='51.90' y2='123.17' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='121.92' x2='54.22' y2='118.35' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='118.35' x2='54.22' y2='121.92' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='142.14' x2='54.22' y2='138.58' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='138.58' x2='54.22' y2='142.14' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='143.71' x2='58.87' y2='140.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='140.15' x2='58.87' y2='143.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='143.87' x2='58.87' y2='140.30' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='140.30' x2='58.87' y2='143.87' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='148.57' x2='68.16' y2='145.01' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='145.01' x2='68.16' y2='148.57' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='164.10' x2='68.16' y2='160.53' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='160.53' x2='68.16' y2='164.10' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='176.49' x2='84.42' y2='172.92' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='172.92' x2='84.42' y2='176.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='167.55' x2='84.42' y2='163.98' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='163.98' x2='84.42' y2='167.55' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='202.83' x2='116.95' y2='199.27' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='199.27' x2='116.95' y2='202.83' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='205.18' x2='116.95' y2='201.62' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='201.62' x2='116.95' y2='205.18' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='240.31' x2='191.29' y2='236.74' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='236.74' x2='191.29' y2='240.31' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='240.15' x2='191.29' y2='236.59' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='236.59' x2='191.29' y2='240.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='258.50' x2='260.98' y2='254.93' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='254.93' x2='260.98' y2='258.50' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='258.97' x2='260.98' y2='255.41' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='255.41' x2='260.98' y2='258.97' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='269.32' x2='330.67' y2='265.75' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='265.75' x2='330.67' y2='269.32' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='270.57' x2='330.67' y2='267.01' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='267.01' x2='330.67' y2='270.57' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,124.04 52.44,130.41 55.81,137.81 57.09,140.22 61.50,147.40 66.38,154.02 67.19,155.03 72.87,161.66 78.56,167.71 82.64,171.79 84.25,173.36 89.94,178.68 95.63,183.72 101.32,188.51 107.01,193.06 112.70,197.39 115.16,199.20 118.39,201.51 124.08,205.42 129.77,209.15 135.46,212.70 141.15,216.07 146.83,219.28 152.52,222.33 158.21,225.23 163.90,227.99 169.59,230.62 175.28,233.12 180.97,235.50 186.66,237.76 189.50,238.85 192.35,239.91 198.04,241.96 203.73,243.91 209.42,245.76 215.11,247.52 220.79,249.20 226.48,250.79 232.17,252.31 237.86,253.75 243.55,255.13 249.24,256.43 254.93,257.68 259.20,258.57 260.62,258.86 266.31,259.98 272.00,261.05 277.69,262.07 283.38,263.04 289.07,263.96 294.76,264.84 300.44,265.67 306.13,266.46 311.82,267.22 317.51,267.94 323.20,268.62 328.89,269.27 ' style='stroke-width: 0.75; stroke: #28E2E5; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='47.60,113.86 50.12,111.34 52.64,113.86 50.12,116.38 47.60,113.86 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='47.60,113.39 50.12,110.87 52.64,113.39 50.12,115.91 47.60,113.39 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='49.92,133.31 52.44,130.79 54.96,133.31 52.44,135.83 49.92,133.31 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='49.92,145.85 52.44,143.33 54.96,145.85 52.44,148.37 49.92,145.85 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='54.57,144.91 57.09,142.39 59.61,144.91 57.09,147.43 54.57,144.91 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='54.57,144.44 57.09,141.92 59.61,144.44 57.09,146.96 54.57,144.44 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='63.86,164.67 66.38,162.15 68.90,164.67 66.38,167.19 63.86,164.67 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='63.86,168.75 66.38,166.22 68.90,168.75 66.38,171.27 63.86,168.75 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='80.12,193.21 82.64,190.69 85.16,193.21 82.64,195.73 80.12,193.21 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='80.12,190.86 82.64,188.34 85.16,190.86 82.64,193.38 80.12,190.86 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='112.64,207.95 115.16,205.43 117.68,207.95 115.16,210.47 112.64,207.95 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='112.64,206.69 115.16,204.17 117.68,206.69 115.16,209.21 112.64,206.69 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='186.98,239.00 189.50,236.48 192.02,239.00 189.50,241.52 186.98,239.00 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='186.98,234.29 189.50,231.77 192.02,234.29 189.50,236.81 186.98,234.29 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='256.68,251.70 259.20,249.18 261.72,251.70 259.20,254.22 256.68,251.70 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='256.68,250.60 259.20,248.08 261.72,250.60 259.20,253.12 256.68,250.60 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='326.37,260.48 328.89,257.96 331.41,260.48 328.89,263.00 326.37,260.48 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='326.37,261.26 328.89,258.74 331.41,261.26 328.89,263.78 326.37,261.26 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,120.32 52.44,130.34 55.81,142.53 57.09,146.56 61.50,158.35 66.38,168.45 67.19,169.89 72.87,178.54 78.56,185.26 82.64,189.22 84.25,190.64 89.94,195.12 95.63,198.97 101.32,202.36 107.01,205.43 112.70,208.25 115.16,209.41 118.39,210.88 124.08,213.37 129.77,215.73 135.46,217.98 141.15,220.14 146.83,222.22 152.52,224.22 158.21,226.15 163.90,228.01 169.59,229.80 175.28,231.54 180.97,233.21 186.66,234.83 189.50,235.62 192.35,236.40 198.04,237.91 203.73,239.38 209.42,240.79 215.11,242.16 220.79,243.48 226.48,244.76 232.17,245.99 237.86,247.19 243.55,248.34 249.24,249.46 254.93,250.54 259.20,251.32 260.62,251.58 266.31,252.59 272.00,253.57 277.69,254.51 283.38,255.42 289.07,256.30 294.76,257.15 300.44,257.98 306.13,258.77 311.82,259.54 317.51,260.29 323.20,261.01 328.89,261.70 ' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,123.69 52.52,119.53 47.72,119.53 50.12,123.69 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,123.06 52.52,118.90 47.72,118.90 50.12,123.06 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='52.44,138.12 54.84,133.96 50.04,133.96 52.44,138.12 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='52.44,143.45 54.84,139.29 50.04,139.29 52.44,143.45 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='57.09,137.80 59.49,133.64 54.69,133.64 57.09,137.80 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='57.09,144.39 59.49,140.23 54.69,140.23 57.09,144.39 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='66.38,151.29 68.78,147.13 63.98,147.13 66.38,151.29 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='66.38,150.66 68.78,146.50 63.98,146.50 66.38,150.66 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='82.64,172.14 85.04,167.99 80.24,167.99 82.64,172.14 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='82.64,186.88 85.04,182.73 80.24,182.73 82.64,186.88 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='115.16,191.27 117.56,187.12 112.76,187.12 115.16,191.27 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='115.16,204.29 117.56,200.13 112.76,200.13 115.16,204.29 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='189.50,228.75 191.90,224.60 187.10,224.60 189.50,228.75 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='189.50,230.79 191.90,226.63 187.10,226.63 189.50,230.79 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='259.20,240.36 261.60,236.20 256.80,236.20 259.20,240.36 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='259.20,241.30 261.60,237.14 256.80,237.14 259.20,241.30 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='328.89,250.08 331.29,245.92 326.49,245.92 328.89,250.08 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='328.89,253.37 331.29,249.22 326.49,249.22 328.89,253.37 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,125.84 52.44,130.32 55.81,136.42 57.09,138.63 61.50,145.80 66.38,153.01 67.19,154.13 72.87,161.54 78.56,168.17 82.64,172.48 84.25,174.10 89.94,179.42 95.63,184.23 101.32,188.57 107.01,192.51 112.70,196.09 115.16,197.55 118.39,199.37 124.08,202.38 129.77,205.15 135.46,207.71 141.15,210.08 146.83,212.29 152.52,214.36 158.21,216.30 163.90,218.12 169.59,219.84 175.28,221.48 180.97,223.02 186.66,224.50 189.50,225.21 192.35,225.91 198.04,227.26 203.73,228.55 209.42,229.79 215.11,230.99 220.79,232.15 226.48,233.26 232.17,234.34 237.86,235.39 243.55,236.41 249.24,237.39 254.93,238.35 259.20,239.05 260.62,239.28 266.31,240.19 272.00,241.07 277.69,241.93 283.38,242.78 289.07,243.60 294.76,244.40 300.44,245.18 306.13,245.94 311.82,246.69 317.51,247.42 323.20,248.13 328.89,248.83 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='48.34' y='130.27' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='133.83' x2='51.90' y2='130.27' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='130.27' x2='51.90' y2='133.83' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='48.34' y='115.22' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='118.78' x2='51.90' y2='115.22' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='115.22' x2='51.90' y2='118.78' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='50.66' y='127.13' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='130.70' x2='54.22' y2='127.13' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='127.13' x2='54.22' y2='130.70' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='50.66' y='137.33' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='140.89' x2='54.22' y2='137.33' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='137.33' x2='54.22' y2='140.89' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='55.30' y='159.59' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='163.16' x2='58.87' y2='159.59' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='159.59' x2='58.87' y2='163.16' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='55.30' y='142.97' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='146.53' x2='58.87' y2='142.97' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='142.97' x2='58.87' y2='146.53' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='64.60' y='173.86' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='177.43' x2='68.16' y2='173.86' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='173.86' x2='68.16' y2='177.43' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='64.60' y='154.42' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='157.98' x2='68.16' y2='154.42' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='154.42' x2='68.16' y2='157.98' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='80.86' y='186.88' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='190.44' x2='84.42' y2='186.88' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='186.88' x2='84.42' y2='190.44' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='80.86' y='191.58' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='195.15' x2='84.42' y2='191.58' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='191.58' x2='84.42' y2='195.15' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='113.38' y='225.92' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='229.49' x2='116.95' y2='225.92' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='225.92' x2='116.95' y2='229.49' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='113.38' y='224.20' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='227.76' x2='116.95' y2='224.20' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='224.20' x2='116.95' y2='227.76' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='187.72' y='255.41' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='258.97' x2='191.29' y2='255.41' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='255.41' x2='191.29' y2='258.97' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='187.72' y='255.88' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='259.44' x2='191.29' y2='255.88' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='255.88' x2='191.29' y2='259.44' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='257.42' y='264.03' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='267.59' x2='260.98' y2='264.03' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='264.03' x2='260.98' y2='267.59' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='257.42' y='265.28' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='268.85' x2='260.98' y2='265.28' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='265.28' x2='260.98' y2='268.85' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='327.11' y='270.62' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='274.18' x2='330.67' y2='270.62' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='270.62' x2='330.67' y2='274.18' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='327.11' y='267.95' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='271.51' x2='330.67' y2='267.95' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='267.95' x2='330.67' y2='271.51' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,127.55 52.44,134.22 55.81,143.24 57.09,146.48 61.50,156.92 66.38,167.27 67.19,168.87 72.87,179.33 78.56,188.50 82.64,194.39 84.25,196.57 89.94,203.67 95.63,209.94 101.32,215.50 107.01,220.43 112.70,224.83 115.16,226.58 118.39,228.75 124.08,232.27 129.77,235.43 135.46,238.29 141.15,240.87 146.83,243.21 152.52,245.35 158.21,247.31 163.90,249.10 169.59,250.75 175.28,252.28 180.97,253.69 186.66,255.00 189.50,255.63 192.35,256.23 198.04,257.37 203.73,258.44 209.42,259.45 215.11,260.40 220.79,261.29 226.48,262.13 232.17,262.93 237.86,263.69 243.55,264.41 249.24,265.10 254.93,265.75 259.20,266.22 260.62,266.38 266.31,266.97 272.00,267.54 277.69,268.09 283.38,268.61 289.07,269.11 294.76,269.59 300.44,270.04 306.13,270.49 311.82,270.91 317.51,271.32 323.20,271.71 328.89,272.08 ' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='131.48' x2='51.90' y2='127.92' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='127.92' x2='51.90' y2='131.48' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='47.60' y1='129.70' x2='52.64' y2='129.70' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='132.22' x2='50.12' y2='127.18' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='115.17' x2='51.90' y2='111.61' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='111.61' x2='51.90' y2='115.17' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='47.60' y1='113.39' x2='52.64' y2='113.39' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='115.91' x2='50.12' y2='110.87' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='129.76' x2='54.22' y2='126.19' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='126.19' x2='54.22' y2='129.76' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='49.92' y1='127.97' x2='54.96' y2='127.97' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='130.49' x2='52.44' y2='125.45' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='145.59' x2='54.22' y2='142.03' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='142.03' x2='54.22' y2='145.59' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='49.92' y1='143.81' x2='54.96' y2='143.81' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='146.33' x2='52.44' y2='141.29' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='149.36' x2='58.87' y2='145.79' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='145.79' x2='58.87' y2='149.36' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='54.57' y1='147.58' x2='59.61' y2='147.58' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='150.10' x2='57.09' y2='145.06' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='165.51' x2='58.87' y2='161.95' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='161.95' x2='58.87' y2='165.51' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='54.57' y1='163.73' x2='59.61' y2='163.73' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='166.25' x2='57.09' y2='161.21' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='173.98' x2='68.16' y2='170.41' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='170.41' x2='68.16' y2='173.98' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='63.86' y1='172.19' x2='68.90' y2='172.19' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='174.72' x2='66.38' y2='169.67' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='179.15' x2='68.16' y2='175.59' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='175.59' x2='68.16' y2='179.15' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='63.86' y1='177.37' x2='68.90' y2='177.37' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='179.89' x2='66.38' y2='174.85' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='209.73' x2='84.42' y2='206.17' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='206.17' x2='84.42' y2='209.73' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.12' y1='207.95' x2='85.16' y2='207.95' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='210.47' x2='82.64' y2='205.43' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='204.24' x2='84.42' y2='200.68' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='200.68' x2='84.42' y2='204.24' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.12' y1='202.46' x2='85.16' y2='202.46' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='204.98' x2='82.64' y2='199.94' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='228.39' x2='116.95' y2='224.83' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='224.83' x2='116.95' y2='228.39' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='112.64' y1='226.61' x2='117.68' y2='226.61' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='229.13' x2='115.16' y2='224.09' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='225.72' x2='116.95' y2='222.16' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='222.16' x2='116.95' y2='225.72' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='112.64' y1='223.94' x2='117.68' y2='223.94' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='226.46' x2='115.16' y2='221.42' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='247.05' x2='191.29' y2='243.49' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='243.49' x2='191.29' y2='247.05' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='186.98' y1='245.27' x2='192.02' y2='245.27' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='247.79' x2='189.50' y2='242.75' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='246.11' x2='191.29' y2='242.55' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='242.55' x2='191.29' y2='246.11' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='186.98' y1='244.33' x2='192.02' y2='244.33' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='246.85' x2='189.50' y2='241.81' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='255.52' x2='260.98' y2='251.96' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='251.96' x2='260.98' y2='255.52' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='256.68' y1='253.74' x2='261.72' y2='253.74' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='256.26' x2='259.20' y2='251.22' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='255.83' x2='260.98' y2='252.27' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='252.27' x2='260.98' y2='255.83' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='256.68' y1='254.05' x2='261.72' y2='254.05' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='256.57' x2='259.20' y2='251.53' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='263.67' x2='330.67' y2='260.11' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='260.11' x2='330.67' y2='263.67' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='326.37' y1='261.89' x2='331.41' y2='261.89' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='264.41' x2='328.89' y2='259.37' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='262.73' x2='330.67' y2='259.17' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='259.17' x2='330.67' y2='262.73' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='326.37' y1='260.95' x2='331.41' y2='260.95' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='263.47' x2='328.89' y2='258.43' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,124.69 52.44,134.63 55.81,147.35 57.09,151.71 61.50,165.04 66.38,177.16 67.19,178.93 72.87,189.90 78.56,198.61 82.64,203.76 84.25,205.59 89.94,211.23 95.63,215.85 101.32,219.67 107.01,222.87 112.70,225.59 115.16,226.65 118.39,227.94 124.08,230.00 129.77,231.82 135.46,233.47 141.15,234.96 146.83,236.34 152.52,237.63 158.21,238.84 163.90,239.98 169.59,241.06 175.28,242.10 180.97,243.10 186.66,244.06 189.50,244.52 192.35,244.99 198.04,245.88 203.73,246.76 209.42,247.60 215.11,248.43 220.79,249.23 226.48,250.01 232.17,250.77 237.86,251.51 243.55,252.23 249.24,252.94 254.93,253.63 259.20,254.13 260.62,254.30 266.31,254.95 272.00,255.59 277.69,256.22 283.38,256.82 289.07,257.42 294.76,258.00 300.44,258.57 306.13,259.12 311.82,259.66 317.51,260.19 323.20,260.70 328.89,261.21 ' style='stroke-width: 0.75; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='47.60' y1='109.16' x2='52.64' y2='109.16' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='111.68' x2='50.12' y2='106.64' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='47.60,109.16 50.12,106.64 52.64,109.16 50.12,111.68 47.60,109.16 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='47.60' y1='139.11' x2='52.64' y2='139.11' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='141.63' x2='50.12' y2='136.59' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='47.60,139.11 50.12,136.59 52.64,139.11 50.12,141.63 47.60,139.11 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='49.92' y1='127.19' x2='54.96' y2='127.19' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='129.71' x2='52.44' y2='124.67' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='49.92,127.19 52.44,124.67 54.96,127.19 52.44,129.71 49.92,127.19 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='49.92' y1='118.25' x2='54.96' y2='118.25' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='120.77' x2='52.44' y2='115.73' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='49.92,118.25 52.44,115.73 54.96,118.25 52.44,120.77 49.92,118.25 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='54.57' y1='149.61' x2='59.61' y2='149.61' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='152.13' x2='57.09' y2='147.09' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='54.57,149.61 57.09,147.09 59.61,149.61 57.09,152.13 54.57,149.61 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='54.57' y1='140.52' x2='59.61' y2='140.52' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='143.04' x2='57.09' y2='138.00' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='54.57,140.52 57.09,138.00 59.61,140.52 57.09,143.04 54.57,140.52 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='63.86' y1='158.55' x2='68.90' y2='158.55' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='161.07' x2='66.38' y2='156.03' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='63.86,158.55 66.38,156.03 68.90,158.55 66.38,161.07 63.86,158.55 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='63.86' y1='164.98' x2='68.90' y2='164.98' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='167.50' x2='66.38' y2='162.46' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='63.86,164.98 66.38,162.46 68.90,164.98 66.38,167.50 63.86,164.98 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.12' y1='192.27' x2='85.16' y2='192.27' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='194.79' x2='82.64' y2='189.75' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='80.12,192.27 82.64,189.75 85.16,192.27 82.64,194.79 80.12,192.27 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.12' y1='183.80' x2='85.16' y2='183.80' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='186.32' x2='82.64' y2='181.28' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='80.12,183.80 82.64,181.28 85.16,183.80 82.64,186.32 80.12,183.80 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='112.64' y1='215.32' x2='117.68' y2='215.32' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='217.84' x2='115.16' y2='212.80' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='112.64,215.32 115.16,212.80 117.68,215.32 115.16,217.84 112.64,215.32 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='112.64' y1='211.08' x2='117.68' y2='211.08' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='213.60' x2='115.16' y2='208.56' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='112.64,211.08 115.16,208.56 117.68,211.08 115.16,213.60 112.64,211.08 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='186.98' y1='244.17' x2='192.02' y2='244.17' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='246.69' x2='189.50' y2='241.65' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='186.98,244.17 189.50,241.65 192.02,244.17 189.50,246.69 186.98,244.17 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='186.98' y1='242.76' x2='192.02' y2='242.76' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='245.28' x2='189.50' y2='240.24' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='186.98,242.76 189.50,240.24 192.02,242.76 189.50,245.28 186.98,242.76 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='256.68' y1='253.74' x2='261.72' y2='253.74' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='256.26' x2='259.20' y2='251.22' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='256.68,253.74 259.20,251.22 261.72,253.74 259.20,256.26 256.68,253.74 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='256.68' y1='258.28' x2='261.72' y2='258.28' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='260.80' x2='259.20' y2='255.76' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='256.68,258.28 259.20,255.76 261.72,258.28 259.20,260.80 256.68,258.28 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='326.37' y1='268.16' x2='331.41' y2='268.16' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='270.68' x2='328.89' y2='265.64' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='326.37,268.16 328.89,265.64 331.41,268.16 328.89,270.68 326.37,268.16 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='326.37' y1='262.36' x2='331.41' y2='262.36' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='264.88' x2='328.89' y2='259.84' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='326.37,262.36 328.89,259.84 331.41,262.36 328.89,264.88 326.37,262.36 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,121.15 52.44,128.54 55.81,138.26 57.09,141.67 61.50,152.36 66.38,162.53 67.19,164.07 72.87,173.86 78.56,182.13 82.64,187.28 84.25,189.16 89.94,195.22 95.63,200.47 101.32,205.08 107.01,209.16 112.70,212.82 115.16,214.28 118.39,216.11 124.08,219.11 129.77,221.87 135.46,224.41 141.15,226.78 146.83,228.99 152.52,231.07 158.21,233.04 163.90,234.90 169.59,236.66 175.28,238.35 180.97,239.95 186.66,241.49 189.50,242.24 192.35,242.96 198.04,244.37 203.73,245.73 209.42,247.03 215.11,248.28 220.79,249.49 226.48,250.65 232.17,251.76 237.86,252.84 243.55,253.87 249.24,254.87 254.93,255.83 259.20,256.53 260.62,256.76 266.31,257.65 272.00,258.52 277.69,259.35 283.38,260.15 289.07,260.92 294.76,261.67 300.44,262.38 306.13,263.08 311.82,263.75 317.51,264.39 323.20,265.01 328.89,265.61 ' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='50.12' cy='122.80' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='122.80' x2='51.90' y2='122.80' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='124.58' x2='50.12' y2='121.02' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='50.12' cy='123.11' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='123.11' x2='51.90' y2='123.11' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='124.89' x2='50.12' y2='121.33' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='52.44' cy='126.09' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='126.09' x2='54.22' y2='126.09' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='127.87' x2='52.44' y2='124.31' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='52.44' cy='122.80' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='122.80' x2='54.22' y2='122.80' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='124.58' x2='52.44' y2='121.02' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='57.09' cy='136.28' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='136.28' x2='58.87' y2='136.28' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='138.07' x2='57.09' y2='134.50' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='57.09' cy='139.11' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='139.11' x2='58.87' y2='139.11' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='140.89' x2='57.09' y2='137.33' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='66.38' cy='159.81' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='159.81' x2='68.16' y2='159.81' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='161.59' x2='66.38' y2='158.02' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='66.38' cy='147.58' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='147.58' x2='68.16' y2='147.58' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='149.36' x2='66.38' y2='145.79' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='82.64' cy='165.14' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='165.14' x2='84.42' y2='165.14' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='166.92' x2='82.64' y2='163.36' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='82.64' cy='165.61' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='165.61' x2='84.42' y2='165.61' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='167.39' x2='82.64' y2='163.83' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='115.16' cy='202.62' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='202.62' x2='116.95' y2='202.62' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='204.40' x2='115.16' y2='200.83' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='115.16' cy='191.17' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='191.17' x2='116.95' y2='191.17' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='192.95' x2='115.16' y2='189.39' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='189.50' cy='235.39' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='235.39' x2='191.29' y2='235.39' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='237.17' x2='189.50' y2='233.61' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='189.50' cy='235.23' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='235.23' x2='191.29' y2='235.23' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='237.02' x2='189.50' y2='233.45' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='259.20' cy='245.27' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='245.27' x2='260.98' y2='245.27' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='247.05' x2='259.20' y2='243.49' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='259.20' cy='249.66' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='249.66' x2='260.98' y2='249.66' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='251.44' x2='259.20' y2='247.88' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='328.89' cy='261.73' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='261.73' x2='330.67' y2='261.73' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='263.52' x2='328.89' y2='259.95' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='328.89' cy='259.38' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='259.38' x2='330.67' y2='259.38' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='261.16' x2='328.89' y2='257.60' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,122.68 52.44,127.10 55.81,133.15 57.09,135.36 61.50,142.54 66.38,149.84 67.19,150.99 72.87,158.61 78.56,165.51 82.64,170.07 84.25,171.79 89.94,177.51 95.63,182.75 101.32,187.56 107.01,191.99 112.70,196.09 115.16,197.77 118.39,199.90 124.08,203.44 129.77,206.74 135.46,209.84 141.15,212.74 146.83,215.48 152.52,218.06 158.21,220.49 163.90,222.81 169.59,225.00 175.28,227.09 180.97,229.08 186.66,230.97 189.50,231.89 192.35,232.79 198.04,234.52 203.73,236.18 209.42,237.77 215.11,239.30 220.79,240.77 226.48,242.17 232.17,243.53 237.86,244.83 243.55,246.09 249.24,247.30 254.93,248.47 259.20,249.31 260.62,249.59 266.31,250.67 272.00,251.72 277.69,252.73 283.38,253.70 289.07,254.64 294.76,255.55 300.44,256.42 306.13,257.27 311.82,258.09 317.51,258.88 323.20,259.64 328.89,260.38 ' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,131.06 52.52,126.21 47.72,126.21 50.12,131.06 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,125.52 52.52,130.37 47.72,130.37 50.12,125.52 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,129.65 52.52,124.80 47.72,124.80 50.12,129.65 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,124.10 52.52,128.95 47.72,128.95 50.12,124.10 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='52.44,135.45 54.84,130.60 50.04,130.60 52.44,135.45 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='52.44,129.91 54.84,134.76 50.04,134.76 52.44,129.91 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='52.44,117.57 54.84,112.72 50.04,112.72 52.44,117.57 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='52.44,112.03 54.84,116.88 50.04,116.88 52.44,112.03 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='57.09,140.47 59.49,135.62 54.69,135.62 57.09,140.47 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='57.09,134.92 59.49,139.77 54.69,139.77 57.09,134.92 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='57.09,144.54 59.49,139.69 54.69,139.69 57.09,144.54 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='57.09,139.00 59.49,143.85 54.69,143.85 57.09,139.00 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='66.38,142.66 68.78,137.81 63.98,137.81 66.38,142.66 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='66.38,137.12 68.78,141.97 63.98,141.97 66.38,137.12 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='66.38,157.87 68.78,153.02 63.98,153.02 66.38,157.87 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='66.38,152.33 68.78,157.18 63.98,157.18 66.38,152.33 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='82.64,168.54 85.04,163.69 80.24,163.69 82.64,168.54 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='82.64,162.99 85.04,167.84 80.24,167.84 82.64,162.99 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='82.64,172.77 85.04,167.92 80.24,167.92 82.64,172.77 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='82.64,167.23 85.04,172.08 80.24,172.08 82.64,167.23 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='115.16,188.30 117.56,183.45 112.76,183.45 115.16,188.30 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='115.16,182.75 117.56,187.60 112.76,187.60 115.16,182.75 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='115.16,183.59 117.56,178.74 112.76,178.74 115.16,183.59 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='115.16,178.05 117.56,182.90 112.76,182.90 115.16,178.05 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='189.50,224.21 191.90,219.36 187.10,219.36 189.50,224.21 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='189.50,218.66 191.90,223.51 187.10,223.51 189.50,218.66 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='189.50,225.77 191.90,220.92 187.10,220.92 189.50,225.77 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='189.50,220.23 191.90,225.08 187.10,225.08 189.50,220.23 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='259.20,244.12 261.60,239.27 256.80,239.27 259.20,244.12 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='259.20,238.58 261.60,243.43 256.80,243.43 259.20,238.58 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='259.20,237.69 261.60,232.84 256.80,232.84 259.20,237.69 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='259.20,232.15 261.60,237.00 256.80,237.00 259.20,232.15 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='328.89,252.12 331.29,247.27 326.49,247.27 328.89,252.12 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='328.89,246.58 331.29,251.42 326.49,251.42 328.89,246.58 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='328.89,251.96 331.29,247.11 326.49,247.11 328.89,251.96 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='328.89,246.42 331.29,251.27 326.49,251.27 328.89,246.42 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,125.82 52.44,129.38 55.81,134.26 57.09,136.04 61.50,141.86 66.38,147.80 67.19,148.73 72.87,154.97 78.56,160.66 82.64,164.44 84.25,165.88 89.94,170.67 95.63,175.09 101.32,179.19 107.01,183.00 112.70,186.56 115.16,188.03 118.39,189.89 124.08,193.02 129.77,195.98 135.46,198.77 141.15,201.42 146.83,203.94 152.52,206.34 158.21,208.63 163.90,210.83 169.59,212.93 175.28,214.95 180.97,216.89 186.66,218.75 189.50,219.66 192.35,220.56 198.04,222.29 203.73,223.97 209.42,225.59 215.11,227.16 220.79,228.68 226.48,230.16 232.17,231.58 237.86,232.97 243.55,234.31 249.24,235.61 254.93,236.87 259.20,237.80 260.62,238.10 266.31,239.29 272.00,240.45 277.69,241.58 283.38,242.67 289.07,243.73 294.76,244.77 300.44,245.77 306.13,246.75 311.82,247.70 317.51,248.62 323.20,249.52 328.89,250.40 ' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='137.70' x2='51.90' y2='137.70' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='139.48' x2='50.12' y2='135.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='48.34' y='135.91' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='123.11' x2='51.90' y2='123.11' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='124.89' x2='50.12' y2='121.33' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='48.34' y='121.33' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='127.50' x2='54.22' y2='127.50' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='129.29' x2='52.44' y2='125.72' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='50.66' y='125.72' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='132.99' x2='54.22' y2='132.99' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='134.77' x2='52.44' y2='131.21' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='50.66' y='131.21' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='120.76' x2='58.87' y2='120.76' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='122.54' x2='57.09' y2='118.98' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='55.30' y='118.98' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='139.89' x2='58.87' y2='139.89' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='141.67' x2='57.09' y2='138.11' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='55.30' y='138.11' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='160.28' x2='68.16' y2='160.28' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='162.06' x2='66.38' y2='158.50' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='64.60' y='158.50' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='145.54' x2='68.16' y2='145.54' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='147.32' x2='66.38' y2='143.75' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='64.60' y='143.75' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='174.23' x2='84.42' y2='174.23' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='176.02' x2='82.64' y2='172.45' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='80.86' y='172.45' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='171.57' x2='84.42' y2='171.57' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='173.35' x2='82.64' y2='169.79' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='80.86' y='169.79' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='201.52' x2='116.95' y2='201.52' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='203.30' x2='115.16' y2='199.74' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='113.38' y='199.74' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='199.64' x2='116.95' y2='199.64' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='201.42' x2='115.16' y2='197.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='113.38' y='197.86' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='236.17' x2='191.29' y2='236.17' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='237.96' x2='189.50' y2='234.39' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='187.72' y='234.39' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='236.49' x2='191.29' y2='236.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='238.27' x2='189.50' y2='234.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='187.72' y='234.71' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='253.74' x2='260.98' y2='253.74' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='255.52' x2='259.20' y2='251.96' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='257.42' y='251.96' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='249.19' x2='260.98' y2='249.19' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='250.97' x2='259.20' y2='247.41' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='257.42' y='247.41' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='260.32' x2='330.67' y2='260.32' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='262.11' x2='328.89' y2='258.54' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='327.11' y='258.54' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='261.26' x2='330.67' y2='261.26' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='263.05' x2='328.89' y2='259.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='327.11' y='259.48' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,126.12 52.44,130.07 55.81,135.58 57.09,137.60 61.50,144.32 66.38,151.29 67.19,152.40 72.87,159.88 78.56,166.79 82.64,171.44 84.25,173.20 89.94,179.14 95.63,184.65 101.32,189.76 107.01,194.50 112.70,198.91 115.16,200.73 118.39,203.02 124.08,206.84 129.77,210.40 135.46,213.71 141.15,216.81 146.83,219.71 152.52,222.41 158.21,224.94 163.90,227.32 169.59,229.54 175.28,231.63 180.97,233.60 186.66,235.44 189.50,236.33 192.35,237.18 198.04,238.82 203.73,240.37 209.42,241.84 215.11,243.22 220.79,244.53 226.48,245.78 232.17,246.96 237.86,248.08 243.55,249.14 249.24,250.16 254.93,251.13 259.20,251.82 260.62,252.05 266.31,252.93 272.00,253.77 277.69,254.58 283.38,255.36 289.07,256.10 294.76,256.81 300.44,257.49 306.13,258.15 311.82,258.78 317.51,259.39 323.20,259.98 328.89,260.54 ' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='50.12' cy='125.31' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='127.09' x2='51.90' y2='123.53' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='123.53' x2='51.90' y2='127.09' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='50.12' cy='128.60' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='130.38' x2='51.90' y2='126.82' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='126.82' x2='51.90' y2='130.38' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='52.44' cy='126.88' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='128.66' x2='54.22' y2='125.09' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='125.09' x2='54.22' y2='128.66' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='52.44' cy='115.74' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='117.52' x2='54.22' y2='113.96' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='113.96' x2='54.22' y2='117.52' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='57.09' cy='138.64' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='140.42' x2='58.87' y2='136.86' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='136.86' x2='58.87' y2='140.42' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='57.09' cy='126.41' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='128.19' x2='58.87' y2='124.62' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='124.62' x2='58.87' y2='128.19' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='66.38' cy='152.91' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='154.69' x2='68.16' y2='151.13' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='151.13' x2='68.16' y2='154.69' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='66.38' cy='150.08' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='151.87' x2='68.16' y2='148.30' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='148.30' x2='68.16' y2='151.87' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='82.64' cy='173.61' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='175.39' x2='84.42' y2='171.82' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='171.82' x2='84.42' y2='175.39' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='82.64' cy='180.19' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='181.97' x2='84.42' y2='178.41' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='178.41' x2='84.42' y2='181.97' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='115.16' cy='205.75' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='207.53' x2='116.95' y2='203.97' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='203.97' x2='116.95' y2='207.53' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='115.16' cy='204.03' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='205.81' x2='116.95' y2='202.25' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='202.25' x2='116.95' y2='205.81' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='189.50' cy='243.86' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='245.64' x2='191.29' y2='242.08' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='242.08' x2='191.29' y2='245.64' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='189.50' cy='239.94' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='241.72' x2='191.29' y2='238.16' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='238.16' x2='191.29' y2='241.72' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='259.20' cy='258.44' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='260.22' x2='260.98' y2='256.66' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='256.66' x2='260.98' y2='260.22' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='259.20' cy='252.17' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='253.95' x2='260.98' y2='250.39' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='250.39' x2='260.98' y2='253.95' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='328.89' cy='262.52' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='264.30' x2='330.67' y2='260.74' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='260.74' x2='330.67' y2='264.30' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='328.89' cy='261.11' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='262.89' x2='330.67' y2='259.33' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='259.33' x2='330.67' y2='262.89' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,121.51 52.44,126.19 55.81,132.69 57.09,135.07 61.50,142.93 66.38,151.04 67.19,152.32 72.87,160.93 78.56,168.83 82.64,174.08 84.25,176.07 89.94,182.73 95.63,188.84 101.32,194.45 107.01,199.61 112.70,204.36 115.16,206.29 118.39,208.72 124.08,212.75 129.77,216.45 135.46,219.87 141.15,223.02 146.83,225.93 152.52,228.63 158.21,231.11 163.90,233.42 169.59,235.55 175.28,237.53 180.97,239.37 186.66,241.08 189.50,241.89 192.35,242.67 198.04,244.15 203.73,245.53 209.42,246.82 215.11,248.02 220.79,249.15 226.48,250.21 232.17,251.20 237.86,252.13 243.55,253.01 249.24,253.84 254.93,254.62 259.20,255.17 260.62,255.35 266.31,256.05 272.00,256.71 277.69,257.34 283.38,257.94 289.07,258.51 294.76,259.05 300.44,259.57 306.13,260.06 311.82,260.53 317.51,260.99 323.20,261.42 328.89,261.84 ' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,116.00 51.90,119.56 48.34,119.56 50.12,116.00 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='48.34' y='116.00' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,122.43 51.90,125.99 48.34,125.99 50.12,122.43 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='48.34' y='122.43' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='52.44,126.35 54.22,129.91 50.66,129.91 52.44,126.35 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='50.66' y='126.35' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='52.44,116.31 54.22,119.88 50.66,119.88 52.44,116.31 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='50.66' y='116.31' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='57.09,141.56 58.87,145.12 55.30,145.12 57.09,141.56 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='55.30' y='141.56' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='57.09,145.64 58.87,149.20 55.30,149.20 57.09,145.64 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='55.30' y='145.64' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='66.38,156.61 68.16,160.18 64.60,160.18 66.38,156.61 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='64.60' y='156.61' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='66.38,155.67 68.16,159.24 64.60,159.24 66.38,155.67 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='64.60' y='155.67' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='82.64,186.72 84.42,190.29 80.86,190.29 82.64,186.72 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='80.86' y='186.72' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='82.64,177.94 84.42,181.50 80.86,181.50 82.64,177.94 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='80.86' y='177.94' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='115.16,207.11 116.95,210.67 113.38,210.67 115.16,207.11 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='113.38' y='207.11' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='115.16,204.28 116.95,207.85 113.38,207.85 115.16,204.28 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='113.38' y='204.28' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='189.50,238.94 191.29,242.50 187.72,242.50 189.50,238.94 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='187.72' y='238.94' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='189.50,239.72 191.29,243.29 187.72,243.29 189.50,239.72 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='187.72' y='239.72' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='259.20,253.05 260.98,256.62 257.42,256.62 259.20,253.05 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='257.42' y='253.05' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='259.20,249.76 260.98,253.32 257.42,253.32 259.20,249.76 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='257.42' y='249.76' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='328.89,262.15 330.67,265.71 327.11,265.71 328.89,262.15 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='327.11' y='262.15' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='328.89,261.83 330.67,265.40 327.11,265.40 328.89,261.83 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='327.11' y='261.83' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,120.60 52.44,127.58 55.81,136.73 57.09,139.94 61.50,149.99 66.38,159.54 67.19,160.98 72.87,170.18 78.56,177.98 82.64,182.86 84.25,184.65 89.94,190.44 95.63,195.51 101.32,200.01 107.01,204.04 112.70,207.68 115.16,209.16 118.39,211.01 124.08,214.08 129.77,216.93 135.46,219.58 141.15,222.08 146.83,224.43 152.52,226.65 158.21,228.77 163.90,230.78 169.59,232.70 175.28,234.54 180.97,236.29 186.66,237.98 189.50,238.80 192.35,239.60 198.04,241.15 203.73,242.64 209.42,244.08 215.11,245.46 220.79,246.79 226.48,248.07 232.17,249.30 237.86,250.49 243.55,251.63 249.24,252.73 254.93,253.79 259.20,254.56 260.62,254.82 266.31,255.80 272.00,256.75 277.69,257.66 283.38,258.55 289.07,259.39 294.76,260.21 300.44,261.00 306.13,261.76 311.82,262.49 317.51,263.20 323.20,263.88 328.89,264.53 ' style='stroke-width: 0.75; stroke: #F5C710; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='48.34,118.94 51.90,118.94 51.90,115.37 48.34,115.37 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='48.34,117.21 51.90,117.21 51.90,113.65 48.34,113.65 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='50.66,128.19 54.22,128.19 54.22,124.62 50.66,124.62 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='50.66,130.85 54.22,130.85 54.22,127.29 50.66,127.29 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='55.30,146.38 58.87,146.38 58.87,142.81 55.30,142.81 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='55.30,140.42 58.87,140.42 58.87,136.86 55.30,136.86 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='64.60,162.53 68.16,162.53 68.16,158.97 64.60,158.97 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='64.60,164.57 68.16,164.57 68.16,161.00 64.60,161.00 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='80.86,186.37 84.42,186.37 84.42,182.80 80.86,182.80 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='80.86,193.11 84.42,193.11 84.42,189.54 80.86,189.54 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='113.38,213.81 116.95,213.81 116.95,210.24 113.38,210.24 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='113.38,210.36 116.95,210.36 116.95,206.79 113.38,206.79 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='187.72,237.96 191.29,237.96 191.29,234.39 187.72,234.39 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='187.72,238.27 191.29,238.27 191.29,234.71 187.72,234.71 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='257.42,250.81 260.98,250.81 260.98,247.25 257.42,247.25 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='257.42,249.40 260.98,249.40 260.98,245.84 257.42,245.84 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='327.11,259.91 330.67,259.91 330.67,256.35 327.11,256.35 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='327.11,255.05 330.67,255.05 330.67,251.48 327.11,251.48 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,118.73 52.44,126.51 55.81,136.68 57.09,140.24 61.50,151.35 66.38,161.84 67.19,163.41 72.87,173.38 78.56,181.66 82.64,186.76 84.25,188.61 89.94,194.47 95.63,199.47 101.32,203.76 107.01,207.49 112.70,210.76 115.16,212.06 118.39,213.66 124.08,216.26 129.77,218.60 135.46,220.74 141.15,222.71 146.83,224.54 152.52,226.25 158.21,227.85 163.90,229.37 169.59,230.82 175.28,232.20 180.97,233.52 186.66,234.78 189.50,235.40 192.35,236.01 198.04,237.19 203.73,238.33 209.42,239.43 215.11,240.50 220.79,241.54 226.48,242.56 232.17,243.54 237.86,244.49 243.55,245.42 249.24,246.33 254.93,247.21 259.20,247.86 260.62,248.07 266.31,248.91 272.00,249.73 277.69,250.52 283.38,251.30 289.07,252.06 294.76,252.79 300.44,253.51 306.13,254.22 311.82,254.90 317.51,255.57 323.20,256.22 328.89,256.85 ' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<defs>
  <clipPath id='cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0'>
    <rect x='398.97' y='102.24' width='301.08' height='186.63' />
  </clipPath>
</defs>
<defs>
  <clipPath id='cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA='>
    <rect x='0.00' y='0.00' width='720.00' height='576.00' />
  </clipPath>
</defs>
<line x1='410.12' y1='288.88' x2='677.93' y2='288.88' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='410.12' y1='288.88' x2='410.12' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='463.68' y1='288.88' x2='463.68' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='517.24' y1='288.88' x2='517.24' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='570.81' y1='288.88' x2='570.81' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='624.37' y1='288.88' x2='624.37' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='677.93' y1='288.88' x2='677.93' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='407.92' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='459.29' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='512.85' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='566.41' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>60</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='619.98' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>80</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='671.35' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='13.17px' lengthAdjust='spacingAndGlyphs'>100</text></g>
<line x1='398.97' y1='265.50' x2='398.97' y2='125.62' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='265.50' x2='394.21' y2='265.50' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='230.53' x2='394.21' y2='230.53' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='195.56' x2='394.21' y2='195.56' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='160.59' x2='394.21' y2='160.59' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='125.62' x2='394.21' y2='125.62' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,269.02) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='7.03px' lengthAdjust='spacingAndGlyphs'>-4</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,234.05) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='7.03px' lengthAdjust='spacingAndGlyphs'>-2</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,197.76) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,162.78) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>2</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,127.81) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>4</text></g>
<polyline points='398.97,288.88 700.04,288.88 700.04,102.24 398.97,102.24 398.97,288.88 ' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<defs>
  <clipPath id='cpMzYwLjAwfDcyMC4wMHwzMTcuMzl8ODIuMjk='>
    <rect x='360.00' y='82.29' width='360.00' height='235.10' />
  </clipPath>
</defs>
<g clip-path='url(#cpMzYwLjAwfDcyMC4wMHwzMTcuMzl8ODIuMjk=)'><text x='532.82' y='324.99' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='33.38px' lengthAdjust='spacingAndGlyphs'>Predicted</text></g>
<g clip-path='url(#cpMzYwLjAwfDcyMC4wMHwzMTcuMzl8ODIuMjk=)'><text transform='translate(368.55,233.76) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='76.41px' lengthAdjust='spacingAndGlyphs'>Standardized residual</text></g>
<defs>
  <clipPath id='cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0'>
    <rect x='398.97' y='102.24' width='301.08' height='186.63' />
  </clipPath>
</defs>
<line x1='398.97' y1='195.56' x2='700.04' y2='195.56' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='673.93' cy='157.27' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='673.93' cy='208.78' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='663.76' cy='181.84' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='663.76' cy='229.76' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='645.74' cy='243.36' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='645.74' cy='147.52' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='617.12' cy='194.92' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='617.12' cy='216.49' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='582.99' cy='171.89' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='582.99' cy='205.43' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='544.32' cy='197.41' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='544.32' cy='184.83' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='499.00' cy='200.29' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='499.00' cy='199.69' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='472.47' cy='201.44' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='472.47' cy='203.24' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='453.94' cy='183.96' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='453.94' cy='189.35' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='676.23,176.56 678.63,180.72 673.83,180.72 676.23,176.56 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='676.23,190.82 678.63,194.98 673.83,194.98 676.23,190.82 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='669.08,207.83 671.48,211.99 666.68,211.99 669.08,207.83 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='669.08,198.61 671.48,202.76 666.68,202.76 669.08,198.61 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='655.52,203.12 657.92,207.27 653.12,207.27 655.52,203.12 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='655.52,224.93 657.92,229.08 653.12,229.08 655.52,224.93 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='631.17,149.51 633.57,153.66 628.77,153.66 631.17,149.51 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='631.17,200.67 633.57,204.83 628.77,204.83 631.17,200.67 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='596.13,187.37 598.53,191.53 593.73,191.53 596.13,187.37 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='596.13,145.43 598.53,149.59 593.73,149.59 596.13,145.43 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='547.35,212.42 549.75,216.57 544.95,216.57 547.35,212.42 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='547.35,228.35 549.75,232.51 544.95,232.51 547.35,228.35 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='493.67,204.52 496.07,208.68 491.27,208.68 493.67,204.52 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='493.67,181.88 496.07,186.03 491.27,186.03 493.67,181.88 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='473.37,172.81 475.77,176.97 470.97,176.97 473.37,172.81 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='473.37,183.72 475.77,187.87 470.97,187.87 473.37,183.72 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='462.65,192.92 465.05,197.08 460.25,197.08 462.65,192.92 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='462.65,208.86 465.05,213.02 460.25,213.02 462.65,208.86 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='670.35' y1='255.96' x2='675.39' y2='255.96' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='672.87' y1='258.48' x2='672.87' y2='253.44' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='670.35' y1='194.91' x2='675.39' y2='194.91' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='672.87' y1='197.43' x2='672.87' y2='192.39' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='664.40' y1='170.76' x2='669.44' y2='170.76' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='666.92' y1='173.28' x2='666.92' y2='168.24' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='664.40' y1='175.12' x2='669.44' y2='175.12' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='666.92' y1='177.64' x2='666.92' y2='172.60' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='653.02' y1='156.59' x2='658.06' y2='156.59' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='655.54' y1='159.11' x2='655.54' y2='154.07' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='653.02' y1='206.74' x2='658.06' y2='206.74' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='655.54' y1='209.26' x2='655.54' y2='204.22' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='632.19' y1='196.01' x2='637.23' y2='196.01' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='634.71' y1='198.53' x2='634.71' y2='193.49' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='632.19' y1='203.28' x2='637.23' y2='203.28' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='634.71' y1='205.80' x2='634.71' y2='200.76' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='601.00' y1='173.86' x2='606.04' y2='173.86' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='603.52' y1='176.38' x2='603.52' y2='171.34' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='601.00' y1='226.92' x2='606.04' y2='226.92' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='603.52' y1='229.44' x2='603.52' y2='224.40' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='553.52' y1='183.11' x2='558.56' y2='183.11' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='556.04' y1='185.63' x2='556.04' y2='180.59' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='553.52' y1='196.92' x2='558.56' y2='196.92' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='556.04' y1='199.44' x2='556.04' y2='194.40' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='488.45' y1='194.03' x2='493.49' y2='194.03' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='490.97' y1='196.55' x2='490.97' y2='191.51' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='488.45' y1='208.57' x2='493.49' y2='208.57' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='490.97' y1='211.09' x2='490.97' y2='206.05' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.55' y1='191.23' x2='460.59' y2='191.23' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='458.07' y1='193.75' x2='458.07' y2='188.71' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.55' y1='191.23' x2='460.59' y2='191.23' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='458.07' y1='193.75' x2='458.07' y2='188.71' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='436.34' y1='206.69' x2='441.38' y2='206.69' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='438.86' y1='209.21' x2='438.86' y2='204.17' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='436.34' y1='189.25' x2='441.38' y2='189.25' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='438.86' y1='191.77' x2='438.86' y2='186.73' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='678.05' y1='191.65' x2='681.62' y2='188.09' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='678.05' y1='188.09' x2='681.62' y2='191.65' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='678.05' y1='185.16' x2='681.62' y2='181.60' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='678.05' y1='181.60' x2='681.62' y2='185.16' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='667.18' y1='150.11' x2='670.74' y2='146.55' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='667.18' y1='146.55' x2='670.74' y2='150.11' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='667.18' y1='243.12' x2='670.74' y2='239.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='667.18' y1='239.56' x2='670.74' y2='243.12' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='650.41' y1='205.19' x2='653.97' y2='201.63' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='650.41' y1='201.63' x2='653.97' y2='205.19' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='650.41' y1='205.91' x2='653.97' y2='202.35' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='650.41' y1='202.35' x2='653.97' y2='205.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='626.84' y1='164.09' x2='630.41' y2='160.53' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='626.84' y1='160.53' x2='630.41' y2='164.09' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='626.84' y1='235.48' x2='630.41' y2='231.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='626.84' y1='231.91' x2='630.41' y2='235.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='596.49' y1='210.73' x2='600.06' y2='207.16' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='596.49' y1='207.16' x2='600.06' y2='210.73' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='596.49' y1='169.63' x2='600.06' y2='166.06' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='596.49' y1='166.06' x2='600.06' y2='169.63' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='549.68' y1='205.84' x2='553.25' y2='202.28' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='549.68' y1='202.28' x2='553.25' y2='205.84' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='549.68' y1='216.66' x2='553.25' y2='213.09' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='549.68' y1='213.09' x2='553.25' y2='216.66' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='481.97' y1='195.86' x2='485.53' y2='192.30' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='481.97' y1='192.30' x2='485.53' y2='195.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='481.97' y1='195.14' x2='485.53' y2='191.58' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='481.97' y1='191.58' x2='485.53' y2='195.14' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='448.29' y1='188.83' x2='451.85' y2='185.26' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='448.29' y1='185.26' x2='451.85' y2='188.83' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='448.29' y1='190.99' x2='451.85' y2='187.43' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='448.29' y1='187.43' x2='451.85' y2='190.99' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='430.02' y1='189.38' x2='433.58' y2='185.81' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='430.02' y1='185.81' x2='433.58' y2='189.38' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='430.02' y1='195.15' x2='433.58' y2='191.58' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='430.02' y1='191.58' x2='433.58' y2='195.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='683.67,165.59 686.19,163.07 688.71,165.59 686.19,168.11 683.67,165.59 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='683.67,163.41 686.19,160.89 688.71,163.41 686.19,165.93 683.67,163.41 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='666.56,209.34 669.08,206.82 671.60,209.34 669.08,211.86 666.56,209.34 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='666.56,267.56 669.08,265.04 671.60,267.56 669.08,270.08 666.56,267.56 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='638.85,187.91 641.37,185.39 643.89,187.91 641.37,190.43 638.85,187.91 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='638.85,185.72 641.37,183.20 643.89,185.72 641.37,188.24 638.85,185.72 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='601.46,177.99 603.98,175.47 606.50,177.99 603.98,180.51 601.46,177.99 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='601.46,196.91 603.98,194.39 606.50,196.91 603.98,199.43 601.46,196.91 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='565.98,214.04 568.50,211.52 571.02,214.04 568.50,216.56 565.98,214.04 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='565.98,203.13 568.50,200.61 571.02,203.13 568.50,205.65 565.98,203.13 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='531.51,188.77 534.03,186.25 536.55,188.77 534.03,191.29 531.51,188.77 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='531.51,182.95 534.03,180.43 536.55,182.95 534.03,185.47 531.51,182.95 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='486.74,211.21 489.26,208.69 491.78,211.21 489.26,213.73 486.74,211.21 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='486.74,189.38 489.26,186.86 491.78,189.38 489.26,191.90 486.74,189.38 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='459.93,197.30 462.45,194.78 464.97,197.30 462.45,199.82 459.93,197.30 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='459.93,192.21 462.45,189.69 464.97,192.21 462.45,194.73 459.93,192.21 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='442.20,189.89 444.72,187.37 447.24,189.89 444.72,192.41 442.20,189.89 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='442.20,193.52 444.72,191.00 447.24,193.52 444.72,196.04 442.20,193.52 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='676.75,177.21 679.15,173.06 674.35,173.06 676.75,177.21 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='676.75,174.52 679.15,170.37 674.35,170.37 676.75,174.52 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='669.10,219.87 671.50,215.72 666.70,215.72 669.10,219.87 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='669.10,242.73 671.50,238.58 666.70,238.58 669.10,242.73 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='654.91,182.89 657.31,178.74 652.51,178.74 654.91,182.89 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='654.91,211.13 657.31,206.97 652.51,206.97 654.91,211.13 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='630.36,179.08 632.76,174.93 627.96,174.93 630.36,179.08 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='630.36,176.39 632.76,172.24 627.96,172.24 630.36,176.39 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='597.10,185.00 599.50,180.84 594.70,180.84 597.10,185.00 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='597.10,248.20 599.50,244.04 594.70,244.04 597.10,248.20 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='554.29,159.55 556.69,155.39 551.89,155.39 554.29,159.55 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='554.29,215.35 556.69,211.20 551.89,211.20 554.29,215.35 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='507.04,201.63 509.44,197.47 504.64,197.47 507.04,201.63 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='507.04,210.37 509.44,206.21 504.64,206.21 507.04,210.37 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='483.41,192.05 485.81,187.89 481.01,187.89 483.41,192.05 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='483.41,196.08 485.81,191.93 481.01,191.93 483.41,196.08 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='466.71,191.81 469.11,187.65 464.31,187.65 466.71,191.81 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='466.71,205.93 469.11,201.77 464.31,201.77 466.71,205.93 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='672.06' y='210.06' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='672.06' y1='213.62' x2='675.62' y2='210.06' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='672.06' y1='210.06' x2='675.62' y2='213.62' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='672.06' y='155.65' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='672.06' y1='159.22' x2='675.62' y2='155.65' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='672.06' y1='155.65' x2='675.62' y2='159.22' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='660.67' y='174.62' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='660.67' y1='178.18' x2='664.23' y2='174.62' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='660.67' y1='174.62' x2='664.23' y2='178.18' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='660.67' y='211.46' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='660.67' y1='215.02' x2='664.23' y2='211.46' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='660.67' y1='211.46' x2='664.23' y2='215.02' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='639.72' y='247.61' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='639.72' y1='251.17' x2='643.29' y2='247.61' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='639.72' y1='247.61' x2='643.29' y2='251.17' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='639.72' y='187.54' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='639.72' y1='191.10' x2='643.29' y2='187.54' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='639.72' y1='187.54' x2='643.29' y2='191.10' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='604.21' y='224.03' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='604.21' y1='227.60' x2='607.77' y2='224.03' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='604.21' y1='224.03' x2='607.77' y2='227.60' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='604.21' y='153.76' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='604.21' y1='157.32' x2='607.77' y2='153.76' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='604.21' y1='153.76' x2='607.77' y2='157.32' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='557.91' y='173.09' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='557.91' y1='176.65' x2='561.47' y2='173.09' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='557.91' y1='173.09' x2='561.47' y2='176.65' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='557.91' y='190.09' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='557.91' y1='193.65' x2='561.47' y2='190.09' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='557.91' y1='190.09' x2='561.47' y2='193.65' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='502.92' y='197.85' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='502.92' y1='201.41' x2='506.49' y2='197.85' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='502.92' y1='197.85' x2='506.49' y2='201.41' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='502.92' y='191.61' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='502.92' y1='195.18' x2='506.49' y2='191.61' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='502.92' y1='191.61' x2='506.49' y2='195.18' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='453.32' y='199.42' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='453.32' y1='202.98' x2='456.88' y2='199.42' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='453.32' y1='199.42' x2='456.88' y2='202.98' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='453.32' y='201.12' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='453.32' y1='204.68' x2='456.88' y2='201.12' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='453.32' y1='201.12' x2='456.88' y2='204.68' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='435.21' y='192.29' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='435.21' y1='195.85' x2='438.78' y2='192.29' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='435.21' y1='192.29' x2='438.78' y2='195.85' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='435.21' y='196.82' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='435.21' y1='200.38' x2='438.78' y2='196.82' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='435.21' y1='196.82' x2='438.78' y2='200.38' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='425.21' y='194.92' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='425.21' y1='198.49' x2='428.78' y2='194.92' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='425.21' y1='194.92' x2='428.78' y2='198.49' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='425.21' y='185.29' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='425.21' y1='188.85' x2='428.78' y2='185.29' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='425.21' y1='185.29' x2='428.78' y2='188.85' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='676.94' y1='217.15' x2='680.50' y2='213.58' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='676.94' y1='213.58' x2='680.50' y2='217.15' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='676.20' y1='215.37' x2='681.24' y2='215.37' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='678.72' y1='217.89' x2='678.72' y2='212.85' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='676.94' y1='152.65' x2='680.50' y2='149.08' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='676.94' y1='149.08' x2='680.50' y2='152.65' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='676.20' y1='150.87' x2='681.24' y2='150.87' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='678.72' y1='153.39' x2='678.72' y2='148.35' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='659.97' y1='171.03' x2='663.53' y2='167.46' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='659.97' y1='167.46' x2='663.53' y2='171.03' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='659.23' y1='169.25' x2='664.27' y2='169.25' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='661.75' y1='171.77' x2='661.75' y2='166.72' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='659.97' y1='233.67' x2='663.53' y2='230.10' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='659.97' y1='230.10' x2='663.53' y2='233.67' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='659.23' y1='231.88' x2='664.27' y2='231.88' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='661.75' y1='234.40' x2='661.75' y2='229.36' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='630.78' y1='180.97' x2='634.35' y2='177.41' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='630.78' y1='177.41' x2='634.35' y2='180.97' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='630.05' y1='179.19' x2='635.09' y2='179.19' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='632.57' y1='181.71' x2='632.57' y2='176.67' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='630.78' y1='244.85' x2='634.35' y2='241.29' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='630.78' y1='241.29' x2='634.35' y2='244.85' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='630.05' y1='243.07' x2='635.09' y2='243.07' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='632.57' y1='245.59' x2='632.57' y2='240.55' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='587.32' y1='177.70' x2='590.89' y2='174.14' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='587.32' y1='174.14' x2='590.89' y2='177.70' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='586.59' y1='175.92' x2='591.63' y2='175.92' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='589.11' y1='178.44' x2='589.11' y2='173.40' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='587.32' y1='198.17' x2='590.89' y2='194.61' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='587.32' y1='194.61' x2='590.89' y2='198.17' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='586.59' y1='196.39' x2='591.63' y2='196.39' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='589.11' y1='198.91' x2='589.11' y2='193.87' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='541.89' y1='213.90' x2='545.46' y2='210.33' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='541.89' y1='210.33' x2='545.46' y2='213.90' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='541.15' y1='212.12' x2='546.19' y2='212.12' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='543.67' y1='214.64' x2='543.67' y2='209.60' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='541.89' y1='192.19' x2='545.46' y2='188.63' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='541.89' y1='188.63' x2='545.46' y2='192.19' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='541.15' y1='190.41' x2='546.19' y2='190.41' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='543.67' y1='192.93' x2='543.67' y2='187.89' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='502.80' y1='197.17' x2='506.36' y2='193.60' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='502.80' y1='193.60' x2='506.36' y2='197.17' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='502.06' y1='195.39' x2='507.10' y2='195.39' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='504.58' y1='197.91' x2='504.58' y2='192.87' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='502.80' y1='186.62' x2='506.36' y2='183.06' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='502.80' y1='183.06' x2='506.36' y2='186.62' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='502.06' y1='184.84' x2='507.10' y2='184.84' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='504.58' y1='187.36' x2='504.58' y2='182.32' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='472.28' y1='200.29' x2='475.84' y2='196.72' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='472.28' y1='196.72' x2='475.84' y2='200.29' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='471.54' y1='198.50' x2='476.58' y2='198.50' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='474.06' y1='201.02' x2='474.06' y2='195.98' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='472.28' y1='196.57' x2='475.84' y2='193.00' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='472.28' y1='193.00' x2='475.84' y2='196.57' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='471.54' y1='194.78' x2='476.58' y2='194.78' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='474.06' y1='197.30' x2='474.06' y2='192.26' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.87' y1='195.79' x2='459.43' y2='192.22' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.87' y1='192.22' x2='459.43' y2='195.79' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.13' y1='194.00' x2='460.17' y2='194.00' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='457.65' y1='196.52' x2='457.65' y2='191.48' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.87' y1='197.03' x2='459.43' y2='193.46' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.87' y1='193.46' x2='459.43' y2='197.03' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.13' y1='195.24' x2='460.17' y2='195.24' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='457.65' y1='197.76' x2='457.65' y2='192.72' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='443.79' y1='200.06' x2='447.35' y2='196.49' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='443.79' y1='196.49' x2='447.35' y2='200.06' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='443.05' y1='198.27' x2='448.09' y2='198.27' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='445.57' y1='200.79' x2='445.57' y2='195.75' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='443.79' y1='196.34' x2='447.35' y2='192.77' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='443.79' y1='192.77' x2='447.35' y2='196.34' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='443.05' y1='194.55' x2='448.09' y2='194.55' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='445.57' y1='197.07' x2='445.57' y2='192.03' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='682.25' y1='152.76' x2='687.29' y2='152.76' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='684.77' y1='155.28' x2='684.77' y2='150.24' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='682.25,152.76 684.77,150.24 687.29,152.76 684.77,155.28 682.25,152.76 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='682.25' y1='259.67' x2='687.29' y2='259.67' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='684.77' y1='262.19' x2='684.77' y2='257.15' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='682.25,259.67 684.77,257.15 687.29,259.67 684.77,262.19 682.25,259.67 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='669.62' y1='190.73' x2='674.66' y2='190.73' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='672.14' y1='193.25' x2='672.14' y2='188.21' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='669.62,190.73 672.14,188.21 674.66,190.73 672.14,193.25 669.62,190.73 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='669.62' y1='158.83' x2='674.66' y2='158.83' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='672.14' y1='161.35' x2='672.14' y2='156.31' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='669.62,158.83 672.14,156.31 674.66,158.83 672.14,161.35 669.62,158.83 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='647.20' y1='223.92' x2='652.24' y2='223.92' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='649.72' y1='226.44' x2='649.72' y2='221.40' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='647.20,223.92 649.72,221.40 652.24,223.92 649.72,226.44 647.20,223.92 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='647.20' y1='191.45' x2='652.24' y2='191.45' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='649.72' y1='193.97' x2='649.72' y2='188.93' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='647.20,191.45 649.72,188.93 652.24,191.45 649.72,193.97 647.20,191.45 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='611.57' y1='181.34' x2='616.61' y2='181.34' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='614.09' y1='183.86' x2='614.09' y2='178.82' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='611.57,181.34 614.09,178.82 616.61,181.34 614.09,183.86 611.57,181.34 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='611.57' y1='204.29' x2='616.61' y2='204.29' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='614.09' y1='206.81' x2='614.09' y2='201.77' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='611.57,204.29 614.09,201.77 616.61,204.29 614.09,206.81 611.57,204.29 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='569.31' y1='213.36' x2='574.35' y2='213.36' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='571.83' y1='215.88' x2='571.83' y2='210.84' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='569.31,213.36 571.83,210.84 574.35,213.36 571.83,215.88 569.31,213.36 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='569.31' y1='183.14' x2='574.35' y2='183.14' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='571.83' y1='185.66' x2='571.83' y2='180.62' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='569.31,183.14 571.83,180.62 574.35,183.14 571.83,185.66 569.31,183.14 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='523.19' y1='199.25' x2='528.23' y2='199.25' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='525.71' y1='201.77' x2='525.71' y2='196.73' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='523.19,199.25 525.71,196.73 528.23,199.25 525.71,201.77 523.19,199.25 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='523.19' y1='184.14' x2='528.23' y2='184.14' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='525.71' y1='186.66' x2='525.71' y2='181.62' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='523.19,184.14 525.71,181.62 528.23,184.14 525.71,186.66 523.19,184.14 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='475.45' y1='202.47' x2='480.49' y2='202.47' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='477.97' y1='204.99' x2='477.97' y2='199.95' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='475.45,202.47 477.97,199.95 480.49,202.47 477.97,204.99 475.45,202.47 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='475.45' y1='197.44' x2='480.49' y2='197.44' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='477.97' y1='199.96' x2='477.97' y2='194.92' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='475.45,197.44 477.97,194.92 480.49,197.44 477.97,199.96 475.45,197.44 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='451.03' y1='185.59' x2='456.07' y2='185.59' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='453.55' y1='188.11' x2='453.55' y2='183.07' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='451.03,185.59 453.55,183.07 456.07,185.59 453.55,188.11 451.03,185.59 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='451.03' y1='201.82' x2='456.07' y2='201.82' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='453.55' y1='204.34' x2='453.55' y2='199.30' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='451.03,201.82 453.55,199.30 456.07,201.82 453.55,204.34 451.03,201.82 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='435.52' y1='204.66' x2='440.56' y2='204.66' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='438.04' y1='207.18' x2='438.04' y2='202.14' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='435.52,204.66 438.04,202.14 440.56,204.66 438.04,207.18 435.52,204.66 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='435.52' y1='183.95' x2='440.56' y2='183.95' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='438.04' y1='186.47' x2='438.04' y2='181.43' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='435.52,183.95 438.04,181.43 440.56,183.95 438.04,186.47 435.52,183.95 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='682.15' cy='196.22' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='680.37' y1='196.22' x2='683.93' y2='196.22' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='682.15' y1='198.00' x2='682.15' y2='194.43' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='682.15' cy='197.95' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='680.37' y1='197.95' x2='683.93' y2='197.95' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='682.15' y1='199.74' x2='682.15' y2='196.17' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='674.61' cy='189.99' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='672.82' y1='189.99' x2='676.39' y2='189.99' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='674.61' y1='191.77' x2='674.61' y2='188.21' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='674.61' cy='171.76' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='672.82' y1='171.76' x2='676.39' y2='171.76' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='674.61' y1='173.55' x2='674.61' y2='169.98' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='660.50' cy='200.71' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='658.72' y1='200.71' x2='662.29' y2='200.71' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='660.50' y1='202.49' x2='660.50' y2='198.92' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='660.50' cy='216.33' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='658.72' y1='216.33' x2='662.29' y2='216.33' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='660.50' y1='218.11' x2='660.50' y2='214.55' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='635.76' cy='250.71' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='633.98' y1='250.71' x2='637.54' y2='250.71' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='635.76' y1='252.49' x2='635.76' y2='248.93' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='635.76' cy='183.00' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='633.98' y1='183.00' x2='637.54' y2='183.00' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='635.76' y1='184.78' x2='635.76' y2='181.22' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='601.22' cy='168.27' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='599.44' y1='168.27' x2='603.00' y2='168.27' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='601.22' y1='170.05' x2='601.22' y2='166.49' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='601.22' cy='170.87' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='599.44' y1='170.87' x2='603.00' y2='170.87' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='601.22' y1='172.66' x2='601.22' y2='169.09' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='553.90' cy='222.37' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='552.12' y1='222.37' x2='555.68' y2='222.37' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='553.90' y1='224.15' x2='553.90' y2='220.58' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='553.90' cy='159.00' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='552.12' y1='159.00' x2='555.68' y2='159.00' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='553.90' y1='160.78' x2='553.90' y2='157.22' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='495.64' cy='214.94' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='493.85' y1='214.94' x2='497.42' y2='214.94' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='495.64' y1='216.72' x2='495.64' y2='213.15' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='495.64' cy='214.07' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='493.85' y1='214.07' x2='497.42' y2='214.07' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='495.64' y1='215.85' x2='495.64' y2='212.29' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='465.88' cy='173.18' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='464.10' y1='173.18' x2='467.66' y2='173.18' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='465.88' y1='174.96' x2='465.88' y2='171.40' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='465.88' cy='197.49' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='464.10' y1='197.49' x2='467.66' y2='197.49' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='465.88' y1='199.27' x2='465.88' y2='195.71' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='446.98' cy='203.06' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='445.20' y1='203.06' x2='448.76' y2='203.06' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='446.98' y1='204.84' x2='446.98' y2='201.28' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='446.98' cy='190.04' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='445.20' y1='190.04' x2='448.76' y2='190.04' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='446.98' y1='191.82' x2='446.98' y2='188.26' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='676.78,208.77 679.18,203.92 674.38,203.92 676.78,208.77 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='676.78,203.23 679.18,208.08 674.38,208.08 676.78,203.23 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='676.78,202.79 679.18,197.94 674.38,197.94 676.78,202.79 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='676.78,197.25 679.18,202.10 674.38,202.10 676.78,197.25 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='670.71,212.32 673.11,207.47 668.31,207.47 670.71,212.32 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='670.71,206.78 673.11,211.63 668.31,211.63 670.71,206.78 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='670.71,136.56 673.11,131.71 668.31,131.71 670.71,136.56 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='670.71,131.02 673.11,135.87 668.31,135.87 670.71,131.02 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='659.34,205.36 661.74,200.51 656.94,200.51 659.34,205.36 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='659.34,199.82 661.74,204.67 656.94,204.67 659.34,199.82 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='659.34,222.64 661.74,217.79 656.94,217.79 659.34,222.64 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='659.34,217.10 661.74,221.95 656.94,221.95 659.34,217.10 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='639.25,164.82 641.65,159.97 636.85,159.97 639.25,164.82 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='639.25,159.28 641.65,164.13 636.85,164.13 639.25,159.28 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='639.25,229.29 641.65,224.44 636.85,224.44 639.25,229.29 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='639.25,223.75 641.65,228.60 636.85,228.60 639.25,223.75 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='610.82,203.93 613.22,199.08 608.42,199.08 610.82,203.93 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='610.82,198.39 613.22,203.24 608.42,203.24 610.82,198.39 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='610.82,221.87 613.22,217.02 608.42,217.02 610.82,221.87 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='610.82,216.33 613.22,221.18 608.42,221.18 610.82,216.33 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='570.55,187.72 572.95,182.87 568.15,182.87 570.55,187.72 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='570.55,182.18 572.95,187.03 568.15,187.03 570.55,182.18 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='570.55,167.78 572.95,162.93 568.15,162.93 570.55,167.78 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='570.55,162.24 572.95,167.09 568.15,167.09 570.55,162.24 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='516.52,205.84 518.92,200.99 514.12,200.99 516.52,205.84 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='516.52,200.29 518.92,205.14 514.12,205.14 516.52,200.29 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='516.52,212.48 518.92,207.63 514.12,207.63 516.52,212.48 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='516.52,206.94 518.92,211.79 514.12,211.79 516.52,206.94 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='485.55,213.38 487.95,208.53 483.15,208.53 485.55,213.38 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='485.55,207.84 487.95,212.69 483.15,212.69 485.55,207.84 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='485.55,186.13 487.95,181.29 483.15,181.29 485.55,186.13 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='485.55,180.59 487.95,185.44 483.15,185.44 485.55,180.59 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='464.03,193.88 466.43,189.04 461.63,189.04 464.03,193.88 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='464.03,188.34 466.43,193.19 461.63,193.19 464.03,188.34 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='464.03,193.22 466.43,188.37 461.63,188.37 464.03,193.22 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='464.03,187.68 466.43,192.53 461.63,192.53 464.03,187.68 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='674.50' y1='242.38' x2='678.07' y2='242.38' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='676.28' y1='244.16' x2='676.28' y2='240.60' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='674.50' y='240.60' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='674.50' y1='183.42' x2='678.07' y2='183.42' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='676.28' y1='185.20' x2='676.28' y2='181.64' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='674.50' y='181.64' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='667.75' y1='185.18' x2='671.31' y2='185.18' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='669.53' y1='186.97' x2='669.53' y2='183.40' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='667.75' y='183.40' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='667.75' y1='207.37' x2='671.31' y2='207.37' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='669.53' y1='209.16' x2='669.53' y2='205.59' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='667.75' y='205.59' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='654.88' y1='127.46' x2='658.45' y2='127.46' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='656.66' y1='129.24' x2='656.66' y2='125.68' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='654.88' y='125.68' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='654.88' y1='204.81' x2='658.45' y2='204.81' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='656.66' y1='206.59' x2='656.66' y2='203.03' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='654.88' y='203.03' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='631.50' y1='231.88' x2='635.07' y2='231.88' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='633.28' y1='233.66' x2='633.28' y2='230.10' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='631.50' y='230.10' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='631.50' y1='172.29' x2='635.07' y2='172.29' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='633.28' y1='174.07' x2='633.28' y2='170.50' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='631.50' y='170.50' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='597.10' y1='206.87' x2='600.67' y2='206.87' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='598.88' y1='208.65' x2='598.88' y2='205.09' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='597.10' y='205.09' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='597.10' y1='196.09' x2='600.67' y2='196.09' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='598.88' y1='197.87' x2='598.88' y2='194.31' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='597.10' y='194.31' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='547.07' y1='198.75' x2='550.64' y2='198.75' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='548.85' y1='200.53' x2='548.85' y2='196.97' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='547.07' y='196.97' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='547.07' y1='191.14' x2='550.64' y2='191.14' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='548.85' y1='192.93' x2='548.85' y2='189.36' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='547.07' y='189.36' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='486.28' y1='194.94' x2='489.84' y2='194.94' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='488.06' y1='196.72' x2='488.06' y2='193.16' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='486.28' y='193.16' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='486.28' y1='196.21' x2='489.84' y2='196.21' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='488.06' y1='197.99' x2='488.06' y2='194.43' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='486.28' y='194.43' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='459.81' y1='203.30' x2='463.38' y2='203.30' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='461.59' y1='205.08' x2='461.59' y2='201.52' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='459.81' y='201.52' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='459.81' y1='184.91' x2='463.38' y2='184.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='461.59' y1='186.70' x2='461.59' y2='183.13' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='459.81' y='183.13' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='444.92' y1='194.67' x2='448.48' y2='194.67' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='446.70' y1='196.45' x2='446.70' y2='192.89' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='444.92' y='192.89' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='444.92' y1='198.48' x2='448.48' y2='198.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='446.70' y1='200.26' x2='446.70' y2='196.69' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='444.92' y='196.69' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='684.15' cy='214.52' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='682.37' y1='216.30' x2='685.94' y2='212.74' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='682.37' y1='212.74' x2='685.94' y2='216.30' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='684.15' cy='230.95' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='682.37' y1='232.73' x2='685.94' y2='229.17' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='682.37' y1='229.17' x2='685.94' y2='232.73' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='676.16' cy='198.98' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='674.37' y1='200.76' x2='677.94' y2='197.20' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='674.37' y1='197.20' x2='677.94' y2='200.76' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='676.16' cy='143.43' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='674.37' y1='145.22' x2='677.94' y2='141.65' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='674.37' y1='141.65' x2='677.94' y2='145.22' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='660.99' cy='213.35' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='659.21' y1='215.14' x2='662.77' y2='211.57' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='659.21' y1='211.57' x2='662.77' y2='215.14' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='660.99' cy='152.33' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='659.21' y1='154.11' x2='662.77' y2='150.55' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='659.21' y1='150.55' x2='662.77' y2='154.11' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='633.72' cy='204.88' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='631.94' y1='206.66' x2='635.50' y2='203.10' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='631.94' y1='203.10' x2='635.50' y2='206.66' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='633.72' cy='190.80' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='631.94' y1='192.58' x2='635.50' y2='189.01' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='631.94' y1='189.01' x2='635.50' y2='192.58' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='594.36' cy='193.18' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='592.58' y1='194.96' x2='596.14' y2='191.40' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='592.58' y1='191.40' x2='596.14' y2='194.96' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='594.36' cy='226.04' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='592.58' y1='227.82' x2='596.14' y2='224.26' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='592.58' y1='224.26' x2='596.14' y2='227.82' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='539.35' cy='192.87' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='537.57' y1='194.65' x2='541.13' y2='191.08' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='537.57' y1='191.08' x2='541.13' y2='194.65' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='539.35' cy='184.26' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='537.57' y1='186.04' x2='541.13' y2='182.48' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='537.57' y1='182.48' x2='541.13' y2='186.04' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='478.56' cy='205.39' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='476.78' y1='207.17' x2='480.34' y2='203.60' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='476.78' y1='203.60' x2='480.34' y2='207.17' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='478.56' cy='185.83' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='476.78' y1='187.61' x2='480.34' y2='184.05' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='476.78' y1='184.05' x2='480.34' y2='187.61' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='455.87' cy='211.87' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='454.09' y1='213.65' x2='457.65' y2='210.09' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='454.09' y1='210.09' x2='457.65' y2='213.65' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='455.87' cy='180.57' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='454.09' y1='182.36' x2='457.65' y2='178.79' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='454.09' y1='178.79' x2='457.65' y2='182.36' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='444.48' cy='198.93' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='442.70' y1='200.72' x2='446.26' y2='197.15' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='442.70' y1='197.15' x2='446.26' y2='200.72' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='444.48' cy='191.89' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='442.70' y1='193.68' x2='446.26' y2='190.11' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='442.70' y1='190.11' x2='446.26' y2='193.68' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='685.71,178.38 687.49,181.94 683.93,181.94 685.71,178.38 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='683.93' y='178.38' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='685.71,213.53 687.49,217.09 683.93,217.09 685.71,213.53 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='683.93' y='213.53' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='673.78,196.79 675.56,200.35 672.00,200.35 673.78,196.79 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='672.00' y='196.79' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='673.78,141.92 675.56,145.49 672.00,145.49 673.78,141.92 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='672.00' y='141.92' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='652.67,212.37 654.45,215.93 650.89,215.93 652.67,212.37 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='650.89' y='212.37' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='652.67,234.66 654.45,238.22 650.89,238.22 652.67,234.66 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='650.89' y='234.66' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='619.21,187.54 620.99,191.10 617.42,191.10 619.21,187.54 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='617.42' y='187.54' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='619.21,182.39 620.99,185.96 617.42,185.96 619.21,182.39 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='617.42' y='182.39' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='579.37,224.62 581.15,228.18 577.59,228.18 579.37,224.62 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='577.59' y='224.62' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='579.37,176.61 581.15,180.18 577.59,180.18 579.37,176.61 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='577.59' y='176.61' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='534.45,192.28 536.23,195.85 532.67,195.85 534.45,192.28 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='532.67' y='192.28' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='534.45,176.85 536.23,180.42 532.67,180.42 534.45,176.85 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='532.67' y='176.85' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='483.84,204.30 485.62,207.87 482.06,207.87 483.84,204.30 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='482.06' y='204.30' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='483.84,208.59 485.62,212.15 482.06,212.15 483.84,208.59 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='482.06' y='208.59' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='456.91,195.25 458.69,198.82 455.13,198.82 456.91,195.25 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='455.13' y='195.25' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='456.91,177.25 458.69,180.82 455.13,180.82 456.91,177.25 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='455.13' y='177.25' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='439.88,190.48 441.67,194.04 438.10,194.04 439.88,190.48 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='438.10' y='190.48' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='439.88,188.76 441.67,192.33 438.10,192.33 439.88,188.76 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='438.10' y='188.76' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='687.11,185.72 690.67,185.72 690.67,182.15 687.11,182.15 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='687.11,173.03 690.67,173.03 690.67,169.47 687.11,169.47 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='673.84,196.61 677.40,196.61 677.40,193.05 673.84,193.05 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='673.84,216.22 677.40,216.22 677.40,212.65 673.84,212.65 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='650.38,229.38 653.94,229.38 653.94,225.82 650.38,225.82 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='650.38,185.55 653.94,185.55 653.94,181.99 650.38,181.99 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='613.49,189.30 617.05,189.30 617.05,185.74 613.49,185.74 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='613.49,204.30 617.05,204.30 617.05,200.73 613.49,200.73 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='570.93,181.32 574.49,181.32 574.49,177.76 570.93,177.76 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='570.93,230.92 574.49,230.92 574.49,227.35 570.93,227.35 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='527.72,197.07 531.28,197.07 531.28,193.51 527.72,193.51 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='527.72,171.70 531.28,171.70 531.28,168.13 527.72,168.13 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='487.86,203.03 491.42,203.03 491.42,199.47 487.86,199.47 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='487.86,205.34 491.42,205.34 491.42,201.78 487.86,201.78 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='466.58,205.96 470.14,205.96 470.14,202.40 466.58,202.40 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='466.58,195.58 470.14,195.58 470.14,192.02 466.58,192.02 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='451.22,206.73 454.79,206.73 454.79,203.17 451.22,203.17 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='451.22,170.98 454.79,170.98 454.79,167.41 451.22,167.41 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<defs>
  <clipPath id='cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU='>
    <rect x='38.97' y='337.35' width='301.08' height='190.18' />
  </clipPath>
</defs>
<polyline points='50.12,520.49 52.44,514.82 55.81,506.99 57.09,504.13 61.50,494.73 66.38,485.12 67.19,483.60 72.87,473.48 78.56,464.29 82.64,458.21 84.25,455.92 89.94,448.31 95.63,441.38 101.32,435.08 107.01,429.34 112.70,424.11 115.16,421.99 118.39,419.35 124.08,415.02 129.77,411.07 135.46,407.47 141.15,404.20 146.83,401.22 152.52,398.51 158.21,396.05 163.90,393.81 169.59,391.78 175.28,389.94 180.97,388.27 186.66,386.76 189.50,386.06 192.35,385.40 198.04,384.17 203.73,383.07 209.42,382.08 215.11,381.20 220.79,380.42 226.48,379.72 232.17,379.11 237.86,378.58 243.55,378.12 249.24,377.73 254.93,377.40 259.20,377.19 260.62,377.13 266.31,376.91 272.00,376.74 277.69,376.61 283.38,376.53 289.07,376.49 294.76,376.49 300.44,376.52 306.13,376.59 311.82,376.69 317.51,376.81 323.20,376.96 328.89,377.14 ' style='stroke-width: 1.50;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<defs>
  <clipPath id='cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA='>
    <rect x='0.00' y='0.00' width='720.00' height='576.00' />
  </clipPath>
</defs>
<line x1='50.12' y1='527.53' x2='328.89' y2='527.53' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='50.12' y1='527.53' x2='50.12' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='96.58' y1='527.53' x2='96.58' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='143.04' y1='527.53' x2='143.04' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='189.50' y1='527.53' x2='189.50' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='235.97' y1='527.53' x2='235.97' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='282.43' y1='527.53' x2='282.43' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='328.89' y1='527.53' x2='328.89' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='47.92' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='92.19' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='138.65' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='185.11' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>60</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='231.58' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>80</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='275.84' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='13.17px' lengthAdjust='spacingAndGlyphs'>100</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='322.30' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='13.17px' lengthAdjust='spacingAndGlyphs'>120</text></g>
<line x1='38.97' y1='520.49' x2='38.97' y2='373.13' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='520.49' x2='34.21' y2='520.49' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='483.65' x2='34.21' y2='483.65' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='446.81' x2='34.21' y2='446.81' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='409.97' x2='34.21' y2='409.97' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='373.13' x2='34.21' y2='373.13' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,522.68) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,488.04) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>10</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,451.20) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,414.36) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>30</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,377.52) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<polyline points='38.97,527.53 340.04,527.53 340.04,337.35 38.97,337.35 38.97,527.53 ' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<defs>
  <clipPath id='cpMC4wMHwzNjAuMDB8NTc2LjAwfDMxNy4zOQ=='>
    <rect x='0.00' y='317.39' width='360.00' height='258.61' />
  </clipPath>
</defs>
<g clip-path='url(#cpMC4wMHwzNjAuMDB8NTc2LjAwfDMxNy4zOQ==)'><text x='180.87' y='563.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='17.27px' lengthAdjust='spacingAndGlyphs'>Time</text></g>
<g clip-path='url(#cpMC4wMHwzNjAuMDB8NTc2LjAwfDMxNy4zOQ==)'><text transform='translate(8.55,437.93) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='10.98px' lengthAdjust='spacingAndGlyphs'>m1</text></g>
<defs>
  <clipPath id='cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU='>
    <rect x='38.97' y='337.35' width='301.08' height='190.18' />
  </clipPath>
</defs>
<circle cx='52.44' cy='511.64' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='52.44' cy='513.49' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='57.09' cy='498.75' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='57.09' cy='504.28' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='66.38' cy='486.59' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='66.38' cy='490.65' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='82.64' cy='459.33' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='82.64' cy='470.01' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='115.16' cy='433.91' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='115.16' cy='432.07' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='189.50' cy='404.81' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='189.50' cy='419.91' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='259.20' cy='401.86' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='259.20' cy='408.86' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='328.89' cy='388.60' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='328.89' cy='403.70' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,513.81 55.81,505.08 57.09,502.02 61.50,492.47 66.38,483.43 67.19,482.07 72.87,473.42 78.56,466.15 82.64,461.63 84.25,459.98 89.94,454.69 95.63,450.10 101.32,446.08 107.01,442.52 112.70,439.34 115.16,438.06 118.39,436.46 124.08,433.85 129.77,431.44 135.46,429.23 141.15,427.16 146.83,425.24 152.52,423.43 158.21,421.73 163.90,420.12 169.59,418.60 175.28,417.16 180.97,415.80 186.66,414.50 189.50,413.87 192.35,413.26 198.04,412.09 203.73,410.97 209.42,409.90 215.11,408.89 220.79,407.93 226.48,407.01 232.17,406.14 237.86,405.31 243.55,404.53 249.24,403.78 254.93,403.08 259.20,402.58 260.62,402.41 266.31,401.78 272.00,401.19 277.69,400.63 283.38,400.11 289.07,399.61 294.76,399.15 300.44,398.72 306.13,398.32 311.82,397.94 317.51,397.60 323.20,397.28 328.89,396.99 ' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='52.44,517.35 54.84,521.50 50.04,521.50 52.44,517.35 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='52.44,510.71 54.84,514.87 50.04,514.87 52.44,510.71 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='57.09,503.72 59.49,507.87 54.69,507.87 57.09,503.72 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='57.09,511.45 59.49,515.61 54.69,515.61 57.09,511.45 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='66.38,488.24 68.78,492.40 63.98,492.40 66.38,488.24 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='66.38,492.66 68.78,496.82 63.98,496.82 66.38,492.66 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='82.64,464.30 85.04,468.45 80.24,468.45 82.64,464.30 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='82.64,471.66 85.04,475.82 80.24,475.82 82.64,471.66 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='115.16,451.03 117.56,455.19 112.76,455.19 115.16,451.03 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='115.16,437.03 117.56,441.19 112.76,441.19 115.16,437.03 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='189.50,421.19 191.90,425.35 187.10,425.35 189.50,421.19 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='189.50,424.14 191.90,428.30 187.10,428.30 189.50,424.14 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='259.20,407.56 261.60,411.72 256.80,411.72 259.20,407.56 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='259.20,407.19 261.60,411.35 256.80,411.35 259.20,407.19 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='328.89,417.51 331.29,421.67 326.49,421.67 328.89,417.51 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='328.89,407.19 331.29,411.35 326.49,411.35 328.89,407.19 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,516.28 55.81,510.46 57.09,508.34 61.50,501.34 66.38,494.16 67.19,493.02 72.87,485.46 78.56,478.57 82.64,474.01 84.25,472.30 89.94,466.59 95.63,461.40 101.32,456.68 107.01,452.38 112.70,448.48 115.16,446.90 118.39,444.93 124.08,441.71 129.77,438.78 135.46,436.12 141.15,433.71 146.83,431.53 152.52,429.55 158.21,427.76 163.90,426.14 169.59,424.68 175.28,423.36 180.97,422.17 186.66,421.09 189.50,420.60 192.35,420.13 198.04,419.27 203.73,418.50 209.42,417.81 215.11,417.19 220.79,416.65 226.48,416.17 232.17,415.74 237.86,415.37 243.55,415.05 249.24,414.78 254.93,414.54 259.20,414.39 260.62,414.34 266.31,414.18 272.00,414.05 277.69,413.94 283.38,413.86 289.07,413.81 294.76,413.78 300.44,413.77 306.13,413.78 311.82,413.80 317.51,413.84 323.20,413.90 328.89,413.97 ' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='49.92' y1='513.49' x2='54.96' y2='513.49' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='516.01' x2='52.44' y2='510.97' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='54.57' y1='508.33' x2='59.61' y2='508.33' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='510.85' x2='57.09' y2='505.81' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='54.57' y1='512.75' x2='59.61' y2='512.75' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='515.27' x2='57.09' y2='510.23' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='63.86' y1='483.65' x2='68.90' y2='483.65' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='486.17' x2='66.38' y2='481.13' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='63.86' y1='486.96' x2='68.90' y2='486.96' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='489.48' x2='66.38' y2='484.44' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.12' y1='469.28' x2='85.16' y2='469.28' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='471.80' x2='82.64' y2='466.76' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.12' y1='462.65' x2='85.16' y2='462.65' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='465.17' x2='82.64' y2='460.13' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='112.64' y1='437.96' x2='117.68' y2='437.96' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='440.48' x2='115.16' y2='435.44' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='112.64' y1='435.39' x2='117.68' y2='435.39' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='437.91' x2='115.16' y2='432.86' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='186.98' y1='404.81' x2='192.02' y2='404.81' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='407.33' x2='189.50' y2='402.29' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='186.98' y1='387.86' x2='192.02' y2='387.86' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='390.38' x2='189.50' y2='385.34' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='256.68' y1='386.02' x2='261.72' y2='386.02' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='388.54' x2='259.20' y2='383.50' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='256.68' y1='394.86' x2='261.72' y2='394.86' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='397.38' x2='259.20' y2='392.34' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='326.37' y1='387.49' x2='331.41' y2='387.49' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='390.01' x2='328.89' y2='384.97' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='326.37' y1='378.28' x2='331.41' y2='378.28' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='380.80' x2='328.89' y2='375.76' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,515.88 55.81,509.48 57.09,507.13 61.50,499.36 66.38,491.31 67.19,490.03 72.87,481.43 78.56,473.50 82.64,468.19 84.25,466.17 89.94,459.40 95.63,453.14 101.32,447.35 107.01,441.99 112.70,437.02 115.16,434.99 118.39,432.43 124.08,428.17 129.77,424.23 135.46,420.58 141.15,417.20 146.83,414.07 152.52,411.18 158.21,408.51 163.90,406.04 169.59,403.76 175.28,401.67 180.97,399.74 186.66,397.97 189.50,397.15 192.35,396.35 198.04,394.87 203.73,393.53 209.42,392.30 215.11,391.20 220.79,390.20 226.48,389.31 232.17,388.51 237.86,387.81 243.55,387.20 249.24,386.67 254.93,386.21 259.20,385.92 260.62,385.84 266.31,385.53 272.00,385.29 277.69,385.11 283.38,384.99 289.07,384.93 294.76,384.93 300.44,384.97 306.13,385.06 311.82,385.20 317.51,385.38 323.20,385.60 328.89,385.86 ' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='513.79' x2='54.22' y2='510.23' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='510.23' x2='54.22' y2='513.79' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='509.37' x2='54.22' y2='505.81' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='505.81' x2='54.22' y2='509.37' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='502.37' x2='58.87' y2='498.81' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='498.81' x2='58.87' y2='502.37' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='510.11' x2='58.87' y2='506.55' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='506.55' x2='58.87' y2='510.11' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='484.32' x2='68.16' y2='480.76' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='480.76' x2='68.16' y2='484.32' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='485.43' x2='68.16' y2='481.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='481.86' x2='68.16' y2='485.43' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='452.64' x2='84.42' y2='449.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='449.08' x2='84.42' y2='452.64' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='468.11' x2='84.42' y2='464.55' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='464.55' x2='84.42' y2='468.11' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='417.27' x2='116.95' y2='413.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='413.71' x2='116.95' y2='417.27' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='420.22' x2='116.95' y2='416.66' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='416.66' x2='116.95' y2='420.22' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='374.91' x2='191.29' y2='371.34' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='371.34' x2='191.29' y2='374.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='368.64' x2='191.29' y2='365.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='365.08' x2='191.29' y2='368.64' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='360.91' x2='260.98' y2='357.34' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='357.34' x2='260.98' y2='360.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='354.65' x2='260.98' y2='351.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='351.08' x2='260.98' y2='354.65' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='357.22' x2='330.67' y2='353.66' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='353.66' x2='330.67' y2='357.22' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='347.65' x2='330.67' y2='344.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='344.08' x2='330.67' y2='347.65' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,511.70 55.81,501.51 57.09,498.20 61.50,488.39 66.38,479.39 67.19,478.03 72.87,469.08 78.56,460.99 82.64,455.57 84.25,453.49 89.94,446.48 95.63,439.88 101.32,433.66 107.01,427.80 112.70,422.27 115.16,419.97 118.39,417.06 124.08,412.15 129.77,407.53 135.46,403.18 141.15,399.08 146.83,395.23 152.52,391.62 158.21,388.23 163.90,385.05 169.59,382.06 175.28,379.27 180.97,376.66 186.66,374.22 189.50,373.07 192.35,371.95 198.04,369.83 203.73,367.86 209.42,366.02 215.11,364.32 220.79,362.75 226.48,361.30 232.17,359.96 237.86,358.72 243.55,357.60 249.24,356.56 254.93,355.62 259.20,354.98 260.62,354.77 266.31,354.00 272.00,353.32 277.69,352.70 283.38,352.16 289.07,351.68 294.76,351.27 300.44,350.92 306.13,350.63 311.82,350.39 317.51,350.20 323.20,350.07 328.89,349.98 ' style='stroke-width: 0.75; stroke: #28E2E5; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='49.92,515.33 52.44,512.81 54.96,515.33 52.44,517.85 49.92,515.33 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='49.92,512.38 52.44,509.86 54.96,512.38 52.44,514.90 49.92,512.38 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='54.57,502.07 57.09,499.55 59.61,502.07 57.09,504.59 54.57,502.07 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='54.57,500.22 57.09,497.70 59.61,500.22 57.09,502.74 54.57,500.22 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='63.86,485.12 66.38,482.60 68.90,485.12 66.38,487.64 63.86,485.12 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='63.86,482.54 66.38,480.02 68.90,482.54 66.38,485.06 63.86,482.54 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='80.12,457.86 82.64,455.34 85.16,457.86 82.64,460.38 80.12,457.86 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='80.12,465.23 82.64,462.71 85.16,465.23 82.64,467.75 80.12,465.23 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='112.64,442.75 115.16,440.23 117.68,442.75 115.16,445.27 112.64,442.75 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='112.64,440.91 115.16,438.39 117.68,440.91 115.16,443.43 112.64,440.91 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='186.98,422.86 189.50,420.34 192.02,422.86 189.50,425.38 186.98,422.86 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='186.98,421.75 189.50,419.23 192.02,421.75 189.50,424.27 186.98,421.75 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='256.68,421.02 259.20,418.50 261.72,421.02 259.20,423.54 256.68,421.02 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='256.68,416.60 259.20,414.08 261.72,416.60 259.20,419.12 256.68,416.60 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='326.37,412.54 328.89,410.02 331.41,412.54 328.89,415.06 326.37,412.54 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='326.37,430.96 328.89,428.44 331.41,430.96 328.89,433.48 326.37,430.96 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,511.54 55.81,500.68 57.09,497.10 61.50,486.69 66.38,477.84 67.19,476.59 72.87,469.13 78.56,463.44 82.64,460.13 84.25,458.96 89.94,455.32 95.63,452.27 101.32,449.64 107.01,447.32 112.70,445.22 115.16,444.37 118.39,443.31 124.08,441.54 129.77,439.89 135.46,438.35 141.15,436.89 146.83,435.53 152.52,434.23 158.21,433.01 163.90,431.86 169.59,430.77 175.28,429.74 180.97,428.77 186.66,427.86 189.50,427.42 192.35,427.00 198.04,426.19 203.73,425.43 209.42,424.72 215.11,424.05 220.79,423.43 226.48,422.85 232.17,422.32 237.86,421.82 243.55,421.36 249.24,420.94 254.93,420.55 259.20,420.28 260.62,420.20 266.31,419.88 272.00,419.59 277.69,419.33 283.38,419.11 289.07,418.91 294.76,418.73 300.44,418.59 306.13,418.47 311.82,418.37 317.51,418.30 323.20,418.25 328.89,418.22 ' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='52.44,512.94 54.84,508.78 50.04,508.78 52.44,512.94 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='52.44,512.20 54.84,508.05 50.04,508.05 52.44,512.20 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='57.09,511.47 59.49,507.31 54.69,507.31 57.09,511.47 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='57.09,519.20 59.49,515.05 54.69,515.05 57.09,519.20 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='66.38,495.63 68.78,491.47 63.98,491.47 66.38,495.63 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='66.38,498.94 68.78,494.79 63.98,494.79 66.38,498.94 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='82.64,473.15 85.04,469.00 80.24,469.00 82.64,473.15 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='82.64,479.79 85.04,475.63 80.24,475.63 82.64,479.79 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='115.16,455.10 117.56,450.95 112.76,450.95 115.16,455.10 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='115.16,456.94 117.56,452.79 112.76,452.79 115.16,456.94 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='189.50,444.05 191.90,439.89 187.10,439.89 189.50,444.05 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='189.50,440.37 191.90,436.21 187.10,436.21 189.50,440.37 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='259.20,430.79 261.60,426.63 256.80,426.63 259.20,430.79 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='259.20,427.84 261.60,423.68 256.80,423.68 259.20,427.84 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='328.89,434.47 331.29,430.32 326.49,430.32 328.89,434.47 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='328.89,435.95 331.29,431.79 326.49,431.79 328.89,435.95 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,516.08 55.81,510.11 57.09,507.96 61.50,501.00 66.38,494.07 67.19,493.00 72.87,485.96 78.56,479.76 82.64,475.78 84.25,474.30 89.94,469.47 95.63,465.19 101.32,461.41 107.01,458.05 112.70,455.07 115.16,453.88 118.39,452.41 124.08,450.05 129.77,447.93 135.46,446.04 141.15,444.35 146.83,442.83 152.52,441.47 158.21,440.25 163.90,439.14 169.59,438.15 175.28,437.25 180.97,436.45 186.66,435.72 189.50,435.38 192.35,435.06 198.04,434.47 203.73,433.94 209.42,433.46 215.11,433.03 220.79,432.64 226.48,432.30 232.17,431.99 237.86,431.72 243.55,431.49 249.24,431.28 254.93,431.11 259.20,430.99 260.62,430.96 266.31,430.83 272.00,430.73 277.69,430.65 283.38,430.60 289.07,430.56 294.76,430.55 300.44,430.55 306.13,430.57 311.82,430.61 317.51,430.66 323.20,430.73 328.89,430.81 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='50.66' y='512.44' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='516.00' x2='54.22' y2='512.44' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='512.44' x2='54.22' y2='516.00' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='50.66' y='505.07' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='508.64' x2='54.22' y2='505.07' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='505.07' x2='54.22' y2='508.64' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='55.30' y='492.18' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='495.74' x2='58.87' y2='492.18' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='492.18' x2='58.87' y2='495.74' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='55.30' y='499.92' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='503.48' x2='58.87' y2='499.92' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='499.92' x2='58.87' y2='503.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='64.60' y='468.60' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='472.17' x2='68.16' y2='468.60' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='468.60' x2='68.16' y2='472.17' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='64.60' y='467.13' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='470.69' x2='68.16' y2='467.13' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='467.13' x2='68.16' y2='470.69' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='80.86' y='431.39' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='434.96' x2='84.42' y2='431.39' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='431.39' x2='84.42' y2='434.96' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='80.86' y='450.55' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='454.11' x2='84.42' y2='450.55' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='450.55' x2='84.42' y2='454.11' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='113.38' y='400.82' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='404.38' x2='116.95' y2='400.82' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='400.82' x2='116.95' y2='404.38' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='113.38' y='405.97' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='409.54' x2='116.95' y2='405.97' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='405.97' x2='116.95' y2='409.54' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='187.72' y='389.76' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='393.33' x2='191.29' y2='389.76' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='389.76' x2='191.29' y2='393.33' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='187.72' y='387.18' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='390.75' x2='191.29' y2='387.18' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='387.18' x2='191.29' y2='390.75' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='257.42' y='395.66' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='399.22' x2='260.98' y2='395.66' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='395.66' x2='260.98' y2='399.22' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='257.42' y='377.24' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='380.80' x2='260.98' y2='377.24' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='377.24' x2='260.98' y2='380.80' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='327.11' y='395.66' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='399.22' x2='330.67' y2='395.66' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='395.66' x2='330.67' y2='399.22' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='327.11' y='373.92' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='377.49' x2='330.67' y2='373.92' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='373.92' x2='330.67' y2='377.49' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,512.53 55.81,501.81 57.09,497.97 61.50,485.66 66.38,473.55 67.19,471.69 72.87,459.59 78.56,449.12 82.64,442.49 84.25,440.05 89.94,432.19 95.63,425.37 101.32,419.45 107.01,414.32 112.70,409.88 115.16,408.14 118.39,406.02 124.08,402.67 129.77,399.77 135.46,397.27 141.15,395.10 146.83,393.23 152.52,391.62 158.21,390.24 163.90,389.07 169.59,388.07 175.28,387.23 180.97,386.53 186.66,385.95 189.50,385.70 192.35,385.48 198.04,385.12 203.73,384.84 209.42,384.64 215.11,384.51 220.79,384.45 226.48,384.44 232.17,384.49 237.86,384.59 243.55,384.73 249.24,384.92 254.93,385.14 259.20,385.32 260.62,385.39 266.31,385.68 272.00,385.99 277.69,386.33 283.38,386.70 289.07,387.09 294.76,387.50 300.44,387.94 306.13,388.39 311.82,388.86 317.51,389.34 323.20,389.84 328.89,390.36 ' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='513.06' x2='54.22' y2='509.49' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='509.49' x2='54.22' y2='513.06' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='49.92' y1='511.28' x2='54.96' y2='511.28' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='513.80' x2='52.44' y2='508.76' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='509.74' x2='54.22' y2='506.18' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='506.18' x2='54.22' y2='509.74' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='49.92' y1='507.96' x2='54.96' y2='507.96' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='510.48' x2='52.44' y2='505.44' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='493.90' x2='58.87' y2='490.34' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='490.34' x2='58.87' y2='493.90' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='54.57' y1='492.12' x2='59.61' y2='492.12' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='494.64' x2='57.09' y2='489.60' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='488.37' x2='58.87' y2='484.81' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='484.81' x2='58.87' y2='488.37' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='54.57' y1='486.59' x2='59.61' y2='486.59' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='489.11' x2='57.09' y2='484.07' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='459.64' x2='68.16' y2='456.08' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='456.08' x2='68.16' y2='459.64' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='63.86' y1='457.86' x2='68.90' y2='457.86' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='460.38' x2='66.38' y2='455.34' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='460.38' x2='68.16' y2='456.81' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='456.81' x2='68.16' y2='460.38' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='63.86' y1='458.59' x2='68.90' y2='458.59' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='461.11' x2='66.38' y2='456.07' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='430.54' x2='84.42' y2='426.97' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='426.97' x2='84.42' y2='430.54' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.12' y1='428.75' x2='85.16' y2='428.75' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='431.27' x2='82.64' y2='426.23' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='441.22' x2='84.42' y2='437.66' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='437.66' x2='84.42' y2='441.22' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.12' y1='439.44' x2='85.16' y2='439.44' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='441.96' x2='82.64' y2='436.92' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='397.01' x2='116.95' y2='393.45' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='393.45' x2='116.95' y2='397.01' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='112.64' y1='395.23' x2='117.68' y2='395.23' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='397.75' x2='115.16' y2='392.71' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='391.49' x2='116.95' y2='387.92' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='387.92' x2='116.95' y2='391.49' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='112.64' y1='389.70' x2='117.68' y2='389.70' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='392.22' x2='115.16' y2='387.18' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='377.12' x2='191.29' y2='373.55' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='373.55' x2='191.29' y2='377.12' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='186.98' y1='375.34' x2='192.02' y2='375.34' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='377.86' x2='189.50' y2='372.82' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='399.22' x2='191.29' y2='395.66' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='395.66' x2='191.29' y2='399.22' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='186.98' y1='397.44' x2='192.02' y2='397.44' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='399.96' x2='189.50' y2='394.92' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='382.64' x2='260.98' y2='379.08' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='379.08' x2='260.98' y2='382.64' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='256.68' y1='380.86' x2='261.72' y2='380.86' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='383.38' x2='259.20' y2='378.34' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='396.27' x2='260.98' y2='392.71' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='392.71' x2='260.98' y2='396.27' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='256.68' y1='394.49' x2='261.72' y2='394.49' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='397.01' x2='259.20' y2='391.97' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='374.91' x2='330.67' y2='371.34' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='371.34' x2='330.67' y2='374.91' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='326.37' y1='373.13' x2='331.41' y2='373.13' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='375.65' x2='328.89' y2='370.61' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='393.70' x2='330.67' y2='390.13' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='390.13' x2='330.67' y2='393.70' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='326.37' y1='391.91' x2='331.41' y2='391.91' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='394.43' x2='328.89' y2='389.39' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,508.44 55.81,493.06 57.09,487.79 61.50,471.76 66.38,457.29 67.19,455.18 72.87,442.22 78.56,432.05 82.64,426.11 84.25,424.02 89.94,417.65 95.63,412.56 101.32,408.46 107.01,405.12 112.70,402.38 115.16,401.34 118.39,400.10 124.08,398.19 129.77,396.57 135.46,395.18 141.15,393.97 146.83,392.91 152.52,391.97 158.21,391.13 163.90,390.37 169.59,389.69 175.28,389.06 180.97,388.49 186.66,387.96 189.50,387.71 192.35,387.47 198.04,387.03 203.73,386.61 209.42,386.23 215.11,385.88 220.79,385.56 226.48,385.27 232.17,385.00 237.86,384.75 243.55,384.53 249.24,384.33 254.93,384.16 259.20,384.04 260.62,384.00 266.31,383.87 272.00,383.75 277.69,383.65 283.38,383.58 289.07,383.52 294.76,383.47 300.44,383.45 306.13,383.44 311.82,383.44 317.51,383.47 323.20,383.50 328.89,383.55 ' style='stroke-width: 0.75; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='49.92' y1='505.38' x2='54.96' y2='505.38' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='507.90' x2='52.44' y2='502.86' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='49.92,505.38 52.44,502.86 54.96,505.38 52.44,507.90 49.92,505.38 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='49.92' y1='509.07' x2='54.96' y2='509.07' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='511.59' x2='52.44' y2='506.55' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='49.92,509.07 52.44,506.55 54.96,509.07 52.44,511.59 49.92,509.07 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='54.57' y1='487.70' x2='59.61' y2='487.70' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='490.22' x2='57.09' y2='485.18' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='54.57,487.70 57.09,485.18 59.61,487.70 57.09,490.22 54.57,487.70 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='54.57' y1='493.22' x2='59.61' y2='493.22' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='495.74' x2='57.09' y2='490.70' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='54.57,493.22 57.09,490.70 59.61,493.22 57.09,495.74 54.57,493.22 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='63.86' y1='461.17' x2='68.90' y2='461.17' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='463.69' x2='66.38' y2='458.65' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='63.86,461.17 66.38,458.65 68.90,461.17 66.38,463.69 63.86,461.17 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='63.86' y1='469.28' x2='68.90' y2='469.28' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='471.80' x2='66.38' y2='466.76' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='63.86,469.28 66.38,466.76 68.90,469.28 66.38,471.80 63.86,469.28 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.12' y1='429.12' x2='85.16' y2='429.12' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='431.64' x2='82.64' y2='426.60' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='80.12,429.12 82.64,426.60 85.16,429.12 82.64,431.64 80.12,429.12 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.12' y1='429.86' x2='85.16' y2='429.86' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='432.38' x2='82.64' y2='427.34' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='80.12,429.86 82.64,427.34 85.16,429.86 82.64,432.38 80.12,429.86 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='112.64' y1='391.91' x2='117.68' y2='391.91' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='394.43' x2='115.16' y2='389.39' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='112.64,391.91 115.16,389.39 117.68,391.91 115.16,394.43 112.64,391.91 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='112.64' y1='404.81' x2='117.68' y2='404.81' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='407.33' x2='115.16' y2='402.29' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='112.64,404.81 115.16,402.29 117.68,404.81 115.16,407.33 112.64,404.81 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='186.98' y1='361.70' x2='192.02' y2='361.70' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='364.22' x2='189.50' y2='359.18' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='186.98,361.70 189.50,359.18 192.02,361.70 189.50,364.22 186.98,361.70 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='186.98' y1='355.44' x2='192.02' y2='355.44' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='357.96' x2='189.50' y2='352.92' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='186.98,355.44 189.50,352.92 192.02,355.44 189.50,357.96 186.98,355.44 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='256.68' y1='361.70' x2='261.72' y2='361.70' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='364.22' x2='259.20' y2='359.18' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='256.68,361.70 259.20,359.18 261.72,361.70 259.20,364.22 256.68,361.70 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='256.68' y1='358.76' x2='261.72' y2='358.76' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='361.28' x2='259.20' y2='356.24' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='256.68,358.76 259.20,356.24 261.72,358.76 259.20,361.28 256.68,358.76 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='326.37' y1='344.39' x2='331.41' y2='344.39' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='346.91' x2='328.89' y2='341.87' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='326.37,344.39 328.89,341.87 331.41,344.39 328.89,346.91 326.37,344.39 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='326.37' y1='353.23' x2='331.41' y2='353.23' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='355.75' x2='328.89' y2='350.71' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='326.37,353.23 328.89,350.71 331.41,353.23 328.89,355.75 326.37,353.23 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,510.23 55.81,496.80 57.09,492.09 61.50,477.38 66.38,463.46 67.19,461.37 72.87,448.08 78.56,436.96 82.64,430.09 84.25,427.59 89.94,419.63 95.63,412.81 101.32,406.91 107.01,401.77 112.70,397.25 115.16,395.45 118.39,393.24 124.08,389.65 129.77,386.43 135.46,383.50 141.15,380.84 146.83,378.40 152.52,376.16 158.21,374.09 163.90,372.17 169.59,370.39 175.28,368.73 180.97,367.19 186.66,365.75 189.50,365.06 192.35,364.40 198.04,363.15 203.73,361.98 209.42,360.89 215.11,359.87 220.79,358.92 226.48,358.04 232.17,357.23 237.86,356.47 243.55,355.77 249.24,355.13 254.93,354.54 259.20,354.13 260.62,354.00 266.31,353.51 272.00,353.07 277.69,352.67 283.38,352.31 289.07,351.99 294.76,351.72 300.44,351.48 306.13,351.28 311.82,351.11 317.51,350.98 323.20,350.88 328.89,350.81 ' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='52.44' cy='514.59' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='514.59' x2='54.22' y2='514.59' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='516.37' x2='52.44' y2='512.81' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='52.44' cy='517.17' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='517.17' x2='54.22' y2='517.17' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='518.95' x2='52.44' y2='515.39' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='57.09' cy='507.22' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='507.22' x2='58.87' y2='507.22' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='509.01' x2='57.09' y2='505.44' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='57.09' cy='503.91' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='503.91' x2='58.87' y2='503.91' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='505.69' x2='57.09' y2='502.13' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='66.38' cy='483.28' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='483.28' x2='68.16' y2='483.28' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='485.06' x2='66.38' y2='481.50' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='66.38' cy='479.96' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='479.96' x2='68.16' y2='479.96' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='481.74' x2='66.38' y2='478.18' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='82.64' cy='456.02' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='456.02' x2='84.42' y2='456.02' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='457.80' x2='82.64' y2='454.23' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='82.64' cy='457.86' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='457.86' x2='84.42' y2='457.86' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='459.64' x2='82.64' y2='456.08' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='115.16' cy='416.60' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='416.60' x2='116.95' y2='416.60' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='418.38' x2='115.16' y2='414.81' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='115.16' cy='417.33' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='417.33' x2='116.95' y2='417.33' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='419.12' x2='115.16' y2='415.55' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='189.50' cy='383.81' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='383.81' x2='191.29' y2='383.81' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='385.59' x2='189.50' y2='382.03' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='189.50' cy='391.18' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='391.18' x2='191.29' y2='391.18' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='392.96' x2='189.50' y2='389.39' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='259.20' cy='368.34' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='368.34' x2='260.98' y2='368.34' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='370.12' x2='259.20' y2='366.55' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='259.20' cy='361.34' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='361.34' x2='260.98' y2='361.34' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='363.12' x2='259.20' y2='359.55' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='328.89' cy='355.07' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='355.07' x2='330.67' y2='355.07' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='356.86' x2='328.89' y2='353.29' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='328.89' cy='349.55' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='349.55' x2='330.67' y2='349.55' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='351.33' x2='328.89' y2='347.77' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,514.59 55.81,506.51 57.09,503.58 61.50,494.03 66.38,484.36 67.19,482.84 72.87,472.79 78.56,463.72 82.64,457.77 84.25,455.52 89.94,448.09 95.63,441.32 101.32,435.14 107.01,429.48 112.70,424.29 115.16,422.17 118.39,419.50 124.08,415.08 129.77,410.99 135.46,407.19 141.15,403.66 146.83,400.36 152.52,397.29 158.21,394.40 163.90,391.70 169.59,389.16 175.28,386.77 180.97,384.52 186.66,382.40 189.50,381.39 192.35,380.40 198.04,378.51 203.73,376.73 209.42,375.04 215.11,373.44 220.79,371.92 226.48,370.49 232.17,369.14 237.86,367.85 243.55,366.64 249.24,365.49 254.93,364.40 259.20,363.63 260.62,363.38 266.31,362.40 272.00,361.49 277.69,360.62 283.38,359.81 289.07,359.04 294.76,358.31 300.44,357.63 306.13,357.00 311.82,356.40 317.51,355.84 323.20,355.32 328.89,354.83 ' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='52.44,518.10 54.84,513.25 50.04,513.25 52.44,518.10 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='52.44,512.56 54.84,517.41 50.04,517.41 52.44,512.56 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='52.44,517.36 54.84,512.51 50.04,512.51 52.44,517.36 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='52.44,511.82 54.84,516.67 50.04,516.67 52.44,511.82 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='57.09,516.99 59.49,512.14 54.69,512.14 57.09,516.99 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='57.09,511.45 59.49,516.30 54.69,516.30 57.09,511.45 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='57.09,509.99 59.49,505.14 54.69,505.14 57.09,509.99 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='57.09,504.45 59.49,509.30 54.69,509.30 57.09,504.45 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='66.38,501.52 68.78,496.67 63.98,496.67 66.38,501.52 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='66.38,495.98 68.78,500.83 63.98,500.83 66.38,495.98 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='66.38,503.36 68.78,498.51 63.98,498.51 66.38,503.36 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='66.38,497.82 68.78,502.67 63.98,502.67 66.38,497.82 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='82.64,480.89 85.04,476.04 80.24,476.04 82.64,480.89 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='82.64,475.35 85.04,480.20 80.24,480.20 82.64,475.35 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='82.64,487.52 85.04,482.67 80.24,482.67 82.64,487.52 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='82.64,481.98 85.04,486.83 80.24,486.83 82.64,481.98 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='115.16,461.73 117.56,456.88 112.76,456.88 115.16,461.73 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='115.16,456.19 117.56,461.04 112.76,461.04 115.16,456.19 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='115.16,449.21 117.56,444.36 112.76,444.36 115.16,449.21 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='115.16,443.67 117.56,448.52 112.76,448.52 115.16,443.67 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='189.50,421.95 191.90,417.10 187.10,417.10 189.50,421.95 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='189.50,416.40 191.90,421.25 187.10,421.25 189.50,416.40 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='189.50,429.68 191.90,424.83 187.10,424.83 189.50,429.68 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='189.50,424.14 191.90,428.99 187.10,428.99 189.50,424.14 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='259.20,425.63 261.60,420.78 256.80,420.78 259.20,425.63 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='259.20,420.09 261.60,424.94 256.80,424.94 259.20,420.09 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='259.20,426.37 261.60,421.52 256.80,421.52 259.20,426.37 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='259.20,420.83 261.60,425.67 256.80,425.67 259.20,420.83 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='328.89,409.42 331.29,404.57 326.49,404.57 328.89,409.42 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='328.89,403.88 331.29,408.73 326.49,408.73 328.89,403.88 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='328.89,413.47 331.29,408.62 326.49,408.62 328.89,413.47 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='328.89,407.93 331.29,412.78 326.49,412.78 328.89,407.93 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,516.59 55.81,511.26 57.09,509.32 61.50,503.01 66.38,496.61 67.19,495.61 72.87,488.95 78.56,482.94 82.64,478.99 84.25,477.50 89.94,472.56 95.63,468.05 101.32,463.92 107.01,460.14 112.70,456.67 115.16,455.24 118.39,453.46 124.08,450.49 129.77,447.74 135.46,445.18 141.15,442.80 146.83,440.58 152.52,438.50 158.21,436.55 163.90,434.73 169.59,433.02 175.28,431.41 180.97,429.90 186.66,428.48 189.50,427.80 192.35,427.14 198.04,425.88 203.73,424.69 209.42,423.58 215.11,422.52 220.79,421.53 226.48,420.60 232.17,419.73 237.86,418.90 243.55,418.13 249.24,417.41 254.93,416.74 259.20,416.26 260.62,416.10 266.31,415.52 272.00,414.97 277.69,414.46 283.38,413.99 289.07,413.56 294.76,413.16 300.44,412.80 306.13,412.47 311.82,412.17 317.51,411.91 323.20,411.67 328.89,411.46 ' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='519.38' x2='54.22' y2='519.38' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='521.16' x2='52.44' y2='517.60' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='50.66' y='517.60' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='511.28' x2='54.22' y2='511.28' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='513.06' x2='52.44' y2='509.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='50.66' y='509.49' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='506.85' x2='58.87' y2='506.85' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='508.64' x2='57.09' y2='505.07' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='55.30' y='505.07' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='505.75' x2='58.87' y2='505.75' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='507.53' x2='57.09' y2='503.97' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='55.30' y='503.97' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='494.70' x2='68.16' y2='494.70' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='496.48' x2='66.38' y2='492.92' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='64.60' y='492.92' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='497.28' x2='68.16' y2='497.28' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='499.06' x2='66.38' y2='495.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='64.60' y='495.49' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='475.91' x2='84.42' y2='475.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='477.69' x2='82.64' y2='474.13' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='80.86' y='474.13' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='478.49' x2='84.42' y2='478.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='480.27' x2='82.64' y2='476.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='80.86' y='476.71' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='453.44' x2='116.95' y2='453.44' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='455.22' x2='115.16' y2='451.65' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='113.38' y='451.65' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='453.81' x2='116.95' y2='453.81' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='455.59' x2='115.16' y2='452.02' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='113.38' y='452.02' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='415.49' x2='191.29' y2='415.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='417.27' x2='189.50' y2='413.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='187.72' y='413.71' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='421.75' x2='191.29' y2='421.75' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='423.54' x2='189.50' y2='419.97' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='187.72' y='419.97' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='401.86' x2='260.98' y2='401.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='403.64' x2='259.20' y2='400.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='257.42' y='400.08' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='414.39' x2='260.98' y2='414.39' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='416.17' x2='259.20' y2='412.60' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='257.42' y='412.60' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='394.12' x2='330.67' y2='394.12' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='395.91' x2='328.89' y2='392.34' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='327.11' y='392.34' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='409.23' x2='330.67' y2='409.23' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='411.01' x2='328.89' y2='407.45' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='327.11' y='407.45' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,516.77 55.81,511.60 57.09,509.70 61.50,503.40 66.38,496.88 67.19,495.84 72.87,488.86 78.56,482.42 82.64,478.11 84.25,476.47 89.94,470.97 95.63,465.89 101.32,461.18 107.01,456.83 112.70,452.80 115.16,451.15 118.39,449.07 124.08,445.61 129.77,442.40 135.46,439.42 141.15,436.66 146.83,434.09 152.52,431.70 158.21,429.48 163.90,427.42 169.59,425.49 175.28,423.70 180.97,422.03 186.66,420.47 189.50,419.73 192.35,419.02 198.04,417.66 203.73,416.39 209.42,415.20 215.11,414.09 220.79,413.05 226.48,412.07 232.17,411.16 237.86,410.30 243.55,409.50 249.24,408.74 254.93,408.03 259.20,407.53 260.62,407.37 266.31,406.74 272.00,406.16 277.69,405.60 283.38,405.08 289.07,404.59 294.76,404.13 300.44,403.70 306.13,403.29 311.82,402.91 317.51,402.55 323.20,402.21 328.89,401.89 ' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='52.44' cy='517.17' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='518.95' x2='54.22' y2='515.39' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='515.39' x2='54.22' y2='518.95' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='52.44' cy='520.12' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='521.90' x2='54.22' y2='518.34' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='518.34' x2='54.22' y2='521.90' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='57.09' cy='507.22' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='509.01' x2='58.87' y2='505.44' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='505.44' x2='58.87' y2='509.01' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='57.09' cy='502.07' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='503.85' x2='58.87' y2='500.28' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='500.28' x2='58.87' y2='503.85' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='66.38' cy='492.49' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='494.27' x2='68.16' y2='490.71' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='490.71' x2='68.16' y2='494.27' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='66.38' cy='496.54' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='498.32' x2='68.16' y2='494.76' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='494.76' x2='68.16' y2='498.32' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='82.64' cy='477.75' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='479.53' x2='84.42' y2='475.97' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='475.97' x2='84.42' y2='479.53' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='82.64' cy='472.59' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='474.38' x2='84.42' y2='470.81' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='470.81' x2='84.42' y2='474.38' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='115.16' cy='443.49' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='445.27' x2='116.95' y2='441.71' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='441.71' x2='116.95' y2='445.27' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='115.16' cy='451.59' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='453.38' x2='116.95' y2='449.81' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='449.81' x2='116.95' y2='453.38' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='189.50' cy='419.54' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='421.33' x2='191.29' y2='417.76' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='417.76' x2='191.29' y2='421.33' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='189.50' cy='406.65' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='408.43' x2='191.29' y2='404.87' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='404.87' x2='191.29' y2='408.43' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='259.20' cy='419.91' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='421.69' x2='260.98' y2='418.13' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='418.13' x2='260.98' y2='421.69' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='259.20' cy='400.02' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='401.80' x2='260.98' y2='398.24' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='398.24' x2='260.98' y2='401.80' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='328.89' cy='405.54' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='407.33' x2='330.67' y2='403.76' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='403.76' x2='330.67' y2='407.33' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='328.89' cy='403.33' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='405.12' x2='330.67' y2='401.55' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='401.55' x2='330.67' y2='405.12' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,516.30 55.81,510.51 57.09,508.39 61.50,501.39 66.38,494.19 67.19,493.05 72.87,485.43 78.56,478.46 82.64,473.83 84.25,472.09 89.94,466.25 95.63,460.92 101.32,456.04 107.01,451.58 112.70,447.49 115.16,445.83 118.39,443.76 124.08,440.33 129.77,437.20 135.46,434.33 141.15,431.71 146.83,429.30 152.52,427.10 158.21,425.09 163.90,423.24 169.59,421.55 175.28,420.00 180.97,418.57 186.66,417.27 189.50,416.66 192.35,416.08 198.04,414.99 203.73,413.99 209.42,413.07 215.11,412.23 220.79,411.46 226.48,410.76 232.17,410.11 237.86,409.52 243.55,408.98 249.24,408.49 254.93,408.03 259.20,407.72 260.62,407.62 266.31,407.25 272.00,406.90 277.69,406.59 283.38,406.31 289.07,406.05 294.76,405.82 300.44,405.61 306.13,405.42 311.82,405.25 317.51,405.09 323.20,404.96 328.89,404.83 ' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='52.44,512.44 54.22,516.00 50.66,516.00 52.44,512.44 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='50.66' y='512.44' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='52.44,509.86 54.22,513.43 50.66,513.43 52.44,509.86 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='50.66' y='509.86' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='57.09,497.34 58.87,500.90 55.30,500.90 57.09,497.34 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='55.30' y='497.34' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='57.09,498.81 58.87,502.37 55.30,502.37 57.09,498.81 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='55.30' y='498.81' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='66.38,485.18 68.16,488.74 64.60,488.74 66.38,485.18 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='64.60' y='485.18' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='66.38,471.92 68.16,475.48 64.60,475.48 66.38,471.92 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='64.60' y='471.92' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='82.64,446.87 84.42,450.43 80.86,450.43 82.64,446.87 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='80.86' y='446.87' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='82.64,451.29 84.42,454.85 80.86,454.85 82.64,451.29 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='80.86' y='451.29' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='115.16,431.02 116.95,434.59 113.38,434.59 115.16,431.02 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='113.38' y='431.02' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='115.16,421.08 116.95,424.64 113.38,424.64 115.16,421.08 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='113.38' y='421.08' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='189.50,397.50 191.29,401.06 187.72,401.06 189.50,397.50 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='187.72' y='397.50' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='189.50,386.82 191.29,390.38 187.72,390.38 189.50,386.82 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='187.72' y='386.82' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='259.20,399.34 260.98,402.91 257.42,402.91 259.20,399.34 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='257.42' y='399.34' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='259.20,383.87 260.98,387.43 257.42,387.43 259.20,383.87 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='257.42' y='383.87' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='328.89,396.03 330.67,399.59 327.11,399.59 328.89,396.03 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='327.11' y='396.03' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='328.89,392.34 330.67,395.91 327.11,395.91 328.89,392.34 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='327.11' y='392.34' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,512.52 55.81,502.13 57.09,498.49 61.50,487.18 66.38,476.51 67.19,474.91 72.87,464.76 78.56,456.28 82.64,451.04 84.25,449.14 89.94,443.06 95.63,437.83 101.32,433.30 107.01,429.34 112.70,425.83 115.16,424.44 118.39,422.71 124.08,419.92 129.77,417.39 135.46,415.10 141.15,413.01 146.83,411.09 152.52,409.34 158.21,407.72 163.90,406.23 169.59,404.85 175.28,403.58 180.97,402.41 186.66,401.33 189.50,400.82 192.35,400.33 198.04,399.41 203.73,398.57 209.42,397.80 215.11,397.10 220.79,396.46 226.48,395.88 232.17,395.36 237.86,394.90 243.55,394.48 249.24,394.12 254.93,393.81 259.20,393.61 260.62,393.55 266.31,393.33 272.00,393.15 277.69,393.01 283.38,392.91 289.07,392.85 294.76,392.82 300.44,392.83 306.13,392.87 311.82,392.94 317.51,393.04 323.20,393.17 328.89,393.32 ' style='stroke-width: 0.75; stroke: #F5C710; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='50.66,513.06 54.22,513.06 54.22,509.49 50.66,509.49 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='50.66,514.90 54.22,514.90 54.22,511.34 50.66,511.34 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='55.30,501.64 58.87,501.64 58.87,498.07 55.30,498.07 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='55.30,499.43 58.87,499.43 58.87,495.86 55.30,495.86 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='64.60,486.90 68.16,486.90 68.16,483.34 64.60,483.34 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='64.60,472.90 68.16,472.90 68.16,469.34 64.60,469.34 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='80.86,462.22 84.42,462.22 84.42,458.65 80.86,458.65 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='80.86,455.22 84.42,455.22 84.42,451.65 80.86,451.65 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='113.38,427.59 116.95,427.59 116.95,424.02 113.38,424.02 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='113.38,428.33 116.95,428.33 116.95,424.76 113.38,424.76 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='187.72,400.33 191.29,400.33 191.29,396.76 187.72,396.76 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='187.72,399.96 191.29,399.96 191.29,396.39 187.72,396.39 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='257.42,390.38 260.98,390.38 260.98,386.82 257.42,386.82 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='257.42,396.27 260.98,396.27 260.98,392.71 257.42,392.71 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='327.11,383.38 330.67,383.38 330.67,379.82 327.11,379.82 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='327.11,402.54 330.67,402.54 330.67,398.97 327.11,398.97 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,512.53 55.81,502.12 57.09,498.48 61.50,487.13 66.38,476.45 67.19,474.85 72.87,464.72 78.56,456.33 82.64,451.19 84.25,449.33 89.94,443.44 95.63,438.45 101.32,434.18 107.01,430.50 112.70,427.30 115.16,426.03 118.39,424.48 124.08,421.98 129.77,419.73 135.46,417.70 141.15,415.85 146.83,414.15 152.52,412.57 158.21,411.10 163.90,409.72 169.59,408.42 175.28,407.19 180.97,406.02 186.66,404.90 189.50,404.36 192.35,403.83 198.04,402.81 203.73,401.83 209.42,400.89 215.11,399.98 220.79,399.11 226.48,398.27 232.17,397.46 237.86,396.68 243.55,395.92 249.24,395.19 254.93,394.49 259.20,393.98 260.62,393.81 266.31,393.15 272.00,392.52 277.69,391.91 283.38,391.32 289.07,390.75 294.76,390.20 300.44,389.67 306.13,389.16 311.82,388.67 317.51,388.20 323.20,387.74 328.89,387.31 ' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<defs>
  <clipPath id='cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1'>
    <rect x='398.97' y='337.35' width='301.08' height='190.18' />
  </clipPath>
</defs>
<defs>
  <clipPath id='cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA='>
    <rect x='0.00' y='0.00' width='720.00' height='576.00' />
  </clipPath>
</defs>
<line x1='410.12' y1='527.53' x2='651.04' y2='527.53' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='410.12' y1='527.53' x2='410.12' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='470.35' y1='527.53' x2='470.35' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='530.58' y1='527.53' x2='530.58' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='590.81' y1='527.53' x2='590.81' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='651.04' y1='527.53' x2='651.04' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='407.92' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='465.96' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>10</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='526.19' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='586.42' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>30</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='646.65' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<line x1='398.97' y1='503.71' x2='398.97' y2='361.16' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='503.71' x2='394.21' y2='503.71' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='468.07' x2='394.21' y2='468.07' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='432.44' x2='394.21' y2='432.44' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='396.80' x2='394.21' y2='396.80' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='361.16' x2='394.21' y2='361.16' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,507.23) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='7.03px' lengthAdjust='spacingAndGlyphs'>-4</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,471.59) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='7.03px' lengthAdjust='spacingAndGlyphs'>-2</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,434.63) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,399.00) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>2</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,363.36) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>4</text></g>
<polyline points='398.97,527.53 700.04,527.53 700.04,337.35 398.97,337.35 398.97,527.53 ' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<defs>
  <clipPath id='cpMzYwLjAwfDcyMC4wMHw1NzYuMDB8MzE3LjM5'>
    <rect x='360.00' y='317.39' width='360.00' height='258.61' />
  </clipPath>
</defs>
<g clip-path='url(#cpMzYwLjAwfDcyMC4wMHw1NzYuMDB8MzE3LjM5)'><text x='532.82' y='563.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='33.38px' lengthAdjust='spacingAndGlyphs'>Predicted</text></g>
<g clip-path='url(#cpMzYwLjAwfDcyMC4wMHw1NzYuMDB8MzE3LjM5)'><text transform='translate(368.55,470.64) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='76.41px' lengthAdjust='spacingAndGlyphs'>Standardized residual</text></g>
<defs>
  <clipPath id='cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1'>
    <rect x='398.97' y='337.35' width='301.08' height='190.18' />
  </clipPath>
</defs>
<line x1='398.97' y1='432.44' x2='700.04' y2='432.44' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='421.03' cy='428.85' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='421.03' cy='431.90' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='440.31' cy='427.02' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='440.31' cy='436.17' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='470.70' cy='437.68' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='470.70' cy='444.40' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='506.35' cy='428.63' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='506.35' cy='446.33' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='544.88' cy='425.57' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='544.88' cy='422.52' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='584.42' cy='417.42' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='584.42' cy='442.45' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='602.89' cy='431.25' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='602.89' cy='442.85' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='612.03' cy='418.54' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='612.03' cy='443.56' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='416.99,438.57 419.39,442.73 414.59,442.73 416.99,438.57 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='416.99,423.18 419.39,427.34 414.59,427.34 416.99,423.18 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='429.98,425.38 432.38,429.53 427.58,429.53 429.98,425.38 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='429.98,443.33 432.38,447.48 427.58,447.48 429.98,443.33 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='453.17,422.38 455.57,426.53 450.77,426.53 453.17,422.38 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='453.17,432.63 455.57,436.79 450.77,436.79 453.17,432.63 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='486.09,413.55 488.49,417.70 483.69,417.70 486.09,413.55 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='486.09,430.64 488.49,434.80 483.69,434.80 486.09,430.64 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='530.43,445.69 532.83,449.85 528.03,449.85 530.43,445.69 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='530.43,413.21 532.83,417.37 528.03,417.37 530.43,413.21 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='573.43,437.47 575.83,441.63 571.03,441.63 573.43,437.47 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='573.43,444.31 575.83,448.47 571.03,448.47 573.43,444.31 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='583.58,420.26 585.98,424.41 581.18,424.41 583.58,420.26 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='583.58,419.40 585.98,423.56 581.18,423.56 583.58,419.40 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='584.26,444.31 586.66,448.46 581.86,448.46 584.26,444.31 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='584.26,420.37 586.66,424.53 581.86,424.53 584.26,420.37 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='415.13' y1='427.62' x2='420.17' y2='427.62' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='417.65' y1='430.14' x2='417.65' y2='425.10' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='429.43' y1='434.85' x2='434.47' y2='434.85' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='431.95' y1='437.37' x2='431.95' y2='432.33' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='429.43' y1='443.74' x2='434.47' y2='443.74' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='431.95' y1='446.26' x2='431.95' y2='441.22' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='455.31' y1='417.04' x2='460.35' y2='417.04' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='457.83' y1='419.56' x2='457.83' y2='414.52' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='455.31' y1='423.70' x2='460.35' y2='423.70' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='457.83' y1='426.22' x2='457.83' y2='421.18' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='493.10' y1='434.63' x2='498.14' y2='434.63' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='495.62' y1='437.15' x2='495.62' y2='432.11' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='493.10' y1='421.30' x2='498.14' y2='421.30' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='495.62' y1='423.82' x2='495.62' y2='418.78' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='547.38' y1='438.42' x2='552.42' y2='438.42' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='549.90' y1='440.94' x2='549.90' y2='435.90' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='547.38' y1='433.24' x2='552.42' y2='433.24' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='549.90' y1='435.76' x2='549.90' y2='430.72' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='609.25' y1='447.84' x2='614.29' y2='447.84' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='611.77' y1='450.36' x2='611.77' y2='445.32' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='609.25' y1='413.77' x2='614.29' y2='413.77' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='611.77' y1='416.29' x2='611.77' y2='411.25' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='627.60' y1='432.63' x2='632.64' y2='432.63' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='630.12' y1='435.15' x2='630.12' y2='430.11' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='627.60' y1='450.40' x2='632.64' y2='450.40' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='630.12' y1='452.92' x2='630.12' y2='447.88' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='627.70' y1='435.72' x2='632.74' y2='435.72' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='630.22' y1='438.24' x2='630.22' y2='433.20' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='627.70' y1='417.20' x2='632.74' y2='417.20' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='630.22' y1='419.72' x2='630.22' y2='414.68' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='422.70' y1='434.85' x2='426.27' y2='431.28' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='422.70' y1='431.28' x2='426.27' y2='434.85' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='422.70' y1='426.03' x2='426.27' y2='422.47' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='422.70' y1='422.47' x2='426.27' y2='426.03' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='444.77' y1='438.99' x2='448.34' y2='435.43' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='444.77' y1='435.43' x2='448.34' y2='438.99' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='444.77' y1='454.42' x2='448.34' y2='450.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='444.77' y1='450.86' x2='448.34' y2='454.42' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='475.53' y1='440.51' x2='479.09' y2='436.94' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='475.53' y1='436.94' x2='479.09' y2='440.51' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='475.53' y1='442.71' x2='479.09' y2='439.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='475.53' y1='439.15' x2='479.09' y2='442.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='514.48' y1='424.83' x2='518.04' y2='421.27' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='514.48' y1='421.27' x2='518.04' y2='424.83' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='514.48' y1='455.69' x2='518.04' y2='452.13' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='514.48' y1='452.13' x2='518.04' y2='455.69' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='572.67' y1='425.28' x2='576.23' y2='421.72' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='572.67' y1='421.72' x2='576.23' y2='425.28' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='572.67' y1='431.16' x2='576.23' y2='427.59' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='572.67' y1='427.59' x2='576.23' y2='431.16' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='649.36' y1='434.34' x2='652.92' y2='430.77' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='649.36' y1='430.77' x2='652.92' y2='434.34' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='649.36' y1='421.84' x2='652.92' y2='418.28' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='649.36' y1='418.28' x2='652.92' y2='421.84' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='678.93' y1='442.49' x2='682.49' y2='438.93' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='678.93' y1='438.93' x2='682.49' y2='442.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='678.93' y1='430.00' x2='682.49' y2='426.44' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='678.93' y1='426.44' x2='682.49' y2='430.00' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='687.11' y1='445.12' x2='690.67' y2='441.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='687.11' y1='441.56' x2='690.67' y2='445.12' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='687.11' y1='426.02' x2='690.67' y2='422.45' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='687.11' y1='422.45' x2='690.67' y2='426.02' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='422.23,440.07 424.75,437.55 427.27,440.07 424.75,442.59 422.23,440.07 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='422.23,434.14 424.75,431.62 427.27,434.14 424.75,436.66 422.23,434.14 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='445.83,442.43 448.35,439.91 450.87,442.43 448.35,444.95 445.83,442.43 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='445.83,438.72 448.35,436.20 450.87,438.72 448.35,441.24 445.83,438.72 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='477.32,447.09 479.84,444.57 482.36,447.09 479.84,449.61 477.32,447.09 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='477.32,441.90 479.84,439.38 482.36,441.90 479.84,444.42 477.32,441.90 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='506.27,427.86 508.79,425.34 511.31,427.86 508.79,430.38 506.27,427.86 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='506.27,442.69 508.79,440.17 511.31,442.69 508.79,445.21 506.27,442.69 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='532.04,429.18 534.56,426.66 537.08,429.18 534.56,431.70 532.04,429.18 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='532.04,425.47 534.56,422.95 537.08,425.47 534.56,427.99 532.04,425.47 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='559.75,423.25 562.27,420.73 564.79,423.25 562.27,425.77 559.75,423.25 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='559.75,421.03 562.27,418.51 564.79,421.03 562.27,423.55 559.75,421.03 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='571.42,433.91 573.94,431.39 576.46,433.91 573.94,436.43 571.42,433.91 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='571.42,425.01 573.94,422.49 576.46,425.01 573.94,427.54 571.42,425.01 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='574.80,421.02 577.32,418.50 579.84,421.02 577.32,423.54 574.80,421.02 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='574.80,458.10 577.32,455.57 579.84,458.10 577.32,460.62 574.80,458.10 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='417.31,424.21 419.71,420.05 414.91,420.05 417.31,424.21 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='417.31,422.84 419.71,418.68 414.91,418.68 417.31,422.84 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='430.60,436.59 433.00,432.43 428.20,432.43 430.60,436.59 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='430.60,450.97 433.00,446.82 428.20,446.82 430.60,450.97 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='453.30,432.94 455.70,428.79 450.90,428.79 453.30,432.94 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='453.30,439.11 455.70,434.95 450.90,434.95 453.30,439.11 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='483.21,425.18 485.61,421.02 480.81,421.02 483.21,425.18 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='483.21,437.51 485.61,433.35 480.81,433.35 483.21,437.51 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='519.01,432.33 521.41,428.17 516.61,428.17 519.01,432.33 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='519.01,435.75 521.41,431.60 516.61,431.60 519.01,435.75 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='549.26,446.18 551.66,442.02 546.86,442.02 549.26,446.18 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='549.26,439.33 551.66,435.17 546.86,435.17 549.26,439.33 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='556.44,429.68 558.84,425.52 554.04,425.52 556.44,429.68 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='556.44,424.20 558.84,420.04 554.04,420.04 556.44,424.20 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='556.73,436.86 559.13,432.71 554.33,432.71 556.73,436.86 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='556.73,439.60 559.13,435.45 554.33,435.45 556.73,439.60 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='421.34' y='433.31' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='421.34' y1='436.88' x2='424.91' y2='433.31' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='421.34' y1='433.31' x2='424.91' y2='436.88' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='421.34' y='421.76' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='421.34' y1='425.33' x2='424.91' y2='421.76' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='421.34' y1='421.76' x2='424.91' y2='425.33' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='445.15' y='424.38' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='445.15' y1='427.94' x2='448.72' y2='424.38' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='445.15' y1='424.38' x2='448.72' y2='427.94' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='445.15' y='436.50' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='445.15' y1='440.07' x2='448.72' y2='436.50' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='445.15' y1='436.50' x2='448.72' y2='440.07' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='485.08' y='425.70' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='485.08' y1='429.26' x2='488.64' y2='425.70' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='485.08' y1='425.70' x2='488.64' y2='429.26' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='485.08' y='423.39' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='485.08' y1='426.95' x2='488.64' y2='423.39' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='485.08' y1='423.39' x2='488.64' y2='426.95' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='535.86' y='416.05' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='535.86' y1='419.62' x2='539.42' y2='416.05' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='535.86' y1='416.05' x2='539.42' y2='419.62' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='535.86' y='446.09' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='535.86' y1='449.65' x2='539.42' y2='446.09' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='535.86' y1='446.09' x2='539.42' y2='449.65' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='592.02' y='421.97' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='592.02' y1='425.54' x2='595.58' y2='421.97' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='592.02' y1='421.97' x2='595.58' y2='425.54' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='592.02' y='430.06' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='592.02' y1='433.62' x2='595.58' y2='430.06' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='592.02' y1='430.06' x2='595.58' y2='433.62' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='628.70' y='439.81' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='628.70' y1='443.38' x2='632.26' y2='439.81' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='628.70' y1='439.81' x2='632.26' y2='443.38' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='628.70' y='435.77' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='628.70' y1='439.33' x2='632.26' y2='435.77' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='628.70' y1='435.77' x2='632.26' y2='439.33' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='629.32' y='449.65' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='629.32' y1='453.21' x2='632.88' y2='449.65' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='629.32' y1='449.65' x2='632.88' y2='453.21' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='629.32' y='420.77' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='629.32' y1='424.34' x2='632.88' y2='420.77' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='629.32' y1='420.77' x2='632.88' y2='424.34' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='621.09' y='441.76' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='621.09' y1='445.32' x2='624.65' y2='441.76' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='621.09' y1='441.76' x2='624.65' y2='445.32' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='621.09' y='407.69' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='621.09' y1='411.25' x2='624.65' y2='407.69' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='621.09' y1='407.69' x2='624.65' y2='411.25' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='428.03' y1='439.09' x2='431.60' y2='435.53' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='428.03' y1='435.53' x2='431.60' y2='439.09' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='427.30' y1='437.31' x2='432.34' y2='437.31' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='429.82' y1='439.83' x2='429.82' y2='434.79' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='428.03' y1='433.40' x2='431.60' y2='429.84' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='428.03' y1='429.84' x2='431.60' y2='433.40' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='427.30' y1='431.62' x2='432.34' y2='431.62' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='429.82' y1='434.14' x2='429.82' y2='429.10' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='461.80' y1='441.65' x2='465.36' y2='438.09' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='461.80' y1='438.09' x2='465.36' y2='441.65' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='461.06' y1='439.87' x2='466.10' y2='439.87' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='463.58' y1='442.39' x2='463.58' y2='437.35' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='461.80' y1='432.17' x2='465.36' y2='428.61' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='461.80' y1='428.61' x2='465.36' y2='432.17' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='461.06' y1='430.39' x2='466.10' y2='430.39' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='463.58' y1='432.91' x2='463.58' y2='427.87' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='511.66' y1='435.20' x2='515.23' y2='431.63' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='511.66' y1='431.63' x2='515.23' y2='435.20' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='510.92' y1='433.42' x2='515.96' y2='433.42' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='513.44' y1='435.94' x2='513.44' y2='430.90' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='511.66' y1='436.46' x2='515.23' y2='432.90' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='511.66' y1='432.90' x2='515.23' y2='436.46' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='510.92' y1='434.68' x2='515.96' y2='434.68' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='513.44' y1='437.20' x2='513.44' y2='432.16' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='562.63' y1='438.75' x2='566.20' y2='435.19' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='562.63' y1='435.19' x2='566.20' y2='438.75' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='561.90' y1='436.97' x2='566.94' y2='436.97' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='564.42' y1='439.49' x2='564.42' y2='434.45' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='562.63' y1='457.08' x2='566.20' y2='453.52' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='562.63' y1='453.52' x2='566.20' y2='457.08' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='561.90' y1='455.30' x2='566.94' y2='455.30' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='564.42' y1='457.82' x2='564.42' y2='452.78' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='603.13' y1='423.73' x2='606.69' y2='420.17' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='603.13' y1='420.17' x2='606.69' y2='423.73' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='602.39' y1='421.95' x2='607.43' y2='421.95' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='604.91' y1='424.47' x2='604.91' y2='419.43' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='603.13' y1='414.25' x2='606.69' y2='410.69' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='603.13' y1='410.69' x2='606.69' y2='414.25' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='602.39' y1='412.47' x2='607.43' y2='412.47' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='604.91' y1='414.99' x2='604.91' y2='409.95' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='625.41' y1='412.99' x2='628.98' y2='409.43' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='625.41' y1='409.43' x2='628.98' y2='412.99' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='624.68' y1='411.21' x2='629.72' y2='411.21' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='627.20' y1='413.73' x2='627.20' y2='408.69' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='625.41' y1='450.91' x2='628.98' y2='447.35' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='625.41' y1='447.35' x2='628.98' y2='450.91' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='624.68' y1='449.13' x2='629.72' y2='449.13' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='627.20' y1='451.65' x2='627.20' y2='446.61' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='631.42' y1='428.77' x2='634.98' y2='425.21' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='631.42' y1='425.21' x2='634.98' y2='428.77' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='630.68' y1='426.99' x2='635.72' y2='426.99' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='633.20' y1='429.51' x2='633.20' y2='424.47' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='631.42' y1='452.15' x2='634.98' y2='448.59' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='631.42' y1='448.59' x2='634.98' y2='452.15' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='630.68' y1='450.37' x2='635.72' y2='450.37' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='633.20' y1='452.89' x2='633.20' y2='447.85' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='632.21' y1='416.33' x2='635.77' y2='412.76' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='632.21' y1='412.76' x2='635.77' y2='416.33' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='631.47' y1='414.55' x2='636.51' y2='414.55' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='633.99' y1='417.07' x2='633.99' y2='412.03' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='632.21' y1='448.56' x2='635.77' y2='445.00' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='632.21' y1='445.00' x2='635.77' y2='448.56' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='631.47' y1='446.78' x2='636.51' y2='446.78' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='633.99' y1='449.30' x2='633.99' y2='444.26' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='424.36' y1='424.93' x2='429.40' y2='424.93' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='426.88' y1='427.45' x2='426.88' y2='422.41' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='424.36,424.93 426.88,422.41 429.40,424.93 426.88,427.45 424.36,424.93 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='424.36' y1='430.63' x2='429.40' y2='430.63' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='426.88' y1='433.15' x2='426.88' y2='428.11' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='424.36,430.63 426.88,428.11 429.40,430.63 426.88,433.15 424.36,430.63 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='454.02' y1='425.63' x2='459.06' y2='425.63' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='456.54' y1='428.15' x2='456.54' y2='423.11' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='454.02,425.63 456.54,423.11 459.06,425.63 456.54,428.15 454.02,425.63 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='454.02' y1='434.19' x2='459.06' y2='434.19' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='456.54' y1='436.71' x2='456.54' y2='431.67' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='454.02,434.19 456.54,431.67 459.06,434.19 456.54,436.71 454.02,434.19 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='500.83' y1='428.90' x2='505.87' y2='428.90' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='503.35' y1='431.42' x2='503.35' y2='426.38' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='500.83,428.90 503.35,426.38 505.87,428.90 503.35,431.42 500.83,428.90 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='500.83' y1='441.45' x2='505.87' y2='441.45' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='503.35' y1='443.97' x2='503.35' y2='438.92' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='500.83,441.45 503.35,438.92 505.87,441.45 503.35,443.97 500.83,441.45 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='555.38' y1='430.93' x2='560.42' y2='430.93' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='557.90' y1='433.46' x2='557.90' y2='428.41' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='555.38,430.93 557.90,428.41 560.42,430.93 557.90,433.46 555.38,430.93 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='555.38' y1='432.08' x2='560.42' y2='432.08' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='557.90' y1='434.60' x2='557.90' y2='429.56' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='555.38,432.08 557.90,429.56 560.42,432.08 557.90,434.60 555.38,432.08 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='612.02' y1='426.96' x2='617.06' y2='426.96' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='614.54' y1='429.48' x2='614.54' y2='424.44' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='612.02,426.96 614.54,424.44 617.06,426.96 614.54,429.48 612.02,426.96 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='612.02' y1='446.92' x2='617.06' y2='446.92' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='614.54' y1='449.44' x2='614.54' y2='444.40' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='612.02,446.92 614.54,444.40 617.06,446.92 614.54,449.44 612.02,446.92 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='661.70' y1='427.24' x2='666.74' y2='427.24' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='664.22' y1='429.76' x2='664.22' y2='424.72' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='661.70,427.24 664.22,424.72 666.74,427.24 664.22,429.76 661.70,427.24 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='661.70' y1='417.54' x2='666.74' y2='417.54' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='664.22' y1='420.06' x2='664.22' y2='415.02' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='661.70,417.54 664.22,415.02 666.74,417.54 664.22,420.06 661.70,417.54 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='679.58' y1='444.16' x2='684.62' y2='444.16' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='682.10' y1='446.68' x2='682.10' y2='441.64' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='679.58,444.16 682.10,441.64 684.62,444.16 682.10,446.68 679.58,444.16 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='679.58' y1='439.60' x2='684.62' y2='439.60' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='682.10' y1='442.12' x2='682.10' y2='437.08' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='679.58,439.60 682.10,437.08 684.62,439.60 682.10,442.12 679.58,439.60 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='685.01' y1='422.50' x2='690.05' y2='422.50' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='687.53' y1='425.02' x2='687.53' y2='419.98' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='685.01,422.50 687.53,419.98 690.05,422.50 687.53,425.02 685.01,422.50 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='685.01' y1='436.19' x2='690.05' y2='436.19' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='687.53' y1='438.71' x2='687.53' y2='433.67' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='685.01,436.19 687.53,433.67 690.05,436.19 687.53,438.71 685.01,436.19 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='419.76' cy='432.45' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='417.98' y1='432.45' x2='421.54' y2='432.45' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='419.76' y1='434.23' x2='419.76' y2='430.67' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='419.76' cy='438.64' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='417.98' y1='438.64' x2='421.54' y2='438.64' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='419.76' y1='440.42' x2='419.76' y2='436.86' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='437.75' cy='441.18' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='435.97' y1='441.18' x2='439.54' y2='441.18' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='437.75' y1='442.96' x2='437.75' y2='439.40' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='437.75' cy='433.22' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='435.97' y1='433.22' x2='439.54' y2='433.22' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='437.75' y1='435.00' x2='437.75' y2='431.44' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='469.19' cy='429.85' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='467.41' y1='429.85' x2='470.97' y2='429.85' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='469.19' y1='431.63' x2='469.19' y2='428.07' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='469.19' cy='421.89' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='467.41' y1='421.89' x2='470.97' y2='421.89' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='469.19' y1='423.67' x2='469.19' y2='420.10' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='512.66' cy='428.23' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='510.88' y1='428.23' x2='514.44' y2='428.23' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='512.66' y1='430.02' x2='512.66' y2='426.45' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='512.66' cy='432.66' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='510.88' y1='432.66' x2='514.44' y2='432.66' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='512.66' y1='434.44' x2='512.66' y2='430.88' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='570.87' cy='419.07' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='569.08' y1='419.07' x2='572.65' y2='419.07' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='570.87' y1='420.85' x2='570.87' y2='417.28' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='570.87' cy='420.84' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='569.08' y1='420.84' x2='572.65' y2='420.84' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='570.87' y1='422.62' x2='570.87' y2='419.05' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='637.53' cy='438.25' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='635.75' y1='438.25' x2='639.32' y2='438.25' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='637.53' y1='440.03' x2='637.53' y2='436.47' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='637.53' cy='455.94' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='635.75' y1='455.94' x2='639.32' y2='455.94' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='637.53' y1='457.72' x2='637.53' y2='454.16' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='666.57' cy='443.74' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='664.79' y1='443.74' x2='668.35' y2='443.74' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='666.57' y1='445.53' x2='666.57' y2='441.96' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='666.57' cy='426.94' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='664.79' y1='426.94' x2='668.35' y2='426.94' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='666.57' y1='428.72' x2='666.57' y2='425.15' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='680.95' cy='433.02' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='679.17' y1='433.02' x2='682.73' y2='433.02' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='680.95' y1='434.80' x2='680.95' y2='431.24' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='680.95' cy='419.75' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='679.17' y1='419.75' x2='682.73' y2='419.75' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='680.95' y1='421.53' x2='680.95' y2='417.97' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='416.48,432.89 418.88,428.04 414.08,428.04 416.48,432.89 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='416.48,427.34 418.88,432.19 414.08,432.19 416.48,427.34 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='416.48,431.53 418.88,426.68 414.08,426.68 416.48,431.53 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='416.48,425.99 418.88,430.84 414.08,430.84 416.48,425.99 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='428.37,444.22 430.77,439.37 425.97,439.37 428.37,444.22 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='428.37,438.67 430.77,443.52 425.97,443.52 428.37,438.67 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='428.37,431.35 430.77,426.50 425.97,426.50 428.37,431.35 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='428.37,425.81 430.77,430.66 425.97,430.66 428.37,425.81 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='449.15,439.14 451.55,434.29 446.75,434.29 449.15,439.14 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='449.15,433.60 451.55,438.45 446.75,438.45 449.15,433.60 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='449.15,442.52 451.55,437.67 446.75,437.67 449.15,442.52 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='449.15,436.98 451.55,441.83 446.75,441.83 449.15,436.98 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='477.96,433.61 480.36,428.76 475.56,428.76 477.96,433.61 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='477.96,428.07 480.36,432.91 475.56,432.91 477.96,428.07 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='477.96,445.80 480.36,440.95 475.56,440.95 477.96,445.80 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='477.96,440.26 480.36,445.11 475.56,445.11 477.96,440.26 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='516.78,442.05 519.18,437.20 514.38,437.20 516.78,442.05 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='516.78,436.50 519.18,441.35 514.38,441.35 516.78,436.50 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='516.78,419.02 519.18,414.17 514.38,414.17 516.78,419.02 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='516.78,413.48 519.18,418.33 514.38,418.33 516.78,413.48 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='561.65,419.35 564.05,414.50 559.25,414.50 561.65,419.35 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='561.65,413.81 564.05,418.66 559.25,418.66 561.65,413.81 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='561.65,433.58 564.05,428.73 559.25,428.73 561.65,433.58 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='561.65,428.03 564.05,432.88 559.25,432.88 561.65,428.03 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='580.52,447.34 582.92,442.49 578.12,442.49 580.52,447.34 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='580.52,441.80 582.92,446.65 578.12,446.65 580.52,441.80 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='580.52,448.70 582.92,443.85 578.12,443.85 580.52,448.70 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='580.52,443.16 582.92,448.01 578.12,448.01 580.52,443.16 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='588.37,426.37 590.77,421.52 585.97,421.52 588.37,426.37 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='588.37,420.83 590.77,425.68 585.97,425.68 588.37,420.83 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='588.37,433.82 590.77,428.97 585.97,428.97 588.37,433.82 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='588.37,428.28 590.77,433.13 585.97,433.13 588.37,428.28 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='414.41' y1='437.02' x2='417.98' y2='437.02' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='416.19' y1='438.80' x2='416.19' y2='435.24' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='414.41' y='435.24' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='414.41' y1='422.80' x2='417.98' y2='422.80' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='416.19' y1='424.59' x2='416.19' y2='421.02' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='414.41' y='421.02' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='425.98' y1='427.46' x2='429.54' y2='427.46' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='427.76' y1='429.24' x2='427.76' y2='425.67' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='425.98' y='425.67' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='425.98' y1='425.52' x2='429.54' y2='425.52' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='427.76' y1='427.30' x2='427.76' y2='423.74' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='425.98' y='423.74' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='446.94' y1='428.62' x2='450.50' y2='428.62' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='448.72' y1='430.40' x2='448.72' y2='426.84' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='446.94' y='426.84' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='446.94' y1='433.14' x2='450.50' y2='433.14' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='448.72' y1='434.92' x2='448.72' y2='431.36' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='446.94' y='431.36' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='477.62' y1='428.58' x2='481.18' y2='428.58' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='479.40' y1='430.36' x2='479.40' y2='426.80' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='477.62' y='426.80' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='477.62' y1='433.10' x2='481.18' y2='433.10' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='479.40' y1='434.89' x2='479.40' y2='431.32' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='477.62' y='431.32' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='521.70' y1='436.45' x2='525.26' y2='436.45' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='523.48' y1='438.23' x2='523.48' y2='434.67' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='521.70' y='434.67' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='521.70' y1='437.10' x2='525.26' y2='437.10' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='523.48' y1='438.88' x2='523.48' y2='435.31' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='521.70' y='435.31' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='573.06' y1='425.00' x2='576.63' y2='425.00' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='574.84' y1='426.78' x2='574.84' y2='423.22' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='573.06' y='423.22' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='573.06' y1='435.98' x2='576.63' y2='435.98' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='574.84' y1='437.77' x2='574.84' y2='434.20' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='573.06' y='434.20' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='593.01' y1='422.49' x2='596.57' y2='422.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='594.79' y1='424.27' x2='594.79' y2='420.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='593.01' y='420.71' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='593.01' y1='444.46' x2='596.57' y2='444.46' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='594.79' y1='446.24' x2='594.79' y2='442.68' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='593.01' y='442.68' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='602.24' y1='418.82' x2='605.80' y2='418.82' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='604.02' y1='420.61' x2='604.02' y2='417.04' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='602.24' y='417.04' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='602.24' y1='445.31' x2='605.80' y2='445.31' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='604.02' y1='447.09' x2='604.02' y2='443.53' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='602.24' y='443.53' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='416.95' cy='434.31' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='415.17' y1='436.09' x2='418.74' y2='432.53' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='415.17' y1='432.53' x2='418.74' y2='436.09' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='416.95' cy='440.69' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='415.17' y1='442.47' x2='418.74' y2='438.91' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='415.17' y1='438.91' x2='418.74' y2='442.47' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='429.90' cy='429.92' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='428.12' y1='431.70' x2='431.68' y2='428.14' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='428.12' y1='428.14' x2='431.68' y2='431.70' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='429.90' cy='418.76' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='428.12' y1='420.54' x2='431.68' y2='416.98' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='428.12' y1='416.98' x2='431.68' y2='420.54' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='453.11' cy='428.75' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='451.33' y1='430.54' x2='454.89' y2='426.97' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='451.33' y1='426.97' x2='454.89' y2='430.54' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='453.11' cy='437.52' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='451.33' y1='439.31' x2='454.89' y2='435.74' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='451.33' y1='435.74' x2='454.89' y2='439.31' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='486.39' cy='440.92' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='484.61' y1='442.70' x2='488.17' y2='439.13' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='484.61' y1='439.13' x2='488.17' y2='442.70' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='486.39' cy='429.75' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='484.61' y1='431.54' x2='488.17' y2='427.97' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='484.61' y1='427.97' x2='488.17' y2='431.54' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='532.17' cy='427.37' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='530.39' y1='429.15' x2='533.95' y2='425.59' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='530.39' y1='425.59' x2='533.95' y2='429.15' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='532.17' cy='444.91' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='530.39' y1='446.69' x2='533.95' y2='443.12' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='530.39' y1='443.12' x2='533.95' y2='446.69' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='579.86' cy='438.67' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='578.08' y1='440.45' x2='581.64' y2='436.89' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='578.08' y1='436.89' x2='581.64' y2='440.45' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='579.86' cy='410.77' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='578.08' y1='412.55' x2='581.64' y2='408.98' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='578.08' y1='408.98' x2='581.64' y2='412.55' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='594.48' cy='458.82' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='592.70' y1='460.60' x2='596.26' y2='457.04' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='592.70' y1='457.04' x2='596.26' y2='460.60' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='594.48' cy='415.77' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='592.70' y1='417.55' x2='596.26' y2='413.99' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='592.70' y1='413.99' x2='596.26' y2='417.55' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='599.20' cy='433.97' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='597.42' y1='435.76' x2='600.98' y2='432.19' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='597.42' y1='432.19' x2='600.98' y2='435.76' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='599.20' cy='429.19' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='597.42' y1='430.97' x2='600.98' y2='427.41' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='597.42' y1='427.41' x2='600.98' y2='430.97' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='423.14,434.69 424.92,438.25 421.35,438.25 423.14,434.69 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='421.35' y='434.69' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='423.14,428.57 424.92,432.14 421.35,432.14 423.14,428.57 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='421.35' y='428.57' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='446.07,432.14 447.85,435.70 444.29,435.70 446.07,432.14 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='444.29' y='432.14' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='446.07,435.63 447.85,439.19 444.29,439.19 446.07,435.63 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='444.29' y='435.63' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='482.02,455.45 483.80,459.01 480.24,459.01 482.02,455.45 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='480.24' y='455.45' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='482.02,424.00 483.80,427.56 480.24,427.56 482.02,424.00 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='480.24' y='424.00' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='523.65,424.98 525.44,428.54 521.87,428.54 523.65,424.98 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='521.87' y='424.98' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='523.65,435.46 525.44,439.03 521.87,439.03 523.65,435.46 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='521.87' y='435.46' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='567.15,450.50 568.93,454.06 565.37,454.06 567.15,450.50 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='565.37' y='450.50' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='567.15,426.91 568.93,430.48 565.37,430.48 567.15,426.91 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='565.37' y='426.91' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='605.77,427.02 607.55,430.58 603.99,430.58 605.77,427.02 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='603.99' y='427.02' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='605.77,401.68 607.55,405.25 603.99,405.25 605.77,401.68 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='603.99' y='401.68' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='617.55,448.48 619.34,452.04 615.77,452.04 617.55,448.48 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='615.77' y='448.48' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='617.55,411.79 619.34,415.35 615.77,415.35 617.55,411.79 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='615.77' y='411.79' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='618.02,441.29 619.80,444.86 616.24,444.86 618.02,441.29 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='616.24' y='441.29' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='618.02,432.56 619.80,436.12 616.24,436.12 618.02,432.56 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='616.24' y='432.56' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='421.34,430.22 424.91,430.22 424.91,426.66 421.34,426.66 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='421.34,436.10 424.91,436.10 424.91,432.53 421.34,432.53 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='444.31,438.60 447.87,438.60 447.87,435.04 444.31,435.04 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='444.31,431.55 447.87,431.55 447.87,427.99 444.31,427.99 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='480.34,461.89 483.90,461.89 483.90,458.33 480.34,458.33 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='480.34,417.23 483.90,417.23 483.90,413.66 480.34,413.66 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='521.64,463.73 525.20,463.73 525.20,460.17 521.64,460.17 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='521.64,441.40 525.20,441.40 525.20,437.84 521.64,437.84 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='562.76,433.49 566.32,433.49 566.32,429.93 562.76,429.93 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='562.76,435.84 566.32,435.84 566.32,432.28 562.76,432.28 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='598.19,415.67 601.76,415.67 601.76,412.10 598.19,412.10 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='598.19,414.49 601.76,414.49 601.76,410.93 598.19,410.93 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='615.17,417.07 618.74,417.07 618.74,413.50 615.17,413.50 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='615.17,435.87 618.74,435.87 618.74,432.31 615.17,432.31 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='626.07,416.01 629.64,416.01 629.64,412.44 626.07,412.44 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='626.07,477.12 629.64,477.12 629.64,473.56 626.07,473.56 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
</svg>

Contact - Imprint