summaryrefslogtreecommitdiff
path: root/blog/led-characterization/images/raw_plot_cheap_rgb.svg
blob: 895569f01a6223c3d96ec55ae380ae021a779007 (plain)
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
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
  "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Created with matplotlib (http://matplotlib.org/) -->
<svg height="345pt" version="1.1" viewBox="0 0 460 345" width="460pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <defs>
  <style type="text/css">
*{stroke-linecap:butt;stroke-linejoin:round;}
  </style>
 </defs>
 <g id="figure_1">
  <g id="patch_1">
   <path d="M 0 345.6 
L 460.8 345.6 
L 460.8 0 
L 0 0 
z
" style="fill:none;opacity:0;"/>
  </g>
  <g id="axes_1">
   <g id="patch_2">
    <path d="M 57.6 307.584 
L 414.72 307.584 
L 414.72 41.472 
L 57.6 41.472 
z
" style="fill:#ffffff;"/>
   </g>
   <g id="LineCollection_1">
    <path clip-path="url(#p8b0ee4a59c)" d="M 73.832727 232.80261 
L 73.832727 226.216987 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 76.151688 232.094349 
L 76.151688 225.099848 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 78.470649 234.49741 
L 78.470649 229.249506 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 80.78961 229.486136 
L 80.78961 222.489288 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 83.108571 237.48128 
L 83.108571 228.886724 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 85.427532 229.460817 
L 85.427532 215.283213 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 87.746494 235.037536 
L 87.746494 228.405148 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 90.065455 235.100291 
L 90.065455 228.131769 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 92.384416 236.254696 
L 92.384416 229.013388 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 94.703377 235.840085 
L 94.703377 229.966258 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 97.022338 237.644544 
L 97.022338 231.180731 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 99.341299 237.068409 
L 99.341299 231.148398 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 101.66026 237.223511 
L 101.66026 229.940181 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 103.979221 239.192895 
L 103.979221 230.030223 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 106.298182 239.454681 
L 106.298182 234.097912 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 108.617143 238.653926 
L 108.617143 231.903139 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 110.936104 238.991499 
L 110.936104 234.42068 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 113.255065 241.047916 
L 113.255065 235.055558 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 115.574026 241.209019 
L 115.574026 235.807155 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 117.892987 241.64288 
L 117.892987 234.88184 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 120.211948 240.6121 
L 120.211948 235.959425 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 122.530909 241.62197 
L 122.530909 236.096282 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 124.84987 243.44498 
L 124.84987 237.198592 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 127.168831 242.026956 
L 127.168831 236.065736 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 129.487792 245.685838 
L 129.487792 237.415004 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 131.806753 243.415791 
L 131.806753 237.649027 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 134.125714 242.731552 
L 134.125714 238.567293 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 136.444675 243.45327 
L 136.444675 237.471134 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 138.763636 244.402711 
L 138.763636 238.276885 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 141.082597 244.962479 
L 141.082597 239.612725 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 143.401558 245.414618 
L 143.401558 239.441417 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 145.720519 248.394506 
L 145.720519 242.265367 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 148.039481 247.730549 
L 148.039481 242.461273 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 150.358442 250.915909 
L 150.358442 242.575675 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 152.677403 247.93171 
L 152.677403 242.002683 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 154.996364 248.286793 
L 154.996364 243.613416 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 157.315325 248.434897 
L 157.315325 242.71643 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 159.634286 250.230767 
L 159.634286 244.38414 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 161.953247 249.731215 
L 161.953247 243.081694 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 164.272208 250.891083 
L 164.272208 244.542914 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 166.591169 251.506558 
L 166.591169 244.184867 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 168.91013 251.049858 
L 168.91013 245.858501 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 171.229091 257.328462 
L 171.229091 246.296435 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 173.548052 250.870454 
L 173.548052 244.750763 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 175.867013 251.663464 
L 175.867013 245.666141 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 178.185974 253.961376 
L 178.185974 248.329574 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 180.504935 253.400724 
L 180.504935 247.626488 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 182.823896 254.580455 
L 182.823896 249.021039 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 185.142857 256.189472 
L 185.142857 249.143812 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 187.461818 256.352174 
L 187.461818 250.783108 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 189.780779 254.014088 
L 189.780779 248.113044 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 192.09974 254.061613 
L 192.09974 247.527259 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 194.418701 256.105859 
L 194.418701 250.28054 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 196.737662 256.508224 
L 196.737662 251.305733 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 199.056623 256.290386 
L 199.056623 249.557755 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 201.375584 257.82387 
L 201.375584 252.56437 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 203.694545 259.577492 
L 203.694545 252.916978 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 206.013506 258.683654 
L 206.013506 253.38957 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 208.332468 260.371434 
L 208.332468 253.573996 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 210.651429 257.124414 
L 210.651429 251.649048 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 212.97039 263.383485 
L 212.97039 254.914823 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 215.289351 259.87767 
L 215.289351 253.529501 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 217.608312 259.188263 
L 217.608312 253.329611 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 219.927273 259.359757 
L 219.927273 253.298531 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 222.246234 259.453404 
L 222.246234 254.726052 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 224.565195 261.955841 
L 224.565195 255.780805 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 226.884156 258.539116 
L 226.884156 253.042654 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 229.203117 261.442046 
L 229.203117 254.960654 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 231.522078 263.711459 
L 231.522078 252.363605 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 233.841039 260.965571 
L 233.841039 253.822352 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 236.16 263.052363 
L 236.16 254.801296 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 238.478961 263.85892 
L 238.478961 257.785956 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 240.797922 263.06244 
L 240.797922 257.459112 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 243.116883 261.644473 
L 243.116883 256.443212 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 245.435844 264.376111 
L 245.435844 254.741287 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 247.754805 260.300269 
L 247.754805 254.066407 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 250.073766 263.330187 
L 250.073766 254.453264 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 252.392727 263.402246 
L 252.392727 252.509 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 254.711688 265.065037 
L 254.711688 256.369216 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 257.030649 254.472751 
L 257.030649 247.701186 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 259.34961 254.123118 
L 259.34961 249.96983 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 261.668571 248.504549 
L 261.668571 241.944701 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 263.987532 247.181708 
L 263.987532 238.07217 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 266.306494 236.854388 
L 266.306494 229.654032 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 268.625455 230.180027 
L 268.625455 223.503785 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 270.944416 218.030342 
L 270.944416 209.302175 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 273.263377 207.824678 
L 273.263377 201.136821 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 275.582338 195.306756 
L 275.582338 188.567188 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 277.901299 184.482943 
L 277.901299 176.52669 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 280.22026 183.058259 
L 280.22026 175.915351 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 282.539221 182.339242 
L 282.539221 174.808967 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 284.858182 180.137778 
L 284.858182 174.155317 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 287.177143 186.295733 
L 287.177143 180.260309 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 289.496104 182.960178 
L 289.496104 173.930603 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 291.815065 193.398235 
L 291.815065 185.397352 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 294.134026 191.289857 
L 294.134026 183.761318 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 296.452987 188.822156 
L 296.452987 181.805933 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 298.771948 195.306102 
L 298.771948 187.655142 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 301.090909 192.401717 
L 301.090909 187.189557 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 303.40987 204.746603 
L 303.40987 193.590129 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 305.728831 197.180353 
L 305.728831 191.725144 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 308.047792 195.89379 
L 308.047792 190.179996 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 310.366753 196.850233 
L 310.366753 191.329784 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 312.685714 198.480137 
L 312.685714 192.97624 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 315.004675 200.830129 
L 315.004675 194.65149 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 317.323636 202.645609 
L 317.323636 193.280659 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 319.642597 202.331162 
L 319.642597 196.941673 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 321.961558 208.324009 
L 321.961558 202.392684 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 324.280519 206.512318 
L 324.280519 199.874899 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 326.599481 207.293505 
L 326.599481 199.468152 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 328.918442 211.623314 
L 328.918442 202.135713 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 331.237403 214.112369 
L 331.237403 207.673739 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 333.556364 215.533926 
L 333.556364 210.137009 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 335.875325 217.878685 
L 335.875325 211.770687 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 338.194286 221.845525 
L 338.194286 215.199059 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 340.513247 228.154741 
L 340.513247 220.123077 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 342.832208 231.915505 
L 342.832208 226.308405 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 345.151169 236.999364 
L 345.151169 231.872715 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 347.47013 241.110791 
L 347.47013 234.314008 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 349.789091 252.365045 
L 349.789091 244.613521 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 352.108052 250.504623 
L 352.108052 242.916753 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 354.427013 261.308684 
L 354.427013 252.987785 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 356.745974 259.183663 
L 356.745974 253.404418 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 359.064935 263.371764 
L 359.064935 256.517919 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 361.383896 268.83572 
L 361.383896 261.655327 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 363.702857 268.709 
L 363.702857 256.118625 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 366.021818 268.5648 
L 366.021818 250.693013 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 368.340779 267.119107 
L 368.340779 262.014591 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 370.65974 279.090392 
L 370.65974 269.958893 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 372.978701 269.497396 
L 372.978701 262.631831 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 375.297662 271.360428 
L 375.297662 256.486129 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 377.616623 295.488 
L 377.616623 271.347239 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 379.935584 270.547198 
L 379.935584 265.349843 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 382.254545 269.857786 
L 382.254545 263.605388 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 384.573506 282.464383 
L 384.573506 248.330898 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 386.892468 276.130105 
L 386.892468 264.119814 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 389.211429 267.988645 
L 389.211429 263.438505 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 391.53039 268.328719 
L 391.53039 265.251467 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 393.849351 269.834379 
L 393.849351 265.501001 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 396.168312 273.110372 
L 396.168312 267.490586 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 398.487273 269.236858 
L 398.487273 264.694367 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
   </g>
   <g id="LineCollection_2">
    <path clip-path="url(#p8b0ee4a59c)" d="M 73.832727 268.565011 
