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
|
Description: Use Noto font instead of Droid.
Author: Bas Couwenberg <sebastic@debian.org>
Bug-Debian: https://bugs.debian.org/804683
Forwarded: https://josm.openstreetmap.de/ticket/12085
--- a/src/org/openstreetmap/josm/gui/mappaint/styleelement/StyleElement.java
+++ b/src/org/openstreetmap/josm/gui/mappaint/styleelement/StyleElement.java
@@ -162,7 +162,7 @@ public abstract class StyleElement imple
synchronized (lock) {
n = defaultFontName;
if (n == null) {
- defaultFontName = n = Config.getPref().get("mappaint.font", "Droid Sans");
+ defaultFontName = n = Config.getPref().get("mappaint.font", "Noto Sans");
}
}
}
--- a/resources/images/data/projection/Departements_Lambert4Zones.svg
+++ b/resources/images/data/projection/Departements_Lambert4Zones.svg
@@ -1667,7 +1667,7 @@
sodipodi:insensitive="true">
<text
xml:space="preserve"
- style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-indent:0pt;text-align:center;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:middle;display:inline;overflow:visible;visibility:visible;fill:#78d2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none"
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-indent:0pt;text-align:center;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:middle;display:inline;overflow:visible;visibility:visible;fill:#78d2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none"
x="302.21301"
y="595.33002"
id="text10846"
@@ -1679,7 +1679,7 @@
style="font-size:12px;line-height:1.2">Mer Méditérranée</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;fill:#78d2f1;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;fill:#78d2f1;fill-opacity:1;stroke:none"
x="86.904297"
y="388.71399"
id="text10850"><tspan
@@ -1695,7 +1695,7 @@
style="font-size:12px;line-height:1.2">Gascogne</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;fill:#78d2f1;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;fill:#78d2f1;fill-opacity:1;stroke:none"
x="44.841301"
y="290.896"
id="text10856"><tspan
@@ -1716,7 +1716,7 @@
style="font-size:12px;line-height:1.2">Nord</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;fill:#78d2f1;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;fill:#78d2f1;fill-opacity:1;stroke:none"
x="125.286"
y="80.703499"
id="text10868"
@@ -1735,7 +1735,7 @@
sodipodi:insensitive="true">
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="548.94098"
y="522.922"
id="text23303"><tspan
@@ -1743,10 +1743,10 @@
id="tspan23305"
x="548.94098"
y="522.922"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">2a</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">2a</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="557.02698"
y="482.96399"
id="text23310"><tspan
@@ -1754,10 +1754,10 @@
id="tspan23312"
x="557.02698"
y="482.96399"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">2b</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">2b</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="341.427"
y="175.58"
id="text23314"><tspan
@@ -1765,10 +1765,10 @@
id="tspan23316"
x="341.427"
y="175.58"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">10</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">10</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="269.50601"
y="464.66"
id="text23318"><tspan
@@ -1776,10 +1776,10 @@
id="tspan23320"
x="269.50601"
y="464.66"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">11</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">11</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="284.12299"
y="382.53699"
id="text23322"><tspan
@@ -1787,10 +1787,10 @@
id="tspan23324"
x="284.12299"
y="382.53699"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">12</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">12</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="377.66901"
y="429.07501"
id="text23326"><tspan
@@ -1798,10 +1798,10 @@
id="tspan23328"
x="377.66901"
y="429.07501"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">13</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">13</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="159.953"
y="113.166"
id="text23330"><tspan
@@ -1809,10 +1809,10 @@
id="tspan23332"
x="159.953"
y="113.166"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">14</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">14</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="280.96701"
y="349.63699"
id="text23334"><tspan
@@ -1820,10 +1820,10 @@
id="tspan23336"
x="280.96701"
y="349.63699"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">15</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">15</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="178.50999"
y="325.21301"
id="text23338"><tspan
@@ -1831,10 +1831,10 @@
id="tspan23340"
x="178.50999"
y="325.21301"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">16</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">16</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="143.384"
y="292.164"
id="text23342"><tspan
@@ -1842,10 +1842,10 @@
id="tspan23344"
x="143.384"
y="292.164"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">17</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">17</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="282.306"
y="243.149"
id="text23346"><tspan
@@ -1853,10 +1853,10 @@
id="tspan23348"
x="282.306"
y="243.149"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">18</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">18</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="255.70399"
y="333.50601"
id="text23350"><tspan
@@ -1864,10 +1864,10 @@
id="tspan23352"
x="255.70399"
y="333.50601"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">19</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">19</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="379.01999"
y="228.75301"
id="text23358"><tspan
@@ -1875,10 +1875,10 @@
id="tspan23360"
x="379.01999"
y="228.75301"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">21</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">21</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="86.6222"
y="156.036"
id="text23362"><tspan
@@ -1886,10 +1886,10 @@
id="tspan23364"
x="86.6222"
y="156.036"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">22</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">22</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="263.17099"
y="279.65601"
id="text23366"><tspan
@@ -1897,10 +1897,10 @@
id="tspan23368"
x="263.17099"
y="279.65601"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">23</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">23</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="214.575"
y="354.24799"
id="text23370"><tspan
@@ -1908,10 +1908,10 @@
id="tspan23372"
x="214.575"
y="354.24799"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">24</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">24</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="428.78601"
y="218.66299"
id="text23374"><tspan
@@ -1919,10 +1919,10 @@
id="tspan23376"
x="428.78601"
y="218.66299"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">25</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">25</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="381.55899"
y="363.728"
id="text23378"><tspan
@@ -1930,10 +1930,10 @@
id="tspan23380"
x="381.55899"
y="363.728"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">26</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">26</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="216.07401"
y="125.295"
id="text23382"><tspan
@@ -1941,10 +1941,10 @@
id="tspan23384"
x="216.07401"
y="125.295"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">27</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">27</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="231.658"
y="168.06"
id="text23386"><tspan
@@ -1952,10 +1952,10 @@
id="tspan23388"
x="231.658"
y="168.06"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">28</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">28</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="30.457701"
y="165.772"
id="text23390"><tspan
@@ -1963,10 +1963,10 @@
id="tspan23392"
x="30.457701"
y="165.772"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">29</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">29</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="350.10199"
y="411.25201"
id="text23394"><tspan
@@ -1974,10 +1974,10 @@
id="tspan23396"
x="350.10199"
y="411.25201"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">30</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">30</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="232.894"
y="443.33301"
id="text23398"><tspan
@@ -1985,10 +1985,10 @@
id="tspan23400"
x="232.894"
y="443.33301"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">31</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">31</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="196.892"
y="438.60501"
id="text23402"><tspan
@@ -1996,10 +1996,10 @@
id="tspan23404"
x="196.892"
y="438.60501"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">32</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">32</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="143.743"
y="357.02499"
id="text23406"><tspan
@@ -2007,10 +2007,10 @@
id="tspan23408"
x="143.743"
y="357.02499"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">33</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">33</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="323.95401"
y="425.67001"
id="text23410"><tspan
@@ -2018,10 +2018,10 @@
id="tspan23412"
x="323.95401"
y="425.67001"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">34</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">34</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="126.585"
y="165.76401"
id="text23414"><tspan
@@ -2029,10 +2029,10 @@
id="tspan23416"
x="126.585"
y="165.76401"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">35</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">35</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="235.694"
y="247.29401"
id="text23418"><tspan
@@ -2040,10 +2040,10 @@
id="tspan23420"
x="235.694"
y="247.29401"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">36</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">36</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="213.144"
y="224.698"
id="text23422"><tspan
@@ -2051,10 +2051,10 @@
id="tspan23424"
x="213.144"
y="224.698"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">37</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">37</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="413.79401"
y="348.52701"
id="text23426"><tspan
@@ -2062,10 +2062,10 @@
id="tspan23428"
x="413.79401"
y="348.52701"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">38</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">38</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="406.92099"
y="263.185"
id="text23430"><tspan
@@ -2073,10 +2073,10 @@
id="tspan23432"
x="406.92099"
y="263.185"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">39</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">39</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="144.629"
y="408.16599"
id="text23434"><tspan
@@ -2084,10 +2084,10 @@
id="tspan23436"
x="144.629"
y="408.16599"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start;fill:#000000;fill-opacity:1">40</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start;fill:#000000;fill-opacity:1">40</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="228.272"
y="199.15199"
id="text23438"><tspan
@@ -2095,10 +2095,10 @@
id="tspan23440"
x="228.272"
y="199.15199"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">41</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">41</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="341.953"
y="307.87399"
id="text23442"><tspan
@@ -2106,10 +2106,10 @@
id="tspan23444"
x="341.953"
y="307.87399"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">42</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">42</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="324.85501"
y="343.354"
id="text23446"><tspan
@@ -2117,10 +2117,10 @@
id="tspan23448"
x="324.85501"
y="343.354"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">43</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">43</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="119.057"
y="215.655"
id="text23450"><tspan
@@ -2128,10 +2128,10 @@
id="tspan23452"
x="119.057"
y="215.655"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">44</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">44</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="265.802"
y="183.429"
id="text23454"><tspan
@@ -2139,10 +2139,10 @@
id="tspan23456"
x="265.802"
y="183.429"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">45</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">45</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="242.91499"
y="374.47601"
id="text23458"><tspan
@@ -2150,10 +2150,10 @@
id="tspan23460"
x="242.91499"
y="374.47601"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">46</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">46</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="203.073"
y="388.76999"
id="text23462"><tspan
@@ -2161,10 +2161,10 @@
id="tspan23464"
x="203.073"
y="388.76999"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">47</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">47</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="324.23099"
y="389.87701"
id="text23466"><tspan
@@ -2172,10 +2172,10 @@
id="tspan23468"
x="324.23099"
y="389.87701"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">48</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">48</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="165.03"
y="219.75"
id="text23470"><tspan
@@ -2183,10 +2183,10 @@
id="tspan23472"
x="165.03"
y="219.75"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">49</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">49</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="134.12399"
y="113.172"
id="text23474"><tspan
@@ -2194,10 +2194,10 @@
id="tspan23476"
x="134.12399"
y="113.172"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">50</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">50</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="341.14301"
y="120.965"
id="text23478"><tspan
@@ -2205,10 +2205,10 @@
id="tspan23480"
x="341.14301"
y="120.965"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">51</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">51</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="383.55899"
y="181.948"
id="text23482"><tspan
@@ -2216,10 +2216,10 @@
id="tspan23484"
x="383.55899"
y="181.948"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">52</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">52</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="157.776"
y="167.38699"
id="text23486"><tspan
@@ -2227,10 +2227,10 @@
id="tspan23488"
x="157.776"
y="167.38699"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">53</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">53</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="420.414"
y="150.2"
id="text23490"><tspan
@@ -2238,10 +2238,10 @@
id="tspan23492"
x="420.414"
y="150.2"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">54</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">54</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="386.10901"
y="131.08099"
id="text23494"><tspan
@@ -2249,10 +2249,10 @@
id="tspan23496"
x="386.10901"
y="131.08099"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">55</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">55</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="80.840797"
y="187.924"
id="text23498"><tspan
@@ -2260,10 +2260,10 @@
id="tspan23500"
x="80.840797"
y="187.924"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">56</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">56</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="433.992"
y="127.828"
id="text23502"><tspan
@@ -2271,10 +2271,10 @@
id="tspan23504"
x="433.992"
y="127.828"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">57</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">57</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="313.47699"
y="234.81799"
id="text23506"><tspan
@@ -2282,10 +2282,10 @@
id="tspan23508"
x="313.47699"
y="234.81799"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">58</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">58</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="309.578"
y="51.367298"
id="text23510"><tspan
@@ -2293,10 +2293,10 @@
id="tspan23512"
x="309.578"
y="51.367298"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">59</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">59</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="273.19901"
y="104.4"
id="text23514"><tspan
@@ -2304,10 +2304,10 @@
id="tspan23516"
x="273.19901"
y="104.4"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">60</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">60</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="205.153"
y="150.51199"
id="text23518"><tspan
@@ -2315,10 +2315,10 @@
id="tspan23520"
x="205.153"
y="150.51199"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">61</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">61</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="276.48199"
y="48.594799"
id="text23522"><tspan
@@ -2326,10 +2326,10 @@
id="tspan23524"
x="276.48199"
y="48.594799"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">62</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">62</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="308.405"
y="303.16299"
id="text23526"><tspan
@@ -2337,10 +2337,10 @@
id="tspan23528"
x="308.405"
y="303.16299"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">63</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">63</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="145.368"
y="454.811"
id="text23530"><tspan
@@ -2348,10 +2348,10 @@
id="tspan23532"
x="145.368"
y="454.811"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">64</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">64</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="181.70399"
y="463.116"
id="text23534"><tspan
@@ -2359,10 +2359,10 @@
id="tspan23536"
x="181.70399"
y="463.116"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">65</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">65</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="284.44699"
y="489.75699"
id="text23538"><tspan
@@ -2370,10 +2370,10 @@
id="tspan23540"
x="284.44699"
y="489.75699"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">66</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">66</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="471.13199"
y="133.422"
id="text23542"><tspan
@@ -2381,10 +2381,10 @@
id="tspan23544"
x="471.13199"
y="133.422"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">67</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">67</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="458.48599"
y="183.41901"
id="text23546"><tspan
@@ -2392,10 +2392,10 @@
id="tspan23548"
x="458.48599"
y="183.41901"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">68</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">68</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="361.61499"
y="303.90601"
id="text23550"><tspan
@@ -2403,10 +2403,10 @@
id="tspan23552"
x="361.61499"
y="303.90601"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">69</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">69</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="393.19501"
y="291.41199"
id="text23558"><tspan
@@ -2414,10 +2414,10 @@
id="tspan23560"
x="393.19501"
y="291.41199"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">01</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">01</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="325.517"
y="80.908401"
id="text23562"><tspan
@@ -2425,10 +2425,10 @@
id="tspan23564"
x="325.517"
y="80.908401"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">02</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">02</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="299.74799"
y="273.853"
id="text23566"><tspan
@@ -2436,10 +2436,10 @@
id="tspan23568"
x="299.74799"
y="273.853"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">03</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">03</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="438.45801"
y="392.07001"
id="text23570"><tspan
@@ -2447,10 +2447,10 @@
id="tspan23572"
x="438.45801"
y="392.07001"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">04</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">04</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="435.625"
y="369.04001"
id="text23574"><tspan
@@ -2458,10 +2458,10 @@
id="tspan23576"
x="435.625"
y="369.04001"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">05</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">05</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="473.54901"
y="410.82401"
id="text23578"><tspan
@@ -2469,10 +2469,10 @@
id="tspan23580"
x="473.54901"
y="410.82401"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">06</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">06</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="354.608"
y="376.77899"
id="text23582"><tspan
@@ -2480,10 +2480,10 @@
id="tspan23584"
x="354.608"
y="376.77899"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">07</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">07</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="352.94"
y="91.124397"
id="text23586"><tspan
@@ -2491,10 +2491,10 @@
id="tspan23588"
x="352.94"
y="91.124397"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">08</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">08</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="229.659"
y="475.133"
id="text23590"><tspan
@@ -2502,10 +2502,10 @@
id="tspan23592"
x="229.659"
y="475.133"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">09</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">09</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="419.19299"
y="194.116"
id="text23594"><tspan
@@ -2513,10 +2513,10 @@
id="tspan23596"
x="419.19299"
y="194.116"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">70</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">70</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="361.616"
y="263.50601"
id="text23598"><tspan
@@ -2524,10 +2524,10 @@
id="tspan23600"
x="361.616"
y="263.50601"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">71</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">71</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="198.96201"
y="174.57201"
id="text23602"><tspan
@@ -2535,10 +2535,10 @@
id="tspan23604"
x="198.96201"
y="174.57201"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">72</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">72</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="427.83301"
y="317.99799"
id="text23606"><tspan
@@ -2546,10 +2546,10 @@
id="tspan23608"
x="427.83301"
y="317.99799"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">73</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">73</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="429.935"
y="291.53601"
id="text23610"><tspan
@@ -2557,10 +2557,10 @@
id="tspan23612"
x="429.935"
y="291.53601"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">74</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">74</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="234.463"
y="83.187202"
id="text23618"><tspan
@@ -2568,10 +2568,10 @@
id="tspan23620"
x="234.463"
y="83.187202"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">76</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">76</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="292.78101"
y="154.63499"
id="text23622"><tspan
@@ -2579,10 +2579,10 @@
id="tspan23624"
x="292.78101"
y="154.63499"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">77</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">77</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="251.91701"
y="141.871"
id="text23626"><tspan
@@ -2590,10 +2590,10 @@
id="tspan23628"
x="251.91701"
y="141.871"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">78</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">78</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="169.25999"
y="269.694"
id="text23630"><tspan
@@ -2601,10 +2601,10 @@
id="tspan23632"
x="169.25999"
y="269.694"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">79</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">79</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="260.642"
y="70.5261"
id="text23634"><tspan
@@ -2612,10 +2612,10 @@
id="tspan23636"
x="260.642"
y="70.5261"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">80</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">80</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="264.76599"
y="432.285"
id="text23638"><tspan
@@ -2623,10 +2623,10 @@
id="tspan23640"
x="264.76599"
y="432.285"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">81</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">81</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="223.996"
y="401.961"
id="text23642"><tspan
@@ -2634,10 +2634,10 @@
id="tspan23644"
x="223.996"
y="401.961"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">82</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">82</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="428.36899"
y="450.909"
id="text23646"><tspan
@@ -2645,10 +2645,10 @@
id="tspan23648"
x="428.36899"
y="450.909"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">83</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">83</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="385.51199"
y="408.30801"
id="text23650"><tspan
@@ -2656,10 +2656,10 @@
id="tspan23652"
x="385.51199"
y="408.30801"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">84</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">84</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="132.80701"
y="249.27299"
id="text23654"><tspan
@@ -2667,10 +2667,10 @@
id="tspan23656"
x="132.80701"
y="249.27299"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">85</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">85</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="203.298"
y="269.70401"
id="text23658"><tspan
@@ -2678,10 +2678,10 @@
id="tspan23660"
x="203.298"
y="269.70401"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">86</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">86</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="233.77699"
y="314.548"
id="text23662"><tspan
@@ -2689,10 +2689,10 @@
id="tspan23664"
x="233.77699"
y="314.548"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">87</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">87</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="435.659"
y="160.942"
id="text23666"><tspan
@@ -2700,10 +2700,10 @@
id="tspan23668"
x="435.659"
y="160.942"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">88</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">88</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="328.30801"
y="199.134"
id="text23670"><tspan
@@ -2711,10 +2711,10 @@
id="tspan23672"
x="328.30801"
y="199.134"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">89</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">89</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="453.90601"
y="202.537"
id="text23674"><tspan
@@ -2722,10 +2722,10 @@
id="tspan23676"
x="453.90601"
y="202.537"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">90</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">90</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="268.57501"
y="155.17101"
id="text23678"><tspan
@@ -2733,10 +2733,10 @@
id="tspan23680"
x="268.57501"
y="155.17101"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">91</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">91</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
x="254.021"
y="119.116"
id="text23694"><tspan
@@ -2744,7 +2744,7 @@
id="tspan23696"
x="254.021"
y="119.116"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">95</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">95</tspan></text>
</g>
<g
inkscape:groupmode="layer"
@@ -2810,7 +2810,7 @@
style="display:inline">
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;display:inline;fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:0.25"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;display:inline;fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:0.25"
x="528.495"
y="69.273064"
id="text3250"><tspan
@@ -2821,7 +2821,7 @@
style="font-size:20.1875px;line-height:1.25">Lambert I</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;display:inline;fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:0.25"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;display:inline;fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:0.25"
x="528.495"
y="94.565971"
id="text3250-5"><tspan
@@ -2832,7 +2832,7 @@
style="font-size:20.1875px;line-height:1.25">Nord</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;display:inline;fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:0.25"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;display:inline;fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:0.25"
x="524.72955"
y="235.39679"
id="text3290"><tspan
@@ -2845,7 +2845,7 @@
id="text3302"
y="388.60767"
x="520.96411"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;display:inline;fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:0.25"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;display:inline;fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:0.25"
xml:space="preserve"><tspan
id="tspan3306"
y="388.60767"
@@ -2856,7 +2856,7 @@
id="text3302-4"
y="413.85767"
x="520.96411"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;display:inline;fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:0.25"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;display:inline;fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:0.25"
xml:space="preserve"><tspan
id="tspan3306-5"
y="413.85767"
@@ -2865,7 +2865,7 @@
style="font-size:20.1875px;line-height:1.25">Sud</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;display:inline;fill:#0000ff;fill-opacity:1;stroke:#000000;stroke-width:0.25"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;display:inline;fill:#0000ff;fill-opacity:1;stroke:#000000;stroke-width:0.25"
x="457.995"
y="522.80688"
id="text3320"><tspan
@@ -2876,7 +2876,7 @@
style="font-size:20.1875px;line-height:1.25">Lambert IV</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;display:inline;fill:#0000ff;fill-opacity:1;stroke:#000000;stroke-width:0.25"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;display:inline;fill:#0000ff;fill-opacity:1;stroke:#000000;stroke-width:0.25"
x="457.995"
y="548.09985"
id="text3320-7"><tspan
@@ -2887,7 +2887,7 @@
style="font-size:20.1875px;line-height:1.25">Corse</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Droid Sans';fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Noto Sans';fill:#000000;fill-opacity:1;stroke:none"
id="text4143"
y="153.82845"
x="531"><tspan
@@ -2898,7 +2898,7 @@
style="font-size:16px;line-height:1.25">48.15°</tspan></text>
<text
id="text4147"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Droid Sans';fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Noto Sans';fill:#000000;fill-opacity:1;stroke:none"
xml:space="preserve"
y="308.19238"
x="531"><tspan
@@ -2909,7 +2909,7 @@
style="font-size:16px;line-height:1.25">44.45°</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Droid Sans';fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Noto Sans';fill:#000000;fill-opacity:1;stroke:none"
id="text4151"
y="459.65686"
x="531"><tspan
@@ -2920,7 +2920,7 @@
style="font-size:16px;line-height:1.25">42.76°</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;display:inline;fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:0.25"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;display:inline;fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:0.25"
x="524.72955"
y="260.68964"
id="text3290-7"><tspan
--- a/resources/images/data/projection/LambertCC9Zones.svg
+++ b/resources/images/data/projection/LambertCC9Zones.svg
@@ -1670,7 +1670,7 @@
style="display: inline;">
<text
xml:space="preserve"
- style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-indent:0pt;text-align:center;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:middle;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#78d2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0pt;stroke-opacity:1;marker:none"
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-indent:0pt;text-align:center;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;text-anchor:middle;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#78d2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0pt;stroke-opacity:1;marker:none"
x="302.21301"
y="595.33002"
id="text10846"
@@ -1682,7 +1682,7 @@
style="font-size:12px;line-height:1.2">Mer Méditérranée</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;fill:#78d2f1;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;fill:#78d2f1;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="86.904297"
y="388.71399"
id="text10850"><tspan
@@ -1698,7 +1698,7 @@
style="font-size:12px;line-height:1.2">Gascogne</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;fill:#78d2f1;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;fill:#78d2f1;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="44.841301"
y="290.896"
id="text10856"><tspan
@@ -1719,7 +1719,7 @@
style="font-size:12px;line-height:1.2">Nord</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;fill:#78d2f1;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;fill:#78d2f1;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="125.286"
y="80.703499"
id="text10868"
@@ -1737,7 +1737,7 @@
style="display: inline;">
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="548.94098"
y="522.922"
id="text23303"><tspan
@@ -1745,10 +1745,10 @@
id="tspan23305"
x="548.94098"
y="522.922"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">2a</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">2a</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="557.02698"
y="482.96399"
id="text23310"><tspan
@@ -1756,10 +1756,10 @@
id="tspan23312"
x="557.02698"
y="482.96399"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">2b</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">2b</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="341.427"
y="175.58"
id="text23314"><tspan
@@ -1767,10 +1767,10 @@
id="tspan23316"
x="341.427"
y="175.58"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">10</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">10</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="269.50601"
y="464.66"
id="text23318"><tspan
@@ -1778,10 +1778,10 @@
id="tspan23320"
x="269.50601"
y="464.66"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">11</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">11</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="284.12299"
y="382.53699"
id="text23322"><tspan
@@ -1789,10 +1789,10 @@
id="tspan23324"
x="284.12299"
y="382.53699"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">12</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">12</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="377.66901"
y="429.07501"
id="text23326"><tspan
@@ -1800,10 +1800,10 @@
id="tspan23328"
x="377.66901"
y="429.07501"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">13</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">13</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="159.953"
y="113.166"
id="text23330"><tspan
@@ -1811,10 +1811,10 @@
id="tspan23332"
x="159.953"
y="113.166"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">14</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">14</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="280.96701"
y="349.63699"
id="text23334"><tspan
@@ -1822,10 +1822,10 @@
id="tspan23336"
x="280.96701"
y="349.63699"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">15</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">15</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="178.50999"
y="325.21301"
id="text23338"><tspan
@@ -1833,10 +1833,10 @@
id="tspan23340"
x="178.50999"
y="325.21301"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">16</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">16</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="143.384"
y="292.164"
id="text23342"><tspan
@@ -1844,10 +1844,10 @@
id="tspan23344"
x="143.384"
y="292.164"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">17</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">17</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="282.306"
y="243.149"
id="text23346"><tspan
@@ -1855,10 +1855,10 @@
id="tspan23348"
x="282.306"
y="243.149"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">18</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">18</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="255.70399"
y="333.50601"
id="text23350"><tspan
@@ -1866,10 +1866,10 @@
id="tspan23352"
x="255.70399"
y="333.50601"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">19</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">19</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="379.01999"
y="228.75301"
id="text23358"><tspan
@@ -1877,10 +1877,10 @@
id="tspan23360"
x="379.01999"
y="228.75301"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">21</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">21</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="86.6222"
y="156.036"
id="text23362"><tspan
@@ -1888,10 +1888,10 @@
id="tspan23364"
x="86.6222"
y="156.036"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">22</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">22</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="263.17099"
y="279.65601"
id="text23366"><tspan
@@ -1899,10 +1899,10 @@
id="tspan23368"
x="263.17099"
y="279.65601"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">23</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">23</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="214.575"
y="354.24799"
id="text23370"><tspan
@@ -1910,10 +1910,10 @@
id="tspan23372"
x="214.575"
y="354.24799"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">24</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">24</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="428.78601"
y="218.66299"
id="text23374"><tspan
@@ -1921,10 +1921,10 @@
id="tspan23376"
x="428.78601"
y="218.66299"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">25</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">25</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="381.55899"
y="363.728"
id="text23378"><tspan
@@ -1932,10 +1932,10 @@
id="tspan23380"
x="381.55899"
y="363.728"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">26</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">26</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="216.07401"
y="125.295"
id="text23382"><tspan
@@ -1943,10 +1943,10 @@
id="tspan23384"
x="216.07401"
y="125.295"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">27</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">27</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="231.658"
y="168.06"
id="text23386"><tspan
@@ -1954,10 +1954,10 @@
id="tspan23388"
x="231.658"
y="168.06"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">28</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">28</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="30.457701"
y="165.772"
id="text23390"><tspan
@@ -1965,10 +1965,10 @@
id="tspan23392"
x="30.457701"
y="165.772"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">29</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">29</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="350.10199"
y="411.25201"
id="text23394"><tspan
@@ -1976,10 +1976,10 @@
id="tspan23396"
x="350.10199"
y="411.25201"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">30</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">30</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="232.894"
y="443.33301"
id="text23398"><tspan
@@ -1987,10 +1987,10 @@
id="tspan23400"
x="232.894"
y="443.33301"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">31</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">31</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="196.892"
y="438.60501"
id="text23402"><tspan
@@ -1998,10 +1998,10 @@
id="tspan23404"
x="196.892"
y="438.60501"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">32</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">32</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="143.743"
y="357.02499"
id="text23406"><tspan
@@ -2009,10 +2009,10 @@
id="tspan23408"
x="143.743"
y="357.02499"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">33</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">33</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="323.95401"
y="425.67001"
id="text23410"><tspan
@@ -2020,10 +2020,10 @@
id="tspan23412"
x="323.95401"
y="425.67001"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">34</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">34</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="126.585"
y="165.76401"
id="text23414"><tspan
@@ -2031,10 +2031,10 @@
id="tspan23416"
x="126.585"
y="165.76401"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">35</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">35</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="235.694"
y="247.29401"
id="text23418"><tspan
@@ -2042,10 +2042,10 @@
id="tspan23420"
x="235.694"
y="247.29401"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">36</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">36</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="213.144"
y="224.698"
id="text23422"><tspan
@@ -2053,10 +2053,10 @@
id="tspan23424"
x="213.144"
y="224.698"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">37</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">37</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="413.79401"
y="348.52701"
id="text23426"><tspan
@@ -2064,10 +2064,10 @@
id="tspan23428"
x="413.79401"
y="348.52701"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">38</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">38</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="406.92099"
y="263.185"
id="text23430"><tspan
@@ -2075,10 +2075,10 @@
id="tspan23432"
x="406.92099"
y="263.185"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">39</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">39</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="144.629"
y="408.16599"
id="text23434"><tspan
@@ -2086,10 +2086,10 @@
id="tspan23436"
x="144.629"
y="408.16599"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">40</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">40</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="228.272"
y="199.15199"
id="text23438"><tspan
@@ -2097,10 +2097,10 @@
id="tspan23440"
x="228.272"
y="199.15199"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">41</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">41</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="341.953"
y="307.87399"
id="text23442"><tspan
@@ -2108,10 +2108,10 @@
id="tspan23444"
x="341.953"
y="307.87399"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">42</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">42</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="324.85501"
y="343.354"
id="text23446"><tspan
@@ -2119,10 +2119,10 @@
id="tspan23448"
x="324.85501"
y="343.354"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">43</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">43</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="119.057"
y="215.655"
id="text23450"><tspan
@@ -2130,10 +2130,10 @@
id="tspan23452"
x="119.057"
y="215.655"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">44</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">44</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="265.802"
y="183.429"
id="text23454"><tspan
@@ -2141,10 +2141,10 @@
id="tspan23456"
x="265.802"
y="183.429"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">45</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">45</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="242.91499"
y="374.47601"
id="text23458"><tspan
@@ -2152,10 +2152,10 @@
id="tspan23460"
x="242.91499"
y="374.47601"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">46</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">46</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="203.073"
y="388.76999"
id="text23462"><tspan
@@ -2163,10 +2163,10 @@
id="tspan23464"
x="203.073"
y="388.76999"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">47</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">47</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="324.23099"
y="389.87701"
id="text23466"><tspan
@@ -2174,10 +2174,10 @@
id="tspan23468"
x="324.23099"
y="389.87701"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">48</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">48</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="165.03"
y="219.75"
id="text23470"><tspan
@@ -2185,10 +2185,10 @@
id="tspan23472"
x="165.03"
y="219.75"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">49</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">49</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="134.12399"
y="113.172"
id="text23474"><tspan
@@ -2196,10 +2196,10 @@
id="tspan23476"
x="134.12399"
y="113.172"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">50</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">50</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="341.14301"
y="120.965"
id="text23478"><tspan
@@ -2207,10 +2207,10 @@
id="tspan23480"
x="341.14301"
y="120.965"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">51</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">51</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="383.55899"
y="181.948"
id="text23482"><tspan
@@ -2218,10 +2218,10 @@
id="tspan23484"
x="383.55899"
y="181.948"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">52</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">52</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="157.776"
y="167.38699"
id="text23486"><tspan
@@ -2229,10 +2229,10 @@
id="tspan23488"
x="157.776"
y="167.38699"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">53</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">53</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="420.414"
y="150.2"
id="text23490"><tspan
@@ -2240,10 +2240,10 @@
id="tspan23492"
x="420.414"
y="150.2"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">54</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">54</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="386.10901"
y="131.08099"
id="text23494"><tspan
@@ -2251,10 +2251,10 @@
id="tspan23496"
x="386.10901"
y="131.08099"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">55</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">55</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="80.840797"
y="187.924"
id="text23498"><tspan
@@ -2262,10 +2262,10 @@
id="tspan23500"
x="80.840797"
y="187.924"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">56</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">56</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="433.992"
y="127.828"
id="text23502"><tspan
@@ -2273,10 +2273,10 @@
id="tspan23504"
x="433.992"
y="127.828"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">57</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">57</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="313.47699"
y="234.81799"
id="text23506"><tspan
@@ -2284,10 +2284,10 @@
id="tspan23508"
x="313.47699"
y="234.81799"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">58</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">58</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="309.578"
y="51.367298"
id="text23510"><tspan
@@ -2295,10 +2295,10 @@
id="tspan23512"
x="309.578"
y="51.367298"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">59</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">59</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="273.19901"
y="104.4"
id="text23514"><tspan
@@ -2306,10 +2306,10 @@
id="tspan23516"
x="273.19901"
y="104.4"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">60</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">60</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="205.153"
y="150.51199"
id="text23518"><tspan
@@ -2317,10 +2317,10 @@
id="tspan23520"
x="205.153"
y="150.51199"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">61</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">61</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="276.48199"
y="48.594799"
id="text23522"><tspan
@@ -2328,10 +2328,10 @@
id="tspan23524"
x="276.48199"
y="48.594799"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">62</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">62</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="308.405"
y="303.16299"
id="text23526"><tspan
@@ -2339,10 +2339,10 @@
id="tspan23528"
x="308.405"
y="303.16299"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">63</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">63</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="145.368"
y="454.811"
id="text23530"><tspan
@@ -2350,10 +2350,10 @@
id="tspan23532"
x="145.368"
y="454.811"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">64</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">64</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="181.70399"
y="463.116"
id="text23534"><tspan
@@ -2361,10 +2361,10 @@
id="tspan23536"
x="181.70399"
y="463.116"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">65</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">65</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="284.44699"
y="489.75699"
id="text23538"><tspan
@@ -2372,10 +2372,10 @@
id="tspan23540"
x="284.44699"
y="489.75699"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">66</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">66</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="471.13199"
y="133.422"
id="text23542"><tspan
@@ -2383,10 +2383,10 @@
id="tspan23544"
x="471.13199"
y="133.422"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">67</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">67</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="458.48599"
y="183.41901"
id="text23546"><tspan
@@ -2394,10 +2394,10 @@
id="tspan23548"
x="458.48599"
y="183.41901"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">68</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">68</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="361.61499"
y="303.90601"
id="text23550"><tspan
@@ -2405,10 +2405,10 @@
id="tspan23552"
x="361.61499"
y="303.90601"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">69</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">69</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="393.19501"
y="291.41199"
id="text23558"><tspan
@@ -2416,10 +2416,10 @@
id="tspan23560"
x="393.19501"
y="291.41199"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">01</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">01</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="325.517"
y="80.908401"
id="text23562"><tspan
@@ -2427,10 +2427,10 @@
id="tspan23564"
x="325.517"
y="80.908401"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">02</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">02</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="299.74799"
y="273.853"
id="text23566"><tspan
@@ -2438,10 +2438,10 @@
id="tspan23568"
x="299.74799"
y="273.853"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">03</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">03</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="438.45801"
y="392.07001"
id="text23570"><tspan
@@ -2449,10 +2449,10 @@
id="tspan23572"
x="438.45801"
y="392.07001"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">04</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">04</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="435.625"
y="369.04001"
id="text23574"><tspan
@@ -2460,10 +2460,10 @@
id="tspan23576"
x="435.625"
y="369.04001"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">05</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">05</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="473.54901"
y="410.82401"
id="text23578"><tspan
@@ -2471,10 +2471,10 @@
id="tspan23580"
x="473.54901"
y="410.82401"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">06</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">06</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="354.608"
y="376.77899"
id="text23582"><tspan
@@ -2482,10 +2482,10 @@
id="tspan23584"
x="354.608"
y="376.77899"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">07</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">07</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="352.94"
y="91.124397"
id="text23586"><tspan
@@ -2493,10 +2493,10 @@
id="tspan23588"
x="352.94"
y="91.124397"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">08</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">08</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="229.659"
y="475.133"
id="text23590"><tspan
@@ -2504,10 +2504,10 @@
id="tspan23592"
x="229.659"
y="475.133"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">09</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">09</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="419.19299"
y="194.116"
id="text23594"><tspan
@@ -2515,10 +2515,10 @@
id="tspan23596"
x="419.19299"
y="194.116"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">70</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">70</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="361.616"
y="263.50601"
id="text23598"><tspan
@@ -2526,10 +2526,10 @@
id="tspan23600"
x="361.616"
y="263.50601"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">71</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">71</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="198.96201"
y="174.57201"
id="text23602"><tspan
@@ -2537,10 +2537,10 @@
id="tspan23604"
x="198.96201"
y="174.57201"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">72</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">72</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="427.83301"
y="317.99799"
id="text23606"><tspan
@@ -2548,10 +2548,10 @@
id="tspan23608"
x="427.83301"
y="317.99799"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">73</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">73</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="429.935"
y="291.53601"
id="text23610"><tspan
@@ -2559,10 +2559,10 @@
id="tspan23612"
x="429.935"
y="291.53601"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">74</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">74</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="234.463"
y="83.187202"
id="text23618"><tspan
@@ -2570,10 +2570,10 @@
id="tspan23620"
x="234.463"
y="83.187202"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">76</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">76</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="292.78101"
y="154.63499"
id="text23622"><tspan
@@ -2581,10 +2581,10 @@
id="tspan23624"
x="292.78101"
y="154.63499"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">77</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">77</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="251.91701"
y="141.871"
id="text23626"><tspan
@@ -2592,10 +2592,10 @@
id="tspan23628"
x="251.91701"
y="141.871"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">78</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">78</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="169.25999"
y="269.694"
id="text23630"><tspan
@@ -2603,10 +2603,10 @@
id="tspan23632"
x="169.25999"
y="269.694"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">79</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">79</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="260.642"
y="70.5261"
id="text23634"><tspan
@@ -2614,10 +2614,10 @@
id="tspan23636"
x="260.642"
y="70.5261"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">80</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">80</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="264.76599"
y="432.285"
id="text23638"><tspan
@@ -2625,10 +2625,10 @@
id="tspan23640"
x="264.76599"
y="432.285"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">81</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">81</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="223.996"
y="401.961"
id="text23642"><tspan
@@ -2636,10 +2636,10 @@
id="tspan23644"
x="223.996"
y="401.961"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">82</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">82</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="428.36899"
y="450.909"
id="text23646"><tspan
@@ -2647,10 +2647,10 @@
id="tspan23648"
x="428.36899"
y="450.909"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">83</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">83</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="385.51199"
y="408.30801"
id="text23650"><tspan
@@ -2658,10 +2658,10 @@
id="tspan23652"
x="385.51199"
y="408.30801"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">84</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">84</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="132.80701"
y="249.27299"
id="text23654"><tspan
@@ -2669,10 +2669,10 @@
id="tspan23656"
x="132.80701"
y="249.27299"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">85</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">85</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="203.298"
y="269.70401"
id="text23658"><tspan
@@ -2680,10 +2680,10 @@
id="tspan23660"
x="203.298"
y="269.70401"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">86</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">86</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="233.77699"
y="314.548"
id="text23662"><tspan
@@ -2691,10 +2691,10 @@
id="tspan23664"
x="233.77699"
y="314.548"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">87</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">87</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="435.659"
y="160.942"
id="text23666"><tspan
@@ -2702,10 +2702,10 @@
id="tspan23668"
x="435.659"
y="160.942"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">88</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">88</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="328.30801"
y="199.134"
id="text23670"><tspan
@@ -2713,10 +2713,10 @@
id="tspan23672"
x="328.30801"
y="199.134"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">89</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">89</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="453.90601"
y="202.537"
id="text23674"><tspan
@@ -2724,10 +2724,10 @@
id="tspan23676"
x="453.90601"
y="202.537"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">90</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">90</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="268.57501"
y="155.17101"
id="text23678"><tspan
@@ -2735,10 +2735,10 @@
id="tspan23680"
x="268.57501"
y="155.17101"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">91</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">91</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:start;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="254.021"
y="119.116"
id="text23694"><tspan
@@ -2746,7 +2746,7 @@
id="tspan23696"
x="254.021"
y="119.116"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Droid Sans';text-align:start;text-anchor:start">95</tspan></text>
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9px;line-height:100%;font-family:'Noto Sans';text-align:start;text-anchor:start">95</tspan></text>
</g>
<g
inkscape:groupmode="layer"
@@ -2754,7 +2754,7 @@
inkscape:label="Lambert">
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;display:inline;fill:#a9ffa9;fill-opacity:1;stroke:#000000;stroke-width:0.25"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;display:inline;fill:#a9ffa9;fill-opacity:1;stroke:#000000;stroke-width:0.25"
x="548.495"
y="30.3776"
id="text3250"><tspan
@@ -2772,7 +2772,7 @@
id="text3278"
y="172.87801"
x="548.495"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;display:inline;fill:#ff9d9d;fill-opacity:1;stroke:#000000;stroke-width:0.25"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;display:inline;fill:#ff9d9d;fill-opacity:1;stroke:#000000;stroke-width:0.25"
xml:space="preserve"><tspan
y="172.87801"
x="548.495"
@@ -2786,7 +2786,7 @@
style="font-size:20.1875px;line-height:1.25">(CC48)</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;display:inline;fill:#ff9aff;fill-opacity:1;stroke:#000000;stroke-width:0.25"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;display:inline;fill:#ff9aff;fill-opacity:1;stroke:#000000;stroke-width:0.25"
x="548.495"
y="110.878"
id="text3284"><tspan
@@ -2802,7 +2802,7 @@
style="font-size:20.1875px;line-height:1.25">(CC49)</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;display:inline;fill:#ffa700;fill-opacity:1;stroke:#000000;stroke-width:0.25"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;display:inline;fill:#ffa700;fill-opacity:1;stroke:#000000;stroke-width:0.25"
x="548.495"
y="226.87801"
id="text3290"><tspan
@@ -2820,7 +2820,7 @@
id="text3296"
y="276.37799"
x="548.495"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;display:inline;fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:0.25"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;display:inline;fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:0.25"
xml:space="preserve"><tspan
y="276.37799"
x="548.495"
@@ -2836,7 +2836,7 @@
id="text3302"
y="329.87799"
x="548.495"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;display:inline;fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:0.25"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;display:inline;fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:0.25"
xml:space="preserve"><tspan
y="329.87799"
x="548.495"
@@ -2850,7 +2850,7 @@
style="font-size:20.1875px;line-height:1.25">(CC45)</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;display:inline;fill:#00ffff;fill-opacity:1;stroke:#000000;stroke-width:0.25"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;display:inline;fill:#00ffff;fill-opacity:1;stroke:#000000;stroke-width:0.25"
x="548.495"
y="388.37799"
id="text3308"><tspan
@@ -2868,7 +2868,7 @@
id="text3314"
y="442.87799"
x="515.495"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;display:inline;fill:#ff00ff;fill-opacity:1;stroke:#000000;stroke-width:0.25"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;display:inline;fill:#ff00ff;fill-opacity:1;stroke:#000000;stroke-width:0.25"
xml:space="preserve"><tspan
y="442.87799"
x="515.495"
@@ -2882,7 +2882,7 @@
style="font-size:20.1875px;line-height:1.25">(CC43)</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Droid Sans';text-align:center;text-anchor:middle;display:inline;fill:#ff6969;fill-opacity:1;stroke:#000000;stroke-width:0.25"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Noto Sans';text-align:center;text-anchor:middle;display:inline;fill:#ff6969;fill-opacity:1;stroke:#000000;stroke-width:0.25"
x="490.995"
y="510.37799"
id="text3320"><tspan
--- a/resources/images/presets/misc/angles.svg
+++ b/resources/images/presets/misc/angles.svg
@@ -21,22 +21,22 @@
<path inkscape:connector-curvature="0" id="path2995" d="m 387.15644,526.41095 -78.4493,-183.3966" style="fill:none;stroke:#999999;stroke-width:0.85919064px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
<path style="fill:none;stroke:#999999;stroke-width:0.85919064px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 310.82732,527.28916 385.03626,342.13614" id="path2997" inkscape:connector-curvature="0"/>
<path inkscape:connector-curvature="0" id="path2999" d="m 256.23349,473.93731 183.3966,-78.44932" style="fill:none;stroke:#999999;stroke-width:0.85919064px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
- <text xml:space="preserve" style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:'Droid Sans'" x="321.89999" y="285.73505" id="text3769" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3771" x="321.89999" y="285.73505">0, N</tspan></text>
- <text xml:space="preserve" style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:'Droid Sans'" x="446.97031" y="330.67932" id="text3773" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3775" x="446.97031" y="330.67932">45, NE</tspan></text>
- <text xml:space="preserve" style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:'Droid Sans'" x="493.19977" y="442.94144" id="text3777" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3779" x="493.19977" y="442.94144">90, E</tspan></text>
- <text xml:space="preserve" style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:'Droid Sans'" x="446.79114" y="555.69635" id="text3781" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3783" x="446.79114" y="555.69635">135, SE</tspan></text>
- <text xml:space="preserve" style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:'Droid Sans'" x="306.49017" y="600.64063" id="text3785" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3787" x="306.49017" y="600.64063">180, S</tspan></text>
- <text xml:space="preserve" style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:'Droid Sans'" x="145.76224" y="556.48486" id="text3789" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3791" x="145.76224" y="556.48486">225, SW</tspan></text>
- <text xml:space="preserve" style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:'Droid Sans'" x="114.22587" y="443.13858" id="text3793" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3795" x="114.22587" y="443.13858">270, W</tspan></text>
- <text xml:space="preserve" style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:'Droid Sans'" x="142.53693" y="328.31384" id="text3797" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3799" x="142.53693" y="328.31384">315, NW</tspan></text>
- <text xml:space="preserve" style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#666666;fill-opacity:1;stroke:none;font-family:'Droid Sans'" x="359.17023" y="331.46783" id="text3801" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3803" x="359.17023" y="331.46783">22, NNE</tspan></text>
- <text xml:space="preserve" style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:'Droid Sans'" x="461.66339" y="381.14304" id="text3805" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3807" x="461.66339" y="381.14304"/></text>
- <text sodipodi:linespacing="125%" id="text3809" y="395.53311" x="448.94135" style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#666666;fill-opacity:1;stroke:none;font-family:'Droid Sans'" xml:space="preserve"><tspan y="395.53311" x="448.94135" id="tspan3811" sodipodi:role="line">67, ENE</tspan></text>
- <text xml:space="preserve" style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#666666;fill-opacity:1;stroke:none;font-family:'Droid Sans'" x="447.68707" y="484.23892" id="text3813" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3815" x="447.68707" y="484.23892">112, ESE</tspan></text>
- <text sodipodi:linespacing="125%" id="text3817" y="550.4726" x="357.73676" style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#666666;fill-opacity:1;stroke:none;font-family:'Droid Sans'" xml:space="preserve"><tspan y="550.4726" x="357.73676" id="tspan3819" sodipodi:role="line">157, SSE</tspan></text>
- <text xml:space="preserve" style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#666666;fill-opacity:1;stroke:none;font-family:'Droid Sans'" x="256.3187" y="549.38843" id="text3821" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3823" x="256.3187" y="549.38843">202, SSW</tspan></text>
- <text sodipodi:linespacing="125%" id="text3825" y="490.54694" x="152.39204" style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#666666;fill-opacity:1;stroke:none;font-family:'Droid Sans'" xml:space="preserve"><tspan y="490.54694" x="152.39204" id="tspan3827" sodipodi:role="line">247, WSW</tspan></text>
- <text xml:space="preserve" style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#666666;fill-opacity:1;stroke:none;font-family:'Droid Sans'" x="150.95857" y="392.0835" id="text3829" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3831" x="150.95857" y="392.0835">292, WNW</tspan></text>
- <text sodipodi:linespacing="125%" id="text3833" y="330.77792" x="252.0183" style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#666666;fill-opacity:1;stroke:none;font-family:'Droid Sans'" xml:space="preserve"><tspan y="330.77792" x="252.0183" id="tspan3835" sodipodi:role="line">337, NNW</tspan></text>
+ <text xml:space="preserve" style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:'Noto Sans'" x="321.89999" y="285.73505" id="text3769" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3771" x="321.89999" y="285.73505">0, N</tspan></text>
+ <text xml:space="preserve" style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:'Noto Sans'" x="446.97031" y="330.67932" id="text3773" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3775" x="446.97031" y="330.67932">45, NE</tspan></text>
+ <text xml:space="preserve" style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:'Noto Sans'" x="493.19977" y="442.94144" id="text3777" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3779" x="493.19977" y="442.94144">90, E</tspan></text>
+ <text xml:space="preserve" style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:'Noto Sans'" x="446.79114" y="555.69635" id="text3781" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3783" x="446.79114" y="555.69635">135, SE</tspan></text>
+ <text xml:space="preserve" style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:'Noto Sans'" x="306.49017" y="600.64063" id="text3785" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3787" x="306.49017" y="600.64063">180, S</tspan></text>
+ <text xml:space="preserve" style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:'Noto Sans'" x="145.76224" y="556.48486" id="text3789" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3791" x="145.76224" y="556.48486">225, SW</tspan></text>
+ <text xml:space="preserve" style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:'Noto Sans'" x="114.22587" y="443.13858" id="text3793" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3795" x="114.22587" y="443.13858">270, W</tspan></text>
+ <text xml:space="preserve" style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:'Noto Sans'" x="142.53693" y="328.31384" id="text3797" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3799" x="142.53693" y="328.31384">315, NW</tspan></text>
+ <text xml:space="preserve" style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#666666;fill-opacity:1;stroke:none;font-family:'Noto Sans'" x="359.17023" y="331.46783" id="text3801" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3803" x="359.17023" y="331.46783">22, NNE</tspan></text>
+ <text xml:space="preserve" style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:'Noto Sans'" x="461.66339" y="381.14304" id="text3805" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3807" x="461.66339" y="381.14304"/></text>
+ <text sodipodi:linespacing="125%" id="text3809" y="395.53311" x="448.94135" style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#666666;fill-opacity:1;stroke:none;font-family:'Noto Sans'" xml:space="preserve"><tspan y="395.53311" x="448.94135" id="tspan3811" sodipodi:role="line">67, ENE</tspan></text>
+ <text xml:space="preserve" style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#666666;fill-opacity:1;stroke:none;font-family:'Noto Sans'" x="447.68707" y="484.23892" id="text3813" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3815" x="447.68707" y="484.23892">112, ESE</tspan></text>
+ <text sodipodi:linespacing="125%" id="text3817" y="550.4726" x="357.73676" style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#666666;fill-opacity:1;stroke:none;font-family:'Noto Sans'" xml:space="preserve"><tspan y="550.4726" x="357.73676" id="tspan3819" sodipodi:role="line">157, SSE</tspan></text>
+ <text xml:space="preserve" style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#666666;fill-opacity:1;stroke:none;font-family:'Noto Sans'" x="256.3187" y="549.38843" id="text3821" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3823" x="256.3187" y="549.38843">202, SSW</tspan></text>
+ <text sodipodi:linespacing="125%" id="text3825" y="490.54694" x="152.39204" style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#666666;fill-opacity:1;stroke:none;font-family:'Noto Sans'" xml:space="preserve"><tspan y="490.54694" x="152.39204" id="tspan3827" sodipodi:role="line">247, WSW</tspan></text>
+ <text xml:space="preserve" style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#666666;fill-opacity:1;stroke:none;font-family:'Noto Sans'" x="150.95857" y="392.0835" id="text3829" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3831" x="150.95857" y="392.0835">292, WNW</tspan></text>
+ <text sodipodi:linespacing="125%" id="text3833" y="330.77792" x="252.0183" style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#666666;fill-opacity:1;stroke:none;font-family:'Noto Sans'" xml:space="preserve"><tspan y="330.77792" x="252.0183" id="tspan3835" sodipodi:role="line">337, NNW</tspan></text>
</g>
</svg>
\ No newline at end of file
--- a/resources/images/presets/misc/pipeline_marker.svg
+++ b/resources/images/presets/misc/pipeline_marker.svg
@@ -128,7 +128,7 @@
y="475.36218" />
<text
xml:space="preserve"
- style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Noto Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
x="328.07797"
y="488.46289"
id="text3068"
@@ -140,7 +140,7 @@
style="font-size:1.42109px;line-height:1.25">GAS</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:12.5389px;line-height:0%;font-family:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.04491"
+ style="font-style:normal;font-weight:normal;font-size:12.5389px;line-height:0%;font-family:'Noto Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.04491"
x="315.71246"
y="504.80283"
id="text3068-1"
@@ -152,7 +152,7 @@
style="font-size:4.52674px;line-height:1.25;stroke-width:1.04491">A</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Noto Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
x="332.9227"
y="483.92914"
id="text3068-1-4"
@@ -164,7 +164,7 @@
style="font-size:2.38258px;line-height:1.25">1,2</tspan></text>
<text
xml:space="preserve"
- style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Droid Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Noto Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
x="336.36353"
y="489.0759"
id="text3068-1-4-9"
|