1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<svg
width="600" height="480"
viewBox="0 0 600 480"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<title>Gnuplot</title>
<desc>Produced by GNUPLOT 5.2 patchlevel 8 </desc>
<g id="gnuplot_canvas">
<rect x="0" y="0" width="600" height="480" fill="none"/>
<defs>
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
</filter>
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
</filter>
</defs>
<g fill="none" color="white" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,396.9 L230.4,287.4 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M449.3,327.3 L230.4,287.4 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,417.1 L150.7,114.5 '/></g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M150.7,396.9 L230.4,287.4 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,396.9 L153.8,392.7 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M230.4,287.4 L227.3,291.7 '/> <g transform="translate(147.9,409.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M194.5,404.9 L274.2,295.4 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M194.5,404.9 L197.6,400.7 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M274.2,295.4 L271.1,299.6 '/> <g transform="translate(191.7,417.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 20</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M238.3,412.9 L317.9,303.4 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M238.3,412.9 L241.4,408.6 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M317.9,303.4 L314.8,307.6 '/> <g transform="translate(235.5,425.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 40</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M282.1,420.8 L361.7,311.4 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M282.1,420.8 L285.2,416.6 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M361.7,311.4 L358.6,315.6 '/> <g transform="translate(279.3,433.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 60</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M325.8,428.8 L405.5,319.3 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M325.8,428.8 L328.9,424.6 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M405.5,319.3 L402.4,323.6 '/> <g transform="translate(323.0,441.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 80</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M369.6,436.8 L449.3,327.3 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M369.6,436.8 L372.7,432.5 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M449.3,327.3 L446.2,331.5 '/> <g transform="translate(366.7,449.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 100</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M369.6,436.8 L150.7,396.9 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M369.6,436.8 L361.1,435.2 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,396.9 L159.2,398.5 '/> <g transform="translate(377.4,443.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M385.5,414.9 L166.7,375.0 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M385.5,414.9 L377.1,413.3 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M166.7,375.0 L175.1,376.6 '/> <g transform="translate(393.3,421.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text> 20</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M401.5,393.0 L182.6,353.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M401.5,393.0 L393.0,391.4 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M182.6,353.1 L191.1,354.7 '/> <g transform="translate(409.3,400.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text> 40</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M417.4,371.1 L198.5,331.2 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M417.4,371.1 L408.9,369.5 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M198.5,331.2 L207.0,332.8 '/> <g transform="translate(425.2,378.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text> 60</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M433.3,349.2 L214.5,309.3 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M433.3,349.2 L424.9,347.7 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M214.5,309.3 L222.9,310.9 '/> <g transform="translate(441.1,356.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text> 80</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M449.3,327.3 L230.4,287.4 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M449.3,327.3 L440.8,325.8 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M230.4,287.4 L238.9,289.0 '/> <g transform="translate(457.1,334.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text> 100</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,417.1 L159.7,417.1 '/> <g transform="translate(132.7,421.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,376.7 L159.7,376.7 '/> <g transform="translate(132.7,380.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text> 20</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,336.4 L159.7,336.4 '/> <g transform="translate(132.7,340.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text> 40</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,296.0 L159.7,296.0 '/> <g transform="translate(132.7,299.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text> 60</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,255.7 L159.7,255.7 '/> <g transform="translate(132.7,259.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text> 80</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,215.4 L159.7,215.4 '/> <g transform="translate(132.7,219.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text> 100</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,175.1 L159.7,175.1 '/> <g transform="translate(132.7,179.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text> 120</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,134.7 L159.7,134.7 '/> <g transform="translate(132.7,138.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text> 140</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g id="gnuplot_plot_1a" ><title>gnuplot_plot_1a</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 0, 158, 115)' d='M282.2,420.9 L284.6,420.9 L287.0,420.9 L289.3,421.1 L291.6,421.4 L293.8,421.7 L296.0,422.2 L298.1,422.7
L300.0,423.3 L302.0,424.0 L303.9,424.8 L304.0,424.8 M151.3,396.2 L153.6,396.4 L155.9,396.7 L158.1,397.0
L160.2,397.5 L162.3,398.0 L164.3,398.7 L166.3,399.4 L167.9,400.0 M361.0,312.5 L362.8,313.2 L364.8,313.9
L366.8,314.6 L368.9,315.1 L371.0,315.5 L373.3,315.9 L375.5,316.2 L377.9,316.3 L380.3,316.4 L382.8,316.5
L382.9,316.5 M246.8,291.7 L244.7,291.7 L242.3,291.6 L239.9,291.4 L237.6,291.2 L235.4,290.8 L233.2,290.4
L231.1,289.9 L229.1,289.3 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 86, 180, 233)' d='M256.4,416.2 L258.5,415.8 L259.9,415.6 L261.3,415.3 L263.4,414.9 L264.2,414.8 L266.8,414.3 L267.0,414.3
L269.9,413.8 L270.3,413.7 L272.7,413.3 L273.8,413.1 L275.5,412.8 L277.5,412.6 L278.3,412.4 L281.0,412.1
L281.4,412.0 L283.7,411.8 L285.7,411.6 L286.4,411.5 L289.0,411.3 L291.0,411.3 L291.5,411.3 L294.0,411.3
L296.4,411.4 L298.7,411.6 L300.8,412.0 L303.0,412.4 L305.1,413.0 L307.1,413.7 L309.0,414.4 L309.5,414.7
L310.8,415.3 L312.6,416.2 L313.2,416.6 L314.4,417.3 L316.0,418.3 L316.0,418.4 L317.7,419.5 L318.3,420.0
L319.3,420.7 L320.4,421.6 L320.8,422.0 L322.3,423.2 L322.4,423.3 L323.9,424.6 L324.2,424.8 L325.5,425.9
L326.0,426.4 L327.0,427.2 L327.9,427.9 L328.5,428.5 L329.8,429.5 M158.3,386.5 L160.7,386.7 L163.0,386.9
L165.2,387.3 L167.3,387.8 L169.4,388.3 L171.4,389.0 L173.3,389.8 L173.5,389.9 L175.1,390.7 L176.9,391.7
L177.1,391.8 L178.6,392.7 L179.9,393.5 L180.3,393.8 L181.9,395.0 L182.2,395.2 L183.5,396.2 L184.3,396.8
L185.1,397.5 L186.2,398.4 L186.6,398.7 L188.1,400.0 L189.7,401.3 L189.9,401.6 L191.2,402.6 L191.8,403.2
L192.7,403.9 L193.7,404.7 M335.2,307.8 L336.3,308.7 L337.1,309.4 L337.9,310.0 L339.0,310.9 L339.4,311.3
L340.8,312.5 L340.9,312.6 L342.5,313.9 L342.7,314.1 L344.0,315.2 L344.6,315.7 L345.6,316.5 L346.7,317.3
L347.2,317.7 L348.8,318.8 L349.0,319.0 L350.5,319.9 L351.8,320.7 L352.2,321.0 L354.0,321.9 L355.5,322.6
L355.8,322.8 L357.7,323.6 L359.7,324.3 L361.8,324.8 L364.0,325.3 L366.2,325.6 L368.5,325.9 L370.9,326.0
L373.3,326.0 L374.1,326.0 L375.8,326.0 L378.4,325.8 L379.4,325.7 L381.1,325.6 L383.7,325.3 L383.8,325.3
L386.5,324.9 L387.6,324.8 L389.3,324.5 L391.3,324.2 L392.1,324.1 L394.8,323.6 L395.0,323.6 L397.8,323.1
L398.3,323.0 L400.6,322.6 L401.7,322.4 L403.5,322.1 L405.2,321.8 L406.3,321.6 L408.7,321.2 M272.6,296.4
L270.8,296.7 L269.1,297.0 L268.0,297.2 L265.7,297.6 L265.1,297.7 L262.3,298.2 L262.2,298.2 L259.4,298.7
L258.7,298.8 L256.6,299.2 L255.2,299.4 L253.8,299.6 L251.5,300.0 L251.0,300.0 L248.3,300.4 L247.6,300.5
L245.5,300.7 L243.3,300.9 L242.9,301.0 L240.3,301.2 L238.0,301.2 L237.7,301.2 L235.3,301.2 L232.9,301.1
L230.5,300.9 L228.3,300.6 L226.1,300.1 L224.1,299.6 L222.1,298.9 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(230, 159, 0)' d='M297.9,399.2 L298.9,399.1 L300.4,398.9 L303.0,398.8 L304.1,398.8 L305.5,398.8 L307.8,399.0 L310.1,399.3
L312.2,399.8 L314.2,400.4 L315.5,400.9 L316.2,401.1 L318.0,402.1 L319.2,402.8 L319.7,403.1 L321.3,404.3
L321.6,404.5 L322.9,405.5 L323.5,406.1 L324.4,406.8 L325.2,407.6 L325.9,408.2 L326.7,409.1 L327.3,409.7
L328.1,410.6 L328.7,411.2 L329.5,412.1 L330.1,412.7 L330.8,413.6 L331.4,414.2 L332.2,415.1 L332.8,415.8
L333.5,416.6 L334.2,417.3 L334.9,418.1 L335.6,418.8 L336.3,419.6 L337.0,420.3 L337.8,421.1 L338.4,421.7
L339.4,422.6 L339.9,423.1 L341.1,424.2 L341.4,424.4 L343.0,425.6 L343.1,425.8 L344.6,426.8 L345.4,427.4
L346.2,428.0 L347.9,429.0 L348.1,429.1 L349.7,430.0 L351.5,430.9 L351.9,431.1 L353.4,431.7 L355.4,432.4
L357.4,433.1 L359.5,433.6 L361.6,434.1 L363.8,434.4 L366.1,434.7 L368.5,434.9 M167.4,374.0 L167.9,374.0
L169.9,374.0 L172.2,374.2 L174.4,374.6 L176.5,375.1 L178.6,375.7 L179.4,376.1 L180.4,376.5 L182.2,377.5
L183.1,378.0 L184.0,378.5 L185.6,379.7 L187.1,381.0 L187.5,381.3 L188.6,382.3 L189.1,382.8 L190.1,383.8
L190.6,384.3 L191.5,385.2 L192.1,385.8 L192.9,386.7 L193.4,387.3 L194.2,388.2 L194.7,388.8 L195.6,389.8
L196.1,390.3 L197.0,391.3 L197.4,391.8 L198.4,392.8 L198.8,393.3 L199.7,394.3 L200.2,394.8 L201.2,395.8
L201.7,396.3 L202.6,397.2 L203.3,397.8 L204.1,398.5 L205.0,399.4 L205.6,399.9 L207.0,401.0 L207.2,401.1
L208.8,402.3 L209.3,402.6 L210.5,403.4 L212.0,404.4 L212.2,404.5 L214.0,405.4 L215.8,406.3 L217.7,407.1
L219.7,407.8 L221.7,408.4 L223.8,408.9 L226.0,409.4 L228.2,409.7 L230.5,410.0 L232.8,410.2 L235.3,410.2
L237.5,410.2 L237.7,410.2 L240.3,410.1 L242.9,410.0 L245.6,409.7 L247.2,409.5 L248.3,409.4 L251.0,409.0
L251.1,409.0 L253.9,408.5 L254.6,408.4 L256.7,408.0 L258.0,407.8 L259.6,407.4 L261.2,407.1 L262.5,406.8
L264.3,406.4 L265.5,406.2 L267.3,405.7 L268.5,405.5 L270.3,405.0 L271.5,404.7 L273.2,404.3 L274.5,404.0
L276.1,403.6 L277.5,403.3 L279.0,402.9 L280.5,402.5 L282.0,402.2 L283.5,401.8 L285.0,401.5 L286.5,401.2
L288.1,400.8 L289.4,400.6 L291.4,400.2 L292.3,400.0 L294.9,399.6 L295.1,399.6 L297.9,399.2 M315.1,307.2
L313.3,306.3 L313.1,306.2 L311.4,305.5 L309.4,304.8 L307.4,304.2 L305.3,303.6 L303.2,303.2 L301.0,302.8
L298.8,302.6 L296.4,302.4 L294.0,302.3 L291.5,302.3 L289.0,302.4 L286.4,302.5 L286.2,302.6 L283.7,302.8
L281.8,303.0 L281.0,303.1 L278.3,303.5 L277.9,303.5 L275.4,303.9 L274.4,304.1 L272.6,304.5 L271.0,304.8
L269.7,305.0 L267.8,305.4 L266.8,305.6 L264.7,306.1 L263.8,306.3 L261.7,306.8 L260.8,307.0 L258.8,307.5
L257.8,307.7 L255.8,308.2 L254.8,308.4 L252.9,308.9 L251.8,309.2 L250.0,309.6 L248.8,309.9 L247.0,310.3
L245.8,310.6 L244.0,311.0 L242.8,311.3 L240.9,311.7 L239.9,311.9 L237.7,312.3 L237.0,312.5 L234.2,312.9
L231.4,313.3 L230.1,313.4 L228.8,313.6 L226.2,313.7 L224.9,313.7 L223.7,313.7 L221.3,313.6 L219.1,313.3
L216.9,312.8 L214.9,312.2 L213.4,311.6 L212.9,311.5 M445.2,329.5 L443.2,328.8 L441.1,328.3 L438.9,327.9
L436.7,327.6 L434.4,327.3 L432.0,327.1 L429.6,327.1 L427.7,327.1 L427.1,327.1 L424.6,327.2 L422.3,327.3
L421.9,327.4 L419.3,327.6 L417.9,327.8 L416.6,328.0 L414.0,328.3 L413.8,328.4 L411.0,328.8 L410.5,328.9
L408.1,329.3 L407.1,329.5 L405.2,329.9 L403.9,330.2 L402.3,330.6 L400.8,330.9 L399.3,331.2 L397.8,331.6
L396.3,331.9 L394.9,332.3 L393.3,332.6 L391.9,333.0 L390.3,333.4 L389.0,333.7 L387.3,334.1 L386.1,334.4
L384.3,334.8 L383.1,335.1 L381.3,335.5 L380.1,335.8 L378.3,336.2 L377.0,336.5 L375.4,336.8 L373.7,337.1
L372.5,337.3 L370.2,337.7 L369.7,337.8 L367.0,338.2 L366.2,338.2 L364.3,338.4 L361.8,338.5 L361.0,338.5
L359.3,338.5 L356.9,338.3 L354.7,338.0 L352.6,337.5 L350.6,336.9 L349.5,336.4 L348.7,336.1 L346.9,335.1
L345.8,334.5 L345.1,334.1 L343.5,332.9 L343.4,332.8 L341.9,331.7 L341.5,331.2 L340.4,330.3 L339.8,329.7
L339.0,328.9 L338.3,328.2 L337.6,327.5 L336.9,326.7 L336.2,326.0 L335.5,325.2 L334.8,324.4 L334.2,323.7
L333.4,322.9 L332.9,322.2 L332.1,321.4 L331.5,320.7 L330.7,319.9 L330.2,319.3 L329.3,318.4 L328.7,317.8
L327.9,316.9 L327.2,316.2 L326.5,315.5 L325.6,314.7 L325.0,314.1 L323.9,313.2 L323.5,312.8 L321.9,311.6
L321.9,311.5 L320.3,310.3 L319.6,309.9 L318.6,309.2 L316.9,308.2 L315.1,307.2 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(240, 228, 66)' d='M313.5,377.6 L314.5,377.2 L316.4,376.3 L317.2,375.8 L318.3,375.4 L320.2,374.5 L321.0,374.1 L322.2,373.6
L324.1,372.7 L324.8,372.3 L326.0,371.8 L327.9,370.9 L328.6,370.5 L330.1,370.1 L331.9,369.2 L332.7,368.1
L332.5,366.8 L331.8,366.0 L331.9,365.4 L331.6,364.2 L331.3,363.4 L331.2,362.8 L330.9,361.5 L330.7,360.8
L330.6,360.2 L330.3,359.0 L330.0,358.2 L329.9,357.6 L329.6,356.4 L329.4,355.7 L329.3,355.0 L328.9,353.7
L328.7,353.2 L328.6,352.4 L328.2,351.1 L328.1,350.7 L327.8,349.8 L327.4,348.5 L327.4,348.3 L327.0,347.2
L326.6,345.9 L326.2,344.6 L325.8,343.6 L325.7,343.2 L325.3,341.9 L325.0,341.3 L324.8,340.6 L324.2,339.3
L324.2,339.1 L323.7,337.9 L323.3,336.9 L323.1,336.6 L322.5,335.2 L322.3,334.8 L321.8,333.9 L321.3,332.8
L321.1,332.5 L320.4,331.1 L320.2,330.8 L319.6,329.7 L319.1,329.0 L318.7,328.3 L317.9,327.2 L317.7,326.9
L316.7,325.5 L315.5,324.0 L315.4,323.9 L314.1,322.5 L314.0,322.4 L312.6,321.0 L312.5,321.0 L311.0,319.7
L310.7,319.4 L309.4,318.4 L308.4,317.8 L307.8,317.3 L306.0,316.3 L305.3,316.0 L304.2,315.4 L302.3,314.6
L300.3,314.0 L298.9,313.6 L298.3,313.4 L296.2,312.9 L294.0,312.6 M203.2,369.2 L203.2,369.3 L203.7,370.6
L204.0,371.5 L204.2,371.9 L204.7,373.3 L204.8,373.7 L205.2,374.6 L205.8,375.8 L205.8,376.0 L206.4,377.3
L206.7,377.9 L207.1,378.7 L207.7,379.9 L207.8,380.0 L208.5,381.4 L208.8,381.9 L209.3,382.8 L209.9,383.7
L210.2,384.2 L211.1,385.5 L211.2,385.6 L212.2,387.0 L212.4,387.2 L213.4,388.5 L213.7,388.8 L214.8,390.0
L215.1,390.3 L216.3,391.5 L216.5,391.7 L218.1,393.0 L218.2,393.1 L219.7,394.2 L220.5,394.7 L221.3,395.3
L223.1,396.3 L223.6,396.6 L224.9,397.2 L226.8,398.0 L228.8,398.6 L230.1,399.0 L230.9,399.2 L233.1,399.6
L235.3,400.0 L236.0,400.0 L237.6,400.2 L240.0,400.3 L242.5,400.3 L244.0,400.3 L245.0,400.2 L247.7,400.0
L248.8,399.9 L250.4,399.7 L252.7,399.4 L253.2,399.3 L256.0,398.8 L256.1,398.7 L258.9,398.1 L259.3,398.1
L261.9,397.4 L262.2,397.4 L265.0,396.6 L267.6,395.9 L268.1,395.7 L270.2,395.1 L271.3,394.7 L272.7,394.3
L274.6,393.7 L275.1,393.5 L277.4,392.7 L277.9,392.5 L279.7,391.9 L281.3,391.3 L282.0,391.1 L284.2,390.2
L284.7,390.0 L286.3,389.4 L288.2,388.6 L288.5,388.5 L290.6,387.7 L291.7,387.2 L292.7,386.8 L294.8,385.9
L295.3,385.7 L296.8,385.1 L298.8,384.2 L298.9,384.2 L300.7,383.3 L302.4,382.6 L302.7,382.5 L304.7,381.6
L306.1,380.9 L306.7,380.7 L308.7,379.8 L309.8,379.3 L310.6,378.9 L312.5,378.0 L313.5,377.6 M294.0,312.6
L293.1,312.5 L291.6,312.3 L289.3,312.2 L286.8,312.2 L285.0,312.3 L284.2,312.3 L281.6,312.5 L280.2,312.6
L278.9,312.8 L276.3,313.2 L276.2,313.2 L273.3,313.7 L272.9,313.8 L270.4,314.3 L269.8,314.4 L267.4,315.0
L266.8,315.2 L264.3,315.8 L264.0,315.9 L261.4,316.6 L261.2,316.7 L258.8,317.4 L258.0,317.7 L256.4,318.2
L254.8,318.7 L254.0,319.0 L251.6,319.8 L251.4,319.9 L249.3,320.6 L248.1,321.1 L247.1,321.5 L244.9,322.3
L244.7,322.4 L242.7,323.2 L241.2,323.7 L240.5,324.0 L238.4,324.9 L237.7,325.2 L236.3,325.7 L234.3,326.6
L234.1,326.6 L232.2,327.4 L230.5,328.2 L230.2,328.3 L228.2,329.2 L226.9,329.8 L226.2,330.1 L224.2,330.9
L223.2,331.4 L222.2,331.8 L220.3,332.7 L219.5,333.1 L218.3,333.6 L216.4,334.5 L215.8,334.8 L214.4,335.4
L212.5,336.3 L212.1,336.5 L210.6,337.1 L208.7,338.0 L208.3,338.3 L206.7,338.9 L204.9,339.8 L204.5,340.0
L202.9,340.7 L201.1,341.6 L200.7,341.8 L198.8,342.5 L197.2,343.4 L196.4,344.5 L196.5,345.7 L197.1,346.8
L197.1,347.1 L197.3,348.4 L197.7,349.4 L197.7,349.7 L198.0,351.0 L198.3,352.0 L198.4,352.3 L198.6,353.6
L198.9,354.5 L199.0,354.9 L199.3,356.2 L199.6,357.1 L199.7,357.5 L200.0,358.8 L200.2,359.6 L200.3,360.1
L200.7,361.4 L200.9,362.0 L201.1,362.7 L201.5,364.0 L201.6,364.5 L201.9,365.3 L202.3,366.6 L202.4,366.8
L202.7,368.0 L203.2,369.2 M194.7,336.5 L194.8,336.8 L195.2,338.1 L195.3,339.1 L195.4,339.4 L195.9,340.7
L195.9,341.7 L196.2,342.0 L197.0,343.4 L196.2,344.5 L193.8,345.3 L193.2,345.3 L191.9,346.1 L189.9,347.0
L189.4,347.2 L188.0,347.9 L186.0,348.8 L185.7,348.9 M337.6,388.8 L338.0,390.1 L338.3,391.1 L338.4,391.4
L338.8,392.7 L339.1,393.5 L339.3,394.1 L339.7,395.4 L339.9,395.8 L340.2,396.7 L340.8,398.0 L340.8,398.1
L341.3,399.4 L341.7,400.2 L341.9,400.7 L342.5,402.1 L342.6,402.3 L343.2,403.4 L343.6,404.3 L343.9,404.8
L344.6,406.2 L344.7,406.3 L345.4,407.6 L345.8,408.1 L346.3,409.0 L347.0,409.9 L347.3,410.4 L348.2,411.6
L348.3,411.8 L349.5,413.3 L350.9,414.8 L352.3,416.2 L352.4,416.3 L353.8,417.5 L354.3,417.9 L355.4,418.7
L356.6,419.5 L357.1,419.9 L358.8,420.9 L359.7,421.3 L360.6,421.8 L362.5,422.6 L364.5,423.3 L366.2,423.8
L366.6,423.9 L368.7,424.3 L370.9,424.7 L372.0,424.8 L373.2,424.9 L375.6,425.1 M438.1,339.3 L436.1,338.6
L435.0,338.3 L434.0,338.1 L431.8,337.6 L429.6,337.3 L429.1,337.3 L427.3,337.1 L424.9,337.0 L422.4,337.0
L421.1,337.0 L419.8,337.1 L417.2,337.3 L416.3,337.4 L414.5,337.6 L412.4,338.0 L411.7,338.1 L409.0,338.6
L408.8,338.6 L405.9,339.2 L402.9,339.9 L400.1,340.7 L399.8,340.8 L397.5,341.4 L396.6,341.7 L394.9,342.2
L393.4,342.7 L392.5,343.0 L390.2,343.7 L390.0,343.8 L387.7,344.6 L386.9,344.9 L385.4,345.4 L383.5,346.1
L383.2,346.3 L380.9,347.1 L380.1,347.4 L378.8,347.9 L376.6,348.8 L374.5,349.6 L373.0,350.3 L372.4,350.5
L370.4,351.4 L369.5,351.7 L368.3,352.2 L366.3,353.1 L365.9,353.3 L364.3,354.0 L362.3,354.9 L362.2,354.9
L360.3,355.7 L358.6,356.5 L358.3,356.6 L356.4,357.5 L354.9,358.2 L354.4,358.4 L352.5,359.3 L351.1,359.9
L350.5,360.2 L348.6,361.0 L347.4,361.7 L346.7,361.9 L344.8,362.8 L343.6,363.4 L342.9,363.7 L340.9,364.6
L339.9,365.2 L339.0,365.5 L337.1,366.4 L336.0,367.0 L335.0,367.2 L332.9,368.1 L332.1,369.2 L332.6,370.5
L333.1,371.0 L333.1,371.9 L333.4,373.2 L333.7,373.7 L333.8,374.5 L334.1,375.8 L334.3,376.2 L334.4,377.1
L334.7,378.4 L334.9,378.8 L335.1,379.7 L335.4,381.0 L335.5,381.3 L335.7,382.3 L336.1,383.6 L336.2,383.8
L336.4,384.9 L336.8,386.2 L336.9,386.3 L337.2,387.5 L337.6,388.8 '/></g>
</g>
<g id="gnuplot_plot_2a" ><title>gnuplot_plot_2a</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(298.3,421.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>4</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(293.8,421.7) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(166.8,397.4)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>4</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(162.3,398.0) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(375.5,314.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>4</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(371.0,315.5) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(239.9,290.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>4</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(235.4,290.8) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(268.7,414.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>3</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(264.2,414.8) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(303.2,411.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>3</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(298.7,411.6) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(328.4,424.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>3</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(323.9,424.6) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(173.9,387.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>3</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(169.4,388.3) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(194.4,401.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>3</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(189.9,401.6) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(343.9,310.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>3</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(339.4,311.3) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(366.3,324.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>3</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(361.8,324.8) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(402.3,322.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>3</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(397.8,323.1) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(269.6,297.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>3</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(265.1,297.7) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(235.0,300.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>3</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(230.5,300.9) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(310.0,398.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(305.5,398.8) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(333.2,410.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(328.7,411.2) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(347.6,425.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(343.1,425.8) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(181.0,374.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(176.5,375.1) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(199.2,388.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(194.7,388.8) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(215.0,402.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(210.5,403.4) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(251.7,408.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(247.2,409.5) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(282.0,402.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(277.5,403.3) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(311.9,303.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(307.4,304.2) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(274.2,304.4)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(269.7,305.0) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(244.4,311.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(239.9,311.9) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(438.9,326.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(434.4,327.3) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(405.3,330.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(400.8,330.9) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(374.7,337.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(370.2,337.7) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(346.0,330.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(341.5,331.2) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(331.7,315.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(327.2,316.2) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(324.7,373.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(320.2,374.5) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(334.8,358.4)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(330.3,359.0) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(329.8,341.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(325.3,341.9) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(321.2,324.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(316.7,325.5) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(300.7,312.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(296.2,312.9) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(209.2,372.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(204.7,373.3) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(218.2,388.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(213.7,388.8) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(242.1,399.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(237.6,400.2) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(274.7,394.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(270.2,395.1) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(301.3,384.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(296.8,385.1) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(289.5,311.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(285.0,312.3) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(259.3,318.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(254.8,318.7) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(232.7,328.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(228.2,329.2) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(207.4,340.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(202.9,340.7) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(204.2,356.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(199.7,357.5) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(200.4,340.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(195.9,340.7) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(343.6,392.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(339.1,393.5) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(351.5,409.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(347.0,409.9) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(370.7,423.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(366.2,423.8) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(434.1,336.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(429.6,337.3) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(402.0,340.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(397.5,341.4) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(374.9,350.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(370.4,351.4) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(349.3,362.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(344.8,362.8) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(339.2,377.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(334.7,378.4) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M449.3,327.3 L369.6,436.8 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,396.9 L369.6,436.8 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,255.7 L230.4,146.3 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M449.3,186.1 L230.4,146.3 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,410.1 L150.7,255.7 '/></g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M150.7,255.7 L230.4,146.3 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,255.7 L153.8,251.4 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M230.4,146.3 L227.3,150.5 '/> <g transform="translate(147.9,268.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M194.5,263.6 L274.2,154.3 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M194.5,263.6 L197.6,259.4 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M274.2,154.3 L271.1,158.5 '/> <g transform="translate(191.7,276.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 20</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M238.3,271.6 L317.9,162.2 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M238.3,271.6 L241.4,267.4 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M317.9,162.2 L314.8,166.5 '/> <g transform="translate(235.5,284.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 40</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M282.1,279.6 L361.7,170.2 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M282.1,279.6 L285.2,275.4 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M361.7,170.2 L358.6,174.4 '/> <g transform="translate(279.3,291.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 60</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M325.8,287.6 L405.5,178.2 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M325.8,287.6 L328.9,283.3 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M405.5,178.2 L402.4,182.4 '/> <g transform="translate(323.0,299.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 80</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M369.6,295.5 L449.3,186.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M369.6,295.5 L372.7,291.3 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M449.3,186.1 L446.2,190.4 '/> <g transform="translate(366.7,307.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 100</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M369.6,295.5 L150.7,255.7 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M369.6,295.5 L361.1,294.0 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,255.7 L159.2,257.2 '/> <g transform="translate(377.4,302.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M385.5,273.6 L166.7,233.8 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M385.5,273.6 L377.1,272.1 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M166.7,233.8 L175.1,235.3 '/> <g transform="translate(393.3,280.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text> 20</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M401.5,251.7 L182.6,212.0 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M401.5,251.7 L393.0,250.2 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M182.6,212.0 L191.1,213.5 '/> <g transform="translate(409.3,258.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text> 40</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M417.4,229.9 L198.5,190.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M417.4,229.9 L408.9,228.4 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M198.5,190.1 L207.0,191.6 '/> <g transform="translate(425.2,236.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text> 60</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M433.3,208.0 L214.5,168.2 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M433.3,208.0 L424.9,206.5 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M214.5,168.2 L222.9,169.7 '/> <g transform="translate(441.1,215.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text> 80</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M449.3,186.1 L230.4,146.3 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M449.3,186.1 L440.8,184.6 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M230.4,146.3 L238.9,147.8 '/> <g transform="translate(457.1,193.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text> 100</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g id="gnuplot_plot_1b" ><title>gnuplot_plot_1b</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 0, 158, 115)' d='M270.5,277.5 L271.4,277.3 L273.9,276.8 L274.2,276.8 L277.0,276.3 L277.5,276.3 L279.8,275.9 L281.4,275.7
L282.5,275.6 L285.2,275.4 L286.0,275.3 L287.7,275.2 L290.2,275.2 L292.6,275.3 L292.8,275.3 L295.0,275.5
L297.2,275.9 L299.4,276.3 L301.3,276.9 L301.4,276.9 L303.3,277.6 L305.2,278.4 L306.6,279.1 L307.0,279.3
L308.7,280.3 L309.6,280.9 L310.4,281.4 L312.0,282.6 L313.6,283.9 L313.9,284.2 L315.1,285.2 L315.7,285.7
M154.5,250.4 L156.6,250.5 L156.9,250.6 L159.2,250.8 L161.5,251.1 L163.6,251.6 L165.3,252.1 L165.6,252.2
L167.6,252.9 L169.5,253.8 L170.5,254.3 L171.3,254.7 L173.0,255.8 L173.5,256.1 L174.7,256.9 L175.8,257.8
L176.3,258.1 L177.8,259.3 L177.9,259.4 L179.3,260.7 L179.7,260.9 M349.3,169.2 L349.7,169.6 L351.1,170.8
L351.3,170.9 L352.8,172.2 L353.1,172.4 L354.4,173.4 L355.4,174.0 L356.1,174.5 L357.8,175.5 L358.4,175.8
L359.6,176.4 L361.5,177.3 L363.5,178.0 L363.6,178.0 L365.5,178.6 L367.7,179.0 L369.9,179.4 L372.2,179.6
L372.3,179.6 L374.6,179.7 L377.1,179.7 L379.1,179.6 L379.7,179.5 L382.3,179.3 L383.7,179.2 L385.0,179.0
L387.7,178.7 L387.8,178.6 L390.6,178.2 L391.2,178.1 L393.4,177.7 L394.6,177.4 M258.5,152.7 L257.9,152.8
L255.2,153.3 L255.1,153.3 L252.3,153.8 L251.5,153.9 L249.5,154.2 L247.6,154.4 L246.8,154.5 L244.1,154.7
L243.0,154.8 L241.5,154.9 L239.0,154.9 L236.6,154.8 L236.2,154.8 L234.3,154.6 L232.0,154.3 L229.9,153.9
L227.8,153.3 L227.5,153.2 L225.8,152.6 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 86, 180, 233)' d='M247.7,273.3 L249.7,272.9 L251.0,272.7 L252.7,272.3 L254.0,272.0 L255.7,271.6 L257.0,271.3 L258.7,270.9
L259.9,270.6 L261.7,270.1 L262.7,269.8 L264.8,269.3 L265.4,269.1 L267.9,268.4 L268.1,268.4 L270.8,267.6
L271.0,267.5 L273.5,266.9 L274.1,266.7 L276.2,266.1 L277.2,265.8 L278.9,265.4 L280.3,265.0 L281.7,264.6
L283.4,264.2 L284.6,263.9 L286.4,263.5 L287.5,263.2 L289.4,262.8 L290.7,262.5 L292.2,262.2 L294.1,261.9
L295.1,261.8 L297.8,261.4 L298.1,261.4 L300.3,261.3 L302.8,261.2 L304.2,261.3 L305.2,261.4 L307.4,261.7
L309.6,262.1 L310.6,262.5 L311.6,262.8 L313.5,263.6 L315.2,264.5 L315.2,264.6 L316.9,265.7 L317.6,266.2
L318.5,266.9 L319.4,267.8 L320.0,268.3 L321.0,269.3 L321.4,269.7 L322.4,270.8 L322.8,271.3 L323.6,272.3
L324.1,272.8 L324.8,273.7 L325.4,274.5 L326.0,275.2 L326.7,276.1 L327.1,276.6 L327.9,277.8 L328.2,278.1
L329.2,279.4 L329.3,279.5 L330.4,280.9 L330.5,281.1 L331.5,282.4 L331.8,282.7 L332.7,283.9 L333.1,284.3
L334.0,285.3 L334.5,285.8 L335.4,286.8 L335.9,287.3 L336.8,288.3 L337.3,288.8 L338.5,289.9 M164.7,236.5
L167.2,236.5 L168.1,236.5 L169.6,236.6 L171.8,237.0 L173.9,237.5 L174.6,237.7 L175.9,238.1 L177.7,239.0
L179.1,239.8 L179.5,240.0 L181.1,241.1 L181.5,241.4 L182.7,242.4 L183.3,243.0 L184.2,243.8 L184.9,244.5
L185.6,245.2 L186.3,246.0 L187.0,246.8 L187.5,247.5 L188.3,248.4 L188.7,249.0 L189.6,250.0 L189.9,250.4
L190.8,251.7 L191.0,251.8 L192.1,253.3 L193.2,254.7 L193.4,255.0 L194.3,256.2 L194.7,256.6 L195.4,257.6
L196.0,258.3 L196.6,259.1 L197.3,259.8 L197.9,260.5 L198.7,261.4 L199.3,262.0 L200.1,262.9 L200.7,263.5
L201.5,264.3 L202.4,265.1 M326.5,165.1 L327.6,166.0 L328.2,166.6 L329.0,167.4 L329.6,168.1 L330.4,168.9
L331.0,169.6 L331.8,170.4 L332.3,171.1 L333.1,172.0 L333.5,172.5 L334.4,173.7 L334.6,174.0 L335.7,175.3
L335.7,175.4 L336.8,176.8 L336.9,177.0 L337.9,178.3 L338.2,178.6 L339.1,179.7 L339.5,180.3 L340.2,181.2
L340.8,181.9 L341.4,182.6 L342.1,183.5 L342.6,184.1 L343.5,185.0 L344.0,185.6 L344.9,186.5 L345.6,187.1
L346.4,187.9 L347.4,188.7 L347.9,189.1 L349.6,190.2 L349.8,190.4 L351.4,191.2 L353.2,192.1 L354.4,192.4
L355.2,192.7 L357.3,193.2 L359.6,193.5 L360.8,193.6 L362.0,193.7 L364.5,193.7 L367.0,193.5 L367.1,193.5
L369.8,193.2 L371.0,193.0 L372.6,192.7 L374.4,192.4 L375.5,192.2 L377.6,191.7 L378.4,191.5 L380.5,191.0
L381.4,190.8 L383.4,190.3 L384.5,190.0 L386.2,189.5 L387.6,189.2 L388.9,188.8 L390.7,188.3 L391.6,188.1
L393.8,187.5 L394.3,187.3 L396.9,186.6 L397.0,186.6 L399.7,185.8 L400.0,185.7 L402.5,185.1 L403.1,184.9
L405.3,184.3 L406.1,184.1 L408.1,183.6 L409.1,183.4 L411.1,182.9 L412.1,182.7 L414.1,182.2 L415.1,182.0
L417.4,181.6 M281.3,156.8 L279.6,157.1 L278.0,157.4 L276.6,157.8 L275.0,158.1 L273.7,158.4 L272.0,158.8
L270.6,159.2 L269.2,159.6 L267.6,160.0 L266.4,160.3 L264.5,160.8 L263.6,161.0 L261.4,161.6 L260.9,161.8
L258.3,162.5 L258.2,162.5 L255.5,163.3 L255.2,163.4 L252.8,164.0 L252.1,164.2 L250.1,164.8 L249.0,165.1
L247.3,165.5 L245.9,165.9 L244.5,166.2 L242.9,166.6 L241.5,166.9 L240.0,167.3 L238.3,167.6 L237.1,167.8
L234.9,168.2 L234.2,168.3 L231.5,168.6 L230.9,168.7 L228.9,168.9 L226.4,168.9 L224.8,168.8 L224.0,168.8
L221.7,168.5 L219.5,168.0 L218.3,167.6 L217.5,167.4 L215.6,166.6 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(230, 159, 0)' d='M297.7,166.3 L295.4,166.1 L292.9,166.0 M304.7,241.6 L304.8,241.5 L306.5,240.7 L308.3,239.7 L308.6,239.6
L310.2,238.8 L312.0,237.9 L312.6,237.6 L313.8,237.0 L315.6,236.1 L316.5,235.6 L317.4,235.2 L319.2,234.3
L320.4,233.6 L321.0,233.4 L322.8,232.5 L324.4,231.6 L324.5,231.5 L326.5,230.7 L328.1,229.8 L328.4,229.6
L330.3,229.0 L331.9,228.0 L332.7,226.9 L332.7,225.7 L332.1,224.6 L332.1,224.3 L332.0,223.1 L331.7,221.8
L331.7,221.7 L331.6,220.5 L331.3,219.2 L331.2,218.9 L331.2,218.0 L331.0,216.7 L330.8,216.1 L330.7,215.4
L330.5,214.1 L330.3,213.3 L330.3,212.8 L330.1,211.6 L329.9,210.5 L329.8,210.3 L329.6,209.0 L329.4,207.8
L329.4,207.7 L329.1,206.4 L328.8,205.1 L328.6,203.9 L328.3,202.6 L328.3,202.5 L328.0,201.3 L327.7,200.0
L327.6,199.9 L327.3,198.7 L327.0,197.4 L326.6,196.1 L326.3,195.0 L326.2,194.7 L325.8,193.4 L325.5,192.6
L325.4,192.1 L324.9,190.8 L324.7,190.3 L324.4,189.5 L323.9,188.1 L323.3,186.8 L322.9,186.0 L322.7,185.4
L322.0,184.1 L321.9,183.9 L321.3,182.7 L320.9,182.0 L320.5,181.3 L319.7,180.2 L319.6,179.9 L318.6,178.5
L318.5,178.4 L317.5,177.0 L317.2,176.8 L316.2,175.6 L315.9,175.2 L314.7,174.1 L314.4,173.8 L312.9,172.5
L311.3,171.3 L310.5,170.8 L309.6,170.2 L307.8,169.3 L307.1,169.0 L306.0,168.4 L304.0,167.7 L301.9,167.1
L299.9,166.7 L297.7,166.3 M200.6,227.7 L200.7,228.0 L200.9,229.0 L201.3,230.3 L201.3,230.5 L201.6,231.5
L201.9,232.8 L202.0,232.9 L202.3,234.1 L202.7,235.4 L203.1,236.7 L203.5,237.7 L203.5,238.0 L204.0,239.3
L204.3,240.0 L204.5,240.7 L205.1,242.0 L205.1,242.2 L205.6,243.3 L206.1,244.4 L206.2,244.7 L206.9,246.1
L207.1,246.4 L207.7,247.4 L208.2,248.3 L208.5,248.8 L209.3,250.2 L210.3,251.6 L210.5,251.9 L211.5,253.1
L211.8,253.5 L212.7,254.6 L213.2,255.0 L214.2,256.1 L214.6,256.5 L216.0,257.6 L216.2,257.8 L217.8,258.9
L218.4,259.3 L219.5,260.0 L221.3,260.9 L221.8,261.2 L223.2,261.8 L225.1,262.5 L227.2,263.0 L229.3,263.5
L231.6,263.8 L233.9,264.0 L236.3,264.1 L237.9,264.1 L238.8,264.1 L241.4,263.9 L242.9,263.8 L244.1,263.6
L246.9,263.3 L246.9,263.2 L249.7,262.7 L250.2,262.6 L252.7,262.1 L253.3,261.9 L255.7,261.4 L256.2,261.2
L258.8,260.5 L258.9,260.5 L261.5,259.7 L261.9,259.6 L264.0,258.9 L265.2,258.5 L266.4,258.1 L268.5,257.4
L268.7,257.3 L271.0,256.5 L271.9,256.1 L273.2,255.6 L275.3,254.8 L275.4,254.8 L277.5,253.9 L278.9,253.4
L279.6,253.1 L281.6,252.2 L282.4,251.9 L283.7,251.4 L285.7,250.5 L286.0,250.3 L287.7,249.6 L289.6,248.7
L289.7,248.7 L291.6,247.8 L293.4,247.0 L293.5,246.9 L295.4,246.1 L297.2,245.2 L297.3,245.2 L299.2,244.3
L300.9,243.4 L302.8,242.5 L304.7,241.6 M292.9,166.0 L291.1,166.0 L290.4,166.0 L287.9,166.2 L286.1,166.4
L285.2,166.4 L282.4,166.8 L282.2,166.9 L279.6,167.3 L278.8,167.5 L276.7,167.9 L275.7,168.2 L273.6,168.7
L272.8,168.9 L270.6,169.5 L270.1,169.6 L267.5,170.4 L267.4,170.4 L265.0,171.2 L264.2,171.5 L262.6,172.0
L260.8,172.6 L260.3,172.8 L258.0,173.6 L257.5,173.9 L255.8,174.5 L254.0,175.2 L253.7,175.3 L251.5,176.2
L250.5,176.6 L249.4,177.0 L247.4,177.9 L247.0,178.1 L245.3,178.8 L243.3,179.6 L241.3,180.5 L239.7,181.3
L239.4,181.4 L237.4,182.3 L235.9,183.0 L235.5,183.2 L233.6,184.1 L232.2,184.8 L231.7,185.0 L229.8,185.9
L228.4,186.6 L228.0,186.8 L226.1,187.7 L224.5,188.4 L224.3,188.6 L222.4,189.5 L220.7,190.4 L220.6,190.4
L218.7,191.3 L217.0,192.2 L216.8,192.3 L215.1,193.1 L213.3,194.0 L212.8,194.3 L211.5,194.9 L209.7,195.8
L208.9,196.3 L207.9,196.8 L206.1,197.7 L204.9,198.3 L204.3,198.6 L202.5,199.5 L201.0,200.4 L200.8,200.4
L198.7,201.3 L197.2,202.2 L196.4,203.3 L196.3,204.6 L196.8,205.9 L196.9,206.0 L196.9,207.1 L197.2,208.4
L197.3,208.8 L197.3,209.7 L197.5,211.0 L197.7,211.6 L197.8,212.3 L197.9,213.5 L198.2,214.5 L198.2,214.8
L198.4,216.1 L198.6,217.2 L198.6,217.4 L198.8,218.7 L199.1,219.9 L199.1,220.0 L199.3,221.2 L199.6,222.5
L199.6,222.7 L199.8,223.8 L200.1,225.1 L200.1,225.4 L200.3,226.4 L200.6,227.7 M195.2,194.7 L195.5,195.7
L195.6,197.0 L195.6,197.5 L195.9,198.3 L196.1,199.6 L196.0,200.4 L196.6,200.9 L197.1,202.2 L196.3,203.3
L194.2,204.2 L193.1,204.4 L192.1,205.0 L190.4,206.0 L189.1,206.5 L188.5,206.9 L186.7,207.8 L185.1,208.5
M335.4,245.9 L335.6,246.8 L335.6,247.2 L335.9,248.5 L336.1,249.5 L336.2,249.8 L336.4,251.1 L336.7,252.1
L336.7,252.3 L337.0,253.6 L337.3,254.7 L337.3,254.9 L337.7,256.2 L337.9,257.2 L338.0,257.5 L338.4,258.9
L338.6,259.7 L338.8,260.2 L339.2,261.5 L339.4,262.0 L339.6,262.8 L340.1,264.1 L340.2,264.4 L340.6,265.5
L341.1,266.6 L341.1,266.8 L341.7,268.1 L342.0,268.7 L342.3,269.5 L343.0,270.8 L343.7,272.2 L344.0,272.7
L344.6,273.6 L345.2,274.6 L345.4,275.0 L346.4,276.3 L346.4,276.4 L347.5,277.9 L347.6,278.0 L348.8,279.3
L349.0,279.5 L350.3,280.9 L350.4,281.0 L351.9,282.3 L352.1,282.4 L353.5,283.5 L354.5,284.1 L355.2,284.6
L357.0,285.5 L357.9,286.0 L358.9,286.4 L360.8,287.1 L362.9,287.7 L365.0,288.2 L367.2,288.6 L369.5,288.8
L371.9,288.9 M441.8,193.1 L439.8,192.4 L437.7,191.8 L435.5,191.4 L433.3,191.1 L431.0,190.9 L428.5,190.8
L427.2,190.8 L426.0,190.8 L423.4,191.0 L422.2,191.1 L420.7,191.3 L418.3,191.7 L417.9,191.7 L415.1,192.2
L414.9,192.3 L412.1,192.9 L411.8,193.0 L409.1,193.6 L408.9,193.7 L406.2,194.4 L406.0,194.5 L403.6,195.2
L402.8,195.4 L401.1,196.0 L399.6,196.5 L398.7,196.8 L396.4,197.6 L396.3,197.7 L394.1,198.4 L392.9,198.9
L391.9,199.3 L389.8,200.1 L389.4,200.2 L387.6,201.0 L385.9,201.7 L385.5,201.8 L383.5,202.7 L382.3,203.2
L381.4,203.6 L379.4,204.4 L378.7,204.8 L377.4,205.3 L375.5,206.2 L375.0,206.4 L373.5,207.1 L371.6,208.0
L371.3,208.1 L369.7,208.9 L367.8,209.8 L367.5,209.9 L365.9,210.6 L364.1,211.6 L363.7,211.7 L362.2,212.4
L360.3,213.4 L359.8,213.6 L358.5,214.3 L356.7,215.2 L356.0,215.5 L354.8,216.1 L353.0,217.0 L352.1,217.5
L351.2,217.9 L349.4,218.8 L348.1,219.5 L347.6,219.7 L345.8,220.6 L344.2,221.5 L344.1,221.5 L342.2,222.4
L340.5,223.4 L340.2,223.5 L338.5,224.3 L336.8,225.2 L336.2,225.6 L334.7,226.0 L332.9,227.0 L332.1,228.1
L332.3,229.3 L332.9,230.1 L332.9,230.7 L333.0,231.8 L333.3,232.9 L333.3,233.1 L333.4,234.4 L333.7,235.7
L333.7,235.8 L333.8,236.9 L334.1,238.2 L334.2,238.6 L334.3,239.5 L334.5,240.8 L334.6,241.4 L334.7,242.1
L334.9,243.3 L335.1,244.1 L335.2,244.6 L335.4,245.9 '/></g>
</g>
<g id="gnuplot_plot_2b" ><title>gnuplot_plot_2b</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(282.0,275.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>3</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(277.5,276.3) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(314.1,280.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>3</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(309.6,280.9) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(168.1,251.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>3</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(163.6,251.6) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(357.6,171.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>3</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(353.1,172.4) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(388.2,178.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>3</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(383.7,179.2) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(256.0,153.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>3</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(251.5,153.9) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(260.2,271.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(255.7,271.6) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(289.1,263.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(284.6,263.9) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(319.7,264.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(315.2,264.6) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(333.8,278.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(329.3,279.5) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(178.4,236.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(173.9,237.5) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(195.3,251.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(190.8,251.7) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(334.9,168.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(330.4,168.9) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(347.1,183.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(342.6,184.1) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(371.6,192.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(367.1,193.5) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(401.5,186.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(397.0,186.6) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(278.2,157.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(273.7,158.4) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(249.0,165.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(244.5,166.2) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(314.7,238.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(310.2,238.8) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(336.6,224.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(332.1,224.6) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(333.9,207.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(329.4,207.7) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(329.2,189.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(324.7,190.3) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(319.2,173.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(314.7,174.1) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(206.1,230.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(201.6,231.5) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(213.0,248.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(208.5,248.8) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(231.7,262.4)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(227.2,263.0) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(266.0,259.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(261.5,259.7) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(292.2,249.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(287.7,249.6) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(289.7,165.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(285.2,166.4) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(260.3,173.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(255.8,174.5) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(232.9,186.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(228.4,186.6) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(208.8,198.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(204.3,198.6) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(202.9,215.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(198.4,216.1) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(200.6,199.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(196.1,199.6) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(340.7,249.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(336.2,249.8) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(345.6,266.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(341.1,266.8) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(356.6,281.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(352.1,282.4) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(435.5,190.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(431.0,190.9) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(404.1,195.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(399.6,196.5) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(378.0,206.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(373.5,207.1) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(352.6,218.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(348.1,219.5) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(337.9,233.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(333.4,234.4) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M449.3,186.1 L369.6,295.5 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,255.7 L369.6,295.5 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,114.5 L230.4,5.1 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M449.3,44.9 L230.4,5.1 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,411.0 L150.7,114.5 '/></g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M150.7,114.5 L230.4,5.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,114.5 L153.8,110.3 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M230.4,5.1 L227.3,9.3 '/> <g transform="translate(147.9,126.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M194.5,122.5 L274.2,13.0 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M194.5,122.5 L197.6,118.3 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M274.2,13.0 L271.1,17.2 '/> <g transform="translate(191.7,134.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 20</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M238.3,130.5 L317.9,21.0 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M238.3,130.5 L241.4,126.2 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M317.9,21.0 L314.8,25.2 '/> <g transform="translate(235.5,142.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 40</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M282.1,138.4 L361.7,29.0 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M282.1,138.4 L285.2,134.2 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M361.7,29.0 L358.6,33.2 '/> <g transform="translate(279.3,150.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 60</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M325.8,146.4 L405.5,36.9 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M325.8,146.4 L328.9,142.2 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M405.5,36.9 L402.4,41.2 '/> <g transform="translate(323.0,158.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 80</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M369.6,154.4 L449.3,44.9 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M369.6,154.4 L372.7,150.1 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M449.3,44.9 L446.2,49.1 '/> <g transform="translate(366.7,166.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 100</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M369.6,154.4 L150.7,114.5 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M369.6,154.4 L361.1,152.8 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,114.5 L159.2,116.1 '/> <g transform="translate(377.4,161.4)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M385.5,132.5 L166.7,92.6 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M385.5,132.5 L377.1,130.9 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M166.7,92.6 L175.1,94.2 '/> <g transform="translate(393.3,139.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text> 20</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M401.5,110.6 L182.6,70.7 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M401.5,110.6 L393.0,109.0 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M182.6,70.7 L191.1,72.3 '/> <g transform="translate(409.3,117.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text> 40</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M417.4,88.7 L198.5,48.8 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M417.4,88.7 L408.9,87.1 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M198.5,48.8 L207.0,50.4 '/> <g transform="translate(425.2,95.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text> 60</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M433.3,66.8 L214.5,26.9 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M433.3,66.8 L424.9,65.3 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M214.5,26.9 L222.9,28.5 '/> <g transform="translate(441.1,73.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text> 80</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M449.3,44.9 L230.4,5.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M449.3,44.9 L440.8,43.4 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M230.4,5.1 L238.9,6.6 '/> <g transform="translate(457.1,51.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text> 100</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g id="gnuplot_plot_1c" ><title>gnuplot_plot_1c</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 0, 158, 115)' d='M284.3,138.8 L286.8,138.8 L289.3,138.8 L291.6,139.0 L293.8,139.3 L296.0,139.8 L298.0,140.4 L300.0,141.1
L301.8,142.0 L301.9,142.1 M151.1,114.0 L153.6,114.1 L155.9,114.3 L158.1,114.6 L160.2,115.1 L162.2,115.7
L164.2,116.5 L165.9,117.3 M363.0,30.4 L363.1,30.5 L364.9,31.3 L366.9,32.1 L368.9,32.7 L371.0,33.1
L373.3,33.5 L375.6,33.7 L378.0,33.8 L380.6,33.7 L380.8,33.7 M244.7,8.9 L242.4,9.0 L240.0,8.9
L237.6,8.7 L235.4,8.4 L233.2,8.0 L231.2,7.4 L229.2,6.7 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 86, 180, 233)' d='M257.3,133.9 L258.3,133.6 L259.9,133.2 L261.5,132.7 L262.5,132.4 L264.7,131.7 L265.0,131.6 L267.5,130.8
L267.9,130.7 L270.1,130.0 L271.1,129.7 L272.6,129.3 L274.3,128.8 L275.2,128.5 L277.4,127.8 L277.7,127.7
L280.4,127.0 L280.6,126.9 L283.1,126.2 L283.7,126.1 L285.9,125.5 L286.7,125.3 L289.0,124.8 L289.7,124.6
L292.2,124.2 L292.5,124.1 L295.3,123.7 L296.1,123.6 L298.0,123.5 L300.4,123.4 L301.8,123.4 L302.8,123.5
L305.1,123.8 L307.2,124.3 L308.2,124.6 L309.2,124.9 L311.0,125.8 L312.4,126.6 L312.8,126.8 L314.4,128.0
L314.7,128.3 L315.9,129.3 L316.4,129.8 L317.3,130.8 L317.8,131.3 L318.7,132.3 L319.0,132.8 L320.0,133.9
L320.2,134.2 L321.2,135.6 L321.2,135.7 L322.2,137.1 L322.4,137.4 L323.2,138.5 L323.6,139.2 L324.1,139.9
L324.8,140.9 L325.0,141.3 L326.0,142.7 L326.9,144.1 L327.2,144.5 L327.9,145.5 L328.4,146.2 L328.9,147.0
M162.3,98.6 L164.8,98.6 L165.7,98.7 L167.2,98.7 L169.4,99.1 L171.5,99.6 L172.1,99.8 L173.5,100.3
L175.3,101.2 L176.3,101.8 L177.0,102.3 L178.6,103.5 L180.1,104.8 L180.3,105.0 L181.5,106.3 L181.7,106.5
L182.9,107.9 L183.0,108.0 L184.1,109.4 L184.1,109.5 L185.1,110.9 L185.4,111.2 L186.1,112.3 L186.6,113.0
L187.1,113.7 L187.8,114.7 L188.0,115.1 L189.0,116.5 L189.9,117.9 L190.1,118.3 L190.8,119.3 L191.3,120.1
L191.8,120.8 L192.5,121.8 L192.8,122.2 M336.1,25.5 L336.5,26.1 L337.1,27.0 L337.7,27.8 L338.1,28.4
L338.9,29.6 L339.0,29.8 L340.0,31.2 L340.1,31.4 L340.9,32.6 L341.3,33.2 L341.8,34.0 L342.5,34.9
L342.8,35.4 L343.7,36.7 L343.8,36.9 L344.8,38.3 L344.9,38.4 L346.0,39.7 L346.2,40.0 L347.2,41.2
L347.5,41.6 L348.6,42.7 L349.0,43.0 L350.3,44.2 L350.5,44.4 L352.1,45.6 L352.6,45.9 L353.8,46.6
L355.6,47.5 L356.8,47.9 L357.6,48.2 L359.7,48.7 L362.0,49.0 L363.2,49.1 L364.4,49.1 L366.9,49.1
L369.0,48.9 L369.5,48.8 L372.3,48.5 L372.9,48.3 L375.2,47.9 L376.1,47.7 L378.1,47.3 L379.2,47.0
L381.1,46.5 L382.0,46.3 L384.2,45.7 L384.7,45.5 L387.4,44.8 L389.9,44.0 L390.5,43.9 L392.5,43.2
L393.7,42.9 L395.0,42.5 L396.9,41.9 L397.6,41.7 L400.1,40.9 L402.6,40.1 L403.3,39.9 L405.2,39.4
L406.5,39.0 L407.8,38.6 M271.7,13.8 L271.0,14.0 L269.1,14.6 L267.8,15.0 L266.5,15.3 L264.7,15.9
L264.0,16.1 L261.5,16.9 L258.9,17.7 L258.3,17.9 L256.4,18.5 L255.1,18.9 L253.9,19.2 L251.9,19.8
L251.3,20.0 L248.8,20.7 L248.6,20.8 L245.9,21.5 L245.7,21.6 L243.1,22.2 L242.6,22.4 L240.1,22.9
L239.7,23.0 L236.8,23.6 L234.0,24.0 L232.9,24.1 L231.3,24.3 L228.8,24.3 L227.1,24.3 L226.4,24.3
L224.1,24.0 L221.9,23.5 L220.7,23.1 L219.9,22.9 L218.1,22.0 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(230, 159, 0)' d='M320.2,31.5 L320.1,31.3 L318.9,29.9 L318.9,29.8 L317.6,28.4 L317.5,28.3 L316.1,26.9 L316.0,26.8
L314.5,25.6 L313.9,25.2 L312.9,24.5 L311.1,23.5 L309.3,22.6 L307.3,21.9 L305.3,21.3 L303.2,20.8
L300.9,20.5 L298.7,20.3 L296.3,20.2 L293.7,20.2 M288.3,109.8 L290.1,108.9 L291.8,108.1 L292.0,108.0
L293.8,107.1 L295.6,106.2 L295.7,106.1 L297.4,105.3 L299.1,104.3 L299.7,104.0 L300.8,103.4 L302.6,102.5
L303.6,101.9 L304.3,101.6 L306.1,100.7 L307.6,99.8 L307.8,99.7 L309.6,98.8 L311.3,97.9 L311.7,97.6
L313.0,97.0 L314.7,96.0 L315.8,95.4 L316.4,95.1 L318.2,94.2 L319.8,93.2 L319.9,93.2 L321.6,92.3
L323.3,91.4 L324.0,90.9 L325.0,90.5 L326.7,89.5 L328.2,88.6 L328.3,88.6 L330.5,87.7 L331.9,86.8
L332.7,85.7 L332.8,84.5 L332.3,83.1 L332.2,83.0 L332.3,81.9 L332.2,80.6 L332.0,80.0 L332.0,79.4
L332.0,78.1 L331.8,76.9 L331.8,76.8 L331.7,75.6 L331.6,74.3 L331.5,73.9 L331.5,73.0 L331.3,71.8
L331.2,70.9 L331.2,70.5 L331.1,69.3 L330.9,68.0 L330.9,67.9 L330.8,66.7 L330.6,65.5 L330.5,64.9
L330.5,64.2 L330.3,62.9 L330.2,62.1 L330.1,61.6 L329.9,60.4 L329.7,59.2 L329.7,59.1 L329.5,57.8
L329.3,56.5 L329.3,56.4 L329.1,55.3 L328.8,54.0 L328.8,53.7 L328.6,52.7 L328.3,51.4 L328.2,51.1
L328.0,50.1 L327.7,48.8 L327.6,48.5 L327.3,47.5 L327.0,46.2 L326.9,46.1 L326.6,44.9 L326.2,43.7
L326.1,43.6 L325.7,42.2 L325.4,41.4 L325.2,40.9 L324.7,39.6 L324.5,39.2 L324.1,38.2 L323.5,37.1
L323.4,36.9 L322.7,35.5 L322.5,35.1 L321.9,34.1 L321.4,33.2 L321.0,32.7 L320.2,31.5 M198.4,83.1
L198.5,83.5 L198.6,84.8 L198.8,86.0 L198.8,86.1 L199.0,87.4 L199.2,88.6 L199.2,88.8 L199.4,89.9
L199.6,91.2 L199.7,91.6 L199.8,92.5 L200.1,93.8 L200.2,94.3 L200.3,95.0 L200.6,96.3 L200.8,96.9
L200.9,97.6 L201.2,98.9 L201.4,99.4 L201.6,100.2 L202.0,101.5 L202.1,101.9 L202.3,102.8 L202.8,104.2
L202.8,104.3 L203.2,105.5 L203.6,106.6 L203.7,106.8 L204.3,108.2 L204.5,108.8 L204.9,109.5 L205.5,110.8
L205.5,110.9 L206.2,112.2 L206.5,112.8 L207.0,113.6 L207.6,114.7 L207.9,115.0 L208.8,116.4 L208.9,116.4
L210.0,117.9 L210.1,118.1 L211.3,119.4 L211.5,119.6 L212.9,120.9 L213.0,121.0 L214.6,122.2 L215.0,122.5
L216.2,123.3 L217.9,124.3 L218.0,124.3 L219.8,125.2 L221.8,125.9 L223.8,126.5 L226.0,127.0 L228.2,127.3
L230.6,127.5 L233.0,127.5 L235.5,127.5 L238.2,127.3 L239.9,127.0 L240.9,126.9 L243.6,126.5 L243.7,126.4
L246.6,125.8 L246.8,125.8 L249.6,125.1 L249.7,125.1 L252.4,124.4 L252.7,124.3 L255.0,123.6 L255.9,123.3
L257.5,122.8 L259.2,122.2 L259.9,122.0 L262.2,121.2 L262.5,121.0 L264.4,120.3 L266.0,119.7 L266.6,119.5
L268.7,118.6 L269.5,118.3 L270.8,117.8 L272.9,116.9 L273.0,116.8 L274.9,116.0 L276.7,115.3 L276.9,115.2
L278.8,114.3 L280.4,113.6 L280.8,113.4 L282.7,112.5 L284.1,111.8 L284.6,111.6 L286.4,110.7 L287.9,110.0
L288.3,109.8 M293.7,20.2 L293.6,20.3 L291.1,20.4 L289.1,20.7 L288.4,20.8 L285.6,21.2 L285.4,21.3
L282.7,21.8 L282.3,21.9 L279.7,22.5 L279.3,22.6 L276.6,23.4 L274.0,24.1 L273.4,24.3 L271.5,24.9
L270.2,25.4 L269.2,25.7 L266.8,26.6 L264.6,27.4 L263.4,27.9 L262.4,28.2 L260.3,29.1 L259.9,29.2
L258.2,29.9 L256.4,30.7 L256.2,30.8 L254.1,31.7 L252.7,32.3 L252.2,32.6 L250.2,33.4 L249.0,34.0
L248.3,34.3 L246.3,35.2 L245.3,35.7 L244.5,36.1 L242.6,37.0 L241.5,37.6 L240.7,37.9 L238.9,38.8
L237.6,39.5 L237.1,39.7 L235.2,40.6 L233.7,41.4 L233.5,41.6 L231.6,42.5 L229.9,43.4 L229.7,43.5
L228.1,44.3 L226.3,45.2 L225.7,45.6 L224.6,46.1 L222.8,47.1 L221.7,47.7 L221.1,48.0 L219.4,48.9
L217.7,49.8 L217.6,49.9 L215.9,50.8 L214.2,51.7 L213.5,52.1 L212.5,52.6 L210.8,53.5 L209.4,54.3
L209.1,54.5 L207.3,55.4 L205.7,56.3 L205.3,56.6 L203.9,57.3 L202.2,58.2 L201.2,58.9 L200.4,59.1
L198.5,60.0 L197.2,61.0 L196.4,62.1 L196.1,63.3 L196.5,64.6 L196.7,65.0 L196.6,65.8 L196.7,67.1
L196.9,68.1 L196.9,68.4 L197.0,69.6 L197.1,70.9 L197.2,71.1 L197.2,72.2 L197.3,73.4 L197.5,74.2
L197.5,74.7 L197.6,75.9 L197.7,77.2 L197.8,78.5 L198.0,79.7 L198.1,80.1 L198.1,81.0 L198.3,82.3
L198.4,83.1 M195.7,52.7 L195.8,53.3 L196.0,54.6 L196.0,55.8 L196.3,57.1 L196.3,58.3 L196.2,58.9
L196.8,59.7 L197.1,61.0 L196.3,62.1 L194.4,63.0 L193.0,63.3 L192.3,63.8 L190.7,64.8 L188.8,65.7
L187.2,66.6 L185.5,67.5 L184.7,67.9 M333.8,101.4 L333.8,102.0 L333.9,103.3 L334.1,104.3 L334.1,104.5
L334.2,105.8 L334.4,107.1 L334.4,107.3 L334.5,108.3 L334.7,109.6 L334.8,110.2 L334.9,110.9 L335.1,112.1
L335.2,113.0 L335.3,113.4 L335.5,114.7 L335.7,115.8 L335.7,116.0 L335.9,117.3 L336.2,118.5 L336.4,119.8
L336.7,121.1 L337.0,122.4 L337.3,123.7 L337.7,125.0 L338.0,126.2 L338.0,126.3 L338.4,127.6 L338.8,128.6
L338.9,128.9 L339.3,130.3 L339.6,130.9 L339.8,131.6 L340.4,132.9 L340.4,133.1 L340.9,134.3 L341.4,135.2
L341.6,135.6 L342.3,137.0 L342.4,137.2 L343.1,138.4 L343.5,139.1 L344.0,139.8 L344.7,140.9 L345.0,141.2
L346.0,142.5 L346.1,142.7 L347.3,144.1 L347.4,144.1 L348.8,145.5 L349.0,145.7 L350.3,146.7 L351.1,147.3
L352.0,147.9 L353.7,148.9 L354.0,149.1 L355.5,149.8 L357.5,150.6 L359.5,151.2 L361.6,151.7 L363.8,152.0
L366.2,152.2 L368.6,152.3 M445.1,47.2 L443.1,46.5 L441.1,45.9 L438.9,45.5 L436.7,45.2 L434.3,45.0
L431.9,45.0 L429.7,45.0 L429.3,45.1 L426.7,45.3 L425.2,45.5 L423.9,45.6 L421.6,46.1 L421.1,46.1
L418.3,46.7 L418.2,46.7 L415.4,47.4 L415.2,47.5 L412.7,48.2 L412.1,48.3 L410.1,48.9 L408.9,49.3
L407.6,49.7 L405.6,50.4 L405.2,50.5 L402.9,51.3 L402.2,51.6 L400.7,52.2 L398.8,52.9 L398.5,53.0
L396.4,53.9 L395.3,54.3 L394.3,54.7 L392.3,55.6 L391.7,55.8 L390.2,56.5 L388.3,57.3 L388.1,57.4
L386.3,58.2 L384.4,59.1 L382.4,60.0 L380.6,60.9 L378.7,61.8 L376.8,62.7 L375.0,63.6 L373.2,64.5
L372.9,64.7 L371.3,65.4 L369.5,66.3 L369.0,66.6 L367.7,67.3 L366.0,68.2 L365.0,68.7 L364.2,69.1
L362.4,70.0 L361.0,70.8 L360.7,70.9 L358.9,71.8 L357.2,72.8 L357.0,72.9 L355.5,73.7 L353.7,74.6
L352.9,75.1 L352.0,75.5 L350.3,76.5 L348.8,77.3 L348.6,77.4 L346.8,78.3 L345.2,79.3 L344.7,79.6
L343.4,80.2 L341.7,81.1 L340.6,81.8 L340.0,82.0 L338.2,83.0 L336.7,83.9 L336.4,84.1 L334.5,84.8
L332.9,85.7 L332.1,86.8 L332.1,88.0 L332.8,89.1 L332.7,89.4 L332.7,90.6 L332.9,91.9 L333.0,92.2
L333.0,93.2 L333.1,94.4 L333.2,95.3 L333.2,95.7 L333.3,96.9 L333.5,98.2 L333.5,98.3 L333.5,99.5
L333.7,100.7 L333.8,101.4 '/></g>
</g>
<g id="gnuplot_plot_2c" ><title>gnuplot_plot_2c</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(298.3,138.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>3</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(293.8,139.3) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(166.7,115.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>3</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(162.2,115.7) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(375.5,32.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>3</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(371.0,33.1) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(237.7,7.4)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>3</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(233.2,8.0) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(269.2,131.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(264.7,131.7) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(297.0,123.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(292.5,124.1) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(323.2,131.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(318.7,132.3) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(176.0,99.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(171.5,99.6) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(191.6,113.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(187.1,113.7) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(343.4,29.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(338.9,29.6) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(355.0,43.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(350.5,44.4) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(385.6,45.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(381.1,46.5) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(269.2,15.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(264.7,15.9) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(241.3,23.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>2</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(236.8,23.6) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(322.0,27.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(317.5,28.3) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(300.1,105.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(295.6,106.2) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(324.3,92.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(319.8,93.2) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(336.3,76.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(331.8,76.9) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(334.2,58.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(329.7,59.2) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(330.2,41.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(325.7,42.2) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(203.5,86.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(199.0,87.4) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(207.3,103.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(202.8,104.3) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(217.4,120.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(212.9,120.9) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(248.2,125.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(243.7,126.4) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(277.4,116.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(272.9,116.9) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(290.1,20.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(285.6,21.2) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(262.7,29.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(258.2,29.9) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(238.0,41.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(233.5,41.6) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(213.6,53.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(209.1,54.5) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(201.7,70.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(197.2,71.1) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(200.8,56.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(196.3,57.1) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(338.7,105.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(334.2,105.8) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(341.8,123.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(337.3,123.7) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(348.5,139.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(344.0,139.8) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(373.1,151.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(368.6,152.3) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(438.8,44.4)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(434.3,45.0) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(407.4,50.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(402.9,51.3) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(381.3,62.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(376.8,62.7) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(357.4,74.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(352.9,75.1) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(337.2,88.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle" style='filter:url(#textbox)'>
<text>1</text>
</g>
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="0.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(332.7,89.4) scale(0.00)' color='black'/>
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M449.3,44.9 L369.6,154.4 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M150.7,114.5 L369.6,154.4 '/></g>
</g>
</svg>
|