L 73.832727 264.032267 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 76.151688 271.946264 
L 76.151688 265.635762 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 78.470649 271.691624 
L 78.470649 267.598789 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 80.78961 272.830046 
L 80.78961 266.600783 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 83.108571 272.551924 
L 83.108571 267.206541 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 85.427532 270.074739 
L 85.427532 266.056327 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 87.746494 270.536262 
L 87.746494 264.120442 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 90.065455 269.228246 
L 90.065455 265.522069 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 92.384416 281.93585 
L 92.384416 265.919905 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 94.703377 271.791398 
L 94.703377 267.779846 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 97.022338 272.558743 
L 97.022338 269.071928 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 99.341299 272.524998 
L 99.341299 268.567414 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 101.66026 272.997839 
L 101.66026 268.398806 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 103.979221 272.007713 
L 103.979221 268.710258 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 106.298182 272.672423 
L 106.298182 268.607209 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 108.617143 272.814771 
L 108.617143 269.307354 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 110.936104 273.262197 
L 110.936104 268.251461 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 113.255065 272.888269 
L 113.255065 268.976428 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 115.574026 273.364827 
L 115.574026 269.014726 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 117.892987 273.502842 
L 117.892987 269.110737 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 120.211948 273.449497 
L 120.211948 269.164082 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 122.530909 273.535977 
L 122.530909 268.937186 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 124.84987 273.552311 
L 124.84987 269.295293 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 127.168831 275.050242 
L 127.168831 268.616453 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 129.487792 273.631592 
L 129.487792 268.37352 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 131.806753 273.375521 
L 131.806753 269.097643 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 134.125714 273.459658 
L 134.125714 268.685869 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 136.444675 274.014977 
L 136.444675 269.67512 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 138.763636 275.048721 
L 138.763636 269.905115 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 141.082597 273.212738 
L 141.082597 269.728477 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 143.401558 274.706377 
L 143.401558 270.224056 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 145.720519 274.344458 
L 145.720519 271.07743 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 148.039481 274.811237 
L 148.039481 271.195715 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 150.358442 274.668799 
L 150.358442 271.174334 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 152.677403 275.900941 
L 152.677403 272.259047 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 154.996364 275.740727 
L 154.996364 271.810794 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 157.315325 275.36426 
L 157.315325 271.766015 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 159.634286 274.287154 
L 159.634286 271.087928 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 161.953247 273.424524 
L 161.953247 269.259263 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 164.272208 275.16347 
L 164.272208 271.475351 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 166.591169 275.512329 
L 166.591169 271.430725 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 168.91013 271.675071 
L 168.91013 266.398409 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 171.229091 276.561756 
L 171.229091 267.807016 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 173.548052 274.609331 
L 173.548052 270.625335 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 175.867013 272.467586 
L 175.867013 267.735528 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 178.185974 271.703088 
L 178.185974 268.45322 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 180.504935 267.865735 
L 180.504935 263.444402 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 182.823896 268.103296 
L 182.823896 264.634398 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 185.142857 264.547207 
L 185.142857 260.631457 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 187.461818 262.080696 
L 187.461818 257.879194 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 189.780779 256.509197 
L 189.780779 252.989745 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 192.09974 254.444163 
L 192.09974 250.982732 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 194.418701 250.852821 
L 194.418701 246.429978 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 196.737662 248.053858 
L 196.737662 244.899466 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 199.056623 245.635077 
L 199.056623 241.608021 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 201.375584 243.804111 
L 201.375584 240.420055 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 203.694545 241.256428 
L 203.694545 238.217016 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 206.013506 240.829992 
L 206.013506 236.958467 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 208.332468 239.034496 
L 208.332468 236.226485 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 210.651429 238.150768 
L 210.651429 234.559333 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 212.97039 237.477728 
L 212.97039 234.226063 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 215.289351 237.857899 
L 215.289351 234.501163 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 217.608312 237.933467 
L 217.608312 233.980947 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 219.927273 237.511137 
L 219.927273 234.754315 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 222.246234 238.227995 
L 222.246234 234.458704 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 224.565195 238.065196 
L 224.565195 234.457685 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 226.884156 239.991756 
L 226.884156 236.018107 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 229.203117 239.378997 
L 229.203117 235.881985 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 231.522078 240.183942 
L 231.522078 236.738622 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 233.841039 241.143516 
L 233.841039 237.768267 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 236.16 241.485429 
L 236.16 238.409262 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 238.478961 243.001281 
L 238.478961 239.701718 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 240.797922 244.083093 
L 240.797922 240.21128 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 243.116883 244.973006 
L 243.116883 241.474404 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 245.435844 245.754649 
L 245.435844 242.237331 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 247.754805 247.390578 
L 247.754805 243.269295 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 250.073766 248.332769 
L 250.073766 244.854581 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 252.392727 248.703125 
L 252.392727 245.35012 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 254.711688 250.421541 
L 254.711688 246.323 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 257.030649 250.680879 
L 257.030649 247.421011 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 259.34961 252.136875 
L 259.34961 248.913739 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 261.668571 253.281916 
L 261.668571 249.594098 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 263.987532 255.206798 
L 263.987532 251.647653 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 266.306494 255.809895 
L 266.306494 252.776346 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 268.625455 258.855746 
L 268.625455 254.434412 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 270.944416 260.169499 
L 270.944416 256.467227 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 273.263377 262.618694 
L 273.263377 259.307012 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 275.582338 264.507935 
L 275.582338 260.436703 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 277.901299 266.349547 
L 277.901299 263.579839 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 280.22026 268.359956 
L 280.22026 265.009607 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 282.539221 271.071593 
L 282.539221 267.540146 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 284.858182 271.603542 
L 284.858182 268.014508 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 287.177143 273.280267 
L 287.177143 269.286507 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 289.496104 274.348515 
L 289.496104 271.23719 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 291.815065 276.166594 
L 291.815065 272.133809 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 294.134026 276.847696 
L 294.134026 273.441925 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 296.452987 277.197221 
L 296.452987 273.607257 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 298.771948 277.725143 
L 298.771948 273.75801 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 301.090909 278.995195 
L 301.090909 275.179253 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 303.40987 278.977762 
L 303.40987 275.173283 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 305.728831 279.103813 
L 305.728831 275.445077 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 308.047792 278.889683 
L 308.047792 275.869829 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 310.366753 280.614373 
L 310.366753 276.181164 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 312.685714 279.515737 
L 312.685714 275.618216 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 315.004675 279.950922 
L 315.004675 275.089421 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 317.323636 280.086376 
L 317.323636 276.358122 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 319.642597 280.080116 
L 319.642597 276.879238 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 321.961558 279.930409 
L 321.961558 276.584297 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 324.280519 279.860257 
L 324.280519 276.022579 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 326.599481 279.034468 
L 326.599481 275.256993 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 328.918442 280.161246 
L 328.918442 276.096031 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 331.237403 280.385267 
L 331.237403 276.808113 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 333.556364 280.292521 
L 333.556364 276.760444 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 335.875325 280.234866 
L 335.875325 276.233034 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 338.194286 280.319365 
L 338.194286 276.827209 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 340.513247 280.28719 
L 340.513247 277.280631 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 342.832208 280.453684 
L 342.832208 276.505671 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 345.151169 280.199766 
L 345.151169 276.455355 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 347.47013 279.947561 
L 347.47013 276.473535 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 349.789091 280.270676 
L 349.789091 276.501458 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 352.108052 280.33675 
L 352.108052 276.997046 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 354.427013 280.346118 
L 354.427013 276.636639 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 356.745974 280.410535 
L 356.745974 276.82965 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 359.064935 278.96838 
L 359.064935 275.182666 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 361.383896 280.127227 
L 361.383896 276.434284 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 363.702857 279.624807 
L 363.702857 276.468652 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 366.021818 280.329631 
L 366.021818 276.582918 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 368.340779 279.727008 
L 368.340779 276.717489 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 370.65974 279.659551 
L 370.65974 276.223285 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 372.978701 280.503492 
L 372.978701 277.368562 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 375.297662 279.911308 
L 375.297662 276.509787 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 377.616623 279.651254 
L 377.616623 275.903946 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 379.935584 279.915557 
L 379.935584 276.388525 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 382.254545 279.66304 
L 382.254545 276.009173 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 384.573506 279.272267 
L 384.573506 275.955297 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 386.892468 279.663039 
L 386.892468 275.938966 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 389.211429 279.623039 
L 389.211429 275.791746 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 391.53039 279.445612 
L 391.53039 275.922367 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 393.849351 280.227389 
L 393.849351 276.193707 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 396.168312 279.349607 
L 396.168312 276.346009 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 398.487273 279.972624 
L 398.487273 276.050627 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
   </g>
   <g id="LineCollection_3">
    <path clip-path="url(#p8b0ee4a59c)" d="M 73.832727 249.546468 
