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
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
baseProfile="full"
id="body"
width="8in"
height="8in"
viewBox="0 0 1 1"
preserveAspectRatio="none"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docname="ExtruderClampBracket_1.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<metadata
id="metadata7428">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs7426"><inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 360 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="720 : 360 : 1"
inkscape:persp3d-origin="360 : 240 : 1"
id="perspective7430" />
</defs>
<sodipodi:namedview
inkscape:window-height="949"
inkscape:window-width="1272"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showgrid="true"
inkscape:document-units="mm"
inkscape:zoom="7.3335626"
inkscape:cx="242.4345"
inkscape:cy="500.39407"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:current-layer="body">
<inkscape:grid
type="xygrid"
id="grid7432"
visible="true"
enabled="true"
units="mm"
spacingx="1mm"
spacingy="1mm"
empcolor="#ff0009"
empopacity="0.25098039" />
</sodipodi:namedview>
<title
id="title6179">SVG drawing</title>
<desc
id="desc6181">This was produced by version 4.2 of GNU libplot, a free library for exporting 2-D vector graphics.</desc>
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6191"
y2="0.28745824"
x2="0.39859733"
y1="0.30162308"
x1="0.39859733" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6193"
y2="0.30162308"
x2="0.40734726"
y1="0.28745824"
x1="0.40734726" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6195"
y2="0.30162308"
x2="0.37359747"
y1="0.28745824"
x1="0.37359747" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6197"
y2="0.30620638"
x2="0.38526407"
y1="0.28912488"
x1="0.38526407" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6199"
y2="0.28912488"
x2="0.3827641"
y1="0.30620638"
x1="0.3827641" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6201"
y2="0.27245834"
x2="0.41193056"
y1="0.30620638"
x1="0.41193056" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6203"
d="M 0.41949996,0.2929617 L 0.41915274,0.29297211 L 0.41878816,0.29299816 L 0.41844094,0.29304329 L 0.41809372,0.29310579 L 0.4177465,0.29318565 L 0.41741664,0.2932794 L 0.41708678,0.29339051 L 0.41675693,0.29351725 L 0.41644443,0.29365961 L 0.41614929,0.29381586 L 0.41585415,0.293986 L 0.41555902,0.29417002 L 0.41528124,0.2943662 L 0.41502083,0.29457627 L 0.41476041,0.29479849 L 0.41451736,0.29503286 L 0.41429166,0.29527765 L 0.41406597,0.2955346 L 0.41385764,0.29580022 L 0.41364931,0.296078 L 0.4134757,0.29636445 L 0.41330209,0.29665959 L 0.41314584,0.29696341 L 0.41300695,0.29727591 L 0.41288542,0.29759708 L 0.4127639,0.29792521 L 0.41267709,0.29826027 L 0.41259029,0.29860055 L 0.4125382,0.29894777 L 0.41248612,0.29930193 L 0.4124514,0.29965957 L 0.4124514,0.30002242 C 0.4124514,0.30391475 0.4156111,0.30707445 0.41949996,0.30707445" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6205"
y2="0.293295"
x2="0.43776372"
y1="0.30746156"
x1="0.43776372" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6207"
points="152,93.199 152,101.12 152,93.199 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6209"
y2="0.28745824"
x2="0.36484754"
y1="0.30162308"
x1="0.36484754" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6211"
y2="0.30620638"
x2="0.35984755"
y1="0.28829154"
x1="0.35984755" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6213"
d="M 0.34212199,0.29630543 L 0.34212199,0.2961405 L 0.34212199,0.2959773 L 0.34208726,0.29581585 L 0.3420699,0.29565786 L 0.34203518,0.29550161 L 0.3419831,0.29534883 L 0.34193102,0.29519953 L 0.34187893,0.29505196 L 0.34180949,0.2949096 L 0.34174004,0.29477071 L 0.3416706,0.29463703 L 0.3415838,0.29450509 L 0.34149699,0.29438009 L 0.34139282,0.29425683 L 0.34128866,0.29414051 L 0.34118449,0.2940294 L 0.34108033,0.29392176 L 0.3409588,0.29382107 L 0.34083727,0.29372558 L 0.34071575,0.2936353 L 0.34057686,0.29355197 L 0.34043797,0.29347385 L 0.34029908,0.29340267 L 0.34016019,0.29333843 L 0.34002131,0.2932794 L 0.33986506,0.29322906 L 0.33970881,0.29318565 L 0.33955256,0.2931492 L 0.33939631,0.29312142 L 0.33924006,0.29310059 L 0.33906645,0.29308843 L 0.3389102,0.29308496 C 0.33713938,0.29308496 0.33568106,0.2945294 0.33568106,0.29630543 C 0.33568106,0.29808319 0.33713938,0.29952763 0.3389102,0.29952763 C 0.34068102,0.29952763 0.34212199,0.29808319 0.34212199,0.29630543 z" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6215"
points="114.8,100.4 114.8,92.48 114.8,100.4 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6217"
points="116.48,118.16 116.48,93.199 116.48,118.16 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6219"
points="79.281,92.48 79.281,117.44 79.281,92.48 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6221"
d="M 0.27752171,0.29749292 L 0.27752171,0.29732625 L 0.27750434,0.29716306 L 0.27748698,0.2970016 L 0.27746962,0.29684362 L 0.2774349,0.29668737 L 0.27738282,0.29653459 L 0.27733074,0.29638529 L 0.27727865,0.29623945 L 0.27720921,0.29609709 L 0.27713976,0.29595821 L 0.27707032,0.29582279 L 0.27698352,0.29569258 L 0.27689671,0.29556585 L 0.27679254,0.29544432 L 0.27668838,0.295328 L 0.27658421,0.29521515 L 0.27648005,0.29510925 L 0.27635852,0.29500682 L 0.27623699,0.29491134 L 0.27611547,0.29482106 L 0.27597658,0.29473773 L 0.27583769,0.2946596 L 0.2756988,0.29458842 L 0.27555991,0.29452419 L 0.27542102,0.2944669 L 0.27526478,0.29441655 L 0.27510853,0.29437315 L 0.27495228,0.29433669 L 0.27479603,0.29430891 L 0.27463978,0.29428808 L 0.27448353,0.29427592 L 0.27430992,0.29427072 C 0.2725391,0.29427072 0.27109814,0.29571515 0.27109814,0.29749292 C 0.27109814,0.29926895 0.2725391,0.30071338 0.27430992,0.30071338 C 0.27608074,0.30071338 0.27752171,0.29926895 0.27752171,0.29749292 z" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6223"
points="116.48,93.199 152,93.199 116.48,93.199 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6225"
points="116.48,63.441 152.72,63.441 116.48,63.441 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6227"
points="152,88.398 116.48,88.398 152,88.398 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6229"
points="116.48,88.398 116.48,63.441 116.48,88.398 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6231"
y2="0.30329147"
x2="0.27568144"
y1="0.30329147"
x1="0.291098" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6233"
d="M 0.28609804,0.31049283 C 0.28200084,0.31049283 0.27866753,0.31382267 0.27866753,0.31791813" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6235"
points="114.8,92.48 79.281,92.48 114.8,92.48 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6237"
y2="0.31829137"
x2="0.27859807"
y1="0.35204461"
x1="0.27859807" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6239"
d="M 0.26090723,0.32472712 L 0.26090723,0.32420282 L 0.26085515,0.32368372 L 0.26080306,0.32317331 L 0.2606989,0.32266984 L 0.26059473,0.32217679 L 0.26045584,0.32169242 L 0.26029959,0.32121846 L 0.26010862,0.32075492 L 0.25990029,0.3203018 L 0.2596746,0.31986083 L 0.25943328,0.31943375 L 0.25916766,0.31901882 L 0.25888294,0.31861952 L 0.25857912,0.31823237 L 0.25825794,0.31786258 L 0.2579194,0.31750841 L 0.25756524,0.31716988 L 0.25719371,0.3168487 L 0.2568083,0.31654488 L 0.25640726,0.31626016 L 0.25599407,0.31599454 L 0.25556525,0.31574801 L 0.25512602,0.31552232 L 0.25467289,0.31531746 L 0.25420936,0.31513517 L 0.2537354,0.31497371 L 0.25325103,0.31483656 L 0.25275624,0.31472197 L 0.25225451,0.3146317 L 0.25174409,0.31456746 L 0.251225,0.31452753 L 0.2507007,0.31451364 C 0.24506532,0.31451364 0.24048722,0.31909174 0.24048722,0.32472712 C 0.24048722,0.3303625 0.24506532,0.33494059 0.2507007,0.33494059 C 0.25633608,0.33494059 0.26090723,0.3303625 0.26090723,0.32472712 z" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6241"
y2="0.33412632"
x2="0.22360016"
y1="0.30329147"
x1="0.22360016" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6243"
y2="0.35204461"
x2="0.27859807"
y1="0.35204461"
x1="0.25193506" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6245"
y2="0.35204461"
x2="0.25193506"
y1="0.33496141"
x1="0.25193506" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6247"
y2="0.33496141"
x2="0.24943161"
y1="0.35204461"
x1="0.24943161" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6249"
y2="0.35204461"
x2="0.22651681"
y1="0.33412632"
x1="0.22651681" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6251"
y2="0.34745958"
x2="0.24026325"
y1="0.33329302"
x1="0.24026325" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6253"
y2="0.33329302"
x2="0.23151505"
y1="0.34745958"
x1="0.23151505" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6255"
y2="0.34745958"
x2="0.23151505"
y1="0.34745958"
x1="0.24026325" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6257"
y2="0.35204461"
x2="0.24943161"
y1="0.35204461"
x1="0.22651681" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6259"
y2="0.33329302"
x2="0.24026325"
y1="0.33329302"
x1="0.23151505" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6261"
y2="0.33412632"
x2="0.22651681"
y1="0.33412632"
x1="0.22360016" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6263"
y2="0.34745958"
x2="0.27401477"
y1="0.33329302"
x1="0.27401477" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6265"
y2="0.33329302"
x2="0.26526484"
y1="0.34745958"
x1="0.26526484" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6267"
y2="0.34745958"
x2="0.26526484"
y1="0.34745958"
x1="0.27401477" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6269"
y2="0.33329302"
x2="0.27401477"
y1="0.33329302"
x1="0.26526484" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6271"
y2="0.30453798"
x2="0.22484843"
y1="0.30453798"
x1="0.27568144" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6273"
y2="0.31329313"
x2="0.22651681"
y1="0.30912301"
x1="0.22651681" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6275"
y2="0.30912301"
x2="0.23359664"
y1="0.31329313"
x1="0.23359664" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6277"
y2="0.31912643"
x2="0.22651681"
y1="0.31912643"
x1="0.23359664" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6279"
y2="0.31329313"
x2="0.23359664"
y1="0.31329313"
x1="0.22651681" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6281"
y2="0.30912301"
x2="0.22651681"
y1="0.30912301"
x1="0.23359664" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6283"
y2="0.3232896"
x2="0.23359664"
y1="0.3232896"
x1="0.22651681" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6285"
y2="0.3232896"
x2="0.22651681"
y1="0.31912643"
x1="0.22651681" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6287"
y2="0.31912643"
x2="0.23359664"
y1="0.3232896"
x1="0.23359664" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6289"
y2="0.31495458"
x2="0.25193506"
y1="0.30954316"
x1="0.25193506" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6291"
points="94.16,85.762 94.16,88.879 95.602,88.879 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6293"
y2="0.30329147"
x2="0.22360016"
y1="0.30329147"
x1="0.22484843" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6295"
y2="0.30329147"
x2="0.22484843"
y1="0.30453798"
x1="0.22484843" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6297"
y2="0.31329313"
x2="0.26734817"
y1="0.31329313"
x1="0.27443144" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6299"
y2="0.31912643"
x2="0.27443144"
y1="0.31912643"
x1="0.26734817" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6301"
y2="0.3232896"
x2="0.26734817"
y1="0.3232896"
x1="0.27443144" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6303"
y2="0.30912301"
x2="0.27443144"
y1="0.30912301"
x1="0.26734817" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6305"
y2="0.30912301"
x2="0.26734817"
y1="0.31329313"
x1="0.26734817" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6307"
y2="0.31912643"
x2="0.26734817"
y1="0.3232896"
x1="0.26734817" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6309"
y2="0.31329313"
x2="0.27443144"
y1="0.30912301"
x1="0.27443144" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6311"
y2="0.3232896"
x2="0.27443144"
y1="0.31912643"
x1="0.27443144" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6313"
y2="0.30453798"
x2="0.27568144"
y1="0.30329147"
x1="0.27568144" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6465"
d="M 0.29878893,0.33109513 L 0.29878893,0.3309302 L 0.29877157,0.33076701 L 0.29875421,0.33060555 L 0.29871949,0.33044757 L 0.29868476,0.33029132 L 0.29865004,0.33013854 L 0.29859796,0.32998924 L 0.29852852,0.32984167 L 0.29847643,0.32969931 L 0.29840699,0.32956042 L 0.29832018,0.32942674 L 0.29823338,0.3292948 L 0.29814657,0.3291698 L 0.29805977,0.32904654 L 0.2979556,0.32893022 L 0.29785144,0.32881911 L 0.29772991,0.32871147 L 0.29760838,0.32861077 L 0.29748686,0.32851529 L 0.29736533,0.32842501 L 0.2972438,0.32834168 L 0.29710491,0.32826355 L 0.29696603,0.32819237 L 0.29682714,0.32812814 L 0.29667089,0.32806911 L 0.296532,0.32801876 L 0.29637575,0.32797536 L 0.2962195,0.3279389 L 0.29606325,0.32791113 L 0.29590701,0.32789029 L 0.2957334,0.32787814 L 0.29557715,0.32787467 C 0.29378896,0.32787467 0.292348,0.3293191 0.292348,0.33109513 C 0.292348,0.33286596 0.29378896,0.33431039 0.29557715,0.33431039 C 0.29734797,0.33431039 0.29878893,0.33286596 0.29878893,0.33109513 z" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6541"
d="M 0.34212199,0.34657073 L 0.34212199,0.3464058 L 0.34212199,0.34624261 L 0.34208726,0.34608115 L 0.3420699,0.34592316 L 0.34203518,0.34576691 L 0.3419831,0.34561414 L 0.34193102,0.34546483 L 0.34187893,0.345319 L 0.34180949,0.3451749 L 0.34174004,0.34503602 L 0.3416706,0.34490234 L 0.3415838,0.34477039 L 0.34149699,0.34464539 L 0.34139282,0.34452387 L 0.34128866,0.34440581 L 0.34118449,0.3442947 L 0.34108033,0.34418706 L 0.3409588,0.34408637 L 0.34083727,0.34399088 L 0.34071575,0.34390061 L 0.34057686,0.34381727 L 0.34043797,0.34373915 L 0.34029908,0.34366797 L 0.34016019,0.34360373 L 0.34002131,0.34354644 L 0.33986506,0.34349436 L 0.33970881,0.34345096 L 0.33955256,0.34341624 L 0.33939631,0.34338672 L 0.33924006,0.34336589 L 0.33906645,0.34335374 L 0.3389102,0.34335026 C 0.33713938,0.34335026 0.33568106,0.3447947 0.33568106,0.34657073 C 0.33568106,0.34834155 0.33713938,0.34978599 0.3389102,0.34978599 C 0.34068102,0.34978599 0.34212199,0.34834155 0.34212199,0.34657073 z" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6585"
y2="0.3107914"
x2="0.291098"
y1="0.30329147"
x1="0.291098" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6591"
y2="0.3107914"
x2="0.291098"
y1="0.3107914"
x1="0.28609803" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6595"
y2="0.31412819"
x2="0.29734796"
y1="0.31578964"
x1="0.2956813" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6653"
d="M 0.34212199,0.31561954 L 0.34212199,0.31545461 L 0.34212199,0.31529142 L 0.34208726,0.31512996 L 0.3420699,0.31497197 L 0.34203518,0.31481572 L 0.3419831,0.31466295 L 0.34193102,0.31451364 L 0.34187893,0.31436607 L 0.34180949,0.31422371 L 0.34174004,0.31408483 L 0.3416706,0.31395115 L 0.3415838,0.3138192 L 0.34149699,0.3136942 L 0.34139282,0.31357094 L 0.34128866,0.31345462 L 0.34118449,0.31334351 L 0.34108033,0.31323587 L 0.3409588,0.31313518 L 0.34083727,0.31303969 L 0.34071575,0.31294942 L 0.34057686,0.31286608 L 0.34043797,0.31278796 L 0.34029908,0.31271678 L 0.34016019,0.31265254 L 0.34002131,0.31259352 L 0.33986506,0.31254317 L 0.33970881,0.31249977 L 0.33955256,0.31246331 L 0.33939631,0.31243553 L 0.33924006,0.3124147 L 0.33906645,0.31240254 L 0.3389102,0.31239907 C 0.33713938,0.31239907 0.33568106,0.31384351 0.33568106,0.31561954 C 0.33568106,0.31739036 0.33713938,0.3188348 0.3389102,0.3188348 C 0.34068102,0.3188348 0.34212199,0.31739036 0.34212199,0.31561954 z" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6663"
points="199.76,67.039 199.76,62.719 186.08,62.719 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6665"
points="186.08,63.441 157.04,63.441 157.04,62.719 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6667"
points="152.72,63.441 152.72,62.719 153.68,62.719 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6669"
y2="0.35370606"
x2="0.35109761"
y1="0.35495952"
x1="0.35109761" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6671"
y2="0.35495952"
x2="0.35109761"
y1="0.35495952"
x1="0.35859755" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6673"
y2="0.35370606"
x2="0.40901393"
y1="0.35495952"
x1="0.40901393" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6675"
y2="0.30620638"
x2="0.41193056"
y1="0.30620638"
x1="0.38526407" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6677"
y2="0.30620638"
x2="0.41193056"
y1="0.30620638"
x1="0.38526407" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6679"
d="M 0.41206946,0.33976174 C 0.41206946,0.34385894 0.41540277,0.34718878 0.41949996,0.34718878" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6681"
y2="0.3107914"
x2="0.40734726"
y1="0.32454479"
x1="0.40734726" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6683"
y2="0.32454479"
x2="0.39859733"
y1="0.3107914"
x1="0.39859733" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6685"
y2="0.3107914"
x2="0.37359747"
y1="0.32454479"
x1="0.37359747" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6687"
d="M 0.39432651,0.33295276 L 0.39430915,0.33242846 L 0.39427443,0.33190936 L 0.39420499,0.33139895 L 0.39411818,0.33089722 L 0.39399665,0.33040243 L 0.39385777,0.32991806 L 0.39370152,0.3294441 L 0.39351055,0.32898056 L 0.39331958,0.32852744 L 0.39309388,0.32808821 L 0.39283347,0.32765939 L 0.39257305,0.3272462 L 0.39229528,0.32684516 L 0.39198278,0.32645975 L 0.39167028,0.32608822 L 0.39132306,0.32573406 L 0.39097584,0.32539552 L 0.3905939,0.32507434 L 0.39021196,0.32477052 L 0.38981265,0.3244858 L 0.38939599,0.32422018 L 0.38897933,0.32397365 L 0.38852794,0.32374796 L 0.38807655,0.3235431 L 0.38762517,0.32336081 L 0.38713906,0.32319935 L 0.38665295,0.3230622 L 0.38616684,0.32294762 L 0.38566337,0.32285908 L 0.38514255,0.3227931 L 0.38463908,0.32275317 L 0.38410088,0.32274102 C 0.37845856,0.32274102 0.37389262,0.32731738 0.37389262,0.33295276 C 0.37389262,0.33858988 0.37845856,0.34316624 0.38410088,0.34316624 C 0.38974321,0.34316624 0.39432651,0.33858988 0.39432651,0.33295276 z" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6689"
y2="0.32454479"
x2="0.36484754"
y1="0.3107914"
x1="0.36484754" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6691"
points="152,80.719 152,88.398 152,80.719 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6693"
y2="0.30620638"
x2="0.35984755"
y1="0.32370973"
x1="0.35984755" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6695"
y2="0.33496141"
x2="0.35984755"
y1="0.33912456"
x1="0.35984755" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6697"
y2="0.33912456"
x2="0.36734751"
y1="0.33496141"
x1="0.36734751" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6699"
y2="0.34454292"
x2="0.36734751"
y1="0.34454292"
x1="0.35984755" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6701"
y2="0.33912456"
x2="0.35984755"
y1="0.33912456"
x1="0.36734751" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6703"
points="162.08,66.32 157.76,66.32 157.76,68.719 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6705"
y2="0.34870782"
x2="0.36734751"
y1="0.34454292"
x1="0.36734751" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6707"
y2="0.33496141"
x2="0.36734751"
y1="0.33496141"
x1="0.35984755" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6709"
points="153.68,80.719 152,80.719 157.76,80.719 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6711"
y2="0.32454479"
x2="0.37359747"
y1="0.32454479"
x1="0.36484754" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6713"
y2="0.33496141"
x2="0.40818059"
y1="0.33912456"
x1="0.40818059" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6715"
y2="0.33912456"
x2="0.40068063"
y1="0.33496141"
x1="0.40068063" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6717"
y2="0.34328946"
x2="0.38526407"
y1="0.34870782"
x1="0.38526407" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6719"
points="170.96,69.441 170.96,66.32 172.4,66.32 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6721"
y2="0.34454292"
x2="0.40818059"
y1="0.34870782"
x1="0.40818059" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6723"
points="181.28,68.719 181.28,66.32 185.6,66.32 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6725"
y2="0.34454292"
x2="0.40068063"
y1="0.34454292"
x1="0.40818059" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6727"
y2="0.33912456"
x2="0.40818059"
y1="0.33912456"
x1="0.40068063" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6729"
y2="0.32454479"
x2="0.40734726"
y1="0.32454479"
x1="0.39859733" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6731"
y2="0.33496141"
x2="0.40068063"
y1="0.33496141"
x1="0.40818059" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6733"
y2="0.30620638"
x2="0.3827641"
y1="0.30620638"
x1="0.35984755" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6735"
y2="0.30620638"
x2="0.3827641"
y1="0.30620638"
x1="0.35984755" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6749"
y2="0.3107914"
x2="0.36484754"
y1="0.3107914"
x1="0.37359747" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6763"
y2="0.30162308"
x2="0.36484754"
y1="0.30162308"
x1="0.37359747" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6777"
y2="0.32287642"
x2="0.3827641"
y1="0.30620638"
x1="0.3827641" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6779"
y2="0.30620638"
x2="0.38526407"
y1="0.32287642"
x1="0.38526407" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6781"
y2="0.3107914"
x2="0.39859733"
y1="0.3107914"
x1="0.40734726" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6795"
y2="0.30162308"
x2="0.39859733"
y1="0.30162308"
x1="0.40734726" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6797"
y2="0.33995962"
x2="0.41193056"
y1="0.30620638"
x1="0.41193056" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6799"
y2="0.34745958"
x2="0.43276376"
y1="0.34745958"
x1="0.41943052" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6801"
y2="0.30746156"
x2="0.43776372"
y1="0.321208"
x1="0.43776372" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6809"
d="M 0.41949996,0.30707445 L 0.41915274,0.30708487 L 0.41878816,0.30711091 L 0.41844094,0.30715605 L 0.41809372,0.30721855 L 0.4177465,0.30729667 L 0.41741664,0.30739216 L 0.41708678,0.30750327 L 0.41675693,0.30763001 L 0.41644443,0.30777237 L 0.41614929,0.30792862 L 0.41585415,0.30809875 L 0.41555902,0.30828278 L 0.41528124,0.30847896 L 0.41502083,0.30868903 L 0.41476041,0.30891125 L 0.41451736,0.30914562 L 0.41429166,0.30939041 L 0.41406597,0.30964562 L 0.41385764,0.30991298 L 0.41364931,0.31019075 L 0.4134757,0.31047721 L 0.41330209,0.31077235 L 0.41314584,0.31107616 L 0.41300695,0.31138866 L 0.41288542,0.31170984 L 0.4127639,0.31203796 L 0.41267709,0.31237303 L 0.41259029,0.31271331 L 0.4125382,0.31306053 L 0.41248612,0.31341295 L 0.4124514,0.31377233 L 0.4124514,0.31413517 C 0.4124514,0.31802751 0.4156111,0.32118721 0.41949996,0.32118721" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6831"
y2="0.321208"
x2="0.43776372"
y1="0.321208"
x1="0.41943052" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6833"
d="M 0.42210411,0.31413517 L 0.42210411,0.31399976 L 0.42208675,0.31386781 L 0.42206939,0.31373761 L 0.42205203,0.31360913 L 0.42201731,0.31348414 L 0.42198259,0.31336087 L 0.42194786,0.31323934 L 0.42189578,0.31312129 L 0.4218437,0.31300497 L 0.42179162,0.31289386 L 0.42172217,0.31278449 L 0.42165273,0.31267858 L 0.42158328,0.31257615 L 0.42151384,0.31247893 L 0.42142703,0.31238345 L 0.42134023,0.31229317 L 0.42125342,0.31220637 L 0.42116662,0.31212477 L 0.42106245,0.31204838 L 0.42095829,0.31197546 L 0.42085412,0.31190776 L 0.42074996,0.31184526 L 0.42062843,0.31178797 L 0.42052426,0.31173588 L 0.42040274,0.31168901 L 0.42028121,0.31164734 L 0.42015968,0.31161262 L 0.42003815,0.31158311 L 0.41989927,0.31156054 L 0.41977774,0.31154318 L 0.41963885,0.31153449 L 0.41949996,0.31153102 C 0.41807636,0.31153102 0.41689581,0.31269768 0.41689581,0.31413517 C 0.41689581,0.31556572 0.41807636,0.31673238 0.41949996,0.31673238 C 0.42094093,0.31673238 0.42210411,0.31556572 0.42210411,0.31413517 z" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6867"
points="192.08,90.078 202.64,90.078 192.08,90.078 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6869"
d="M 0.42210411,0.30002242 L 0.42210411,0.29988874 L 0.42208675,0.29975506 L 0.42206939,0.29962485 L 0.42205203,0.29949638 L 0.42201731,0.29937138 L 0.42198259,0.29924812 L 0.42194786,0.29912659 L 0.42189578,0.29900853 L 0.4218437,0.29889395 L 0.42179162,0.2987811 L 0.42172217,0.29867173 L 0.42165273,0.29856583 L 0.42158328,0.2984634 L 0.42151384,0.29836618 L 0.42142703,0.29827069 L 0.42134023,0.29818041 L 0.42125342,0.29809361 L 0.42116662,0.29801201 L 0.42106245,0.29793562 L 0.42095829,0.29786271 L 0.42085412,0.297795 L 0.42074996,0.2977325 L 0.42062843,0.29767521 L 0.42052426,0.29762313 L 0.42040274,0.29757625 L 0.42028121,0.29753458 L 0.42015968,0.29749986 L 0.42003815,0.29747035 L 0.41989927,0.29744778 L 0.41977774,0.29743042 L 0.41963885,0.29742174 L 0.41949996,0.29741827 C 0.41807636,0.29741827 0.41689581,0.29858492 0.41689581,0.30002242 C 0.41689581,0.30145296 0.41807636,0.30261962 0.41949996,0.30261962 C 0.42094093,0.30261962 0.42210411,0.30145296 0.42210411,0.30002242 z" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6887"
points="152.72,118.16 116.48,118.16 152.72,118.16 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6889"
points="79.281,117.44 115.52,117.44 79.281,117.44 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6891"
d="M 0.27752171,0.26653825 L 0.27752171,0.26638201 L 0.27750434,0.2662084 L 0.27748698,0.26605215 L 0.27746962,0.2658959 L 0.2774349,0.26573965 L 0.27738282,0.2655834 L 0.27733074,0.26544451 L 0.27727865,0.26528826 L 0.27720921,0.26514938 L 0.27713976,0.26501049 L 0.27707032,0.2648716 L 0.27698352,0.26475007 L 0.27689671,0.26462855 L 0.27679254,0.26450702 L 0.27668838,0.26438549 L 0.27658421,0.26426396 L 0.27648005,0.2641598 L 0.27635852,0.26405563 L 0.27623699,0.26396883 L 0.27611547,0.26388202 L 0.27597658,0.26379522 L 0.27583769,0.26370841 L 0.2756988,0.26363897 L 0.27555991,0.26358689 L 0.27542102,0.26351744 L 0.27526478,0.26346536 L 0.27510853,0.26343064 L 0.27495228,0.26339591 L 0.27479603,0.26336119 L 0.27463978,0.26334383 L 0.27448353,0.26332647 L 0.27430992,0.26332647 C 0.2725391,0.26332647 0.27109814,0.26476743 0.27109814,0.26653825 C 0.27109814,0.26832644 0.2725391,0.2697674 0.27430992,0.2697674 C 0.27608074,0.2697674 0.27752171,0.26832644 0.27752171,0.26653825 z" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6893"
d="M 0.23419386,0.28202427 L 0.23418865,0.28185066 L 0.2341765,0.28169441 L 0.23415566,0.2815208 L 0.23412789,0.28136455 L 0.23409143,0.2812083 L 0.23404803,0.28106941 L 0.23399768,0.28091316 L 0.23394039,0.28077428 L 0.23387615,0.28061803 L 0.23380497,0.28047914 L 0.23372685,0.28035761 L 0.23364351,0.28021872 L 0.23355324,0.2800972 L 0.23345775,0.27997567 L 0.23335532,0.27985414 L 0.23324942,0.27974998 L 0.23313657,0.27964581 L 0.23302025,0.27954164 L 0.23289873,0.27943748 L 0.23277199,0.27935067 L 0.23264178,0.27926387 L 0.23250637,0.27919442 L 0.23236748,0.27912498 L 0.23222512,0.27905554 L 0.23207929,0.27900345 L 0.23192998,0.27895137 L 0.23177721,0.27889929 L 0.23162096,0.27886456 L 0.23146297,0.2788472 L 0.23130152,0.27881248 L 0.23113832,0.27881248 L 0.23097166,0.27879512 C 0.22919563,0.27879512 0.22775119,0.28025345 0.22775119,0.28202427 C 0.22775119,0.28379509 0.22919563,0.28523605 0.23097166,0.28523605 C 0.23274942,0.28523605 0.23419386,0.28379509 0.23419386,0.28202427 z" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6895"
d="M 0.34212199,0.26535771 L 0.34212199,0.2651841 L 0.34212199,0.26502785 L 0.34208726,0.2648716 L 0.3420699,0.26471535 L 0.34203518,0.2645591 L 0.3419831,0.26440285 L 0.34193102,0.2642466 L 0.34187893,0.26410772 L 0.34180949,0.26396883 L 0.34174004,0.26382994 L 0.3416706,0.26369105 L 0.3415838,0.26355216 L 0.34149699,0.26343064 L 0.34139282,0.26330911 L 0.34128866,0.26318758 L 0.34118449,0.26308342 L 0.34108033,0.26297925 L 0.3409588,0.26287508 L 0.34083727,0.26277092 L 0.34071575,0.26268411 L 0.34057686,0.26259731 L 0.34043797,0.26252786 L 0.34029908,0.26245842 L 0.34016019,0.26238898 L 0.34002131,0.26233689 L 0.33986506,0.26228481 L 0.33970881,0.26223273 L 0.33955256,0.262198 L 0.33939631,0.26218064 L 0.33924006,0.26216328 L 0.33906645,0.26214592 L 0.3389102,0.26214592 C 0.33713938,0.26214592 0.33568106,0.26358689 0.33568106,0.26535771 C 0.33568106,0.26712853 0.33713938,0.26856949 0.3389102,0.26856949 C 0.34068102,0.26856949 0.34212199,0.26712853 0.34212199,0.26535771 z" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6897"
y2="0.28954154"
x2="0.28818136"
y1="0.25870842"
x1="0.28818136" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6911"
d="M 0.29878893,0.28082636 L 0.29878893,0.28067011 L 0.29877157,0.2804965 L 0.29875421,0.28034025 L 0.29871949,0.280184 L 0.29868476,0.28002775 L 0.29865004,0.2798715 L 0.29859796,0.27973262 L 0.29852852,0.27957637 L 0.29847643,0.27943748 L 0.29840699,0.27929859 L 0.29832018,0.2791597 L 0.29823338,0.27903817 L 0.29814657,0.27891665 L 0.29805977,0.27879512 L 0.2979556,0.27867359 L 0.29785144,0.27855207 L 0.29772991,0.2784479 L 0.29760838,0.27834374 L 0.29748686,0.27825693 L 0.29736533,0.27817013 L 0.2972438,0.27808332 L 0.29710491,0.27799652 L 0.29696603,0.27792707 L 0.29682714,0.27787499 L 0.29667089,0.27780554 L 0.296532,0.27775346 L 0.29637575,0.27771874 L 0.2962195,0.27768402 L 0.29606325,0.2776493 L 0.29590701,0.27763193 L 0.2957334,0.27761457 L 0.29557715,0.27761457 C 0.29378896,0.27761457 0.292348,0.27905554 0.292348,0.28082636 C 0.292348,0.28261454 0.29378896,0.2840555 0.29557715,0.2840555 C 0.29734797,0.2840555 0.29878893,0.28261454 0.29878893,0.28082636 z" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6915"
points="116.48,100.4 114.8,100.4 116.48,100.4 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6919"
y2="0.29079154"
x2="0.29484797"
y1="0.29245993"
x1="0.29318133" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon7253"
points="115.52,118.16 116.48,118.16 115.52,118.16 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon7255"
points="115.52,117.44 115.52,118.16 115.52,117.44 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7257"
y2="0.25745842"
x2="0.40901393"
y1="0.25745842"
x1="0.43276376" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path7259"
d="M 0.41949996,0.26473271 C 0.41540277,0.26473271 0.41206946,0.26806602 0.41206946,0.27216322" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7261"
y2="0.25745842"
x2="0.40901393"
y1="0.25745842"
x1="0.43276376" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7263"
y2="0.26787502"
x2="0.40818059"
y1="0.26329172"
x1="0.40818059" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7265"
y2="0.26329172"
x2="0.40068063"
y1="0.26787502"
x1="0.40068063" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7267"
y2="0.26912501"
x2="0.38526407"
y1="0.26370838"
x1="0.38526407" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7269"
y2="0.26370838"
x2="0.3827641"
y1="0.26912501"
x1="0.3827641" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7271"
y2="0.26787502"
x2="0.35984755"
y1="0.26329172"
x1="0.35984755" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7273"
y2="0.26329172"
x2="0.36734751"
y1="0.26787502"
x1="0.36734751" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path7275"
d="M 0.39432651,0.27896873 L 0.39430915,0.2784479 L 0.39427443,0.27792707 L 0.39420499,0.2774236 L 0.39411818,0.27692013 L 0.39399665,0.27641666 L 0.39385777,0.27593056 L 0.39370152,0.27546181 L 0.39351055,0.27499306 L 0.39331958,0.27454168 L 0.39309388,0.27410765 L 0.39283347,0.27367363 L 0.39257305,0.27325696 L 0.39229528,0.27285766 L 0.39198278,0.27247572 L 0.39167028,0.27211114 L 0.39132306,0.27174655 L 0.39097584,0.2714167 L 0.3905939,0.27108684 L 0.39021196,0.2707917 L 0.38981265,0.27049656 L 0.38939599,0.27023615 L 0.38897933,0.26999309 L 0.38852794,0.2697674 L 0.38807655,0.26955907 L 0.38762517,0.26938546 L 0.38713906,0.26921185 L 0.38665295,0.26907296 L 0.38616684,0.2689688 L 0.38566337,0.26888199 L 0.38514255,0.26881255 L 0.38463908,0.26877782 L 0.38410088,0.26876046 C 0.37845856,0.26876046 0.37389262,0.27334377 0.37389262,0.27896873 C 0.37389262,0.28461106 0.37845856,0.289177 0.38410088,0.289177 C 0.38974321,0.289177 0.39432651,0.28461106 0.39432651,0.27896873 z" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7279"
points="153.68,101.12 152,101.12 157.76,101.12 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7281"
y2="0.28745824"
x2="0.37359747"
y1="0.28745824"
x1="0.36484754" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7283"
y2="0.27329165"
x2="0.35984755"
y1="0.27329165"
x1="0.36734751" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7285"
y2="0.26787502"
x2="0.36734751"
y1="0.26787502"
x1="0.35984755" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7287"
y2="0.27745828"
x2="0.36734751"
y1="0.27745828"
x1="0.35984755" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7289"
y2="0.27745828"
x2="0.35984755"
y1="0.27329165"
x1="0.35984755" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7291"
y2="0.27329165"
x2="0.36734751"
y1="0.27745828"
x1="0.36734751" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7293"
y2="0.28745824"
x2="0.40734726"
y1="0.28745824"
x1="0.39859733" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7295"
y2="0.27329165"
x2="0.40818059"
y1="0.27329165"
x1="0.40068063" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7297"
y2="0.26787502"
x2="0.40068063"
y1="0.26787502"
x1="0.40818059" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7299"
points="185.6,107.36 181.28,107.36 181.28,109.76 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7301"
y2="0.27745828"
x2="0.40818059"
y1="0.27329165"
x1="0.40818059" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7303"
y2="0.25870842"
x2="0.35859755"
y1="0.25870842"
x1="0.40901393" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7305"
y2="0.26329172"
x2="0.35984755"
y1="0.26329172"
x1="0.36734751" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7307"
y2="0.25745842"
x2="0.35276425"
y1="0.25745842"
x1="0.35109761" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7309"
y2="0.25745842"
x2="0.35109761"
y1="0.25745842"
x1="0.35859755" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7311"
y2="0.25745842"
x2="0.35859755"
y1="0.25870842"
x1="0.35859755" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7313"
y2="0.25870842"
x2="0.35109761"
y1="0.25745842"
x1="0.35109761" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7315"
y2="0.25745842"
x2="0.35276425"
y1="0.25745842"
x1="0.35109761" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7317"
y2="0.25745842"
x2="0.35109761"
y1="0.25870842"
x1="0.35109761" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7319"
y2="0.25745842"
x2="0.35109761"
y1="0.25745842"
x1="0.35859755" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7321"
y2="0.26370838"
x2="0.38526407"
y1="0.26370838"
x1="0.3827641" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7323"
y2="0.25870842"
x2="0.40901393"
y1="0.25745842"
x1="0.40901393" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7325"
y2="0.26329172"
x2="0.40818059"
y1="0.26329172"
x1="0.40068063" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7327"
y2="0.26495838"
x2="0.43776372"
y1="0.27912495"
x1="0.43776372" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path7329"
d="M 0.41949996,0.26473271 L 0.41915274,0.26475007 L 0.41878816,0.26476743 L 0.41844094,0.26481952 L 0.41809372,0.2648716 L 0.4177465,0.2649584 L 0.41741664,0.26506257 L 0.41708678,0.26516674 L 0.41675693,0.26528826 L 0.41644443,0.26542715 L 0.41614929,0.2655834 L 0.41585415,0.26575701 L 0.41555902,0.26594798 L 0.41528124,0.26613895 L 0.41502083,0.26634728 L 0.41476041,0.26657298 L 0.41451736,0.26679867 L 0.41429166,0.26705909 L 0.41406597,0.26730214 L 0.41385764,0.26757992 L 0.41364931,0.26785769 L 0.4134757,0.26813547 L 0.41330209,0.2684306 L 0.41314584,0.2687431 L 0.41300695,0.2690556 L 0.41288542,0.2693681 L 0.4127639,0.26969796 L 0.41267709,0.27002782 L 0.41259029,0.27037504 L 0.4125382,0.27072226 L 0.41248612,0.27106948 L 0.4124514,0.27143406 L 0.4124514,0.27179864 C 0.4124514,0.2756875 0.4156111,0.2788472 0.41949996,0.2788472" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7331"
y2="0.27912495"
x2="0.43776372"
y1="0.293295"
x1="0.43776372" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path7333"
d="M 0.41949996,0.2788472 L 0.41915274,0.27886456 L 0.41878816,0.27888193 L 0.41844094,0.27893401 L 0.41809372,0.27898609 L 0.4177465,0.2790729 L 0.41741664,0.2791597 L 0.41708678,0.27928123 L 0.41675693,0.27940276 L 0.41644443,0.27954164 L 0.41614929,0.27969789 L 0.41585415,0.2798715 L 0.41555902,0.28006247 L 0.41528124,0.28025345 L 0.41502083,0.28046178 L 0.41476041,0.28068747 L 0.41451736,0.28091316 L 0.41429166,0.28117358 L 0.41406597,0.28141663 L 0.41385764,0.28169441 L 0.41364931,0.28197218 L 0.4134757,0.28224996 L 0.41330209,0.2825451 L 0.41314584,0.2828576 L 0.41300695,0.28317009 L 0.41288542,0.28348259 L 0.4127639,0.28381245 L 0.41267709,0.28414231 L 0.41259029,0.28448953 L 0.4125382,0.28483675 L 0.41248612,0.28518397 L 0.4124514,0.28554855 L 0.4124514,0.28591313 C 0.4124514,0.289802 0.4156111,0.2929617 0.41949996,0.2929617" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon7355"
points="192.08,98.238 202.64,98.238 192.08,98.238 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path7357"
d="M 0.42210411,0.28591313 L 0.42210411,0.28577424 L 0.42208675,0.28563536 L 0.42206939,0.28551383 L 0.42205203,0.2853923 L 0.42201731,0.28525341 L 0.42198259,0.28513189 L 0.42194786,0.28501036 L 0.42189578,0.28488883 L 0.4218437,0.28478467 L 0.42179162,0.28466314 L 0.42172217,0.28455897 L 0.42165273,0.28445481 L 0.42158328,0.28435064 L 0.42151384,0.28424647 L 0.42142703,0.28415967 L 0.42134023,0.28407286 L 0.42125342,0.28398606 L 0.42116662,0.28389926 L 0.42106245,0.28382981 L 0.42095829,0.28374301 L 0.42085412,0.28369092 L 0.42074996,0.28362148 L 0.42062843,0.2835694 L 0.42052426,0.28351731 L 0.42040274,0.28346523 L 0.42028121,0.28343051 L 0.42015968,0.28339579 L 0.42003815,0.28336106 L 0.41989927,0.2833437 L 0.41977774,0.28332634 L 0.41963885,0.28330898 L 0.41949996,0.28330898 C 0.41807636,0.28330898 0.41689581,0.28447217 0.41689581,0.28591313 C 0.41689581,0.28733673 0.41807636,0.28849992 0.41949996,0.28849992 C 0.42094093,0.28849992 0.42210411,0.28733673 0.42210411,0.28591313 z" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00850399;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon7397"
points="192.08,106.4 202.64,106.4 192.08,106.4 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path7399"
d="M 0.42210411,0.27179864 L 0.42210411,0.27165975 L 0.42208675,0.27153822 L 0.42206939,0.27139934 L 0.42205203,0.27127781 L 0.42201731,0.27113892 L 0.42198259,0.27101739 L 0.42194786,0.27089587 L 0.42189578,0.2707917 L 0.4218437,0.27067017 L 0.42179162,0.27054865 L 0.42172217,0.27044448 L 0.42165273,0.27034031 L 0.42158328,0.27023615 L 0.42151384,0.27014934 L 0.42142703,0.27004518 L 0.42134023,0.26995837 L 0.42125342,0.26987157 L 0.42116662,0.26978476 L 0.42106245,0.26971532 L 0.42095829,0.26964587 L 0.42085412,0.26957643 L 0.42074996,0.26950699 L 0.42062843,0.2694549 L 0.42052426,0.26940282 L 0.42040274,0.26935074 L 0.42028121,0.26931602 L 0.42015968,0.26928129 L 0.42003815,0.26924657 L 0.41989927,0.26922921 L 0.41977774,0.26921185 L 0.41963885,0.26919449 L 0.41949996,0.26919449 C 0.41807636,0.26919449 0.41689581,0.27035768 0.41689581,0.27179864 C 0.41689581,0.27322224 0.41807636,0.27440279 0.41949996,0.27440279 C 0.42094093,0.27440279 0.42210411,0.27322224 0.42210411,0.27179864 z" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6185"
points="200.72,97.039 201.68,97.039 200.96,96.078 200.96,97.52 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6187"
y2="0.2962099"
x2="0.43193042"
y1="0.29454154"
x1="0.43359709" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6189"
y2="0.29454154"
x2="0.43193042"
y1="0.2962099"
x1="0.43359709" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6593"
points="119.36,86.48 119.6,86.719 120.08,86.719 120.32,86.48 120.32,86.238 120.08,86 119.6,86 119.36,85.762 119.36,85.281 120.32,85.281 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6597"
y2="0.31578964"
x2="0.29734796"
y1="0.31412819"
x1="0.2956813" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6737"
points="160.64,88.641 160.64,90.078 161.6,90.078 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6739"
y2="0.30870983"
x2="0.36568084"
y1="0.30870983"
x1="0.36484754" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6741"
y2="0.30995634"
x2="0.36651421"
y1="0.30995634"
x1="0.36484754" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6743"
points="163.04,88.879 162.8,88.641 162.32,88.641 162.08,88.879 162.08,89.84 162.32,90.078 162.8,90.078 163.04,89.84 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6745"
points="163.52,89.84 163.76,90.078 163.76,88.641 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6747"
y2="0.30995634"
x2="0.37068084"
y1="0.30995634"
x1="0.36984751" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6751"
points="160.64,91.52 160.64,92.961 161.6,92.961 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6753"
y2="0.30371159"
x2="0.36568084"
y1="0.30371159"
x1="0.36484754" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6755"
y2="0.30495813"
x2="0.36651421"
y1="0.30495813"
x1="0.36484754" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6757"
points="163.04,91.762 162.8,91.52 162.32,91.52 162.08,91.762 162.08,92.719 162.32,92.961 162.8,92.961 163.04,92.719 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6759"
points="163.52,92.719 163.76,92.961 163.76,91.52 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6761"
y2="0.30495813"
x2="0.37068084"
y1="0.30495813"
x1="0.36984751" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6765"
points="180.08,88.641 180.08,90.078 181.04,90.078 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6767"
y2="0.30870983"
x2="0.39943063"
y1="0.30870983"
x1="0.39859733" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6769"
y2="0.30995634"
x2="0.40026397"
y1="0.30995634"
x1="0.39859733" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6771"
points="182.48,88.879 182.24,88.641 181.76,88.641 181.52,88.879 181.52,89.84 181.76,90.078 182.24,90.078 182.48,89.84 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6773"
points="182.72,89.84 182.96,90.078 182.96,88.641 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6775"
y2="0.30995634"
x2="0.40401393"
y1="0.30995634"
x1="0.40318063" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6783"
points="179.84,91.52 179.84,92.961 180.8,92.961 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6785"
y2="0.30371159"
x2="0.399014"
y1="0.30371159"
x1="0.39818063" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6787"
y2="0.30495813"
x2="0.3998473"
y1="0.30495813"
x1="0.39818063" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6789"
points="182.24,91.762 182,91.52 181.52,91.52 181.28,91.762 181.28,92.719 181.52,92.961 182,92.961 182.24,92.719 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6791"
points="182.72,92.719 182.96,92.961 182.96,91.52 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6793"
y2="0.30495813"
x2="0.40401393"
y1="0.30495813"
x1="0.40318063" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6803"
points="200.72,88.879 201.68,88.879 200.96,87.922 200.96,89.359 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6805"
y2="0.31037822"
x2="0.43193042"
y1="0.30870983"
x1="0.43359709" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6807"
y2="0.30870983"
x2="0.43193042"
y1="0.31037822"
x1="0.43359709" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6811"
points="202.16,85.762 201.92,85.52 201.44,85.52 201.2,85.762 201.2,86 201.44,86.238 201.92,86.238 202.16,86.48 202.16,86.961 201.2,86.961 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6813"
y2="0.3145414"
x2="0.43276376"
y1="0.31287301"
x1="0.43443042" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6815"
y2="0.31287301"
x2="0.43276376"
y1="0.3145414"
x1="0.43443042" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6817"
y2="0.3124598"
x2="0.43026379"
y1="0.3124598"
x1="0.43193042" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6819"
points="197.84,85.52 197.84,86.719 197.6,86.961 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6821"
points="196.64,86.961 196.88,86.961 197.12,86.719 197.12,86.238 196.88,86 196.64,86 196.4,86.238 196.4,86.719 196.64,86.961 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6823"
y2="0.31287301"
x2="0.42651382"
y1="0.31329313"
x1="0.42693046" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6825"
y2="0.3145414"
x2="0.42568046"
y1="0.31287301"
x1="0.42568046" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6827"
points="195.68,86.238 195.44,86 195.2,86.238 195.2,86.48 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6829"
points="195.2,86.238 194.96,86 194.72,86.238 194.72,86.961 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6835"
points="201.92,84.32 201.92,82.879 200.96,82.879 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6837"
y2="0.31870458"
x2="0.43568042"
y1="0.31870458"
x1="0.43651372" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6839"
y2="0.31745803"
x2="0.43484709"
y1="0.31745803"
x1="0.43651372" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6841"
points="199.52,84.078 199.76,84.32 200.24,84.32 200.48,84.078 200.48,83.121 200.24,82.879 199.76,82.879 199.52,83.121 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6843"
points="199.04,83.121 198.8,82.879 198.8,84.32 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6845"
y2="0.31745803"
x2="0.43068042"
y1="0.31745803"
x1="0.43151376" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6847"
points="202.16,93.922 201.92,93.68 201.44,93.68 201.2,93.922 201.2,94.16 201.44,94.398 201.92,94.398 202.16,94.641 202.16,95.121 201.2,95.121 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6849"
y2="0.30037481"
x2="0.43276376"
y1="0.29870641"
x1="0.43443042" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6851"
y2="0.29870641"
x2="0.43276376"
y1="0.30037481"
x1="0.43443042" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6853"
y2="0.29829323"
x2="0.43026379"
y1="0.29829323"
x1="0.43193042" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6855"
points="197.84,93.68 197.84,94.879 197.6,95.121 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6857"
points="196.64,95.121 196.88,95.121 197.12,94.879 197.12,94.398 196.88,94.16 196.64,94.16 196.4,94.398 196.4,94.879 196.64,95.121 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6859"
y2="0.29870641"
x2="0.42651382"
y1="0.29912657"
x1="0.42693046" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6861"
y2="0.30037481"
x2="0.42568046"
y1="0.29870641"
x1="0.42568046" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6863"
points="195.68,94.398 195.44,94.16 195.2,94.398 195.2,94.641 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6865"
points="195.2,94.398 194.96,94.16 194.72,94.398 194.72,95.121 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6871"
points="201.92,92.48 201.92,91.039 200.96,91.039 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6873"
y2="0.30453798"
x2="0.43568042"
y1="0.30453798"
x1="0.43651372" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6875"
y2="0.30329147"
x2="0.43484709"
y1="0.30329147"
x1="0.43651372" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6877"
points="199.52,92.238 199.76,92.48 200.24,92.48 200.48,92.238 200.48,91.281 200.24,91.039 199.76,91.039 199.52,91.281 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6879"
points="199.04,91.281 198.8,91.039 198.8,92.48 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6881"
y2="0.30329147"
x2="0.43068042"
y1="0.30329147"
x1="0.43151376" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6883"
y2="0.27954161"
x2="0.34818095"
y1="0.27870828"
x1="0.34818095" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6885"
y2="0.28162494"
x2="0.34818095"
y1="0.28079161"
x1="0.34818095" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6899"
y2="0.27620831"
x2="0.31776452"
y1="0.27620831"
x1="0.31443119" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6901"
y2="0.28037494"
x2="0.31651452"
y1="0.28287494"
x1="0.31859782" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6903"
y2="0.27704164"
x2="0.31693116"
y1="0.27704164"
x1="0.31568119" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6905"
y2="0.27912495"
x2="0.31693116"
y1="0.27912495"
x1="0.31651452" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6907"
y2="0.28079161"
x2="0.31318119"
y1="0.27995828"
x1="0.31318119" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6909"
y2="0.27912495"
x2="0.30734789"
y1="0.27995828"
x1="0.30734789" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6913"
y2="0.28287494"
x2="0.31443119"
y1="0.27620831"
x1="0.31443119" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6917"
points="117.92,99.922 118.16,100.16 118.64,100.16 118.88,99.922 118.88,99.68 118.64,99.441 118.16,99.441 117.92,99.199 117.92,98.719 118.88,98.719 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6921"
y2="0.29245993"
x2="0.29484797"
y1="0.29079154"
x1="0.29318133" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6923"
points="129.68,104 128.96,104 128.48,104.24 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6925"
y2="0.28162494"
x2="0.31318119"
y1="0.28079161"
x1="0.31318119" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6927"
y2="0.28329158"
x2="0.31109786"
y1="0.28287494"
x1="0.31193122" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6929"
y2="0.28287494"
x2="0.31193122"
y1="0.28245825"
x1="0.31234786" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6931"
y2="0.28245825"
x2="0.31234786"
y1="0.28162494"
x1="0.31318119" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6933"
y2="0.28037494"
x2="0.31568119"
y1="0.28037494"
x1="0.31651452" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6935"
y2="0.28287494"
x2="0.31443119"
y1="0.28287494"
x1="0.31568119" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6937"
y2="0.28287494"
x2="0.31568119"
y1="0.28037494"
x1="0.31568119" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6939"
points="128,104.48 127.76,104.96 127.52,105.44 127.52,105.92 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6941"
y2="0.28245825"
x2="0.30818123"
y1="0.28287494"
x1="0.30901456" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6943"
y2="0.27995828"
x2="0.31318119"
y1="0.27912495"
x1="0.31318119" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6945"
y2="0.27912495"
x2="0.31318119"
y1="0.27829164"
x1="0.31276453" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6947"
y2="0.27912495"
x2="0.31651452"
y1="0.27912495"
x1="0.31568119" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6949"
y2="0.27704164"
x2="0.31568119"
y1="0.27912495"
x1="0.31568119" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6951"
y2="0.27829164"
x2="0.30818123"
y1="0.27912495"
x1="0.30734789" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6953"
y2="0.27829164"
x2="0.30818123"
y1="0.27620831"
x1="0.31026453" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6955"
y2="0.27829164"
x2="0.31276453"
y1="0.27620831"
x1="0.31026453" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6957"
y2="0.27912495"
x2="0.34693098"
y1="0.28037494"
x1="0.34693098" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6959"
y2="0.28287494"
x2="0.33609772"
y1="0.27995828"
x1="0.33443105" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6961"
y2="0.28412491"
x2="0.34359765"
y1="0.27745828"
x1="0.34359765" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6963"
y2="0.28287494"
x2="0.33776435"
y1="0.27954161"
x1="0.33568105" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6965"
y2="0.28162494"
x2="0.33693105"
y1="0.27954161"
x1="0.33568105" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6967"
y2="0.27995828"
x2="0.33901435"
y1="0.28037494"
x1="0.33818102" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6969"
y2="0.27870828"
x2="0.34193102"
y1="0.28162494"
x1="0.34234765" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6971"
y2="0.27954161"
x2="0.34484765"
y1="0.28162494"
x1="0.34484765" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6973"
y2="0.28454158"
x2="0.32609779"
y1="0.27787495"
x1="0.32609779" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6975"
y2="0.27995828"
x2="0.32484779"
y1="0.27912495"
x1="0.32484779" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6977"
y2="0.28037494"
x2="0.32943109"
y1="0.27954161"
x1="0.32901442" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6979"
y2="0.27954161"
x2="0.32734776"
y1="0.28204161"
x1="0.32734776" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6981"
y2="0.28079161"
x2="0.33068109"
y1="0.27954161"
x1="0.33068109" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6983"
y2="0.27995828"
x2="0.33318105"
y1="0.27995828"
x1="0.33443105" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6985"
y2="0.28287494"
x2="0.33193105"
y1="0.27620831"
x1="0.33193105" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6987"
y2="0.27995828"
x2="0.31818116"
y1="0.28162494"
x1="0.31943116" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6989"
y2="0.27995828"
x2="0.32068115"
y1="0.28079161"
x1="0.32068115" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6991"
y2="0.28287494"
x2="0.33318105"
y1="0.28287494"
x1="0.33193105" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6993"
y2="0.28079161"
x2="0.32193112"
y1="0.28079161"
x1="0.32484779" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6995"
y2="0.28287494"
x2="0.32359779"
y1="0.28245825"
x1="0.32484779" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6997"
y2="0.28204161"
x2="0.32401446"
y1="0.28204161"
x1="0.32318112" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6999"
y2="0.28204161"
x2="0.32109782"
y1="0.28245825"
x1="0.32193112" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7001"
points="135.92,105.44 136.16,105.2 136.4,104.96 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7003"
y2="0.28245825"
x2="0.32193112"
y1="0.28287494"
x1="0.32276446" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7005"
y2="0.28287494"
x2="0.32276446"
y1="0.28287494"
x1="0.32359779" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7007"
y2="0.28204161"
x2="0.32318112"
y1="0.28162494"
x1="0.32276446" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7009"
y2="0.28287494"
x2="0.32734776"
y1="0.28454158"
x1="0.32734776" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7011"
y2="0.28454158"
x2="0.32609779"
y1="0.28454158"
x1="0.32734776" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7013"
y2="0.28287494"
x2="0.32901442"
y1="0.28245825"
x1="0.32943109" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7015"
y2="0.28079161"
x2="0.32484779"
y1="0.27995828"
x1="0.32484779" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7017"
points="137.12,104.72 137.6,104.96 137.6,104.48 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7019"
points="140.24,105.68 140,105.2 140,104.96 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7021"
y2="0.28287494"
x2="0.32734776"
y1="0.28287494"
x1="0.32901442" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7023"
y2="0.28204161"
x2="0.32859775"
y1="0.28204161"
x1="0.32776442" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7025"
y2="0.28204161"
x2="0.32734776"
y1="0.28204161"
x1="0.32776442" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7027"
y2="0.28162494"
x2="0.32901442"
y1="0.28204161"
x1="0.32859775" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7029"
y2="0.28162494"
x2="0.33068109"
y1="0.28079161"
x1="0.33068109" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7031"
y2="0.28245825"
x2="0.32943109"
y1="0.28204161"
x1="0.33026442" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7033"
y2="0.28204161"
x2="0.33026442"
y1="0.28162494"
x1="0.33068109" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7035"
y2="0.28287494"
x2="0.31859782"
y1="0.28287494"
x1="0.32026449" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7037"
y2="0.28079161"
x2="0.32068115"
y1="0.28162494"
x1="0.32068115" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7039"
y2="0.28162494"
x2="0.31943116"
y1="0.28287494"
x1="0.32026449" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7041"
y2="0.28162494"
x2="0.32068115"
y1="0.28204161"
x1="0.32109782" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7043"
y2="0.28204161"
x2="0.34776431"
y1="0.28162494"
x1="0.34818095" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7045"
y2="0.28037494"
x2="0.34693098"
y1="0.28120828"
x1="0.34693098" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7047"
y2="0.28120828"
x2="0.34693098"
y1="0.28162494"
x1="0.34651431" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7049"
y2="0.28245825"
x2="0.34651431"
y1="0.28245825"
x1="0.34734765" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7051"
y2="0.28245825"
x2="0.34734765"
y1="0.28204161"
x1="0.34776431" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7053"
y2="0.28162494"
x2="0.34651431"
y1="0.28162494"
x1="0.34609765" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7055"
y2="0.28245825"
x2="0.34526432"
y1="0.28412491"
x1="0.34484765" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7057"
y2="0.28412491"
x2="0.34484765"
y1="0.28412491"
x1="0.34359765" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7059"
y2="0.28037494"
x2="0.34026435"
y1="0.28079161"
x1="0.33984771" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7061"
y2="0.28287494"
x2="0.33984771"
y1="0.28245825"
x1="0.34026435" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7063"
y2="0.28162494"
x2="0.34026435"
y1="0.28162494"
x1="0.33984771" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7065"
points="144.08,104.24 145.04,104.24 144.56,104.96 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7067"
points="145.28,105.68 145.28,105.2 145.28,105.2 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7069"
y2="0.28079161"
x2="0.33984771"
y1="0.28079161"
x1="0.33943102" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7071"
y2="0.28079161"
x2="0.33943102"
y1="0.28120828"
x1="0.33943102" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7073"
y2="0.28245825"
x2="0.33859771"
y1="0.28245825"
x1="0.33901435" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7075"
y2="0.28245825"
x2="0.33901435"
y1="0.28287494"
x1="0.33984771" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7077"
points="145.52,104.48 145.28,104.72 145.28,105.2 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7079"
y2="0.28120828"
x2="0.33943102"
y1="0.28162494"
x1="0.33984771" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7081"
y2="0.28287494"
x2="0.34193102"
y1="0.28245825"
x1="0.34276435" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7083"
y2="0.28162494"
x2="0.34276435"
y1="0.28162494"
x1="0.34234765" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7085"
y2="0.28037494"
x2="0.34068102"
y1="0.28120828"
x1="0.34068102" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7087"
y2="0.28037494"
x2="0.34068102"
y1="0.28037494"
x1="0.34026435" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7089"
y2="0.28245825"
x2="0.34109768"
y1="0.28287494"
x1="0.34193102" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7091"
points="146.48,104.48 146.72,104.72 146.96,104.48 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7093"
y2="0.28120828"
x2="0.34068102"
y1="0.28162494"
x1="0.34026435" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7095"
y2="0.28162494"
x2="0.34234765"
y1="0.28162494"
x1="0.34234765" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7097"
y2="0.28162494"
x2="0.34484765"
y1="0.28162494"
x1="0.34526432" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7099"
y2="0.28245825"
x2="0.34276435"
y1="0.28162494"
x1="0.34276435" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7101"
y2="0.28287494"
x2="0.33318105"
y1="0.27995828"
x1="0.33318105" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7103"
y2="0.28245825"
x2="0.34526432"
y1="0.28245825"
x1="0.34651431" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7105"
y2="0.28162494"
x2="0.34609765"
y1="0.28162494"
x1="0.34526432" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7107"
y2="0.27620831"
x2="0.33193105"
y1="0.27620831"
x1="0.33526438" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7109"
y2="0.27829164"
x2="0.32401446"
y1="0.27787495"
x1="0.32359779" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7111"
y2="0.27912495"
x2="0.32234782"
y1="0.27954161"
x1="0.32193112" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7113"
y2="0.27912495"
x2="0.32359779"
y1="0.27995828"
x1="0.32359779" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7115"
points="135.92,106.16 135.92,105.92 136.88,105.92 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7117"
points="135.44,106.88 135.92,107.12 136.16,107.12 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7119"
y2="0.27870828"
x2="0.32276446"
y1="0.27912495"
x1="0.32234782" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7121"
y2="0.27912495"
x2="0.32359779"
y1="0.27870828"
x1="0.32318112" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7123"
y2="0.27870828"
x2="0.32318112"
y1="0.27870828"
x1="0.32276446" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7125"
y2="0.27787495"
x2="0.32359779"
y1="0.27787495"
x1="0.32234782" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7127"
y2="0.27787495"
x2="0.32943109"
y1="0.27787495"
x1="0.32859775" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7129"
y2="0.27912495"
x2="0.32818112"
y1="0.27954161"
x1="0.32734776" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7131"
y2="0.27954161"
x2="0.32901442"
y1="0.27912495"
x1="0.32901442" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7133"
y2="0.27787495"
x2="0.32734776"
y1="0.27787495"
x1="0.32609779" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7135"
y2="0.27912495"
x2="0.32484779"
y1="0.27870828"
x1="0.32443112" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7137"
y2="0.27870828"
x2="0.32443112"
y1="0.27829164"
x1="0.32401446" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7139"
y2="0.27787495"
x2="0.32818112"
y1="0.27870828"
x1="0.32734776" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7141"
y2="0.27870828"
x2="0.32734776"
y1="0.27787495"
x1="0.32734776" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7143"
y2="0.27912495"
x2="0.32901442"
y1="0.27870828"
x1="0.32859775" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7145"
y2="0.27870828"
x2="0.32859775"
y1="0.27912495"
x1="0.32818112" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7147"
y2="0.27787495"
x2="0.32859775"
y1="0.27787495"
x1="0.32818112" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7149"
y2="0.27954161"
x2="0.33068109"
y1="0.27870828"
x1="0.33068109" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7151"
points="140.24,107.12 140.48,106.88 140.96,106.64 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7153"
y2="0.27704164"
x2="0.31901449"
y1="0.27662498"
x1="0.31859782" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7155"
y2="0.27662498"
x2="0.31859782"
y1="0.27620831"
x1="0.31776452" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7157"
y2="0.27870828"
x2="0.31901449"
y1="0.27954161"
x1="0.31859782" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7159"
y2="0.27995828"
x2="0.31818116"
y1="0.27954161"
x1="0.31859782" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7161"
y2="0.27829164"
x2="0.31776452"
y1="0.27870828"
x1="0.31734782" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7163"
y2="0.27870828"
x2="0.31734782"
y1="0.27912495"
x1="0.31693116" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7165"
y2="0.27745828"
x2="0.31776452"
y1="0.27704164"
x1="0.31693116" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7167"
y2="0.27829164"
x2="0.31776452"
y1="0.27787495"
x1="0.31776452" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7169"
y2="0.27787495"
x2="0.31776452"
y1="0.27745828"
x1="0.31776452" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7171"
y2="0.27912495"
x2="0.32068115"
y1="0.27995828"
x1="0.32068115" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7173"
y2="0.27829164"
x2="0.31943116"
y1="0.27870828"
x1="0.31901449" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7175"
y2="0.27829164"
x2="0.31943116"
y1="0.27745828"
x1="0.31901449" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7177"
y2="0.27745828"
x2="0.31901449"
y1="0.27704164"
x1="0.31901449" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7179"
y2="0.27829164"
x2="0.32109782"
y1="0.27912495"
x1="0.32068115" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7181"
y2="0.27704164"
x2="0.33693105"
y1="0.27662498"
x1="0.33651438" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7183"
y2="0.27662498"
x2="0.33651438"
y1="0.27620831"
x1="0.33609772" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7185"
y2="0.27620831"
x2="0.33609772"
y1="0.27620831"
x1="0.33526438" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7187"
y2="0.27704164"
x2="0.33484772"
y1="0.27704164"
x1="0.33318105" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7189"
y2="0.27870828"
x2="0.34651431"
y1="0.27912495"
x1="0.34693098" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7191"
y2="0.27787495"
x2="0.34776431"
y1="0.27870828"
x1="0.34818095" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7193"
y2="0.27745828"
x2="0.34693098"
y1="0.27745828"
x1="0.34609765" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7195"
y2="0.27745828"
x2="0.34693098"
y1="0.27787495"
x1="0.34776431" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7197"
y2="0.27745828"
x2="0.34609765"
y1="0.27787495"
x1="0.34568101" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7199"
y2="0.27870828"
x2="0.34609765"
y1="0.27870828"
x1="0.34651431" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7201"
y2="0.27870828"
x2="0.34568101"
y1="0.27954161"
x1="0.34484765" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7203"
y2="0.27870828"
x2="0.33526438"
y1="0.27912495"
x1="0.33484772" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7205"
y2="0.27912495"
x2="0.33484772"
y1="0.27912495"
x1="0.33401442" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7207"
y2="0.27870828"
x2="0.34026435"
y1="0.27870828"
x1="0.33984771" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7209"
y2="0.27787495"
x2="0.33943102"
y1="0.27787495"
x1="0.34068102" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7211"
y2="0.27954161"
x2="0.34068102"
y1="0.27995828"
x1="0.33943102" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7213"
points="144.32,106.64 144.08,106.16 143.84,106.16 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7215"
y2="0.27995828"
x2="0.33943102"
y1="0.27995828"
x1="0.33901435" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7217"
points="143.6,107.6 143.6,107.36 143.6,106.88 143.6,106.64 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7219"
y2="0.27870828"
x2="0.33651438"
y1="0.27787495"
x1="0.33693105" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7221"
y2="0.27870828"
x2="0.33984771"
y1="0.27870828"
x1="0.33901435" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7223"
y2="0.27870828"
x2="0.33901435"
y1="0.27912495"
x1="0.33859771" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7225"
points="146,107.12 145.52,107.12 145.52,106.4 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7227"
points="146.72,106.4 146.72,106.16 146.72,106.16 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7229"
y2="0.27829164"
x2="0.34193102"
y1="0.27787495"
x1="0.34151435" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7231"
y2="0.27787495"
x2="0.34068102"
y1="0.27787495"
x1="0.34151435" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7233"
y2="0.27912495"
x2="0.34068102"
y1="0.27870828"
x1="0.34026435" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7235"
y2="0.27870828"
x2="0.34193102"
y1="0.27829164"
x1="0.34193102" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7237"
y2="0.27745828"
x2="0.34484765"
y1="0.27745828"
x1="0.34359765" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7239"
y2="0.27745828"
x2="0.34484765"
y1="0.27829164"
x1="0.34484765" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7241"
y2="0.27912495"
x2="0.33401442"
y1="0.27912495"
x1="0.33318105" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7243"
y2="0.27787495"
x2="0.34568101"
y1="0.27829164"
x1="0.34484765" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7245"
y2="0.27870828"
x2="0.34609765"
y1="0.27870828"
x1="0.34568101" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7247"
y2="0.27704164"
x2="0.33318105"
y1="0.27912495"
x1="0.33318105" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7249"
y2="0.27704164"
x2="0.33526438"
y1="0.27704164"
x1="0.33484772" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7251"
y2="0.27787495"
x2="0.33693105"
y1="0.27704164"
x1="0.33693105" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7277"
y2="0.28079161"
x2="0.34818095"
y1="0.27954161"
x1="0.34818095" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7335"
points="202.16,102.08 201.92,101.84 201.44,101.84 201.2,102.08 201.2,102.32 201.44,102.56 201.92,102.56 202.16,102.8 202.16,103.28 201.2,103.28 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7337"
y2="0.28620824"
x2="0.43276376"
y1="0.28454158"
x1="0.43443042" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7339"
y2="0.28454158"
x2="0.43276376"
y1="0.28620824"
x1="0.43443042" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7341"
y2="0.28412491"
x2="0.43026379"
y1="0.28412491"
x1="0.43193042" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7343"
points="197.84,101.84 197.84,103.04 197.6,103.28 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon7345"
points="196.64,103.28 196.88,103.28 197.12,103.04 197.12,102.56 196.88,102.32 196.64,102.32 196.4,102.56 196.4,103.04 196.64,103.28 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7347"
y2="0.28454158"
x2="0.42651382"
y1="0.28495824"
x1="0.42693046" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7349"
y2="0.28620824"
x2="0.42568046"
y1="0.28454158"
x1="0.42568046" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7351"
points="195.68,102.56 195.44,102.32 195.2,102.56 195.2,102.8 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7353"
points="195.2,102.56 194.96,102.32 194.72,102.56 194.72,103.28 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7359"
points="200.72,105.2 201.68,105.2 200.96,104.24 200.96,105.68 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7361"
y2="0.28204161"
x2="0.43193042"
y1="0.28037494"
x1="0.43359709" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7363"
y2="0.28037494"
x2="0.43193042"
y1="0.28204161"
x1="0.43359709" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7365"
points="201.92,100.64 201.92,99.199 200.96,99.199 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7367"
y2="0.29037142"
x2="0.43568042"
y1="0.29037142"
x1="0.43651372" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7369"
y2="0.28912488"
x2="0.43484709"
y1="0.28912488"
x1="0.43651372" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7371"
points="199.52,100.4 199.76,100.64 200.24,100.64 200.48,100.4 200.48,99.441 200.24,99.199 199.76,99.199 199.52,99.441 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7373"
points="199.04,99.441 198.8,99.199 198.8,100.64 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7375"
y2="0.28912488"
x2="0.43068042"
y1="0.28912488"
x1="0.43151376" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7377"
points="202.16,110.24 201.92,110 201.44,110 201.2,110.24 201.2,110.48 201.44,110.72 201.92,110.72 202.16,110.96 202.16,111.44 201.2,111.44 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7379"
y2="0.27204165"
x2="0.43276376"
y1="0.27037501"
x1="0.43443042" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7381"
y2="0.27037501"
x2="0.43276376"
y1="0.27204165"
x1="0.43443042" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7383"
y2="0.26995835"
x2="0.43026379"
y1="0.26995835"
x1="0.43193042" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7385"
points="197.84,110 197.84,111.2 197.6,111.44 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon7387"
points="196.64,111.44 196.88,111.44 197.12,111.2 197.12,110.72 196.88,110.48 196.64,110.48 196.4,110.72 196.4,111.2 196.64,111.44 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7389"
y2="0.27037501"
x2="0.42651382"
y1="0.27079168"
x1="0.42693046" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7391"
y2="0.27204165"
x2="0.42568046"
y1="0.27037501"
x1="0.42568046" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7393"
points="195.68,110.72 195.44,110.48 195.2,110.72 195.2,110.96 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7395"
points="195.2,110.72 194.96,110.48 194.72,110.72 194.72,111.44 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7401"
points="200.72,113.36 201.68,113.36 200.96,112.4 200.96,113.84 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7403"
y2="0.26787502"
x2="0.43193042"
y1="0.26620838"
x1="0.43359709" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7405"
y2="0.26620838"
x2="0.43193042"
y1="0.26787502"
x1="0.43359709" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7407"
points="201.92,108.8 201.92,107.36 200.96,107.36 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7409"
y2="0.27620831"
x2="0.43568042"
y1="0.27620831"
x1="0.43651372" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7411"
y2="0.27495831"
x2="0.43484709"
y1="0.27495831"
x1="0.43651372" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7413"
points="199.52,108.56 199.76,108.8 200.24,108.8 200.48,108.56 200.48,107.6 200.24,107.36 199.76,107.36 199.52,107.6 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.08503991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7415"
points="199.04,107.6 198.8,107.36 198.8,108.8 "
transform="matrix(1.7361e-3,0,0,-1.7361e-3,8.5960434e-2,0.463846)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014764;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7417"
y2="0.27495831"
x2="0.43068042"
y1="0.27495831"
x1="0.43151376" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7419"
y2="0.26495838"
x2="0.43276376"
y1="0.26495838"
x1="0.41943052" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7421"
y2="0.26495838"
x2="0.41943052"
y1="0.26495838"
x1="0.43776372" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7423"
y2="0.25745842"
x2="0.43276376"
y1="0.26495838"
x1="0.43276376" />
</svg>
|