summaryrefslogtreecommitdiff
path: root/static/images/raw_plot_cheap_rgb.svg
blob: 049aa7407e69c9dafe4a3307cbbfe4e45b74d917 (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
<?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(#p321e5a2317)" d="M 73.832727 240.086325 
L 73.832727 231.946445 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 76.151688 244.011396 
L 76.151688 232.638718 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 78.470649 241.58318 
L 78.470649 230.872911 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 80.78961 245.497172 
L 80.78961 231.936871 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 83.108571 242.556734 
L 83.108571 230.581376 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 85.427532 244.160879 
L 85.427532 233.398593 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 87.746494 243.295195 
L 87.746494 234.00558 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 90.065455 245.380949 
L 90.065455 234.005078 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 92.384416 242.838023 
L 92.384416 234.454913 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 94.703377 245.720057 
L 94.703377 234.78699 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 97.022338 244.19911 
L 97.022338 235.147721 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 99.341299 247.623112 
L 99.341299 236.333225 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 101.66026 244.829762 
L 101.66026 235.771356 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 103.979221 246.355718 
L 103.979221 234.433544 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 106.298182 245.335372 
L 106.298182 236.700337 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 108.617143 247.814283 
L 108.617143 237.576644 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 110.936104 245.353072 
L 110.936104 236.933495 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 113.255065 247.581604 
L 113.255065 237.934752 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 115.574026 246.202524 
L 115.574026 238.169294 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 117.892987 248.742834 
L 117.892987 238.811738 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 120.211948 246.533845 
L 120.211948 238.857082 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 122.530909 248.539481 
L 122.530909 238.975895 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 124.84987 247.000495 
L 124.84987 239.401701 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 127.168831 249.516484 
L 127.168831 239.582429 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 129.487792 273.167916 
L 129.487792 222.257308 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 131.806753 246.858141 
L 131.806753 240.179038 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 134.125714 250.337179 
L 134.125714 240.658844 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 136.444675 248.112579 
L 136.444675 241.229352 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 138.763636 250.295929 
L 138.763636 241.578095 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 141.082597 249.159673 
L 141.082597 240.93483 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 143.401558 250.784401 
L 143.401558 242.594767 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 145.720519 249.168629 
L 145.720519 242.289912 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 148.039481 251.742905 
L 148.039481 243.392265 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 150.358442 250.018401 
L 150.358442 243.282374 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 152.677403 251.916131 
L 152.677403 243.76779 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 154.996364 250.530222 
L 154.996364 243.585839 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 157.315325 252.111252 
L 157.315325 243.870562 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 159.634286 250.509336 
L 159.634286 244.00653 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 161.953247 252.345635 
L 161.953247 244.851269 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 164.272208 250.634293 
L 164.272208 244.02268 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 166.591169 253.340195 
L 166.591169 245.103158 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 168.91013 251.273909 
L 168.91013 245.436959 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 171.229091 253.178786 
L 171.229091 245.742764 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 173.548052 250.95606 
L 173.548052 245.315808 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 175.867013 253.797003 
L 175.867013 246.269083 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 178.185974 251.988583 
L 178.185974 246.250948 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 180.504935 254.007717 
L 180.504935 245.854547 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 182.823896 252.6514 
L 182.823896 246.764025 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 185.142857 254.418127 
L 185.142857 246.980639 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 187.461818 253.296301 
L 187.461818 246.283749 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 189.780779 255.466238 
L 189.780779 248.786032 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 192.09974 252.951716 
L 192.09974 247.576889 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 194.418701 255.254405 
L 194.418701 247.93172 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 196.737662 253.419717 
L 196.737662 247.563566 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 199.056623 255.706817 
L 199.056623 248.827667 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 201.375584 253.724972 
L 201.375584 248.175509 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 203.694545 255.826068 
L 203.694545 249.696167 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 206.013506 254.422286 
L 206.013506 248.458107 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 208.332468 255.648101 
L 208.332468 248.47874 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 210.651429 254.385562 
L 210.651429 249.560975 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 212.97039 255.874774 
L 212.97039 249.608264 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 215.289351 254.366239 
L 215.289351 249.89387 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 217.608312 256.924788 
L 217.608312 250.549431 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 219.927273 255.132439 
L 219.927273 250.632814 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 222.246234 257.22875 
L 222.246234 250.676631 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 224.565195 255.186782 
L 224.565195 250.03756 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 226.884156 257.729882 
L 226.884156 251.547376 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 229.203117 256.880152 
L 229.203117 251.573979 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 231.522078 257.85096 
L 231.522078 251.857458 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 233.841039 255.762063 
L 233.841039 251.45346 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 236.16 257.367638 
L 236.16 252.199674 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 238.478961 256.999016 
L 238.478961 251.964669 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 240.797922 258.509801 
L 240.797922 252.782155 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 243.116883 256.738605 
L 243.116883 252.703278 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 245.435844 258.223488 
L 245.435844 252.903843 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 247.754805 258.04342 
L 247.754805 252.433249 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 250.073766 259.372465 
L 250.073766 253.197296 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 252.392727 257.378836 
L 252.392727 253.24678 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 254.711688 258.426257 
L 254.711688 253.320378 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 257.030649 257.456252 
L 257.030649 253.404543 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 259.34961 258.915114 
L 259.34961 253.780076 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 261.668571 257.845439 
L 261.668571 253.399481 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 263.987532 259.489351 
L 263.987532 254.460125 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 266.306494 257.84081 
L 266.306494 253.537378 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 268.625455 260.333561 
L 268.625455 254.650702 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 270.944416 258.028365 
L 270.944416 252.761876 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 273.263377 258.547579 
L 273.263377 253.630217 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 275.582338 257.702115 
L 275.582338 253.182198 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 277.901299 259.125276 
L 277.901299 253.522878 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 280.22026 257.614758 
L 280.22026 252.901108 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 282.539221 257.031126 
L 282.539221 251.407326 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 284.858182 255.561719 
L 284.858182 250.713088 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 287.177143 255.691797 
L 287.177143 250.073457 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 289.496104 252.553989 
L 289.496104 247.237722 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 291.815065 271.047907 
L 291.815065 216.545862 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 294.134026 249.30243 
L 294.134026 240.282519 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 296.452987 243.315291 
L 296.452987 235.5847 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 298.771948 236.906702 
L 298.771948 225.217199 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 301.090909 229.639824 
L 301.090909 215.707987 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 303.40987 221.845894 
L 303.40987 202.500447 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 305.728831 208.048434 
L 305.728831 184.94073 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 308.047792 190.740351 
L 308.047792 158.873996 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 310.366753 178.531124 
L 310.366753 141.340941 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 312.685714 162.582599 
L 312.685714 116.360509 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 315.004675 153.722861 
L 315.004675 101.028185 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 317.323636 142.120208 
L 317.323636 81.673464 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 319.642597 135.55531 
L 319.642597 73.226114 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 321.961558 129.412513 
L 321.961558 63.909821 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 324.280519 125.895497 
L 324.280519 60.920224 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 326.599481 123.754262 
L 326.599481 59.698401 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 328.918442 120.277855 
L 328.918442 58.306607 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 331.237403 122.713299 
L 331.237403 57.995611 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 333.556364 119.635386 
L 333.556364 58.4552 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 335.875325 120.447889 
L 335.875325 55.149801 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 338.194286 119.857201 
L 338.194286 55.905114 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 340.513247 129.080796 
L 340.513247 57.319442 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 342.832208 128.428629 
L 342.832208 55.368963 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 345.151169 134.32519 
L 345.151169 55.093176 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 347.47013 134.532537 
L 347.47013 54.736883 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 349.789091 140.909293 
L 349.789091 54.866741 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 352.108052 139.462115 
L 352.108052 54.369774 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 354.427013 146.286599 
L 354.427013 55.274835 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 356.745974 144.892062 
L 356.745974 54.372458 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 359.064935 148.986565 
L 359.064935 54.989371 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 361.383896 144.614697 
L 361.383896 53.568 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 363.702857 147.102419 
L 363.702857 55.031283 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 366.021818 137.529252 
L 366.021818 55.095386 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 368.340779 138.318991 
L 368.340779 56.586881 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 370.65974 132.887568 
L 370.65974 58.388711 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 372.978701 170.638609 
L 372.978701 100.096758 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 375.297662 192.502805 
L 375.297662 143.235992 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 377.616623 227.032121 
L 377.616623 192.344108 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 379.935584 234.343337 
L 379.935584 212.337154 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 382.254545 250.382639 
L 382.254545 235.314021 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 384.573506 250.351922 
L 384.573506 242.470657 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 386.892468 257.897707 
L 386.892468 250.438835 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 389.211429 258.278098 
L 389.211429 254.087842 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 391.53039 260.357165 
L 391.53039 255.450224 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 393.849351 255.573407 
L 393.849351 250.717079 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 396.168312 261.029524 
L 396.168312 255.514759 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 398.487273 259.290338 
L 398.487273 254.855121 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
   </g>
   <g id="LineCollection_2">
    <path clip-path="url(#p321e5a2317)" d="M 73.832727 258.003221 
L 73.832727 252.810537 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 76.151688 257.434787 
L 76.151688 253.51224 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 78.470649 258.337162 
L 78.470649 252.382525 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 80.78961 257.976028 
L 80.78961 253.613821 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 83.108571 259.347658 
L 83.108571 253.958997 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 85.427532 257.927963 
L 85.427532 253.622689 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 87.746494 259.761783 
L 87.746494 254.501266 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 90.065455 257.983517 
L 90.065455 253.974778 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 92.384416 260.34647 
L 92.384416 254.504525 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 94.703377 257.968398 
L 94.703377 253.668487 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 97.022338 259.116865 
L 97.022338 254.213308 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 99.341299 258.470215 
L 99.341299 254.734529 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 101.66026 259.00422 
L 101.66026 253.824237 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 103.979221 257.205423 
L 103.979221 252.526513 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 106.298182 260.25899 
L 106.298182 255.281864 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 108.617143 259.854911 
L 108.617143 256.1563 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 110.936104 258.830277 
L 110.936104 253.104501 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 113.255065 259.60195 
L 113.255065 255.53126 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 115.574026 261.004839 
L 115.574026 256.213624 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 117.892987 259.80251 
L 117.892987 256.185183 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 120.211948 260.518221 
L 120.211948 255.657615 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 122.530909 259.869216 
L 122.530909 255.961691 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 124.84987 261.365572 
L 124.84987 256.432998 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 127.168831 259.227035 
L 127.168831 254.526459 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 129.487792 261.240527 
L 129.487792 256.754026 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 131.806753 259.878938 
L 131.806753 256.712381 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 134.125714 261.872378 
L 134.125714 256.443585 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 136.444675 260.48351 
L 136.444675 256.672238 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 138.763636 263.160935 
L 138.763636 258.126121 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 141.082597 260.216287 
L 141.082597 256.735639 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 143.401558 261.847947 
L 143.401558 257.126518 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 145.720519 260.23023 
L 145.720519 257.105822 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 148.039481 262.439429 
L 148.039481 257.899072 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 150.358442 260.151638 
L 150.358442 256.133948 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 152.677403 264.920469 
L 152.677403 258.483196 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 154.996364 260.575659 
L 154.996364 257.019089 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 157.315325 262.433081 
L 157.315325 257.286116 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 159.634286 261.013879 
L 159.634286 257.247209 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 161.953247 262.203086 
L 161.953247 257.712094 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 164.272208 261.070871 
L 164.272208 257.566503 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 166.591169 261.82359 
L 166.591169 257.456607 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 168.91013 260.542389 
L 168.91013 257.342413 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 171.229091 262.880936 
L 171.229091 258.531549 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 173.548052 261.532963 
L 173.548052 258.23327 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 175.867013 249.830631 
L 175.867013 233.40449 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 178.185974 270.492966 
L 178.185974 262.639264 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 180.504935 261.269114 
L 180.504935 257.924851 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 182.823896 261.4962 
L 182.823896 258.011337 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 185.142857 262.634027 
L 185.142857 258.378654 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 187.461818 261.771809 
L 187.461818 258.159049 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 189.780779 263.505036 
L 189.780779 258.738414 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 192.09974 260.795675 
L 192.09974 256.258163 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 194.418701 262.714165 
L 194.418701 257.977105 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 196.737662 261.624208 
L 196.737662 257.326739 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 199.056623 261.695183 
L 199.056623 257.577174 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 201.375584 260.263756 
L 201.375584 255.888562 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 203.694545 261.647258 
L 203.694545 256.849009 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 206.013506 259.144195 
L 206.013506 254.523067 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 208.332468 258.869531 
L 208.332468 254.060837 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 210.651429 256.91143 
L 210.651429 252.875382 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 212.97039 256.04327 
L 212.97039 250.874359 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 215.289351 253.859966 
L 215.289351 249.279123 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 217.608312 253.1461 
L 217.608312 246.669129 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 219.927273 250.119777 
L 219.927273 244.466642 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 222.246234 250.475136 
L 222.246234 242.535585 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 224.565195 248.392954 
L 224.565195 240.823549 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 226.884156 247.930224 
L 226.884156 238.362222 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 229.203117 245.795421 
L 229.203117 236.969343 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 231.522078 267.660628 
L 231.522078 215.409868 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 233.841039 246.388528 
L 233.841039 234.973002 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 236.16 242.239348 
L 236.16 232.756675 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 238.478961 241.765208 
L 238.478961 231.380741 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 240.797922 241.962143 
L 240.797922 233.190666 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 243.116883 237.940363 
L 243.116883 226.260951 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 245.435844 237.788966 
L 245.435844 225.84008 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 247.754805 242.611668 
L 247.754805 227.6651 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 250.073766 225.879982 
L 250.073766 211.032748 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 252.392727 236.700718 
L 252.392727 220.986142 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 254.711688 234.469786 
L 254.711688 220.951518 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 257.030649 234.578868 
L 257.030649 218.545523 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 259.34961 232.640396 
L 259.34961 218.492815 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 261.668571 233.61043 
L 261.668571 217.036745 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 263.987532 230.572273 
L 263.987532 215.465396 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 266.306494 231.405081 
L 266.306494 214.295499 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 268.625455 229.221235 
L 268.625455 213.437698 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 270.944416 230.325106 
L 270.944416 211.808595 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 273.263377 227.541269 
L 273.263377 211.28425 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 275.582338 229.500892 
L 275.582338 209.755787 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 277.901299 226.649847 
L 277.901299 209.588704 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 280.22026 228.606006 
L 280.22026 209.216083 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 282.539221 226.714035 
L 282.539221 209.430445 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 284.858182 230.886034 
L 284.858182 211.733703 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 287.177143 227.673661 
L 287.177143 211.551661 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 289.496104 232.144192 
L 289.496104 214.254085 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 291.815065 232.222361 
L 291.815065 216.300364 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 294.134026 238.585385 
L 294.134026 222.245033 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 296.452987 236.840687 
L 296.452987 224.311141 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 298.771948 243.021162 
L 298.771948 229.850412 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 301.090909 243.509706 
L 301.090909 233.101211 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 303.40987 248.778101 
L 303.40987 238.219882 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 305.728831 248.789871 
L 305.728831 241.155686 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 308.047792 253.228373 
L 308.047792 245.003319 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 310.366753 253.00092 
L 310.366753 247.480649 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 312.685714 258.839698 
L 312.685714 249.198951 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 315.004675 256.708484 
L 315.004675 252.474701 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 317.323636 259.869346 
L 317.323636 254.268274 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 319.642597 258.876771 
L 319.642597 255.080545 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 321.961558 261.978859 
L 321.961558 256.50173 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 324.280519 261.591521 
L 324.280519 257.845462 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 326.599481 263.182199 
L 326.599481 259.061251 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 328.918442 262.585555 
L 328.918442 258.819091 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 331.237403 264.188411 
L 331.237403 260.336274 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 333.556364 264.008843 
L 333.556364 259.888698 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 335.875325 265.451018 
L 335.875325 261.080527 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 338.194286 263.713121 
L 338.194286 259.549438 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 340.513247 265.216958 
L 340.513247 260.7188 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 342.832208 264.786059 
L 342.832208 260.80477 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 345.151169 265.769026 
L 345.151169 261.860019 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 347.47013 265.867492 
L 347.47013 261.745875 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 349.789091 266.035583 
L 349.789091 262.220606 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 352.108052 266.275272 
L 352.108052 261.667345 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 354.427013 266.194012 
L 354.427013 262.234641 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 356.745974 265.53657 
L 356.745974 261.167439 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 359.064935 265.335838 
L 359.064935 259.917901 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 361.383896 264.648142 
L 361.383896 260.13524 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 363.702857 265.887995 
L 363.702857 260.74546 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 366.021818 265.648943 
L 366.021818 261.023709 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 368.340779 266.833714 
L 368.340779 262.778673 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 370.65974 266.003869 
L 370.65974 261.194016 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 372.978701 267.633006 
L 372.978701 263.711865 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 375.297662 265.133324 
L 375.297662 261.186559 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 377.616623 266.558687 
L 377.616623 263.281039 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 379.935584 271.221126 
L 379.935584 260.131584 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 382.254545 266.039139 
L 382.254545 261.11171 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 384.573506 267.383909 
L 384.573506 261.773799 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 386.892468 266.992859 
L 386.892468 262.886064 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 389.211429 266.379004 
L 389.211429 261.81447 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 391.53039 295.488 
L 391.53039 241.477645 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 393.849351 266.351649 
L 393.849351 258.635554 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 396.168312 268.039934 
L 396.168312 263.195187 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 398.487273 266.005593 
L 398.487273 261.54506 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
   </g>
   <g id="LineCollection_3">
    <path clip-path="url(#p321e5a2317)" d="M 73.832727 230.971268 
L 73.832727 218.782227 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 76.151688 233.690155 
L 76.151688 220.398469 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 78.470649 235.40119 
L 78.470649 219.18131 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 80.78961 236.01252 
L 80.78961 221.399966 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 83.108571 235.785972 
L 83.108571 218.678938 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 85.427532 234.692793 
L 85.427532 220.493333 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 87.746494 237.027164 
L 87.746494 221.451466 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 90.065455 235.058229 
L 90.065455 221.554649 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 92.384416 237.628958 
L 92.384416 223.224977 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 94.703377 235.179567 
L 94.703377 222.452418 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 97.022338 238.001629 
L 97.022338 223.416736 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 99.341299 237.033249 
L 99.341299 223.530632 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 101.66026 239.731233 
L 101.66026 224.383849 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 103.979221 237.324301 
L 103.979221 224.768243 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 106.298182 239.63633 
L 106.298182 225.803593 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 108.617143 237.299497 
L 108.617143 225.694566 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 110.936104 240.936084 
L 110.936104 226.408788 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 113.255065 238.527679 
L 113.255065 226.818172 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 115.574026 241.171537 
L 115.574026 226.573139 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 117.892987 239.714553 
L 117.892987 228.014444 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 120.211948 241.735215 
L 120.211948 228.063356 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 122.530909 239.308427 
L 122.530909 228.749821 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 124.84987 242.581325 
L 124.84987 229.349533 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 127.168831 240.860085 
L 127.168831 229.479397 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 129.487792 242.855869 
L 129.487792 229.984347 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 131.806753 240.217385 
L 131.806753 230.075061 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 134.125714 243.158783 
L 134.125714 230.04988 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 136.444675 240.501521 
L 136.444675 230.214247 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 138.763636 243.180928 
L 138.763636 230.670558 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 141.082597 240.891082 
L 141.082597 230.357758 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 143.401558 242.672363 
L 143.401558 230.567657 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 145.720519 242.992819 
L 145.720519 232.630348 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 148.039481 242.623533 
L 148.039481 229.934469 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 150.358442 239.475904 
L 150.358442 227.931681 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 152.677403 238.266044 
L 152.677403 224.046 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 154.996364 250.042556 
L 154.996364 194.450772 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 157.315325 232.829239 
L 157.315325 218.139347 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 159.634286 226.155756 
L 159.634286 207.299846 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 161.953247 220.340096 
L 161.953247 200.721581 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 164.272208 211.594585 
L 164.272208 185.902173 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 166.591169 204.975252 
L 166.591169 178.293186 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 168.91013 195.879922 
L 168.91013 164.152848 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 171.229091 191.667425 
L 171.229091 156.692636 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 173.548052 186.439695 
L 173.548052 147.104099 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 175.867013 182.530817 
L 175.867013 142.013467 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 178.185974 176.51382 
L 178.185974 132.297 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 180.504935 172.442737 
L 180.504935 127.588074 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 182.823896 169.990194 
L 182.823896 121.048946 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 185.142857 166.710765 
L 185.142857 117.484671 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 187.461818 162.149915 
L 187.461818 111.203777 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 189.780779 160.546118 
L 189.780779 108.378372 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 192.09974 158.517546 
L 192.09974 103.34374 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 194.418701 154.605599 
L 194.418701 100.858823 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 196.737662 153.085291 
L 196.737662 96.421267 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 199.056623 151.9312 
L 199.056623 93.067764 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 201.375584 150.37125 
L 201.375584 90.088762 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 203.694545 147.067628 
L 203.694545 88.751522 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 206.013506 147.516837 
L 206.013506 85.785899 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 208.332468 145.24386 
L 208.332468 84.499837 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 210.651429 144.012841 
L 210.651429 80.917529 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 212.97039 140.664275 
L 212.97039 79.272464 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 215.289351 142.002369 
L 215.289351 76.625208 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 217.608312 137.955049 
L 217.608312 75.381004 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 219.927273 137.814413 
L 219.927273 72.456476 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 222.246234 137.194602 
L 222.246234 69.830819 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 224.565195 133.566483 
L 224.565195 66.309502 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 226.884156 131.445407 
L 226.884156 64.926414 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 229.203117 133.202062 
L 229.203117 66.454423 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 231.522078 128.563608 
L 231.522078 63.222225 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 233.841039 130.152953 
L 233.841039 63.4124 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 236.16 127.372831 
L 236.16 62.374785 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 238.478961 132.338897 
L 238.478961 63.100047 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 240.797922 131.322359 
L 240.797922 63.897085 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 243.116883 143.934956 
L 243.116883 77.209035 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 245.435844 152.192956 
L 245.435844 91.630114 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 247.754805 172.139783 
L 247.754805 118.554428 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 250.073766 184.444166 
L 250.073766 140.233387 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 252.392727 210.5631 
L 252.392727 173.348161 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 254.711688 214.681398 
L 254.711688 187.26024 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 257.030649 230.267506 
L 257.030649 205.814259 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 259.34961 232.339375 
L 259.34961 215.164242 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 261.668571 242.5695 
L 261.668571 227.801339 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 263.987532 241.996494 
L 263.987532 230.733972 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 266.306494 247.835709 
L 266.306494 236.057912 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 268.625455 247.289163 
L 268.625455 239.842088 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 270.944416 251.807319 
L 270.944416 242.653672 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 273.263377 250.397791 
L 273.263377 244.157271 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 275.582338 253.24138 
L 275.582338 245.67233 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 277.901299 252.440447 
L 277.901299 246.590852 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 280.22026 254.795171 
L 280.22026 247.536471 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 282.539221 252.961998 
L 282.539221 247.668517 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 284.858182 255.436226 
L 284.858182 248.173222 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 287.177143 253.358798 
L 287.177143 248.157557 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 289.496104 256.115517 
L 289.496104 249.485111 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 291.815065 254.811408 
L 291.815065 249.832826 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 294.134026 256.475794 
L 294.134026 250.159621 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 296.452987 254.731518 
L 296.452987 249.567787 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 298.771948 256.354878 
L 298.771948 250.311894 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 301.090909 255.433179 
L 301.090909 251.084646 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 303.40987 257.073824 
L 303.40987 251.184325 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 305.728831 255.809226 
L 305.728831 251.249511 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 308.047792 257.394648 
L 308.047792 251.349537 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 310.366753 255.836502 
L 310.366753 251.237913 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 312.685714 257.665647 
L 312.685714 251.799753 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 315.004675 277.524594 
L 315.004675 215.940807 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 317.323636 256.52824 
L 317.323636 252.239463 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 319.642597 258.576193 
L 319.642597 252.323798 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 321.961558 256.331353 
L 321.961558 252.295243 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 324.280519 258.264917 
L 324.280519 252.619396 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 326.599481 256.848923 
L 326.599481 252.020691 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 328.918442 258.707046 
L 328.918442 252.992553 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 331.237403 257.08537 
L 331.237403 252.513298 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 333.556364 258.717633 
L 333.556364 253.115234 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 335.875325 256.972861 
L 335.875325 252.766914 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 338.194286 258.679774 
L 338.194286 253.599933 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 340.513247 258.109139 
L 340.513247 253.543424 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 342.832208 259.119411 
L 342.832208 253.944225 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 345.151169 257.984571 
L 345.151169 252.993813 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 347.47013 259.055134 
L 347.47013 253.81252 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 349.789091 258.165565 
L 349.789091 253.808409 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 352.108052 260.017537 
L 352.108052 254.433654 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 354.427013 258.568549 
L 354.427013 254.01689 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 356.745974 261.355596 
L 356.745974 255.212205 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 359.064935 258.290839 
L 359.064935 254.255404 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 361.383896 260.610477 
L 361.383896 255.439931 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 363.702857 258.930359 
L 363.702857 254.391974 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 366.021818 260.683364 
L 366.021818 254.794775 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 368.340779 259.716589 
L 368.340779 255.048175 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 370.65974 260.742237 
L 370.65974 255.276813 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 372.978701 259.330783 
L 372.978701 255.449659 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 375.297662 260.998764 
L 375.297662 255.498484 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 377.616623 259.796202 
L 377.616623 255.305651 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 379.935584 261.692631 
L 379.935584 256.443029 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 382.254545 259.692122 
L 382.254545 255.354856 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 384.573506 262.451457 
L 384.573506 256.695472 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 386.892468 260.261489 
L 386.892468 256.314151 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 389.211429 260.881542 
L 389.211429 255.960635 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 391.53039 260.61831 
L 391.53039 256.051402 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 393.849351 262.146306 
L 393.849351 256.890872 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 396.168312 260.694887 
L 396.168312 256.045378 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
    <path clip-path="url(#p321e5a2317)" d="M 398.487273 261.616408 
L 398.487273 256.809305 
" style="fill:none;stroke:#ffd2e9;stroke-width:1.5;"/>
   </g>
   <g id="line2d_1">
    <path clip-path="url(#p321e5a2317)" d="M 73.832727 236.016385 
L 76.151688 238.325057 
L 78.470649 236.228046 
L 80.78961 238.717022 
L 83.108571 236.569055 
L 85.427532 238.779736 
L 87.746494 238.650388 
L 90.065455 239.693014 
L 92.384416 238.646468 
L 94.703377 240.253523 
L 97.022338 239.673416 
L 99.341299 241.978168 
L 101.66026 240.300559 
L 103.979221 240.394631 
L 106.298182 241.017855 
L 108.617143 242.695464 
L 110.936104 241.143283 
L 113.255065 242.758178 
L 115.574026 242.185909 
L 117.892987 243.777286 
L 120.211948 242.695464 
L 122.530909 243.757688 
L 124.84987 243.201098 
L 127.168831 244.549457 
L 129.487792 247.712612 
L 131.806753 243.518589 
L 134.125714 245.498011 
L 136.444675 244.670966 
L 138.763636 245.937012 
L 141.082597 245.047252 
L 143.401558 246.689584 
L 145.720519 245.729271 
L 148.039481 247.567585 
L 150.358442 246.650388 
L 152.677403 247.84196 
L 154.996364 247.058031 
L 157.315325 247.990907 
L 159.634286 247.257933 
L 161.953247 248.598452 
L 164.272208 247.328487 
L 166.591169 249.221676 
L 168.91013 248.355434 
L 171.229091 249.460775 
L 173.548052 248.135934 
L 175.867013 250.033043 
L 178.185974 249.119765 
L 180.504935 249.931132 
L 182.823896 249.707712 
L 185.142857 250.699383 
L 187.461818 249.790025 
L 189.780779 252.126135 
L 192.09974 250.264302 
L 194.418701 251.593063 
L 196.737662 250.491642 
L 199.056623 252.267242 
L 201.375584 250.950241 
L 203.694545 252.761118 
L 206.013506 251.440196 
L 208.332468 252.06342 
L 210.651429 251.973269 
L 212.97039 252.741519 
L 215.289351 252.130054 
L 217.608312 253.73711 
L 219.927273 252.882627 
L 222.246234 253.95269 
L 224.565195 252.612171 
L 226.884156 254.638629 
L 229.203117 254.227066 
L 231.522078 254.854209 
L 233.841039 253.607761 
L 236.16 254.783656 
L 238.478961 254.481843 
L 240.797922 255.645978 
L 243.116883 254.720941 
L 245.435844 255.563665 
L 247.754805 255.238335 
L 250.073766 256.28488 
L 252.392727 255.312808 
L 254.711688 255.873317 
L 257.030649 255.430397 
L 259.34961 256.347595 
L 261.668571 255.62246 
L 263.987532 256.974738 
L 266.306494 255.689094 
L 268.625455 257.492132 
L 270.944416 255.395121 
L 273.263377 256.088898 
L 275.582338 255.442156 
L 277.901299 256.324077 
L 284.858182 253.137404 
L 287.177143 252.882627 
L 289.496104 249.895855 
L 291.815065 243.796884 
L 294.134026 244.792475 
L 296.452987 239.449996 
L 301.090909 222.673906 
L 303.40987 212.173171 
L 305.728831 196.494582 
L 308.047792 174.807174 
L 310.366753 159.936032 
L 312.685714 139.471554 
L 315.004675 127.375523 
L 317.323636 111.896836 
L 321.961558 96.661167 
L 324.280519 93.40786 
L 326.599481 91.726332 
L 328.918442 89.292231 
L 331.237403 90.354455 
L 335.875325 87.798845 
L 338.194286 87.881158 
L 340.513247 93.200119 
L 342.832208 91.898796 
L 345.151169 94.709183 
L 347.47013 94.63471 
L 349.789091 97.888017 
L 352.108052 96.915945 
L 354.427013 100.780717 
L 356.745974 99.63226 
L 359.064935 101.987968 
L 361.383896 99.091349 
L 363.702857 101.066851 
L 366.021818 96.312319 
L 368.340779 97.452936 
L 370.65974 95.63814 
L 372.978701 135.367684 
L 375.297662 167.869398 
L 377.616623 209.688114 
L 379.935584 223.340246 
L 382.254545 242.84833 
L 384.573506 246.411289 
L 386.892468 254.168271 
L 389.211429 256.18297 
L 391.53039 257.903695 
L 393.849351 253.145243 
L 396.168312 258.272142 
L 398.487273 257.07273 
L 398.487273 257.07273 
" style="fill:none;stroke:#ffd2e9;stroke-linecap:square;stroke-width:1.5;"/>
   </g>
   <g id="line2d_2">
    <path clip-path="url(#p321e5a2317)" d="M 73.832727 255.406879 
L 76.151688 255.473513 
L 78.470649 255.359844 
L 80.78961 255.794925 
L 83.108571 256.653327 
L 85.427532 255.775326 
L 87.746494 257.131524 
L 90.065455 255.979148 
L 92.384416 257.425498 
L 94.703377 255.818442 
L 97.022338 256.665086 
L 99.341299 256.602372 
L 101.66026 256.414229 
L 103.979221 254.865968 
L 106.298182 257.770427 
L 108.617143 258.005606 
L 110.936104 255.967389 
L 113.255065 257.566605 
L 115.574026 258.609231 
L 117.892987 257.993847 
L 120.211948 258.087918 
L 122.530909 257.915454 
L 124.84987 258.899285 
L 127.168831 256.876747 
L 129.487792 258.997276 
L 131.806753 258.295659 
L 134.125714 259.157982 
L 136.444675 258.577874 
L 138.763636 260.643528 
L 141.082597 258.475963 
L 143.401558 259.487232 
L 145.720519 258.668026 
L 148.039481 260.169251 
L 150.358442 258.142793 
L 152.677403 261.701833 
L 154.996364 258.797374 
L 157.315325 259.859599 
L 159.634286 259.130544 
L 161.953247 259.95759 
L 164.272208 259.318687 
L 166.591169 259.640098 
L 168.91013 258.942401 
L 171.229091 260.706242 
L 173.548052 259.883117 
L 175.867013 241.617561 
L 178.185974 266.566115 
L 180.504935 259.596982 
L 182.823896 259.753768 
L 185.142857 260.50634 
L 187.461818 259.965429 
L 189.780779 261.121725 
L 192.09974 258.526919 
L 194.418701 260.345635 
L 196.737662 259.475473 
L 199.056623 259.636179 
L 201.375584 258.076159 
L 203.694545 259.248134 
L 206.013506 256.833631 
L 208.332468 256.465184 
L 210.651429 254.893406 
L 212.97039 253.458815 
L 215.289351 251.569545 
L 217.608312 249.907614 
L 219.927273 247.29321 
L 222.246234 246.505361 
L 224.565195 244.608251 
L 226.884156 243.146223 
L 229.203117 241.382382 
L 231.522078 241.535248 
L 233.841039 240.680765 
L 236.16 237.498011 
L 238.478961 236.572975 
L 240.797922 237.576404 
L 243.116883 232.100657 
L 245.435844 231.814523 
L 247.754805 235.138384 
L 250.073766 218.456365 
L 252.392727 228.84343 
L 259.34961 225.566605 
L 261.668571 225.323587 
L 263.987532 223.018835 
L 266.306494 222.85029 
L 268.625455 221.329467 
L 270.944416 221.06685 
L 273.263377 219.412759 
L 275.582338 219.62834 
L 277.901299 218.119276 
L 280.22026 218.911044 
L 282.539221 218.07224 
L 284.858182 221.309868 
L 287.177143 219.612661 
L 289.496104 223.199138 
L 291.815065 224.261363 
L 294.134026 230.415209 
L 296.452987 230.575914 
L 298.771948 236.435787 
L 301.090909 238.305459 
L 303.40987 243.498991 
L 305.728831 244.972779 
L 308.047792 249.115846 
L 310.366753 250.240784 
L 312.685714 254.019324 
L 315.004675 254.591593 
L 317.323636 257.06881 
L 319.642597 256.978658 
L 321.961558 259.240294 
L 324.280519 259.718491 
L 326.599481 261.121725 
L 328.918442 260.702323 
L 331.237403 262.262342 
L 333.556364 261.948771 
L 335.875325 263.265772 
L 338.194286 261.631279 
L 340.513247 262.967879 
L 342.832208 262.795414 
L 345.151169 263.814523 
L 347.47013 263.806683 
L 349.789091 264.128095 
L 352.108052 263.971309 
L 354.427013 264.214327 
L 356.745974 263.352004 
L 359.064935 262.62687 
L 361.383896 262.391691 
L 363.702857 263.316728 
L 366.021818 263.336326 
L 368.340779 264.806193 
L 370.65974 263.598942 
L 372.978701 265.672436 
L 375.297662 263.159942 
L 377.616623 264.919863 
L 379.935584 265.676355 
L 382.254545 263.575424 
L 384.573506 264.578854 
L 386.892468 264.939461 
L 389.211429 264.096737 
L 391.53039 268.482823 
L 393.849351 262.493602 
L 396.168312 265.61756 
L 398.487273 263.775326 
L 398.487273 263.775326 
" style="fill:none;stroke:#ffd2e9;stroke-linecap:square;stroke-width:1.5;"/>
   </g>
   <g id="line2d_3">
    <path clip-path="url(#p321e5a2317)" d="M 73.832727 224.876747 
L 76.151688 227.044312 
L 78.470649 227.29125 
L 80.78961 228.706243 
L 83.108571 227.232455 
L 85.427532 227.593063 
L 87.746494 229.239315 
L 90.065455 228.306439 
L 92.384416 230.426968 
L 94.703377 228.815993 
L 97.022338 230.709182 
L 99.341299 230.281941 
L 101.66026 232.057541 
L 103.979221 231.046272 
L 106.298182 232.719961 
L 108.617143 231.497031 
L 110.936104 233.672436 
L 113.255065 232.672926 
L 115.574026 233.872338 
L 117.892987 233.864498 
L 120.211948 234.899285 
L 122.530909 234.029124 
L 124.84987 235.965429 
L 127.168831 235.169741 
L 129.487792 236.420108 
L 131.806753 235.146223 
L 134.125714 236.604332 
L 136.444675 235.357884 
L 138.763636 236.925743 
L 141.082597 235.62442 
L 143.401558 236.62001 
L 145.720519 237.811583 
L 148.039481 236.279001 
L 152.677403 231.156022 
L 154.996364 222.246664 
L 157.315325 225.484293 
L 159.634286 216.727801 
L 161.953247 210.530839 
L 164.272208 198.748379 
L 166.591169 191.634219 
L 168.91013 180.016385 
L 171.229091 174.18003 
L 173.548052 166.771897 
L 175.867013 162.272142 
L 178.185974 154.40541 
L 182.823896 145.51957 
L 185.142857 142.097718 
L 187.461818 136.676846 
L 189.780779 134.462245 
L 192.09974 130.930643 
L 194.418701 127.732211 
L 196.737662 124.753279 
L 203.694545 117.909575 
L 206.013506 116.651368 
L 208.332468 114.871848 
L 212.97039 109.96837 
L 215.289351 109.313789 
L 217.608312 106.668027 
L 222.246234 103.512711 
L 224.565195 99.937993 
L 226.884156 98.18591 
L 229.203117 99.828242 
L 231.522078 95.892917 
L 233.841039 96.782677 
L 236.16 94.873808 
L 238.478961 97.719472 
L 240.797922 97.609722 
L 243.116883 110.571995 
L 245.435844 121.911535 
L 247.754805 145.347105 
L 250.073766 162.338776 
L 252.392727 191.95563 
L 254.711688 200.970819 
L 257.030649 218.040883 
L 259.34961 223.751809 
L 261.668571 235.18542 
L 263.987532 236.365233 
L 266.306494 241.946811 
L 268.625455 243.565625 
L 270.944416 247.230495 
L 273.263377 247.277531 
L 275.582338 249.456855 
L 277.901299 249.51565 
L 280.22026 251.165821 
L 282.539221 250.315258 
L 284.858182 251.804724 
L 287.177143 250.758178 
L 289.496104 252.800314 
L 291.815065 252.322117 
L 294.134026 253.317707 
L 296.452987 252.149653 
L 298.771948 253.333386 
L 301.090909 253.258913 
L 303.40987 254.129074 
L 305.728831 253.529368 
L 308.047792 254.372093 
L 310.366753 253.537208 
L 312.685714 254.7327 
L 315.004675 246.7327 
L 317.323636 254.383852 
L 319.642597 255.449996 
L 321.961558 254.313298 
L 324.280519 255.442156 
L 326.599481 254.434807 
L 328.918442 255.8498 
L 331.237403 254.799334 
L 333.556364 255.916434 
L 335.875325 254.869888 
L 338.194286 256.139853 
L 340.513247 255.826282 
L 342.832208 256.531818 
L 345.151169 255.489192 
L 347.47013 256.433827 
L 349.789091 255.986987 
L 352.108052 257.225596 
L 354.427013 256.29272 
L 356.745974 258.283901 
L 359.064935 256.273121 
L 361.383896 258.025204 
L 363.702857 256.661167 
L 366.021818 257.73907 
L 368.340779 257.382382 
L 370.65974 258.009525 
L 372.978701 257.390221 
L 375.297662 258.248624 
L 377.616623 257.550926 
L 379.935584 259.06783 
L 382.254545 257.523489 
L 384.573506 259.573464 
L 386.892468 258.28782 
L 389.211429 258.421088 
L 391.53039 258.334856 
L 393.849351 259.518589 
L 396.168312 258.370133 
L 398.487273 259.212857 
L 398.487273 259.212857 
" 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(#p321e5a2317)" 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="mdbbc9e70ad" style="stroke:#01769d;stroke-width:0.8;"/>
      </defs>
      <g>
       <use style="fill:#01769d;stroke:#01769d;stroke-width:0.8;" x="73.832727" xlink:href="#mdbbc9e70ad" 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(#p321e5a2317)" 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="#mdbbc9e70ad" 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(#p321e5a2317)" 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="#mdbbc9e70ad" 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(#p321e5a2317)" 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="#mdbbc9e70ad" 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(#p321e5a2317)" 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="#mdbbc9e70ad" 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 [steps] -->
     <defs>
      <path d="M 54.890625 54.6875 
L 35.109375 28.078125 
L 55.90625 0 
L 45.3125 0 
L 29.390625 21.484375 
L 13.484375 0 
L 2.875 0 
L 24.125 28.609375 
L 4.6875 54.6875 
L 15.28125 54.6875 
L 29.78125 35.203125 
L 44.28125 54.6875 
z
" id="DejaVuSans-78"/>
      <path id="DejaVuSans-20"/>
      <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 44.28125 53.078125 
L 44.28125 44.578125 
Q 40.484375 46.53125 36.375 47.5 
Q 32.28125 48.484375 27.875 48.484375 
Q 21.1875 48.484375 17.84375 46.4375 
Q 14.5 44.390625 14.5 40.28125 
Q 14.5 37.15625 16.890625 35.375 
Q 19.28125 33.59375 26.515625 31.984375 
L 29.59375 31.296875 
Q 39.15625 29.25 43.1875 25.515625 
Q 47.21875 21.78125 47.21875 15.09375 
Q 47.21875 7.46875 41.1875 3.015625 
Q 35.15625 -1.421875 24.609375 -1.421875 
Q 20.21875 -1.421875 15.453125 -0.5625 
Q 10.6875 0.296875 5.421875 2 
L 5.421875 11.28125 
Q 10.40625 8.6875 15.234375 7.390625 
Q 20.0625 6.109375 24.8125 6.109375 
Q 31.15625 6.109375 34.5625 8.28125 
Q 37.984375 10.453125 37.984375 14.40625 
Q 37.984375 18.0625 35.515625 20.015625 
Q 33.0625 21.96875 24.703125 23.78125 
L 21.578125 24.515625 
Q 13.234375 26.265625 9.515625 29.90625 
Q 5.8125 33.546875 5.8125 39.890625 
Q 5.8125 47.609375 11.28125 51.796875 
Q 16.75 56 26.8125 56 
Q 31.78125 56 36.171875 55.265625 
Q 40.578125 54.546875 44.28125 53.078125 
" id="DejaVuSans-73"/>
      <path d="M 18.3125 70.21875 
L 18.3125 54.6875 
L 36.8125 54.6875 
L 36.8125 47.703125 
L 18.3125 47.703125 
L 18.3125 18.015625 
Q 18.3125 11.328125 20.140625 9.421875 
Q 21.96875 7.515625 27.59375 7.515625 
L 36.8125 7.515625 
L 36.8125 0 
L 27.59375 0 
Q 17.1875 0 13.234375 3.875 
Q 9.28125 7.765625 9.28125 18.015625 
L 9.28125 47.703125 
L 2.6875 47.703125 
L 2.6875 54.6875 
L 9.28125 54.6875 
L 9.28125 70.21875 
z
" id="DejaVuSans-74"/>
      <path d="M 56.203125 29.59375 
L 56.203125 25.203125 
L 14.890625 25.203125 
Q 15.484375 15.921875 20.484375 11.0625 
Q 25.484375 6.203125 34.421875 6.203125 
Q 39.59375 6.203125 44.453125 7.46875 
Q 49.3125 8.734375 54.109375 11.28125 
L 54.109375 2.78125 
Q 49.265625 0.734375 44.1875 -0.34375 
Q 39.109375 -1.421875 33.890625 -1.421875 
Q 20.796875 -1.421875 13.15625 6.1875 
Q 5.515625 13.8125 5.515625 26.8125 
Q 5.515625 40.234375 12.765625 48.109375 
Q 20.015625 56 32.328125 56 
Q 43.359375 56 49.78125 48.890625 
Q 56.203125 41.796875 56.203125 29.59375 
M 47.21875 32.234375 
Q 47.125 39.59375 43.09375 43.984375 
Q 39.0625 48.390625 32.421875 48.390625 
Q 24.90625 48.390625 20.390625 44.140625 
Q 15.875 39.890625 15.1875 32.171875 
z
" id="DejaVuSans-65"/>
      <path d="M 18.109375 8.203125 
L 18.109375 -20.796875 
L 9.078125 -20.796875 
L 9.078125 54.6875 
L 18.109375 54.6875 
L 18.109375 46.390625 
Q 20.953125 51.265625 25.265625 53.625 
Q 29.59375 56 35.59375 56 
Q 45.5625 56 51.78125 48.09375 
Q 58.015625 40.1875 58.015625 27.296875 
Q 58.015625 14.40625 51.78125 6.484375 
Q 45.5625 -1.421875 35.59375 -1.421875 
Q 29.59375 -1.421875 25.265625 0.953125 
Q 20.953125 3.328125 18.109375 8.203125 
M 48.6875 27.296875 
Q 48.6875 37.203125 44.609375 42.84375 
Q 40.53125 48.484375 33.40625 48.484375 
Q 26.265625 48.484375 22.1875 42.84375 
Q 18.109375 37.203125 18.109375 27.296875 
Q 18.109375 17.390625 22.1875 11.75 
Q 26.265625 6.109375 33.40625 6.109375 
Q 40.53125 6.109375 44.609375 11.75 
Q 48.6875 17.390625 48.6875 27.296875 
" id="DejaVuSans-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(214.289687 335.860562)scale(0.1 -0.1)">
      <use xlink:href="#DejaVuSans-78"/>
      <use x="59.179688" xlink:href="#DejaVuSans-20"/>
      <use x="90.966797" xlink:href="#DejaVuSans-5b"/>
      <use x="129.980469" xlink:href="#DejaVuSans-73"/>
      <use x="182.080078" xlink:href="#DejaVuSans-74"/>
      <use x="221.289062" xlink:href="#DejaVuSans-65"/>
      <use x="282.8125" xlink:href="#DejaVuSans-70"/>
      <use x="346.289062" xlink:href="#DejaVuSans-73"/>
      <use x="398.388672" xlink:href="#DejaVuSans-5d"/>
     </g>
    </g>
   </g>
   <g id="matplotlib.axis_2">
    <g id="ytick_1">
     <g id="line2d_14">
      <path clip-path="url(#p321e5a2317)" d="M 57.6 306.686436 
L 414.72 306.686436 
" 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="mde06ae7c03" style="stroke:#01769d;stroke-width:0.8;"/>
      </defs>
      <g>
       <use style="fill:#01769d;stroke:#01769d;stroke-width:0.8;" x="57.6" xlink:href="#mde06ae7c03" y="306.686436"/>
      </g>
     </g>
     <g id="text_7">
      <!-- −0.5 -->
      <defs>
       <path d="M 10.59375 35.5 
L 73.1875 35.5 
L 73.1875 27.203125 
L 10.59375 27.203125 
z
" id="DejaVuSans-2212"/>
       <path d="M 10.6875 12.40625 
L 21 12.40625 
L 21 0 
L 10.6875 0 
z
" id="DejaVuSans-2e"/>
       <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(26.317187 310.485655)scale(0.1 -0.1)">
       <use xlink:href="#DejaVuSans-2212"/>
       <use x="83.789062" xlink:href="#DejaVuSans-30"/>
       <use x="147.412109" xlink:href="#DejaVuSans-2e"/>
       <use x="179.199219" xlink:href="#DejaVuSans-35"/>
      </g>
     </g>
    </g>
    <g id="ytick_2">
     <g id="line2d_16">
      <path clip-path="url(#p321e5a2317)" d="M 57.6 267.765527 
L 414.72 267.765527 
" 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="#mde06ae7c03" y="267.765527"/>
      </g>
     </g>
     <g id="text_8">
      <!-- 0.0 -->
      <g style="fill:#01769d;" transform="translate(34.696875 271.564746)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-30"/>
      </g>
     </g>
    </g>
    <g id="ytick_3">
     <g id="line2d_18">
      <path clip-path="url(#p321e5a2317)" d="M 57.6 228.844618 
L 414.72 228.844618 
" 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="#mde06ae7c03" y="228.844618"/>
      </g>
     </g>
     <g id="text_9">
      <!-- 0.5 -->
      <g style="fill:#01769d;" transform="translate(34.696875 232.643837)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"/>
      </g>
     </g>
    </g>
    <g id="ytick_4">
     <g id="line2d_20">
      <path clip-path="url(#p321e5a2317)" d="M 57.6 189.923709 
L 414.72 189.923709 
" 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="#mde06ae7c03" y="189.923709"/>
      </g>
     </g>
     <g id="text_10">
      <!-- 1.0 -->
      <g style="fill:#01769d;" transform="translate(34.696875 193.722928)scale(0.1 -0.1)">
       <use xlink:href="#DejaVuSans-31"/>
       <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
       <use x="95.410156" xlink:href="#DejaVuSans-30"/>
      </g>
     </g>
    </g>
    <g id="ytick_5">
     <g id="line2d_22">
      <path clip-path="url(#p321e5a2317)" d="M 57.6 151.0028 
L 414.72 151.0028 
" 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="#mde06ae7c03" y="151.0028"/>
      </g>
     </g>
     <g id="text_11">
      <!-- 1.5 -->
      <g style="fill:#01769d;" transform="translate(34.696875 154.802019)scale(0.1 -0.1)">
       <use xlink:href="#DejaVuSans-31"/>
       <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
       <use x="95.410156" xlink:href="#DejaVuSans-35"/>
      </g>
     </g>
    </g>
    <g id="ytick_6">
     <g id="line2d_24">
      <path clip-path="url(#p321e5a2317)" d="M 57.6 112.081891 
L 414.72 112.081891 
" 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="#mde06ae7c03" y="112.081891"/>
      </g>
     </g>
     <g id="text_12">
      <!-- 2.0 -->
      <g style="fill:#01769d;" transform="translate(34.696875 115.88111)scale(0.1 -0.1)">
       <use xlink:href="#DejaVuSans-32"/>
       <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
       <use x="95.410156" xlink:href="#DejaVuSans-30"/>
      </g>
     </g>
    </g>
    <g id="ytick_7">
     <g id="line2d_26">
      <path clip-path="url(#p321e5a2317)" d="M 57.6 73.160982 
L 414.72 73.160982 
" 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="#mde06ae7c03" y="73.160982"/>
      </g>
     </g>
     <g id="text_13">
      <!-- 2.5 -->
      <g style="fill:#01769d;" transform="translate(34.696875 76.960201)scale(0.1 -0.1)">
       <use xlink:href="#DejaVuSans-32"/>
       <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
       <use x="95.410156" xlink:href="#DejaVuSans-35"/>
      </g>
     </g>
    </g>
    <g id="text_14">
     <!-- Vpd [V] -->
     <defs>
      <path d="M 28.609375 0 
L 0.78125 72.90625 
L 11.078125 72.90625 
L 34.1875 11.53125 
L 57.328125 72.90625 
L 67.578125 72.90625 
L 39.796875 0 
z
" id="DejaVuSans-56"/>
      <path d="M 45.40625 46.390625 
L 45.40625 75.984375 
L 54.390625 75.984375 
L 54.390625 0 
L 45.40625 0 
L 45.40625 8.203125 
Q 42.578125 3.328125 38.25 0.953125 
Q 33.9375 -1.421875 27.875 -1.421875 
Q 17.96875 -1.421875 11.734375 6.484375 
Q 5.515625 14.40625 5.515625 27.296875 
Q 5.515625 40.1875 11.734375 48.09375 
Q 17.96875 56 27.875 56 
Q 33.9375 56 38.25 53.625 
Q 42.578125 51.265625 45.40625 46.390625 
M 14.796875 27.296875 
Q 14.796875 17.390625 18.875 11.75 
Q 22.953125 6.109375 30.078125 6.109375 
Q 37.203125 6.109375 41.296875 11.75 
Q 45.40625 17.390625 45.40625 27.296875 
Q 45.40625 37.203125 41.296875 42.84375 
Q 37.203125 48.484375 30.078125 48.484375 
Q 22.953125 48.484375 18.875 42.84375 
Q 14.796875 37.203125 14.796875 27.296875 
" id="DejaVuSans-64"/>
     </defs>
     <g style="fill:#01769d;" transform="translate(20.2375 193.207687)rotate(-90)scale(0.1 -0.1)">
      <use xlink:href="#DejaVuSans-56"/>
      <use x="68.408203" xlink:href="#DejaVuSans-70"/>
      <use x="131.884766" xlink:href="#DejaVuSans-64"/>
      <use x="195.361328" xlink:href="#DejaVuSans-20"/>
      <use x="227.148438" xlink:href="#DejaVuSans-5b"/>
      <use x="266.162109" xlink:href="#DejaVuSans-56"/>
      <use x="334.570312" xlink:href="#DejaVuSans-5d"/>
     </g>
    </g>
   </g>
   <g id="line2d_28">
    <path clip-path="url(#p321e5a2317)" d="M 73.832727 236.227629 
L 85.427532 238.343103 
L 97.022338 240.243301 
L 110.936104 242.272411 
L 124.84987 244.065852 
L 141.082597 245.914428 
L 159.634286 247.784459 
L 185.142857 250.103164 
L 226.884156 253.870733 
L 250.073766 256.093052 
L 257.030649 256.432168 
L 261.668571 256.44591 
L 266.306494 256.240186 
L 270.944416 255.772483 
L 275.582338 255.000287 
L 280.22026 253.87833 
L 282.539221 253.156031 
L 284.858182 252.297977 
L 287.177143 251.282322 
L 289.496104 250.087223 
L 291.815065 248.543875 
L 294.134026 245.895629 
L 296.452987 241.238879 
L 298.771948 233.670016 
L 301.090909 222.586471 
L 303.40987 208.589822 
L 305.728831 192.582684 
L 312.685714 141.524495 
L 315.004675 126.501558 
L 317.323636 113.98121 
L 319.642597 104.618911 
L 321.961558 98.081497 
L 324.280519 93.788647 
L 326.599481 91.160042 
L 328.918442 89.615361 
L 331.237403 88.675453 
L 333.556364 88.265834 
L 335.875325 88.413192 
L 338.194286 89.144211 
L 340.513247 90.449677 
L 342.832208 92.176776 
L 349.789091 98.000715 
L 352.108052 99.527192 
L 354.427013 100.531726 
L 356.745974 100.825601 
L 359.064935 100.220103 
L 361.383896 98.681102 
L 363.702857 96.792814 
L 366.021818 95.294041 
L 368.340779 96.285301 
L 370.65974 107.313987 
L 372.978701 133.903439 
L 375.297662 168.033923 
L 377.616623 199.765803 
L 379.935584 225.022892 
L 382.254545 241.934324 
L 384.573506 251.587067 
L 386.892468 255.807546 
L 389.211429 256.422188 
L 393.849351 254.139659 
L 396.168312 254.895339 
L 398.487273 259.350884 
L 398.487273 259.350884 
" style="fill:none;stroke:#fe3ea0;stroke-linecap:square;stroke-width:1.5;"/>
   </g>
   <g id="line2d_29">
    <path clip-path="url(#p321e5a2317)" d="M 73.832727 255.892861 
L 80.78961 255.815202 
L 87.746494 255.953291 
L 97.022338 256.393066 
L 108.617143 257.199465 
L 129.487792 258.722069 
L 138.763636 259.160847 
L 145.720519 259.297897 
L 152.677403 259.21895 
L 159.634286 259.052717 
L 161.953247 259.288262 
L 164.272208 259.881496 
L 168.91013 261.98411 
L 171.229091 259.702623 
L 173.548052 252.904067 
L 175.867013 251.202938 
L 178.185974 259.8259 
L 180.504935 262.1886 
L 182.823896 260.340466 
L 185.142857 259.542151 
L 192.09974 260.231609 
L 194.418701 260.189687 
L 196.737662 259.943429 
L 199.056623 259.478137 
L 201.375584 258.807112 
L 203.694545 257.950656 
L 206.013506 256.929068 
L 208.332468 255.76265 
L 212.97039 253.076526 
L 217.608312 250.054691 
L 231.522078 240.598981 
L 236.16 237.858364 
L 240.797922 235.388251 
L 243.116883 233.996659 
L 245.435844 232.321962 
L 247.754805 230.230097 
L 250.073766 227.803363 
L 252.392727 225.989507 
L 254.711688 225.562796 
L 257.030649 225.738152 
L 259.34961 225.557359 
L 261.668571 224.929021 
L 263.987532 223.978443 
L 273.263377 219.459862 
L 275.582338 218.777682 
L 277.901299 218.525099 
L 280.22026 218.797911 
L 282.539221 219.573871 
L 284.858182 220.80122 
L 287.177143 222.428203 
L 289.496104 224.403061 
L 291.815065 226.674037 
L 294.134026 229.189375 
L 298.771948 234.746104 
L 310.366753 249.291238 
L 312.685714 251.898202 
L 315.004675 254.283712 
L 317.323636 256.396011 
L 319.642597 258.19601 
L 321.961558 259.695299 
L 324.280519 260.918137 
L 326.599481 261.888782 
L 328.918442 262.631493 
L 331.237403 263.170528 
L 333.556364 263.530148 
L 335.875325 263.734609 
L 340.513247 263.775095 
L 345.151169 263.486054 
L 354.427013 262.695675 
L 359.064935 262.582476 
L 363.702857 262.858011 
L 368.340779 263.426252 
L 379.935584 265.116502 
L 384.573506 265.496085 
L 386.892468 265.545313 
L 389.211429 265.475157 
L 391.53039 265.266361 
L 393.849351 264.89967 
L 396.168312 264.355827 
L 398.487273 263.615576 
L 398.487273 263.615576 
" style="fill:none;stroke:#fe3ea0;stroke-linecap:square;stroke-width:1.5;"/>
   </g>
   <g id="line2d_30">
    <path clip-path="url(#p321e5a2317)" d="M 73.832727 224.467875 
L 76.151688 225.885463 
L 78.470649 227.054129 
L 80.78961 227.998852 
L 83.108571 228.744613 
L 85.427532 229.316391 
L 87.746494 229.739168 
L 92.384416 230.237637 
L 97.022338 230.439861 
L 106.298182 230.754943 
L 110.936104 231.267484 
L 113.255065 231.699935 
L 115.574026 232.283147 
L 117.892987 233.028846 
L 122.530909 234.829273 
L 127.168831 236.678082 
L 129.487792 237.484259 
L 131.806753 238.138886 
L 134.125714 238.587416 
L 136.444675 238.775298 
L 138.763636 238.647985 
L 141.082597 238.150929 
L 143.401558 237.229581 
L 145.720519 235.829392 
L 148.039481 233.895814 
L 150.358442 231.374299 
L 152.677403 228.210298 
L 154.996364 224.349262 
L 157.315325 219.744124 
L 159.634286 214.377741 
L 161.953247 208.240447 
L 164.272208 201.32258 
L 166.591169 193.614476 
L 175.867013 160.269389 
L 178.185974 153.67439 
L 180.504935 148.176051 
L 182.823896 143.615976 
L 185.142857 139.83577 
L 187.461818 136.677035 
L 189.780779 133.981375 
L 194.418701 129.345695 
L 199.056623 124.695194 
L 203.694545 119.569938 
L 210.651429 111.688546 
L 215.289351 106.811761 
L 217.608312 104.616851 
L 219.927273 102.642145 
L 222.246234 100.931057 
L 224.565195 99.527 
L 226.884156 98.473386 
L 229.203117 97.813627 
L 231.522078 97.591138 
L 233.841039 97.849331 
L 236.16 98.631618 
L 238.478961 100.202542 
L 240.797922 103.711169 
L 243.116883 110.527693 
L 245.435844 122.02231 
L 247.754805 139.565214 
L 252.392727 186.285522 
L 254.711688 203.452497 
L 257.030649 215.590477 
L 259.34961 225.07262 
L 261.668571 232.569324 
L 263.987532 238.325301 
L 266.306494 242.585261 
L 268.625455 245.593914 
L 270.944416 247.595972 
L 273.263377 248.836145 
L 275.582338 249.559143 
L 280.22026 250.391956 
L 287.177143 251.389212 
L 296.452987 252.4331 
L 308.047792 253.431106 
L 347.47013 256.310975 
L 368.340779 257.656195 
L 384.573506 258.473875 
L 398.487273 258.946845 
L 398.487273 258.946845 
" 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="p321e5a2317">
   <rect height="266.112" width="357.12" x="57.6" y="41.472"/>
  </clipPath>
 </defs>
</svg>