L 73.832727 235.286165 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 76.151688 246.91429 
L 76.151688 241.920182 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 78.470649 244.028778 
L 78.470649 240.382609 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 80.78961 244.148619 
L 80.78961 241.011649 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 83.108571 245.220375 
L 83.108571 241.297243 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 85.427532 245.324482 
L 85.427532 242.105836 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 87.746494 246.296033 
L 87.746494 242.91288 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 90.065455 246.663688 
L 90.065455 242.779251 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 92.384416 246.551066 
L 92.384416 243.313119 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 94.703377 247.366439 
L 94.703377 243.550862 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 97.022338 247.16777 
L 97.022338 243.889946 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 99.341299 247.411721 
L 99.341299 244.090644 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 101.66026 248.383163 
L 101.66026 244.195721 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 103.979221 248.611704 
L 103.979221 245.184113 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 106.298182 248.774199 
L 106.298182 244.810995 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 108.617143 249.648417 
L 108.617143 245.106905 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 110.936104 253.532866 
L 110.936104 248.126215 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 113.255065 249.910481 
L 113.255065 245.663931 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 115.574026 247.565398 
L 115.574026 243.258292 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 117.892987 250.10901 
L 117.892987 246.027064 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 120.211948 249.602947 
L 120.211948 245.854452 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 122.530909 250.434704 
L 122.530909 246.239629 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 124.84987 248.308997 
L 124.84987 244.199679 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 127.168831 245.603735 
L 127.168831 242.364842 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 129.487792 243.104783 
L 129.487792 239.504605 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 131.806753 235.450296 
L 131.806753 232.57929 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 134.125714 229.996626 
L 134.125714 225.980638 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 136.444675 213.460367 
L 136.444675 209.940519 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 138.763636 203.350323 
L 138.763636 199.152067 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 141.082597 182.936283 
L 141.082597 179.524309 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 143.401558 168.345415 
L 143.401558 164.651342 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 145.720519 146.917675 
L 145.720519 143.205572 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 148.039481 137.923619 
L 148.039481 133.82861 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 150.358442 123.846884 
L 150.358442 119.98608 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 152.677403 116.365841 
L 152.677403 113.448982 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 154.996364 107.461875 
L 154.996364 103.443671 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 157.315325 103.453181 
L 157.315325 99.401882 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 159.634286 98.281107 
L 159.634286 93.832176 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 161.953247 96.030428 
L 161.953247 92.151223 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 164.272208 90.317906 
L 164.272208 86.747524 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 166.591169 88.507398 
L 166.591169 84.6264 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 168.91013 84.499187 
L 168.91013 80.420309 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 171.229091 83.109772 
L 171.229091 78.907806 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 173.548052 79.795631 
L 173.548052 75.903252 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 175.867013 77.630168 
L 175.867013 73.786045 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 178.185974 75.818442 
L 178.185974 71.174685 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 180.504935 73.711561 
L 180.504935 70.169025 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 182.823896 70.356162 
L 182.823896 66.363237 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 185.142857 68.523039 
L 185.142857 65.224234 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 187.461818 63.538905 
L 187.461818 57.079526 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 189.780779 67.377155 
L 189.780779 61.923629 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 192.09974 61.497254 
L 192.09974 57.834035 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 194.418701 59.787098 
L 194.418701 55.776378 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 196.737662 57.659453 
L 196.737662 54.136208 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 199.056623 57.525584 
L 199.056623 53.568 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 201.375584 57.433923 
L 201.375584 53.940492 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 203.694545 58.062569 
L 203.694545 54.318157 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 206.013506 61.806761 
L 206.013506 57.758554 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 208.332468 65.216494 
L 208.332468 61.205774 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 210.651429 75.866257 
L 210.651429 71.267285 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 212.97039 84.658338 
L 212.97039 81.103651 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 215.289351 102.900292 
L 215.289351 98.386799 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 217.608312 116.512242 
L 217.608312 113.208971 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 219.927273 144.061999 
L 219.927273 140.444631 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 222.246234 160.044675 
L 222.246234 155.18953 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 224.565195 183.978912 
L 224.565195 181.196378 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 226.884156 197.788256 
L 226.884156 193.668121 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 229.203117 217.010017 
L 229.203117 213.949899 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 231.522078 225.841368 
L 231.522078 221.196113 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 233.841039 236.957811 
L 233.841039 233.435435 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 236.16 242.219753 
L 236.16 238.70465 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 238.478961 249.410587 
L 238.478961 245.531955 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 240.797922 252.742048 
L 240.797922 249.946746 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 243.116883 259.115018 
L 243.116883 253.379453 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 245.435844 260.027452 
L 245.435844 256.258235 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 247.754805 262.385431 
L 247.754805 258.229732 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 250.073766 262.201042 
L 250.073766 258.390718 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 252.392727 264.951276 
L 252.392727 261.093283 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 254.711688 264.47016 
L 254.711688 260.193647 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 257.030649 265.582658 
L 257.030649 261.749042 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 259.34961 265.376288 
L 259.34961 261.30014 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 261.668571 266.166506 
L 261.668571 263.201218 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 263.987532 267.247898 
L 263.987532 262.751695 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 266.306494 267.653115 
L 266.306494 264.569722 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 268.625455 268.120131 
L 268.625455 264.289927 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 270.944416 268.27045 
L 270.944416 264.748074 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 273.263377 268.03156 
L 273.263377 264.167875 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 275.582338 268.915761 
L 275.582338 264.430399 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 277.901299 267.975503 
L 277.901299 264.528165 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 280.22026 269.818524 
L 280.22026 264.767973 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 282.539221 268.657312 
L 282.539221 265.273913 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 284.858182 269.583597 
L 284.858182 265.283731 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 287.177143 269.212062 
L 287.177143 266.076512 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 289.496104 270.287588 
L 289.496104 265.609452 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 291.815065 269.136824 
L 291.815065 265.005024 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 294.134026 270.239061 
L 294.134026 266.28985 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 296.452987 270.152736 
L 296.452987 266.6102 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 298.771948 270.041773 
L 298.771948 266.346721 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 301.090909 270.276143 
L 301.090909 265.620898 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 303.40987 270.317174 
L 303.40987 266.656385 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 305.728831 270.154004 
L 305.728831 266.234491 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 308.047792 270.434033 
L 308.047792 266.843759 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 310.366753 270.721854 
L 310.366753 266.134692 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 312.685714 270.955468 
L 312.685714 267.539258 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 315.004675 270.626264 
L 315.004675 266.955762 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 317.323636 270.334567 
L 317.323636 266.124136 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 319.642597 270.455883 
L 319.642597 267.594194 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 321.961558 270.532692 
L 321.961558 265.949413 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 324.280519 270.478766 
L 324.280519 267.19687 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 326.599481 271.265378 
L 326.599481 267.065531 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 328.918442 270.438747 
L 328.918442 266.628423 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 331.237403 271.467154 
L 331.237403 266.325495 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 333.556364 270.917516 
L 333.556364 267.366587 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 335.875325 271.725859 
L 335.875325 267.143309 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 338.194286 271.0015 
L 338.194286 267.446421 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 340.513247 270.944747 
L 340.513247 267.10533 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 342.832208 270.856399 
L 342.832208 267.544717 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 345.151169 271.091645 
L 345.151169 267.520094 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 347.47013 271.544537 
L 347.47013 267.184215 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 349.789091 270.969656 
L 349.789091 267.384655 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 352.108052 270.333711 
L 352.108052 267.1079 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 354.427013 271.065884 
L 354.427013 267.101206 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 356.745974 270.316562 
L 356.745974 266.844218 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 359.064935 271.032226 
L 359.064935 266.73702 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 361.383896 270.722718 
L 361.383896 267.233749 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 363.702857 271.497685 
L 363.702857 267.207664 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 366.021818 271.140846 
L 366.021818 267.494296 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 368.340779 270.763074 
L 368.340779 267.193393 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 370.65974 271.53167 
L 370.65974 267.711939 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 372.978701 271.303596 
L 372.978701 267.659182 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 375.297662 271.265137 
L 375.297662 267.814653 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 377.616623 270.928556 
L 377.616623 266.981106 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 379.935584 270.594991 
L 379.935584 266.659399 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 382.254545 271.176596 
L 382.254545 266.59265 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 384.573506 270.575804 
L 384.573506 266.842404 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 386.892468 271.264889 
L 386.892468 266.831994 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 389.211429 269.940502 
L 389.211429 266.565006 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 391.53039 270.619513 
L 391.53039 267.149734 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 393.849351 270.922638 
L 393.849351 266.799803 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 396.168312 270.610243 
L 396.168312 266.480329 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p8b0ee4a59c)" d="M 398.487273 270.257853 
L 398.487273 266.762512 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
   </g>
   <g id="line2d_1">
    <path clip-path="url(#p8b0ee4a59c)" d="M 73.832727 229.509799 
L 76.151688 228.597098 
L 78.470649 231.873458 
L 80.78961 225.987712 
L 83.108571 233.184002 
L 85.427532 222.372015 
L 87.746494 231.721342 
L 90.065455 231.61603 
L 92.384416 232.634042 
L 94.703377 232.903171 
L 97.022338 234.412637 
L 99.341299 234.108404 
L 101.66026 233.581846 
L 103.979221 234.611559 
L 106.298182 236.776297 
L 108.617143 235.278532 
L 113.255065 238.051737 
L 115.574026 238.508087 
L 117.892987 238.26236 
L 120.211948 238.285763 
L 122.530909 238.859126 
L 124.84987 240.321786 
L 127.168831 239.046346 
L 129.487792 241.550421 
L 131.806753 240.532409 
L 134.125714 240.649422 
L 136.444675 240.462202 
L 141.082597 242.287602 
L 143.401558 242.428018 
L 145.720519 245.329936 
L 148.039481 245.095911 
L 150.358442 246.745792 
L 152.677403 244.967196 
L 154.996364 245.950104 
L 157.315325 245.575663 
L 159.634286 247.307453 
L 161.953247 246.406454 
L 164.272208 247.716998 
L 166.591169 247.845713 
L 168.91013 248.454179 
L 171.229091 251.812448 
L 173.548052 247.810609 
L 175.867013 248.664803 
L 178.185974 251.145475 
L 180.504935 250.513606 
L 182.823896 251.800747 
L 187.461818 253.567641 
L 189.780779 251.063566 
L 192.09974 250.794436 
L 194.418701 253.1932 
L 196.737662 253.906978 
L 199.056623 252.92407 
L 201.375584 255.19412 
L 203.694545 256.247235 
L 206.013506 256.036612 
L 208.332468 256.972715 
L 210.651429 254.386731 
L 212.97039 259.149154 
L 215.289351 256.703585 
L 217.608312 256.258937 
L 219.927273 256.329144 
L 222.246234 257.089728 
L 224.565195 258.868323 
L 226.884156 255.790885 
L 229.203117 258.20135 
L 231.522078 258.037532 
L 233.841039 257.393961 
L 236.16 258.92683 
L 238.478961 260.822438 
L 240.797922 260.260776 
L 243.116883 259.043842 
L 245.435844 259.558699 
L 247.754805 257.183338 
L 250.073766 258.891726 
L 252.392727 257.955623 
L 254.711688 260.717126 
L 257.030649 251.086969 
L 259.34961 252.046474 
L 261.668571 245.224625 
L 263.987532 242.626939 
L 266.306494 233.25421 
L 268.625455 226.841906 
L 270.944416 213.666259 
L 273.263377 204.48075 
L 275.582338 191.936972 
L 277.901299 180.504816 
L 282.539221 178.574104 
L 284.858182 177.146548 
L 287.177143 183.278021 
L 289.496104 178.44539 
L 291.815065 189.397793 
L 294.134026 187.525588 
L 296.452987 185.314045 
L 298.771948 191.480622 
L 301.090909 189.795637 
L 303.40987 199.168366 
L 305.728831 194.452748 
L 308.047792 193.036893 
L 310.366753 194.090009 
L 312.685714 195.728188 
L 315.004675 197.740809 
L 317.323636 197.963134 
L 319.642597 199.636418 
L 321.961558 205.358346 
L 324.280519 203.193608 
L 326.599481 203.380829 
L 328.918442 206.879513 
L 331.237403 210.893054 
L 335.875325 214.824686 
L 338.194286 218.522292 
L 340.513247 224.138909 
L 342.832208 229.111955 
L 345.151169 234.43604 
L 347.47013 237.7124 
L 349.789091 248.489283 
L 352.108052 246.710688 
L 354.427013 257.148234 
L 356.745974 256.29404 
L 359.064935 259.944841 
L 361.383896 265.245524 
L 366.021818 259.628907 
L 368.340779 264.566849 
L 370.65974 274.524643 
L 372.978701 266.064614 
L 375.297662 263.923278 
L 377.616623 283.417619 
L 379.935584 267.94852 
L 384.573506 265.39764 
L 386.892468 270.12496 
L 389.211429 265.713575 
L 391.53039 266.790093 
L 393.849351 267.66769 
L 396.168312 270.300479 
L 398.487273 266.965613 
L 398.487273 266.965613 
" style="fill:none;stroke:#ffd2e9;stroke-linecap:square;stroke-width:1.5;"/>
   </g>
   <g id="line2d_2">
    <path clip-path="url(#p8b0ee4a59c)" d="M 73.832727 266.298639 
