1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Created with matplotlib (http://matplotlib.org/) -->
<svg height="432pt" version="1.1" viewBox="0 0 576 432" width="576pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<style type="text/css">
*{stroke-linecap:butt;stroke-linejoin:round;}
</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 432
L 576 432
L 576 0
L 0 0
z
" style="fill:#ffffff;"/>
</g>
<g id="patch_2">
<path d="M 72 388.8
L 518.4 388.8
L 518.4 43.2
L 72 43.2
z
" style="fill:#ffffff;"/>
</g>
<g id="pane3d_1">
<g id="patch_3">
<path d="M 131.177218 312.43458
L 258.939234 227.701291
L 256.812132 65.789882
L 121.926546 141.921
" style="fill:#f2f2f2;opacity:0.5;stroke:#f2f2f2;stroke-linejoin:miter;"/>
</g>
</g>
<g id="pane3d_2">
<g id="patch_4">
<path d="M 258.939234 227.701291
L 465.901687 275.072667
L 474.560748 108.278886
L 256.812132 65.789882
" style="fill:#e6e6e6;opacity:0.5;stroke:#e6e6e6;stroke-linejoin:miter;"/>
</g>
</g>
<g id="pane3d_3">
<g id="patch_5">
<path d="M 131.177218 312.43458
L 348.929684 367.606266
L 465.901687 275.072667
L 258.939234 227.701291
" style="fill:#ececec;opacity:0.5;stroke:#ececec;stroke-linejoin:miter;"/>
</g>
</g>
<g id="axis3d_1">
<g id="line2d_1">
<path d="M 131.177218 312.43458
L 348.929684 367.606266
" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-width:0.75;"/>
</g>
<g id="Line3DCollection_1">
<path d="M 135.341407 313.489655
L 262.91012 228.610182
L 260.98105 66.603357
" style="fill:none;stroke:#e6e6e6;"/>
<path d="M 185.898981 326.299368
L 311.080141 239.635758
L 311.581097 76.476879
" style="fill:none;stroke:#e6e6e6;"/>
<path d="M 237.565599 339.390079
L 360.229327 250.885453
L 363.262586 86.56142
" style="fill:none;stroke:#e6e6e6;"/>
<path d="M 290.378159 352.771135
L 410.387838 262.366172
L 416.060561 96.86382
" style="fill:none;stroke:#e6e6e6;"/>
<path d="M 344.375213 366.452305
L 461.587089 274.085104
L 470.011596 107.391216
" style="fill:none;stroke:#e6e6e6;"/>
</g>
<g id="xtick_1">
<g id="line2d_2">
<path d="M 136.440324 312.758477
L 133.139482 314.954734
" style="fill:none;stroke:#000000;stroke-linecap:square;"/>
</g>
</g>
<g id="xtick_2">
<g id="line2d_3">
<path d="M 186.978165 325.552244
L 183.736553 327.79643
" style="fill:none;stroke:#000000;stroke-linecap:square;"/>
</g>
</g>
<g id="xtick_3">
<g id="line2d_4">
<path d="M 238.623915 338.62648
L 235.444941 340.920181
" style="fill:none;stroke:#000000;stroke-linecap:square;"/>
</g>
</g>
<g id="xtick_4">
<g id="line2d_5">
<path d="M 291.414412 351.990512
L 288.301669 354.335385
" style="fill:none;stroke:#000000;stroke-linecap:square;"/>
</g>
</g>
<g id="xtick_5">
<g id="line2d_6">
<path d="M 345.388141 365.654082
L 342.345417 368.051858
" style="fill:none;stroke:#000000;stroke-linecap:square;"/>
</g>
</g>
</g>
<g id="axis3d_2">
<g id="line2d_7">
<path d="M 465.901687 275.072667
L 348.929684 367.606266
" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-width:0.75;"/>
</g>
<g id="Line3DCollection_2">
<path d="M 124.83963 140.276819
L 133.925947 310.61159
L 351.454544 365.608914
" style="fill:none;stroke:#e6e6e6;"/>
<path d="M 159.070412 120.956535
L 166.260112 289.167187
L 381.127889 342.135079
" style="fill:none;stroke:#e6e6e6;"/>
<path d="M 192.013047 102.363299
L 197.437937 268.489682
L 409.692352 319.538453
" style="fill:none;stroke:#e6e6e6;"/>
<path d="M 223.738902 84.456828
L 227.520363 248.53866
L 437.208951 297.770766
" style="fill:none;stroke:#e6e6e6;"/>
<path d="M 254.31417 67.199763
L 256.564121 229.276494
L 463.734308 276.787226
" style="fill:none;stroke:#e6e6e6;"/>
</g>
<g id="xtick_6">
<g id="line2d_8">
<path d="M 349.633738 365.148563
L 355.10024 366.530648
" style="fill:none;stroke:#000000;stroke-linecap:square;"/>
</g>
</g>
<g id="xtick_7">
<g id="line2d_9">
<path d="M 379.33087 341.692089
L 384.725881 343.022034
" style="fill:none;stroke:#000000;stroke-linecap:square;"/>
</g>
</g>
<g id="xtick_8">
<g id="line2d_10">
<path d="M 407.91863 319.11186
L 413.243626 320.392561
" style="fill:none;stroke:#000000;stroke-linecap:square;"/>
</g>
</g>
<g id="xtick_9">
<g id="line2d_11">
<path d="M 435.458042 297.359676
L 440.714481 298.593818
" style="fill:none;stroke:#000000;stroke-linecap:square;"/>
</g>
</g>
<g id="xtick_10">
<g id="line2d_12">
<path d="M 462.005733 276.390809
L 467.195055 277.580886
" style="fill:none;stroke:#000000;stroke-linecap:square;"/>
</g>
</g>
</g>
<g id="axis3d_3">
<g id="line2d_13">
<path d="M 465.901687 275.072667
L 474.560748 108.278886
" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-width:0.75;"/>
</g>
<g id="Line3DCollection_3">
<path d="M 466.066381 271.900274
L 258.89869 224.615172
L 131.001569 309.196909
" style="fill:none;stroke:#e6e6e6;"/>
<path d="M 467.395889 246.29084
L 258.57152 199.711568
L 129.583201 283.052753
" style="fill:none;stroke:#e6e6e6;"/>
<path d="M 468.747018 220.264929
L 258.239254 174.420038
L 128.140998 256.469269
" style="fill:none;stroke:#e6e6e6;"/>
<path d="M 470.120301 193.812297
L 257.901772 148.731448
L 126.674356 229.435289
" style="fill:none;stroke:#e6e6e6;"/>
<path d="M 471.516285 166.922364
L 257.558949 122.636373
L 125.182646 201.939265
" style="fill:none;stroke:#e6e6e6;"/>
<path d="M 472.93554 139.584195
L 257.210659 96.125089
L 123.665222 173.969248
" style="fill:none;stroke:#e6e6e6;"/>
<path d="M 474.378652 111.786488
L 256.856768 69.187556
L 122.121412 145.512876
" style="fill:none;stroke:#e6e6e6;"/>
</g>
<g id="xtick_11">
<g id="line2d_14">
<path d="M 464.337863 271.505747
L 469.527014 272.690148
" style="fill:none;stroke:#000000;stroke-linecap:square;"/>
</g>
</g>
<g id="xtick_12">
<g id="line2d_15">
<path d="M 465.65297 245.902073
L 470.885383 247.069188
" style="fill:none;stroke:#000000;stroke-linecap:square;"/>
</g>
</g>
<g id="xtick_13">
<g id="line2d_16">
<path d="M 466.989456 219.882162
L 472.265859 221.03127
" style="fill:none;stroke:#000000;stroke-linecap:square;"/>
</g>
</g>
<g id="xtick_14">
<g id="line2d_17">
<path d="M 468.347848 193.435781
L 473.668985 194.566132
" style="fill:none;stroke:#000000;stroke-linecap:square;"/>
</g>
</g>
<g id="xtick_15">
<g id="line2d_18">
<path d="M 469.728688 166.552358
L 475.095323 167.663171
" style="fill:none;stroke:#000000;stroke-linecap:square;"/>
</g>
</g>
<g id="xtick_16">
<g id="line2d_19">
<path d="M 471.132537 139.220969
L 476.545454 140.311434
" style="fill:none;stroke:#000000;stroke-linecap:square;"/>
</g>
</g>
<g id="xtick_17">
<g id="line2d_20">
<path d="M 472.559975 111.430323
L 478.01998 112.499596
" style="fill:none;stroke:#000000;stroke-linecap:square;"/>
</g>
</g>
</g>
<g id="axes_1">
<g id="Poly3DCollection_1">
<path clip-path="url(#p2a24eca504)" d="M 383.189638 211.647695
L 379.40463 217.683837
L 396.223572 234.010964
z
" style="fill:#0028ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 366.829217 198.08337
L 383.189638 211.647695
L 367.830762 185.763187
z
" style="fill:#00c8ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 389.778336 234.040734
L 406.659116 251.151599
L 396.223572 234.010964
z
" style="fill:#0000bf;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 379.40463 217.683837
L 383.189638 211.647695
L 366.829217 198.08337
z
" style="fill:#0088ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 367.830762 185.763187
L 350.466488 159.170362
L 352.339273 177.064061
z
" style="fill:#7aff7d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 396.223572 234.010964
L 379.40463 217.683837
L 389.778336 234.040734
z
" style="fill:#000cff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 367.830762 185.763187
L 352.339273 177.064061
L 366.829217 198.08337
z
" style="fill:#36ffc1;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 352.339273 177.064061
L 350.466488 159.170362
L 336.281455 156.967667
z
" style="fill:#c1ff36;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 397.703612 246.002882
L 406.659116 251.151599
L 389.778336 234.040734
z
" style="fill:#0000c4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 366.829217 198.08337
L 363.424653 205.622774
L 379.40463 217.683837
z
" style="fill:#00b4ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 331.504506 135.261086
L 336.281455 156.967667
L 350.466488 159.170362
z
" style="fill:#ffdb00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 406.659116 251.151599
L 397.703612 246.002882
L 414.245948 262.288825
z
" style="fill:#000080;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 352.339273 177.064061
L 351.688446 189.834575
L 366.829217 198.08337
z
" style="fill:#43ffb4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 389.778336 234.040734
L 379.40463 217.683837
L 373.368344 219.827635
z
" style="fill:#0048ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 351.688446 189.834575
L 363.424653 205.622774
L 366.829217 198.08337
z
" style="fill:#16ffe1;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 373.368344 219.827635
L 379.40463 217.683837
L 363.424653 205.622774
z
" style="fill:#0094ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 336.281455 156.967667
L 338.453842 174.024831
L 352.339273 177.064061
z
" style="fill:#b4ff43;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 319.079268 140.177646
L 336.281455 156.967667
L 331.504506 135.261086
z
" style="fill:#ff9f00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 351.688446 189.834575
L 352.339273 177.064061
L 338.453842 174.024831
z
" style="fill:#7aff7d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 331.504506 135.261086
L 311.465582 117.019063
L 319.079268 140.177646
z
" style="fill:#ff4700;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 389.778336 234.040734
L 381.271346 231.254136
L 397.703612 246.002882
z
" style="fill:#0008ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 373.368344 219.827635
L 381.271346 231.254136
L 389.778336 234.040734
z
" style="fill:#0044ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 338.453842 174.024831
L 336.281455 156.967667
L 324.069056 159.912359
z
" style="fill:#e1ff16;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 324.069056 159.912359
L 336.281455 156.967667
L 319.079268 140.177646
z
" style="fill:#ffc800;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 397.703612 246.002882
L 402.966384 252.952256
L 414.245948 262.288825
z
" style="fill:#0000a4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 363.424653 205.622774
L 351.688446 189.834575
L 348.588608 198.275779
z
" style="fill:#29ffce;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 338.071714 186.630049
L 351.688446 189.834575
L 338.453842 174.024831
z
" style="fill:#7aff7d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 319.079268 140.177646
L 311.465582 117.019063
L 301.232432 128.595823
z
" style="fill:#ff2d00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 363.424653 205.622774
L 357.71898 209.490239
L 373.368344 219.827635
z
" style="fill:#00c0ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 290.966387 106.314428
L 301.232432 128.595823
L 311.465582 117.019063
z
" style="fill:#bf0000;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 319.079268 140.177646
L 308.938191 149.072999
L 324.069056 159.912359
z
" style="fill:#ffab00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 414.245948 262.288825
L 402.966384 252.952256
L 418.761299 267.037425
z
" style="fill:#000080;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 348.588608 198.275779
L 351.688446 189.834575
L 338.071714 186.630049
z
" style="fill:#56ffa0;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 326.451394 175.708356
L 338.453842 174.024831
L 324.069056 159.912359
z
" style="fill:#ceff29;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 128.595823
L 308.938191 149.072999
L 319.079268 140.177646
z
" style="fill:#ff6400;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 348.588608 198.275779
L 357.71898 209.490239
L 363.424653 205.622774
z
" style="fill:#13fce4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 338.453842 174.024831
L 326.451394 175.708356
L 338.071714 186.630049
z
" style="fill:#a0ff56;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 397.703612 246.002882
L 381.271346 231.254136
L 386.924376 239.128861
z
" style="fill:#0018ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 373.368344 219.827635
L 365.220737 219.267518
L 381.271346 231.254136
z
" style="fill:#0080ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 357.71898 209.490239
L 365.220737 219.267518
L 373.368344 219.827635
z
" style="fill:#00b8ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 283.294979 123.387246
L 301.232432 128.595823
L 290.966387 106.314428
z
" style="fill:#c40000;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 324.069056 159.912359
L 308.938191 149.072999
L 314.051665 166.660115
z
" style="fill:#ffd300;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 402.966384 252.952256
L 397.703612 246.002882
L 386.924376 239.128861
z
" style="fill:#0000ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 324.069056 159.912359
L 314.051665 166.660115
L 326.451394 175.708356
z
" style="fill:#e4ff13;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 308.938191 149.072999
L 301.232432 128.595823
L 293.511764 142.691727
z
" style="fill:#ff6000;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 270.673959 103.92934
L 283.294979 123.387246
L 290.966387 106.314428
z
" style="fill:#800000;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 293.511764 142.691727
L 301.232432 128.595823
L 283.294979 123.387246
z
" style="fill:#ff2900;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 348.588608 198.275779
L 338.071714 186.630049
L 335.199906 195.424053
z
" style="fill:#60ff97;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 160.464865
L 308.938191 149.072999
L 293.511764 142.691727
z
" style="fill:#ff9800;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 308.938191 149.072999
L 301.232432 160.464865
L 314.051665 166.660115
z
" style="fill:#ffcc00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 326.451394 175.708356
L 326.258167 187.682682
L 338.071714 186.630049
z
" style="fill:#97ff60;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 265.843354 125.046912
L 283.294979 123.387246
L 270.673959 103.92934
z
" style="fill:#a40000;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 343.137575 203.380917
L 357.71898 209.490239
L 348.588608 198.275779
z
" style="fill:#29ffce;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 293.511764 142.691727
L 283.294979 123.387246
L 278.267613 141.460006
z
" style="fill:#ff3800;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 265.843354 125.046912
L 270.673959 103.92934
L 251.262484 110.027966
z
" style="fill:#800000;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 316.564775 180.91034
L 326.451394 175.708356
L 314.051665 166.660115
z
" style="fill:#ceff29;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 370.890732 226.851348
L 381.271346 231.254136
L 365.220737 219.267518
z
" style="fill:#0088ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 204.45676 173.65099
L 194.23232 203.455702
L 211.508004 191.277179
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 278.267613 141.460006
L 283.294979 123.387246
L 265.843354 125.046912
z
" style="fill:#ff1300;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 203.823545 214.889055
L 194.23232 203.455702
L 187.149363 232.149016
z
" style="fill:#00c8ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 381.271346 231.254136
L 370.890732 226.851348
L 386.924376 239.128861
z
" style="fill:#0060ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 335.199906 195.424053
L 338.071714 186.630049
L 326.258167 187.682682
z
" style="fill:#7aff7d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 221.864195 168.275237
L 217.619151 146.272476
L 204.45676 173.65099
z
" style="fill:#ffdb00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 288.378621 157.811872
L 301.232432 160.464865
L 293.511764 142.691727
z
" style="fill:#ff9f00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 335.199906 195.424053
L 343.137575 203.380917
L 348.588608 198.275779
z
" style="fill:#4dffaa;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 293.511764 142.691727
L 278.267613 141.460006
L 288.378621 157.811872
z
" style="fill:#ff7a00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 251.262484 110.027966
L 249.445576 133.555239
L 265.843354 125.046912
z
" style="fill:#c40000;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 316.564775 180.91034
L 326.258167 187.682682
L 326.451394 175.708356
z
" style="fill:#aaff4d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 349.849803 210.834033
L 365.220737 219.267518
L 357.71898 209.490239
z
" style="fill:#00e4f8;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 233.381341 124.41722
L 249.445576 133.555239
L 251.262484 110.027966
z
" style="fill:#bf0000;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 194.23232 203.455702
L 203.823545 214.889055
L 211.508004 191.277179
z
" style="fill:#36ffc1;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 217.619151 146.272476
L 234.631973 148.372941
L 233.381341 124.41722
z
" style="fill:#ff4700;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 204.45676 173.65099
L 211.508004 191.277179
L 221.864195 168.275237
z
" style="fill:#c1ff36;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 306.399189 175.802018
L 314.051665 166.660115
L 301.232432 160.464865
z
" style="fill:#f8f500;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 263.687607 145.586144
L 278.267613 141.460006
L 265.843354 125.046912
z
" style="fill:#ff3800;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 234.631973 148.372941
L 217.619151 146.272476
L 221.864195 168.275237
z
" style="fill:#ff9f00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 418.761299 267.037425
L 402.966384 252.952256
L 405.38746 254.624259
z
" style="fill:#0000c4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 265.843354 125.046912
L 249.445576 133.555239
L 263.687607 145.586144
z
" style="fill:#ff2900;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 233.381341 124.41722
L 234.631973 148.372941
L 249.445576 133.555239
z
" style="fill:#ff2d00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 187.149363 232.149016
L 183.323928 256.765643
L 198.97926 236.650804
z
" style="fill:#0028ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 314.051665 166.660115
L 306.399189 175.802018
L 316.564775 180.91034
z
" style="fill:#d4ff23;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 349.849803 210.834033
L 357.71898 209.490239
L 343.137575 203.380917
z
" style="fill:#23ffd4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 187.149363 232.149016
L 198.97926 236.650804
L 203.823545 214.889055
z
" style="fill:#0088ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 275.884986 159.041919
L 288.378621 157.811872
L 278.267613 141.460006
z
" style="fill:#ff9400;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 249.445576 133.555239
L 234.631973 148.372941
L 250.233932 154.814724
z
" style="fill:#ff6400;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 278.267613 141.460006
L 263.687607 145.586144
L 275.884986 159.041919
z
" style="fill:#ff7a00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 386.924376 239.128861
L 390.15504 243.059548
L 402.966384 252.952256
z
" style="fill:#0018ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 263.687607 145.586144
L 249.445576 133.555239
L 250.233932 154.814724
z
" style="fill:#ff6000;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 160.464865
L 288.378621 157.811872
L 296.061106 172.908631
z
" style="fill:#ffd700;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 221.864195 168.275237
L 238.326026 168.400487
L 234.631973 148.372941
z
" style="fill:#ffc800;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 211.508004 191.277179
L 228.320099 185.092661
L 221.864195 168.275237
z
" style="fill:#b4ff43;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 296.061106 172.908631
L 306.399189 175.802018
L 301.232432 160.464865
z
" style="fill:#f4f802;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 250.233932 154.814724
L 234.631973 148.372941
L 238.326026 168.400487
z
" style="fill:#ffab00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 203.823545 214.889055
L 220.496153 203.23597
L 211.508004 191.277179
z
" style="fill:#43ffb4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 264.138928 164.130842
L 263.687607 145.586144
L 250.233932 154.814724
z
" style="fill:#ff9800;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 228.320099 185.092661
L 238.326026 168.400487
L 221.864195 168.275237
z
" style="fill:#e1ff16;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 264.138928 164.130842
L 275.884986 159.041919
L 263.687607 145.586144
z
" style="fill:#ff9f00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 288.378621 157.811872
L 275.884986 159.041919
L 285.860959 172.574679
z
" style="fill:#ffcc00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 365.220737 219.267518
L 355.14824 217.178618
L 370.890732 226.851348
z
" style="fill:#00c4ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 335.199906 195.424053
L 326.258167 187.682682
L 323.540349 196.372912
z
" style="fill:#7aff7d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 228.320099 185.092661
L 211.508004 191.277179
L 220.496153 203.23597
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 316.489023 191.907453
L 326.258167 187.682682
L 316.564775 180.91034
z
" style="fill:#9dff5a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 288.378621 157.811872
L 285.860959 172.574679
L 296.061106 172.908631
z
" style="fill:#ffe600;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 355.14824 217.178618
L 365.220737 219.267518
L 349.849803 210.834033
z
" style="fill:#02e8f4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 250.233932 154.814724
L 238.326026 168.400487
L 253.503261 172.68766
z
" style="fill:#ffd300;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 316.564775 180.91034
L 306.399189 175.802018
L 308.979537 188.315774
z
" style="fill:#beff39;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 329.928527 201.290394
L 343.137575 203.380917
L 335.199906 195.424053
z
" style="fill:#5aff9d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 386.924376 239.128861
L 370.890732 226.851348
L 374.563555 231.774368
z
" style="fill:#007cff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 253.503261 172.68766
L 264.138928 164.130842
L 250.233932 154.814724
z
" style="fill:#ffcc00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 183.323928 256.765643
L 197.077405 254.624259
L 198.97926 236.650804
z
" style="fill:#000cff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 203.823545 214.889055
L 198.97926 236.650804
L 215.056811 221.022499
z
" style="fill:#00b4ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 405.38746 254.624259
L 402.966384 252.952256
L 390.15504 243.059548
z
" style="fill:#0008ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 276.108576 174.903438
L 275.884986 159.041919
L 264.138928 164.130842
z
" style="fill:#ffd700;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 220.496153 203.23597
L 203.823545 214.889055
L 215.056811 221.022499
z
" style="fill:#16ffe1;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 238.326026 168.400487
L 228.320099 185.092661
L 244.30058 183.967837
z
" style="fill:#ceff29;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 183.323928 256.765643
L 182.829657 275.471444
L 197.077405 254.624259
z
" style="fill:#0000bf;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 296.061106 172.908631
L 301.232432 185.959462
L 306.399189 175.802018
z
" style="fill:#d1ff26;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 405.38746 254.624259
L 420.020522 265.150483
L 418.761299 267.037425
z
" style="fill:#0000bf;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 285.860959 172.574679
L 275.884986 159.041919
L 276.108576 174.903438
z
" style="fill:#ffe600;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 253.503261 172.68766
L 238.326026 168.400487
L 244.30058 183.967837
z
" style="fill:#e4ff13;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 326.258167 187.682682
L 316.489023 191.907453
L 323.540349 196.372912
z
" style="fill:#8aff6d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 308.979537 188.315774
L 316.489023 191.907453
L 316.564775 180.91034
z
" style="fill:#a4ff53;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 349.849803 210.834033
L 343.137575 203.380917
L 335.46897 206.226344
z
" style="fill:#39ffbe;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 374.563555 231.774368
L 390.15504 243.059548
L 386.924376 239.128861
z
" style="fill:#0060ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 323.540349 196.372912
L 329.928527 201.290394
L 335.199906 195.424053
z
" style="fill:#6dff8a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 220.496153 203.23597
L 236.801295 196.929987
L 228.320099 185.092661
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 267.101175 179.74579
L 264.138928 164.130842
L 253.503261 172.68766
z
" style="fill:#f8f500;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 296.061106 172.908631
L 285.860959 172.574679
L 293.477678 185.098146
z
" style="fill:#deff19;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 308.979537 188.315774
L 306.399189 175.802018
L 301.232432 185.959462
z
" style="fill:#baff3c;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 264.138928 164.130842
L 267.101175 179.74579
L 276.108576 174.903438
z
" style="fill:#f4f802;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 236.801295 196.929987
L 244.30058 183.967837
L 228.320099 185.092661
z
" style="fill:#a0ff56;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 335.46897 206.226344
L 343.137575 203.380917
L 329.928527 201.290394
z
" style="fill:#53ffa4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 293.477678 185.098146
L 301.232432 185.959462
L 296.061106 172.908631
z
" style="fill:#caff2c;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 253.503261 172.68766
L 244.30058 183.967837
L 259.111912 186.709962
z
" style="fill:#ceff29;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 276.108576 174.903438
L 285.947496 185.85963
L 285.860959 172.574679
z
" style="fill:#deff19;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 215.056811 221.022499
L 198.97926 236.650804
L 212.13611 236.800515
z
" style="fill:#0094ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 215.056811 221.022499
L 231.217335 210.35747
L 220.496153 203.23597
z
" style="fill:#29ffce;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 370.890732 226.851348
L 355.14824 217.178618
L 358.878768 221.979489
z
" style="fill:#00d4ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 212.13611 236.800515
L 198.97926 236.650804
L 197.077405 254.624259
z
" style="fill:#0048ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 259.111912 186.709962
L 267.101175 179.74579
L 253.503261 172.68766
z
" style="fill:#d4ff23;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 236.801295 196.929987
L 220.496153 203.23597
L 231.217335 210.35747
z
" style="fill:#56ffa0;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 285.860959 172.574679
L 285.947496 185.85963
L 293.477678 185.098146
z
" style="fill:#ceff29;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 340.001165 210.783183
L 355.14824 217.178618
L 349.849803 210.834033
z
" style="fill:#26ffd1;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 370.890732 226.851348
L 358.878768 221.979489
L 374.563555 231.774368
z
" style="fill:#00b8ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 278.868596 188.224526
L 276.108576 174.903438
L 267.101175 179.74579
z
" style="fill:#d1ff26;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 244.30058 183.967837
L 236.801295 196.929987
L 252.380122 195.195556
z
" style="fill:#97ff60;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 335.46897 206.226344
L 340.001165 210.783183
L 349.849803 210.834033
z
" style="fill:#3cffba;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 252.380122 195.195556
L 259.111912 186.709962
L 244.30058 183.967837
z
" style="fill:#aaff4d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 285.947496 185.85963
L 276.108576 174.903438
L 278.868596 188.224526
z
" style="fill:#caff2c;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 308.963171 198.075395
L 316.489023 191.907453
L 308.979537 188.315774
z
" style="fill:#97ff60;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 323.540349 196.372912
L 316.489023 191.907453
L 313.858493 200.12379
z
" style="fill:#83ff73;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 303.83576 196.615378
L 308.979537 188.315774
L 301.232432 185.959462
z
" style="fill:#a4ff53;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 198.171431 267.564175
L 197.077405 254.624259
L 182.829657 275.471444
z
" style="fill:#0000c4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 272.454431 192.026168
L 267.101175 179.74579
L 259.111912 186.709962
z
" style="fill:#beff39;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 318.376832 202.576766
L 329.928527 201.290394
L 323.540349 196.372912
z
" style="fill:#73ff83;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 298.628522 195.887674
L 301.232432 185.959462
L 293.477678 185.098146
z
" style="fill:#adff49;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 215.056811 221.022499
L 227.701792 223.026448
L 231.217335 210.35747
z
" style="fill:#13fce4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 212.13611 236.800515
L 227.701792 223.026448
L 215.056811 221.022499
z
" style="fill:#00c0ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 278.868596 188.224526
L 267.101175 179.74579
L 272.454431 192.026168
z
" style="fill:#baff3c;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 236.801295 196.929987
L 231.217335 210.35747
L 247.104249 204.456286
z
" style="fill:#60ff97;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 247.104249 204.456286
L 252.380122 195.195556
L 236.801295 196.929987
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 293.477678 185.098146
L 285.947496 185.85963
L 293.496708 195.980003
z
" style="fill:#b1ff46;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 329.928527 201.290394
L 322.384619 205.230898
L 335.46897 206.226344
z
" style="fill:#60ff97;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 308.963171 198.075395
L 308.979537 188.315774
L 303.83576 196.615378
z
" style="fill:#97ff60;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 266.898065 196.965936
L 259.111912 186.709962
L 252.380122 195.195556
z
" style="fill:#9dff5a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 308.963171 198.075395
L 313.858493 200.12379
L 316.489023 191.907453
z
" style="fill:#8aff6d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 376.112615 233.86712
L 390.15504 243.059548
L 374.563555 231.774368
z
" style="fill:#0088ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 212.13611 236.800515
L 197.077405 254.624259
L 211.810462 249.294566
z
" style="fill:#0044ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 405.38746 254.624259
L 390.15504 243.059548
L 390.830076 243.012564
z
" style="fill:#0044ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 358.878768 221.979489
L 355.14824 217.178618
L 343.391496 214.639824
z
" style="fill:#19ffde;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 340.001165 210.783183
L 343.391496 214.639824
L 355.14824 217.178618
z
" style="fill:#2cffca;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 303.83576 196.615378
L 301.232432 185.959462
L 298.628522 195.887674
z
" style="fill:#a0ff56;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 313.858493 200.12379
L 318.376832 202.576766
L 323.540349 196.372912
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 259.111912 186.709962
L 266.898065 196.965936
L 272.454431 192.026168
z
" style="fill:#a4ff53;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 198.171431 267.564175
L 182.829657 275.471444
L 185.707807 287.386065
z
" style="fill:#000080;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 278.868596 188.224526
L 288.593888 196.913331
L 285.947496 185.85963
z
" style="fill:#adff49;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 293.477678 185.098146
L 293.496708 195.980003
L 298.628522 195.887674
z
" style="fill:#a4ff53;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 329.928527 201.290394
L 318.376832 202.576766
L 322.384619 205.230898
z
" style="fill:#6dff8a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 211.810462 249.294566
L 197.077405 254.624259
L 198.171431 267.564175
z
" style="fill:#0008ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 247.104249 204.456286
L 231.217335 210.35747
L 243.437876 213.687317
z
" style="fill:#4dffaa;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 374.563555 231.774368
L 358.878768 221.979489
L 360.923101 225.00164
z
" style="fill:#00d4ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 340.001165 210.783183
L 335.46897 206.226344
L 325.763049 207.884774
z
" style="fill:#53ffa4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 243.437876 213.687317
L 231.217335 210.35747
L 227.701792 223.026448
z
" style="fill:#29ffce;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 293.496708 195.980003
L 285.947496 185.85963
L 288.593888 196.913331
z
" style="fill:#a4ff53;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 272.454431 192.026168
L 284.067221 198.638349
L 278.868596 188.224526
z
" style="fill:#a4ff53;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 262.366189 202.643496
L 252.380122 195.195556
L 247.104249 204.456286
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 252.380122 195.195556
L 262.366189 202.643496
L 266.898065 196.965936
z
" style="fill:#8aff6d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 404.826324 251.124535
L 420.020522 265.150483
L 405.38746 254.624259
z
" style="fill:#000cff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 227.701792 223.026448
L 212.13611 236.800515
L 226.35225 233.86712
z
" style="fill:#00b8ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 284.067221 198.638349
L 288.593888 196.913331
L 278.868596 188.224526
z
" style="fill:#a0ff56;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 325.763049 207.884774
L 335.46897 206.226344
L 322.384619 205.230898
z
" style="fill:#60ff97;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 272.454431 192.026168
L 266.898065 196.965936
L 280.052897 201.039388
z
" style="fill:#97ff60;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 226.35225 233.86712
L 212.13611 236.800515
L 211.810462 249.294566
z
" style="fill:#0080ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 390.15504 243.059548
L 376.112615 233.86712
L 390.830076 243.012564
z
" style="fill:#0080ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 360.923101 225.00164
L 376.112615 233.86712
L 374.563555 231.774368
z
" style="fill:#00c4ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 280.052897 201.039388
L 284.067221 198.638349
L 272.454431 192.026168
z
" style="fill:#97ff60;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 358.878768 221.979489
L 343.391496 214.639824
L 345.535687 217.580887
z
" style="fill:#29ffce;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 343.391496 214.639824
L 340.001165 210.783183
L 328.411044 210.359449
z
" style="fill:#49ffad;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 243.437876 213.687317
L 258.994586 208.59951
L 247.104249 204.456286
z
" style="fill:#5aff9d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 247.104249 204.456286
L 258.994586 208.59951
L 262.366189 202.643496
z
" style="fill:#6dff8a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 303.83576 196.615378
L 303.837892 204.936295
L 308.963171 198.075395
z
" style="fill:#8aff6d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 303.83576 196.615378
L 298.628522 195.887674
L 301.232432 204.614192
z
" style="fill:#8dff6a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 306.364932 205.512655
L 313.858493 200.12379
L 308.963171 198.075395
z
" style="fill:#83ff73;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 241.4884 222.12113
L 243.437876 213.687317
L 227.701792 223.026448
z
" style="fill:#23ffd4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 293.496708 195.980003
L 298.626685 204.577149
L 298.628522 195.887674
z
" style="fill:#90ff66;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 325.763049 207.884774
L 328.411044 210.359449
L 340.001165 210.783183
z
" style="fill:#56ffa0;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 266.898065 196.965936
L 262.366189 202.643496
L 276.671982 203.945425
z
" style="fill:#83ff73;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 318.376832 202.576766
L 313.858493 200.12379
L 308.737792 206.297602
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 345.535687 217.580887
L 360.923101 225.00164
L 358.878768 221.979489
z
" style="fill:#19ffde;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 390.830076 243.012564
L 404.826324 251.124535
L 405.38746 254.624259
z
" style="fill:#0048ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 226.35225 233.86712
L 241.4884 222.12113
L 227.701792 223.026448
z
" style="fill:#00e4f8;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 296.098864 204.837633
L 293.496708 195.980003
L 288.593888 196.913331
z
" style="fill:#90ff66;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 276.671982 203.945425
L 280.052897 201.039388
L 266.898065 196.965936
z
" style="fill:#8aff6d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 322.384619 205.230898
L 318.376832 202.576766
L 310.885266 207.23536
z
" style="fill:#73ff83;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 293.724967 205.388035
L 288.593888 196.913331
L 284.067221 198.638349
z
" style="fill:#8dff6a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 204.614192
L 303.837892 204.936295
L 303.83576 196.615378
z
" style="fill:#87ff70;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 211.810462 249.294566
L 198.171431 267.564175
L 214.104476 257.668933
z
" style="fill:#0018ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 303.837892 204.936295
L 306.364932 205.512655
L 308.963171 198.075395
z
" style="fill:#83ff73;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 185.707807 287.386065
L 202.266913 274.786225
L 198.171431 267.564175
z
" style="fill:#0000a4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 204.614192
L 298.628522 195.887674
L 298.626685 204.577149
z
" style="fill:#8aff6d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 262.366189 202.643496
L 258.994586 208.59951
L 274.026846 207.14705
z
" style="fill:#73ff83;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 256.885067 214.365475
L 258.994586 208.59951
L 243.437876 213.687317
z
" style="fill:#53ffa4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 308.737792 206.297602
L 313.858493 200.12379
L 306.364932 205.512655
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 325.763049 207.884774
L 322.384619 205.230898
L 312.742756 208.265571
z
" style="fill:#6dff8a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 296.098864 204.837633
L 298.626685 204.577149
L 293.496708 195.980003
z
" style="fill:#8aff6d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 274.026846 207.14705
L 276.671982 203.945425
L 262.366189 202.643496
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 280.052897 201.039388
L 291.576517 206.200851
L 284.067221 198.638349
z
" style="fill:#8aff6d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 256.885067 214.365475
L 243.437876 213.687317
L 241.4884 222.12113
z
" style="fill:#39ffbe;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 330.247774 212.515388
L 343.391496 214.639824
L 328.411044 210.359449
z
" style="fill:#53ffa4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 211.810462 249.294566
L 227.214316 242.070205
L 226.35225 233.86712
z
" style="fill:#0088ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 345.535687 217.580887
L 343.391496 214.639824
L 330.247774 212.515388
z
" style="fill:#46ffb1;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 310.885266 207.23536
L 318.376832 202.576766
L 308.737792 206.297602
z
" style="fill:#7aff7d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 296.098864 204.837633
L 288.593888 196.913331
L 293.724967 205.388035
z
" style="fill:#8aff6d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 280.052897 201.039388
L 276.671982 203.945425
L 289.718432 207.230804
z
" style="fill:#83ff73;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 310.885266 207.23536
L 312.742756 208.265571
L 322.384619 205.230898
z
" style="fill:#73ff83;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 284.067221 198.638349
L 291.576517 206.200851
L 293.724967 205.388035
z
" style="fill:#87ff70;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 314.25412 209.328945
L 328.411044 210.359449
L 325.763049 207.884774
z
" style="fill:#6aff8d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 241.4884 222.12113
L 226.35225 233.86712
L 241.317167 229.111333
z
" style="fill:#02e8f4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 361.201465 226.223663
L 376.112615 233.86712
L 360.923101 225.00164
z
" style="fill:#02e8f4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 346.361246 219.513366
L 360.923101 225.00164
L 345.535687 217.580887
z
" style="fill:#2cffca;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 274.026846 207.14705
L 258.994586 208.59951
L 272.198271 210.417455
z
" style="fill:#6dff8a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 272.198271 210.417455
L 258.994586 208.59951
L 256.885067 214.365475
z
" style="fill:#60ff97;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 214.104476 257.668933
L 227.214316 242.070205
L 211.810462 249.294566
z
" style="fill:#0060ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 420.020522 265.150483
L 404.826324 251.124535
L 417.874904 256.812931
z
" style="fill:#0028ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 291.576517 206.200851
L 280.052897 201.039388
L 289.718432 207.230804
z
" style="fill:#83ff73;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 214.104476 257.668933
L 198.171431 267.564175
L 202.266913 274.786225
z
" style="fill:#0000ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 325.763049 207.884774
L 312.742756 208.265571
L 314.25412 209.328945
z
" style="fill:#70ff87;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 390.830076 243.012564
L 376.112615 233.86712
L 375.453829 233.268381
z
" style="fill:#00b8ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 288.207084 208.418689
L 276.671982 203.945425
L 274.026846 207.14705
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 241.317167 229.111333
L 226.35225 233.86712
L 227.214316 242.070205
z
" style="fill:#00c4ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 256.885067 214.365475
L 241.4884 222.12113
L 256.103619 219.513366
z
" style="fill:#3cffba;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 328.411044 210.359449
L 315.373302 210.372413
L 330.247774 212.515388
z
" style="fill:#66ff90;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 289.718432 207.230804
L 276.671982 203.945425
L 288.207084 208.418689
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 330.247774 212.515388
L 331.21485 214.264216
L 345.535687 217.580887
z
" style="fill:#53ffa4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 191.949329 292.060803
L 202.266913 274.786225
L 185.707807 287.386065
z
" style="fill:#000080;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 241.317167 229.111333
L 256.103619 219.513366
L 241.4884 222.12113
z
" style="fill:#26ffd1;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 346.361246 219.513366
L 361.201465 226.223663
L 360.923101 225.00164
z
" style="fill:#26ffd1;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 314.25412 209.328945
L 315.373302 210.372413
L 328.411044 210.359449
z
" style="fill:#6dff8a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 345.535687 217.580887
L 331.21485 214.264216
L 346.361246 219.513366
z
" style="fill:#49ffad;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 211.32973
L 303.837892 204.936295
L 301.232432 204.614192
z
" style="fill:#80ff77;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 272.198271 210.417455
L 287.08861 209.696517
L 274.026846 207.14705
z
" style="fill:#73ff83;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 204.614192
L 298.626685 204.577149
L 301.232432 211.32973
z
" style="fill:#80ff77;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 256.885067 214.365475
L 271.243251 213.534958
L 272.198271 210.417455
z
" style="fill:#60ff97;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 306.364932 205.512655
L 303.837892 204.936295
L 301.232432 211.32973
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 211.32973
L 298.626685 204.577149
L 296.098864 204.837633
z
" style="fill:#80ff77;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 308.737792 206.297602
L 306.364932 205.512655
L 301.232432 211.32973
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 376.112615 233.86712
L 361.201465 226.223663
L 375.453829 233.268381
z
" style="fill:#00e4f8;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 274.026846 207.14705
L 287.08861 209.696517
L 288.207084 208.418689
z
" style="fill:#7aff7d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 256.103619 219.513366
L 271.243251 213.534958
L 256.885067 214.365475
z
" style="fill:#53ffa4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 296.098864 204.837633
L 293.724967 205.388035
L 301.232432 211.32973
z
" style="fill:#80ff77;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 211.32973
L 310.885266 207.23536
L 308.737792 206.297602
z
" style="fill:#7aff7d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 211.32973
L 293.724967 205.388035
L 291.576517 206.200851
z
" style="fill:#80ff77;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 312.742756 208.265571
L 310.885266 207.23536
L 301.232432 211.32973
z
" style="fill:#7aff7d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 315.373302 210.372413
L 316.065701 211.353233
L 330.247774 212.515388
z
" style="fill:#6dff8a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 330.247774 212.515388
L 316.065701 211.353233
L 331.21485 214.264216
z
" style="fill:#66ff90;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 291.576517 206.200851
L 289.718432 207.230804
L 301.232432 211.32973
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 404.826324 251.124535
L 390.830076 243.012564
L 388.86046 239.363817
z
" style="fill:#0094ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 211.32973
L 314.25412 209.328945
L 312.742756 208.265571
z
" style="fill:#77ff80;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 287.08861 209.696517
L 272.198271 210.417455
L 286.397514 210.993415
z
" style="fill:#73ff83;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 286.397514 210.993415
L 272.198271 210.417455
L 271.243251 213.534958
z
" style="fill:#6dff8a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 211.32973
L 289.718432 207.230804
L 288.207084 208.418689
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 241.317167 229.111333
L 227.214316 242.070205
L 242.939779 234.191384
z
" style="fill:#00d4ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 256.679351 223.698132
L 256.103619 219.513366
L 241.317167 229.111333
z
" style="fill:#2cffca;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 315.373302 210.372413
L 314.25412 209.328945
L 301.232432 211.32973
z
" style="fill:#77ff80;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 230.282924 247.131456
L 227.214316 242.070205
L 214.104476 257.668933
z
" style="fill:#007cff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 271.193454 216.304386
L 271.243251 213.534958
L 256.103619 219.513366
z
" style="fill:#56ffa0;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 346.361246 219.513366
L 331.21485 214.264216
L 331.2782 215.574214
z
" style="fill:#56ffa0;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 288.207084 208.418689
L 287.08861 209.696517
L 301.232432 211.32973
z
" style="fill:#7aff7d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 388.86046 239.363817
L 390.830076 243.012564
L 375.453829 233.268381
z
" style="fill:#00c0ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 316.309263 212.241628
L 331.21485 214.264216
L 316.065701 211.353233
z
" style="fill:#6dff8a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 345.830125 220.470696
L 361.201465 226.223663
L 346.361246 219.513366
z
" style="fill:#3cffba;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 211.32973
L 316.065701 211.353233
L 315.373302 210.372413
z
" style="fill:#77ff80;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 271.243251 213.534958
L 286.155602 212.241628
L 286.397514 210.993415
z
" style="fill:#70ff87;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 211.32973
L 287.08861 209.696517
L 286.397514 210.993415
z
" style="fill:#7aff7d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 256.103619 219.513366
L 256.679351 223.698132
L 271.193454 216.304386
z
" style="fill:#49ffad;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 218.990203 261.493079
L 214.104476 257.668933
L 202.266913 274.786225
z
" style="fill:#0018ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 242.939779 234.191384
L 256.679351 223.698132
L 241.317167 229.111333
z
" style="fill:#19ffde;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 286.155602 212.241628
L 271.243251 213.534958
L 271.193454 216.304386
z
" style="fill:#6aff8d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 316.309263 212.241628
L 331.2782 215.574214
L 331.21485 214.264216
z
" style="fill:#6aff8d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 331.2782 215.574214
L 345.830125 220.470696
L 346.361246 219.513366
z
" style="fill:#53ffa4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 227.214316 242.070205
L 230.282924 247.131456
L 242.939779 234.191384
z
" style="fill:#00b8ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 316.309263 212.241628
L 316.065701 211.353233
L 301.232432 211.32973
z
" style="fill:#77ff80;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 286.397514 210.993415
L 286.155602 212.241628
L 301.232432 211.32973
z
" style="fill:#77ff80;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 286.371263 213.381993
L 286.155602 212.241628
L 271.193454 216.304386
z
" style="fill:#6dff8a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 211.32973
L 286.155602 212.241628
L 286.371263 213.381993
z
" style="fill:#77ff80;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 316.309263 212.241628
L 316.095258 213.021725
L 331.2782 215.574214
z
" style="fill:#70ff87;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 375.453829 233.268381
L 361.201465 226.223663
L 359.676654 225.837753
z
" style="fill:#23ffd4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 211.32973
L 316.095258 213.021725
L 316.309263 212.241628
z
" style="fill:#77ff80;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 230.282924 247.131456
L 214.104476 257.668933
L 218.990203 261.493079
z
" style="fill:#0060ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 271.193454 216.304386
L 256.679351 223.698132
L 272.054256 218.574895
z
" style="fill:#53ffa4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 271.193454 216.304386
L 272.054256 218.574895
L 286.371263 213.381993
z
" style="fill:#66ff90;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 345.830125 220.470696
L 359.676654 225.837753
L 361.201465 226.223663
z
" style="fill:#39ffbe;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 286.371263 213.381993
L 287.039127 214.368301
L 301.232432 211.32973
z
" style="fill:#77ff80;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 202.266913 274.786225
L 191.949329 292.060803
L 209.313492 275.991885
z
" style="fill:#0000c4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 211.32973
L 315.428713 213.690736
L 316.095258 213.021725
z
" style="fill:#7aff7d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 330.429641 216.469133
L 331.2782 215.574214
L 316.095258 213.021725
z
" style="fill:#6dff8a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 258.603836 226.68872
L 256.679351 223.698132
L 242.939779 234.191384
z
" style="fill:#29ffce;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 330.429641 216.469133
L 345.830125 220.470696
L 331.2782 215.574214
z
" style="fill:#60ff97;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 286.371263 213.381993
L 272.054256 218.574895
L 287.039127 214.368301
z
" style="fill:#6dff8a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 211.32973
L 287.039127 214.368301
L 288.140092 215.170115
z
" style="fill:#77ff80;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 258.603836 226.68872
L 272.054256 218.574895
L 256.679351 223.698132
z
" style="fill:#46ffb1;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 314.328474 214.25657
L 315.428713 213.690736
L 301.232432 211.32973
z
" style="fill:#7aff7d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 315.428713 213.690736
L 330.429641 216.469133
L 316.095258 213.021725
z
" style="fill:#73ff83;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 401.185024 243.146984
L 417.874904 256.812931
L 404.826324 251.124535
z
" style="fill:#0088ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 288.140092 215.170115
L 289.641753 215.77378
L 301.232432 211.32973
z
" style="fill:#77ff80;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 202.266913 274.786225
L 209.313492 275.991885
L 218.990203 261.493079
z
" style="fill:#0008ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 242.939779 234.191384
L 230.282924 247.131456
L 246.325742 237.108105
z
" style="fill:#00d4ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 211.32973
L 312.826841 214.734203
L 314.328474 214.25657
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 287.039127 214.368301
L 272.054256 218.574895
L 273.804302 220.252436
z
" style="fill:#66ff90;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 404.826324 251.124535
L 388.86046 239.363817
L 401.185024 243.146984
z
" style="fill:#00b4ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 287.039127 214.368301
L 273.804302 220.252436
L 288.140092 215.170115
z
" style="fill:#6dff8a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 289.641753 215.77378
L 291.499227 216.181591
L 301.232432 211.32973
z
" style="fill:#7aff7d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 242.939779 234.191384
L 246.325742 237.108105
L 258.603836 226.68872
z
" style="fill:#19ffde;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 272.054256 218.574895
L 258.603836 226.68872
L 273.804302 220.252436
z
" style="fill:#53ffa4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 343.941578 220.603774
L 345.830125 220.470696
L 330.429641 216.469133
z
" style="fill:#60ff97;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 211.32973
L 310.968772 215.141346
L 312.826841 214.734203
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 328.688036 217.020425
L 330.429641 216.469133
L 315.428713 213.690736
z
" style="fill:#73ff83;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 359.676654 225.837753
L 345.830125 220.470696
L 343.941578 220.603774
z
" style="fill:#53ffa4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 372.552123 230.43606
L 388.86046 239.363817
L 375.453829 233.268381
z
" style="fill:#13fce4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 291.499227 216.181591
L 293.656379 216.409256
L 301.232432 211.32973
z
" style="fill:#7aff7d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 314.328474 214.25657
L 328.688036 217.020425
L 315.428713 213.690736
z
" style="fill:#7aff7d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 375.453829 233.268381
L 359.676654 225.837753
L 372.552123 230.43606
z
" style="fill:#29ffce;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 308.810632 215.493984
L 310.968772 215.141346
L 301.232432 211.32973
z
" style="fill:#80ff77;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 211.32973
L 293.656379 216.409256
L 296.04745 216.482042
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 211.32973
L 306.418506 215.802424
L 308.810632 215.493984
z
" style="fill:#80ff77;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 235.501033 248.864427
L 230.282924 247.131456
L 218.990203 261.493079
z
" style="fill:#0088ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 296.04745 216.482042
L 298.599042 216.430103
L 301.232432 211.32973
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 276.395591 221.305726
L 289.641753 215.77378
L 288.140092 215.170115
z
" style="fill:#70ff87;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 288.140092 215.170115
L 273.804302 220.252436
L 276.395591 221.305726
z
" style="fill:#6aff8d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 330.429641 216.469133
L 328.688036 217.020425
L 343.941578 220.603774
z
" style="fill:#6dff8a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 211.32973
L 303.866118 216.068394
L 306.418506 215.802424
z
" style="fill:#80ff77;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 211.32973
L 298.599042 216.430103
L 301.232432 216.283623
z
" style="fill:#80ff77;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 216.283623
L 303.866118 216.068394
L 301.232432 211.32973
z
" style="fill:#80ff77;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 273.804302 220.252436
L 258.603836 226.68872
L 261.83064 228.386106
z
" style="fill:#49ffad;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 246.325742 237.108105
L 230.282924 247.131456
L 235.501033 248.864427
z
" style="fill:#00c4ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 246.325742 237.108105
L 261.83064 228.386106
L 258.603836 226.68872
z
" style="fill:#2cffca;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 314.328474 214.25657
L 312.826841 214.734203
L 326.099857 217.333666
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 314.328474 214.25657
L 326.099857 217.333666
L 328.688036 217.020425
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 209.313492 275.991885
L 191.949329 292.060803
L 201.478657 289.224287
z
" style="fill:#0000bf;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 261.83064 228.386106
L 276.395591 221.305726
L 273.804302 220.252436
z
" style="fill:#56ffa0;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 291.499227 216.181591
L 289.641753 215.77378
L 279.754137 221.765228
z
" style="fill:#73ff83;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 279.754137 221.765228
L 289.641753 215.77378
L 276.395591 221.305726
z
" style="fill:#6dff8a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 343.941578 220.603774
L 356.359393 224.230972
L 359.676654 225.837753
z
" style="fill:#5aff9d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 312.826841 214.734203
L 310.968772 215.141346
L 322.738928 217.53072
z
" style="fill:#83ff73;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 343.941578 220.603774
L 328.688036 217.020425
L 340.734951 220.158164
z
" style="fill:#73ff83;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 291.499227 216.181591
L 283.781324 221.715222
L 293.656379 216.409256
z
" style="fill:#7aff7d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 359.676654 225.837753
L 356.359393 224.230972
L 372.552123 230.43606
z
" style="fill:#4dffaa;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 218.990203 261.493079
L 209.313492 275.991885
L 226.382729 260.723068
z
" style="fill:#0044ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 261.83064 228.386106
L 246.325742 237.108105
L 251.397301 237.83705
z
" style="fill:#26ffd1;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 322.738928 217.53072
L 326.099857 217.333666
L 312.826841 214.734203
z
" style="fill:#83ff73;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 340.734951 220.158164
L 328.688036 217.020425
L 326.099857 217.333666
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 226.382729 260.723068
L 235.501033 248.864427
L 218.990203 261.493079
z
" style="fill:#0080ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 308.810632 215.493984
L 318.705105 217.72991
L 310.968772 215.141346
z
" style="fill:#87ff70;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 235.501033 248.864427
L 251.397301 237.83705
L 246.325742 237.108105
z
" style="fill:#02e8f4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 276.395591 221.305726
L 261.83064 228.386106
L 266.275035 228.828108
z
" style="fill:#53ffa4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 283.781324 221.715222
L 291.499227 216.181591
L 279.754137 221.765228
z
" style="fill:#73ff83;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 296.04745 216.482042
L 293.656379 216.409256
L 288.35611 221.279763
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 388.86046 239.363817
L 372.552123 230.43606
L 384.211127 232.967506
z
" style="fill:#29ffce;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 279.754137 221.765228
L 276.395591 221.305726
L 266.275035 228.828108
z
" style="fill:#60ff97;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 340.734951 220.158164
L 356.359393 224.230972
L 343.941578 220.603774
z
" style="fill:#6dff8a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 308.810632 215.493984
L 306.418506 215.802424
L 314.121739 218.026939
z
" style="fill:#8aff6d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 388.86046 239.363817
L 384.211127 232.967506
L 401.185024 243.146984
z
" style="fill:#16ffe1;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 296.04745 216.482042
L 293.338206 220.604119
L 298.599042 216.430103
z
" style="fill:#83ff73;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 322.738928 217.53072
L 310.968772 215.141346
L 318.705105 217.72991
z
" style="fill:#8aff6d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 251.397301 237.83705
L 266.275035 228.828108
L 261.83064 228.386106
z
" style="fill:#3cffba;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 303.866118 216.068394
L 309.131858 218.479222
L 306.418506 215.802424
z
" style="fill:#8aff6d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 298.599042 216.430103
L 298.572286 219.834059
L 301.232432 216.283623
z
" style="fill:#87ff70;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 412.207103 243.226448
L 417.874904 256.812931
L 401.185024 243.146984
z
" style="fill:#00c8ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 303.866118 216.068394
L 301.232432 216.283623
L 303.893187 219.09578
z
" style="fill:#8aff6d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 288.35611 221.279763
L 293.656379 216.409256
L 283.781324 221.715222
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 314.121739 218.026939
L 318.705105 217.72991
L 308.810632 215.493984
z
" style="fill:#8dff6a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 326.099857 217.333666
L 336.291829 219.438099
L 340.734951 220.158164
z
" style="fill:#83ff73;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 322.738928 217.53072
L 336.291829 219.438099
L 326.099857 217.333666
z
" style="fill:#8aff6d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 288.35611 221.279763
L 293.338206 220.604119
L 296.04745 216.482042
z
" style="fill:#83ff73;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 266.275035 228.828108
L 271.814177 228.180439
L 279.754137 221.765228
z
" style="fill:#60ff97;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 279.754137 221.765228
L 271.814177 228.180439
L 283.781324 221.715222
z
" style="fill:#6dff8a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 242.756381 247.412986
L 251.397301 237.83705
L 235.501033 248.864427
z
" style="fill:#00e4f8;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 309.131858 218.479222
L 314.121739 218.026939
L 306.418506 215.802424
z
" style="fill:#90ff66;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 372.552123 230.43606
L 356.359393 224.230972
L 367.431208 226.124522
z
" style="fill:#60ff97;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 242.756381 247.412986
L 235.501033 248.864427
L 226.382729 260.723068
z
" style="fill:#00b8ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 298.599042 216.430103
L 293.338206 220.604119
L 298.572286 219.834059
z
" style="fill:#8aff6d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 201.478657 289.224287
L 219.197706 271.289648
L 209.313492 275.991885
z
" style="fill:#000cff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 209.313492 275.991885
L 219.197706 271.289648
L 226.382729 260.723068
z
" style="fill:#0048ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 303.893187 219.09578
L 309.131858 218.479222
L 303.866118 216.068394
z
" style="fill:#90ff66;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 303.893187 219.09578
L 301.232432 216.283623
L 298.572286 219.834059
z
" style="fill:#8dff6a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 356.359393 224.230972
L 340.734951 220.158164
L 351.314451 221.938698
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 266.275035 228.828108
L 251.397301 237.83705
L 258.027698 236.583229
z
" style="fill:#39ffbe;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 384.211127 232.967506
L 372.552123 230.43606
L 367.431208 226.124522
z
" style="fill:#56ffa0;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 318.705105 217.72991
L 330.736776 218.761078
L 322.738928 217.53072
z
" style="fill:#97ff60;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 271.814177 228.180439
L 266.275035 228.828108
L 258.027698 236.583229
z
" style="fill:#53ffa4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 283.781324 221.715222
L 278.288157 226.713207
L 288.35611 221.279763
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 351.314451 221.938698
L 340.734951 220.158164
L 336.291829 219.438099
z
" style="fill:#8aff6d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 258.027698 236.583229
L 251.397301 237.83705
L 242.756381 247.412986
z
" style="fill:#23ffd4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 330.736776 218.761078
L 336.291829 219.438099
L 322.738928 217.53072
z
" style="fill:#97ff60;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 278.288157 226.713207
L 283.781324 221.715222
L 271.814177 228.180439
z
" style="fill:#73ff83;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 351.314451 221.938698
L 367.431208 226.124522
L 356.359393 224.230972
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 288.35611 221.279763
L 285.502554 224.763637
L 293.338206 220.604119
z
" style="fill:#8aff6d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 318.705105 217.72991
L 314.121739 218.026939
L 324.235868 218.41001
z
" style="fill:#a0ff56;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 401.185024 243.146984
L 384.211127 232.967506
L 394.42204 232.156715
z
" style="fill:#43ffb4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 236.134088 255.754818
L 242.756381 247.412986
L 226.382729 260.723068
z
" style="fill:#00c0ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 288.35611 221.279763
L 278.288157 226.713207
L 285.502554 224.763637
z
" style="fill:#83ff73;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 293.338206 220.604119
L 293.233046 222.688997
L 298.572286 219.834059
z
" style="fill:#97ff60;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 324.235868 218.41001
L 330.736776 218.761078
L 318.705105 217.72991
z
" style="fill:#a4ff53;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 309.131858 218.479222
L 316.992444 218.590782
L 314.121739 218.026939
z
" style="fill:#a4ff53;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 258.027698 236.583229
L 266.039496 233.761742
L 271.814177 228.180439
z
" style="fill:#5aff9d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 226.382729 260.723068
L 219.197706 271.289648
L 236.134088 255.754818
z
" style="fill:#0094ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 401.185024 243.146984
L 394.42204 232.156715
L 412.207103 243.226448
z
" style="fill:#36ffc1;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 271.814177 228.180439
L 266.039496 233.761742
L 278.288157 226.713207
z
" style="fill:#6dff8a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 303.893187 219.09578
L 298.572286 219.834059
L 301.232432 220.816966
z
" style="fill:#a0ff56;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 309.239975 219.401528
L 309.131858 218.479222
L 303.893187 219.09578
z
" style="fill:#a4ff53;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 336.291829 219.438099
L 344.666146 219.568491
L 351.314451 221.938698
z
" style="fill:#9dff5a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 242.756381 247.412986
L 251.87682 243.262479
L 258.027698 236.583229
z
" style="fill:#29ffce;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 344.666146 219.568491
L 336.291829 219.438099
L 330.736776 218.761078
z
" style="fill:#a4ff53;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 214.152348 279.08441
L 219.197706 271.289648
L 201.478657 289.224287
z
" style="fill:#0028ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 293.233046 222.688997
L 293.338206 220.604119
L 285.502554 224.763637
z
" style="fill:#97ff60;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 314.121739 218.026939
L 316.992444 218.590782
L 324.235868 218.41001
z
" style="fill:#adff49;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 367.431208 226.124522
L 376.918414 225.12366
L 384.211127 232.967506
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 360.185842 221.293901
L 367.431208 226.124522
L 351.314451 221.938698
z
" style="fill:#97ff60;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 251.87682 243.262479
L 242.756381 247.412986
L 236.134088 255.754818
z
" style="fill:#13fce4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 258.027698 236.583229
L 251.87682 243.262479
L 266.039496 233.761742
z
" style="fill:#4dffaa;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 298.572286 219.834059
L 293.233046 222.688997
L 301.232432 220.816966
z
" style="fill:#a4ff53;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 316.992444 218.590782
L 309.131858 218.479222
L 309.239975 219.401528
z
" style="fill:#b1ff46;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 303.893187 219.09578
L 301.232432 220.816966
L 309.239975 219.401528
z
" style="fill:#adff49;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 278.288157 226.713207
L 275.203999 229.949279
L 285.502554 224.763637
z
" style="fill:#8aff6d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 384.211127 232.967506
L 376.918414 225.12366
L 394.42204 232.156715
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 351.314451 221.938698
L 344.666146 219.568491
L 360.185842 221.293901
z
" style="fill:#aaff4d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 266.039496 233.761742
L 275.203999 229.949279
L 278.288157 226.713207
z
" style="fill:#7aff7d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 324.235868 218.41001
L 336.601214 217.706577
L 330.736776 218.761078
z
" style="fill:#baff3c;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 330.736776 218.761078
L 336.601214 217.706577
L 344.666146 219.568491
z
" style="fill:#beff39;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 360.185842 221.293901
L 376.918414 225.12366
L 367.431208 226.124522
z
" style="fill:#a0ff56;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 219.197706 271.289648
L 231.735864 261.416729
L 236.134088 255.754818
z
" style="fill:#00b4ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 285.502554 224.763637
L 285.243359 225.805088
L 293.233046 222.688997
z
" style="fill:#a4ff53;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 219.197706 271.289648
L 214.152348 279.08441
L 231.735864 261.416729
z
" style="fill:#0088ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 266.039496 233.761742
L 251.87682 243.262479
L 262.624865 237.214995
z
" style="fill:#60ff97;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 327.367025 216.828312
L 324.235868 218.41001
L 316.992444 218.590782
z
" style="fill:#caff2c;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 236.134088 255.754818
L 248.024265 247.492409
L 251.87682 243.262479
z
" style="fill:#29ffce;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 285.243359 225.805088
L 285.502554 224.763637
L 275.203999 229.949279
z
" style="fill:#9dff5a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 262.624865 237.214995
L 275.203999 229.949279
L 266.039496 233.761742
z
" style="fill:#7aff7d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 412.207103 243.226448
L 394.42204 232.156715
L 402.956027 226.868531
z
" style="fill:#7dff7a;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 295.836956 221.974253
L 301.232432 220.816966
L 293.233046 222.688997
z
" style="fill:#baff3c;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 336.601214 217.706577
L 324.235868 218.41001
L 327.367025 216.828312
z
" style="fill:#d1ff26;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 309.239975 219.401528
L 317.264065 217.230936
L 316.992444 218.590782
z
" style="fill:#ceff29;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 360.185842 221.293901
L 344.666146 219.568491
L 350.993337 216.954542
z
" style="fill:#ceff29;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 309.239975 219.401528
L 301.232432 220.816966
L 306.632893 218.995314
z
" style="fill:#caff2c;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 236.134088 255.754818
L 231.735864 261.416729
L 248.024265 247.492409
z
" style="fill:#16ffe1;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 350.993337 216.954542
L 344.666146 219.568491
L 336.601214 217.706577
z
" style="fill:#d4ff23;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 262.624865 237.214995
L 251.87682 243.262479
L 248.024265 247.492409
z
" style="fill:#56ffa0;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 293.233046 222.688997
L 285.243359 225.805088
L 295.836956 221.974253
z
" style="fill:#beff39;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 316.992444 218.590782
L 317.264065 217.230936
L 327.367025 216.828312
z
" style="fill:#deff19;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 384.58531 220.261866
L 394.42204 232.156715
L 376.918414 225.12366
z
" style="fill:#b4ff43;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 376.918414 225.12366
L 360.185842 221.293901
L 367.113688 217.375203
z
" style="fill:#ceff29;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 306.632893 218.995314
L 301.232432 220.816966
L 295.836956 221.974253
z
" style="fill:#d1ff26;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 306.632893 218.995314
L 317.264065 217.230936
L 309.239975 219.401528
z
" style="fill:#deff19;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 262.624865 237.214995
L 274.693537 230.294305
L 275.203999 229.949279
z
" style="fill:#97ff60;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 285.243359 225.805088
L 275.203999 229.949279
L 274.693537 230.294305
z
" style="fill:#aaff4d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 367.113688 217.375203
L 360.185842 221.293901
L 350.993337 216.954542
z
" style="fill:#e4ff13;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 231.735864 261.416729
L 214.152348 279.08441
L 229.754112 262.920732
z
" style="fill:#00c8ff;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 340.119306 213.993968
L 336.601214 217.706577
L 327.367025 216.828312
z
" style="fill:#f4f802;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 402.956027 226.868531
L 394.42204 232.156715
L 384.58531 220.261866
z
" style="fill:#c1ff36;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 350.993337 216.954542
L 336.601214 217.706577
L 340.119306 213.993968
z
" style="fill:#f8f500;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 384.58531 220.261866
L 376.918414 225.12366
L 367.113688 217.375203
z
" style="fill:#e1ff16;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 262.624865 237.214995
L 248.024265 247.492409
L 261.748744 237.310801
z
" style="fill:#7aff7d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 285.243359 225.805088
L 287.707386 223.584666
L 295.836956 221.974253
z
" style="fill:#d4ff23;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 246.657923 247.920371
L 248.024265 247.492409
L 231.735864 261.416729
z
" style="fill:#43ffb4;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 261.748744 237.310801
L 274.693537 230.294305
L 262.624865 237.214995
z
" style="fill:#a0ff56;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 274.693537 230.294305
L 287.707386 223.584666
L 285.243359 225.805088
z
" style="fill:#ceff29;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 327.367025 216.828312
L 317.264065 217.230936
L 327.913652 213.043623
z
" style="fill:#ffe600;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 295.836956 221.974253
L 301.232432 218.052544
L 306.632893 218.995314
z
" style="fill:#f4f802;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 314.795976 214.409886
L 317.264065 217.230936
L 306.632893 218.995314
z
" style="fill:#ffe600;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 229.754112 262.920732
L 246.657923 247.920371
L 231.735864 261.416729
z
" style="fill:#36ffc1;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 327.367025 216.828312
L 327.913652 213.043623
L 340.119306 213.993968
z
" style="fill:#ffd700;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 261.748744 237.310801
L 248.024265 247.492409
L 246.657923 247.920371
z
" style="fill:#7aff7d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 350.993337 216.954542
L 355.044235 211.194825
L 367.113688 217.375203
z
" style="fill:#ffd300;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 287.707386 223.584666
L 301.232432 218.052544
L 295.836956 221.974253
z
" style="fill:#f8f500;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 340.119306 213.993968
L 355.044235 211.194825
L 350.993337 216.954542
z
" style="fill:#ffcc00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 327.913652 213.043623
L 317.264065 217.230936
L 314.795976 214.409886
z
" style="fill:#ffcc00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 218.052544
L 314.795976 214.409886
L 306.632893 218.995314
z
" style="fill:#ffd700;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 276.907697 226.844008
L 274.693537 230.294305
L 261.748744 237.310801
z
" style="fill:#ceff29;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 287.707386 223.584666
L 274.693537 230.294305
L 276.907697 226.844008
z
" style="fill:#e4ff13;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 371.856588 209.730611
L 384.58531 220.261866
L 367.113688 217.375203
z
" style="fill:#ffc800;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 402.956027 226.868531
L 384.58531 220.261866
L 390.18446 210.984627
z
" style="fill:#ffdb00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 367.113688 217.375203
L 355.044235 211.194825
L 371.856588 209.730611
z
" style="fill:#ffab00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 327.913652 213.043623
L 341.080237 207.711321
L 340.119306 213.993968
z
" style="fill:#ff9f00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 246.657923 247.920371
L 263.580846 233.018924
L 261.748744 237.310801
z
" style="fill:#b4ff43;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 340.119306 213.993968
L 341.080237 207.711321
L 355.044235 211.194825
z
" style="fill:#ff9800;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 287.707386 223.584666
L 293.006617 217.662171
L 301.232432 218.052544
z
" style="fill:#ffcc00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 247.961036 243.337688
L 246.657923 247.920371
L 229.754112 262.920732
z
" style="fill:#7aff7d;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 261.748744 237.310801
L 263.580846 233.018924
L 276.907697 226.844008
z
" style="fill:#e1ff16;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 371.856588 209.730611
L 390.18446 210.984627
L 384.58531 220.261866
z
" style="fill:#ff9f00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 276.907697 226.844008
L 293.006617 217.662171
L 287.707386 223.584666
z
" style="fill:#ffd300;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 327.913652 213.043623
L 314.795976 214.409886
L 325.702669 207.582403
z
" style="fill:#ff9400;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 309.475241 210.991033
L 314.795976 214.409886
L 301.232432 218.052544
z
" style="fill:#ff9f00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 341.080237 207.711321
L 327.913652 213.043623
L 325.702669 207.582403
z
" style="fill:#ff7a00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 247.961036 243.337688
L 263.580846 233.018924
L 246.657923 247.920371
z
" style="fill:#c1ff36;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 218.052544
L 293.006617 217.662171
L 309.475241 210.991033
z
" style="fill:#ff9800;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 325.702669 207.582403
L 314.795976 214.409886
L 309.475241 210.991033
z
" style="fill:#ff7a00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 355.044235 211.194825
L 356.583069 202.425109
L 371.856588 209.730611
z
" style="fill:#ff6400;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 356.583069 202.425109
L 355.044235 211.194825
L 341.080237 207.711321
z
" style="fill:#ff6000;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 276.907697 226.844008
L 263.580846 233.018924
L 281.987396 219.101874
z
" style="fill:#ffc800;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 276.907697 226.844008
L 281.987396 219.101874
L 293.006617 217.662171
z
" style="fill:#ffab00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 374.155826 198.548651
L 390.18446 210.984627
L 371.856588 209.730611
z
" style="fill:#ff4700;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 325.702669 207.582403
L 339.276735 199.496405
L 341.080237 207.711321
z
" style="fill:#ff3800;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 309.475241 210.991033
L 293.006617 217.662171
L 301.232432 208.149273
z
" style="fill:#ff6000;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 268.288769 223.732932
L 263.580846 233.018924
L 247.961036 243.337688
z
" style="fill:#ffdb00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 371.856588 209.730611
L 356.583069 202.425109
L 374.155826 198.548651
z
" style="fill:#ff2d00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 341.080237 207.711321
L 339.276735 199.496405
L 356.583069 202.425109
z
" style="fill:#ff2900;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 309.475241 210.991033
L 320.582883 201.421142
L 325.702669 207.582403
z
" style="fill:#ff3800;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 293.006617 217.662171
L 281.987396 219.101874
L 301.232432 208.149273
z
" style="fill:#ff6400;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 281.987396 219.101874
L 263.580846 233.018924
L 268.288769 223.732932
z
" style="fill:#ff9f00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 320.582883 201.421142
L 339.276735 199.496405
L 325.702669 207.582403
z
" style="fill:#ff1300;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 208.149273
L 320.582883 201.421142
L 309.475241 210.991033
z
" style="fill:#ff2900;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 356.583069 202.425109
L 339.276735 199.496405
L 355.366417 191.463083
z
" style="fill:#c40000;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 355.366417 191.463083
L 374.155826 198.548651
L 356.583069 202.425109
z
" style="fill:#bf0000;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 301.232432 208.149273
L 281.987396 219.101874
L 290.061375 207.228627
z
" style="fill:#ff2d00;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 290.061375 207.228627
L 281.987396 219.101874
L 268.288769 223.732932
z
" style="fill:#ff4700;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 334.51556 190.519234
L 339.276735 199.496405
L 320.582883 201.421142
z
" style="fill:#a40000;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 312.442704 195.85609
L 320.582883 201.421142
L 301.232432 208.149273
z
" style="fill:#c40000;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 355.366417 191.463083
L 339.276735 199.496405
L 334.51556 190.519234
z
" style="fill:#800000;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 290.061375 207.228627
L 312.442704 195.85609
L 301.232432 208.149273
z
" style="fill:#bf0000;stroke:#000000;stroke-width:0.2;"/>
<path clip-path="url(#p2a24eca504)" d="M 334.51556 190.519234
L 320.582883 201.421142
L 312.442704 195.85609
z
" style="fill:#800000;stroke:#000000;stroke-width:0.2;"/>
</g>
</g>
</g>
<defs>
<clipPath id="p2a24eca504">
<rect height="345.6" width="446.4" x="72.0" y="43.2"/>
</clipPath>
</defs>
</svg>
|