L 76.151688 268.791013 
L 78.470649 269.645207 
L 83.108571 269.879233 
L 85.427532 268.065533 
L 87.746494 267.328352 
L 90.065455 267.375157 
L 92.384416 273.927877 
L 94.703377 269.785622 
L 97.022338 270.815335 
L 99.341299 270.546206 
L 101.66026 270.698322 
L 103.979221 270.358985 
L 106.298182 270.639816 
L 108.617143 271.061062 
L 110.936104 270.756829 
L 117.892987 271.306789 
L 122.530909 271.236582 
L 124.84987 271.423802 
L 127.168831 271.833347 
L 129.487792 271.002556 
L 131.806753 271.236582 
L 134.125714 271.072764 
L 136.444675 271.845048 
L 138.763636 272.476918 
L 141.082597 271.470607 
L 143.401558 272.465217 
L 148.039481 273.003476 
L 150.358442 272.921567 
L 152.677403 274.079994 
L 157.315325 273.565137 
L 159.634286 272.687541 
L 161.953247 271.341893 
L 164.272208 273.31941 
L 166.591169 273.471527 
L 168.91013 269.03674 
L 171.229091 272.184386 
L 173.548052 272.617333 
L 175.867013 270.101557 
L 178.185974 270.078154 
L 180.504935 265.655069 
L 182.823896 266.368847 
L 185.142857 262.589332 
L 187.461818 259.979945 
L 189.780779 254.749471 
L 192.09974 252.713447 
L 194.418701 248.6414 
L 196.737662 246.476662 
L 199.056623 243.621549 
L 201.375584 242.112083 
L 203.694545 239.736722 
L 206.013506 238.894229 
L 210.651429 236.355051 
L 212.97039 235.851895 
L 215.289351 236.179531 
L 217.608312 235.957207 
L 222.246234 236.343349 
L 224.565195 236.26144 
L 226.884156 238.004932 
L 229.203117 237.630491 
L 231.522078 238.461282 
L 233.841039 239.455891 
L 236.16 239.947345 
L 238.478961 241.351499 
L 240.797922 242.147187 
L 243.116883 243.223705 
L 245.435844 243.99599 
L 250.073766 246.593675 
L 252.392727 247.026623 
L 254.711688 248.37227 
L 257.030649 249.050945 
L 259.34961 250.525307 
L 261.668571 251.438007 
L 263.987532 253.427226 
L 266.306494 254.293121 
L 268.625455 256.645079 
L 270.944416 258.318363 
L 273.263377 260.962853 
L 275.582338 262.472319 
L 277.901299 264.964693 
L 280.22026 266.684782 
L 282.539221 269.30587 
L 284.858182 269.809025 
L 291.815065 274.150202 
L 294.134026 275.144811 
L 298.771948 275.741576 
L 301.090909 277.087224 
L 303.40987 277.075523 
L 308.047792 277.379756 
L 310.366753 278.397768 
L 312.685714 277.566977 
L 315.004675 277.520172 
L 317.323636 278.222249 
L 319.642597 278.479677 
L 324.280519 277.941418 
L 326.599481 277.145731 
L 328.918442 278.128639 
L 331.237403 278.59669 
L 333.556364 278.526482 
L 335.875325 278.23395 
L 338.194286 278.573287 
L 340.513247 278.783911 
L 342.832208 278.479677 
L 347.47013 278.210548 
L 352.108052 278.666898 
L 354.427013 278.491378 
L 356.745974 278.620093 
L 359.064935 277.075523 
L 361.383896 278.280755 
L 363.702857 278.04673 
L 366.021818 278.456275 
L 370.65974 277.941418 
L 372.978701 278.936027 
L 375.297662 278.210548 
L 377.616623 277.7776 
L 379.935584 278.152041 
L 384.573506 277.613782 
L 386.892468 277.801003 
L 391.53039 277.68399 
L 393.849351 278.210548 
L 396.168312 277.847808 
L 398.487273 278.011626 
L 398.487273 278.011626 
" style="fill:none;stroke:#ffd2e9;stroke-linecap:square;stroke-width:1.5;"/>
   </g>
   <g id="line2d_3">
    <path clip-path="url(#p8b0ee4a59c)" d="M 73.832727 242.416316 
L 76.151688 244.417236 
L 78.470649 242.205693 
L 80.78961 242.580134 
L 83.108571 243.258809 
L 85.427532 243.715159 
L 87.746494 244.604457 
L 92.384416 244.932093 
L 94.703377 245.45865 
L 97.022338 245.528858 
L 99.341299 245.751183 
L 103.979221 246.897908 
L 106.298182 246.792597 
L 108.617143 247.377661 
L 110.936104 250.82954 
L 113.255065 247.787206 
L 115.574026 245.411845 
L 117.892987 248.068037 
L 120.211948 247.7287 
L 122.530909 248.337167 
L 124.84987 246.254338 
L 127.168831 243.984288 
L 129.487792 241.304694 
L 131.806753 234.014793 
L 134.125714 227.988632 
L 136.444675 211.700443 
L 138.763636 201.251195 
L 141.082597 181.230296 
L 143.401558 166.498378 
L 145.720519 145.061624 
L 148.039481 135.876115 
L 150.358442 121.916482 
L 152.677403 114.907412 
L 154.996364 105.452773 
L 157.315325 101.427531 
L 159.634286 96.056641 
L 161.953247 94.090826 
L 164.272208 88.532715 
L 166.591169 86.566899 
L 168.91013 82.459748 
L 171.229091 81.008789 
L 173.548052 77.849442 
L 178.185974 73.496564 
L 180.504935 71.940293 
L 182.823896 68.359699 
L 185.142857 66.873636 
L 187.461818 60.309215 
L 189.780779 64.650392 
L 192.09974 59.665645 
L 196.737662 55.897831 
L 199.056623 55.546792 
L 201.375584 55.687208 
L 203.694545 56.190363 
L 208.332468 63.211134 
L 210.651429 73.566771 
L 212.97039 82.880994 
L 215.289351 100.643545 
L 217.608312 114.860607 
L 219.927273 142.253315 
L 222.246234 157.617103 
L 224.565195 182.587645 
L 226.884156 195.728188 
L 229.203117 215.479958 
L 231.522078 223.518741 
L 233.841039 235.196623 
L 236.16 240.462202 
L 238.478961 247.471271 
L 240.797922 251.344397 
L 243.116883 256.247235 
L 245.435844 258.142843 
L 247.754805 260.307581 
L 250.073766 260.29588 
L 252.392727 263.022279 
L 254.711688 262.331904 
L 257.030649 263.66585 
L 259.34961 263.338214 
L 261.668571 264.683862 
L 263.987532 264.999797 
L 266.306494 266.111419 
L 268.625455 266.205029 
L 270.944416 266.509262 
L 273.263377 266.099717 
L 275.582338 266.67308 
L 277.901299 266.251834 
L 280.22026 267.293248 
L 282.539221 266.965613 
L 284.858182 267.433664 
L 289.496104 267.94852 
L 291.815065 267.070924 
L 294.134026 268.264455 
L 296.452987 268.381468 
L 301.090909 267.94852 
L 303.40987 268.48678 
L 305.728831 268.194247 
L 308.047792 268.638896 
L 310.366753 268.428273 
L 312.685714 269.247363 
L 317.323636 268.229351 
L 319.642597 269.025039 
L 321.961558 268.241053 
L 324.280519 268.837818 
L 326.599481 269.165454 
L 328.918442 268.533585 
L 331.237403 268.896325 
L 335.875325 269.434584 
L 340.513247 269.025039 
L 345.151169 269.30587 
L 347.47013 269.364376 
L 349.789091 269.177155 
L 352.108052 268.720805 
L 354.427013 269.083545 
L 356.745974 268.58039 
L 359.064935 268.884623 
L 361.383896 268.978234 
L 363.702857 269.352675 
L 366.021818 269.317571 
L 368.340779 268.978234 
L 370.65974 269.621804 
L 372.978701 269.481389 
L 375.297662 269.539895 
L 377.616623 268.954831 
L 379.935584 268.627195 
L 382.254545 268.884623 
L 384.573506 268.709104 
L 386.892468 269.048441 
L 389.211429 268.252754 
L 391.53039 268.884623 
L 393.849351 268.861221 
L 396.168312 268.545286 
L 398.487273 268.510182 
L 398.487273 268.510182 
" style="fill:none;stroke:#ffd2e9;stroke-linecap:square;stroke-width:1.5;"/>
   </g>
   <g id="matplotlib.axis_1">
    <g id="xtick_1">
     <g id="line2d_4">
      <path clip-path="url(#p8b0ee4a59c)" d="M 73.832727 307.584 
L 73.832727 41.472 
" style="fill:none;stroke:#08bdf9;stroke-dasharray:2.2,2.2;stroke-dashoffset:0;stroke-width:0.8;"/>
     </g>
     <g id="line2d_5">
      <defs>
       <path d="M 0 0 
L 0 3.5 
" id="m82da6bd642" style="stroke:#01769d;stroke-width:0.8;"/>
      </defs>
      <g>
       <use style="fill:#01769d;stroke:#01769d;stroke-width:0.8;" x="73.832727" xlink:href="#m82da6bd642" y="307.584"/>
      </g>
     </g>
     <g id="text_1">
      <!-- 0 -->
      <defs>
       <path d="M 31.78125 66.40625 
Q 24.171875 66.40625 20.328125 58.90625 
Q 16.5 51.421875 16.5 36.375 
Q 16.5 21.390625 20.328125 13.890625 
Q 24.171875 6.390625 31.78125 6.390625 
Q 39.453125 6.390625 43.28125 13.890625 
Q 47.125 21.390625 47.125 36.375 
Q 47.125 51.421875 43.28125 58.90625 
Q 39.453125 66.40625 31.78125 66.40625 
M 31.78125 74.21875 
Q 44.046875 74.21875 50.515625 64.515625 
Q 56.984375 54.828125 56.984375 36.375 
Q 56.984375 17.96875 50.515625 8.265625 
Q 44.046875 -1.421875 31.78125 -1.421875 
Q 19.53125 -1.421875 13.0625 8.265625 
Q 6.59375 17.96875 6.59375 36.375 
Q 6.59375 54.828125 13.0625 64.515625 
Q 19.53125 74.21875 31.78125 74.21875 
" id="DejaVuSans-30"/>
      </defs>
      <g style="fill:#01769d;" transform="translate(70.651477 322.182437)scale(0.1 -0.1)">
       <use xlink:href="#DejaVuSans-30"/>
      </g>
     </g>
    </g>
    <g id="xtick_2">
     <g id="line2d_6">
      <path clip-path="url(#p8b0ee4a59c)" d="M 151.131429 307.584 
L 151.131429 41.472 
" style="fill:none;stroke:#08bdf9;stroke-dasharray:2.2,2.2;stroke-dashoffset:0;stroke-width:0.8;"/>
     </g>
     <g id="line2d_7">
      <g>
       <use style="fill:#01769d;stroke:#01769d;stroke-width:0.8;" x="151.131429" xlink:href="#m82da6bd642" y="307.584"/>
      </g>
     </g>
     <g id="text_2">
      <!-- 100 -->
      <defs>
       <path d="M 12.40625 8.296875 
L 28.515625 8.296875 
L 28.515625 63.921875 
L 10.984375 60.40625 
L 10.984375 69.390625 
L 28.421875 72.90625 
L 38.28125 72.90625 
L 38.28125 8.296875 
L 54.390625 8.296875 
L 54.390625 0 
L 12.40625 0 
z
" id="DejaVuSans-31"/>
      </defs>
      <g style="fill:#01769d;" transform="translate(141.587679 322.182437)scale(0.1 -0.1)">
       <use xlink:href="#DejaVuSans-31"/>
       <use x="63.623047" xlink:href="#DejaVuSans-30"/>
       <use x="127.246094" xlink:href="#DejaVuSans-30"/>
      </g>
     </g>
    </g>
    <g id="xtick_3">
     <g id="line2d_8">
      <path clip-path="url(#p8b0ee4a59c)" d="M 228.43013 307.584 
L 228.43013 41.472 
" style="fill:none;stroke:#08bdf9;stroke-dasharray:2.2,2.2;stroke-dashoffset:0;stroke-width:0.8;"/>
     </g>
     <g id="line2d_9">
      <g>
       <use style="fill:#01769d;stroke:#01769d;stroke-width:0.8;" x="228.43013" xlink:href="#m82da6bd642" y="307.584"/>
      </g>
     </g>
     <g id="text_3">
      <!-- 200 -->
      <defs>
       <path d="M 19.1875 8.296875 
L 53.609375 8.296875 
L 53.609375 0 
L 7.328125 0 
L 7.328125 8.296875 
Q 12.9375 14.109375 22.625 23.890625 
Q 32.328125 33.6875 34.8125 36.53125 
Q 39.546875 41.84375 41.421875 45.53125 
Q 43.3125 49.21875 43.3125 52.78125 
Q 43.3125 58.59375 39.234375 62.25 
Q 35.15625 65.921875 28.609375 65.921875 
Q 23.96875 65.921875 18.8125 64.3125 
Q 13.671875 62.703125 7.8125 59.421875 
L 7.8125 69.390625 
Q 13.765625 71.78125 18.9375 73 
Q 24.125 74.21875 28.421875 74.21875 
Q 39.75 74.21875 46.484375 68.546875 
Q 53.21875 62.890625 53.21875 53.421875 
Q 53.21875 48.921875 51.53125 44.890625 
Q 49.859375 40.875 45.40625 35.40625 
Q 44.1875 33.984375 37.640625 27.21875 
Q 31.109375 20.453125 19.1875 8.296875 
" id="DejaVuSans-32"/>
      </defs>
      <g style="fill:#01769d;" transform="translate(218.88638 322.182437)scale(0.1 -0.1)">
       <use xlink:href="#DejaVuSans-32"/>
       <use x="63.623047" xlink:href="#DejaVuSans-30"/>
       <use x="127.246094" xlink:href="#DejaVuSans-30"/>
      </g>
     </g>
    </g>
    <g id="xtick_4">
     <g id="line2d_10">
      <path clip-path="url(#p8b0ee4a59c)" d="M 305.728831 307.584 
L 305.728831 41.472 
" style="fill:none;stroke:#08bdf9;stroke-dasharray:2.2,2.2;stroke-dashoffset:0;stroke-width:0.8;"/>
     </g>
     <g id="line2d_11">
      <g>
       <use style="fill:#01769d;stroke:#01769d;stroke-width:0.8;" x="305.728831" xlink:href="#m82da6bd642" y="307.584"/>
      </g>
     </g>
     <g id="text_4">
      <!-- 300 -->
      <defs>
       <path d="M 40.578125 39.3125 
Q 47.65625 37.796875 51.625 33 
Q 55.609375 28.21875 55.609375 21.1875 
Q 55.609375 10.40625 48.1875 4.484375 
Q 40.765625 -1.421875 27.09375 -1.421875 
Q 22.515625 -1.421875 17.65625 -0.515625 
Q 12.796875 0.390625 7.625 2.203125 
L 7.625 11.71875 
Q 11.71875 9.328125 16.59375 8.109375 
Q 21.484375 6.890625 26.8125 6.890625 
Q 36.078125 6.890625 40.9375 10.546875 
Q 45.796875 14.203125 45.796875 21.1875 
Q 45.796875 27.640625 41.28125 31.265625 
Q 36.765625 34.90625 28.71875 34.90625 
L 20.21875 34.90625 
L 20.21875 43.015625 
L 29.109375 43.015625 
Q 36.375 43.015625 40.234375 45.921875 
Q 44.09375 48.828125 44.09375 54.296875 
Q 44.09375 59.90625 40.109375 62.90625 
Q 36.140625 65.921875 28.71875 65.921875 
Q 24.65625 65.921875 20.015625 65.03125 
Q 15.375 64.15625 9.8125 62.3125 
L 9.8125 71.09375 
Q 15.4375 72.65625 20.34375 73.4375 
Q 25.25 74.21875 29.59375 74.21875 
Q 40.828125 74.21875 47.359375 69.109375 
Q 53.90625 64.015625 53.90625 55.328125 
Q 53.90625 49.265625 50.4375 45.09375 
Q 46.96875 40.921875 40.578125 39.3125 
" id="DejaVuSans-33"/>
      </defs>
      <g style="fill:#01769d;" transform="translate(296.185081 322.182437)scale(0.1 -0.1)">
       <use xlink:href="#DejaVuSans-33"/>
       <use x="63.623047" xlink:href="#DejaVuSans-30"/>
       <use x="127.246094" xlink:href="#DejaVuSans-30"/>
      </g>
     </g>
    </g>
    <g id="xtick_5">
     <g id="line2d_12">
      <path clip-path="url(#p8b0ee4a59c)" d="M 383.027532 307.584 
L 383.027532 41.472 
" style="fill:none;stroke:#08bdf9;stroke-dasharray:2.2,2.2;stroke-dashoffset:0;stroke-width:0.8;"/>
     </g>
     <g id="line2d_13">
      <g>
       <use style="fill:#01769d;stroke:#01769d;stroke-width:0.8;" x="383.027532" xlink:href="#m82da6bd642" y="307.584"/>
      </g>
     </g>
     <g id="text_5">
      <!-- 400 -->
      <defs>
       <path d="M 37.796875 64.3125 
L 12.890625 25.390625 
L 37.796875 25.390625 
z
M 35.203125 72.90625 
L 47.609375 72.90625 
L 47.609375 25.390625 
L 58.015625 25.390625 
L 58.015625 17.1875 
L 47.609375 17.1875 
L 47.609375 0 
L 37.796875 0 
L 37.796875 17.1875 
L 4.890625 17.1875 
L 4.890625 26.703125 
z
" id="DejaVuSans-34"/>
      </defs>
      <g style="fill:#01769d;" transform="translate(373.483782 322.182437)scale(0.1 -0.1)">
       <use xlink:href="#DejaVuSans-34"/>
       <use x="63.623047" xlink:href="#DejaVuSans-30"/>
       <use x="127.246094" xlink:href="#DejaVuSans-30"/>
      </g>
     </g>
    </g>
    <g id="text_6">
     <!-- $x\;[step]$ -->
     <defs>
      <path d="M 60.015625 54.6875 
L 34.90625 27.875 
L 50.296875 0 
L 39.984375 0 
L 28.421875 21.6875 
L 8.296875 0 
L -2.59375 0 
L 24.3125 28.8125 
L 10.015625 54.6875 
L 20.3125 54.6875 
L 30.8125 34.90625 
L 49.125 54.6875 
z
" id="DejaVuSans-Oblique-78"/>
      <path d="M 8.59375 75.984375 
L 29.296875 75.984375 
L 29.296875 69 
L 17.578125 69 
L 17.578125 -6.203125 
L 29.296875 -6.203125 
L 29.296875 -13.1875 
L 8.59375 -13.1875 
z
" id="DejaVuSans-5b"/>
      <path d="M 50 53.078125 
L 48.296875 44.578125 
Q 44.734375 46.53125 40.765625 47.5 
Q 36.8125 48.484375 32.625 48.484375 
Q 25.53125 48.484375 21.453125 46.0625 
Q 17.390625 43.65625 17.390625 39.5 
Q 17.390625 34.671875 26.859375 32.078125 
Q 27.59375 31.890625 27.9375 31.78125 
L 30.8125 30.90625 
Q 39.796875 28.421875 42.796875 25.6875 
Q 45.796875 22.953125 45.796875 18.21875 
Q 45.796875 9.515625 38.890625 4.046875 
Q 31.984375 -1.421875 20.796875 -1.421875 
Q 16.453125 -1.421875 11.671875 -0.578125 
Q 6.890625 0.25 1.125 2 
L 2.875 11.28125 
Q 7.8125 8.734375 12.59375 7.421875 
Q 17.390625 6.109375 21.78125 6.109375 
Q 28.375 6.109375 32.5 8.9375 
Q 36.625 11.765625 36.625 16.109375 
Q 36.625 20.796875 25.78125 23.6875 
L 24.859375 23.921875 
L 21.78125 24.703125 
Q 14.9375 26.515625 11.765625 29.46875 
Q 8.59375 32.421875 8.59375 37.015625 
Q 8.59375 45.75 15.15625 50.875 
Q 21.734375 56 33.015625 56 
Q 37.453125 56 41.671875 55.265625 
Q 45.90625 54.546875 50 53.078125 
" id="DejaVuSans-Oblique-73"/>
      <path d="M 42.28125 54.6875 
L 40.921875 47.703125 
L 23 47.703125 
L 17.1875 18.015625 
Q 16.890625 16.359375 16.75 15.234375 
Q 16.609375 14.109375 16.609375 13.484375 
Q 16.609375 10.359375 18.484375 8.9375 
Q 20.359375 7.515625 24.515625 7.515625 
L 33.59375 7.515625 
L 32.078125 0 
L 23.484375 0 
Q 15.484375 0 11.546875 3.125 
Q 7.625 6.25 7.625 12.59375 
Q 7.625 13.71875 7.765625 15.0625 
Q 7.90625 16.40625 8.203125 18.015625 
L 14.015625 47.703125 
L 6.390625 47.703125 
L 7.8125 54.6875 
L 15.28125 54.6875 
L 18.3125 70.21875 
L 27.296875 70.21875 
L 24.3125 54.6875 
z
" id="DejaVuSans-Oblique-74"/>
      <path d="M 48.09375 32.234375 
Q 48.25 33.015625 48.3125 33.84375 
Q 48.390625 34.671875 48.390625 35.5 
Q 48.390625 41.453125 44.890625 44.921875 
Q 41.40625 48.390625 35.40625 48.390625 
Q 28.71875 48.390625 23.578125 44.15625 
Q 18.453125 39.9375 15.828125 32.171875 
z
M 55.90625 25.203125 
L 14.109375 25.203125 
Q 13.8125 23.34375 13.71875 22.265625 
Q 13.625 21.1875 13.625 20.40625 
Q 13.625 13.625 17.796875 9.90625 
Q 21.96875 6.203125 29.59375 6.203125 
Q 35.453125 6.203125 40.671875 7.515625 
Q 45.90625 8.84375 50.390625 11.375 
L 48.6875 2.484375 
Q 43.84375 0.53125 38.6875 -0.4375 
Q 33.546875 -1.421875 28.21875 -1.421875 
Q 16.84375 -1.421875 10.71875 4.015625 
Q 4.59375 9.46875 4.59375 19.484375 
Q 4.59375 28.03125 7.640625 35.375 
Q 10.6875 42.71875 16.609375 48.484375 
Q 20.40625 52.09375 25.65625 54.046875 
Q 30.90625 56 36.8125 56 
Q 46.09375 56 51.578125 50.4375 
Q 57.078125 44.875 57.078125 35.5 
Q 57.078125 33.25 56.78125 30.6875 
Q 56.5 28.125 55.90625 25.203125 
" id="DejaVuSans-Oblique-65"/>
      <path d="M 49.609375 33.6875 
Q 49.609375 40.875 46.484375 44.671875 
Q 43.359375 48.484375 37.5 48.484375 
Q 33.5 48.484375 29.859375 46.4375 
Q 26.21875 44.390625 23.390625 40.484375 
Q 20.609375 36.625 18.9375 31.15625 
Q 17.28125 25.6875 17.28125 20.3125 
Q 17.28125 13.484375 20.40625 9.796875 
Q 23.53125 6.109375 29.296875 6.109375 
Q 33.546875 6.109375 37.1875 8.109375 
Q 40.828125 10.109375 43.40625 13.921875 
Q 46.1875 17.921875 47.890625 23.34375 
Q 49.609375 28.765625 49.609375 33.6875 
M 21.78125 46.390625 
Q 25.390625 51.125 30.296875 53.5625 
Q 35.203125 56 41.21875 56 
Q 49.609375 56 54.25 50.5 
Q 58.890625 45.015625 58.890625 35.109375 
Q 58.890625 27 56 19.65625 
Q 53.125 12.3125 47.703125 6.5 
Q 44.09375 2.640625 39.546875 0.609375 
Q 35.015625 -1.421875 29.984375 -1.421875 
Q 24.171875 -1.421875 20.21875 1 
Q 16.265625 3.421875 14.3125 8.203125 
L 8.6875 -20.796875 
L -0.296875 -20.796875 
L 14.40625 54.6875 
L 23.390625 54.6875 
z
" id="DejaVuSans-Oblique-70"/>
      <path d="M 30.421875 75.984375 
L 30.421875 -13.1875 
L 9.71875 -13.1875 
L 9.71875 -6.203125 
L 21.390625 -6.203125 
L 21.390625 69 
L 9.71875 69 
L 9.71875 75.984375 
z
" id="DejaVuSans-5d"/>
     </defs>
     <g style="fill:#01769d;" transform="translate(217.11 335.862125)scale(0.1 -0.1)">
      <use transform="translate(0 0.015625)" xlink:href="#DejaVuSans-Oblique-78"/>
      <use transform="translate(86.238823 0.015625)" xlink:href="#DejaVuSans-5b"/>
      <use transform="translate(125.252495 0.015625)" xlink:href="#DejaVuSans-Oblique-73"/>
      <use transform="translate(177.352104 0.015625)" xlink:href="#DejaVuSans-Oblique-74"/>
      <use transform="translate(216.561089 0.015625)" xlink:href="#DejaVuSans-Oblique-65"/>
      <use transform="translate(278.084526 0.015625)" xlink:href="#DejaVuSans-Oblique-70"/>
      <use transform="translate(341.561089 0.015625)" xlink:href="#DejaVuSans-5d"/>
     </g>
    </g>
   </g>
   <g id="matplotlib.axis_2">
    <g id="ytick_1">
     <g id="line2d_14">
      <path clip-path="url(#p8b0ee4a59c)" d="M 57.6 293.591653 
L 414.72 293.591653 
" style="fill:none;stroke:#08bdf9;stroke-dasharray:2.2,2.2;stroke-dashoffset:0;stroke-width:0.8;"/>
     </g>
     <g id="line2d_15">
      <defs>
       <path d="M 0 0 
L -3.5 0 
" id="m16ddc174ff" style="stroke:#01769d;stroke-width:0.8;"/>
      </defs>
      <g>
       <use style="fill:#01769d;stroke:#01769d;stroke-width:0.8;" x="57.6" xlink:href="#m16ddc174ff" y="293.591653"/>
      </g>
     </g>
     <g id="text_7">
      <!-- 0.40 -->
      <defs>
       <path d="M 10.6875 12.40625 
L 21 12.40625 
L 21 0 
L 10.6875 0 
z
" id="DejaVuSans-2e"/>
      </defs>
      <g style="fill:#01769d;" transform="translate(28.334375 297.390872)scale(0.1 -0.1)">
       <use xlink:href="#DejaVuSans-30"/>
       <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
       <use x="95.410156" xlink:href="#DejaVuSans-34"/>
       <use x="159.033203" xlink:href="#DejaVuSans-30"/>
      </g>
     </g>
    </g>
    <g id="ytick_2">
     <g id="line2d_16">
      <path clip-path="url(#p8b0ee4a59c)" d="M 57.6 262.917436 
L 414.72 262.917436 
" style="fill:none;stroke:#08bdf9;stroke-dasharray:2.2,2.2;stroke-dashoffset:0;stroke-width:0.8;"/>
     </g>
     <g id="line2d_17">
      <g>
       <use style="fill:#01769d;stroke:#01769d;stroke-width:0.8;" x="57.6" xlink:href="#m16ddc174ff" y="262.917436"/>
      </g>
     </g>
     <g id="text_8">
      <!-- 0.45 -->
      <defs>
       <path d="M 10.796875 72.90625 
L 49.515625 72.90625 
L 49.515625 64.59375 
L 19.828125 64.59375 
L 19.828125 46.734375 
Q 21.96875 47.46875 24.109375 47.828125 
Q 26.265625 48.1875 28.421875 48.1875 
Q 40.625 48.1875 47.75 41.5 
Q 54.890625 34.8125 54.890625 23.390625 
Q 54.890625 11.625 47.5625 5.09375 
Q 40.234375 -1.421875 26.90625 -1.421875 
Q 22.3125 -1.421875 17.546875 -0.640625 
Q 12.796875 0.140625 7.71875 1.703125 
L 7.71875 11.625 
Q 12.109375 9.234375 16.796875 8.0625 
Q 21.484375 6.890625 26.703125 6.890625 
Q 35.15625 6.890625 40.078125 11.328125 
Q 45.015625 15.765625 45.015625 23.390625 
Q 45.015625 31 40.078125 35.4375 
Q 35.15625 39.890625 26.703125 39.890625 
Q 22.75 39.890625 18.8125 39.015625 
Q 14.890625 38.140625 10.796875 36.28125 
z
" id="DejaVuSans-35"/>
      </defs>
      <g style="fill:#01769d;" transform="translate(28.334375 266.716655)scale(0.1 -0.1)">
       <use xlink:href="#DejaVuSans-30"/>
       <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
       <use x="95.410156" xlink:href="#DejaVuSans-34"/>
       <use x="159.033203" xlink:href="#DejaVuSans-35"/>
      </g>
     </g>
    </g>
    <g id="ytick_3">
     <g id="line2d_18">
      <path clip-path="url(#p8b0ee4a59c)" d="M 57.6 232.243219 
L 414.72 232.243219 
" style="fill:none;stroke:#08bdf9;stroke-dasharray:2.2,2.2;stroke-dashoffset:0;stroke-width:0.8;"/>
     </g>
     <g id="line2d_19">
      <g>
       <use style="fill:#01769d;stroke:#01769d;stroke-width:0.8;" x="57.6" xlink:href="#m16ddc174ff" y="232.243219"/>
      </g>
     </g>
     <g id="text_9">
      <!-- 0.50 -->
      <g style="fill:#01769d;" transform="translate(28.334375 236.042438)scale(0.1 -0.1)">
       <use xlink:href="#DejaVuSans-30"/>
       <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
       <use x="95.410156" xlink:href="#DejaVuSans-35"/>
       <use x="159.033203" xlink:href="#DejaVuSans-30"/>
      </g>
     </g>
    </g>
    <g id="ytick_4">
     <g id="line2d_20">
      <path clip-path="url(#p8b0ee4a59c)" d="M 57.6 201.569002 
L 414.72 201.569002 
" style="fill:none;stroke:#08bdf9;stroke-dasharray:2.2,2.2;stroke-dashoffset:0;stroke-width:0.8;"/>
     </g>
     <g id="line2d_21">
      <g>
       <use style="fill:#01769d;stroke:#01769d;stroke-width:0.8;" x="57.6" xlink:href="#m16ddc174ff" y="201.569002"/>
      </g>
     </g>
     <g id="text_10">
      <!-- 0.55 -->
      <g style="fill:#01769d;" transform="translate(28.334375 205.368221)scale(0.1 -0.1)">
       <use xlink:href="#DejaVuSans-30"/>
       <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
       <use x="95.410156" xlink:href="#DejaVuSans-35"/>
       <use x="159.033203" xlink:href="#DejaVuSans-35"/>
      </g>
     </g>
    </g>
    <g id="ytick_5">
     <g id="line2d_22">
      <path clip-path="url(#p8b0ee4a59c)" d="M 57.6 170.894785 
L 414.72 170.894785 
" style="fill:none;stroke:#08bdf9;stroke-dasharray:2.2,2.2;stroke-dashoffset:0;stroke-width:0.8;"/>
     </g>
     <g id="line2d_23">
      <g>
       <use style="fill:#01769d;stroke:#01769d;stroke-width:0.8;" x="57.6" xlink:href="#m16ddc174ff" y="170.894785"/>
      </g>
     </g>
     <g id="text_11">
      <!-- 0.60 -->
      <defs>
       <path d="M 33.015625 40.375 
Q 26.375 40.375 22.484375 35.828125 
Q 18.609375 31.296875 18.609375 23.390625 
Q 18.609375 15.53125 22.484375 10.953125 
Q 26.375 6.390625 33.015625 6.390625 
Q 39.65625 6.390625 43.53125 10.953125 
Q 47.40625 15.53125 47.40625 23.390625 
Q 47.40625 31.296875 43.53125 35.828125 
Q 39.65625 40.375 33.015625 40.375 
M 52.59375 71.296875 
L 52.59375 62.3125 
Q 48.875 64.0625 45.09375 64.984375 
Q 41.3125 65.921875 37.59375 65.921875 
Q 27.828125 65.921875 22.671875 59.328125 
Q 17.53125 52.734375 16.796875 39.40625 
Q 19.671875 43.65625 24.015625 45.921875 
Q 28.375 48.1875 33.59375 48.1875 
Q 44.578125 48.1875 50.953125 41.515625 
Q 57.328125 34.859375 57.328125 23.390625 
Q 57.328125 12.15625 50.6875 5.359375 
Q 44.046875 -1.421875 33.015625 -1.421875 
Q 20.359375 -1.421875 13.671875 8.265625 
Q 6.984375 17.96875 6.984375 36.375 
Q 6.984375 53.65625 15.1875 63.9375 
Q 23.390625 74.21875 37.203125 74.21875 
Q 40.921875 74.21875 44.703125 73.484375 
Q 48.484375 72.75 52.59375 71.296875 
" id="DejaVuSans-36"/>
      </defs>
      <g style="fill:#01769d;" transform="translate(28.334375 174.694004)scale(0.1 -0.1)">
       <use xlink:href="#DejaVuSans-30"/>
       <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
       <use x="95.410156" xlink:href="#DejaVuSans-36"/>
       <use x="159.033203" xlink:href="#DejaVuSans-30"/>
      </g>
     </g>
    </g>
    <g id="ytick_6">
     <g id="line2d_24">
      <path clip-path="url(#p8b0ee4a59c)" d="M 57.6 140.220568 
L 414.72 140.220568 
" style="fill:none;stroke:#08bdf9;stroke-dasharray:2.2,2.2;stroke-dashoffset:0;stroke-width:0.8;"/>
     </g>
     <g id="line2d_25">
      <g>
       <use style="fill:#01769d;stroke:#01769d;stroke-width:0.8;" x="57.6" xlink:href="#m16ddc174ff" y="140.220568"/>
      </g>
     </g>
     <g id="text_12">
      <!-- 0.65 -->
      <g style="fill:#01769d;" transform="translate(28.334375 144.019787)scale(0.1 -0.1)">
       <use xlink:href="#DejaVuSans-30"/>
       <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
       <use x="95.410156" xlink:href="#DejaVuSans-36"/>
       <use x="159.033203" xlink:href="#DejaVuSans-35"/>
      </g>
     </g>
    </g>
    <g id="ytick_7">
     <g id="line2d_26">
      <path clip-path="url(#p8b0ee4a59c)" d="M 57.6 109.546351 
L 414.72 109.546351 
" style="fill:none;stroke:#08bdf9;stroke-dasharray:2.2,2.2;stroke-dashoffset:0;stroke-width:0.8;"/>
     </g>
     <g id="line2d_27">
      <g>
       <use style="fill:#01769d;stroke:#01769d;stroke-width:0.8;" x="57.6" xlink:href="#m16ddc174ff" y="109.546351"/>
      </g>
     </g>
     <g id="text_13">
      <!-- 0.70 -->
      <defs>
       <path d="M 8.203125 72.90625 
L 55.078125 72.90625 
L 55.078125 68.703125 
L 28.609375 0 
L 18.3125 0 
L 43.21875 64.59375 
L 8.203125 64.59375 
z
" id="DejaVuSans-37"/>
      </defs>
      <g style="fill:#01769d;" transform="translate(28.334375 113.34557)scale(0.1 -0.1)">
       <use xlink:href="#DejaVuSans-30"/>
       <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
       <use x="95.410156" xlink:href="#DejaVuSans-37"/>
       <use x="159.033203" xlink:href="#DejaVuSans-30"/>
      </g>
     </g>
    </g>
    <g id="ytick_8">
     <g id="line2d_28">
      <path clip-path="url(#p8b0ee4a59c)" d="M 57.6 78.872134 
L 414.72 78.872134 
" style="fill:none;stroke:#08bdf9;stroke-dasharray:2.2,2.2;stroke-dashoffset:0;stroke-width:0.8;"/>
     </g>
     <g id="line2d_29">
      <g>
       <use style="fill:#01769d;stroke:#01769d;stroke-width:0.8;" x="57.6" xlink:href="#m16ddc174ff" y="78.872134"/>
      </g>
     </g>
     <g id="text_14">
      <!-- 0.75 -->
      <g style="fill:#01769d;" transform="translate(28.334375 82.671353)scale(0.1 -0.1)">
       <use xlink:href="#DejaVuSans-30"/>
       <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
       <use x="95.410156" xlink:href="#DejaVuSans-37"/>
       <use x="159.033203" xlink:href="#DejaVuSans-35"/>
      </g>
     </g>
    </g>
    <g id="ytick_9">
     <g id="line2d_30">
      <path clip-path="url(#p8b0ee4a59c)" d="M 57.6 48.197917 
L 414.72 48.197917 
" style="fill:none;stroke:#08bdf9;stroke-dasharray:2.2,2.2;stroke-dashoffset:0;stroke-width:0.8;"/>
     </g>
     <g id="line2d_31">
      <g>
       <use style="fill:#01769d;stroke:#01769d;stroke-width:0.8;" x="57.6" xlink:href="#m16ddc174ff" y="48.197917"/>
      </g>
     </g>
     <g id="text_15">
      <!-- 0.80 -->
      <defs>
       <path d="M 31.78125 34.625 
Q 24.75 34.625 20.71875 30.859375 
Q 16.703125 27.09375 16.703125 20.515625 
Q 16.703125 13.921875 20.71875 10.15625 
Q 24.75 6.390625 31.78125 6.390625 
Q 38.8125 6.390625 42.859375 10.171875 
Q 46.921875 13.96875 46.921875 20.515625 
Q 46.921875 27.09375 42.890625 30.859375 
Q 38.875 34.625 31.78125 34.625 
M 21.921875 38.8125 
Q 15.578125 40.375 12.03125 44.71875 
Q 8.5 49.078125 8.5 55.328125 
Q 8.5 64.0625 14.71875 69.140625 
Q 20.953125 74.21875 31.78125 74.21875 
Q 42.671875 74.21875 48.875 69.140625 
Q 55.078125 64.0625 55.078125 55.328125 
Q 55.078125 49.078125 51.53125 44.71875 
Q 48 40.375 41.703125 38.8125 
Q 48.828125 37.15625 52.796875 32.3125 
Q 56.78125 27.484375 56.78125 20.515625 
Q 56.78125 9.90625 50.3125 4.234375 
Q 43.84375 -1.421875 31.78125 -1.421875 
Q 19.734375 -1.421875 13.25 4.234375 
Q 6.78125 9.90625 6.78125 20.515625 
Q 6.78125 27.484375 10.78125 32.3125 
Q 14.796875 37.15625 21.921875 38.8125 
M 18.3125 54.390625 
Q 18.3125 48.734375 21.84375 45.5625 
Q 25.390625 42.390625 31.78125 42.390625 
Q 38.140625 42.390625 41.71875 45.5625 
Q 45.3125 48.734375 45.3125 54.390625 
Q 45.3125 60.0625 41.71875 63.234375 
Q 38.140625 66.40625 31.78125 66.40625 
Q 25.390625 66.40625 21.84375 63.234375 
Q 18.3125 60.0625 18.3125 54.390625 
" id="DejaVuSans-38"/>
      </defs>
      <g style="fill:#01769d;" transform="translate(28.334375 51.997136)scale(0.1 -0.1)">
       <use xlink:href="#DejaVuSans-30"/>
       <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
       <use x="95.410156" xlink:href="#DejaVuSans-38"/>
       <use x="159.033203" xlink:href="#DejaVuSans-30"/>
      </g>
     </g>
    </g>
    <g id="text_16">
     <!-- $I_{pd}\;[nA]$ -->
     <defs>
      <path d="M 16.890625 72.90625 
L 26.8125 72.90625 
L 12.59375 0 
L 2.6875 0 
z
" id="DejaVuSans-Oblique-49"/>
      <path d="M 41.796875 8.203125 
Q 38.1875 3.46875 33.25 1.015625 
Q 28.328125 -1.421875 22.3125 -1.421875 
Q 14.109375 -1.421875 9.34375 4.171875 
Q 4.59375 9.765625 4.59375 19.484375 
Q 4.59375 27.59375 7.46875 34.9375 
Q 10.359375 42.28125 15.828125 48.09375 
Q 19.4375 51.953125 23.96875 53.96875 
Q 28.515625 56 33.5 56 
Q 38.765625 56 42.796875 53.453125 
Q 46.828125 50.921875 49.03125 46.1875 
L 54.890625 75.984375 
L 63.921875 75.984375 
L 49.125 0 
L 40.09375 0 
z
M 13.921875 21.09375 
Q 13.921875 14.015625 17.109375 10.0625 
Q 20.3125 6.109375 25.984375 6.109375 
Q 30.171875 6.109375 33.765625 8.125 
Q 37.359375 10.15625 40.09375 14.109375 
Q 42.96875 18.21875 44.625 23.578125 
Q 46.296875 28.953125 46.296875 34.1875 
Q 46.296875 40.96875 43.09375 44.765625 
Q 39.890625 48.578125 34.28125 48.578125 
Q 30.03125 48.578125 26.359375 46.578125 
Q 22.703125 44.578125 20.125 40.828125 
Q 17.28125 36.765625 15.59375 31.390625 
Q 13.921875 26.03125 13.921875 21.09375 
" id="DejaVuSans-Oblique-64"/>
      <path d="M 55.71875 33.015625 
L 49.3125 0 
L 40.28125 0 
L 46.6875 32.671875 
Q 47.125 34.96875 47.359375 36.71875 
Q 47.609375 38.484375 47.609375 39.5 
Q 47.609375 43.609375 45.015625 45.890625 
Q 42.4375 48.1875 37.796875 48.1875 
Q 30.5625 48.1875 25.34375 43.375 
Q 20.125 38.578125 18.5 30.328125 
L 12.5 0 
L 3.515625 0 
L 14.109375 54.6875 
L 23.09375 54.6875 
L 21.296875 46.09375 
Q 25.046875 50.828125 30.3125 53.40625 
Q 35.59375 56 41.40625 56 
Q 48.640625 56 52.609375 52.09375 
Q 56.59375 48.1875 56.59375 41.109375 
Q 56.59375 39.359375 56.375 37.359375 
Q 56.15625 35.359375 55.71875 33.015625 
" id="DejaVuSans-Oblique-6e"/>
      <path d="M 36.8125 72.90625 
L 48 72.90625 
L 61.53125 0 
L 51.21875 0 
L 48.1875 18.703125 
L 15.375 18.703125 
L 5.078125 0 
L -5.328125 0 
z
M 40.375 63.1875 
L 19.921875 26.90625 
L 46.6875 26.90625 
z
" id="DejaVuSans-Oblique-41"/>
     </defs>
     <g style="fill:#01769d;" transform="translate(21.234375 192.428)rotate(-90)scale(0.1 -0.1)">
      <use transform="translate(0 0.015625)" xlink:href="#DejaVuSans-Oblique-49"/>
      <use transform="translate(29.492188 -16.390625)scale(0.7)" xlink:href="#DejaVuSans-Oblique-70"/>
      <use transform="translate(73.925781 -16.390625)scale(0.7)" xlink:href="#DejaVuSans-Oblique-64"/>
      <use transform="translate(148.152886 0.015625)" xlink:href="#DejaVuSans-5b"/>
      <use transform="translate(187.166558 0.015625)" xlink:href="#DejaVuSans-Oblique-6e"/>
      <use transform="translate(250.545464 0.015625)" xlink:href="#DejaVuSans-Oblique-41"/>
      <use transform="translate(318.953667 0.015625)" xlink:href="#DejaVuSans-5d"/>
     </g>
    </g>
   </g>
   <g id="line2d_32">
    <path clip-path="url(#p8b0ee4a59c)" d="M 73.832727 229.254551 
L 76.151688 229.799644 
L 78.470649 229.356992 
L 83.108571 229.369103 
L 85.427532 225.933628 
L 87.746494 229.443831 
L 90.065455 232.097232 
L 92.384416 232.987623 
L 97.022338 233.529526 
L 101.66026 234.414877 
L 108.617143 236.206937 
L 115.574026 237.969285 
L 120.211948 238.856009 
L 129.487792 240.22853 
L 134.125714 240.973581 
L 138.763636 241.925383 
L 145.720519 243.709624 
L 154.996364 246.119489 
L 159.634286 247.091671 
L 166.591169 248.295183 
L 178.185974 250.205836 
L 189.780779 252.479596 
L 201.375584 254.702215 
L 208.332468 255.835369 
L 215.289351 256.768319 
L 222.246234 257.474385 
L 247.754805 259.51029 
L 250.073766 259.489106 
L 252.392727 258.687217 
L 254.711688 256.609182 
L 257.030649 253.720687 
L 259.34961 250.520642 
L 261.668571 246.679736 
L 263.987532 241.661606 
L 266.306494 234.929887 
L 268.625455 225.948216 
L 270.944416 214.589139 
L 273.263377 202.36085 
L 275.582338 191.180454 
L 277.901299 182.965057 
L 280.22026 179.017992 
L 282.539221 178.18751 
L 284.858182 178.708092 
L 287.177143 179.524652 
L 289.496104 182.423851 
L 291.815065 187.244934 
L 294.134026 187.246834 
L 296.452987 187.360453 
L 298.771948 189.06971 
L 301.090909 192.256652 
L 303.40987 196.232619 
L 305.728831 196.11432 
L 308.047792 194.06857 
L 310.366753 193.591043 
L 312.685714 194.781458 
L 315.004675 196.890543 
L 317.323636 199.169029 
L 319.642597 201.029081 
L 321.961558 202.528605 
L 326.599481 205.323434 
L 328.918442 207.057422 
L 331.237403 209.276678 
L 333.556364 212.042703 
L 335.875325 215.385429 
L 338.194286 219.334787 
L 340.513247 223.887033 
L 342.832208 228.903715 
L 352.108052 250.110621 
L 354.427013 254.436255 
L 356.745974 257.711033 
L 361.383896 263.50276 
L 363.702857 263.026917 
L 366.021818 259.707872 
L 368.340779 265.840603 
L 370.65974 272.316177 
L 372.978701 266.154864 
L 375.297662 267.729151 
L 377.616623 278.002179 
L 379.935584 271.030216 
L 382.254545 266.26178 
L 384.573506 266.550933 
L 386.892468 267.435482 
L 389.211429 267.500125 
L 391.53039 266.697259 
L 393.849351 267.403184 
L 396.168312 270.315468 
L 398.487273 266.992838 
L 398.487273 266.992838 
" style="fill:none;stroke:#fe3ea0;stroke-linecap:square;stroke-width:1.5;"/>
   </g>
   <g id="line2d_33">
    <path clip-path="url(#p8b0ee4a59c)" d="M 73.832727 268.775496 
L 83.108571 268.965672 
L 92.384416 269.392576 
L 103.979221 270.160076 
L 143.401558 273.067229 
L 152.677403 273.448409 
L 159.634286 273.521763 
L 161.953247 273.404978 
L 164.272208 273.152578 
L 166.591169 272.724921 
L 168.91013 272.082368 
L 171.229091 271.185277 
L 173.548052 269.994005 
L 175.867013 268.468913 
L 178.185974 266.588979 
L 180.504935 264.407671 
L 185.142857 259.429279 
L 192.09974 251.503569 
L 194.418701 249.027849 
L 196.737662 246.755368 
L 199.056623 244.744238 
L 201.375584 242.996677 
L 203.694545 241.500929 
L 206.013506 240.245238 
L 208.332468 239.217847 
L 210.651429 238.407 
L 212.97039 237.800941 
L 215.289351 237.387913 
L 217.608312 237.156161 
L 219.927273 237.093928 
L 222.246234 237.189457 
L 224.565195 237.430993 
L 226.884156 237.806779 
L 231.522078 238.914076 
L 236.16 240.417298 
L 240.797922 242.231375 
L 245.435844 244.307155 
L 250.073766 246.604464 
L 257.030649 250.37792 
L 263.987532 254.42385 
L 284.858182 266.840656 
L 291.815065 270.620657 
L 296.452987 272.923785 
L 301.090909 275.006547 
L 305.728831 276.828769 
L 310.366753 278.35028 
L 315.004675 279.530907 
L 319.642597 280.33244 
L 324.280519 280.761792 
L 328.918442 280.871001 
L 333.556364 280.714064 
L 338.194286 280.344983 
L 345.151169 279.511711 
L 363.702857 276.936022 
L 368.340779 276.504224 
L 372.978701 276.265275 
L 377.616623 276.273173 
L 382.254545 276.581917 
L 386.892468 277.245507 
L 391.53039 278.317942 
L 393.849351 279.024351 
L 396.168312 279.85322 
L 398.487273 280.811301 
L 398.487273 280.811301 
" style="fill:none;stroke:#fe3ea0;stroke-linecap:square;stroke-width:1.5;"/>
   </g>
   <g id="line2d_34">
    <path clip-path="url(#p8b0ee4a59c)" d="M 73.832727 242.048999 
L 76.151688 242.67371 
L 78.470649 243.202008 
L 83.108571 244.01748 
L 87.746494 244.591649 
L 97.022338 245.400996 
L 103.979221 246.090301 
L 108.617143 246.769458 
L 113.255065 247.736583 
L 117.892987 249.02235 
L 120.211948 249.413275 
L 122.530909 249.149679 
L 124.84987 247.850263 
L 127.168831 245.133729 
L 129.487792 240.618777 
L 131.806753 233.924107 
L 134.125714 224.66842 
L 136.444675 212.470417 
L 138.763636 197.280652 
L 143.401558 163.36953 
L 145.720519 147.867801 
L 148.039481 135.113737 
L 150.358442 124.877266 
L 152.677403 116.560341 
L 154.996364 109.564915 
L 157.315325 103.383886 
L 159.634286 97.873935 
L 161.953247 92.982687 
L 164.272208 88.657768 
L 166.591169 84.846803 
L 168.91013 81.497419 
L 171.229091 78.557241 
L 173.548052 75.973895 
L 175.867013 73.695007 
L 178.185974 71.668201 
L 180.504935 69.841105 
L 185.142857 66.576542 
L 192.09974 61.868159 
L 194.418701 60.139457 
L 199.056623 56.274871 
L 201.375584 54.909792 
L 203.694545 54.971786 
L 206.013506 57.284031 
L 208.332468 62.669708 
L 210.651429 71.754937 
L 212.97039 84.377608 
L 215.289351 100.178557 
L 217.608312 118.798615 
L 224.565195 181.890575 
L 226.884156 199.848194 
L 229.203117 213.852081 
L 231.522078 224.376459 
L 233.841039 232.332951 
L 236.16 238.633178 
L 238.478961 244.044457 
L 240.797922 248.756887 
L 243.116883 252.816261 
L 245.435844 256.26837 
L 247.754805 259.159008 
L 250.073766 261.533968 
L 252.392727 263.439043 
L 254.711688 264.920025 
L 257.030649 266.022707 
L 259.34961 266.792882 
L 261.668571 267.276342 
L 263.987532 267.518882 
L 266.306494 267.566292 
L 270.944416 267.258899 
L 280.22026 266.308721 
L 284.858182 266.180355 
L 289.496104 266.291405 
L 294.134026 266.589142 
L 301.090909 267.270436 
L 317.323636 269.03255 
L 324.280519 269.471298 
L 331.237403 269.668831 
L 340.513247 269.644443 
L 352.108052 269.320158 
L 372.978701 268.622238 
L 382.254545 268.55729 
L 389.211429 268.712572 
L 396.168312 269.098929 
L 398.487273 269.287811 
L 398.487273 269.287811 
" style="fill:none;stroke:#fe3ea0;stroke-linecap:square;stroke-width:1.5;"/>
   </g>
   <g id="patch_3">
    <path d="M 57.6 307.584 
L 57.6 41.472 
" style="fill:none;stroke:#08bdf9;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/>
   </g>
   <g id="patch_4">
    <path d="M 57.6 307.584 
L 414.72 307.584 
" style="fill:none;stroke:#08bdf9;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/>
   </g>
  </g>
 </g>
 <defs>
  <clipPath id="p8b0ee4a59c">
   <rect height="266.112" width="357.12" x="57.6" y="41.472"/>
  </clipPath>
 </defs>
</svg>