Skip to content

Instantly share code, notes, and snippets.

@mbostock
Last active November 13, 2016 16:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mbostock/670b9fe0577a29c39a1803f59c628769 to your computer and use it in GitHub Desktop.
Save mbostock/670b9fe0577a29c39a1803f59c628769 to your computer and use it in GitHub Desktop.
Merged Choropleth
license: gpl-3.0
height: 1100
border: no
.DS_Store
node_modules
cb_*
<!DOCTYPE html>
<svg width="960" height="1100"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/d3-scale-chromatic.v1.min.js"></script>
<script src="https://d3js.org/topojson.v2.min.js"></script>
<script>
var svg = d3.select("svg"),
width = +svg.attr("width"),
height = +svg.attr("height");
var path = d3.geoPath();
var color = d3.scaleThreshold()
.domain([1, 10, 50, 200, 500, 1000, 2000, 4000])
.range(d3.schemeOrRd[9]);
var x = d3.scaleSqrt()
.domain([0, 4500])
.rangeRound([440, 950]);
var g = svg.append("g")
.attr("class", "key")
.attr("transform", "translate(0,40)");
g.selectAll("rect")
.data(color.range().map(function(d) {
d = color.invertExtent(d);
if (d[0] == null) d[0] = x.domain()[0];
if (d[1] == null) d[1] = x.domain()[1];
return d;
}))
.enter().append("rect")
.attr("height", 8)
.attr("x", function(d) { return x(d[0]); })
.attr("width", function(d) { return x(d[1]) - x(d[0]); })
.attr("fill", function(d) { return color(d[0]); });
g.append("text")
.attr("class", "caption")
.attr("x", x.range()[0])
.attr("y", -6)
.attr("fill", "#000")
.attr("text-anchor", "start")
.attr("font-weight", "bold")
.text("Population per square mile");
g.call(d3.axisBottom(x)
.tickSize(13)
.tickValues(color.domain()))
.select(".domain")
.remove();
d3.json("topo.json", function(error, topology) {
if (error) throw error;
svg.append("g")
.selectAll("path")
.data(topojson.feature(topology, topology.objects.tracts).features)
.enter().append("path")
.attr("fill", function(d) { return d3.schemeOrRd[9][d.id]; })
.attr("d", path);
svg.append("path")
.datum(topojson.feature(topology, topology.objects.counties))
.attr("fill", "none")
.attr("stroke", "#000")
.attr("stroke-opacity", 0.3)
.attr("d", path);
});
</script>
{
"private": true,
"license": "gpl-3.0",
"author": {
"name": "Mike Bostock",
"url": "https://bost.ocks.org/mike"
},
"scripts": {
"prepublish": "bash prepublish"
},
"devDependencies": {
"d3-array": "^1.0.1",
"d3-geo-projection": "^1.2.0",
"ndjson-cli": "^0.3.0",
"shapefile": "^0.5.8",
"topojson": "^2.0.0",
"topojson-client": "^2.1.0",
"topojson-simplify": "^2.0.0"
}
}
#!/bin/bash
# EPSG:3310 California Albers
PROJECTION='d3.geoAlbers().parallels([34, 40.5]).rotate([120, 0])'
# The state FIPS code.
STATE=06
# The ACS 5-Year Estimate vintage.
YEAR=2014
# The display size.
WIDTH=960
HEIGHT=1100
# Download the census tract boundaries.
# Extract the shapefile (.shp) and dBASE (.dbf).
if [ ! -f cb_${YEAR}_${STATE}_tract_500k.shp ]; then
curl -o cb_${YEAR}_${STATE}_tract_500k.zip \
"http://www2.census.gov/geo/tiger/GENZ${YEAR}/shp/cb_${YEAR}_${STATE}_tract_500k.zip"
unzip -o \
cb_${YEAR}_${STATE}_tract_500k.zip \
cb_${YEAR}_${STATE}_tract_500k.shp \
cb_${YEAR}_${STATE}_tract_500k.dbf
fi
# Download the census tract population estimates.
if [ ! -f cb_${YEAR}_${STATE}_tract_B01003.json ]; then
curl -o cb_${YEAR}_${STATE}_tract_B01003.json \
"http://api.census.gov/data/${YEAR}/acs5?get=B01003_001E&for=tract:*&in=state:${STATE}"
fi
# 1. Convert to GeoJSON.
# 2. Project.
# 3. Join with the census data.
# 4. Compute the population density.
# 5. Simplify.
# 6. Compute the county borders.
geo2topo -n \
tracts=<(ndjson-join 'd.id' \
<(shp2json cb_${YEAR}_${STATE}_tract_500k.shp \
| geoproject "${PROJECTION}.fitExtent([[10, 10], [${WIDTH} - 10, ${HEIGHT} - 10]], d)" \
| ndjson-split 'd.features' \
| ndjson-map 'd.id = d.properties.GEOID.slice(2), d') \
<(ndjson-cat cb_${YEAR}_${STATE}_tract_B01003.json \
| ndjson-split 'd.slice(1)' \
| ndjson-map '{id: d[2] + d[3], B01003: +d[0]}') \
| ndjson-map -r d3=d3-array 'd[0].properties = {density: d3.bisect([1, 10, 50, 200, 500, 1000, 2000, 4000], (d[1].B01003 / d[0].properties.ALAND || 0) * 2589975.2356)}, d[0]') \
| topomerge -k 'd.id.slice(0, 3)' counties=tracts \
| topomerge --mesh -f 'a !== b' counties=counties \
| topomerge -k 'd.properties.density' tracts=tracts \
| toposimplify -p 1 -f \
> topo.json
# Re-compute the topology as a further optimization.
# This consolidates unique sequences of arcs.
# https://github.com/topojson/topojson-simplify/issues/4
topo2geo \
< topo.json \
tracts=tracts.json \
counties=counties.json
geo2topo \
tracts=tracts.json \
counties=counties.json \
| topoquantize 1e5 \
> topo.json
rm tracts.json counties.json
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"tracts":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","id":"6","properties":{"density":6},"arcs":[[[5,6,596,597]],[[598,599,600]],[[601,602,603,604]],[[605,606]],[[607,608,609,610,611,0,612]],[[613,614,615,616,617]],[[618,619,620]],[[621,622,623,624]],[[625,15,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,101,667,668,669,670]],[[671,672,673,674,675]],[[676,106,677,678]],[[679,680,681]],[[93,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,-114,732,733,734,735,115,736,737,738]],[[739,740,741,742]],[[743,744]],[[745,746,747,748,749]],[[750,751,752,753]],[[754,755,756,757,758,759,134]],[[136,760,761,762]],[[763,764,765,138]],[[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,803,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,198,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,307,308]],[[860,861,862,303]],[[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,272,923]],[[924,925,926,927,928,929]],[[930,931,932,275,276,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]],[[301,965,966,967]],[[968,969,970,296]],[[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]],[[331,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,415,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,-120,1144,1145,1146]],[[1147,1148,1149,430,1150,1151]],[[1152,1153,435,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,-420,-419,456,457,458,1179,1180,1181,1182,1183,1184,1185]],[[1186,1187,1188,1189,1190,1191,1192,1193]],[[1194,1195,1196,1197,1198,1199,1200,460,1201,1202]],[[1203,1204,1205,1206,1207]],[[465,466,467,468,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,-424,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,499]],[[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]],[[518,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]],[[543,544,1644,1645,1646]],[[1647,1648,1649,1650]],[[1651,1652,1653,1654,1655]],[[1656,1657,552,1658,1659]],[[1660,1661,1662,1663]],[[-535,-534,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]],[[-354,1794]],[[591,592,1795,1796,1797]],[[1798,1799,1800,1801]],[[-590,1802,1803,1804,587,1805,1806,1807,1808,1809,1810]],[[1811,1812,1813,1814]],[[-154,-153,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,-493,1902,1903,1904]],[[1905,1906,-576,1907]]]},{"type":"MultiPolygon","id":"8","properties":{"density":8},"arcs":[[[1908,8,9,1909,-605,1910,1911,1912,1913,-621,1914,-617,1915,1916,1917,1918,1919,1920,1921,1922,-611,1923,1924,1925,-599,1926,-606,1927,1,1928,1929,1930,1931,1932,1933,1934,1935,-721,1936,-725,1937,1938,1939,1940,3,4,-598],[1941]],[[1942,-624,1943,1944,1945,1946,1947,1948,1949,1950,-616,1951,1952],[1953]],[[1954,1955,1956]],[[1957,1958,-1672,-1676,1959,1960,1961,1962,1963,1964,1965,1966,1967,-1684,1968,-1690,1969,1970,1971,-1695,1972,1973,542,-1647,1974,1975,-1637,1976,-1633,1977,1978,-519,-1579,1979,1980,1981,1982,1983,-1576,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,516,1996,-1624,1997,-1630,1998,-1628,1999,2000,2001,2002,2003,2004,2005,2006,-1644,2007,2008,-1650,2009,540,2010,2011,2012,2013,2014,-1681,2015,-1679,2016,2017,2018,-35,2019,2020,2021],[2022],[-1580],[2023],[2024],[-1668,2025,-1670,2026]],[[2027,2028,-627,16,2029,2030,18,2031,-637]],[[2032,-635,2033]],[[2034,-640,2035,2036]],[[-632,2037]],[[2038,2039,-642]],[[2040,-647,2041,-643,2042,2043,2044,2045,2046,-649]],[[2047,-661,2048]],[[2049,-664]],[[2050,-673,2051]],[[-666,2052,-710,2053,-681,2054,2055,2056,2057]],[[2058,2059,2060]],[[2061,2062,2063,2064]],[[2065,2066,2067,-686,2068]],[[2069]],[[2070,2071]],[[-709,2072,2073]],[[-716,2074]],[[2075,-726,2076]],[[2077,-756,2078,-762,2079,-765,2080,2081,2082,2083,2084,-768,2085,2086,2087,2088,2089,2090,2091,2092,2093,-746,2094,2095,-741]],[[-758,2096,-751,2097,2098]],[[2099,155,2100]],[[2101,-775,2102]],[[2103,2104,-782]],[[2105,2106,2107]],[[2108,-790,2109]],[[2110,-801,2111,-797,2112]],[[2113,2114,2115]],[[-809,2116,2117]],[[2118,2119]],[[2120,2121,2122,2123,2124,2125]],[[-814,2126,2127,2128,2129,2130,2131,-818,2132]],[[-811,2133]],[[2134]],[[2135]],[[220,2136,2137]],[[2138,-830,2139,222]],[[2140,2141,2142]],[[2143,2144,2145]],[[2146,2147]],[[-840,2148,-845,2149,2150,2151]],[[2152,2153]],[[2154,229,2155]],[[2156]],[[-893,2157,-884,2158,-851,2159,2160,2161,2162]],[[2163,-891,2164,-889,2165,2166,2167,2168,-946,2169,2170,2171,-898,2172,2173,2174,-902,2175,2176,-916,2177,-912,2178,-918,2179,-931,2180,2181,2182,-928,2183,2184,2185,2186,2187,-926,2188,-938,2189,-936,2190,-941,2191,2192,-279,-278,-277,2193,2194,2195,-1091,2196,2197,-1095,2198,2199,2200,2201,-1094,2202,-1117,2203,2204,-1122,2205,2206,2207,2208,2209,-1129,2210,-1131,2211,2212,2213,2214,2215,-1136,2216,2217,2218,2219,2220,2221,-289,2222,2223,-291,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,-963,2237,2238,2239,2240,2241,2242,2243,-880,2244,2245,2246,2247,2248,2249,2250,-866,2251,-966,302,-863,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,-886],[2275],[2276],[2277],[2278],[2279],[2280],[2281],[2282,2283],[2284],[2285],[2286],[2287],[2288],[2289],[2290],[2291,280],[2292],[2293],[2294],[2295],[2296],[2297,2298,-283,2299,2300,-949,2301,-951,2302,2303],[2304,2305,2306,-1133],[2307],[-287,2308,-1138,-1134,-1137,2309,284,2310],[-959],[2311,2312],[2313],[2314,2315,2316,2317,-958,2318],[2319],[2320,2321],[2322],[2323],[2324],[2325],[2326],[2327],[-956,2328,-954,2329,2330,2331,-871,2332,-874,2333]],[[-859,2334,2335]],[[2336,2337,2338,2339]],[[2340,2341,2342,-1371,2343,-1362,2344,2345,2346,-1365,2347,2348,-1356,2349,267,2350,-270,2351,-906,2352,-904,2353,2354,2355],[2356],[265,2357]],[[-908,2358,2359,2360]],[[2361,2362,-922,2363,2364,-921]],[[2365,-910]],[[2366,-944]],[[-895,2367]],[[2368]],[[2369,-960,2370]],[[2371,2372,-970]],[[295,-971,2373]],[[2374,2375,2376,-975,2377,2378,2379,2380]],[[2381,2382,2383]],[[2384,-981,2385]],[[2386,-986,2387]],[[2388,2389]],[[2390,2391,2392,-991,2393,-988,2394,2395]],[[2396,2397,2398,-1009,2399,-1007,2400,2401,-1002]],[[2402,2403,2404,2405,2406,2407,-999,2408,-1006]],[[-1012,2409,2410]],[[2411,2412,2413,2414,2415,-1022,2416,-1015]],[[2417,2418]],[[2419,2420]],[[2421,2422,2423,2424,2425]],[[-1035,2426,2427]],[[2428]],[[2429]],[[-1045,2430,2431,2432]],[[2433,2434,2435]],[[2436,2437]],[[2438,2439,2440,-1051]],[[2441,2442,-1055,2443,2444,2445,2446]],[[2447,2448,2449,2450,2451,2452,2453,2454,2455,2456]],[[2457,2458,2459]],[[2460]],[[2461]],[[2462]],[[2463,-1061,2464,2465]],[[2466,2467,2468]],[[2469,2470,2471]],[[2472]],[[2473,2474]],[[2475,2476]],[[-1072,2477,2478,2479,-1076,2480,2481,2482,2483,2484,-1074,2485]],[[-1745,2486,-91,2487,-390,2488,-388,2489],[2490]],[[2491,2492,2493,2494,-1112,2495,-1125,2496,2497,-1121,2498]],[[2499,2500,2501,2502]],[[-1100,2503,428,2504]],[[-1103,2505]],[[2506,2507,-1104,2508,2509,2510]],[[2511,-1108]],[[2512,2513]],[[-1152,2514,2515,2516,2517,-1317,2518,-1330,2519,-1338,2520,-1328,2521,-1334,2522,-437,-436,-435,2523],[2524]],[[2525,2526,2527,2528,-1173,2529,-1172,2530,2531,-1153]],[[-1159,2532,2533,-1170,2534,-1161,2535]],[[2536,2537,2538]],[[2539,464,-1215,2540,-1213,2541,2542,2543,2544,-1307,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,-1191,2555,-1189,2556,-1187,2557,2558,2559,2560,-1186,2561,-1184,2562],[2563]],[[-1199,2564,2565]],[[-1182,2566]],[[2567,2568]],[[-1208,2569,2570,2571]],[[2572,2573,-1211]],[[2574,2575]],[[2576,2577]],[[2578,-1234]],[[2579,-1236,2580,2581,-1223]],[[-1229,2582,2583]],[[2584,2585]],[[2586,2587,-1219,2588]],[[2589,2590,2591,2592,-1309,2593,-1254]],[[-1244,2594]],[[-1248,2595,2596]],[[2597,-1246]],[[-1255,2598,2599]],[[2600,2601,2602,2603,2604,2605,-1261,2606]],[[-1265,2607,2608]],[[2609,2610,-1273,2611,2612]],[[2613,2614,-1271]],[[2615,-1285]],[[2616,2617]],[[2618,2619]],[[2620,2621,2622,2623]],[[2624,2625]],[[-1278,2626]],[[2627,2628]],[[2629,-1302,2630,-1316,2631,2632,-1294,-1275,2633]],[[2634,2635,-1315]],[[2636,2637,2638,2639]],[[2640,2641,-1216]],[[-1176,2642,2643]],[[2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,490,491,492,493,2666,2667,-497,-496,2668,2669,2670,-1318,2671],[2672],[2673]],[[2674,2675,2676,2677]],[[2678,498,-1324]],[[2679,2680,2681,2682]],[[-735,2683]],[[2684,2685]],[[2686,2687,-1351,-1348]],[[2688,-1358,2689,-1355,2690]],[[-1368,2691,-1381,2692,2693,2694,2695,2696,2697,2698,-1399,-1397,2699,-1386,2700,-1384,2701,2702,2703,2704,2705,-1196,2706,2707,-1373,2708],[2709]],[[2710,-1202,-461]],[[2711,-1377]],[[2712,2713,-1379]],[[2714,2715,-468,2716,-1389]],[[-1398]],[[2717,-1401,2718,2719]],[[-1403,2720,2721]],[[-1408,2722]],[[-1413,2723,2724]],[[-1423,2725]],[[2726,-1480,2727,-1502,2728,-1498,2729,-1495,2730,2731,-1488,2732,2733,2734,2735,2736,-1489,2737,2738,2739,2740,2741,2742,-1457,2743,-1455],[2744],[-1451],[2745]],[[-1459,2746,-1462,2747,2748,2749,2750,-1476,2751,-1485,2752,-1453,2753]],[[2754,2755,2756,-1471]],[[2757,-1513,2758,2759,2760,2761,2762,-1473,2763,-1469,2764,-1515]],[[-1484,2765,-1481,2766]],[[-1504,2767,2768,2769,2770,2771,-1500,2772]],[[2773,2774,-1507]],[[2775,-1518,2776,2777]],[[2778,-1516,2779]],[[2780,2781,-1530,2782]],[[-1528,2783,2784,2785]],[[2786,-1532,2787,-1523,2788,2789]],[[2790,-1544]],[[2791,2792,2793,-1537,2794,-1541,2795,2796,2797,2798,-1549,2799,2800,2801]],[[-1538,2802,2803,2804]],[[-1547,2805]],[[2806,-1553,2807,-1551,2808]],[[-1558,2809,-1555]],[[2810]],[[2811,2812,2813,2814,2815,-1563,2816,-1561]],[[2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829],[2830]],[[2831]],[[2832,2833,2834]],[[2835,2836,-1582,2837]],[[2838,2839,2840,2841,-1585,2842,-1590,2843]],[[2844]],[[2845,2846,2847]],[[2848,-1594,2849,2850]],[[2851,2852,-1602]],[[2853,-1611]],[[-1608,2854]],[[2855,2856,-1616,2857,2858]],[[2859,-1656,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869]],[[2870,-1660,2871,2872]],[[2873,2874,2875,2876]],[[2877,2878,2879,-536,-1666]],[[2880,2881,2882]],[[2883,2884,2885,2886,2887,2888]],[[-1671]],[[2889,2890,2891]],[[-1698,2892,2893]],[[2894,2895,-1705,2896,2897]],[[2898,-1717,2899,-1712,2900,-1709,2901]],[[2902,-1714,2903,2904]],[[2905,2906,2907,-1721,2908,-369,2909]],[[2910,2911]],[[-1743,2912,2913,2914]],[[-1749,2915,2916,2917,2918,2919,2920]],[[2921,-1753,2922,-1756,2923,2924]],[[2925]],[[2926,-1759]],[[2927,2928,2929]],[[2930,2931,2932,-1762,2933,2934]],[[2935,-1777,2936,2937,2938,2939]],[[2940,2941]],[[-1772,2942,2943,2944,-1764,2945,-1775,2946,2947,2948,2949]],[[2950,2951,-1769,2952]],[[2953,2954]],[[2955,2956]],[[-522,2957,2958]],[[2959,2960,2961,2962,2963,-1784,2964,2965]],[[2966,2967,-1792,2968,2969,2970,-1786]],[[2971,2972,2973,2974,2975,2976]],[[-1798,2977,2978,-1800,2979,-1803,589,590]],[[-1818,2980]],[[2981,2982]],[[2983,2984,-1830,2985,-1821]],[[2986,2987]],[[2988,-1828,2989,-1836,2990]],[[2991,2992,-1840,2993]],[[2994,-1838,2995]],[[2996,2997]],[[-1843,2998,2999,3000]],[[3001]],[[3002,3003]],[[3004,-1862,3005,-1852,3006,3007,3008,-1851,3009]],[[3010,3011,3012]],[[-1856,-1860,3013,3014,3015]],[[-1864,3016,3017,3018,-1865,3019,3020,3021,3022,3023,3024,3025,3026]],[[3027,-1872,3028,3029]],[[3030,3031,3032]],[[-1876,3033]],[[-1878,3034,-1892,3035,-1880,3036]],[[3037,3038,3039,3040,-310,-309,3041,3042,3043,-1896]],[[3044,3045]],[[3046,3047,3048]],[[-1901,3049,3050]],[[-1904,3051,3052]],[[3053,3054,-577,-1907,3055,3056,3057,3058]],[[3059,3060]],[[3061,-1807]]]},{"type":"MultiPolygon","id":"7","properties":{"density":7},"arcs":[[[7,-1909,-597]],[[10,3062,-602,-1910]],[[-1942]],[[3063,-1921]],[[-1922,3064,3065]],[[-604,3066,-1911]],[[3067,-1919,3068]],[[-620,3069,-618,-1915]],[[3070,-1952,-615]],[[-1916,-1951,3071]],[[-1954]],[[3072,-1957,-1945]],[[3073,-1949,3074]],[[-1947,3075,3076]],[[-2071,3077,-14,3078,-695,3079,-717,-2075,-715,3080,-21,3081,-638,-2032,-19,-2031],[-2070]],[[3082,-2028,-636,-2033]],[[3083,-2036,-639,-2040,3084,3085,-633,-2038,-631]],[[-1924,-610,3086]],[[3087,3088,3089,3090,-2046]],[[-2044,3091]],[[-2042,-646,-644]],[[3092,3093,-658]],[[-662,-2048,3094,3095]],[[-672,3096,-711,-2053,-665,-2050,-671,3097,-2052]],[[-679,3098,3099]],[[100,-667,-2058,3100]],[[97,3101,-2056,3102,-2059,3103]],[[3104,-2063,3105,-684]],[[-703,3106,3107,3108,-2065,3109,3110,-2069,-690,3111,-692,3112,-706,-2074]],[[-719,-687,-2068,3113,3114]],[[-708,3115,-704,-2073]],[[-696,3116,3117,3118]],[[3119,-698]],[[3120,89,3121,-1933]],[[-1936,3122,-722]],[[-720,-1937]],[[3123,3124,-1931]],[[-1929,-2,3125,3126]],[[3127,-1939]],[[3128,3129,3130]],[[-727,-2076,3131,3132,3133]],[[3134,3135,3136,-739,3137,3138]],[[-750,3139,3140,-744,3141,-2095]],[[-2078,-740,-752,-2097,-757]],[[3142,-2093]],[[-2098,-754,3143,3144]],[[-763,-2079,-755,135]],[[-761,137,-766,-2080]],[[3145,-2091]],[[3146,3147,-2082]],[[3148,3149,-2087,-2084]],[[-2086,-767,-2085]],[[3150,-2089,3151]],[[-773,3152]],[[3153,-2101,156,3154]],[[3155,-2103,-774,3156,3157]],[[3158,159,3159]],[[3160]],[[3161,3162]],[[3163,-2108,3164,3165,3166,-783,-2105]],[[-786,3167,3168,3169]],[[3170,3171,3172]],[[-791,-2109,3173]],[[-796,3174,-2113]],[[-798,-2112,-800,3175]],[[-2114,3176,3177]],[[-817,3178,-2120,3179,-816,3180,-824,3181,3182,-812,-2134,-810,-2118,3183,-2125,-815,-2133]],[[3184,-2122]],[[3185,3186,-2127,-813,-2124,3187]],[[-819,-2132,3188]],[[3189,-2129]],[[-821,3190,3191]],[[3192,3193]],[[3194]],[[-828,3195]],[[-833,3196]],[[3197,3198,3199,-2142]],[[3200,-2144,3201]],[[3202,-2147]],[[3203,-2150,-844,3204]],[[3205,-841,-2152]],[[-846,-2149,-843,3206,3207]],[[-2154,3208]],[[3209,3210,3211,3212]],[[3213,3214,-2161,-854,3215,-2270]],[[3216,-2266]],[[3217,-2268]],[[3218,-2264,3219,3220,-1017]],[[3221,-2258]],[[3222,3223,-2260]],[[-858,3224,-2255,-2335]],[[3225,-2262]],[[3226,-861,304]],[[3227,306,-860,-2336,-2254]],[[-2279]],[[-2276]],[[3228,-2273]],[[3229,-2252,-865]],[[-2277]],[[3230,-878,3231,-867,-2251,-875]],[[3232,-876,-2250,3233,-2248,3234,-2246]],[[-890,-2165]],[[-2288]],[[-2291]],[[-2332,3235,-872]],[[-870,-2333]],[[-2323]],[[-2339,3236,3237,-881,-2244,3238]],[[3239,-2337,3240,3241]],[[3242,-2241]],[[-957,-2318,3243,-2319]],[[3244,3245,-2234]],[[3246,3247,-896,-2368,-894,-2163]],[[-885,-2158,-892,-2164]],[[3248,3249,-2356,3250]],[[3251,-1369,-2709,-1372,-2343,-2342,3252,-263]],[[3253,-2354,-903,-2177]],[[-2357]],[[-2353,-905]],[[-2350,-1359,-2689,3254,271,-923,-2363,3255,-2359,-907,-2352,269,-2351,-268]],[[-2180,-917,-2365,3256,-932]],[[-911,-2366,-909,-2361,3257,-919,-2179]],[[-915,3258,-913,-2178]],[[-2174,3259]],[[3260,-2187]],[[-2286]],[[3261,-2185]],[[-2189,-925,3262,-939]],[[3263,-929,-2183,3264,278,-2193]],[[3265,-2181]],[[3266,3267,-2170,-945,-2367,-943]],[[-2190,-937]],[[3268,-947,-2169]],[[3269,-2167,3270]],[[-2289]],[[-2287]],[[-2290]],[[-2329,-955]],[[-2302,-948]],[[-2285]],[[-2300,282,-2299,3271]],[[-935,-2191]],[[-2330,-953,3272]],[[-2296]],[[3273,-2304]],[[-2297]],[[-2314]],[[-2231,3274,3275]],[[3276,-2313]],[[290,-2224,3277,-2222,3278,-2225]],[[3279,3280]],[[-2293]],[[-2294]],[[3281,-2322]],[[-2320]],[[-2371,-965,3282,-2238,-962,3283]],[[-1886,3284,299,3285,-2372,-969,297,3286]],[[3287,3288,-976,-2377]],[[3289,-2381]],[[3290,-2376]],[[-2378,-980,3291,-982,-2385]],[[-984,3292,-2390,3293,-2388,-985,3294,3295,-2383,3296,-2379,-2386]],[[-2394,3297,-989]],[[3298,3299,-2392]],[[-1005,3300,3301,3302,3303,-2403]],[[3304,-995,-2402,3305]],[[-2407,-1020,3306]],[[-2400,-1008]],[[-1001,3307,-2415,-2397]],[[-2414,3308,-2398]],[[3309]],[[-2420,3310,3311,3312]],[[3313,-2426,3314,3315]],[[3316,-1028,-2427,-1034]],[[-2428,-1031,3317,-1043,3318,-2431,-1044,3319,-1036],[2429],[2428]],[[-1041,3320]],[[-1048,3321,3322,3323]],[[-2434,3324,3325]],[[3326,3327,3328,3329]],[[3330,3331]],[[3332,3333,3334,-2440]],[[3335,3336,-2444,-1054]],[[3337,-2447]],[[-2443,3338,-1056]],[[3339,-1058,3340]],[[-2451,3341,3342]],[[-2453,3343,3344]],[[3345,-2465,-1060]],[[-2469,3346,3347]],[[3348,-1063,3349,-2471,3350,3351,-2475]],[[-1071,3352,3353,3354,-2478]],[[-1073,-2486]],[[3355,-2484]],[[-2481,-1075,3356]],[[3357]],[[-2278]],[[-276,3358,-2194]],[[-2280]],[[-2292,-281]],[[-2281]],[[414,-1088,-2196,3359]],[[417,418,3360,-2197,-1090,3361]],[[-2282]],[[3362,-2199,-1098]],[[-1120,3363,3364,-2500,3365,-2499]],[[3366,3367,-2502]],[[3368]],[[3369,-2493]],[[-1099,-2506,-1102,3370,-2509,-1106,3371,427,-2504]],[[-2512,-1107,3372,-1126,-2496,-1111,-2495,-2511,3373,3374,-1109]],[[3375,-2497,-1124]],[[3376,-2207]],[[3377,-2214,3378,-2209]],[[-1130,-2210,3379,-2212]],[[-1128,-2211]],[[-1093,-1113,-2203]],[[3380,-2201]],[[-1132,-2307,3381,-2305]],[[-2308]],[[-2218,3382,3383]],[[-2220,3384]],[[-286,-285,-2310,-1139,-2309]],[[3385,-1146,3386]],[[-2684,-734,3387,-2672,-2518,-2516,-2515,-1151,431,3388,-431,-430,-117,-116,-736]],[[-1158,3389,-1148,-2524,434,-1154,-2532,-2533]],[[-2528,3390]],[[-1160,-2536]],[[-1162,-2535,-1169,3391]],[[3392,-1165,-2538,3393]],[[3394,3395,3396]],[[-1171,-2534,-2531]],[[3397,-2539,-1164,3398]],[[-1167]],[[3399,-2563,-1183,-2567,-1181,-1200,-2566]],[[-1214,-2541]],[[3400,-2550,3401,-2571,3402,3403,-2552]],[[3404,-2554]],[[459,-1201,-1180]],[[-1175,-2643]],[[3405,-1177,-2644,-1174,-2561,3406,-2568]],[[-2562,-1185]],[[-1190,-2556]],[[-1188,-2557]],[[-421,-1179,3407,-2559,3408]],[[-1212,-2574,3409,-2542]],[[3410,-2548,3411]],[[-2564]],[[3412,-1304,-2545]],[[-1230,-2584,3413,-1257,3414,-2579,-1233,3415,-2586,3416]],[[-2582,3417,-1224]],[[-1237,-2580,3418]],[[-2575,3419]],[[-1240,3420,-2587,3421]],[[3422,-1253,3423,3424,-2596,-1247,-2598,-1245,-2595,-1243,3425,-2592]],[[-1259,3426,3427,3428,-2590]],[[3429,3430,-2641,-1226,3431,-2600]],[[3432,-2603]],[[-2605,3433,3434]],[[-1264,3435,3436,-2607,-1260,3437,3438,-2608]],[[-2722,3439,-476,3440,3441,473,3442,-1404]],[[-2610,3443,3444,-1268,3445]],[[-2612,3446,3447]],[[-2615,3448,3449,3450]],[[-2618,3451,3452,3453,-2619,3454,3455]],[[-2623,3456,3457]],[[3458,3459,-2634,-1283,3460]],[[-1277,3461,-1292,3462,3463,3464,-1279,-2627]],[[-2621,-2626,-1291,3465,3466,3467]],[[-1298,3468,-2628,3469]],[[-1295,-2633,3470]],[[3471,3472,-1312,-2631,-1301]],[[3473,-2640,3474,3475]],[[3476,3477]],[[-1306,3478,3479,-2546]],[[-2594,-1308,3480,-2599]],[[3481]],[[-2670]],[[3482,-2653]],[[-2673]],[[-2674]],[[-2651,3483]],[[-1329,-2521,-1339,-2520]],[[3484,-1331,-2519,-1320,3485,-2676,3486,-2683]],[[-1323,-2678,3487,496,497,-2679]],[[-2680,3488,-1321,500,3489]],[[3490,-1336,3491,-1326]],[[3492,-438,-2523,-1333]],[[-2517]],[[-2525]],[[-2646,3493,3494]],[[3495,3496,-2649]],[[-2660,3497,3498]],[[3499,-1342,3500,3501,-2656]],[[3502,-2657]],[[3503,3504,-1344]],[[3505,507,3506,-1346]],[[-2665,3507,3508]],[[-2662,3509,3510]],[[-2358,-266]],[[-2347,3511,-458,3512,-1363]],[[3513,3514,-1382,-2692,-1367]],[[-1370,3515,-2344]],[[-1380,-2714,-2693]],[[-2707,-1195,3516]],[[3517,-2704]],[[-2706,3518,-463,-1197]],[[-2695,3519]],[[-1385,-2701]],[[3520,3521,-2697]],[[-2710]],[[-2716,3522,-470,-469]],[[-2702,-1383,-2717,-467,3523]],[[3524,-1390,-2699]],[[3525,-1394,3526,-1406,3527,-2720]],[[3528,-1448,3529]],[[3530,3531,-1420]],[[-1431,3532,3533,3534,-1424,3535,-2724,-1412,3536,3537,-1415,-2726,-1422,-1428]],[[-1429,-1427,3538]],[[-2349,3539,-1353,-2690,-1357]],[[-2767,-2727,-1454,-2753]],[[-2731,-1494]],[[-1463,-2747]],[[3540,-1464,3541,-2784,-1527,3542,-1467,-2757]],[[-2764,-1472,3543,-2755,-1470]],[[3544,-1477,-2751,3545]],[[-1482,-2766,-1483,-2752]],[[-2736,3546,3547]],[[-2746]],[[3548,3549,-1486,-2732,-1493]],[[-2745]],[[-1501,-2773,-1499,-2729]],[[-1503,-2728,-1479,3550,-2768]],[[3551,3552,-1496,-2772]],[[3553,3554,-1521,3555,3556,-2777,-1517,-2779,-2759,-1512,3557,-1508,-2775]],[[3558,-2762]],[[-2758,-1514]],[[-1519,-2776,3559,3560,-2760,-2780]],[[-1531,-2782,3561,-1524,-2788]],[[-2789,-1522,-2786,3562]],[[-1546,-2800,-1548,-2806]],[[-2810,-1557,3563,-1562,-2817,-1565,3564,-2783,-1529,-2787,3565,-2801,-1545,-2791,-1543],[-2811]],[[3566,3567,-2793]],[[-2804,3568,3569]],[[-1536,3570,-1542,-2795]],[[-2798,3571,-1559,-1554,-2807]],[[-2809,-1550,-2799]],[[-2808,-1552]],[[3572,-2816]],[[3573,3574,3575,-1567,3576,-2814]],[[-1572,3577,-1568,3578]],[[-2738,-1491,3579]],[[-1,0,3580]],[[1988,-1989,3581]],[[1992,-1993,3582]],[[1990,-1991,3583]],[[3584]],[[331,-332,3585]],[[3586,3587,-1986]],[[3588,-2830,3589,-2834],[-2832]],[[-2819,3590]],[[-2831]],[[3591,3592,-2828]],[[3593,3594,3595,-2825]],[[3596,-2822,3597,3598,3599]],[[-1581,3600,3601,-2838]],[[3602,524,525,3603]],[[3604,-2839,3605]],[[-2842,3606,-1586]],[[3607,-2851,3608,3609]],[[3610,-1603,-2853]],[[3611,3612,-1606,3613,3614]],[[3615,3616,-2856,3617]],[[3618,-3619,3619]],[[-2858,-1615,3620,3621]],[[3622,3623,3624,-1620]],[[-1978,-1632,3625]],[[3626,-1636,3627]],[[-1629,-1999]],[[3628,-2002]],[[3629,3630,3631,-1638,-1976]],[[-1643,3632,-2008]],[[3633,-1641,-2007]],[[3634,3635,3636,3637,539,-2010,-1649]],[[3638,-2862,3639]],[[3640,3641,-2870]],[[-1657,-2871,3642]],[[3643,-2877,3644,-1662]],[[3645,-2879,3646,-2875,3647,3648]],[[3649,3650,-2883,3651]],[[3652,-2866,3653,-2887]],[[-2864,3654,3655]],[[-1680,-2016]],[[-1667,-2026]],[[-1669,-2027]],[[3656,-2017]],[[-2014,3657,-2892,3658,-1677]],[[-2025]],[[-1968,3659,-1685]],[[3660,-1691,-1969,-1683]],[[-1970,-1689,3661]],[[-2024]],[[-1682,-2015]],[[-2023]],[[-543,-1974,3662,-544]],[[3663,-1696,-1972]],[[3664,-1966]],[[3665,-1963]],[[-2893,-1703,3666,3667]],[[-2895,3668,3669]],[[-2904,-1713,-2900,-1716,3670]],[[-2910,-368,3671]],[[3672,-2907,3673,3674]],[[3675]],[[3676,-2902,-1708,3677,3678,3679,3680]],[[3681,3682,3683,-1729,3684,3685,-2912,3686,-1724,3687]],[[-1734,3688]],[[-1744,-2915,3689,-92,-2487]],[[-2491]],[[-1742,3690,-2913]],[[-1748,3691,-1758,3692,-2916]],[[3693,3694,3695,-2918]],[[3696]],[[3697,-2925]],[[3698,-2924,-1755,3699],[-2926]],[[3700,3701,3702]],[[3703,-2935]],[[-2932,3704,3705]],[[-2940,3706]],[[-2946,-1767,3707,-2937,-1776]],[[-1770,-2952,3708,3709,-2941,3710,-2944]],[[-1773,-2950,3711]],[[-1771,-2943]],[[-2948,3712]],[[3713,-2955,3714,3715]],[[3716,3717,3718]],[[3719,-2956]],[[3720,-2960]],[[3721,-2965,-1783,3722]],[[3723,-2967,-1785,-2964]],[[-2970,3724,3725]],[[3726,3727,3728,-2962]],[[-1794,3729]],[[-2977,3730]],[[-2974,3731]],[[-1801,-2979,3732,3733]],[[3734,3735]],[[-1822,-2986,-1829,-2989,3736]],[[-1827,3737,3738,-1833,-2990]],[[3739,-2992,3740]],[[-2996,-1837,3741]],[[3742,3743,-2997,3744,3745,3746,-3000]],[[3747,3748,-3001]],[[3749,3750,3751,-1847,3752]],[[3753,-3007]],[[-3012,3754,-1857,-3016,3755,3756]],[[-1858,-3027,3757]],[[3758,-3025,3759,3760]],[[3761,3762]],[[-1868,3763,-3020]],[[-3005,3764,-3017,-1863]],[[3765,-3029,-1871]],[[-3035,-1877,-3034,3766,-3033,3767,3768,-1893]],[[-1888,3769,-296,-295,3770]],[[3771,3772,-1881,-3036,-1891]],[[-1879,-3037]],[[3773,-1897,-3044,3774,-1883]],[[3775,-3049,3776,-3046,3777,3778,3779]],[[-3039,3780]],[[-2667,-494,-1902,-3051]],[[-1905,-3053,3781,3782]],[[3783,-3056,-1906]],[[-3058,3784]],[[3785,-578,-3055]],[[3786,-3061]],[[3787,-1809]],[[-1810,3788,3789,3790]]]},{"type":"MultiPolygon","id":"5","properties":{"density":5},"arcs":[[[-3065,-3064,-1920,-3068,3791]],[[-626,3792,3793,-1913,3794,13,-3078,-2072,-2030,-17,-16]],[[3795,-625,-1943,3796]],[[-2021,-1955,-3073,-1944,-623,3797,-32,3798,3799,-2022]],[[3800,-3075,-1948,-3077,3801,3802]],[[20,21,3803,-629,-3082]],[[-3091,3804,-650,-2047]],[[3805,-3095,-2049,-660,3806,3807,3808,3809,3810,3811]],[[-670,3812,3813,-674,-2051,-3098]],[[98,99,-3101,-2057,-3102]],[[3814,-2060,-3103,-2055,-680,3815,-3114,-2067]],[[90,91,92,-685,-3106,-2062,-3109,3816,-1934,-3122]],[[94,3817,-3110,-2064,-3105,-683]],[[-3079,-13,3818,-3117,-705,-3116,-707,-3113,-691]],[[-689,3819,-693,-3112]],[[-3107,-702,3820]],[[3821,-699,-3120,-697,-3119,3822,-9,-8,-7]],[[-724,3823,-1940,-3128,-1938]],[[3824,3825,-3131,3826]],[[3827,-3133,3828]],[[3829,-3138,-738]],[[3830,3831,-3135]],[[3832,3833,3834,3835,3836,3837,3838]],[[-2092,-3146,-2090,-3151,3839,-747,-2094,-3143]],[[-759,-2099,-3145,3840,3841,3842]],[[3843,3844]],[[139,3845,-3147,-2081,-764]],[[3846,-770]],[[3847,3848,150,3849]],[[158,-3159,3850,-776,-2102,-3156,3851,-779,3852]],[[-3162,3853]],[[3854]],[[3855,3856,-3165,-2107,3857]],[[-807,3858]],[[-2119,-3179,-3180]],[[-2123,-3185,-2121,3859,3860,3861,3862,-3188]],[[-2130,-3190,-2128,-3187,3863]],[[3864],[-2135]],[[-3198,-2141,3865]],[[-2145,-3201,3866]],[[3867,3868,3869]],[[3870,-855,-2160,-853,3871,-2274,-3229,-2272]],[[-1018,-3221,3872,-3223,-2259,-3222,-2257,3873,3874]],[[-3231,-877,-3233,-2245,-879]],[[-868,-3232,-882,-3238,3875]],[[3876,-3251,-2355,-3254,-2176,-901]],[[-2360,-3256,-2362,-920,-3258]],[[-272,-3255,-2691,-1354,-3540,-2348,-1364,-3513,-457,-418,-3362,-1089,-416,-415,-3360,-2195,-3359,-933,-3257,-2364,-924,-273]],[[-914,-3259]],[[3877,-899,-2172,3878]],[[-2182,-3266,-934,277,-3265]],[[-940,-3263,-930,-3264,-2192]],[[-2317,3879,-2315,-3244]],[[-3284,-961,-2370]],[[-2324]],[[300,-968,3880,3881,3882,-3286]],[[3883,3884,3885]],[[3886,3887,-2384,-3296,3888]],[[-983,-3292,-979,3889,3890,-2395,-987,-2387,-3294,-2389,-3293]],[[3891,3892,-3299,-2391]],[[3893,3894,3895,3896,-3303]],[[3897,3898,-1003,-2409,-998]],[[-2405,3899,3900]],[[-1013,-2411,3901,3902]],[[-3308,-1000,-2408,-3307,-1023,-2416]],[[3903,-1010,-2399,-3309,-2413,3904,-2419,3905]],[[3906,-2424]],[[3907,-2423,3908,3909]],[[-1033,3910,3911,-3316,3912,-1026,3913,3914,-1029,-3317]],[[3915]],[[-3325,-2436,3916]],[[-3333,-2439,-1050,3917,3918]],[[3919,3920,3921,-2445,-3337]],[[-127,3922]],[[3923,3924,-2456]],[[3925,-2458,3926]],[[-1062,-2464,3927,-3347,-2468,3928,-2472,-3350]],[[3929,3930,3931,3932,-2477]],[[-2450,3933,-3342]],[[-1077,-2480,3934,3935,3936]],[[-1082,3937,3938]],[[3939,3940]],[[-1085,3941,3942]],[[3943,3944,399,3945]],[[-2200,-3363,-1097,3946,-1114,-1092,-2202,-3381]],[[-2494,-3370,-2492,-3366,-2503,-3368,3947,3948,-2507],[-3369]],[[-2206,-1127,-3373,-1110,-3375,3949,-2513,3950,-2215,-3378,-2208,-3377]],[[-3379,-2213,-3380]],[[3951,-118,429,-1150]],[[3952,3953,3954,-1147,-3386,3955,3956,-3396]],[[-2526,-1155,436,3957]],[[-3394,-2537,-3398,3958]],[[-3403,-2570,-1207,3959]],[[-2705,-3518,-2703,-3524,-466,-465,-2540,-3400,-2565,-1198,462,-3519]],[[-1210,3960,-2543,-3410,-2573]],[[-1231,-3417,-2585,-3416,-1232,-3419,-1222,3961,-1205,3962,-3412,-2547,-3480,3963,-2578,3964],[-2576,-3420]],[[-1256,-3432,-1225,-3418,-2581,-1235,-3415]],[[3965,3966,-1220,-2588,-3421,-1239]],[[-425,-1241,-3422,-2589,-1218,3967]],[[3968,-3427,-1258]],[[3969,-1251,-3423,-2591,-3429]],[[3970,-1262,-2606,-3435,3971]],[[-1395,-3526,-2719,-1400,-2718,-3528,-1405,-3443,-474,-3442,3972,-1269,-3445,3973,-472,-471,-3523,-2715,-1388,3974]],[[3975,3976,3977,-1286,-2616,-1284]],[[-1280,-3465,3978,-1289,3979]],[[3980,3981,3982,-1313,-3473]],[[-2637,-3474,3983]],[[-3475,-2639,3984]],[[3985,-1303,-2630,-3460]],[[3986,3987,3988,-3436,-1266,-2609,-3439,3989,3990]],[[-3453,-3457,-2622,-3468,3991]],[[-2652,-3484,3992,-2654,-3483]],[[-2681,-3490,501,3993]],[[-3492,-1335,-2522,-1327]],[[-439,-3493,-1337,-3491,-1325,3994,504]],[[-432,-3389]],[[3995,3996,-3496,-2648]],[[-1341,3997,-3498,-2659,3998,-3501]],[[-2664,3999,-3508]],[[-1361,4000,-2345]],[[-1374,-2708,-3517,-1203,-2711,-460,4001]],[[4002,-3521,-2696,-3520,-2694,-2713,-1378,-2712,-1376,-3515,4003]],[[4004,-1410]],[[4005,-1449,-3529,4006]],[[-1421,-3532,4007,-1426]],[[4008,4009,-1417]],[[4010,-3534,4011,4012]],[[4013,4014,4015]],[[4016,-1435,4017]],[[4018,-1436]],[[-1439,4019,-1446,4020]],[[-1441,4021,4022]],[[4023,4024,-1444]],[[1451]],[[-3546,-2750,4025]],[[-2735,4026,-3547]],[[4027,-2740]],[[-2771,4028,4029,-3552]],[[-1526,4030,-1509,-3558,-1511,-2765,-1468,-3543]],[[-2778,-3557,4031,-3560]],[[-1566,4032,-1505,4033,-2781,-3565,-1564,-3573,-2815,-3577]],[[4034,-1533,-2794,-3568,4035,-3569,4036]],[[4037,-2796,-1540,-3571,-1535]],[[4038,-3575]],[[4039,-1983]],[[-3598,-2821,4040]],[[4041,4042]],[[4043,-3604,526,4044,-2840]],[[4045,4046,-2848,4047,-27]],[[4048,4049,4050]],[[-1595,4051,4052]],[[4053,-1612,-2857,-3617,4054]],[[-517,4055,-1625,-1998,-1623,-1997]],[[-1975,-1646,4056,4057,-3630]],[[-3628,-1635,4058,4059]],[[4060,4061,-1652,-2860,-3642,4062]],[[4063,4064]],[[-3648,-2874,-3644,-1661,4065]],[[-537,-2880,-3646,4066]],[[-3650,4067,4068]],[[4069,-2884]],[[-3655,-2863,-3639,4070,4071]],[[4072,-1673,-1959,4073]],[[-2891,4074,-2018,-3657,-1678,-3659]],[[-1686,-3660,-1967,-3665,-1965,4075,4076]],[[-1692,-3661,-1688,4077]],[[-1697,4078]],[[-1675,4079,-1960]],[[-1699,-2894,-3668,4080,4081,4082]],[[-1706,-2896,-3670,4083,4084]],[[4085,4086,4087,-3678,-1710,-2901,-1711]],[[-1722,-2908,-3673,4088]],[[-3682,4089]],[[-1732,4090,4091,-1726,-3684,4092]],[[-1728,4093,4094,-3685]],[[-1730,4095]],[[-387,4096,-1740,-2490]],[[-1752,4097,-3694,-2917,-3693,-1757,-2923],[-3697]],[[-2920,4098,4099]],[[4100,-395,4101,-2928]],[[4102,-3717,4103,-3716,4104,-1774,-3712,-2949,-3713,-2947,-1778,-2936,-3707,-2939,4105,4106,-1763,-2933,-3706,4107,-330,4108,4109,-1781,4110]],[[4111,4112,4113,-1765,-2945,-3711,-2942,-3710]],[[-524,-523,-2959,4114,4115,-3727,-2961,-3721,-2966,-3722,4116,-525]],[[-2963,-3729,4117,-1788,-2968,-3724]],[[4118,4119,-1789]],[[-3725,-2969,-1791,4120,4121]],[[-3733,-2978,-1797,4122]],[[4123,-1804,-2980,-1799,4124]],[[4125,4126,-1813]],[[-1819,-2981,-1817,4127]],[[-1825,-2985,4128]],[[4129,-1823,-3737,-2991,-1835,4130,4131,4132]],[[4133,4134,4135]],[[4136,-3751,4137]],[[4138,-3008,-3754,-1853,-3006,-1861,-1855]],[[-3014,-1859,-3758,-3026,-3759,4139]],[[-3024,4140,-3760]],[[4141,4142,-3022]],[[4143,-1874,-1866,-3019]],[[4144,-3030,-3766,-1870,4145]],[[-3767,-1890,4146,-3031]],[[-3287,-298,-297,-3770,-1887]],[[4147,-1884,-3775,-3043]],[[-1898,-3774,-1882,-3773,4148,-3778,-3045,-3777,-3048,4149]],[[-311,-3041,4150]],[[-3782,-3052,-1903,-492,4151]],[[-591,-1811,-3791,4152,-592]]]},{"type":"MultiPolygon","id":"3","properties":{"density":3},"arcs":[[[11,12,-3795,-1912,-3067,-603,-3063]],[[4153,-3793,-628,-2029,-3083,-2034,-634,-3086,4154,30,31,-3798,-622,-3796]],[[-1925,-3087,-609,4155]],[[4156,-4135,4157,4158,4159,4160,-84,4161,86,87,4162,-4042,4163,4164,-3601,-1583,-2837,4165,-2823,-3597,4166,509,4167,-3510,-2661,-3499,-3998,-1340,-3500,-2655,-3993,-2650,-3497,-3997,4168,-2685,4169,-3494,-2645,-3388,-733,113,-732,-3137,4170,-3838,4171,4172,-53,4173,4174,4175,4176,46,4177,4178,81],[49,4179,4180,-3504,-1343,-3507,-508,-507,-506]],[[-3807,-659,-3096,-3806,4181,4182,4183,-654,-3094,4184],[-663]],[[77,78,4185,4186,4187,75,4188,586,-1805,-4124,4189]],[[4190,58,4191,4192]],[[102,103,104,4193,-668]],[[-4099,-2919,-3696,4194,-488,-99,-98,-3104,-2061,-3815,-2066,-3111,-3818,95,4195]],[[-3820,-688,-718,-3115,-3816,-682,-2054,-713,4196,4197,-24,-23,-22,-3081,-714,-3080,-694]],[[-723,-3123,-1935,-3817,-3108,-3821,-701,4198,-4,-1941,-3824]],[[4199,4200,4201,-3825]],[[-3831,-3139,-3830,-737,116,117,118,119,120,4202,-3833,4203]],[[4204,-3836,4205,4206,4207,4208,4209]],[[-749,4210,-3140]],[[-3841,-3144,-753,-743,4211,4212]],[[133,-760,-3843,4213,-3844,4214]],[[-3846,140,141,4215,4216,-3149,-2083,-3148]],[[4217,-2983,4218,4219,-3746,4220,-3743,-2999,-1844,-3749,4221,4222,4223,-231,4224,-2993,-3740,4225,-4132,4226,-1831,4227,-2987,4228,-3738,-1826,-4129,-2984,-1824,-4130,4229,-227,-160,-159,-158,-157,-156,-2100,-3154,4230,-780,-3852,4231,-771,-3847,-769,4232,4233,4234,-3848,4235,153,-1820,-4128,-1816,-152,-151,-150,4236,4237,-3736,4238],[-1842],[-1839,-2995,-3742]],[[4239,4240,-3157,-777,-3851,-3160,160]],[[129,4241,4242,4243]],[[4244,4245,-70,-69,4246,174,4247,-1814],[-781]],[[-789,4248,4249,4250,4251,-3173,4252,-787,-3170,4253,-3858,-2106,-3164,-2104,-784,-3167,4254,4255]],[[4256,4257,4258,-186,449,4259,4260,4261,-3463,-1293,-3462,-1276,-1299,-3470,-2629,-3469,-1297,4262,-2635,-1314,-3983,4263,-188]],[[4264,4265,4266,-794,4267]],[[4268,4269,4270,4271,-2115,-3178,4272,4273,4274]],[[4275,4276]],[[4277,4278,-825,-3181,-820,-3189,-2131,-3864,-3186,-3863,4279],[-3202,-2146,-3867]],[[219,-2138,-2137,221,-2140,-829,-2139,223,4280,4281,4282,4283],[-827,-3196],[-3195]],[[4284,4285,4286,-3861]],[[4287],[-834]],[[201,4288]],[[4289]],[[4290,4291,-838,4292,4293]],[[-243,4294,-3870,4295,4296,-3212,4297,237,238,239,240,4298,4299],[-848],[-3326,-3917,-2435]],[[4300,4301,-62,234,4302,-3210]],[[4303,-849,4304,4305,4306,4307,247]],[[-897,-2175,-3260,-2173]],[[-2295]],[[-3275,-2230,4308,4309]],[[4310,-3882,4311,-974,4312,292]],[[4313,4314,-3288,-3291,-2375,-3290,4315]],[[4316,4317,-3896,4318,4319,4320,-3889,-3295,-990,-3298,-994,4321]],[[4322,4323,4324,-3892,-2396,-3891]],[[4325,-3894,-3302,4326,-3898,-997]],[[-3902,-2410,-1011,-3904,4327,313,4328]],[[-3874,-2256,-3225,-857,309,310,311,4329]],[[-2327]],[[-2325]],[[-2326]],[[4330,4331,4332,4333,4334]],[[-3311,-2421,-3313,4335,4336,318,4337,4338,4339,4340,4341]],[[-3310]],[[4342,4343]],[[-3323,4344,4345]],[[-3327,4346,-2437,4347,359,4348,-1052,-2441,-3335,-3332,4349]],[[4350,-1587,-3607,-2841,-4045,-527,-526,-4117,-3723,-1787,-2971,-3726,-4122,4351,4352,-2975,-3732,-2973,4353,357,4354,4355,355,4356,4357,528,4358]],[[-334,4359,4360,-3921,4361]],[[-145,-328,4362]],[[4363,-4087,4364,4365,-548,-547,-546,-545,-3663,-1973,-1694,-4079,-3664,-1971,-3662,-1693,-4078,-1687,-4077,4366,4367,-554,512,4368,-1349,-1350,4369,372,4370,4371,4372,-1067,4373,-3932,4374,4375,-2459,-3926,4376,4377,-3344,-2452,-3343,-3934,-2449,4378,-2457,-3925,4379,-371,-370,-2909,-1720,-4089,-3675,4380,-3680],[-2461]],[[-3936,4381,-3354,4382,385,386,387,-2489,389,390,4383]],[[4384,4385,4386,-1069,4387]],[[4388,4389,-1080,4390]],[[4391,-3941,-1083,-3939,4392,4393,-3397,-3957,4394,-1166,-3393,-3959,-3399,-1163,-3392,-1168,-2529,-3391,-2527,-3958,437,438,439,-595,4395,4396,441,-409,4397,410]],[[403,4398,-1086,-3943,4399]],[[-2283,4400]],[[-3947,-1096,-2198,-3361,419,420,421,4401,4402,-1115]],[[4403,-1118,-2498,-3376,-1123,-2205]],[[-3279,-2221,-3385,-2219,-3384,4404,-2226]],[[4405,4406,4407,-1143,4408]],[[4409,-406,4410,4411,-3954]],[[4412,-124,4413]],[[4414]],[[4415,-3966,-1238,4416,-1193]],[[-3433,-2602,4417,4418,4419,-3424,-1252,-3970,-3428,-3969,-3414,-2583,-1228,4420,-3972,-3434,-2604]],[[471,-3974,-3444,-2613,-3448,4421,-3991,4422]],[[477,478,4423,-3449,-2614,-1270,4424]],[[4425,482,4426,-3976,-1287,-3978,4427,-3981,-3472,-1300,-3986,-3459,4428,-3478,4429,4430,4431,-481,4432]],[[4433,-3455,4434]],[[-4037,-2803,-1539,-2805,-3570,-4036,-3567,-2792,4435,-429,-428,-427,-456,-455,4436,-1310,-2593,-3426,-1250,4437,-453,4438,4439,4440]],[[4441,-1391,-3525,-2698,-3522,-4003,4442,-4012,-3533,-1430,-3539,-4008,-3531,-1419,4443,4444,4445],[-1437,-4019]],[[4446,4447,-4014]],[[4448,-1432,-4017,4449]],[[4450]],[[4451,-4024,-1443,4452]],[[4453,-4007,-3530,-1447,4454,4455]],[[4456,-4009,-1416,-3538,4457]],[[4458,4459,-2733,-1487,-3550,4460]],[[-4033,-3576,-4039,-3574,-2813,4461,4462,4463,4464,4465,-1573,-3579,-1569,-3578,-1571,4466,4467,4468,-1574,-4029,-2770,4469,-3554,-2774,-1506]],[[-3588,4470,-1987]],[[-3606,-2844,-1589,4471,-3592,-2827,4472,4473,520,521,522,4474],[-1584]],[[4475,4476,4477,4478,-378,4479,4480,-3610]],[[4481,-3615,4482,4483,-4055,-3616,4484,3618,4485]],[[4486,-3621,-1614,4487,-1618,4488,534,535,536,-4067,-3649,-4066,-1664,4489,4490]],[[4491,4492,4493,-3623,-1619,4494]],[[-3631,-4058,4495,4496,4497]],[[-1634,-1977,-1640,4498,4499,-4059]],[[-4064,4500,4501,4502,-2868,4503,4504]],[[4505,4506,550,551,-1658,-3643,-2873,4507,-1654]],[[4508,-2881,-3651,-4069]],[[-3800,4509,-4074,-1958]],[[-2011,-541,-540,-539,4510,-37,-36,-2019,-4075,-2890,-3658,-2013,4511]],[[-1961,4512,-1700,-4083,4513,4514]],[[4515,-515,4516,-4084,-3669,-2898,4517]],[[-1731,-4096,-1733,-4093,-3683,-4090,-3688,-1723,4518,-1736,4519,-560,4520,-4126,-1812,4521,561,4522,4523,-4091]],[[4524,4525,4526,4527,-4094,-1727]],[[4528,4529,-3059,-3785,-3057,-3784,-1908,-575,4530,4531,-3700,-1754,-3692,-1747,4532,-383,-382,4533],[-3787,-3060]],[[-396,-4101,-2930,-3701,4534,4535,4536,4537,-331,-4108,-3705,-2931,-3704,-2934,-1761,-4107,4538,-4113,4539,-2953,-1768,-4105,-3715,-2954,-3714,-4104,-3719,4540]],[[4541,4542,-1779,4543,-4109,-329,4544,4545]],[[-346,-345,4546,4547,4548]],[[4549,580,4550,-4119,-4118,-3728,-4116]],[[4551,4552,4553]],[[-3010,-1850,4554,-3003,4555,-3780,4556,-4146,-1869,-4144,-3018,-3765]],[[4557,-1848,-3009,-4139,-1854,-3755,-3011,4558,4559,-3753,-1846,-3752,-4137,4560]]]},{"type":"MultiPolygon","id":"4","properties":{"density":4},"arcs":[[[-614,-3070,-619,-1914,-3794,-4154,-3797,-1953,-3071]],[[-1917,-3072,-1950,-3074,-3801,4561]],[[-3802,-3076,-1946,-1956,-2020,34,35,4562,4563,4564,4565]],[[22,4566,-2037,-3084,-630,-3804]],[[4567,-4175]],[[4568,-4183,4569,-3089]],[[-653,4570,-656,4571]],[[4572,-3809]],[[-3811,4573]],[[-4187,4574]],[[-3097,-676,4575,-4197,-712]],[[-669,-4194,105,-677,-3100,4576,-3813]],[[-3823,-3118,-3819,-12,-11,-10]],[[-700,-3822,-6,-5,-4199]],[[-3124,-1930,-3127,4577]],[[-3826,-4202,4578,4579,4580,-3129]],[[4581,-3829,-3132,-2077,-731,4582,-44,4583]],[[-4204,-3839,-4171,-3136,-3832]],[[4584,-4206,-3835]],[[4585,4586,-4208]],[[-3837,-4205,4587,-4172]],[[-4217,4588,-4233,-3153,-772,-4232,-3158,-4241,4589,-4212,-742,-2096,-3142,-745,-3141,-4211,-748,-3840,-3152,-2088,-3150]],[[-3850,151,152,-4236]],[[-4231,-3155,157,-3853,-778]],[[130,4590,-4242]],[[-4254,-3169,4591,-3856]],[[4592,4593,-3172]],[[-802,-2111,-3175,-795,-4267,4594,-4269,4595]],[[209,210,4596]],[[-3182,-823,4597]],[[-3193,4598,-4283,4599,4600],[-2136]],[[4601,4602,-163]],[[-3205,-847,-3208,4603,4604,4605],[-3203,-2148]],[[4606,228,-2155,4607],[-2153,-3209]],[[4608,-4301,-3213,-4297]],[[4609,261,262,-3253,-2341,-3250]],[[-3261,-2186,-3262,-2184,-927,-2188]],[[4610,-3879,-2171,-3268]],[[4611,-3271,-2166,-888]],[[-972,-4312,-3881,-967,-3230,-864,4612,-3242,4613]],[[293,294,-2374,-2373,-3883,-4311]],[[-992,-2393,-3300,-3893,-4325,4614,-3885,4615,4616]],[[-4318,4617,4618,-3900,-2404,-3304,-3897]],[[-4327,-3301,-1004,-3899]],[[-4328,-3906,-2418,-3905,-2412,-1019,-3875,-4330,312]],[[4619,4620,4621,-2236]],[[4622,4623,-4332]],[[-4334,4624]],[[-4339,4625,-4340]],[[-3907,-3908,4626,330,4627,-1027,-3913,-3315,-2425]],[[-3909,-2422,-3314,-3912,4628]],[[4629,-3914,-1025]],[[-1038,4630]],[[-4353,4631,-361,-360,-4348,-2438,-4347,-3330,4632,-4355,-358,-4354,-2972,-3731,-2976]],[[-3328,-4350,-3331,-3334,-3919,4633]],[[-3922,-4361,4634,-2442,-3338,-2446]],[[4635]],[[-4380,-3924,-2455,-4377,-3927,-2460,-4376,4636,4637,-3681,-4381,-3674,-2906,-3672,367,368,369,370]],[[-2454,-3345,-4378]],[[-4373,4638,-1064,-3349,-2474,-3352,4639,-3930,-2476,-3933,-4374,-1068],[2472]],[[373,4640,-4371]],[[-2479,-3355,-4382,-3935]],[[-4388,-2485,-3356,-2483,4641],[-1079]],[[-4100,-4196,-96,-95,-94,-93,-3690,-2914,-3691,-1741,-4097,-386,-4383,-3353,-1070,-4387,4642,-384,-4533,-1746,-2921]],[[-4399,4643,-4411,405,-4410,-3953,-3395,-4394,-4393,-3938,-1087]],[[-3946,400,4644]],[[4645,398,-3945]],[[-4401,-2284]],[[-3949,4646,425,426,-3372,-1105,-2508]],[[-1116,-4403,4647,-3364,-1119,-4404,-2204]],[[-1149,-3390,-1157,-4395,-3956,-3387,-1145,-119,-3952]],[[-1192,-2555,-3405,-2553,-3404,-3960,-1206,-3962,-1221,-3967,-4416]],[[-3406,-2569,-3407,-2560,-3408,-1178]],[[-3409,-2558,-1194,-4417,-1242,-423,-422]],[[-1209,469,470,-4423,-3990,-3438,-1263,-3971,-4421,-1227,-3965,-2577,-3964,-3479,-1305,-3413,-2544,-3961]],[[-4438,-1249,-2597,-3425,-4420,4648,4649,451,452]],[[4650,-3430,-3481,-1311,-4437,454]],[[4651,-4418,-2601,-3437,-3989]],[[-1393,4652,-478,-4425,-1274,-2611,-3446,-1267,-3973,-3441,475,-3440,-2721,-1402,-3527]],[[-3447,-1272,-3451,4653,-3987,-4422]],[[-3458,-3452,-2617,-3456,-4434,4654,-4431,4655,-1281,-3980,-1288,-2625,-2624]],[[-3466,-1290,-3979,-3464,-4262,4656]],[[-1296,-3471,-2632,-2636,-4263]],[[-3402,-2549,-3411,-3963,-1204,-2572]],[[-3488,-2677,-3486,-1319,-2671,-2669,495]],[[-3489,-3487,-2675,-1322]],[[-2647,-3495,-4170,-2686,-4169,-3996]],[[-3502,-3999,-2658,-3503]],[[-4181,4657,506,-3506,-1345,-3505]],[[-2725,-3536,-1425,-3535,-4011,4658,-260,-259,4659,-1414]],[[-4006,4660]],[[4661,4662,-4447,-4016,4663,-483,-4426]],[[-3516,-1375,-4002,-459,-3512,-2346,-4001,-1360]],[[-3541,-2756,-3544,-1475,-2748,-1461,4664,-1465]],[[-4470,-2769,-3551,-1478,-3545,-4026,-2749,-1474,-2763,-3559,-2761,-3561,-4032,-3556,-1520,-3555]],[[-2742,4665]],[[-3549,-1492,-2730,-1497,-3553,-4030,-1575,-4469,4666,-4461]],[[-4034,-1510,-4031,-1525,-3562]],[[4667,-4462,-2812,-1560,-3564,-1556,-3572,-2797,-4038,-1534,-4035,-4441]],[[-1570,-4466,4668,-4467]],[[4669,-1995]],[[-4473,-2826,-3596]],[[4670,-2835,-3590,-2829,-3593,-4472,-1591,-2843,-1588,-4351,4671,-2846,-4047],[-2845]],[[-2836,-3602,-4165,4672,-3594,-2824,-4166]],[[-4475,523,-3603,-4044,-3605]],[[-4481,4673,-1592,-2849,-3608]],[[4674,-4051,4675]],[[-1597,4676,-1600,4677]],[[-3614,-1605,-2854,-1610,4678,-4483]],[[-4477,4679,-4495,-1622,4680]],[[-4494,4681,-3624]],[[4682,-2004]],[[-3634,-2006,4683,-1651,-2009,-3633,-1642]],[[-4057,-1645,545,4684,-4496]],[[-4499,-1639,-3632,-4498,4685,4686]],[[4687,-4063,-3641,-2869,-4503]],[[4688,-4506,-1653,-4062]],[[-4504,-2867,-3653,4689]],[[-2012,-4512]],[[-3666,-1962,-4515,4690,-4367,-4076,-1964]],[[-1702,4691,-4518,-2897,-1704,4692,-4081,-3667]],[[-4365,-4086,-1715,-2903,4693],[-3676]],[[-4088,-4364,-3679]],[[-1735,-3689,-1737,-4519,-1725,-3687,-2911,-3686,-4095,-4528,4694,558,559,-4520]],[[-4524,4695,-4525,-4092]],[[-1738,4696,4697,4698]],[[-391,-2488,-90,4699,572,-392]],[[-4532,4700,-1750,-2922,-3698,-3699]],[[-4102,-394,4701,-3702,-2929]],[[-1766,-4114,-4539,-4106,-2938,-3708]],[[-2951,-4540,-4112,-3709]],[[-1782,-4110,-4544]],[[4702,-4111,-1780,-4543]],[[4703,-4547,-344]],[[-76,-75,585,-4189]],[[-3735,-4238,4704,-4239]],[[-1834,-3739,-4229,-2988,-4228,-1832,-4227,-4131]],[[-3745,-2998,-3744,-4221]],[[-4220,4705,-4222,-3748,-3747]],[[4706,-4158,-4134]],[[4707,-4554,4708,-312,-4151,-3040,-3781,-3038,-1895,-4150,-3047,-3776,-4556,-3004,-4555,-1849,-4558]],[[-3764,-1867,-1873,-3028,-4145,-4557,-3779,-4149,-3772,-1894,-3769,4709,4710,-4142,-3021],[-1875]],[[-303,-302,-301,-300,-3285,-1885,-4148,-3042,-308,-307,-306,-305,-304]],[[-583,-503,-502,-501,-500,-499,-498,-2668,-3050,-1900,-4529,4711,-584]],[[-593,-4153,-3790,4712,-4396,-594]]]},{"type":"MultiPolygon","id":"2","properties":{"density":2},"arcs":[[[-4576,-675,-3814,-4577,-3099,-678,107,25,26,-4048,-2847,-4672,-4359,-529,-4358,4713,-556,29,-4155,-3085,-2039,-641,-2035,-4567,23,-4198],[-1793,-3730]],[[-600,-1926,-4156,-608,4714]],[[-4588,-4210,4715,-55,4716,-4176,-4568,-4174,52,-4173]],[[4717,71,72,-446,-570,-412,-411,-4398,408,-442,-4397,-4713,-3789,-3788,-1808,-3062,-1806,-588,-587,-586,74,-4188,-4575,-4186,-79,-78,-4190,-4125,-1802,-3734,-4123,-1796,593,594,-440,-505,-504,582,4718,57,-4191,4719,66,67,68,69,-4246],[-3092,-2043,-645,-648,-2041,-651,-3805,-3090,-4570,-4182,-3812,-4574,-3810,-4573,-3808,-4185,-3093,-657,-4571,-652,-4572,-655,-4184,-4569,-3088,-2045]],[[323,324,325,4720,-4623,-4331,4721,-322,4722,-335,-4362,-3920,-3336,-1053,-4349,360,-4632,-4352,-4121,-1790,-4120,-4551,-581,-4550,-4115,-2958,-521,-4474,-3595,-4673,-4164,-4043,-4163,-88,-87,-4162,83,-4161,4723,338,4724],[3001],[-2957,-3720]],[[-46,4725,-4178,-47]],[[-381,236,-4298,-3211,-4303,-235,61,-4302,-4609,-4296,-3869,4726,-64,4727,-4192,59,-585,-4712,-4534]],[[-3166,-3857,-4592,-3168,-785,-4253,-4594,4728,4729,-4580,4730,110,4731,178,179,4732,-4255]],[[4733,-4584,-43,4734]],[[-404,-403,4735,-4406,4736,-4414,-123,4737,-3834,-4203,-121,-1144,-3955,-4412,-4644]],[[-4336,-3312,-4342,4738,-141,-140,-139,-138,-137,-136,-135,-134,-4215,-3845,-4214,-3842,-4213,-4590,-4240,-161,226,-4230,-4133,-4226,-3741,-2994,-1841,-4225,-230,-229,-4607,4739,-4604,-3207,-842,-3206,-2151,-3204,-4606,4740,-4602,162,163,4741,-217,-216,4742,-4492,-4680,-4476,-3609,-2850,-1593,-4674,-4480,-377,233,-166,4743,168,4744,-4243,-4591,131,4745],[-2157]],[[4746,-4234,-4589,-4216,142]],[[4747,-4250,4748,182,4749]],[[4750]],[[4751,4752,-4258]],[[4753,4754,-4270,-4595,-4266],[-793]],[[-4268,-799,-3176,-803,-4596,-4275,4755]],[[-832,199,4756,-4291,4757,-3866,-2143,-3200,4758,208,-4597,211,212,213,4759,-3192,4760,-4280,-3862,-4287,4761,-195,197,-831,-3197]],[[-3183,-4598,-826,-4279,4762,-4600,-4282,4763,-4285,-3860,-2126,-3184,-2117,-808],[-3865]],[[206,4764,-836,4765,4766,-4316,-2380,-3297,-2382,-3888,4767]],[[-4305,-850,-4304,248,4768]],[[-873,-3236,-2331,-3273,-952,-2334]],[[-4315,4769,4770,-3886,-4615,-4324,4771,-977,-3289]],[[4772,-3537,-1411,-4005,-1409,-2723,-1407,-4660,258,4773,4774,-4322,-993,-4617,4775,-257]],[[4776,315,4777,-4320,4778,-3306,-2401,-1014,-3903,-4329,-314,-313,-4709,-4553]],[[-2235,-3246,4779,-2232,-3276,-4310,4780,-4620]],[[-869,-3876,-3237,-2338,-3240,-4613]],[[-3247,-2162,-3215,4781]],[[329,-4627,-3910,-4629,-3911,-1032,-4631,-1037,-3320,-1046,-2433,4782,-4343,4783,328]],[[4784,345,346,4785,4786,4787,-4345,-3322,-1047,4788,4789,-244,-4300],[-3916]],[[-4360,-333,-320,-319,-318,-128,-3923,-126,4790,-3340,4791,352,353,354,-4356,-4633,-3329,-4634,-3918,-1057,-3339,-4635]],[[4792,4793,-1065,-4639,-4372,-4641,374],[-2463],[-2462]],[[-4379,-2448]],[[-3703,-4702,393,394,395,-4541,-3718,-4103,-4703,-4542,4794,-4548,-4704,-343,-240,-239,4795,-4391,-1081,-4390,4796,-4385,-4642,-2482,-3357,-1078,-3937,-4384,391,-573,4797,-4535],[-3358]],[[-4648,-4402,422,423,424,-4647,-3948,-3367,-2501,-3365]],[[-3382,-2306]],[[-400,-399,-398,4798,-1140,-4408,4799]],[[443,4800]],[[4801,-252,-251,4802,447,557,-4695,-4527]],[[-2620,-3454,-3992,-3467,-4657,-4261,4803,-4649,-4419,-4652,-3988,-4654,-3450,-4424,479,480,-4432,-4655,-4435]],[[-3477,-4429,-3461,-1282,-4656,-4430]],[[-190,4804,4805],[-3476,-3985,-2638,-3984]],[[-3968,-1217,-2642,-3431,-4651,455,-426]],[[-4180,-50,505,-4658]],[[-4098,-1751,-4701,-4531,574,575,576,577,-3786,-3054,-4530,-1899,-3783,-4152,-491,-2666,-3509,-4000,-2663,-3511,-4168,-510,-4167,-3600,4806,-104,-103,-102,-101,-100,487,-4195,-3695],[-2927,-1760]],[[-4691,-4514,-4082,-4693,-1707,-4085,-4517,514,515,-350,4807,-2687,-1347,-4369,-513,553,-4368]],[[-261,-4659,-4013,-4443,-4004,-3514,-1366,-3252,-262]],[[-4015,-4448,-4663,4808,4809,4810,4811,-4450,-4018,-1434,4812,-484,-4664]],[[4813,4813,4813]],[[-4446,-4453,-1442,-4020,-1438,-4023,4814]],[[4815,-4455,-1450,-4661,-4454,4816,4817,4818,-4444,-1418,-4010,-4457]],[[4819,4820,-487]],[[-1456,-2744]],[[-4440,4821,-4463,-4668]],[[-4465,4822,-184,4823,-4459,-4667,-4468,-4669]],[[-1981,4824]],[[-379,-4479,4825]],[[-4505,-4690,-2886,4826,-4490,-1663,-3645,-2876,-3647,-2878,-1665,533,-4489,-1617,-4488,-1613,-4054,-4484,-4679,-1609,-2855,-1607,-3613,4827,531,4828,-4501,-4065],[-4068,-3652,-2882,-4509]],[[4829,-4686,-4497,-4685,546,547,-4366,-4694,-2905,-3671,-1719,4830]],[[567,4831]],[[4832,-4697,-1739,-4699,4833,-566,570]],[[-4537,4536,4834]],[[-224,-223,-222,-221,-220,-219,-232,-4224,4835,-225],[-1845]],[[-4707,-4136,-4157,-82,-81,-39,-366,4836,-4159]],[[-552,4837,-4559,-3013,-3757,4838,-553]],[[-3768,-3032,-4147,-1889,-3771,-294,-293,4839,-4710]]]},{"type":"MultiPolygon","id":"0","properties":{"density":0},"arcs":[[[-4563,36,4840]],[[4841,-4565]],[[-4587,4842,-4735,-42,-56,-4716,-4209]],[[-4737,-4409,-1142,4843,4844,-729,4845,-4413]],[[191,4846,4847,-4820,4848,4849,-4805,189,4850,-4277,4851,-4271,-4755,4852,-4752,-4257,187,-4264,-3982,-4428,-3977,-4427,483,484,4853,-4811,4854,-4818,4855,193,194,195,196,-148,4856],[-3482],[-4451]],[[254,4857,4858,-4307,4859,253]],[[-3234,-2249]],[[-950,-2301,-3272,-2298,-3274,-2303]],[[-4317,-4775,4860,-4618]],[[-2328]],[[-4780,-3245,-2233]],[[-205,4861,-4770,-4314,-4767]],[[-978,-4772,-4323,-3890]],[[-3282,-2321]],[[285,286,-2311]],[[-2223,288,-3278]],[[-2247,-3235]],[[-3243,-2240,4862,-2242],[-2369]],[[-2312,-3277]],[[-3872,-852,-2159,-883,-2275]],[[-3216,-856,-3871,-2271]],[[-3220,-2263,-3226,-2261,-3224,-3873]],[[-3880,-2316]],[[-4621,-4781,-4309,-2229,4863]],[[-2551,-3401]],[[-1396,-3975,-1387,-2700]],[[-1627,4864,-2000]],[[4865,538,-3638]],[[3635,-3636,4866]],[[-4507,-4689,-4061,-4688,-4502,-4829,-532,-531,-213,-212,-211,-317,-316,-4777,-4552,-4708,-4561,-4138,-3750,-4560,-4838,-551]],[[4867]],[[4868]],[[4869]],[[4870]],[[-181,-180,4871,-564,-596,-341]],[[3761,-3762,4872]]]},{"type":"MultiPolygon","id":"1","properties":{"density":1},"arcs":[[[147,-197,-196,-4762,-4286,-4764,-4281,224,-4836,-4223,-4706,-4219,-2982,-4218,-4705,-4237,149,-3849,-4235,-4747,-143,-142,-4739,-4341,-4626,-4338,319,332,333,334,-4723,321,-4722,-4335,-4625,-4333,-4624,-4721,-326,-325,-324,-4725,-339,-4724,-4160,-4837,365,38,80,-4179,-4726,45,-4177,-4717,54,55,41,42,43,4873,4874,-192,-4857],[-4363,327,144],[-806,-805,-3859],[803,803,803]],[[-68,-67,-4720,-4193,-4728,63,-4727,-3868,-4295,242,243,-4790,4875,-183,-4749,-4249,-788,-4256,-4733,180,340,595,563,-4872,-179,-4732,-111,-4731,-4579,-4201,4876,4877,4878,-255,-254,-4860,-4306,-4769,-249,-248,-4308,-4859,4879,4880,4881,397,-4646,-3944,-4645,-401,-4800,-4407,-4736,402,-4400,-3942,-1084,-3940,-4392,411,569,445,-73,-72,-4718,-4245,-4127,-4521,-559,-558,-448,-4803,250,251,-4802,-4526,-4696,-4523,-562,-4522,-1815,-4248,-175,-4247],[-4415],[-444,-4801],[-4636],[-4751],[-568,-4832],[565,-4834,-4698,-4833,-571],[-3855]],[[-4586,-4207,-4585,-4738,122,123,-4846,-728,-3134,-3828,-4582,-4734,-4843]],[[-164,-4603,-4741,-4605,-4740,-4608,-2156,230,231,218,-4284,-4599,-3194,-4601,-4763,-4278,-4761,-3191,-822,-4760,-214,530,-4828,-3612,-4482,4882,-1604,-3611,-2852,-1601,-4677,-1596,-4053,4883,-4049,-4675,4884,4885,-4793,-375,-374,-373,-4370,-1352,-2688,-4808,349,-516,-4516,-4692,-1701,-4513,-4080,-1674,-4073,-4510,-3799,-31,-30,555,-4714,-4357,-356,-355,-1795,-353,-4792,-3341,-1059,-4791,125,126,127,317,-4337,-4746,-132,-131,-130,-4244,-4745,-169,-4744,165,-234,376,377,378,-4826,-4478,-4681,-1621,-3625,-4682,-4493,-4743,215,216,-4742],[-3161],[-3163,-3854]],[[-4251,-4748,4886]],[[-4260,-450,185,-4259,-4753,-4853,-4754,-4265,-4756,-4274,4887,183,-4823,-4464,-4822,-4439,-452,-4650,-4804],[-3174,-2110,-792]],[[256,-4776,-4616,-3884,-4771,-4862,204,-4766,-835,-4765,-207,-4768,-3887,-4321,-4778,316,-210,-209,-4759,-3199,-4758,-4294,-4293,-839,-4292,-4757,-200,-199,-198,-194,-4856,-4817,-4456,-4816,-4458,-4773],[-4290],[-837],[-4289,-202],[-4288]],[[-3281,4888]],[[4889]],[[-4319,-3895,-4326,-996,-3305,-4779]],[[-2417,-1021,-2406,-3901,-4619,-4861,-4774,259,260,-4610,-3249,-3877,-900,-3878,-4611,-3267,-942,-3269,-2168,-3270,-4612,-887,-3248,-4782,-3214,-2269,-3218,-2267,-3217,-2265,-3219,-1016]],[[-3227,305,-3228,-2253,-862]],[[-4299,-241,342,343,344,-4785]],[[-238,-237,380,381,382,383,-4643,-4386,-4797,-4389,-4796]],[[486,4890,-4849]],[[503,-3995,-1332,-3485,-2682,-3994,502]],[[-1433,-4449,-4812,-4854,-485,-4813]],[[-1392,-4442,-4815,-4022,-1440,-4021,-1445,-4025,-4452,-4445,-4819,-4855,-4810,-4809,-4662,-4433,-480,-479,-4653]],[[4813,4813,4813]],[[-4807,-3599,-4041,-2820,-3591,-2818,-3589,-2833,-4671,-4046,-26,-108,-107,-106,-105]],[[-3654,-2865,-3656,-4072,4891,-2888]],[[-4549,-4795,-4546,4892,-4786,-347]],[[-58,-4719,583,584,-60,-59]],[[4893]]]}]},"counties":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","properties":{},"arcs":[[0],[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]]}]}},"arcs":[[[18499,44899],[-38,-67]],[[18657,43678],[36,-8]],[[18693,43670],[20,-2],[35,-4],[39,-1],[53,-3],[34,7],[43,3],[12,-6],[9,-3],[77,-44],[76,-9],[24,1]],[[19115,43609],[66,50],[110,91]],[[19291,43750],[18,62]],[[19309,43812],[219,79],[97,221]],[[19625,44112],[8,4]],[[19633,44116],[160,155]],[[19793,44271],[60,56]],[[19853,44327],[42,29]],[[19895,44356],[-19,150],[77,47]],[[19953,44553],[197,-13],[179,147]],[[20329,44687],[737,68],[155,15],[298,194],[92,109]],[[21611,45073],[60,73],[-132,93]],[[21539,45239],[-6,71],[206,149],[167,57]],[[21906,45516],[110,106],[178,-42]],[[22194,45580],[21,-5]],[[22215,45575],[105,-26],[34,-8]],[[22354,45541],[150,-34]],[[22504,45507],[279,-68]],[[22783,45439],[105,-28]],[[22888,45411],[563,-139]],[[23451,45272],[710,-177]],[[24161,45095],[408,-106]],[[24569,44989],[705,-162],[630,-200],[21,19]],[[25925,44646],[-1,12]],[[25924,44658],[-14,769],[-8,416]],[[25902,45843],[-30,1696],[141,134],[187,60],[202,0],[75,239],[108,12],[121,129],[-27,79]],[[26679,48192],[-7,-4]],[[26672,48188],[-1910,-33]],[[24762,48155],[-1791,-48]],[[22971,48107],[-116,14]],[[22855,48121],[-123,119],[-231,70]],[[22501,48310],[-85,39]],[[22416,48349],[-97,53]],[[22319,48402],[-234,-130],[-48,62],[-224,5],[-207,-73],[-383,16],[-82,44]],[[21141,48326],[-19,12]],[[44840,35301],[57,68],[-117,175],[-70,210],[-146,46],[-1,293],[-57,250],[19,115],[184,106],[101,208],[19,161],[186,217],[12,131],[102,90],[-3,158],[131,20],[5,201],[-127,110],[-5,240],[-126,133],[75,254],[-52,60],[-237,67],[-85,-68],[-198,121],[141,289],[-268,133],[70,44],[-103,241]],[[44347,39374],[-291,-225],[-292,-177],[61,-145],[-69,-355],[-117,-61],[-387,19],[-163,106],[-297,57],[-126,147],[-215,53],[-480,258],[-1261,-795]],[[40710,38256],[-321,-233],[-181,89],[1,-661]],[[40209,37451],[3,-2033]],[[40212,35418],[377,-285]],[[40589,35133],[644,-487],[161,-59],[79,-134],[-24,-92],[192,-189],[-8,-94],[135,-47],[16,-214],[141,-28],[134,-116],[-104,-112],[87,-80],[-3,-136],[-111,-197]],[[41928,33148],[-122,-160]],[[40209,37451],[-502,147],[-523,2],[-245,-58],[-335,165],[-131,-25],[-143,105],[-231,3],[-122,51]],[[37977,37841],[-234,76],[-296,-16],[-164,58],[-68,-52],[-350,-79],[-199,125],[-167,160],[-365,-18],[-229,263],[-170,-3]],[[35735,38355],[-296,108],[-13,104],[-340,60],[-55,77],[-49,334],[-82,24],[-26,150],[-245,106],[-100,-6],[-244,141],[-440,104],[-113,106]],[[33732,39663],[-43,97],[-123,-21],[-298,48],[-94,-23],[-133,128],[-237,116],[-32,74],[-71,104],[-227,87],[-125,185],[-180,-88],[-235,90],[-154,-60],[-180,87],[-223,-81]],[[31377,40406],[-193,-518],[-99,-274]],[[31085,39614],[10,-908]],[[31095,38706],[1,-119],[12,-1165]],[[31108,37422],[213,-117],[98,63],[405,-74],[86,-68],[157,134],[153,-57],[79,-110],[168,64],[112,-183],[100,70],[129,-154]],[[32808,36990],[30,-35]],[[32838,36955],[94,27],[209,-107],[300,117],[221,-41],[396,141],[387,252],[174,28],[292,132],[459,0],[253,-87],[411,6],[243,-104],[430,-76]],[[36707,37243],[257,-24],[348,-142],[212,-34],[355,32],[172,-115],[235,-35],[114,-202],[222,-76],[236,-452]],[[38858,36195],[342,-51],[196,6],[167,-52],[52,-172],[175,-266],[-48,-172],[104,-101],[316,-34],[50,65]],[[22911,28928],[-123,232],[-156,142],[-114,283],[75,130],[103,317]],[[22696,30032],[-84,48]],[[22612,30080],[-82,137],[95,202],[137,97],[8,113],[-167,-24],[-25,85]],[[22578,30690],[158,145],[93,-12],[55,209],[108,87],[44,251],[181,61],[207,-38],[91,84],[-10,188],[133,143],[-20,222],[284,152],[-63,72],[-165,13],[-23,145],[-100,33],[-83,174],[94,171],[-54,146]],[[23508,32936],[-2138,-52],[-1898,-18],[-746,-18]],[[18726,32848],[-306,-171],[-336,-251],[12,-106],[-99,-172],[101,-231]],[[18098,31917],[-36,-95],[-225,-17],[-285,-253],[-216,-92],[57,-310],[-19,-163],[-107,-246],[45,-203],[151,25],[61,-65],[-43,-141]],[[17481,30357],[26,-168],[-157,-47],[-38,-138],[-142,-55],[-11,-139],[-184,-29],[-63,47],[-303,21],[-42,-53],[-534,-158],[-144,92],[-143,-41],[-139,-227],[-477,-361],[-235,-148],[2,-90],[-153,-201]],[[14744,28662],[104,-315],[126,-35],[102,-130],[-13,-97],[-182,-107],[-105,28],[-100,-87],[434,8]],[[15110,27927],[609,0],[1181,24],[1234,39],[2123,31],[530,8],[7,-305],[1198,32],[43,175],[-59,138]],[[21976,28069],[1127,20]],[[23103,28089],[136,-572],[59,-104],[3,-447],[-48,-199],[201,-250],[1,-35],[-834,-5],[-272,71],[-187,-57],[-79,-269],[108,-33],[-106,-114],[80,-94],[-1,-219],[155,-120],[-115,-154],[52,-154],[178,-44],[-85,-169],[-185,-32]],[[22164,25089],[352,-108],[33,-101],[147,-109],[-84,-180],[42,-164],[-100,120],[-98,-36],[35,-203],[-76,105],[-106,-42],[-102,-154],[-271,-195],[-70,-131],[85,-182],[-142,48],[-70,-52]],[[21739,23705],[-160,-140],[67,-189],[-111,-127],[98,-92],[29,-132],[152,-185],[-37,-42]],[[21777,22798],[1499,33],[101,-6]],[[23377,22825],[652,7],[-19,-41],[271,1],[252,-188],[48,-334],[205,-303],[219,-173],[522,27],[5,-153],[97,4],[-1,-305],[94,4],[3,-147],[164,-74],[2,-87],[122,-26],[8,-377],[87,-73],[707,10],[1,-78],[184,2],[95,-150],[262,6],[94,-78],[4,-200],[56,-33]],[[27511,20066],[302,6],[-10,380],[177,-1],[47,77],[33,238],[89,89],[-92,62],[-55,209],[-168,-5],[-4,227],[-87,-2],[-2,157],[-92,-2],[-9,297],[89,4],[-5,303],[-89,-2],[-12,305],[88,3],[-2,151],[-155,1],[-24,152],[177,1],[-14,306],[121,3],[3,88],[172,3],[-2,78],[178,2],[3,155],[89,5],[-1,154],[93,1],[81,1],[-3,155],[130,3],[12,149],[212,81],[85,82],[-11,147],[165,-10],[0,153],[159,4],[24,148],[174,0],[0,153],[174,2],[16,267],[170,6],[0,154],[180,-1],[-2,153],[76,2],[72,150],[175,2],[-7,301],[189,3],[2,74],[176,3],[79,187],[113,64]],[[30790,25944],[-28,126],[-262,-2],[2,190],[-322,49],[-83,72],[-4,304],[-90,71],[-245,-4],[3,-73],[-520,-5],[1,143],[-347,-1],[4,-79],[-266,4],[-7,229],[-91,230],[-223,112],[-57,239],[90,175],[-238,173],[-52,255],[-78,180],[-271,183],[-68,106],[-258,21],[-116,71],[-263,-32],[-113,166],[-414,-15],[-317,136],[-95,-60],[-189,26],[-158,-123],[-124,247]],[[25591,29058],[-58,-107]],[[25533,28951],[-403,1],[-138,-2]],[[24992,28950],[-1045,-2]],[[23947,28948],[-1036,-20]],[[22911,28928],[32,-198],[108,-191],[-47,-138],[68,-81]],[[23072,28320],[85,-125],[-54,-106]],[[40710,38256],[-96,93],[-362,96],[-191,128],[-449,72],[-394,236],[-278,468],[-226,160],[-80,168],[-325,296]],[[38309,39973],[-186,278],[-9,104],[-157,100],[-232,359],[-89,197],[-92,19],[-247,285],[-114,289],[-196,118],[-68,241],[-153,86],[-1,130],[-108,18],[-111,216],[-152,229],[66,48],[-281,6],[-78,75]],[[36101,42771],[-87,132],[-67,-133],[-174,154],[58,76],[-125,39]],[[35706,43039],[123,28],[102,112],[25,126],[-85,45]],[[35871,43350],[-111,48],[-24,185],[-243,151],[-99,193],[-139,-13],[-209,236],[-239,127],[-35,125],[-149,181]],[[34623,44583],[-6,-4],[-870,-857],[-77,-114],[-761,-748],[-188,-165]],[[32721,42695],[-224,-208],[-404,-445],[-73,-71]],[[32020,41971],[-118,-115],[-441,-1230]],[[31461,40626],[-84,-220]],[[19142,41964],[233,-33],[181,34]],[[19556,41965],[122,18]],[[19678,41983],[180,36],[104,29],[152,185],[74,36]],[[20188,42269],[123,20]],[[20311,42289],[161,-28]],[[20472,42261],[334,-137]],[[20806,42124],[335,-139],[102,22]],[[21243,42007],[211,15],[393,-74]],[[21847,41948],[97,2],[251,141],[214,76],[190,24]],[[22599,42191],[326,-54],[121,-159]],[[23046,41978],[196,151],[129,256]],[[23371,42385],[101,69],[150,1]],[[23622,42455],[119,36],[358,-56],[184,-47]],[[24283,42388],[318,-166],[179,-166],[27,-295],[168,-64],[226,103],[105,-127],[216,-13],[237,61]],[[25759,41721],[64,214]],[[25823,41935],[-90,60],[-28,341],[119,-55],[135,258],[-146,0],[-60,132],[92,17],[-132,197],[23,83]],[[25736,42968],[139,173],[-35,112],[111,275],[-89,52]],[[25862,43580],[-70,142],[23,146]],[[25815,43868],[-95,194],[157,202],[93,-79],[179,119],[-81,173],[-68,-3],[-75,172]],[[8963,196],[-189,188],[29,287],[-203,258],[-2,167],[-111,112],[-244,-30],[-206,249],[-93,-82],[-161,-19],[-97,111],[6,204],[-195,146],[1,100],[-110,-21],[-192,74],[112,280],[154,81],[-15,101],[-134,49],[71,451],[108,71],[45,192],[-98,251],[-191,209],[3,176],[64,199],[-148,-4],[-140,194],[-83,205],[336,18],[-65,147],[61,91],[-120,153],[93,148],[118,-5],[197,102],[114,651],[183,126],[-11,138],[-96,168],[-248,116],[82,145],[-162,121],[-56,137]],[[7370,6651],[-997,-19],[38,-877],[-865,-28]],[[5546,5727],[-187,-26],[-1429,-40]],[[3930,5661],[-215,-8]],[[31108,37422],[-395,-1051],[-81,-267]],[[30632,36104],[-56,-158]],[[30576,35946],[-1,-3]],[[30575,35943],[-37,-86],[-143,-342],[-3,-8],[-49,-117],[-73,-177]],[[30270,35213],[-138,121],[-75,-69]],[[30057,35265],[61,0],[169,-481],[-16,-84],[157,-207],[53,-229],[-28,-85],[155,-10],[-36,-147]],[[30572,34022],[143,-127],[145,-47],[-31,-135]],[[30829,33713],[83,-88],[-81,-139],[170,-97],[-82,-99],[120,-161],[28,-1]],[[31067,33128],[337,-21],[96,-97],[247,-54],[79,-68],[136,37]],[[31962,32925],[45,2],[-13,-282],[133,6],[248,92],[91,-65],[298,79],[93,-258],[143,53],[44,-162],[166,-134],[134,44],[328,-125],[260,81],[62,-35],[124,183],[112,59],[188,-84],[7,227],[103,97],[286,151],[280,15],[55,83],[119,-8],[146,206],[138,32],[173,-73],[7,-63],[313,-46],[196,-147],[54,-129]],[[36295,32724],[144,-84],[164,-309],[111,-293],[67,-57],[1014,64],[830,-11],[2,-76],[528,0]],[[39155,31958],[8,-78],[175,-1],[115,-77],[-1,-153],[89,-73],[206,0]],[[39747,31576],[1130,-1]],[[34239,54083],[300,-238]],[[34539,53845],[615,5],[3,-306],[50,-101],[-128,-78]],[[35079,53365],[557,-481]],[[35636,52884],[36,110],[-75,68],[354,212],[90,271],[153,117],[82,335],[125,123]],[[36401,54120],[115,174],[-161,199],[126,121],[-26,189],[172,89],[159,151]],[[36786,55043],[114,2],[94,186],[114,-21],[189,149],[-45,106],[49,164]],[[37301,55629],[241,-16],[-64,-96],[496,193],[-59,74],[325,-39],[175,42],[250,5],[-42,-95],[156,-105],[149,-14],[130,144],[197,-285]],[[39255,55437],[130,49],[183,-110],[374,-61],[183,-108],[85,71],[127,-45]],[[40337,55233],[289,89],[144,-145],[220,-25],[108,-96],[127,76],[225,-16]],[[41450,55116],[109,-98],[257,-72]],[[41816,54946],[153,-15],[52,-74],[186,111],[89,-43]],[[42296,54925],[157,-94],[37,76],[176,59]],[[42666,54966],[61,-48]],[[42727,54918],[27,-105],[163,-144]],[[42917,54669],[77,-90],[-43,-126],[161,-231],[136,-18],[112,-192]],[[43360,54012],[131,-84],[-89,-80],[22,-171],[265,-226]],[[43689,53451],[76,-86]],[[43765,53365],[141,-129],[193,28],[120,-43],[-9,-270],[195,-47],[100,91],[-68,116],[150,-36],[99,-197],[-29,-54],[81,-213],[408,71],[37,-253],[162,-78],[40,-120],[-104,-105],[-179,10],[32,-236],[154,-57],[237,150],[62,-188],[100,-37],[162,126],[-28,144],[88,148],[125,3],[81,-356],[269,-30],[17,-154],[237,2],[87,120]],[[46725,51771],[128,2],[115,-157],[135,-56],[0,-115],[168,-91],[121,-177],[-35,-186],[23,-172],[79,-56],[-15,-215],[-72,-85],[46,-202],[-81,-201],[189,-149],[-86,-118],[118,-29],[-1,-137],[245,-236],[2530,-2241]],[[50332,47150],[196,152],[169,38],[77,110],[234,-97],[224,176],[120,-16]],[[51352,47513],[158,200],[170,115],[21,104],[203,90],[37,232],[66,39],[336,-131],[190,-8],[205,265]],[[52738,48419],[115,67],[39,221],[-75,127],[-118,22],[-95,292],[217,344],[-97,31],[-80,159],[78,95],[204,55],[174,141],[231,-139],[304,394],[32,105],[168,203],[-186,194],[-15,161],[108,144],[-57,91],[146,159],[27,125],[-77,102],[50,137],[127,142],[143,47],[254,-64],[220,65],[80,148],[137,-4],[7,77],[365,39]],[[55164,52099],[188,191],[85,-27],[164,186],[189,110],[188,-24],[118,119],[-33,180],[168,150],[-48,147],[156,141],[-75,95],[109,92],[60,221],[66,22],[363,729],[-84,187],[76,91],[10,169],[-95,98],[-178,20],[0,154],[174,264],[-70,131],[113,335],[87,57]],[[56895,55937],[-1902,27],[6,59],[-1911,20],[-2260,1],[-11,890],[-1012,5],[-845,-7]],[[48960,56932],[-562,-15],[-706,5]],[[47692,56922],[2,451]],[[47694,57373],[1,465],[-131,-1],[-396,-3]],[[47168,57834],[-176,-2]],[[46992,57832],[-364,-3]],[[46628,57829],[-161,1]],[[46467,57830],[-4,1]],[[46463,57831],[-261,-1]],[[46202,57830],[-83,1],[-230,196]],[[45889,58027],[-585,519]],[[45304,58546],[-226,200]],[[45078,58746],[-908,740],[-52,-128],[-151,56],[-177,-14],[-66,81],[-345,34],[-59,153],[-443,-1],[-1578,13]],[[41299,59680],[1,155]],[[41300,59835],[-8,76],[11,1277],[0,26]],[[41303,61214],[1,780],[-1370,1125]],[[39934,63119],[-669,545]],[[39265,63664],[-1473,1216]],[[37792,64880],[-91,-18],[-119,-150],[6,-148],[-203,-116],[-38,-172],[-280,-52],[-194,-72],[-242,73],[-163,-206],[-272,-132],[-12,-98],[-400,-181],[-102,30],[28,-120],[-132,-11],[-49,-100],[-208,-73],[-249,-195],[24,-193],[-106,-126],[-115,66],[-291,-65],[-67,-72],[-67,-251],[-89,-90],[-29,-214],[50,-111],[82,37],[99,-123],[66,-191],[110,-59],[-534,-511],[87,-66],[-55,-102]],[[34237,61068],[60,-138],[-98,-148],[237,-228],[282,-5],[329,-121],[0,-662]],[[35047,59766],[7,-1021],[-64,-1],[-1416,-1242],[-1032,-899]],[[32542,56603],[-606,-538]],[[31936,56065],[2303,-1982]],[[15110,27927],[-7,-548],[91,-162],[17,-462],[-34,-147],[34,-759],[-346,4],[-1059,-34]],[[13806,25819],[19,-323],[-51,-129],[11,-906],[-189,-3],[18,-415],[-243,-6],[26,-527]],[[13397,23510],[415,1],[5362,126]],[[19174,23637],[426,9]],[[19600,23646],[899,37],[507,10],[733,12]],[[7370,6651],[1438,43],[96,56],[174,124],[-83,130],[34,273],[124,109],[62,264],[-61,109],[133,70],[26,281],[-121,128],[158,114],[15,139],[160,177],[73,182]],[[9598,8850],[-94,155],[-133,21],[27,111],[-19,358],[-170,301],[-166,-43],[-2,170],[163,159],[203,44],[21,243],[115,51],[3,187],[-130,29],[-76,223],[-113,174],[-137,72],[77,109],[-37,107],[-184,53],[-138,240],[-277,-65],[-159,-158],[-273,-171],[-118,137],[-182,94],[-281,-55],[52,188],[85,100],[-23,89],[141,307],[100,-1],[57,259],[83,16],[34,135],[-86,95],[110,124],[-8,158],[-85,-30],[136,221],[-30,285],[65,168],[-10,141]],[[8139,13651],[-59,1335]],[[8080,14986],[-40,987]],[[8040,15973],[-74,1656],[-41,1077],[-113,2493]],[[7812,21199],[-2228,-76]],[[5584,21123],[-2240,-72]],[[80948,98789],[-9,-272]],[[80939,98517],[-40,-861],[26,-1],[-45,-812],[-64,-1505],[-66,-1339],[226,-10],[-90,-1683],[-92,-1244],[-36,-761]],[[80758,90301],[256,-9]],[[81014,90292],[341,-16],[963,-37]],[[82318,90239],[2587,-108]],[[84905,90131],[2136,-83],[-1,-15],[1269,-49],[1032,-49],[1812,-76],[1304,-78],[1057,-51],[-2,-38],[654,-32]],[[94166,89660],[1417,-66]],[[52738,48419],[2507,-27],[1605,-24],[4038,-87],[142,-10]],[[61030,48271],[813,-12]],[[83871,65061],[-865,40],[7,163],[-3176,115],[-125,10],[-2088,73],[-6490,179]],[[71134,65641],[-3262,90],[-978,23],[-2613,37]],[[64281,65791],[-2142,36],[-529,9]],[[61610,65836],[-208,4],[16,119],[-839,-9]],[[60579,65950],[6,-775],[70,-66],[170,17],[-79,-134],[58,-170],[-80,-211],[64,-113],[-90,-180],[-148,-26],[-116,-151],[139,-242],[-87,-152],[-215,-108],[-45,-219],[-146,-311],[14,-182],[-80,-155],[-96,-18],[19,-178],[-93,-301],[128,-115],[-22,-258],[-119,-158],[-282,-200],[-76,-174],[38,-86],[-145,-229],[16,-165],[-98,-88],[-3,-216],[160,-105],[-39,-98],[159,-128],[-30,-158],[-202,-39],[-106,-215],[-218,-89],[-71,-149],[191,-106],[20,-153],[-190,-151],[-173,65],[-184,5],[-206,-78],[45,-83],[-65,-153],[-142,-80],[-188,-229],[135,-78],[-64,-66],[18,-249],[-77,24],[-55,-217],[-132,-97],[-248,-69],[-39,-187],[47,-153],[139,-72],[-221,-102],[-50,-113],[-187,-91],[-47,-211],[-123,-79],[78,-125],[-178,-58],[-60,-122],[-127,-80],[189,-53],[115,-97],[-53,-247],[-207,-163]],[[64281,65791],[14,920],[-175,4],[5,307],[358,-8],[7,306],[-172,12],[-2,300]],[[64316,67632],[7,307]],[[64323,67939],[11,308],[46,0],[32,1121]],[[64412,69368],[-32,71],[54,1037],[35,1107],[46,1577],[-24,1],[20,538]],[[64511,73699],[26,665]],[[64537,74364],[51,1695],[-353,5]],[[64235,76064],[-1071,14]],[[63164,76078],[-2491,60],[-1166,35]],[[59507,76173],[-1863,41]],[[57644,76214],[-2613,54]],[[55031,76268],[-2668,34],[-1,155],[-227,1],[-47,-154]],[[52088,76304],[-128,0]],[[51960,76304],[136,287]],[[52096,76591],[-955,9],[-3,-227],[-470,3]],[[50668,76376],[-2200,-2],[-5,-457],[-347,5],[12,-236],[-1054,6],[1,-223],[-602,-1]],[[46473,75468],[-304,3]],[[46169,75471],[-1,-387],[-10,-1464],[-180,-4],[0,-152],[-701,46],[68,-972],[-231,1]],[[45114,72539],[-898,57],[0,-924],[-1421,-8],[-1,-919],[-703,-3],[-1,-926],[-333,-1],[-831,-2],[0,-308],[-181,-4],[10,-154],[-186,0],[1,-158],[-176,0],[-2,-148],[-175,-1],[2,-142],[-178,-3]],[[40041,68895],[8,-927],[-1069,0],[2,-1842]],[[38982,66126],[1870,6],[1342,-5]],[[42194,66127],[1493,-15],[1776,2]],[[45463,66114],[1807,-16]],[[47270,66098],[336,-2]],[[47606,66096],[173,-2]],[[47779,66094],[444,-4]],[[48223,66090],[58,0],[118,-1],[176,-2]],[[48575,66087],[1677,-16]],[[50252,66071],[2467,-20]],[[52719,66051],[1716,-12],[1213,-17],[373,-36],[924,12],[3211,-61],[423,13]],[[45078,58746],[451,-2],[-11,921],[529,3],[-1,111],[1,662],[12,314]],[[46059,60755],[-1,304],[-537,-7],[6,777],[4,614],[-71,1]],[[45460,62444],[5,765]],[[45465,63209],[2,153]],[[45467,63362],[3,458]],[[45470,63820],[-11,764],[4,1530]],[[38982,66126],[-196,-1]],[[38786,66125],[-65,-319],[-236,-47],[-129,-206],[18,-129],[155,-107],[-30,-124],[-319,-298],[-388,-15]],[[18726,32848],[-603,-24]],[[18123,32824],[-180,253],[145,220],[141,134],[-41,38]],[[18188,33469],[-87,89],[201,234],[76,179],[-61,156],[-176,-24],[-141,189],[85,137],[-124,49]],[[17961,34478],[-476,652]],[[17485,35130],[-1566,361]],[[15919,35491],[20,-72],[-128,-158],[-61,-182],[-245,-7],[-184,-53],[-80,-191],[-89,-36],[-6,-198],[-78,-31],[-123,-194],[-132,-173],[1,-173],[-219,-188],[-177,-99],[-40,-91],[-121,22],[-118,-146]],[[14139,33521],[5,-81],[-178,-6],[4,-84],[-175,-3],[10,-78],[-178,-3],[-19,-82],[-150,-4],[12,-154],[-165,-1],[2,-67],[-356,4],[8,-265],[-195,-82],[21,-145],[-89,-5],[16,-381],[-85,-65],[4,-89],[-392,-3],[-257,-266],[12,-303],[-84,-37]],[[11910,31321],[2,-63]],[[11912,31258],[-258,-142],[-2,-246],[87,2],[-7,-454],[89,-1],[17,-369],[302,11],[60,-187]],[[12200,29872],[156,-161],[38,-142],[79,-1],[4,-160],[168,7],[12,-219],[-86,-9],[-1,-219],[-142,-2],[16,-461],[-85,-3],[6,-156],[-85,2],[9,-291],[-101,-5],[16,-153],[-90,-3],[19,-304],[-177,-6],[37,-474],[95,5],[18,-537],[170,4]],[[12276,26584],[9,-80],[179,5],[5,-79],[831,47],[5,-151],[435,29],[66,-536]],[[40888,24676],[-136,0],[0,144],[-1034,-2],[-198,12]],[[39520,24830],[6,-303],[177,3],[1,-156],[80,-1],[-4,-153],[84,-1],[26,-300],[-1,-917],[82,1],[-2,-307],[-87,0],[1,-307],[-166,-1],[-1,-86],[-171,-153],[-174,-68],[3,-159],[-92,-1],[2,-152],[-88,-2],[0,-156],[-175,-2],[0,-308],[-89,0],[13,-456],[-348,2],[2,-233],[-176,1],[-88,-74],[-618,-7],[0,-77],[-179,0],[3,-74],[-177,0],[3,-116],[-179,-2],[-90,-71],[4,-156],[-86,-77],[-181,-2],[-89,-77],[7,-153],[-83,0],[-60,-152]],[[36610,19577],[-206,-1],[5,-151],[-72,-2],[-14,-153],[-176,1],[-1,-150],[-176,-4],[1,-74],[-176,-1],[0,-77],[-261,-4],[1,-228],[-428,-5],[2,-77],[-184,-19]],[[34925,18632],[-89,-136],[-690,-13],[-1,-79],[-352,-3],[-89,153],[-209,-1]],[[33495,18553],[1,249],[-174,-3],[-4,75],[-175,-1],[-4,153],[-179,150],[-173,0],[-5,445],[-176,-2],[-1,77],[-353,-1],[7,-153],[-178,-2],[11,-150],[-536,-7],[0,-147],[-239,-1],[-111,0],[3,-229],[-186,-1],[27,-2001],[-1749,-13]],[[29301,16991],[-723,-1]],[[28578,16990],[19,-550],[34,1],[16,-919]],[[28647,15522],[21,-737]],[[28668,14785],[25,-1090],[22,-1369],[14,-181],[-114,4],[13,-161],[39,-2768]],[[28667,9220],[1110,6],[3016,34],[920,7],[5268,23],[1920,3]],[[64235,76064],[27,928]],[[64262,76992],[55,1857]],[[64317,78849],[67,0],[21,623]],[[64405,79472],[18,495],[61,571]],[[64484,80538],[0,3],[66,609]],[[64550,81150],[56,524],[-279,1311]],[[64327,82985],[-41,115]],[[64286,83100],[-10,41],[-55,192],[-41,114]],[[64180,83447],[-56,157]],[[64124,83604],[-44,125]],[[64080,83729],[-4,11],[-49,128]],[[64027,83868],[-11,26],[-15,38],[-7,18],[-30,78],[-27,76],[-1,2],[-25,78],[-20,77]],[[63891,84261],[-33,119],[0,1],[-17,129],[-154,17]],[[63687,84527],[-1,0],[-226,-32]],[[63460,84495],[8,104]],[[63468,84599],[-25,95]],[[63443,84694],[-99,1],[-112,108]],[[63232,84803],[-108,261]],[[63124,85064],[93,126],[108,119]],[[63325,85309],[-861,22]],[[62464,85331],[-328,5]],[[62136,85336],[-150,-7],[-93,13],[-69,0]],[[61824,85342],[-190,4],[-145,2]],[[61489,85348],[-117,65]],[[61372,85413],[0,2],[3,123],[0,1],[3,113]],[[61378,85652],[3,154],[-90,3],[3,74]],[[61294,85883],[-139,81],[-1,0],[-33,58]],[[61121,86022],[-85,99],[-176,4]],[[60860,86125],[3,75],[-175,82],[-41,85],[-42,48],[-40,2],[-3,0],[1,77],[-42,77],[2,77],[-42,71]],[[60481,86719],[-12,0],[-126,121]],[[60343,86840],[-28,31]],[[60315,86871],[-28,86],[-60,104]],[[60227,87061],[-37,120]],[[60190,87181],[58,151]],[[60248,87332],[-138,94]],[[60110,87426],[-72,42],[-19,14]],[[60019,87482],[-15,21]],[[51561,84442],[37,-311],[487,-319]],[[52085,83812],[357,-235]],[[52442,83577],[231,-151]],[[52673,83426],[185,-122]],[[52858,83304],[260,-170]],[[53118,83134],[1,0]],[[53119,83134],[305,-2]],[[53424,83132],[30,-1],[271,-1]],[[53725,83130],[255,-10]],[[53980,83120],[356,0],[-1,-90]],[[54335,83030],[-2,-78],[0,-238]],[[54333,82714],[-3,-176],[-1,-139]],[[54329,82399],[-1,-39],[355,-5]],[[54683,82355],[-1,-16]],[[54682,82339],[-3,-137]],[[54679,82202],[-9,-141]],[[54670,82061],[-2,-12]],[[54668,82049],[0,-3]],[[54668,82046],[-37,-231],[-162,-331]],[[54469,81484],[-191,-390]],[[54278,81094],[-232,-475]],[[54046,80619],[-349,-717]],[[53697,79902],[-126,-256]],[[53571,79646],[-853,-1747]],[[52718,77899],[-622,-1308]],[[35636,52884],[634,-544],[680,-150],[59,-72]],[[37009,52118],[154,-72],[210,52],[214,-50],[163,-124],[186,-47],[144,-121],[160,3],[406,-81],[49,-37],[315,4],[238,-30],[620,-11]],[[39868,51604],[113,-57],[414,-111]],[[40395,51436],[1702,-1500]],[[42097,49936],[1106,-969],[309,-8]],[[43512,48959],[761,-3],[-1,-296]],[[44272,48660],[-1,-162],[345,-3],[2,-350],[298,-1],[3,-692],[2631,-2308]],[[47550,45144],[151,105],[50,241],[188,60]],[[47939,45550],[108,153]],[[48047,45703],[179,-31],[90,106],[132,33],[170,-238],[265,-17],[222,54],[233,-8],[136,90],[162,221],[212,155]],[[49848,46068],[60,44],[106,414],[214,152],[-14,285],[118,187]],[[12206,39316],[79,-107],[250,-43],[30,-65],[183,66],[113,-26],[127,60],[56,-121],[90,5],[603,477],[950,754],[161,3],[175,96]],[[15023,40415],[378,123],[146,73],[436,12],[26,-45]],[[16009,40578],[80,-36],[261,76],[58,214],[139,45],[231,198],[99,231],[162,92]],[[17636,44009],[4,35]],[[40395,51436],[-98,-156],[-301,-261],[-490,-175],[-268,-185],[-119,-146],[11,-220],[-201,-231],[-164,-303]],[[38765,49759],[-239,-364],[-199,-255],[-177,-328],[92,-126],[-87,-203]],[[38155,48483],[-145,-274],[-119,-89],[-74,-254]],[[37817,47866],[-22,-32],[-633,-1151]],[[37162,46683],[0,-4]],[[37162,46679],[121,-194],[-193,-212],[33,-119],[247,30],[105,56],[283,281],[155,-74],[34,-103],[-304,-458],[-70,-165],[125,-50],[112,36],[129,-99],[205,62],[37,-164],[230,103],[50,-159],[77,2]],[[38538,45452],[72,-155],[105,52],[249,-29],[170,-124],[-50,-56],[141,-202],[118,127],[336,59],[364,-320],[-3,-112],[91,-62],[216,51],[21,113],[186,56],[90,-42],[271,165],[322,141],[194,189],[285,24],[79,49],[213,-29],[198,-120],[115,146]],[[42321,45373],[139,-127],[275,160],[224,-115],[337,-79],[48,-102],[348,-112],[115,41],[62,-105],[233,-19],[127,-97],[29,-110],[-66,-140],[110,-134],[346,-68],[228,-202],[-2,-188],[197,-123],[306,-14],[99,170],[82,24],[103,156],[198,53],[95,93],[110,-136],[200,9],[-7,81],[153,-74],[47,95],[141,29],[26,186],[202,7],[303,105],[-25,153],[321,186],[92,-2],[33,170]],[[7812,21199],[-13,262],[908,27],[1075,32],[3717,97]],[[13499,21617],[64,74],[-9,276],[124,101],[-76,201],[-279,84],[16,144],[-73,414],[-61,98],[121,127],[17,336],[54,38]],[[14139,33521],[-1146,-33],[-822,-47]],[[12171,33441],[-490,-10],[-3,54]],[[11678,33485],[-5,94],[-525,-26],[-9,319],[-974,-22]],[[10165,33850],[-283,-6]],[[9882,33844],[-946,-11],[-11,312],[-1240,-50]],[[7685,34095],[-218,199],[-115,-107]],[[31936,56065],[-145,-122],[-2015,-913],[-66,-181]],[[29710,54849],[-40,-125],[-104,-40],[-55,-170],[-143,-118],[6,-123],[-139,-67],[-226,40],[-127,-177],[88,-184],[140,-132],[-35,-44]],[[29075,53709],[-161,-82],[-132,-151],[9,-104],[118,-66],[0,-131],[-121,-147],[211,-147],[14,-187],[100,26],[35,-138],[-128,-60],[-192,-201],[123,-44],[2,-84],[129,-189],[-90,-125]],[[28992,51879],[42,-38]],[[29034,51841],[1692,-1438]],[[30726,50403],[412,-360]],[[31138,50043],[346,-289]],[[31484,49754],[83,-74],[-113,-38],[-56,-383],[-110,-27],[90,-118]],[[31378,49114],[605,-271]],[[31983,48843],[964,-392]],[[32947,48451],[71,-36]],[[33018,48415],[1300,-536]],[[34318,47879],[799,-337]],[[35117,47542],[2045,-859]],[[28667,9220],[-1053,-9]],[[27614,9211],[44,-2581],[-19,-4],[31,-2019],[13,-372],[18,-1256],[-72,0],[30,-1824],[88,-6],[8,-489]],[[47939,45550],[137,-79],[109,-238],[209,-106],[190,-267],[-152,-151],[123,-118],[-28,-84],[102,-66],[-186,-31],[11,-258],[120,-175],[-371,-248],[-248,-19],[14,-134],[-230,-67],[-198,-144],[-139,-255],[119,-318],[49,-240],[-77,-229],[-98,-44],[-16,-116],[-95,-45],[-153,-213],[-292,-72],[-162,-150],[-258,-5],[-47,-85],[-109,113],[-1,97],[-223,-27],[15,-114],[-95,-73],[23,-128],[-183,-41],[-7,-118],[-122,-167],[-44,234],[-236,-77],[-156,6],[18,-95],[-297,-48],[-98,-286],[-113,34]],[[44744,40903],[-111,-92],[-218,-88],[60,-61],[18,-253],[193,-67],[-171,-188],[83,-91],[-366,-265],[85,-76],[-23,-293],[53,-55]],[[23260,54795],[88,-61],[-15,-115],[164,-182],[141,15]],[[23638,54452],[213,-222]],[[23851,54230],[57,-43]],[[23908,54187],[194,-50],[68,41],[183,-93],[22,85],[162,91],[191,-112],[164,215]],[[24892,54364],[10,214],[117,177],[76,116],[236,96],[355,341]],[[25686,55308],[526,499],[223,-62]],[[26435,55745],[109,208],[110,49],[82,172],[-101,74],[-225,45],[143,237],[242,189],[126,-57],[155,61],[80,181],[280,37],[118,-38],[127,77],[199,309],[134,111],[-54,80],[-1,258],[-103,35],[48,208],[148,53],[118,131]],[[28170,58165],[55,111],[-117,107],[-48,148],[292,4],[372,-40],[198,365]],[[28922,58860],[63,-16],[185,202],[40,99],[707,617],[772,682],[-3,557],[129,-41],[2,162],[112,-85],[223,-19],[101,-223],[91,11],[196,165],[141,-91],[61,-172],[132,-117],[203,110],[95,110],[103,-52],[134,30],[242,170],[103,205],[184,60],[-15,69],[224,109],[165,157],[107,178],[172,46]],[[33591,61783],[122,-46],[127,72],[121,-72],[-1,-253],[-107,-341],[-139,-163],[-107,-240],[-149,-112],[115,-16],[235,187],[243,104],[186,165]],[[38786,66125],[-366,2],[-4653,-43]],[[33767,66084],[-93,0]],[[33674,66084],[-3784,-55],[-697,-17]],[[29193,66012],[-1594,-29]],[[18188,33469],[90,126],[342,180],[215,-99],[101,70],[260,1],[124,324],[130,208],[81,367],[137,161],[126,476],[113,0],[82,131],[-37,64],[186,215],[141,22],[29,136]],[[20308,35851],[-56,134],[39,127],[140,-77],[190,372],[163,632],[75,183]],[[20859,37222],[-2,13],[-19,225],[-190,451],[-32,197],[76,157],[267,316],[144,253],[107,332],[-37,144]],[[21173,39310],[-659,-10],[-607,-12]],[[19907,39288],[-82,-2],[59,150]],[[19884,39436],[-42,90],[138,228],[-228,-18],[-47,110],[191,45],[13,82],[-151,-19],[138,232],[14,178],[-113,54],[4,103],[-102,196],[123,123],[58,141]],[[19880,40981],[-184,-3]],[[19696,40978],[-62,-1]],[[19634,40977],[-165,-4],[-138,-3],[-9,1],[-102,-4],[-3,-1]],[[19217,40966],[-261,-5]],[[18956,40961],[-28,-2]],[[18928,40959],[-1071,-27]],[[17857,40932],[28,-50],[314,36],[56,-87],[-7,-188],[79,22],[-12,-160],[92,49],[-78,-185],[-1,-216],[-60,-175],[-76,24],[-141,-173],[29,-132],[-93,10],[-72,-104],[25,-197]],[[17940,39406],[77,-40],[-154,-314],[-142,-163],[-210,-130]],[[17511,38759],[-75,-70],[45,-156]],[[17481,38533],[-115,-87],[-57,-161],[-234,-203],[173,-194],[-25,-102],[-132,-34],[-122,-30],[-58,-135],[-127,11],[-136,-278],[90,-62],[-124,-107],[27,-101],[-217,-94],[-154,-235],[-159,-79],[-166,-20],[-102,-98],[-25,-145]],[[15818,36379],[-104,-166],[181,-254],[-50,-147],[98,-134],[-24,-187]],[[40850,28952],[-296,1]],[[40554,28953],[-1089,0]],[[39465,28953],[-491,-1]],[[38974,28952],[-1113,-4]],[[37861,28948],[-2189,0]],[[35672,28948],[-859,0],[-120,76],[-196,13]],[[34497,29037],[-219,69],[-242,122],[-273,249],[-270,168],[-182,155],[-450,221],[-166,328],[-380,108],[3,68],[-370,212],[-112,126]],[[31836,30863],[-193,218],[-95,-9],[28,95],[-54,264],[-108,151]],[[31414,31582],[-112,159]],[[31302,31741],[-138,94],[-122,259],[-227,74],[-133,-5],[-92,-79],[-141,25]],[[30449,32109],[-178,-135],[-17,-84],[-135,-56]],[[30119,31834],[-121,110],[-340,149],[-102,-53],[-179,51],[-142,-129],[-79,32],[-363,-143]],[[28793,31851],[11,-793]],[[28804,31058],[22,-1271],[103,-101],[-3,-126],[96,-44],[-71,-161],[255,-127],[191,12],[99,-138]],[[29496,29102],[90,-64],[-50,-106],[97,-180],[158,-93],[201,67],[29,-170],[91,-75],[165,-250],[257,-16],[149,-122],[348,-15],[62,72],[89,-79],[94,45]],[[31276,28116],[284,-238],[192,-46],[138,35],[133,-41],[268,0],[285,-97],[186,-7],[261,-106],[101,57],[327,-63],[150,-99],[184,-16],[120,-145],[171,-69],[112,-103],[-32,-64],[155,-144],[138,-48],[77,-109],[229,-93],[296,55],[422,-15],[199,101],[65,203],[137,113],[-1,201],[251,120],[20,77],[3383,20],[1344,2]],[[63325,85309],[155,109],[208,147]],[[63688,85565],[107,68]],[[63795,85633],[23,15]],[[63818,85648],[260,169]],[[64078,85817],[341,232],[36,32]],[[64455,86081],[7,6]],[[64462,86087],[3,4]],[[64465,86091],[3,4]],[[64468,86095],[-14,122],[123,2],[266,284]],[[64843,86503],[585,624],[119,49],[334,65],[38,474],[2,24],[605,55],[154,123]],[[66680,87917],[40,29]],[[66720,87946],[442,301],[-434,612]],[[66728,88859],[-509,729],[76,141],[-62,163]],[[66233,89892],[9,221],[14,151],[-299,154],[-198,47],[-209,-20]],[[65550,90445],[-46,196],[-91,408]],[[65413,91049],[-23,102]],[[30057,35265],[-41,1],[-278,-18]],[[29738,35248],[-133,-13]],[[29605,35235],[-354,-30]],[[29251,35205],[-161,-17]],[[29090,35188],[-169,-14],[-107,-10],[-176,-15],[-35,-1],[-112,-13]],[[28491,35135],[-27,-2],[-22,-2]],[[28442,35131],[-245,-21]],[[28197,35110],[-91,-8],[-171,-14],[-162,-16],[-103,-10]],[[27670,35062],[-47,-4]],[[27623,35058],[-825,-71]],[[26798,34987],[3,-176],[139,-4],[37,-1834],[521,4],[9,-740]],[[27507,32237],[78,-35],[283,-219],[515,-226],[69,-71]],[[28452,31686],[108,-26],[133,166],[100,25]],[[39520,24830],[-2805,-17],[-390,19]],[[36325,24832],[-1558,-4],[-57,211],[-195,97],[-132,-158],[-66,5],[-172,-176],[-136,-9],[-139,-117],[-193,18]],[[33677,24699],[-207,83],[-20,-91],[-127,-17],[-67,-285],[-202,13],[-158,-152],[-47,-112],[-132,-58],[-204,167],[-175,27],[-194,192],[-4,392],[-145,304],[-138,78],[-213,213],[-217,53]],[[31427,25506],[-637,438]],[[27511,20066],[-86,-43],[14,-230],[85,-43],[-26,-139],[296,42],[211,-196],[155,-18],[65,-140],[-47,-211],[155,-177]],[[28333,18911],[6,-140],[-242,-236],[188,8],[105,-159],[-215,-139],[-117,-158],[-281,-27],[-159,-82],[-381,-4],[-96,-174],[71,-82],[-77,-75],[-19,-158],[48,-241],[53,-44],[-220,-90],[5,-143]],[[27002,16967],[1220,12],[183,-37],[173,48]],[[80758,90301],[-280,10]],[[80478,90311],[-866,-1],[-724,33],[-2539,97],[-1011,26],[-2230,72]],[[73108,90538],[-1102,24],[-873,30],[-219,-28]],[[70914,90564],[-375,9],[-99,3],[-458,-13],[-993,32],[-15,-179],[-86,-25]],[[68888,90391],[-342,-105]],[[68546,90286],[-821,-250],[-76,-24],[63,-154]],[[67712,89858],[-1479,34]],[[64455,86081],[45,-107],[-76,-81],[217,-5],[-16,-374],[449,-17],[-8,-490],[171,-66],[349,-122],[-3,-91]],[[65583,84728],[-5,-230]],[[65578,84498],[-5,-153],[343,-8]],[[65916,84337],[176,-4]],[[66092,84333],[260,-7],[100,-3],[59,-2],[327,-10]],[[66838,84311],[191,-8]],[[67029,84303],[393,-5]],[[67422,84298],[69,159]],[[67491,84457],[64,-11]],[[67555,84446],[229,-5]],[[67784,84441],[4,1]],[[67788,84442],[261,-6]],[[68049,84436],[176,-5],[131,1]],[[68356,84432],[129,0]],[[68485,84432],[457,-12],[5,152],[131,-2]],[[69078,84570],[446,-12],[4,0]],[[69528,84558],[1029,-20]],[[70557,84538],[14,-1]],[[70571,84537],[107,-8],[153,-10],[133,-4]],[[70964,84515],[45,0]],[[71009,84515],[586,-19],[341,-10]],[[71936,84486],[-12,-307]],[[71924,84179],[532,-14]],[[72456,84165],[1588,-44],[1176,-23]],[[75220,84098],[119,-4]],[[75339,84094],[800,-28]],[[76139,84066],[551,-18]],[[76690,84048],[1587,-48],[-1,-20],[1057,-28],[1509,-60]],[[80842,83892],[3838,-156],[3535,-132],[-25,-460],[1247,-53],[-1,-18],[3660,-168]],[[93096,82905],[794,-35],[3032,-153]],[[96922,82717],[148,-8]],[[23046,41978],[9,-41]],[[23055,41937],[178,-68],[144,112],[301,62],[516,-270],[108,50],[172,-17],[54,-73],[23,-214],[143,-222],[68,-279],[182,-180],[339,-178],[158,-11],[133,-272],[24,-608],[-38,-177],[117,-177]],[[25677,39415],[93,-195],[82,49],[155,-160],[215,-52],[149,-128],[-12,-216],[100,-171],[-180,-360],[250,-65],[56,-134],[-27,-174]],[[26558,37809],[-44,-66],[-284,-24],[-82,-70]],[[26148,37649],[-3,-5],[-70,-116],[-35,-57],[117,-180],[148,-19],[60,-61],[-48,-52]],[[26317,37159],[175,-142],[-52,-208]],[[26440,36809],[-3,-78],[72,-65],[32,-58]],[[26541,36608],[20,-61]],[[26561,36547],[-21,-111]],[[26540,36436],[-96,-69]],[[26444,36367],[-57,-11]],[[26387,36356],[-219,54]],[[26168,36410],[-97,-101],[-40,-199]],[[26031,36110],[-18,-161],[-103,-68]],[[25910,35881],[-173,45],[-298,-313]],[[25439,35613],[-73,-174],[53,-95],[222,-201],[31,-185]],[[25672,34958],[771,6],[307,19]],[[26750,34983],[48,4]],[[31085,39614],[-197,95],[-164,-90],[-295,185],[-310,41],[-186,141],[-250,89],[-201,-8],[-133,72],[-141,45],[-212,-11]],[[28996,40173],[-225,-77],[-190,68]],[[28581,40164],[-121,92]],[[28460,40256],[-416,84],[-430,-57],[-89,60],[-121,-49]],[[27404,40294],[-153,-138],[-16,-104],[-103,-11],[-79,5]],[[27053,40046],[-217,-55],[-89,66],[-116,271],[-152,52],[28,110],[-241,190],[40,201],[-117,243],[-220,78],[13,76],[-173,73],[-83,97],[29,98],[143,62],[-139,113]],[[24892,54364],[145,-185],[213,133],[253,6]],[[25503,54318],[179,34]],[[25682,54352],[46,-150],[103,-71]],[[25831,54131],[338,-288],[126,-280],[124,-117],[172,57]],[[26591,53503],[202,-113],[30,63],[279,240],[636,12],[1337,4]],[[17867,45649],[-134,-2]],[[17733,45647],[-3,0],[-66,-2],[-74,-1],[-36,-1],[-111,-1],[-65,-3],[-73,-1],[-24,0],[-17,-2],[-144,-3],[-3,0],[-20,-1]],[[17097,45632],[-300,-5]],[[32020,41971],[-2,46],[-20,1964]],[[31998,43981],[18,1349],[19,215],[-53,0]],[[31982,45545],[-152,-42],[-162,7]],[[31668,45510],[-219,-158],[-134,-43],[-119,116],[-91,-67],[-111,154],[-158,12],[-146,-107],[-82,104]],[[30608,45521],[-145,-26],[-125,77],[-127,-82]],[[30211,45490],[-3,126]],[[30208,45616],[-262,60]],[[29946,45676],[-178,44],[-35,162],[-94,55],[-91,-69]],[[29548,45868],[-82,190],[-150,-91],[-62,101],[-129,37],[-1,130],[-176,55],[-37,31]],[[28911,46321],[-407,342]],[[28504,46663],[-1825,1529]],[[46169,75471],[-176,40],[-455,-1],[-425,-253],[-378,-301],[-286,-32],[-290,-208],[-269,-32],[-168,52],[-282,-19],[-348,-179],[-89,22],[-117,-107],[-298,-73],[-133,-102],[-104,-175],[-237,-79],[-236,41],[-264,-253],[-143,57],[-373,-33],[-218,-165],[-116,-25],[-191,-129],[-112,20],[-232,-114],[-51,-84],[-232,-84]],[[39946,73255],[-309,217],[-92,-61],[-92,109],[-225,128],[-172,283],[45,96],[-81,94],[-147,17],[-65,76]],[[38808,74214],[-310,-10],[-114,-70],[-215,86],[-50,97],[-115,-41],[-197,65],[-139,-86],[-107,116],[73,209],[126,53],[-3,81],[128,110],[96,349],[-98,260],[-164,-16],[-99,-198],[-270,-164]],[[37350,75055],[-479,-301]],[[36871,74754],[-52,-29]],[[36819,74725],[-241,-134]],[[36578,74591],[-113,-40],[-519,-48],[-177,40]],[[35769,74543],[-246,57],[-164,104],[-202,-48],[-104,116],[-166,-59],[-320,137],[-151,-160]],[[20523,48256],[-24,-1]],[[20499,48255],[-44,1]],[[20455,48256],[-121,139]],[[20334,48395],[-85,-19],[-161,-28],[-87,28],[-3,0],[-75,69],[-48,43],[-47,37],[-100,110]],[[19728,48635],[1,7]],[[19729,48642],[-11,40]],[[19718,48682],[-18,110]],[[19700,48792],[-20,52],[25,259],[-101,137],[-8,138],[246,346],[-170,70]],[[19672,49794],[96,99],[112,-23],[80,81],[-46,96],[138,100]],[[20052,50147],[-24,744],[-620,-10]],[[19408,50881],[-251,-5],[-8,265],[-446,25],[-282,-8],[45,417],[207,363],[-36,65]],[[46473,75468],[21,1644],[9,2677]],[[46503,79789],[23,517],[-138,250],[90,97],[-59,114]],[[46419,80767],[-119,80]],[[46300,80847],[-133,174]],[[25503,54318],[6,-211],[-88,-74],[-164,-2],[-168,-150],[-206,79],[-77,-194],[-89,-15],[-13,-125],[-276,-52],[-16,-179],[-217,-113],[-204,56],[198,-182],[-167,-85],[82,-77],[-108,-48],[-175,-240],[-148,-34],[-124,-100],[-223,-81],[-79,-142],[-255,-161]],[[22992,52188],[-417,-85],[-731,-311],[-209,-110],[-164,-161],[-228,-94],[-39,-246],[-127,-113],[-103,-128],[-106,20],[-123,-136],[-105,-4],[-299,-378],[-68,-10],[-207,-181],[-14,-104]],[[26672,48188],[-138,67],[23,102],[203,156],[8,134],[-107,161],[154,177],[61,153]],[[26876,49138],[133,-38],[227,73],[-113,321],[25,149],[110,150],[29,208],[-304,196],[-65,-50],[-103,132],[-24,364],[133,195],[187,99],[122,435],[37,263],[107,84],[97,-34],[-8,-148],[211,-187],[84,-3],[250,192],[164,-41],[126,44],[161,-185],[190,258],[244,26],[96,238]],[[27002,16967],[-626,-11],[-231,150],[-177,-77],[-351,30],[-84,-74],[-276,-123],[-318,44],[-139,133],[-384,-27],[-281,-81],[-297,73],[-115,-56],[-245,56],[-222,164],[-189,-29],[-188,82],[-243,-76],[-279,-12],[-117,-42],[-321,79],[-474,81],[-25,-47],[-293,159],[-597,56]],[[20530,17419],[-56,150]],[[20474,17569],[-280,-122],[-200,15],[-47,76],[-278,25]],[[19669,17563],[-77,-38],[-142,95],[-121,-42],[-203,38],[-254,-24]],[[18872,17592],[-218,1],[-252,-81]],[[18402,17512],[-213,57],[-167,-29],[-66,-87],[-291,-1],[-202,-122],[-99,155],[-291,142],[-126,-30],[-300,221],[-140,-15],[28,75],[-267,118],[-361,-108],[-186,-112],[-205,7],[17,-120],[-177,-76],[-359,97],[-620,112],[-157,-62],[-188,156],[-262,272],[-155,-71],[-330,19],[-57,-50],[-206,74],[-248,34],[-154,130],[-226,36]],[[12394,18334],[2,-52]],[[12396,18282],[38,-217],[-53,-208],[117,-176],[119,26],[70,-181],[167,-72],[17,-122],[205,-132],[-7,-230],[149,3],[197,-75],[51,51],[161,-76],[74,-174],[127,-41],[151,48],[175,-302],[253,-77],[93,-83],[14,-151],[492,-86],[0,-94],[108,-86],[-24,-96],[246,-158],[141,32],[28,-108],[181,-113],[215,69],[56,-119],[-63,-55],[-76,-483],[-241,-61],[89,-132],[-124,-171],[-8,-141],[-86,-116],[100,-58],[178,3],[156,-314],[-117,-147],[192,-205],[275,-135],[119,-154],[29,-233],[-83,-144],[98,-189],[148,-35],[145,-359],[91,-13],[143,-193],[-106,-229],[94,-201],[-33,-181],[87,-186],[274,-92],[142,-193],[143,19],[106,-127],[34,-511],[-126,-103],[249,-159],[183,28],[235,-109],[101,4],[86,-225],[-10,-302],[46,-129],[-286,-195],[-122,14],[-65,-76]],[[17954,9046],[2776,41]],[[20730,9087],[1132,36],[2437,41]],[[24299,9164],[819,12]],[[25118,9176],[2496,35]],[[31276,28116],[-99,-1295],[-142,-37],[-72,-235],[314,-197],[150,-846]],[[17954,9046],[13,-135],[-192,-148],[65,-180],[-43,-141],[86,-56],[-49,-106],[15,-299],[142,-123],[-29,-142],[215,-110],[-228,-159],[6,-87],[-310,-7],[-122,-200],[-187,-71]],[[17336,7082],[-121,92],[23,238],[-85,109],[-248,-23],[-86,-49],[-170,75],[-6,207],[-79,162],[-89,-28],[-213,104],[-237,62],[-121,142],[-11,143],[-262,52],[-219,110],[-43,133],[-282,158],[-124,-83],[-161,93],[-398,-56],[-365,184],[-102,97],[-141,-92],[-94,41],[77,322],[-130,131],[44,152],[-128,122],[48,317],[224,132],[173,-15],[144,376],[79,80],[-44,151],[-107,61],[-48,153],[-212,12],[-101,-151],[-113,-62],[-300,-22],[-255,90],[-116,-4],[-88,-219],[19,-89],[-82,-144],[-223,-120],[-144,-21],[-118,-175],[-216,-40],[-194,34],[-359,-37],[-95,57],[-332,-52],[-156,-175],[-136,-330],[-95,-41],[-173,-186],[-198,17],[-38,-107],[-212,-127],[-262,116],[-105,-208],[-132,-101]],[[17936,41069],[-79,-137]],[[20859,37222],[332,-1],[106,-33],[247,255],[185,50],[322,-195],[100,-123],[196,-70]],[[22347,37105],[70,-65],[297,45],[198,-83],[354,17],[279,94]],[[23545,37113],[341,61],[139,-96],[59,69],[155,-51]],[[24239,37096],[100,-69],[240,3]],[[24579,37030],[176,115]],[[24755,37145],[1,416],[-41,1825],[962,29]],[[34623,44583],[900,726]],[[35523,45309],[1123,943]],[[36646,46252],[516,427]],[[25672,34958],[104,-283],[-66,-127],[-196,-99]],[[25514,34449],[-151,176],[-243,43]],[[25120,34668],[23,88],[-174,49],[71,-103],[-151,-45],[-64,-280],[-72,-140],[-210,-11],[5,-231],[-70,-102],[74,-179],[-244,-203],[-331,148],[-159,-82],[-126,-133],[109,-263],[109,-47],[-211,-48],[97,-40],[-238,-52],[-50,-58]],[[25591,29058],[-71,38],[82,309],[-128,4],[-6,125]],[[25468,29534],[99,240],[99,-10],[-69,238],[-75,13],[148,151],[-49,87]],[[25621,30253],[26,142]],[[25647,30395],[23,55]],[[25670,30450],[39,213],[98,157]],[[25807,30820],[-4,10],[-62,129]],[[25741,30959],[9,161],[144,-13],[12,126],[-138,186]],[[25768,31419],[-99,156]],[[25669,31575],[39,256],[102,96],[-53,121],[195,51],[-99,180],[15,179],[84,282],[-42,116],[45,169],[59,-202],[96,-151],[75,-3],[100,-195],[177,12],[150,-117],[201,-80]],[[26813,32289],[301,-75],[117,52],[276,-29]],[[13499,21617],[-6,-85],[-151,-131],[26,-146],[-62,-84],[67,-126],[-19,-291],[-183,-193],[122,-233],[-106,-320],[51,-92],[-192,-68],[62,-284],[134,-147],[-82,-301],[53,-187],[-123,-188],[-270,-141],[-168,11],[-132,-72],[-126,-205]],[[19633,44116],[-210,45]],[[19423,44161],[-1,0],[-77,-55],[-26,-89],[2,-39],[-90,2],[-110,13],[-1,-48],[8,-19],[96,-61],[88,-9],[-3,-44]],[[18811,44373],[35,7],[23,6],[94,30],[-50,65],[-35,43],[0,2],[-43,56],[-82,44],[-24,-9]],[[18729,44617],[-227,-35]],[[18502,44582],[93,-85],[-107,-19],[323,-105]],[[19876,44740],[142,-15]],[[20018,44725],[55,-52],[201,192],[139,190],[119,225],[-45,173]],[[20487,45453],[-73,22],[-108,-14]],[[20306,45461],[-2,0],[-70,-124],[-42,-118],[-44,-194],[-16,-15],[-115,-65],[-78,-49],[-54,-143],[-9,-13]],[[18675,43842],[153,-20],[14,51],[-26,113],[75,74],[25,94],[5,18],[-24,5],[-62,10],[-36,8],[-22,7]],[[18777,44202],[-65,-165],[-84,41],[-74,-164],[159,39],[-38,-111]],[[18421,44690],[210,64]],[[18631,44754],[292,16]],[[18923,44770],[92,25]],[[19015,44795],[-22,125],[-140,31],[-6,75]],[[18847,45026],[-348,-127]],[[18461,44832],[-40,-142]],[[21273,46380],[190,31],[19,119],[-156,26]],[[21326,46556],[-141,9]],[[21185,46565],[-69,20]],[[21116,46585],[-62,-106],[-56,-133]],[[20998,46346],[275,34]],[[21199,46068],[106,-11],[87,159]],[[21392,46216],[-34,54],[-320,-108]],[[21038,46162],[117,-117],[44,23]],[[22256,47159],[121,61],[32,130]],[[22409,47350],[-87,154]],[[22322,47504],[-147,-100],[-149,-107],[-55,-62]],[[21971,47235],[285,-76]],[[21622,45772],[284,-256]],[[22194,45580],[26,96],[-74,14],[27,134],[80,-23],[3,19]],[[22256,45820],[-315,25],[-319,-73]],[[22870,45658],[125,-18],[-10,-114],[224,-42],[130,151],[-3,194],[144,4]],[[23480,45833],[214,17]],[[23694,45850],[18,45]],[[23712,45895],[-66,74],[24,100],[-11,11],[-59,6],[-97,9],[-7,214]],[[23496,46309],[-2,39]],[[23494,46348],[-203,-38],[-111,-99],[-57,83],[-151,18]],[[22972,46312],[23,-165]],[[22995,46147],[301,-30],[-211,-215]],[[23085,45902],[-1,-79],[-23,-96],[-192,3]],[[22869,45730],[1,-72]],[[24068,45911],[68,-85]],[[24136,45826],[159,-65]],[[24295,45761],[48,156]],[[24343,45917],[-134,67],[-56,3],[-85,-76]],[[23217,23884],[103,116]],[[23320,24000],[-122,77],[63,81],[-193,46]],[[23068,24204],[-94,-47],[243,-273]],[[23068,24204],[227,112]],[[23295,24316],[100,50],[73,68],[-116,63]],[[23352,24497],[-90,-63],[-199,8],[5,-238]],[[23436,24477],[124,6],[75,83]],[[23635,24566],[130,129]],[[23765,24695],[-207,69],[-179,11],[57,-298]],[[25948,23353],[117,248]],[[26065,23601],[-71,-44],[-171,50],[-13,-96],[138,-158]],[[25837,24251],[-231,-32],[-68,53],[-252,23]],[[25286,24295],[-30,-49]],[[25256,24246],[89,-118],[146,-66],[56,-130],[251,-30],[209,-154],[86,-161]],[[26093,23587],[31,31],[68,-10],[6,143],[93,207],[-43,161]],[[26248,24119],[-313,-58],[-98,190]],[[26332,26727],[76,-273],[242,79],[65,-21]],[[26715,26512],[16,343],[83,16],[-383,18]],[[26431,26889],[-62,-44]],[[26369,26845],[-37,-118]],[[26058,26582],[62,123],[-187,80],[-391,16],[183,-49],[32,-113],[301,-57]],[[24476,42720],[-372,-124],[-3,118]],[[24101,42714],[1,98],[-342,-107]],[[23760,42705],[-10,-64],[145,-71],[-253,-41]],[[23642,42529],[-20,-74]],[[24283,42388],[201,70],[143,-34],[115,126],[222,16],[14,237],[176,158],[196,-5]],[[25350,42956],[-2,83],[-199,-3]],[[25149,43036],[-529,-8]],[[24620,43028],[1,-26],[2,-214],[-147,-68]],[[24257,43481],[87,1]],[[24344,43482],[315,2]],[[24659,43484],[245,311]],[[24904,43795],[-303,-4]],[[24601,43791],[-156,5],[-190,-168],[2,-147]],[[25541,43593],[72,-51],[249,38]],[[25815,43868],[-311,3]],[[25504,43871],[37,-278]],[[22677,42848],[25,-160]],[[22702,42688],[217,5],[174,3],[81,31],[-63,101]],[[23111,42828],[-79,97],[-41,210],[-163,-26],[-151,-261]],[[20472,42261],[13,120]],[[20485,42381],[-82,99]],[[20403,42480],[-206,-121],[114,-70]],[[21206,43909],[-5,-59],[148,-72]],[[21349,43778],[75,-89],[199,108],[152,-87]],[[21775,43710],[183,187]],[[21958,43897],[-329,43],[-120,118],[-172,26]],[[21337,44084],[-42,-52],[-89,-123]],[[21660,44444],[-147,-104],[-83,-67]],[[21430,44273],[-33,-63]],[[21397,44210],[163,-6],[318,82],[19,-157],[415,89]],[[22312,44218],[117,100],[-280,-14],[-19,126],[290,111],[-12,98]],[[22408,44639],[6,141],[-10,-1],[-278,-104],[-158,-80],[-181,-81],[3,-74],[-130,4]],[[20480,44101],[-300,-109]],[[20180,43992],[-64,9]],[[20116,44001],[84,-239],[-102,-11],[-173,138]],[[19925,43889],[-8,9]],[[19917,43898],[-254,-228]],[[19663,43670],[149,-235],[217,49],[81,-34]],[[20110,43450],[62,39],[263,138],[199,15],[-109,-134],[197,90]],[[20722,43598],[71,114],[-272,36],[25,85],[219,80],[128,142]],[[20893,44055],[31,91]],[[20924,44146],[-286,8],[-160,-86],[2,33]],[[20991,43937],[120,56],[54,132]],[[21165,44125],[1,66]],[[21166,44191],[-177,-113]],[[20989,44078],[2,-141]],[[23570,43010],[241,36]],[[23811,43046],[58,215],[-47,213]],[[23822,43474],[-7,77]],[[23815,43551],[-335,-79],[-228,-187],[162,-103],[-8,-137],[164,-35]],[[22782,44785],[176,51],[26,200],[-101,276]],[[22883,45312],[-176,27],[26,-146],[-160,-30]],[[22573,45163],[-7,-29]],[[22566,45134],[-21,-41],[237,-308]],[[21908,43553],[-133,157]],[[21775,43710],[-65,-142],[-95,-16],[-64,-140],[91,-23],[84,-134],[64,38],[118,260]],[[18943,42908],[151,-49],[-57,-83],[-72,-150]],[[18965,42626],[64,-70]],[[19029,42556],[137,131],[145,0]],[[19311,42687],[131,95],[140,-9],[135,198],[-230,-98],[-117,37],[-40,74],[-241,109]],[[19089,43093],[-107,-75]],[[18982,43018],[-39,-110]],[[41135,33114],[-35,-110]],[[41100,33004],[12,-137],[-175,28],[-209,57]],[[40728,32952],[-1,-16]],[[40727,32936],[554,-150],[80,-137]],[[41361,32649],[16,13],[332,252]],[[41709,32914],[-149,121],[-49,114],[-145,33],[-231,-68]],[[30719,35895],[-143,51]],[[30632,36104],[-33,42],[-647,144],[3,-195],[-56,-96]],[[29899,35999],[-117,-167]],[[29782,35832],[121,-36],[162,26]],[[30065,35822],[4,177],[272,-11],[234,-45]],[[30270,35213],[61,-183],[184,-18],[212,-235],[90,28],[106,-161],[132,-12],[-93,221],[-114,14],[-24,108],[-174,305]],[[30650,35280],[-65,17],[32,175],[1,4],[227,-44],[241,172]],[[31086,35604],[-218,21],[-161,192],[12,78]],[[42419,56038],[305,-1],[-4,-41]],[[42720,55996],[50,0],[38,71],[-83,158],[-3,77],[-44,0]],[[42678,56302],[-261,2]],[[42417,56304],[2,-266]],[[42677,56456],[265,-2],[1,77]],[[42943,56531],[0,115],[-265,1],[0,-38],[-1,-153]],[[44002,56135],[1,-142]],[[44003,55993],[175,0]],[[44178,55993],[177,0],[0,142],[1,232],[-177,0],[2,155]],[[44181,56522],[-176,-1]],[[44005,56521],[-3,-386]],[[42243,55770],[1,1],[174,-2]],[[42418,55769],[1,269]],[[42419,56038],[-174,1]],[[42245,56039],[-2,-269]],[[41816,54946],[198,138]],[[42014,55084],[-37,0],[-253,27],[195,142],[179,134]],[[42098,55387],[80,77]],[[42178,55464],[-112,0],[-176,0]],[[41890,55464],[-352,1]],[[41538,55465],[-1,-149],[-88,-1],[1,-199]],[[42666,54966],[-74,115],[-205,-1]],[[42387,55080],[-87,1]],[[42300,55081],[-4,-156]],[[42917,54669],[136,40]],[[43053,54709],[-5,64],[-43,126]],[[43005,54899],[-174,27],[-104,-8]],[[43472,55152],[69,76]],[[43541,55228],[17,77],[-58,76],[-204,0],[0,-76],[0,-77],[2,-74],[-2,-1],[176,-1]],[[45230,56143],[462,1],[-29,382]],[[45663,56526],[-405,-1],[44,229]],[[45302,56754],[-422,3]],[[44880,56757],[1,-306]],[[44881,56451],[367,26],[-18,-334]],[[44356,57595],[236,231]],[[44592,57826],[201,197]],[[44793,58023],[115,111]],[[44908,58134],[-552,0],[0,-539]],[[45496,57216],[-1,307]],[[45495,57523],[-175,-2],[0,-77],[-265,0]],[[45055,57444],[0,-230],[441,2]],[[20235,24169],[11,-206],[308,161],[157,-43],[38,330],[-177,33],[-347,-12],[10,-263]],[[2165,12841],[38,9],[149,31],[97,126]],[[2449,13007],[89,99]],[[2538,13106],[-255,83],[-26,-104],[-107,-30],[15,-214]],[[3226,11533],[34,259]],[[3260,11792],[-108,142]],[[3152,11934],[-164,-70],[-30,-271],[89,5],[7,-116],[172,51]],[[2761,14523],[-12,201],[-128,102],[35,116],[20,181],[100,167],[-252,-41]],[[2524,15249],[-55,-337],[-43,-110],[155,-246],[180,-33]],[[86374,94793],[252,-8]],[[86626,94785],[41,-1],[-66,242]],[[86601,95026],[-158,5],[-295,89],[140,-209],[123,-27],[-37,-91]],[[88032,96458],[-16,-195],[530,-23],[24,404],[-94,35],[-94,-107],[-350,-114]],[[86085,96418],[607,-23]],[[86692,96395],[13,227]],[[86705,96622],[-202,8]],[[86503,96630],[-149,5],[-94,-71],[11,191]],[[86271,96755],[-168,6]],[[86103,96761],[-18,-343]],[[86114,96961],[171,-6]],[[86285,96955],[92,-4],[268,-9]],[[86645,96942],[97,219],[-615,24]],[[86127,97185],[-13,-224]],[[56607,49478],[0,0]],[[56070,49295],[355,-4],[83,-56],[10,224],[89,19]],[[56607,49478],[-88,-17],[-86,135],[-90,3]],[[56343,49599],[-5,-155],[-177,3],[-86,74],[-5,-226]],[[49608,69757],[379,-2],[95,-1],[-2,-343],[507,311],[24,43]],[[50611,69765],[6,216],[-397,-17]],[[50220,69964],[-31,-42],[-102,61],[-175,1],[-176,0],[0,81]],[[49736,70065],[-116,-156]],[[49620,69909],[-12,-152]],[[50807,70395],[-2,121]],[[50805,70516],[-158,1],[-105,0]],[[50542,70517],[58,-20],[-13,-215],[220,113]],[[49518,70702],[168,-46],[237,-84]],[[49923,70572],[-4,100],[2,154]],[[49921,70826],[-219,1]],[[49702,70827],[-7,-141],[-123,47]],[[49572,70733],[-54,-31]],[[46400,72834],[-347,-19]],[[46053,72815],[-1,-286],[286,-3],[62,308]],[[48328,70378],[1059,-9]],[[49387,70369],[1,154],[-176,1],[2,153]],[[49214,70677],[-884,7]],[[48330,70684],[-2,-306]],[[48519,67156],[248,-2],[4,306],[-182,3]],[[48589,67463],[-70,-307]],[[48577,66355],[6,496],[-128,0],[-69,-303]],[[48386,66548],[-35,-153],[226,-40]],[[63968,67626],[174,-51],[3,62],[171,-5]],[[64323,67939],[-352,7]],[[63971,67946],[-3,-306],[0,-14]],[[60884,72935],[88,-2],[-8,-230],[91,74],[310,-6],[119,74],[-67,66],[58,112],[-124,54],[-465,12],[-2,-154]],[[59486,75516],[14,501]],[[59500,76017],[-266,8],[-48,-153],[15,155],[-147,4],[-2,-153],[-176,-48],[-10,-252],[208,-38],[150,31],[60,-53],[202,-2]],[[54923,73052],[354,-6],[45,151],[-42,116],[-176,1],[-2,-112],[-90,2],[-89,-152]],[[55898,73031],[-4,-311],[207,-46]],[[56101,72674],[67,174],[342,19],[220,120],[-28,185],[-531,11],[-2,-156],[-271,4]],[[44283,60515],[178,-30],[-1,-196]],[[44460,60289],[355,0]],[[44815,60289],[1,153],[1,153],[1,158],[-530,4]],[[44288,60757],[-4,-159],[-1,-83]],[[43931,60291],[287,0]],[[44218,60291],[65,153]],[[44283,60444],[-175,1],[0,100],[-175,41]],[[43933,60586],[-2,-295]],[[13505,31183],[-139,452],[89,170],[-119,-63],[-164,-287],[13,-310],[320,38]],[[34723,17339],[115,12],[122,34],[250,155]],[[35210,17540],[-281,-37],[-206,-164]],[[57806,82215],[161,11],[69,-82],[138,82],[99,15],[40,146]],[[58313,82387],[-185,-21]],[[58128,82366],[-116,-9],[-206,-142]],[[57668,82047],[59,63]],[[57727,82110],[-110,6],[-67,115],[-186,60],[-95,-143]],[[57269,82148],[100,-99],[299,-2]],[[54668,82049],[262,-90],[113,33]],[[55043,81992],[47,10]],[[55090,82002],[-29,95],[-179,79],[-66,77]],[[54816,82253],[-137,-51]],[[54329,82399],[201,15]],[[54530,82414],[15,135],[212,-45]],[[54757,82504],[21,71],[-51,2],[-154,3],[15,77],[1,12],[-135,89],[-121,-44]],[[55380,83505],[-125,-48]],[[55255,83457],[-20,-236],[134,-67],[37,7],[122,-18],[-63,190],[154,44],[75,-211],[14,1]],[[55708,83167],[139,40],[89,16],[151,125],[113,-116],[0,20]],[[56200,83252],[-31,199],[67,48]],[[56236,83499],[-332,13],[-56,1]],[[55848,83513],[-108,-2],[-134,25],[-213,-40],[-13,9]],[[58701,84291],[1,-32]],[[58702,84259],[95,11],[1,120]],[[58798,84390],[66,279]],[[58864,84669],[-171,5]],[[58693,84674],[0,-17],[-1,-18],[3,-69],[-211,-65],[27,-37],[30,-65],[37,-28],[121,86],[3,-88],[-1,-82]],[[56447,83489],[164,0],[69,-8],[84,-5],[209,16],[6,6],[101,103],[219,-51]],[[57299,83550],[13,92],[-48,7],[-127,20],[-94,40],[4,156],[-80,-78],[-30,98],[-22,-21],[-131,46],[2,68]],[[56786,83978],[-319,-275],[-20,-214]],[[56250,83571],[39,-36],[72,-35]],[[56361,83500],[47,79],[-1,265],[101,212]],[[56508,84056],[-8,7],[-111,34]],[[56389,84097],[-97,-202]],[[56292,83895],[-75,-201],[33,-123]],[[57680,82553],[-20,-38],[466,-11],[246,-5],[-1,-93]],[[58371,82406],[188,154],[209,255]],[[58768,82815],[15,177],[-58,92]],[[58725,83084],[-223,-7],[-60,-23],[-84,-156],[-79,40],[-32,-107],[-83,36],[-84,-55],[-114,-41],[-226,-101],[-116,1],[56,-118]],[[58968,82327],[93,3]],[[59061,82330],[318,358],[-103,88],[25,94],[6,1]],[[59307,82871],[48,109],[75,44],[63,170],[17,45],[5,42]],[[59515,83281],[-95,2],[-158,51],[-37,-83],[-418,2]],[[58807,83253],[7,-27]],[[58814,83226],[361,-149],[-6,-129],[-175,-92],[-126,-194]],[[58868,82662],[26,-62]],[[58894,82600],[42,20]],[[58936,82620],[326,150],[-34,-116],[-292,-86]],[[58936,82568],[32,-241]],[[61797,83369],[-1,-73],[-151,31]],[[61645,83327],[62,-48]],[[61707,83279],[83,-93],[-129,-33],[-3,-115],[177,-4]],[[61835,83034],[331,-4],[108,-1]],[[62274,83029],[-91,188]],[[62183,83217],[-51,159],[-38,-12],[-25,1],[-69,-138],[-126,140],[-77,2]],[[62919,83771],[111,-48]],[[63030,83723],[137,22],[229,24]],[[63396,83769],[-72,144],[-79,68]],[[63245,83981],[-152,66],[51,17]],[[63144,84064],[7,11]],[[63151,84075],[-242,147],[-62,122]],[[62847,84344],[-63,-17],[-135,-21]],[[62649,84306],[-142,-85],[20,140]],[[62527,84361],[4,55],[-88,81]],[[62443,84497],[-69,-105],[-147,63]],[[62227,84455],[3,-142],[87,-28],[175,-71]],[[62492,84214],[367,-117],[-9,-19],[-128,-44]],[[62722,84034],[26,-16],[-166,-128]],[[62582,83890],[153,-65],[184,-54]],[[62693,84759],[-254,142]],[[62439,84901],[-22,-170],[127,-74],[123,-86]],[[62667,84571],[60,-27],[150,-148]],[[62877,84396],[147,46]],[[63024,84442],[-21,74],[-100,131],[-74,70],[-141,35],[5,7]],[[62836,84951],[62,-59],[131,-152]],[[63029,84740],[203,63]],[[63124,85064],[-123,9],[-154,104],[-74,-154],[63,-72]],[[60732,84508],[117,-57]],[[60849,84451],[282,25]],[[61131,84476],[83,47]],[[61214,84523],[123,144],[-113,55],[27,104]],[[61251,84826],[-176,30]],[[61075,84856],[-88,-235],[-250,-68],[-5,-45]],[[61985,85106],[186,53],[29,-110],[64,-24],[46,-8]],[[62310,85017],[168,48],[81,-46],[32,5],[65,67]],[[62656,85091],[-192,240]],[[61824,85342],[30,-163],[131,-73]],[[60373,84477],[2,-2]],[[60375,84475],[-25,-102]],[[60350,84373],[233,6],[89,-74]],[[60672,84305],[72,61],[-20,63]],[[60724,84429],[3,10]],[[60727,84439],[-165,149]],[[60562,84588],[-155,-7],[-51,6],[-87,4],[104,-114]],[[60058,82808],[179,-41],[4,116],[170,29]],[[60411,82912],[-22,134]],[[60389,83046],[2,51]],[[60391,83097],[-132,4]],[[60259,83101],[-85,3],[-38,-134]],[[60136,82970],[-78,-162]],[[60316,85379],[198,32],[64,105]],[[60578,85516],[4,153]],[[60582,85669],[-55,2]],[[60527,85671],[-32,0],[-5,-134],[-87,20],[-93,-36],[-28,-18],[34,-124]],[[59269,84887],[113,-73]],[[59382,84814],[131,-111]],[[59513,84703],[48,-95],[75,15],[85,95],[107,7],[-12,95],[-41,127],[109,132]],[[59884,85079],[15,14]],[[59899,85093],[-81,23],[-114,-22],[-63,-6],[-34,-3],[-131,-47],[-41,-4],[0,-2],[-117,-103],[-51,-36],[2,-6]],[[58463,86033],[-177,8]],[[58286,86041],[-7,-121],[9,-52],[134,-3],[22,92],[19,76]],[[59935,87110],[73,62],[-60,1],[-13,-63]],[[57192,87367],[149,16],[131,-35]],[[57472,87348],[102,65],[-13,95],[111,49],[101,-62]],[[57773,87495],[0,138],[72,77]],[[57845,87710],[-31,57]],[[57814,87767],[-196,-55],[-88,-95],[-216,-61],[-167,72],[-163,-116]],[[56984,87512],[216,-41],[-8,-104]],[[54335,83030],[97,55],[177,137],[0,2],[126,111],[169,-12],[65,25]],[[54969,83348],[20,66],[-100,172],[-163,-48],[-198,68],[-80,-37]],[[54448,83569],[171,-135],[75,34],[-163,-75],[-110,35],[-385,-48],[4,-48],[0,-3],[-60,-209]],[[53118,83134],[-22,141]],[[53096,83275],[-128,63]],[[52968,83338],[-110,-34]],[[53373,84525],[161,51]],[[53534,84576],[-375,122],[-71,129],[-120,77],[-372,-298]],[[52596,84606],[-69,-140],[264,15],[125,103],[193,-13],[81,60],[183,-106]],[[59463,77710],[154,-3],[202,-5],[89,-1],[89,-2],[3,76],[178,-4]],[[60178,77771],[179,-3]],[[60357,77768],[2,77]],[[60359,77845],[-535,11],[3,153],[-157,3]],[[59670,78012],[-198,4]],[[59472,78016],[-9,-306]],[[58931,77874],[180,-4],[178,-4]],[[59289,77866],[4,154]],[[59293,78020],[-356,-7]],[[58937,78013],[-6,-139]],[[59308,78637],[3,0]],[[59311,78637],[177,-3]],[[59488,78634],[139,-2]],[[59627,78632],[3,62],[4,98]],[[59634,78792],[15,147]],[[59649,78939],[-362,3],[21,-305]],[[59818,78935],[241,-5],[65,-1],[-9,33],[37,178]],[[60152,79140],[-28,32]],[[60124,79172],[-67,74]],[[60057,79246],[-55,-16],[-184,-295]],[[55892,79954],[-18,-158]],[[55874,79796],[347,4],[1,-82],[146,-37]],[[56368,79681],[-69,195]],[[56299,79876],[-302,256],[70,19]],[[56067,80151],[-122,233],[1,7],[14,55]],[[55960,80446],[-141,56],[-247,-76]],[[55572,80426],[37,-49]],[[55609,80377],[56,-64],[141,-51],[91,-65],[-3,-48],[-4,-124],[2,-71]],[[56252,80206],[276,-86]],[[56528,80120],[207,15]],[[56735,80135],[-136,164]],[[56599,80299],[-147,133],[-147,-70],[-67,-58],[14,-98]],[[55490,79946],[-36,62]],[[55454,80008],[-143,53],[-67,164],[115,74]],[[55359,80299],[-227,104]],[[55132,80403],[-213,-185]],[[54919,80218],[-79,-68],[-23,-39]],[[54817,80111],[-10,-177],[-140,-21]],[[54667,79913],[-284,-19]],[[54383,79894],[115,-194],[180,28],[46,-62],[54,68],[210,-3],[-105,146],[367,52],[51,-78],[189,95]],[[55438,81063],[141,-23],[-60,-158],[64,-5],[175,46],[173,95]],[[55931,81018],[-22,273],[50,29]],[[55959,81320],[-43,35]],[[55916,81355],[-179,-79]],[[55737,81276],[-215,-112],[-84,-101]],[[56009,80801],[41,87]],[[56050,80888],[-61,65]],[[55989,80953],[-287,-101],[-78,-102]],[[55624,80750],[385,51]],[[17074,41835],[-72,171]],[[17002,42006],[-25,45]],[[16977,42051],[-234,76],[-168,-12],[65,-164],[-56,-106]],[[16584,41845],[68,-100],[277,166],[40,-107],[105,31]],[[16633,42645],[-77,-118]],[[16556,42527],[111,-167],[106,-32],[185,45]],[[16958,42373],[384,226],[73,129],[-184,-8],[-107,136],[-171,8]],[[16953,42864],[8,-275],[-83,-19],[-245,75]],[[15803,42319],[10,-6]],[[15813,42313],[27,-20],[225,-41]],[[16065,42252],[219,248],[76,110]],[[16360,42610],[-21,92],[-56,46],[-134,-73],[-20,175],[4,6],[89,30],[195,-53],[98,91],[72,45],[-12,97],[-48,62]],[[16527,43128],[-119,-39],[65,135],[-91,96],[-48,-47]],[[16334,43273],[-117,-195],[50,-78],[-138,-106],[-3,123],[-318,-247],[133,-44],[-100,-172],[131,28],[-152,-98]],[[15820,42484],[-17,-165]],[[17640,44044],[5,81],[-226,-45],[-33,-52],[151,-115],[99,96]],[[17128,43569],[248,117],[93,134],[-179,97]],[[17290,43917],[-157,-131]],[[17133,43786],[-103,-81]],[[17030,43705],[-32,-75],[130,-61]],[[16361,43760],[192,-52],[167,102]],[[16720,43810],[85,93],[-127,10],[110,124]],[[16788,44037],[-170,89],[-132,-218],[-106,31],[-19,-179]],[[5103,26698],[122,96],[20,173],[81,54]],[[5326,27021],[-228,-9],[-34,150]],[[5064,27162],[-99,-131],[138,-333]],[[35306,50165],[5,-335]],[[35311,49830],[7,-163],[206,0]],[[35524,49667],[145,99]],[[35669,49766],[123,85]],[[35792,49851],[45,35],[-2,155],[125,68],[91,51]],[[36051,50160],[-47,38],[-4,119]],[[36000,50317],[-6,155]],[[35994,50472],[-171,2],[11,-311],[-528,2]],[[32778,52889],[5,-154],[3,-104],[7,-346]],[[32793,52285],[706,15],[-5,459],[-410,-10],[-132,69],[-4,152],[-173,-3],[3,-78]],[[22001,57990],[139,50],[33,-147]],[[22173,57893],[14,-78],[-153,35]],[[22034,57850],[161,-165]],[[22195,57685],[-2,20]],[[22193,57705],[3,46],[86,106],[-69,202]],[[22213,58059],[-163,121]],[[22050,58180],[-49,-190]],[[23743,56741],[243,120]],[[23986,56861],[-534,4],[-18,114],[-183,-5],[-25,-95],[2,-89],[190,74],[2,-76],[228,-98],[95,51]],[[19084,39174],[72,-1]],[[19156,39173],[193,22],[23,298]],[[19372,39493],[-159,-27]],[[19213,39466],[-133,-10]],[[19080,39456],[57,-129]],[[19137,39327],[-53,-153]],[[18527,39455],[25,-87],[207,37]],[[18759,39405],[27,9],[36,146]],[[18822,39560],[-129,32]],[[18693,39592],[-151,-25],[-15,-112]],[[18130,38515],[177,-131],[27,-165],[144,148],[-271,226],[-77,-78]],[[17248,37046],[230,126],[186,-82],[-77,113],[97,72]],[[17684,37275],[-227,144],[-204,-6],[-129,-63],[0,-107],[124,-197]],[[30964,30210],[-75,71]],[[30889,30281],[-3,-66],[-179,15],[-4,-173],[-198,-67],[-89,-95],[15,-103],[-20,-158]],[[30411,29634],[196,44]],[[30607,29678],[52,63],[247,-3],[160,-93],[103,46],[3,4]],[[31172,29695],[189,117],[-98,136],[97,236]],[[31360,30184],[-218,-6],[-60,-76],[-176,20],[58,88]],[[63542,85703],[67,-92],[186,22]],[[63818,85648],[-95,110],[-31,267]],[[63692,86025],[-44,15]],[[63648,86040],[-1,-2],[-130,-152],[25,-183]],[[63241,86731],[209,-41],[141,235]],[[63591,86925],[-103,-27],[-146,29]],[[63342,86927],[-101,-196]],[[63810,86322],[9,-131]],[[63819,86191],[166,53],[38,-72],[7,445],[-22,63]],[[64008,86680],[-40,-42],[-449,-91]],[[63519,86547],[254,-158],[37,-67]],[[64886,90471],[101,60],[121,81],[16,9]],[[65124,90621],[-131,65]],[[64993,90686],[-122,-87]],[[64871,90599],[13,-25]],[[64884,90574],[2,-103]],[[64703,90049],[160,-143]],[[64863,89906],[245,81],[38,61]],[[65146,90048],[-160,21],[-1,72],[-147,141],[-221,44],[-34,-115],[120,-162]],[[63874,89599],[214,-135],[24,-3]],[[64112,89461],[-86,108],[9,120],[88,28]],[[64123,89717],[18,25],[-41,120],[-203,-1],[46,85],[-143,-75]],[[63800,89871],[107,-51],[-33,-221]],[[64557,89359],[-69,27]],[[64488,89386],[-212,-123],[-30,-28],[27,-13],[-19,-36],[248,-224],[8,-12],[55,188],[-8,221]],[[63623,87032],[-32,-107]],[[63591,86925],[126,106]],[[63717,87031],[142,129],[155,5],[213,110]],[[64227,87275],[-92,221],[-145,42],[-73,144],[-86,29]],[[63831,87711],[-317,-37],[-165,-92],[192,-185],[70,-166],[12,-199]],[[64223,88357],[248,-321]],[[64471,88036],[122,30]],[[64593,88066],[56,108],[-70,105]],[[64579,88279],[-189,-36],[-28,165],[-139,-51]],[[63460,88346],[197,-217],[49,103]],[[63706,88232],[103,127]],[[63809,88359],[94,115],[153,169],[-100,-11],[-7,128]],[[63949,88760],[-150,37]],[[63799,88797],[-121,64],[-23,132]],[[63655,88993],[-10,-167],[53,-109],[-61,-93],[-5,-218],[-172,-60]],[[62497,88053],[370,135]],[[62867,88188],[-89,197],[-166,46]],[[62612,88431],[-37,-40],[-48,-33],[-186,-140]],[[62341,88218],[18,-16],[138,-149]],[[62413,86844],[65,-153]],[[62478,86691],[67,-199],[1,1],[149,65],[-38,140],[4,217],[-89,1],[-159,-72]],[[61058,86863],[92,-1],[27,-1],[3,77],[3,76],[3,77],[3,77],[-87,2],[0,-7],[-40,-69],[-1,-77],[-2,-77],[-1,-77]],[[60868,88165],[-233,-228]],[[60635,87937],[285,-150],[29,-1],[6,152],[89,28],[0,12],[5,110],[-181,77]],[[60528,86794],[88,-1],[268,0],[175,-5],[-1,75]],[[61058,86863],[-174,2],[0,77],[-132,40],[0,78],[0,37],[-260,3],[-48,-38],[0,-27],[-1,-51],[-2,-74],[177,-42],[-89,2]],[[60529,86870],[-1,-76]],[[40829,29301],[21,26]],[[40850,29327],[-4,622]],[[40846,29949],[-243,-151]],[[40603,29798],[21,-99],[145,-84],[44,-134],[-107,-172],[123,-8]],[[31063,32957],[4,171]],[[30829,33713],[-175,-88],[-32,-131]],[[30622,33494],[182,-172],[-10,-72],[105,4],[-38,-188],[-141,76],[-72,-62]],[[30648,33080],[-44,-79],[285,-4],[41,-110],[133,70]],[[28904,34787],[43,-71],[137,71],[206,-87]],[[29290,34700],[-39,175],[34,-97],[228,-97],[332,2]],[[29845,34683],[-65,248],[-42,317]],[[29605,35235],[0,-145],[-197,47],[-156,-82]],[[29252,35055],[0,-135],[-265,-7],[-115,0],[-44,0],[76,-126]],[[28201,34824],[263,3],[206,1]],[[28670,34828],[25,25],[-253,278]],[[28197,35110],[4,-286]],[[28485,34368],[35,227],[0,1],[-86,12],[-163,39],[-30,-163],[46,-118],[198,2]],[[29163,33416],[59,201],[61,33],[125,57],[-74,92],[-12,195],[8,-78],[176,-1],[1,-77],[175,1],[131,136],[-354,323]],[[29459,34298],[-168,152],[-124,-24],[-60,98]],[[29107,34524],[-78,-49]],[[29029,34475],[117,-132],[-44,-77],[-99,57]],[[29003,34323],[-13,-134],[-94,-17]],[[28896,34172],[75,-107],[199,30],[67,-132],[-123,-47],[2,-2],[-615,-30],[0,24]],[[28501,33908],[-402,-3],[5,-308],[88,1]],[[28192,33598],[267,3],[136,-60],[34,-90]],[[28629,33451],[108,-79]],[[28737,33372],[21,1],[114,39],[291,4]],[[28717,33744],[150,73],[203,-48],[-52,-116],[-177,-45],[-24,116],[-100,20]],[[28485,34349],[10,-211]],[[28495,34138],[164,3],[69,78]],[[28728,34219],[26,15],[-115,139]],[[28639,34373],[-52,0]],[[28587,34373],[-74,-5],[-28,0]],[[28485,34368],[0,-19]],[[65764,85766],[-195,4],[23,-196]],[[65592,85574],[206,-5],[25,-153],[-22,1],[15,-209],[-213,99],[7,114],[-46,0]],[[65564,85421],[-145,5]],[[65419,85426],[-171,125],[-39,-42],[-169,177]],[[65040,85686],[-298,179],[12,61]],[[64754,85926],[-222,23],[-67,142]],[[65916,84337],[5,180],[222,102]],[[66143,84619],[-38,15],[-174,61],[-167,60],[6,198]],[[65770,84953],[-267,5],[-175,4],[-88,2],[10,305]],[[65250,85269],[-41,239],[140,-141],[251,-100],[123,-92],[155,-35],[13,-5],[32,-72],[202,-78],[402,65],[185,-29],[119,-19]],[[66831,85002],[97,80],[-49,154],[-30,1],[-193,6],[-62,-5],[-72,-92],[-114,14]],[[66408,85160],[-276,75],[42,30]],[[66174,85265],[8,16],[28,188],[-2,119],[21,116],[48,58],[-83,35],[-54,-63],[-43,-13],[-38,-88],[-118,23],[-125,110],[-52,0]],[[65858,86528],[0,-51],[-2,-153],[-11,-156],[-58,-63],[-7,-129]],[[65780,85976],[255,34]],[[66035,86010],[86,-32],[145,-94],[201,-29],[111,0]],[[66578,85855],[111,-69],[-50,-128]],[[66639,85658],[74,-46],[87,104],[74,-46]],[[66874,85670],[81,96],[-66,92],[-62,1],[51,84],[-37,218],[-133,1],[-118,147],[39,162]],[[66629,86471],[-89,-13],[-344,63],[45,201],[91,164],[186,100],[11,195]],[[66529,87181],[-151,-45],[-139,39],[-43,-389],[-152,-214],[-186,-44]],[[66264,83985],[354,-17]],[[66618,83968],[183,-9],[264,-10]],[[67065,83949],[9,277],[-45,77]],[[67029,84303],[-90,135],[42,148]],[[66981,84586],[-143,-42]],[[66838,84544],[-291,-41],[-7,-1],[-176,-26],[9,61],[-178,106],[-52,-24]],[[66143,84619],[-51,-286]],[[66838,84311],[-29,-151],[-274,10],[-267,5],[-180,4]],[[66088,84179],[-3,-154],[179,-40]],[[68095,85899],[5,153],[222,-8],[313,-10]],[[68635,86034],[128,297],[-431,16],[-133,5]],[[68199,86352],[-49,-152],[-316,-61],[-387,4],[-276,-262],[-54,-30],[269,-6],[-1,-154]],[[67385,85691],[89,-3],[260,-7],[-6,-154],[176,-4]],[[67904,85523],[8,153],[7,229],[176,-6]],[[68356,84432],[85,118],[-150,23]],[[68291,84573],[-343,-24],[-46,120]],[[67902,84669],[-110,3],[5,153]],[[67797,84825],[5,155],[-87,3]],[[67715,84983],[-3,-91],[-2,-66]],[[67710,84826],[-8,-153]],[[67702,84673],[-35,-39],[-119,-53],[7,-135]],[[68075,88460],[-307,-296],[-153,9],[-39,96]],[[67576,88269],[-32,-20]],[[67544,88249],[-81,-49]],[[67463,88200],[124,-180]],[[67587,88020],[78,-34],[-47,-95],[225,-48],[75,43],[142,-155]],[[68060,87731],[230,-110],[77,29]],[[68367,87650],[36,125],[212,26]],[[68615,87801],[-32,165]],[[68583,87966],[114,119]],[[68697,88085],[-21,29],[101,76],[-137,257]],[[68640,88447],[-112,32],[-112,1],[-92,97],[-249,-117]],[[69941,87295],[18,215],[127,85],[339,10],[135,-55],[9,184]],[[70569,87734],[-613,20],[-88,-16]],[[69868,87738],[-92,-83]],[[69776,87655],[-5,-126]],[[69771,87529],[-8,-228],[178,-6]],[[68912,87627],[108,-94]],[[69020,87533],[19,205],[212,32],[3,60]],[[69254,87830],[3,95]],[[69257,87925],[-300,8]],[[68957,87933],[-65,-54]],[[68892,87879],[56,-191],[-36,-61]],[[66939,87391],[113,63],[288,46]],[[67340,87500],[95,181]],[[67435,87681],[-119,13],[-40,103]],[[67276,87797],[-335,-27],[-221,176]],[[66680,87917],[156,-161],[103,-365]],[[69877,89849],[30,-23]],[[69907,89826],[65,47],[222,-44]],[[70194,89829],[47,40]],[[70241,89869],[137,142]],[[70378,90011],[16,39]],[[70394,90050],[-279,57]],[[70115,90107],[-123,-51]],[[69992,90056],[-115,-207]],[[70562,89600],[276,-127]],[[70838,89473],[68,137],[-19,264]],[[70887,89874],[-209,10],[-71,62],[-105,-192],[-50,-115],[110,-39]],[[69610,88827],[-233,37],[-67,-2],[-111,-17],[-307,30]],[[68892,88875],[-161,-172]],[[68731,88703],[199,-5],[58,-73],[204,-23],[55,124],[262,-197],[124,-3],[-6,-152]],[[69627,88374],[348,-9]],[[69975,88365],[11,227],[48,6],[56,222]],[[70090,88820],[-480,7]],[[71242,86873],[10,229],[9,249]],[[71261,87351],[-143,59]],[[71118,87410],[-117,50]],[[71001,87460],[-9,-200],[-37,-75],[20,-230],[91,-77],[176,-5]],[[71981,86786],[-123,29]],[[71858,86815],[-134,-50],[-138,-110]],[[71586,86655],[-24,-229],[330,166],[89,194]],[[70877,84901],[118,75]],[[70995,84976],[92,60]],[[71087,85036],[-190,13],[-20,-148]],[[71960,85092],[190,-6],[-6,157]],[[72144,85243],[1,36],[2,46]],[[72147,85325],[-355,-15]],[[71792,85310],[-10,-205]],[[71782,85105],[178,-13]],[[78484,87307],[2,29]],[[78486,87336],[-456,30],[-167,-2]],[[77863,87364],[-3,-74]],[[77860,87290],[-4,-79]],[[77856,87211],[-2,-59],[-179,-33],[-9,-208],[-176,7]],[[77490,86918],[21,-155],[-4,-154],[-9,-190],[-183,-104]],[[77315,86315],[-13,-312]],[[77302,86003],[177,-10],[9,200],[168,-43],[22,371],[495,280],[221,70]],[[78394,86871],[-7,18],[-6,150],[-172,5],[-82,158],[-123,4],[41,12],[439,89]],[[75840,84828],[175,-6],[25,-1]],[[76040,84821],[242,-8],[6,155],[254,-33],[8,-83]],[[76550,84852],[75,-49],[105,140]],[[76730,84943],[5,237],[-355,14],[-348,12],[-178,7],[-14,-385]],[[76974,86628],[181,-6]],[[77155,86622],[171,-6],[-8,308],[-219,9]],[[77099,86933],[-137,-151]],[[76962,86782],[12,-154]],[[77429,87570],[87,-72],[176,-18]],[[77692,87480],[-70,186],[-217,-24],[24,-72]],[[78486,87336],[93,69],[176,4]],[[78755,87409],[11,230]],[[78766,87639],[7,152]],[[78773,87791],[-268,-26]],[[78505,87765],[-9,-223]],[[78496,87542],[-10,-206]],[[78904,86862],[176,-5]],[[79080,86857],[12,199]],[[79092,87056],[-211,-11]],[[78881,87045],[23,-183]],[[69144,85483],[352,-11]],[[69496,85472],[4,78],[3,76]],[[69503,85626],[-174,83]],[[69329,85709],[-4,-77],[-175,3],[-2,-38],[-4,-114]],[[69126,89334],[163,-150]],[[69289,89184],[293,195],[63,91]],[[69645,89470],[-120,112],[-151,-136],[-64,54]],[[69310,89500],[-184,-166]],[[79461,87363],[-3,-60]],[[79458,87303],[40,-75],[137,67],[176,5]],[[79811,87300],[16,298]],[[79827,87598],[-146,5],[-209,11]],[[79472,87614],[-7,-157],[-4,-94]],[[27129,36408],[113,-34],[113,65],[73,92],[-2,77],[-1,79]],[[27425,36687],[-70,54],[21,-139],[-164,-1],[-88,-61]],[[27124,36540],[-28,-26]],[[27096,36514],[33,-106]],[[26031,36110],[19,-79],[27,39],[376,39],[2,5]],[[26455,36114],[8,24]],[[26463,36138],[-64,39]],[[26399,36177],[-136,84],[-95,149]],[[26806,35352],[247,20]],[[27053,35372],[-3,153],[89,49]],[[27139,35574],[-87,107],[368,6],[134,-33],[25,-192]],[[27579,35462],[51,1],[-3,77],[36,77],[226,20],[43,-71],[14,32],[-102,100],[-91,91]],[[27753,35789],[-20,141],[-201,79],[-151,-170],[-73,-2]],[[27308,35837],[-177,-4],[-253,-9]],[[26878,35824],[-23,-155],[-25,-161]],[[26830,35508],[-24,-156]],[[27563,35211],[19,104]],[[27582,35315],[-2,71]],[[27580,35386],[-351,-9]],[[27229,35377],[-146,-4]],[[27083,35373],[-85,-171],[565,9]],[[27889,35852],[286,-12],[-77,103],[-226,38],[-128,46]],[[27744,36027],[145,-175]],[[28175,37671],[354,5],[-1,119]],[[28528,37795],[-81,80],[-273,-86]],[[28174,37789],[1,-118]],[[28418,40127],[-307,13],[6,-459],[160,1],[80,0]],[[28357,39682],[110,277]],[[28467,39959],[63,112]],[[28530,40071],[-131,-6],[19,62]],[[26799,54768],[132,-131],[321,19],[-2,36]],[[27250,54692],[-7,98],[-108,40],[-175,11]],[[26960,54841],[-161,-73]],[[27282,55283],[-23,-117],[-253,-52],[-295,-139],[65,-143],[184,9]],[[26960,54841],[170,121],[169,-62],[44,74],[194,211],[72,35]],[[27609,55220],[133,40],[131,134],[-61,114],[-231,12],[5,-158],[-218,-180],[-86,101]],[[64271,84964],[90,95],[300,-11]],[[64661,85048],[7,181],[-87,220],[-186,-79],[-170,-247]],[[64225,85123],[46,-159]],[[63993,84609],[175,-5],[177,-7],[132,-2],[7,153]],[[64484,84748],[-221,6],[6,152]],[[64269,84906],[-205,6],[-70,-72]],[[63994,84840],[-1,-231]],[[65208,83992],[180,62],[2,139],[-174,48]],[[65216,84241],[-304,-98],[-137,-7]],[[64775,84136],[-143,3],[-193,-7],[-111,3],[-1,-41],[-1,-36],[109,-2],[143,-4],[99,-2],[90,-2],[88,-3],[175,-60],[-3,-21],[181,28]],[[65225,84503],[7,231]],[[65232,84734],[-661,11]],[[64571,84745],[-9,-229],[82,-2],[138,-4],[132,-4],[88,-2],[223,-1]],[[65623,82958],[611,-32]],[[66234,82926],[10,171],[74,0]],[[66318,83097],[-74,87],[-105,95],[-247,-19],[-133,13]],[[65759,83273],[-136,-315]],[[65694,83882],[-489,7]],[[65205,83889],[-5,-149]],[[65200,83740],[44,-4]],[[65244,83736],[96,-156],[33,1],[305,-6],[313,-7],[5,0]],[[65996,83568],[-7,179],[-86,-3],[2,133]],[[65905,83877],[-211,5]],[[66584,82876],[134,-84],[89,25]],[[66807,82817],[2,191],[134,-3],[18,-94]],[[66961,82911],[180,109]],[[67141,83020],[-13,207]],[[67128,83227],[-307,7]],[[66821,83234],[-224,5],[-4,-148]],[[66593,83091],[-9,-215]],[[68210,83958],[-113,-8],[-12,1]],[[68085,83951],[34,-130],[-94,-75],[-49,-71]],[[67976,83675],[168,-8],[-12,-170]],[[68132,83497],[-2,-39],[129,-4],[4,118],[110,-2],[3,91],[115,-3]],[[68491,83658],[80,64],[161,-3]],[[68732,83719],[9,240]],[[68741,83959],[-177,4],[-177,4],[-177,-9]],[[69201,83181],[58,-151]],[[69259,83030],[156,-1],[93,150],[263,1],[6,189],[94,106],[268,-1]],[[70139,83474],[3,31]],[[70142,83505],[-342,136]],[[69800,83641],[-238,71],[-121,-18],[-91,-21],[-182,-60]],[[69168,83613],[-88,-45]],[[69080,83568],[-92,-74]],[[68988,83494],[84,-157],[134,-3]],[[69206,83334],[110,134],[118,-20],[52,-120],[-280,6]],[[69206,83334],[-3,-76],[-2,-77]],[[69404,84212],[-6,255],[-292,-184]],[[69106,84283],[247,-133],[51,62]],[[69981,84083],[153,80],[126,-84],[335,-12],[79,-167],[156,-52],[30,239],[89,43]],[[70949,84130],[-198,7],[-18,77],[-88,2]],[[70645,84216],[-88,2],[-361,11],[-241,68]],[[69955,84297],[-144,-53]],[[69811,84244],[-7,-158],[177,-3]],[[66148,79346],[517,-9]],[[66665,79337],[353,-8],[-3,-155],[-266,8],[-87,40]],[[66662,79222],[-9,-420]],[[66653,78802],[337,-23],[266,-28],[1,39],[267,-5],[-3,-64]],[[67521,78721],[303,-30]],[[67824,78691],[-258,394],[-151,234],[-150,233]],[[67265,79552],[-101,157]],[[67164,79709],[-48,77],[-667,18],[-289,-112],[-12,-346]],[[67802,79241],[52,-167],[232,13],[49,-68]],[[68135,79019],[149,-73],[98,0],[430,-194],[108,1]],[[68920,78753],[12,288],[-175,6],[365,294],[352,-9]],[[69474,79332],[310,274]],[[69784,79606],[-563,38]],[[69221,79644],[-88,3],[-10,-303],[-168,2],[2,306]],[[68957,79652],[-471,17]],[[68486,79669],[11,-221],[-59,-89],[-154,-68],[-36,77],[-265,8]],[[67983,79376],[-7,-153],[-174,18]],[[67568,79697],[340,-11],[7,230],[-264,8],[-78,79],[-224,6]],[[67349,80009],[219,-312]],[[68486,79669],[146,359],[71,240]],[[68703,80268],[-262,-15],[-222,-28],[-188,-24]],[[68031,80201],[40,-242],[14,-39],[150,-248],[24,-1],[227,-2]],[[68031,80201],[-90,383]],[[67941,80584],[-2,4]],[[67939,80588],[-170,15],[-8,-146],[33,-288],[96,13],[141,19]],[[80528,82685],[355,-18]],[[80883,82667],[21,459]],[[80904,83126],[-176,5],[-6,-150],[-260,17]],[[80462,82998],[77,-84],[-11,-229]],[[68716,82120],[-106,-20],[-4,122]],[[68606,82222],[-171,58],[-228,-63],[19,-116],[-64,-168],[109,-139],[261,249],[184,77]],[[71934,81973],[189,-53]],[[72123,81920],[44,127]],[[72167,82047],[-255,3]],[[71912,82050],[22,-77]],[[72472,81741],[244,-91]],[[72716,81650],[107,111]],[[72823,81761],[-179,46],[110,102],[3,219]],[[72757,82128],[-38,-6]],[[72719,82122],[-262,-164],[17,-51],[-2,-166]],[[70723,75506],[-384,71],[79,-86],[-6,-153],[177,-1],[-3,-94]],[[70586,75243],[175,-3],[184,-17],[-67,-49]],[[70878,75174],[52,-44]],[[70930,75130],[315,123],[283,-16],[3,59],[-87,174],[-350,9],[-371,27]],[[70035,98021],[44,-41],[-1,-43],[-4,-99],[29,-4],[108,-4],[84,0],[44,-1],[2,119],[3,107],[-88,3],[-52,18],[-93,-19],[-102,2],[26,-38]],[[70164,98011],[0,0]],[[69063,97342],[81,-21],[127,126],[50,-170],[9,-3],[145,-63],[66,56],[26,82],[-3,35],[-7,45],[44,197],[70,-10],[146,-39],[211,-53],[14,-8]],[[70042,97516],[4,133]],[[70046,97649],[-96,4],[-81,13],[-137,-13],[87,141],[60,61],[-21,15]],[[69858,97870],[-39,-22]],[[69819,97848],[-150,-45],[-77,-46],[-139,-51],[-50,-29],[-111,17],[-181,28]],[[69111,97722],[-48,-380]],[[68892,96901],[-14,-81],[69,-81],[3,-11]],[[68950,96728],[130,-269],[-106,-565]],[[68974,95894],[160,156],[56,222],[275,143]],[[69465,96415],[-152,61],[-91,6]],[[69222,96482],[-44,18],[-30,192],[-71,18],[127,73],[-85,101],[-227,17]],[[68942,95775],[18,9]],[[68960,95784],[-13,8]],[[68947,95792],[-5,-17]],[[69358,95591],[-94,-198]],[[69264,95393],[151,2],[99,-66],[58,69],[223,34],[114,0]],[[69909,95432],[-1,36]],[[69908,95468],[0,289],[-1,19],[-114,-19],[-314,39],[-57,-64]],[[69422,95732],[-13,-27],[31,-111],[-82,-3]],[[69351,96123],[105,-8],[148,-140],[76,6],[248,-169],[222,-52]],[[70150,95760],[7,64],[-188,56],[-114,141],[37,68],[160,-36],[-14,86],[125,-11],[119,97]],[[70282,96225],[-281,161],[-386,51]],[[69615,96437],[-73,-161],[-191,-153]],[[70868,96926],[-251,-33]],[[70617,96893],[58,-128]],[[70675,96765],[282,-131],[168,-9],[177,22],[128,109]],[[71430,96756],[-30,35],[-115,62],[257,134]],[[71542,96987],[-115,159],[-212,-2]],[[71215,97144],[-144,-134]],[[71071,97010],[6,-2],[-90,-104],[-119,22]],[[70719,97012],[156,111]],[[70875,97123],[-184,150],[-7,16],[-161,38]],[[70523,97327],[16,-69],[78,-8],[5,-162],[-1,-132],[98,56]],[[72051,98931],[5,149],[72,140],[-5,145],[301,-102]],[[72424,99263],[180,175],[5,156],[-1248,26]],[[71361,99620],[11,-58],[21,-108],[4,-75],[-1,-42],[79,-143],[6,-2],[289,-106],[281,-155]],[[70444,98844],[88,407],[45,56],[-12,89],[-44,46],[-120,19]],[[70401,99461],[-48,-347],[-96,-187]],[[70257,98927],[187,-83]],[[72299,97791],[-45,194],[-168,168],[119,164],[-109,294]],[[72096,98611],[-60,5],[-105,-42],[-142,86]],[[71789,98660],[-170,-139],[-116,37],[88,-150],[-37,-93]],[[71554,98315],[54,-93],[43,98],[193,-64],[99,-122],[9,-76],[84,-114],[174,-154],[89,1]],[[72438,97150],[347,-44]],[[72785,97106],[13,191],[42,-28],[67,192],[-206,131]],[[72701,97592],[-125,-46]],[[72576,97546],[78,-113],[2,-155],[-119,2]],[[72537,97280],[-99,-130]],[[72031,97216],[-112,3]],[[71919,97219],[-25,-130]],[[71894,97089],[-50,-211]],[[71844,96878],[-1,-40],[225,-2],[4,61],[14,63],[-10,121],[-1,89],[-42,46],[-2,0]],[[70033,94662],[188,20],[138,-85],[30,-156],[179,19],[119,73],[185,-68]],[[70872,94465],[-15,38]],[[70857,94503],[-58,243],[-139,96]],[[70660,94842],[-281,50],[-11,186]],[[70368,95078],[-448,-47],[-84,-43]],[[69836,94988],[-55,-70],[252,-256]],[[70278,95291],[157,-154]],[[70435,95137],[181,-21]],[[70616,95116],[-8,133]],[[70608,95249],[-77,256]],[[70531,95505],[-87,24],[-115,-37],[-53,-118],[2,-83]],[[70938,95349],[-2,-126],[79,-156]],[[71015,95067],[-31,195]],[[70984,95262],[6,333]],[[70990,95595],[-131,38],[-87,-10],[-9,-156],[177,-3],[-2,-115]],[[71197,94886],[162,26],[23,396]],[[71382,95308],[-45,0],[1,-116],[-183,-34],[62,-149],[-20,-123]],[[68985,95183],[-76,-141]],[[68909,95042],[-5,-4]],[[68904,95038],[72,-21]],[[68976,95017],[174,8],[148,101],[-1,183]],[[69297,95309],[-39,6]],[[69258,95315],[-231,34]],[[69027,95349],[-42,-166]],[[68474,94206],[11,-7],[339,11],[2,7],[7,28]],[[68833,94245],[71,186]],[[68904,94431],[-234,32],[-136,5]],[[68534,94468],[-60,-262]],[[68459,92472],[391,-59],[169,-84]],[[69019,92329],[83,76]],[[69102,92405],[-12,19]],[[69090,92424],[-445,139]],[[68645,92563],[-84,24],[-109,-72],[7,-43]],[[69141,91048],[-313,76]],[[68828,91124],[24,-213],[148,-132],[153,71],[-12,198]],[[69163,92498],[52,223]],[[69215,92721],[-223,8]],[[68992,92729],[46,-185],[125,-46]],[[69198,93758],[-362,23],[-43,182],[55,105],[-127,31],[-172,-104]],[[68549,93995],[-84,-149],[-194,26]],[[68271,93872],[-125,-230]],[[68146,93642],[229,47],[147,-108],[-162,-46]],[[68360,93535],[117,-142]],[[68477,93393],[74,-95]],[[68551,93298],[123,12]],[[68674,93310],[96,-27],[8,171]],[[68778,93454],[91,80],[117,-176],[91,80]],[[69077,93438],[22,169],[126,-49],[110,-158]],[[69335,93400],[19,-26]],[[69354,93374],[100,52]],[[69454,93426],[-136,220],[-120,112]],[[69454,93126],[142,-2],[129,74]],[[69725,93198],[-70,153],[-144,56]],[[69511,93407],[-57,19]],[[69454,93426],[-145,-216],[145,-84]],[[69949,93193],[45,-121],[256,-39],[199,323]],[[70449,93356],[26,48],[10,46],[-237,13],[-14,-6]],[[70234,93457],[-110,26],[-182,-272],[7,-18]],[[70116,93654],[203,63]],[[70319,93717],[-58,60],[5,240],[-100,159],[-167,55],[-96,133],[-7,-153],[-107,-113]],[[69789,94098],[142,-190],[-58,-130],[14,-102],[229,-22]],[[70873,94362],[-230,-52],[-137,-75]],[[70506,94235],[77,-136],[144,22],[134,180],[12,61]],[[72668,94510],[161,103],[8,229]],[[72837,94842],[-134,3],[-232,-82],[118,-109],[-21,-96],[100,-48]],[[73391,94590],[-61,237],[-112,81],[-245,7]],[[72973,94915],[-2,-38]],[[72971,94877],[11,-228],[-79,-230]],[[72903,94419],[-30,-75],[21,-77],[273,31],[11,191],[80,103],[133,-2]],[[73660,96611],[182,78],[590,41]],[[74432,96730],[-204,6],[-74,170],[-221,37],[-112,-145],[-175,-120],[14,-67]],[[17350,44594],[5,83],[6,50],[3,30],[-127,20],[-52,11],[-73,12],[-128,-38]],[[16984,44762],[80,-212],[136,68],[150,-24]],[[16797,45627],[-46,-289]],[[16751,45338],[68,3],[43,16],[94,48],[15,58],[-4,58],[131,64],[-1,47]],[[17549,45497],[29,-22],[19,-5],[126,61],[-37,29],[-52,37],[-85,26],[-25,-60],[25,-66]],[[28448,41157],[26,64]],[[28474,41221],[-87,-5],[-2,164],[0,154]],[[28385,41534],[-265,-4],[2,-318],[-4,-459],[129,2],[38,115],[-63,102],[226,103],[0,82]],[[31133,44750],[141,90],[205,-53],[8,165],[89,2],[1,195],[-176,-108],[-265,-22],[-3,-269]],[[28852,44893],[167,1],[4,81]],[[29023,44975],[-172,-7],[-1,153]],[[28850,45121],[-449,-18],[-16,-30]],[[28385,45073],[-47,-63],[343,-118],[171,1]],[[29186,44237],[8,352]],[[29194,44589],[-94,-1],[-86,-1],[-87,-1],[2,154],[-82,-1]],[[28847,44739],[-17,-461],[21,-190],[335,149]],[[34374,67936],[357,43],[194,116]],[[34925,68095],[-74,204],[36,89],[-206,-127],[-304,-138]],[[34377,68123],[-3,-187]],[[32218,70064],[16,-2]],[[32234,70062],[216,-20],[-60,85],[181,182]],[[32571,70309],[-255,135]],[[32316,70444],[-17,-176],[-81,-204]],[[32201,71180],[79,-218],[55,-354],[-76,-74]],[[32259,70534],[98,-44],[76,117],[129,-65],[315,57]],[[32877,70599],[-185,47],[-160,174],[175,39]],[[32707,70859],[-202,88],[112,178]],[[32617,71125],[213,64]],[[32830,71189],[-205,166],[-201,-18],[-104,-71],[51,-87],[-170,1]],[[34471,71739],[-14,84],[-260,-1]],[[34197,71822],[-6,-113],[1,-1],[-382,-391]],[[33810,71317],[138,-173],[-54,-96]],[[33894,71048],[120,31]],[[34014,71079],[117,99],[-3,-108],[212,-165],[342,132],[43,46],[-92,219],[53,44],[181,118],[56,103]],[[34923,71567],[-404,146]],[[34519,71713],[-120,-139],[-15,-51],[-42,-151],[138,-22],[22,-45],[-243,20],[43,79],[-100,215],[31,-36],[179,57],[59,99]],[[34855,73054],[65,-119]],[[34920,72935],[112,-71],[171,141],[105,-135],[204,140],[-165,131],[110,59],[139,-32],[-221,134]],[[35375,73302],[-93,-47],[57,73],[-50,119],[-186,-107],[-100,53]],[[35003,73393],[0,-87]],[[35003,73306],[-15,-190],[-133,-62]],[[35870,73810],[57,-49],[119,116],[106,-82],[152,222]],[[36304,74017],[-98,76],[132,173],[-224,103],[-222,-42],[-315,-14],[94,-362],[124,18],[128,-97],[-53,-62]],[[33910,68861],[114,-12],[217,73],[130,224]],[[34371,69146],[-162,-133],[37,261],[124,129],[181,271],[15,77]],[[34566,69751],[-43,21],[-191,-176],[-129,-49]],[[34203,69547],[-210,-206],[16,-255],[-113,-94],[14,-131]],[[17251,45804],[242,113]],[[17493,45917],[-47,122],[-105,50],[-68,-40],[-80,24],[-98,-165],[146,-62],[10,-42]],[[17775,46113],[180,-77]],[[17955,46036],[62,102],[-60,152],[-108,11],[100,119]],[[17949,46420],[-223,-7]],[[17726,46413],[-125,-43]],[[17601,46370],[-65,-15]],[[17536,46355],[-101,-154],[100,0],[171,-19],[69,-69]],[[16818,46646],[23,-194]],[[16841,46452],[115,58],[104,-93]],[[17060,46417],[106,157],[95,17]],[[17261,46591],[69,247],[-190,97],[115,74],[-92,125]],[[17163,47134],[-57,-3]],[[17106,47131],[-153,-350],[-134,-95],[-1,-40]],[[17829,47147],[98,-117],[88,-34],[152,28],[38,91],[-11,96],[160,-67],[53,74],[-91,84],[99,49]],[[18415,47351],[-7,74],[-194,68],[179,235],[-84,52]],[[18309,47780],[-60,-44]],[[18249,47736],[-145,-216],[-106,-170],[-169,-203]],[[19062,47651],[124,48]],[[19186,47699],[96,196]],[[19282,47895],[-25,2]],[[19257,47897],[-35,40],[-42,-40],[-91,-92],[-85,-85],[-46,-48],[104,-21]],[[19700,48792],[-69,31],[-283,-148]],[[19348,48675],[-43,-87],[88,-120]],[[19393,48468],[68,-193],[64,-73],[60,49],[59,-54],[140,-65],[169,55],[-62,127],[-209,-7],[76,44],[-41,50],[-84,104],[-18,23],[-154,112],[265,-1],[3,3]],[[19996,47873],[271,-58],[83,84]],[[20350,47899],[-259,260]],[[20091,48159],[-29,53],[-153,-102],[-129,7],[31,-62]],[[19811,48055],[45,-150],[140,-32]],[[44368,80520],[139,-86],[-26,-56]],[[44481,80378],[118,-13],[54,115],[144,40]],[[44797,80520],[1,15]],[[44798,80535],[-266,55],[-203,-11]],[[44329,80579],[39,-59]],[[45831,80809],[227,-73]],[[46058,80736],[171,128],[71,-17]],[[46167,81021],[-69,-62],[-275,-65]],[[45823,80894],[8,-85]],[[35996,75580],[160,1],[97,118],[192,-40]],[[36445,75659],[-17,194],[-97,13]],[[36331,75866],[-112,-78],[-292,-108]],[[35927,75680],[69,-100]],[[37350,75055],[-183,-41],[-438,-8]],[[36729,75006],[4,-77],[-11,-76],[94,2],[3,-130]],[[22873,49822],[121,-1]],[[22994,49821],[87,99],[-7,4],[-30,21],[-36,24],[-106,76]],[[22902,50045],[-27,-31]],[[22875,50014],[-121,-138],[119,-54]],[[23745,50072],[56,89],[206,-22],[-262,-67]],[[23745,50072],[-62,-71],[28,-109],[317,-70],[-27,-62]],[[24001,49760],[128,-103]],[[24129,49657],[204,402],[4,109],[-176,283],[-60,167]],[[24101,50618],[-459,-339],[-270,-64]],[[23372,50215],[-1,-5],[-3,-93],[73,-54],[21,2],[125,52],[155,-43],[3,-2]],[[21679,49098],[220,73],[159,46],[56,13]],[[22114,49230],[238,56],[145,84]],[[22497,49370],[-28,33],[-66,69]],[[22403,49472],[-105,84]],[[22298,49556],[-95,-55],[-106,-47],[-113,30],[-25,0],[-23,0],[-53,-146],[-110,-47],[-101,-4]],[[21672,49287],[7,-189]],[[21492,50644],[172,111]],[[21664,50755],[134,-33],[62,15]],[[21860,50737],[-2,71]],[[21858,50808],[-91,53],[6,124],[-112,-46],[-49,129]],[[21612,51068],[-174,-115],[-168,-43]],[[21270,50910],[114,-85],[108,-181]],[[20771,50160],[282,14],[88,-88]],[[21141,50086],[72,58]],[[21213,50144],[-3,298]],[[21210,50442],[-165,82]],[[21045,50524],[-147,-2],[-143,-145],[109,3],[3,-103],[-96,-117]],[[20066,49088],[187,-126]],[[20253,48962],[100,-24],[4,211],[73,166],[59,46]],[[20489,49361],[15,90]],[[20504,49451],[-134,-106],[-175,-60],[-129,-197]],[[25045,51860],[-70,-101],[-117,98],[-95,-104]],[[24763,51753],[-162,-183]],[[24601,51570],[121,-87]],[[24722,51483],[40,49],[112,-67],[70,50],[244,-49],[233,167],[129,4]],[[25550,51637],[-31,9],[20,159],[-178,88],[51,97],[-239,87]],[[25173,52077],[-128,-217]],[[24834,52767],[541,112]],[[25375,52879],[-26,235]],[[25349,53114],[-111,12]],[[25238,53126],[-148,2],[-105,-173],[-183,-26],[32,-162]],[[21574,53241],[-18,82]],[[21556,53323],[-4,-1],[-231,-14]],[[21321,53308],[116,-194],[93,11],[44,116]],[[21106,52651],[151,159],[-68,180],[63,124],[-15,178]],[[21237,53292],[-28,39],[-28,11],[-51,92],[-134,68]],[[20996,53502],[-71,-82]],[[20925,53420],[60,-26],[-27,-231]],[[20958,53163],[15,-97],[216,235],[-65,-272],[-132,-355],[114,-23]],[[20626,53573],[348,19]],[[20974,53592],[43,-16],[17,110]],[[21034,53686],[-240,36],[-114,-48]],[[20680,53674],[-54,-101]],[[23722,53551],[231,-68],[-69,97],[84,130],[89,-70],[131,162],[-166,204]],[[24022,54006],[-87,-90],[-180,3],[-83,-50]],[[23672,53869],[56,-112],[-6,-206]],[[18748,16323],[-103,-133],[101,-12],[7,-248],[-146,-15],[0,-103],[-310,-163],[10,-4]],[[18307,15645],[37,-25],[152,-159],[133,113],[131,-39],[-4,-28],[38,-65],[124,52],[-22,264],[153,89]],[[19049,15847],[-25,267],[-72,81],[-115,-5],[-89,133]],[[19228,15272],[142,-33],[183,89]],[[19553,15328],[146,326]],[[19699,15654],[-113,-30]],[[19586,15624],[-298,-174],[-29,-115],[-31,-63]],[[18812,14377],[119,-38],[246,31],[3,-10]],[[19180,14360],[49,180]],[[19229,14540],[-180,129],[-95,-7],[-68,-147],[-135,-26]],[[18751,14489],[61,-112]],[[19422,16688],[156,121]],[[19578,16809],[216,176],[7,280],[-78,-52]],[[19723,17213],[-328,-331],[-85,-87]],[[19310,16795],[112,-107]],[[16998,2962],[-131,320],[-89,-11]],[[16778,3271],[-125,-100],[221,-141],[-116,-111],[240,43]],[[19933,41406],[244,148]],[[20177,41554],[19,9],[211,56],[46,126],[-104,75]],[[20349,41820],[-76,-39]],[[20273,41781],[-149,-54]],[[20124,41727],[-68,-57],[-166,90]],[[19890,41760],[-52,-167],[98,31],[-3,-218]],[[21067,39777],[271,-451]],[[21338,39326],[142,17]],[[21480,39343],[-23,228],[-59,79]],[[21398,39650],[-214,113],[-117,14]],[[22431,38960],[353,56]],[[22784,39016],[-2,99]],[[22782,39115],[-233,-4]],[[22549,39111],[-120,1],[0,-66],[-182,-36],[3,-59],[181,9]],[[21567,39220],[68,-111]],[[21635,39109],[305,-153]],[[21940,38956],[-2,184],[-108,85],[57,96],[154,6]],[[22041,39327],[-343,51]],[[21698,39378],[0,-146],[-131,-12]],[[23264,37902],[168,4],[90,-26],[-8,-183]],[[23514,37697],[193,-163],[-22,761],[-442,-11],[-86,-2],[9,-281],[98,-99]],[[15487,39385],[477,313]],[[15964,39698],[-106,124],[-57,-38],[-234,-153],[-43,50],[-45,57]],[[15479,39738],[-101,-90],[43,-264],[66,1]],[[15040,37962],[114,-24],[113,-28]],[[15267,37910],[112,265],[-13,109],[100,64],[11,120],[-190,33]],[[15287,38501],[-20,-15]],[[15267,38486],[-168,-310],[-59,-214]],[[14989,37148],[133,-28],[31,94],[147,19],[83,199]],[[15383,37432],[-71,260],[59,53]],[[15371,37745],[-108,32]],[[15263,37777],[-20,-153],[-75,-68],[-147,38]],[[15021,37594],[-48,8]],[[14973,37602],[-103,-113]],[[14870,37489],[-104,-178],[66,-113],[157,-50]],[[14745,38155],[138,-19],[104,-1]],[[14987,38135],[-16,403],[30,70],[3,44]],[[15004,38652],[-9,54]],[[14995,38706],[-267,-36],[17,-515]],[[13958,38635],[-115,-155],[-150,-104],[0,-86]],[[13693,38290],[28,-7],[-245,-244],[327,-71],[108,22]],[[13911,37990],[131,146],[-16,92],[150,85],[19,112],[272,208]],[[14467,38633],[-368,-26],[-141,28]],[[30608,46130],[135,-11]],[[30743,46119],[171,159]],[[30914,46278],[-55,8],[14,224],[271,2]],[[31144,46512],[0,36],[-128,176],[-98,29],[43,150]],[[30961,46903],[-219,14],[-1,-329],[-132,0],[0,-77],[-1,-381]],[[31846,46826],[198,-3],[176,-94]],[[32220,46729],[146,180],[-121,-1],[-46,306]],[[32199,47214],[-1,77]],[[32198,47291],[-340,-25]],[[31858,47266],[5,-208],[-18,-149],[1,-83]],[[29909,48199],[155,-76],[215,333],[-157,77]],[[30122,48533],[-213,-334]],[[30726,50403],[16,-598],[557,11],[-171,168],[10,59]],[[25669,31575],[-8,-87],[-209,-44]],[[25452,31444],[-3,-347]],[[25449,31097],[177,15],[-13,-127],[31,-87],[97,61]],[[24854,30672],[528,5]],[[25382,30677],[75,-1],[0,1],[-3,153]],[[25454,30830],[-515,-5]],[[24939,30825],[-85,-2],[0,-151]],[[25670,30450],[-214,-80],[-82,0],[-5,301]],[[25369,30671],[-172,-119],[8,-338]],[[25205,30214],[2,-43],[297,0],[117,82]],[[25647,30395],[237,-9],[4,121]],[[25888,30507],[19,107],[159,-12]],[[26066,30602],[-127,141],[78,70],[216,-49]],[[26233,30764],[-33,73],[-94,56],[73,96]],[[26179,30989],[-56,0]],[[26123,30989],[-243,-229],[-73,60]],[[19704,19797],[133,-34],[-35,-207],[16,-214],[203,108],[24,146],[85,-18]],[[20130,19578],[-63,52],[80,105],[50,64]],[[20197,19799],[-11,80],[102,177],[-262,10]],[[20026,20066],[-106,103],[-176,40],[-9,-104],[128,3],[14,-289],[-173,-22]],[[47168,57834],[7,301]],[[47175,58135],[-180,5]],[[46995,58140],[-1,-151],[-178,-5],[1,152]],[[46817,58136],[-173,-1]],[[46644,58135],[-16,-306]],[[47793,60043],[-84,86],[2,153],[-84,65]],[[47627,60347],[-350,-62],[-175,0],[2,156]],[[47104,60441],[-411,-17]],[[46693,60424],[-104,-134],[249,-5],[-3,-304],[846,-2],[112,64]],[[47888,60281],[409,-6],[249,-75]],[[48546,60200],[3,232],[-43,7]],[[48506,60439],[-530,1]],[[47976,60440],[-89,-2],[-83,1],[-174,0]],[[47630,60439],[51,-81]],[[47681,60358],[205,8],[2,-85]],[[49033,60588],[529,2],[-1,153],[-3,229],[-354,-21],[0,95],[-175,0]],[[49029,61046],[-3,-306],[7,-152]],[[47978,60588],[354,-2]],[[48332,60586],[-1,305],[-350,-18]],[[47981,60873],[-88,5],[0,-136]],[[47893,60742],[-4,-156],[89,2]],[[49568,61727],[273,-23]],[[49841,61704],[163,17]],[[50004,61721],[7,155],[-78,77],[-338,-73],[-27,-153]],[[46996,61744],[127,-2],[3,77],[202,-3],[-19,-91],[3,-29],[185,-29],[1,147],[0,152]],[[47498,61966],[-136,2],[-408,6],[42,-230]],[[50837,63437],[130,-40],[-2,115],[-128,-75]],[[50363,63320],[303,3]],[[50666,63323],[-2,113],[-265,3],[-36,-119]],[[47947,65176],[-1,-153],[350,-3],[4,384],[-169,9],[-97,-83],[0,-155],[-87,1]],[[48300,80370],[-113,259],[-267,261]],[[47920,80890],[26,-209],[109,-258],[245,-53]],[[49112,81871],[188,-93],[204,-157]],[[49504,81621],[94,143]],[[49598,81764],[74,134],[-98,127]],[[49574,82025],[-175,-134],[-174,110],[-113,-130]],[[48812,82017],[-89,14],[-189,31]],[[48534,82062],[44,-137],[-23,-175],[54,-109],[124,121],[79,255]],[[48136,81897],[87,-111],[149,182]],[[48372,81968],[-70,68]],[[48302,82036],[-134,-37]],[[48168,81999],[-29,-7],[-3,-95]],[[49076,82420],[-278,49]],[[48798,82469],[-404,0]],[[48394,82469],[-26,-185],[-107,-126],[41,-122]],[[48302,82036],[84,50]],[[48386,82086],[135,78],[62,-7],[267,128],[186,94],[31,12]],[[49067,82391],[23,9],[143,101]],[[49233,82501],[-40,56],[-117,-137]],[[49373,82767],[133,1],[15,-133],[-135,0],[-5,-65]],[[49381,82570],[391,30]],[[49772,82600],[90,130],[16,135],[-328,1]],[[49550,82866],[-177,-1],[0,-98]],[[49847,82514],[255,-239],[263,-75]],[[50365,82200],[-1,39]],[[50364,82239],[-79,25],[-54,229],[47,28]],[[50278,82521],[0,57],[1,48]],[[50279,82626],[-507,-26]],[[49772,82600],[75,-86]],[[50382,83211],[105,-121],[205,-19],[-13,140],[-109,57],[-188,-57]],[[51883,83060],[196,-76]],[[52079,82984],[154,64]],[[52233,83048],[81,5],[69,5],[279,130],[19,-87],[-156,-111]],[[52525,82990],[76,-247]],[[52601,82743],[-23,-144],[-56,-84]],[[52522,82515],[65,-236]],[[52587,82279],[119,-1]],[[52706,82278],[-25,51],[3,176],[178,19]],[[52862,82524],[353,136],[87,8]],[[53302,82668],[-4,99],[16,227]],[[53314,82994],[-168,-37]],[[53146,82957],[33,-208],[-272,-28],[-187,41],[50,75],[31,273],[-48,140],[-7,10]],[[52746,83260],[-236,149]],[[52510,83409],[-258,32],[-69,-234],[-384,7]],[[51799,83214],[142,-88],[-58,-66]],[[52330,82322],[58,93],[-95,102]],[[52293,82517],[-190,62],[6,55],[24,63],[-4,48],[-74,137]],[[52055,82882],[25,92],[-178,-54],[11,-127],[-190,-107],[-33,-23]],[[51690,82663],[-1,-121],[413,-135],[228,7],[0,-92]],[[52611,81876],[106,39],[150,-74],[334,90]],[[53201,81931],[1,67],[2,121],[-88,2]],[[53116,82121],[-88,1],[-1,-77],[-184,-22]],[[52843,82023],[-191,6],[-112,-162],[71,9]],[[25827,36957],[-2,-339]],[[25825,36618],[442,-98]],[[26267,36520],[-10,267]],[[26257,36787],[5,19],[178,3]],[[26317,37159],[-244,-49]],[[26073,37110],[183,-210],[-202,-1]],[[26054,36899],[-6,-94],[-221,152]],[[23726,36919],[132,5]],[[23858,36924],[113,0],[88,6],[90,3],[57,2],[123,52],[-90,109]],[[23545,37113],[5,-197],[176,3]],[[19423,44161],[86,116],[-251,43],[-16,27],[86,49],[60,-7],[121,9],[72,-25],[18,11],[60,-102],[134,-11]],[[19895,44356],[-224,136],[89,118],[35,34],[81,96]],[[20306,45461],[28,91],[105,134],[17,14],[9,-79],[164,17],[13,0],[102,53],[37,-3],[142,9],[-2,52],[180,13]],[[21101,45762],[8,24]],[[21109,45786],[-55,83],[143,-20]],[[21197,45849],[2,219]],[[21038,46162],[-46,17],[97,122],[-113,13],[22,32]],[[21116,46585],[-103,87],[-24,-172],[-79,21],[-10,156],[-54,-86],[-127,0]],[[20719,46591],[-164,-86],[-85,-87],[-7,-135],[94,3],[-71,-133],[-18,-33],[-105,37],[-125,14],[-171,-11]],[[20067,46160],[-11,-33]],[[20056,46127],[81,-82],[-75,-167],[-41,-136],[10,-70],[-94,-92],[-60,-69]],[[19877,45511],[-10,-12],[29,-119],[-86,-86],[-28,-27],[-41,-42],[-29,-29]],[[19712,45196],[19,-107],[-40,-22],[-106,-58],[-99,81],[11,104]],[[19497,45194],[-3,3],[-8,14],[-115,45],[-38,137],[-181,-29]],[[19152,45364],[102,-115],[-18,-54],[-61,-25],[-72,-29],[-145,-94],[-111,-21]],[[19015,44795],[5,3],[40,-54],[-47,-20],[-42,-23],[-2,2]],[[18969,44703],[-34,-16],[-51,-12]],[[18884,44675],[-24,2],[-131,-60]],[[18811,44373],[-34,-171]],[[18675,43842],[-133,-91],[115,-73]],[[18693,43670],[-252,-295],[-263,-7]],[[18178,43368],[-86,-66],[32,-57],[118,-140]],[[18242,43105],[20,-46],[5,-42],[14,-84],[1,-5],[33,-119],[145,-28],[62,-102],[149,-113],[46,-95]],[[18717,42471],[115,5],[52,-41],[94,-76]],[[18978,42359],[124,72],[29,9],[69,-77]],[[19200,42363],[93,104]],[[19293,42467],[162,101],[-117,74]],[[19338,42642],[-240,-164],[-69,78]],[[18965,42626],[-154,37],[59,173],[73,72]],[[18982,43018],[-249,-70],[-52,14],[-37,103],[136,179],[49,54]],[[18829,43298],[-81,8],[-3,89],[9,12],[61,78],[140,-17],[3,1],[41,-4]],[[18999,43465],[72,63]],[[19071,43528],[44,81]],[[19164,44726],[-90,108],[110,26],[112,31],[80,121],[10,-123],[-49,-33],[-58,-38],[-31,-31],[-32,-32],[-52,-29]],[[21592,46975],[96,91],[213,82],[70,87]],[[22322,47504],[59,154]],[[22381,47658],[-102,25],[-124,-80],[15,172]],[[22170,47775],[-57,19],[-56,7],[-114,27],[-45,19],[-192,-162]],[[21706,47685],[-139,-80],[-98,148]],[[21469,47753],[-169,-90],[-97,-61],[-43,-41]],[[21160,47561],[-98,-172]],[[21062,47389],[-34,-211],[-34,-20],[-68,79],[-193,12],[36,-46],[-6,-129],[-83,-13],[39,-135],[48,-162]],[[20767,46764],[126,126],[126,-21],[-42,-67],[302,-37],[-163,-180]],[[21185,46565],[201,201],[30,30]],[[21416,46796],[42,43],[134,136]],[[21638,47256],[120,-34],[-5,-16],[-212,-160],[0,1],[-116,85],[105,105],[108,19]],[[22365,47790],[-5,122],[-36,68]],[[22324,47980],[-154,-205]],[[22170,47775],[195,15]],[[22796,48592],[83,71],[26,102],[57,40]],[[22962,48805],[9,14],[53,76],[13,107],[42,99],[79,-21],[216,-16],[-49,147],[92,126],[-53,80],[77,59],[24,-1],[104,100],[50,81],[137,71],[113,-44],[132,77]],[[23372,50215],[36,87],[34,117],[23,94],[284,163],[211,136]],[[23960,50812],[-36,32],[40,40],[-233,52]],[[23731,50936],[-79,-75]],[[23652,50861],[1,-2],[61,-141],[-47,-32],[-78,-52],[-32,242]],[[23557,50876],[-143,-21],[-131,-38],[-121,17],[-108,-55],[-97,-65],[-108,-48],[-121,-12],[41,141],[271,140],[172,104],[-8,149]],[[23204,51188],[-200,-170],[-118,-21]],[[22886,50997],[-90,-118],[-143,-6]],[[22653,50873],[-206,-47],[-2,-4]],[[22445,50822],[4,-107],[-185,-2],[-210,-7],[-194,31]],[[21664,50755],[75,-88],[78,-116],[50,-79],[-155,-70],[-99,-47],[-29,-22],[-134,-63],[-21,-18],[-216,-108]],[[21141,50086],[-54,-143],[-33,-88],[167,3],[2,-77],[-132,-2],[-170,-113],[-47,-5]],[[20874,49661],[2,-6],[-221,-82]],[[20655,49573],[61,-99],[-100,-88],[-127,-25]],[[20253,48962],[8,-214],[-73,-43],[-138,173],[-202,-153]],[[19848,48725],[86,-8],[-50,-53],[84,-163],[-95,116],[-145,18]],[[19393,48468],[-62,-51],[-83,-68],[-227,68],[-38,-84]],[[18983,48333],[129,-90],[-55,-146],[52,-45],[-12,-10],[-16,-15],[-65,-64],[-182,89],[-36,-46],[207,-70],[-19,-52],[-169,-88],[-20,-9],[-53,-51],[-312,-2],[44,-107],[103,-24],[-10,-52],[-104,-33],[114,-57],[-101,-99],[-29,-30],[-34,19]],[[17829,47147],[-148,-192],[-41,-38],[-34,-39],[-126,-145],[-166,-191],[-53,49]],[[17060,46417],[29,-33],[-136,-90],[-96,10]],[[16857,46304],[-6,-214],[-38,-386],[-16,-77]],[[16751,45338],[-13,-141],[-16,-157]],[[16722,45040],[22,-4],[66,-1],[67,-2],[88,-2],[21,-1],[72,-2],[63,-2],[62,0],[109,-2],[-3,-20],[123,-44],[-2,-10],[-132,-15],[-36,4],[-51,6],[-77,4],[-69,2],[-93,2],[-62,2],[-31,1],[-144,8]],[[16715,44964],[36,-145]],[[16751,44819],[-2,42],[107,-5],[51,-1],[1,-20],[5,-47]],[[16913,44788],[71,-26]],[[17350,44594],[83,-13],[142,-21],[42,-1],[201,53],[92,115],[55,136],[25,164]],[[17990,45027],[-130,21],[12,53],[15,81]],[[17887,45182],[-125,31],[-35,119],[105,5],[103,-23],[35,23],[82,-79]],[[18052,45258],[39,43]],[[18091,45301],[6,37]],[[18097,45338],[-46,21]],[[18051,45359],[-20,9]],[[18031,45368],[1,7]],[[18032,45375],[21,11]],[[18053,45386],[28,12]],[[18081,45398],[-96,50],[-48,49],[16,11],[74,68]],[[18027,45576],[-5,75],[-155,-2]],[[17733,45647],[-137,93],[-137,32],[-148,-63],[-60,95]],[[17493,45917],[230,183],[52,13]],[[17536,46355],[-157,43],[43,63],[60,64],[117,-44],[29,-56],[-27,-55]],[[17726,46413],[62,241],[178,69]],[[17966,46723],[30,25]],[[17996,46748],[-97,69],[90,90],[50,34],[80,-8],[18,-57]],[[18137,46876],[255,50],[176,-28],[98,169],[72,1],[81,2],[142,55],[108,-31],[127,104],[58,72]],[[19254,47270],[-2,24],[83,21]],[[19335,47315],[105,79]],[[19440,47394],[-226,253]],[[19214,47647],[39,-124],[-92,-76],[-135,64],[36,140]],[[19257,47897],[10,75],[60,68],[16,12],[56,-5],[92,-62]],[[19491,47985],[164,39],[156,31]],[[20091,48159],[136,33],[165,-43],[63,107]],[[20334,48395],[64,63],[99,107],[86,93],[139,124],[82,52],[78,37],[52,16]],[[20934,48887],[173,47],[88,23]],[[21195,48957],[14,3],[224,-53],[167,-37],[87,-21]],[[21687,48849],[-8,249]],[[21679,49098],[-86,-30],[-184,21],[-22,36],[-146,9],[-15,49],[126,48],[234,54],[86,2]],[[22298,49556],[81,58],[91,94],[-77,61],[111,-5],[21,-124],[-122,-168]],[[22497,49370],[235,35],[29,-24],[-59,-50],[-143,-158],[-62,-229],[-59,27]],[[22438,48971],[-36,-146],[-30,-107]],[[22372,48718],[-31,-153],[-22,-163]],[[22416,48349],[-78,-152],[-52,-105],[38,-112]],[[22324,47980],[43,49],[48,86],[86,195]],[[22501,48310],[27,38],[93,147],[8,48],[167,49]],[[20794,49327],[2,-88],[-88,-2],[-87,-3],[-2,71],[175,22]],[[21400,49784],[74,0],[104,2],[5,-87],[0,-70],[-180,-2],[-3,157]],[[22127,50099],[-112,-1],[-34,215],[-33,48],[-59,78],[78,37],[67,-131],[106,-170],[-13,-76]],[[22994,49821],[-38,-114],[-34,-37],[-109,69],[4,10],[56,73]],[[22875,50014],[-107,81],[67,168],[221,34],[45,-30],[-103,-112],[-96,-110]],[[23085,45902],[-278,47],[-6,-136],[-192,-5],[-81,-2],[-155,-11],[7,18],[-120,26]],[[22260,45839],[-4,-19]],[[22215,45575],[-95,-145],[-63,-110],[-74,-135]],[[21983,45185],[130,-58],[105,84],[21,47],[-83,-3],[84,138],[114,148]],[[22504,45507],[-3,210],[59,50],[309,-37]],[[22802,46293],[94,-89],[-58,1],[-93,-30],[-219,56],[-42,-104],[123,-54],[-48,-37],[246,-86],[7,29],[183,168]],[[22972,46312],[-170,-19]],[[24293,45678],[2,83]],[[24136,45826],[-184,-6]],[[23952,45820],[87,-134],[254,-8]],[[23712,45895],[78,46],[105,58],[-73,23],[36,259],[-118,-19],[-176,47],[-68,0]],[[24343,45917],[-4,140],[-1,13]],[[24338,46070],[-138,-3],[-310,-5],[29,-65],[149,-86]],[[23436,24477],[-84,20]],[[23295,24316],[161,-91],[75,24],[-4,-5],[-207,-244]],[[23217,23884],[27,-10]],[[23244,23874],[227,215],[161,-100],[0,-33]],[[23632,23956],[145,4]],[[23777,23960],[-13,113],[-45,135],[-93,-51],[-12,39],[2,33],[48,0],[157,132],[32,30],[22,18],[-157,98]],[[23718,24507],[-83,59]],[[26307,26875],[62,-30]],[[26431,26889],[78,81],[-4,192],[-75,-171],[-123,-116]],[[24476,42720],[-23,76],[-176,-2],[0,-78],[-176,-2]],[[24565,43366],[34,42],[60,76]],[[24344,43482],[3,-77],[8,-305],[210,266]],[[23760,42705],[92,147],[99,30],[30,85],[24,126],[-194,-47]],[[23570,43010],[1,-144],[-174,24],[-286,-62]],[[22702,42688],[38,-97],[-140,-11]],[[22600,42580],[9,-126],[4,-63],[-4,-40]],[[22609,42351],[152,-8],[185,73],[-21,50],[130,51]],[[23055,42517],[39,58],[5,2],[184,49],[156,6],[133,33],[-36,-101],[126,-9],[-20,-26]],[[22081,42389],[14,-12],[286,3],[23,80],[-95,-1],[-36,0]],[[22273,42459],[-226,-46]],[[22047,42413],[34,-24]],[[20493,42717],[-17,-210]],[[20476,42507],[108,-30]],[[20584,42477],[40,145],[111,-45]],[[20735,42577],[7,139],[233,5],[62,-26],[56,243],[-98,1],[-49,-128],[-342,6],[-41,-29],[-70,-71]],[[21353,42590],[144,-49]],[[21497,42541],[-1,30],[-4,186],[64,64],[33,-19],[65,-90],[227,188],[110,53],[104,42],[99,53],[25,36]],[[22219,43084],[-111,78],[-127,59],[-209,-12],[-88,-89],[-60,-67],[-220,-75],[5,43],[156,194],[-110,77],[-39,-48],[-172,93],[117,142],[-93,78],[-108,52],[189,169]],[[21206,43909],[-164,-152],[-36,-29],[33,-152],[-99,-163],[-77,1],[45,-183],[-16,-84],[215,-32],[1,-79],[89,36],[51,-126],[42,-82],[63,-274]],[[21740,44639],[146,-3],[87,333],[-80,34],[-153,-364]],[[21815,45143],[104,-80],[64,122]],[[21983,45185],[-168,-42]],[[20989,44078],[-96,-23]],[[20893,44055],[-75,-170],[132,8],[41,44]],[[22573,45163],[-98,143],[-101,-258],[192,86]],[[40995,33099],[105,-95]],[[41135,33114],[-140,-15]],[[42720,55996],[-154,-151],[-77,-76],[29,0],[-77,-77],[-23,-76],[0,-76],[-2,-154],[-318,1]],[[42014,55084],[227,-3],[59,0]],[[42387,55080],[28,155],[2,-1],[-1,130],[33,23],[231,-2],[-1,153],[148,-2],[27,0],[1,-152],[1,-153],[-176,2],[0,-150],[151,-1],[25,-4],[176,0],[-25,-153],[-2,-26]],[[43053,54709],[81,-50],[46,-190],[181,-5]],[[43361,54464],[-2,153],[172,-4]],[[43531,54613],[1,154],[182,2]],[[43714,54769],[0,153],[-181,0],[2,153]],[[43535,55075],[-64,0],[1,77]],[[43541,55228],[-6,-153]],[[43535,55075],[155,0],[3,153],[44,77],[-1,76],[89,0],[-1,-163],[176,10],[-21,-153],[111,1],[84,0],[3,152],[0,76],[86,-76]],[[44263,55228],[88,-1],[1,230]],[[44352,55457],[-175,0],[0,-77],[-176,-1],[-2,155],[0,14]],[[43999,55548],[1,139],[-174,0],[1,-145],[0,-69],[-92,-15],[1,71],[-220,3]],[[43516,55532],[-220,2],[0,76],[-1,77],[177,0]],[[43472,55687],[44,77],[0,74],[132,0]],[[43648,55838],[0,81],[1,74],[176,1]],[[43825,55994],[178,-1]],[[44002,56135],[-175,12],[-179,0],[0,76],[-1,67],[-175,10],[-89,0],[-89,0],[-87,1],[-177,-1],[-96,8],[8,69],[-265,2]],[[42677,56379],[1,-77]],[[42178,55464],[135,133],[115,113],[-10,59]],[[42243,55770],[-175,1]],[[42068,55771],[-2,-153],[-175,1],[-1,-155]],[[46288,57448],[175,1],[0,152],[4,229]],[[46463,57831],[-263,-265],[89,-3],[-1,-115]],[[44707,57827],[87,0],[-1,196]],[[44592,57826],[115,1]],[[2165,12841],[-57,-14],[97,-135]],[[2205,12692],[275,4],[-7,115],[-24,196]],[[2555,12522],[59,-27]],[[2614,12495],[113,94],[-45,59]],[[2682,12648],[-208,10],[-18,-115],[99,-21]],[[86596,94560],[30,225]],[[86374,94793],[79,-183],[143,-50]],[[86609,96861],[36,81]],[[86285,96955],[-14,-200]],[[86503,96630],[36,114],[7,119],[63,-2]],[[87185,98066],[-127,-223]],[[87058,97843],[156,-6],[280,-12],[14,202]],[[87508,98027],[-178,21],[-80,10],[-65,8]],[[50611,69765],[87,33],[2,182],[1,39],[5,54]],[[50706,70073],[-302,24],[-61,-44],[-116,-62],[-7,-27]],[[50088,70059],[3,115]],[[50091,70174],[-177,1],[-1,-115],[175,-1]],[[51150,70046],[88,3],[122,17],[163,81],[3,65]],[[51526,70212],[-197,7],[3,137],[193,-3]],[[51525,70353],[159,-4],[1,77],[2,189]],[[51687,70615],[-173,-42],[-181,-45],[-177,-43],[-222,-51],[-127,-39]],[[50807,70395],[-4,-36],[-2,-157]],[[50801,70202],[173,-115],[176,-41]],[[50805,70516],[89,-1],[154,-2],[-66,172],[-88,0],[-88,1],[2,136],[1,153],[2,153],[2,153],[-181,1],[-94,2],[40,151]],[[50578,71435],[-297,2],[-1,-152]],[[50280,71285],[-2,-153],[-1,-80],[-123,0],[-54,0],[3,233]],[[50103,71285],[-534,2]],[[49569,71287],[-1,-154],[0,-151]],[[49568,70982],[185,-1],[-51,-154]],[[49921,70826],[177,52],[85,-18],[50,-20],[-4,-92],[-1,-77],[21,-86],[168,-64],[125,-4]],[[49736,70065],[2,148],[-177,3],[-2,-306],[61,-1]],[[47969,69154],[88,-154],[177,0],[-1,153],[0,76],[-264,1],[0,-76]],[[47455,68315],[-22,-76],[-176,1],[0,-153],[198,-1],[99,-1],[-35,230],[-64,0]],[[47779,66094],[3,152],[-172,2]],[[47610,66248],[-4,-152]],[[48575,66087],[1,154],[1,114]],[[48386,66548],[-155,1],[-8,-459]],[[52246,72183],[269,-5]],[[52515,72178],[3,154]],[[52518,72332],[-269,4],[-3,-153]],[[51522,71579],[176,-2],[2,153]],[[51700,71730],[-176,2]],[[51524,71732],[-2,-153]],[[42919,60601],[131,0],[1,159],[-88,87]],[[42963,60847],[-89,42],[1,-128],[-88,1],[-4,-160],[136,-1]],[[44283,60515],[0,-71]],[[44218,60291],[64,-1],[0,-308]],[[44282,59982],[88,-1],[251,154]],[[44621,60135],[-162,0],[1,154]],[[45176,62788],[110,0],[0,114]],[[45286,62902],[-109,39],[-1,-153]],[[45114,63212],[351,-3]],[[45467,63362],[-352,1],[-1,-151]],[[39630,64279],[3,-143],[104,1],[68,142],[-175,0]],[[58868,82662],[-69,0],[-31,153]],[[58371,82406],[-1,-6],[-57,-13]],[[57806,82215],[-79,-105]],[[57727,82110],[144,-2],[-1,-77],[179,-1],[1,38],[132,75],[69,0],[6,-43]],[[58257,82100],[124,77]],[[58381,82177],[-5,127],[178,110],[-2,-93],[220,97],[-42,105],[10,5],[154,72]],[[58725,83084],[85,14],[4,128]],[[58807,83253],[-24,25],[-8,14],[99,60],[176,2],[160,33],[31,68],[60,68],[90,-10],[9,-108],[167,-20],[-4,-105],[-48,1]],[[59307,82871],[46,9],[22,-105],[78,-50]],[[59453,82725],[130,41],[120,-207]],[[59703,82559],[103,59]],[[59806,82618],[-60,216],[-1,21],[211,-5],[160,111],[20,9]],[[60259,83101],[-7,143],[-48,20],[34,137],[-105,-20],[35,88],[98,-29],[81,-12],[-7,-191],[56,-19],[1,15],[177,-4],[-39,183],[51,23],[1,26],[183,-31],[-7,-168],[111,-3],[-3,-58],[-6,-36]],[[60865,83165],[278,-72],[32,99],[52,-2]],[[61227,83190],[103,81],[89,-2],[152,-3],[136,13]],[[61645,83327],[-250,63],[-52,77],[-160,34],[-132,52],[-33,125],[-7,15],[162,93],[-66,83],[-23,110],[124,-33],[64,-16],[1,-114],[43,-78],[-3,-77],[232,-5],[5,75],[2,76],[16,19],[44,-21],[122,3],[113,-79],[0,-3],[-2,-78],[-34,-77]],[[61811,83571],[123,-2],[87,-1],[1,0],[-1,-66],[-223,-103]],[[61798,83399],[-1,-30]],[[62183,83217],[96,2],[89,-2],[133,-3],[131,-3],[3,115]],[[62635,83326],[1,77],[4,119],[2,113],[88,0],[164,-4],[25,140]],[[62582,83890],[-108,3],[-178,3],[2,78],[2,35],[-90,1],[1,31],[1,85],[1,37],[-177,41],[0,38],[-27,72],[-2,4],[-35,124],[121,51],[73,-15],[61,-23]],[[62443,84497],[26,51],[179,-50],[19,73]],[[62439,84901],[-1,1],[31,41],[-159,74]],[[61985,85106],[54,-88],[13,-34],[-245,-18],[-97,81]],[[61710,85047],[-83,5],[-164,15]],[[61463,85067],[-65,-86],[27,-91],[-88,-26],[-86,-38]],[[61214,84523],[146,102],[163,51],[114,77],[55,16],[125,35]],[[61817,84804],[-6,67],[265,21],[45,1],[120,5],[13,-162],[-109,-16],[-110,-34],[-99,-39],[-45,-9],[-63,34]],[[61828,84672],[-84,-13],[-203,-156],[-149,-109],[-139,-100]],[[61253,84294],[37,-42],[37,-41],[-1,-1],[-88,-83],[-206,33],[-7,33],[201,124]],[[61226,84317],[-26,87],[-69,72]],[[60849,84451],[279,-96],[-127,-93],[-79,75],[-97,45],[-101,47]],[[60672,84305],[5,-55],[-133,2],[-44,1],[-123,1],[-27,119]],[[60375,84475],[-81,-87],[-123,39],[-118,161],[148,7],[172,-118]],[[60562,84588],[-61,142],[49,29],[12,49],[135,93],[119,17]],[[60816,84918],[2,57],[-23,77],[1,20],[77,63],[150,37],[-71,97],[19,10],[96,49],[123,41],[21,7],[161,37]],[[62136,85336],[-10,149],[226,65]],[[62352,85550],[328,7],[-44,153],[105,55],[137,62],[0,-14]],[[62878,85813],[174,-4],[102,111],[114,-4],[81,-161],[111,-1],[82,-51]],[[63648,86040],[40,18],[3,0]],[[63691,86058],[66,70],[62,63]],[[63810,86322],[-159,-197],[-172,116],[-66,140],[45,33],[-222,62]],[[63236,86476],[-1,1],[-2,139]],[[63233,86616],[-54,-88],[-207,55],[-44,32],[41,95],[2,12],[4,111],[66,1],[164,-119]],[[63205,86715],[12,28],[24,-12]],[[63342,86927],[-99,55],[-52,149],[64,70],[-67,87],[-7,9],[112,126],[-55,60],[36,24],[229,-116],[1,-101],[119,-258]],[[63831,87711],[-110,105],[153,106]],[[63874,87922],[-159,211],[-9,99]],[[63460,88346],[-173,-56],[-125,54]],[[63162,88344],[-206,15],[35,76],[62,6],[-15,149],[167,-2]],[[63205,88588],[10,26],[-245,-14],[-150,38]],[[62820,88638],[-78,28],[-5,223],[-167,-73]],[[62570,88816],[58,-82],[9,-213],[-25,-90]],[[62867,88188],[7,-55],[119,-135],[207,-102],[-14,-59],[-236,-162],[55,-60],[-69,-48],[-60,-11],[-60,1],[-58,-88],[-90,-1],[-5,0],[-19,95],[2,118],[1,67],[-71,1],[-134,2],[1,68],[90,8],[2,154],[6,24],[-44,48]],[[62341,88218],[-67,64],[107,74],[-82,90],[-41,106],[69,48],[41,75],[-179,126],[140,40]],[[62329,88841],[171,87]],[[62500,88928],[29,18],[86,57]],[[62615,89003],[-30,100]],[[62585,89103],[-131,-58],[-489,-135],[-319,-235],[-78,-44],[-60,-34],[-175,-99],[-133,-75],[-79,-60],[-107,-81],[-146,-117]],[[60635,87937],[-106,-102]],[[60529,87835],[26,-2],[-204,-171]],[[60351,87662],[84,21],[198,-42],[133,-4]],[[60766,87637],[91,-2],[87,-2],[-7,-152],[-6,-153],[-182,-2]],[[60749,87326],[-7,-154],[-326,4],[-25,126],[1,29]],[[60392,87331],[-144,1]],[[60190,87181],[-64,1],[-113,119]],[[60013,87301],[-57,28],[37,119],[26,34]],[[60110,87426],[107,104]],[[60217,87530],[-29,35],[37,39]],[[60225,87604],[-221,-101]],[[60004,87503],[-166,-95],[-143,-44],[-104,-32],[-99,-23],[-99,-3],[-1,0],[-32,47],[-3,2],[-77,80]],[[59280,87435],[-5,-4],[-186,-125],[5,-58],[-1,-78],[-1,-60]],[[59092,87110],[-3,-79],[-111,5]],[[58978,87036],[10,-77],[-46,-75],[-27,0]],[[58915,86884],[-2,-79],[-29,-142],[-17,-43],[-14,42]],[[58853,86662],[-136,-1],[-7,18],[-140,207],[-2,55]],[[58568,86941],[31,85],[9,1],[124,-2]],[[58732,87025],[-23,69],[-175,174]],[[58534,87268],[-128,-20],[-81,29],[-12,-115],[-24,-125],[-73,-1],[-56,95],[-104,32],[-26,137],[289,-10],[-88,138],[1,10],[39,17],[78,72],[-7,67],[1,67],[-38,83],[12,157]],[[58317,87901],[-94,38],[-191,-84],[-99,-41],[-119,-47]],[[57845,87710],[112,-79],[-1,-28],[-1,-98],[-5,-299],[16,-88],[-115,-25],[-144,-13],[-95,-79],[-43,-38],[-65,-55],[-292,4],[-39,0]],[[57173,86912],[27,-118],[4,-141],[-5,-104],[-88,-135],[-36,-103],[-72,-161],[-32,-73],[-88,-166],[-27,-51]],[[56856,85860],[80,31],[33,-3],[166,-2],[176,-3],[41,-152],[-44,-134],[102,-21],[-19,-76],[-1,-52],[0,-24],[-87,-1],[-74,-101]],[[57229,85322],[1,-48],[-108,2],[-82,2],[-94,1],[-56,1],[58,55]],[[56948,85335],[-183,-17],[-85,36],[-82,21]],[[56598,85375],[-79,-120],[-133,-164],[-46,-53],[-36,-42],[-71,-82],[-42,-46],[-58,-59],[-100,-104],[-69,-50],[-75,-54]],[[55889,84601],[128,-161],[100,-100],[11,-85],[145,-6],[65,-56],[16,-14],[35,-82]],[[56508,84056],[153,-20]],[[56661,84036],[22,55],[54,91],[160,-32],[20,29],[40,-30],[67,-49],[138,-102],[-63,-103],[114,-29],[47,9],[25,-16],[84,-39],[30,7],[4,-49],[74,-1],[43,0],[39,-19],[42,-4],[20,-4],[55,-1],[23,-12],[1,-78],[107,-84],[-6,-56]],[[57801,83519],[95,61],[173,37],[68,-19],[63,-9],[144,19],[59,39],[8,-10],[-49,-88],[-90,-326],[-113,-25],[-189,-55],[-22,5],[-151,79],[-71,61]],[[57726,83288],[-126,55],[-5,4]],[[57595,83347],[-158,-1],[-10,42]],[[57427,83388],[-6,12],[-86,75],[-36,75]],[[57299,83550],[-165,-105],[-46,-119],[-3,-7],[-179,-7],[-88,-27],[-24,26],[1,34],[-108,-3],[-112,-14],[-31,-13],[-98,4],[-99,-18],[-147,-49]],[[55708,83167],[5,-39],[-133,-78],[-176,2],[-88,14],[-2,-85],[-1,-58],[-177,-25],[-91,1],[2,58],[1,38],[1,104],[94,13],[0,97],[-176,22],[2,117]],[[54757,82504],[113,-2],[66,-98]],[[54936,82404],[26,0],[74,-1],[50,-1],[-18,-60],[235,54],[89,17],[88,17],[-3,-186],[-52,-76]],[[55425,82168],[12,-159],[-127,-8],[19,-228]],[[55329,81773],[162,-22],[104,-22]],[[55595,81729],[9,16]],[[55604,81745],[-4,84],[-146,-44],[-37,47],[110,78],[120,69],[92,-33],[162,1],[-25,-181],[-44,-73]],[[55832,81693],[164,-20]],[[55996,81673],[-10,110],[4,47],[125,19],[36,105],[14,-26]],[[56165,81928],[44,-1],[122,-69]],[[56331,81858],[-36,145],[0,63],[48,0],[172,-89],[-54,-55],[-130,-128]],[[56331,81794],[-20,-19],[-201,-225]],[[56110,81550],[167,50],[92,-88],[-57,-123]],[[56312,81389],[95,0]],[[56407,81389],[131,85],[71,56],[96,-144]],[[56705,81386],[131,50]],[[56836,81436],[-19,19],[58,154],[128,-77]],[[57003,81532],[-62,300]],[[56941,81832],[-6,4],[-33,26],[65,62],[42,-34],[148,-36],[-59,79],[30,4]],[[57128,81937],[-126,132],[30,29],[82,47]],[[57114,82145],[-120,95]],[[56994,82240],[-68,55],[-33,25],[-27,21],[63,58],[58,17],[105,-83]],[[57092,82333],[141,130],[43,6],[38,28],[52,-68],[12,13],[222,26],[54,37]],[[57654,82505],[26,48]],[[56170,82386],[122,-1],[5,-153],[-129,1],[2,153]],[[54786,82999],[-82,-20],[-117,-3],[-3,90],[203,-37],[49,-31],[-50,1]],[[61994,85641],[-2,-76],[-90,-75],[-89,-40],[-44,0],[-42,82],[56,113],[35,-1],[176,-3]],[[55818,82465],[176,-2],[-2,-229],[-176,2],[2,229]],[[61910,86004],[96,93],[41,-1],[-25,-127],[156,59],[82,-82],[46,-13],[-2,-45],[-242,-59],[-112,135],[-40,40]],[[62338,86241],[21,-80],[-175,6],[-176,-11],[-88,14],[3,135],[89,6],[89,-3],[177,-7],[43,6],[17,-66]],[[62829,86492],[259,-70],[192,-30],[-2,-80],[-305,60],[-144,120]],[[62798,86323],[35,22],[212,-85],[232,-7],[-1,-61],[-285,-37],[-73,78],[-114,-33]],[[62804,86200],[-57,-55],[-68,0],[-133,37],[-130,164],[45,20],[337,-43]],[[61021,85662],[4,152],[176,-4],[-3,-152],[-3,-77],[-92,16],[-82,65]],[[61706,84413],[-31,83],[77,94],[164,3],[29,-81],[-91,-114],[-84,-3],[-62,-3],[-2,21]],[[59394,84170],[13,144],[-13,38],[78,-1],[171,-154],[-5,-16],[-180,-20],[-25,0],[-40,1],[1,8]],[[59164,83727],[-10,7],[-86,22],[-48,65],[-61,169],[17,0],[144,-63],[22,-8],[33,-121],[4,-11],[-15,-60]],[[59974,83364],[-117,56],[-96,25],[39,123],[-147,-14],[16,36],[57,101],[137,13],[6,-3],[169,-89],[-49,-250],[-15,2]],[[59808,84330],[-14,83],[2,44],[51,-1],[177,67],[141,-94],[-133,-48],[-224,-51]],[[58933,84191],[10,53],[111,8],[59,-110],[-107,-4],[-73,53]],[[61294,85883],[88,-1],[110,-8],[120,34],[97,-10],[-64,129],[92,-1],[89,-1],[38,-68],[-21,-230],[-102,59],[-55,-139],[-133,3],[-175,2]],[[57793,85263],[34,0],[-1,-76],[-90,-74],[-89,36],[3,99],[1,20],[142,-5]],[[58011,85567],[-89,4],[-45,-1],[-42,50],[2,102],[176,-3],[-85,154],[44,9],[44,0],[88,-12],[87,-77],[-1,-76],[-176,2],[-3,-80],[0,-72]],[[59503,85565],[4,99],[70,-103],[-74,4]],[[59491,85425],[38,-67],[-2,-36],[-54,-14],[-65,-8],[-27,-1],[-27,248],[9,1],[130,13],[-2,-136]],[[60232,86217],[-2,-77],[31,-78],[-80,-73],[-44,1],[-84,6],[4,107],[-1,118],[3,76],[53,0],[168,-4],[-48,-76]],[[60677,85977],[180,51]],[[60857,86028],[3,97]],[[61121,86022],[-94,-163],[-78,-22],[-100,-19]],[[60849,85818],[-88,-17],[10,-134],[-18,1],[-85,2],[-86,-1]],[[60578,85516],[89,-2],[47,-54],[-30,-21],[15,-153],[-30,-20],[-75,-13],[-22,-121],[-94,-20],[-66,104],[-183,-63],[-42,173],[129,53]],[[60527,85671],[54,47],[22,106],[-79,3],[-27,0],[1,72],[89,81]],[[60587,85980],[-88,6],[3,71],[6,153],[176,-4],[-3,-77],[-4,-152]],[[62478,86691],[-190,-11],[-2,-76],[-1,-27],[-132,34],[-56,73],[22,116]],[[62119,86800],[-121,-114],[-107,2],[5,156],[220,-5],[48,-1]],[[62164,86838],[79,74],[49,-103],[121,35]],[[61859,87980],[40,-69],[85,-135],[-66,-18],[-89,2],[-6,-152],[-87,4],[-87,4],[-88,1],[5,152],[89,-4],[86,-2],[7,172],[6,136],[59,-3],[46,-88]],[[60315,86871],[125,0],[89,-1]],[[60528,86794],[-1,-75],[-46,0]],[[60343,86840],[-3,-119],[-4,-79],[-2,-64],[-116,1],[22,131],[7,88],[11,153],[-31,110]],[[59339,86879],[42,-79],[132,-2],[46,75],[77,-1],[176,14],[-2,-82],[-1,-86],[-2,-66],[-205,-23],[-132,80],[-47,17]],[[59423,86726],[-128,2],[2,74],[2,77],[29,0],[11,0]],[[59058,86521],[5,129],[16,2],[52,-5],[158,-4],[-46,-81],[-36,-97],[-149,56]],[[58777,86321],[12,120]],[[58789,86441],[-147,2],[-51,1],[-34,120],[345,-46],[26,-78]],[[58928,86440],[138,-2],[43,-132],[-38,-146],[0,-14],[-26,-1],[-86,13]],[[58959,86158],[-26,-160],[-95,1],[6,80],[-129,6],[-80,79],[-177,4],[5,-135]],[[58286,86041],[3,38],[12,97],[-95,1],[6,66],[-189,11],[1,59],[200,5],[45,-23],[50,83],[174,144],[-17,-84],[-16,-110],[179,-1],[138,-6]],[[57612,86898],[184,133],[68,26],[-18,-172],[0,-10],[-9,-159],[-115,-22],[-112,90],[2,114]],[[57829,86450],[198,-4],[-2,-116],[-350,6],[-87,3]],[[57588,86339],[-12,0],[1,101],[91,55],[0,60],[-88,1],[-90,1],[28,119],[1,0],[90,6],[61,4],[-1,-64],[165,-4],[-5,-168]],[[57103,85042],[31,14],[82,41],[2,-4],[72,-208],[95,-16],[41,-3],[77,11],[21,-165],[-4,-92],[-226,-1],[51,105],[-123,-5],[-55,114],[51,86],[-126,61],[4,50],[7,12]],[[56603,84278],[-21,-25],[-56,-65],[-16,-29],[-54,15],[-90,-4],[35,81],[39,46],[27,31],[71,38],[39,-25],[26,-63]],[[58797,83952],[-164,-129],[-22,84],[-37,148],[134,51],[122,-37],[-27,-97],[-4,-19],[-2,-1]],[[56291,82900],[-75,1],[-88,1],[-111,2],[-88,1],[-87,2],[1,17],[28,50],[104,-2],[46,103],[177,52],[144,53],[-1,-51],[18,-77],[-66,-141],[-2,-11]],[[56169,82750],[18,-214],[-16,1],[-140,-1],[-36,4],[17,85],[92,201],[22,0],[44,-1],[-1,-38],[0,-37]],[[57406,82672],[-72,60],[1,51],[93,19],[121,23],[2,-142],[-18,-12],[-127,1]],[[59899,85093],[35,36],[83,89],[63,-141],[62,-94],[-148,-89],[-110,185]],[[59513,84703],[-75,-32],[-31,-14],[-51,-22],[-19,-9],[-165,21],[2,38]],[[59174,84685],[-108,-9],[-174,-8]],[[58892,84668],[0,-111],[2,-27],[9,-15],[10,-143],[-12,0],[-103,18]],[[58702,84259],[-53,-33],[-59,-53],[-45,41],[24,35],[34,22],[22,15],[23,14],[53,-9]],[[58693,84674],[7,114],[10,101],[6,51],[1,1],[77,0],[4,-68],[149,41],[26,77],[88,10],[-3,-62],[43,-78],[141,23],[27,3]],[[55090,82002],[124,0],[-3,169],[214,-3]],[[55425,82168],[-31,77],[-226,3],[-144,2],[-208,3]],[[55493,84474],[121,-101],[145,-25],[1,1],[9,-60]],[[55769,84289],[171,46]],[[55940,84335],[-67,101],[-13,144]],[[55860,84580],[-167,-78],[-200,-28]],[[63719,83457],[8,0]],[[63727,83457],[20,-1],[1,153],[239,-4],[137,-1]],[[64124,83604],[189,-5],[107,-3],[-5,-153],[-4,-137],[192,-4],[6,137],[1,38],[96,-2],[134,9],[1,106],[89,18],[3,134],[88,-2],[24,0],[155,0]],[[65205,83889],[3,103]],[[64775,84136],[-1,184],[3,75],[139,-3],[125,-4],[180,-4]],[[65221,84384],[177,13],[3,103]],[[65401,84500],[-176,3]],[[64571,84745],[-44,1]],[[64527,84746],[-43,2]],[[63993,84609],[-4,-77],[-5,-152],[176,-5],[-49,-141],[-43,4],[-177,23]],[[63687,84527],[121,90],[-121,52],[-219,-70]],[[63460,84495],[-32,-3],[-92,-150],[88,-58],[-29,-27],[17,-1],[-8,-48],[47,-80],[-92,-33],[-110,2],[-105,-33]],[[63245,83981],[93,-3],[193,14],[71,-29],[31,-214],[-76,-1],[-161,21]],[[63030,83723],[5,-210]],[[63035,83513],[155,-3],[-23,-51]],[[63167,83459],[46,10],[126,-5],[264,5],[116,-12]],[[63275,83489],[-32,141],[133,34],[43,-128],[-144,-47]],[[64027,83868],[161,-22],[130,-41],[-2,-69],[-236,-7]],[[63151,84075],[37,61],[-182,106]],[[63006,84242],[-126,126]],[[62880,84368],[-33,-24]],[[63024,84442],[88,-144]],[[63112,84298],[36,24],[170,153],[-171,-17],[-129,48],[44,127],[-33,107]],[[62836,84951],[-122,-29]],[[62714,84922],[-21,-163]],[[62649,84306],[-122,55]],[[60389,83046],[299,-8],[3,102],[-298,9],[-2,-52]],[[58936,82620],[0,-52]],[[56980,85735],[-112,2],[-46,-75],[-23,-78],[175,-7],[155,3],[0,77],[5,76],[-154,2]],[[57494,87277],[-11,9],[-11,62]],[[57192,87367],[8,-13],[-113,-36],[-4,-163],[115,-6],[14,28],[123,18],[7,5],[127,-96],[22,74],[3,99]],[[53096,83275],[346,6],[-41,84]],[[53401,83365],[-433,-27]],[[52968,83338],[-168,106],[-13,76],[-114,-94]],[[59897,77240],[86,-1]],[[59983,77239],[9,307],[1,0],[177,-6]],[[60170,77540],[8,231]],[[59463,77710],[-5,-152],[-175,3]],[[59283,77561],[-8,-154]],[[59275,77407],[-5,-155],[178,-1],[90,-3]],[[59538,77248],[27,154],[244,-6],[90,-2],[-2,-154]],[[58567,77418],[175,-4]],[[58742,77414],[4,155],[-175,3]],[[58571,77572],[-4,-154]],[[59283,77561],[3,152],[3,153]],[[58931,77874],[-4,-154],[178,-4],[-5,-152],[183,-3]],[[59393,78442],[87,-40],[8,232]],[[59311,78637],[-6,-154],[88,-41]],[[58853,78259],[265,-5],[5,155]],[[59123,78409],[-88,15],[-157,-93],[-25,-72]],[[60920,78688],[-46,231],[-216,2],[-137,1]],[[60521,78922],[-132,2],[-1,0],[3,108],[1,54]],[[60392,79086],[-240,54]],[[59818,78935],[-8,-122],[-6,-31],[-170,10]],[[59627,78632],[150,-3]],[[59777,78629],[111,-4],[134,-3],[359,-7],[3,76],[102,-1],[165,0],[269,-2]],[[55609,80377],[-83,-9],[0,-144],[-44,-13],[-8,157],[-71,-31],[-49,122]],[[55354,80459],[-210,-33]],[[55144,80426],[-12,-23]],[[55359,80299],[22,-101],[73,-190]],[[55490,79946],[8,4]],[[55498,79950],[65,72],[67,9],[1,-1],[50,-88],[211,12]],[[56599,80299],[-28,68],[125,6],[54,-9],[1,19]],[[56751,80383],[7,69]],[[56758,80452],[-231,92],[-470,349]],[[56057,80893],[-7,-5]],[[56050,80888],[76,-169],[263,-163],[23,-36],[-156,6],[-180,35],[-114,-39]],[[55962,80522],[-2,-76]],[[56067,80151],[185,55]],[[54817,80111],[-27,92],[-160,-95]],[[54630,80108],[73,-89],[-36,-106]],[[55438,81063],[-108,-172],[-60,-161]],[[55270,80730],[-53,-149]],[[55217,80581],[168,-53],[-31,-69]],[[55354,80459],[190,55]],[[55544,80514],[42,103],[7,97],[31,36]],[[55989,80953],[-58,65]],[[55185,80803],[-71,106],[-181,-42],[-174,-98]],[[54759,80769],[202,5],[59,-63],[165,92]],[[40549,54019],[-94,-97],[-275,-58],[79,-101],[-56,-74],[-47,-55]],[[40156,53634],[19,-5],[3,-82],[176,-42],[194,55],[-80,75],[6,3],[59,75],[16,306]],[[16079,41356],[-178,-71]],[[15901,41285],[213,-63],[80,39],[137,37]],[[16331,41298],[25,221],[143,179]],[[16499,41698],[22,25]],[[16521,41723],[-119,-1],[-127,-220],[-29,-54],[-54,-33],[-113,-59]],[[16360,42610],[182,69],[91,-34]],[[16633,42645],[72,177],[-8,40],[107,83],[4,112],[-58,93],[-7,8],[-216,-30]],[[16915,42871],[-139,12],[139,-12]],[[16953,43184],[0,0]],[[16720,43810],[-2,-17],[0,-24],[16,-196],[148,100]],[[16882,43673],[7,188],[34,101],[153,101],[5,121]],[[17081,44184],[-102,2],[-48,-102],[-109,-80],[-34,33]],[[10553,30250],[155,70],[4,130]],[[10712,30450],[-50,167],[-77,-132]],[[10585,30485],[-32,-235]],[[33232,48624],[302,296]],[[33534,48920],[-326,-5],[24,-291]],[[35311,49830],[-159,-65],[-189,-47]],[[34963,49718],[-4,-118],[0,-50],[175,1],[222,0]],[[35356,49551],[168,116]],[[36701,50247],[-1,231],[-46,-21]],[[36654,50457],[-179,-141],[-348,1],[-127,0]],[[36051,50160],[131,53],[82,-158],[-85,-3],[-76,-10],[-92,-40],[175,-70],[171,20],[2,-97]],[[36359,49855],[176,1]],[[36535,49856],[-4,144]],[[36531,50000],[-175,-1],[-3,92],[-22,43],[281,113],[89,0]],[[25263,56699],[-172,6],[-34,107]],[[25057,56812],[-9,14]],[[25048,56826],[-171,-146],[-6,-37],[-83,-7],[13,92],[91,115],[-184,-43]],[[24708,56800],[6,-17],[-150,-57],[-122,26]],[[24442,56752],[84,-101],[59,-71]],[[24585,56580],[90,41],[66,6],[-126,-201]],[[24615,56426],[34,2],[5,-118],[105,14],[-15,-96],[-17,-188]],[[24727,56040],[12,4],[146,46]],[[24885,56090],[-54,67],[-46,41],[72,31],[197,19],[112,-163]],[[25166,56085],[-65,197],[148,87],[72,99],[50,65],[-127,74],[-17,10],[-19,11],[55,71]],[[23862,55682],[1,4]],[[23863,55686],[38,163],[-216,-176]],[[23685,55673],[56,-88],[121,97]],[[27273,58899],[227,-228],[58,156],[-158,162],[-127,-90]],[[28634,60403],[2,-93],[132,-77],[122,159],[-116,68],[-100,116],[-95,-141],[55,-32]],[[29738,61585],[159,-58],[38,98],[-145,64],[-52,-104]],[[22004,57864],[30,-14]],[[22173,57893],[-168,-22]],[[22005,57871],[-1,-7]],[[22136,57110],[187,115],[97,105]],[[22420,57330],[-263,36],[-87,42],[-35,-66],[-53,-96]],[[21982,57246],[35,-25],[49,-27],[44,-23],[26,-61]],[[22420,57330],[37,79]],[[22457,57409],[-68,90],[-165,-102]],[[22224,57397],[196,-67]],[[22496,57614],[0,0]],[[22911,57206],[229,4],[-24,50],[-41,83],[-60,124]],[[23015,57467],[-83,-3],[-116,-31],[31,-68],[55,-110],[9,-49]],[[23536,56629],[-26,36],[-36,54],[-218,-119]],[[23256,56600],[41,-50],[32,-35],[207,114]],[[19213,39466],[50,185]],[[19263,39651],[-205,-22]],[[19058,39629],[-80,-5],[-71,-61],[-85,-3]],[[18759,39405],[-37,-71],[-58,-94]],[[18664,39240],[4,-1],[-45,-53],[-103,-123]],[[18520,39063],[205,-15],[59,-65]],[[18784,38983],[144,210],[108,-19]],[[19036,39174],[35,0],[13,0]],[[19137,39327],[-70,1],[-102,17],[20,83],[95,28]],[[19890,41760],[-7,11],[-164,-62],[12,-153],[-82,2],[-36,115],[102,36],[-17,20],[52,100],[-72,154]],[[19556,41965],[-11,-94],[-27,-49],[-117,-142],[-70,39],[-114,-145],[-57,-76],[-25,-78],[-88,-87],[29,-220],[-120,-152]],[[19217,40966],[-33,-114],[-16,-87],[150,-50],[15,143],[240,35],[61,84]],[[19696,40978],[-32,129],[-21,34],[198,67],[-89,122],[94,97],[87,-21]],[[19237,41321],[61,19],[63,2],[-10,-87],[-10,-151],[-174,168],[70,49]],[[64980,89091],[7,249],[19,156]],[[65006,89496],[-176,-37],[-8,-95],[-59,-48],[-1,2],[-101,261]],[[64661,89579],[-63,110]],[[64598,89689],[-53,-88],[12,-242]],[[64488,89386],[-53,33],[-67,114],[74,99],[-3,92],[20,67],[-77,56],[-167,51],[27,-109],[-66,-77],[127,-107],[-72,-142],[-49,-58],[-86,2],[-27,-5],[-79,65],[-66,-225],[13,-168],[-187,-33],[41,-86],[28,-28],[-20,-130]],[[63949,88760],[63,74],[123,-28],[54,-25],[-76,-77],[150,-107],[-74,-68],[-156,-109]],[[64033,88420],[153,-152],[37,89]],[[64579,88279],[-56,94],[58,104],[152,-180],[151,-26],[118,69],[144,35],[-129,67],[66,71],[-154,102],[-136,36],[-15,190],[187,-90],[-25,100],[46,16],[-64,209],[58,15]],[[65284,88603],[-53,-135],[-122,52],[276,-234]],[[65385,88286],[28,3]],[[65413,88289],[86,112],[-6,57]],[[65493,88458],[-147,103],[-62,42]],[[65124,90621],[67,72],[41,42],[98,161],[83,153]],[[65390,91151],[-66,-128],[-187,-206],[-122,-114],[-22,-17]],[[64884,90574],[-177,-100],[51,-65],[128,62]],[[64598,89689],[78,149],[136,55]],[[64812,89893],[51,13]],[[64703,90049],[-55,44],[-114,74],[-55,192],[-8,26]],[[64471,90385],[-71,84],[-225,-58]],[[64175,90411],[77,-137],[34,-39],[-121,-29],[23,-107],[139,-17],[44,16],[6,172],[59,81],[31,-213],[106,-143],[74,7],[-63,-234],[14,-79]],[[64112,89461],[11,256]],[[63342,89546],[108,-29],[46,45],[201,-119],[51,115],[-17,212],[-80,32]],[[63651,89802],[-113,-107],[-59,-61],[-137,-88]],[[29252,35055],[-263,-26],[-18,24],[-3,15],[122,120]],[[29090,35188],[-16,17],[-1,170],[46,1],[-5,230],[133,4],[239,6],[50,3],[-164,121],[-128,23],[-176,-6]],[[29068,35757],[1,-152],[-52,0],[-118,0],[-1,152],[170,0]],[[29068,35757],[-1,118],[-268,-1],[4,-116],[-119,0],[-73,0],[0,116],[0,36],[0,136],[2,64],[-116,56],[-235,-16],[-1,18],[-7,153],[25,83],[-31,118],[-159,-51],[-177,-3],[3,-156],[-177,-4],[-2,155],[-2,76],[-2,153],[-176,-5],[-131,0]],[[27129,36408],[111,-110],[-80,-4],[-214,-4],[-10,-90],[-35,-230],[-23,-146]],[[27308,35837],[-18,229],[179,5],[-78,77],[43,8],[134,-57],[176,-72]],[[27889,35852],[75,-74],[-211,11]],[[27579,35462],[1,-76]],[[27582,35315],[175,6],[-46,-60],[-41,-49],[0,-150]],[[28491,35135],[62,-118],[100,-23],[91,-142],[160,-65]],[[28507,35604],[105,-1],[21,1],[2,-134],[176,20],[1,-116],[0,-36],[-178,95],[-107,38],[-20,133]],[[28201,34824],[-204,-2]],[[27997,34822],[2,-138]],[[27999,34684],[192,-31],[-13,-270],[-64,7],[-2,-3],[-47,15]],[[28065,34402],[118,-187],[149,5],[153,129]],[[28485,34368],[-198,-2],[-46,118],[30,163],[163,-39],[86,-12],[0,-1],[-35,-227]],[[28587,34373],[295,191]],[[28882,34564],[-347,76],[75,88],[60,100]],[[29107,34524],[-50,109],[-17,11],[-158,-80]],[[28882,34564],[1,-48],[-16,-131],[-228,-12]],[[28728,34219],[168,-47]],[[29003,34323],[-100,54],[104,89],[22,9]],[[28455,33294],[188,32]],[[28643,33326],[-14,125]],[[28629,33451],[-188,-17],[14,-140]],[[67380,84580],[111,-123]],[[67702,84673],[-87,47],[-32,42],[-49,55],[48,121],[42,-43],[86,-69]],[[67715,84983],[4,74],[253,-26],[105,21],[29,2]],[[68106,85054],[286,112],[210,-10],[9,-26],[-14,-95],[-6,-152]],[[68591,84883],[195,72],[79,-82],[47,124],[40,72],[134,30],[3,76],[41,-86],[143,6],[37,74],[2,77]],[[69312,85246],[3,155],[-173,5],[2,77]],[[69329,85709],[-156,50],[-6,338]],[[69167,86097],[-43,-8]],[[69124,86089],[-55,-299],[-89,1],[-7,-151],[-87,2],[6,152],[-88,3]],[[68804,85797],[-5,-152],[-3,-78],[-89,2],[-88,2],[-6,-151],[-90,4]],[[68523,85424],[-88,4],[-8,-195],[-155,-22],[-158,-141],[-84,35]],[[68030,85105],[-47,13]],[[67983,85118],[-78,41],[-165,-49],[-13,-32],[-137,-16],[-168,-23],[-60,105],[137,-4],[-51,171],[-132,83]],[[67316,85394],[-28,-33]],[[67288,85361],[-60,-72],[-220,139],[133,25]],[[67141,85453],[27,33],[-221,138],[-73,46]],[[66639,85658],[-166,71],[105,126]],[[66035,86010],[14,-102],[-21,-25],[-126,29],[-158,15],[36,49]],[[65858,86528],[-42,84],[-147,49],[-229,-116],[-202,-164],[-129,-107]],[[65109,86274],[68,-91],[-31,-5],[-47,-91],[126,-105],[-38,-19]],[[65187,85963],[24,-5],[165,-14],[119,12],[223,-18],[-19,-42]],[[65699,85896],[65,-130]],[[66174,85265],[242,-24],[-8,-81]],[[66831,85002],[83,-3],[377,-107],[3,-5],[184,-121],[-43,-120],[-55,-66]],[[68960,85251],[-89,-13],[2,61],[176,-5],[-1,-40],[-88,-3]],[[66981,84586],[156,30],[113,-12]],[[67250,84604],[-33,142],[-120,18],[-90,-70],[-39,33],[-83,192],[-203,11],[-11,-31],[119,-35],[113,-102],[-50,-192],[-50,9],[35,-35]],[[65770,84953],[4,111],[-266,47],[3,95],[-176,4],[-85,59]],[[65241,85750],[61,-155],[69,76],[162,146],[-19,14]],[[65514,85831],[-187,-29],[-86,-52]],[[67904,85523],[-12,-29]],[[67892,85494],[326,19]],[[68218,85513],[-186,82],[0,76],[56,36],[220,-64],[6,173],[-222,0],[3,83]],[[67902,84669],[-31,78]],[[67871,84747],[67,74],[-141,4]],[[69106,86860],[-94,-151]],[[69012,86709],[-3,-76],[-7,-229],[158,-4],[48,151],[6,153],[152,-4],[3,153],[-263,7]],[[69212,86246],[145,26],[116,113]],[[69473,86385],[-251,13],[-10,-152]],[[69254,87830],[317,21],[38,65],[-352,9]],[[68615,87801],[277,78]],[[68957,87933],[8,70]],[[68965,88003],[-382,-37]],[[69868,87738],[6,171]],[[69874,87909],[-87,2],[-11,-256]],[[69239,87465],[174,-2],[4,71]],[[69417,87534],[-175,9],[-3,-78]],[[67351,87945],[119,-61]],[[67470,87884],[41,94],[76,42]],[[67463,88200],[-35,-118],[-121,-31],[44,-106]],[[69610,88827],[-56,270],[40,-32],[133,153],[-38,70],[283,12]],[[69972,89300],[435,-3],[-152,92]],[[70255,89389],[-216,62],[-98,-41],[-72,121],[-117,93]],[[69752,89624],[-107,-154]],[[69289,89184],[-170,-125],[-227,-184]],[[69907,89826],[84,-52],[94,-87],[67,18],[-4,60],[46,64]],[[70394,90050],[232,-68]],[[70626,89982],[29,135],[-1,33],[98,63],[-263,175],[-151,-118],[-223,-163]],[[70241,89869],[197,-94],[14,196],[-74,40]],[[68892,88875],[-69,68]],[[68823,88943],[-216,-146],[124,-94]],[[72246,87031],[157,72],[-18,115]],[[72385,87218],[-245,8],[2,38]],[[72142,87264],[-88,3],[-44,1],[7,153]],[[72017,87421],[-133,-2],[-88,9],[-132,4],[-39,122]],[[71625,87554],[-177,-25],[-6,-128],[-179,5]],[[71263,87406],[-145,4]],[[71261,87351],[176,-74],[-93,-102],[-3,-76],[87,-3],[89,-3],[2,38],[176,-5],[44,-2],[177,28],[133,-9],[87,-32],[42,-77],[68,-3]],[[71858,86815],[-51,66],[130,-4],[94,75],[13,53],[-230,8],[-85,-130],[-1,-26],[-45,1],[-87,3]],[[71596,86861],[-10,-206]],[[71404,85111],[202,-6],[0,-24]],[[71606,85081],[90,10],[86,14]],[[71792,85310],[-83,0],[-112,1],[-2,-53],[-182,10]],[[71413,85268],[-9,-157]],[[72144,85243],[354,-11]],[[72498,85232],[2,38],[2,48],[-355,7]],[[76040,84821],[105,-80],[214,-8],[22,78],[169,41]],[[76055,85802],[179,134],[6,106],[-178,6]],[[76062,86048],[-5,-154],[-2,-92]],[[75899,86359],[176,-7],[3,77],[-176,6]],[[75902,86435],[-3,-76]],[[76792,86482],[-88,4],[-90,3]],[[76614,86489],[-6,-153],[-31,1]],[[76577,86337],[-33,-69],[-50,-80]],[[76494,86188],[107,-5],[-5,-76],[-4,-76],[176,-7],[5,77],[5,72],[175,-3],[5,77],[4,77],[-178,6],[8,152]],[[76792,86482],[177,-6],[5,152]],[[76974,86628],[-176,7],[-6,-153]],[[77860,87290],[-355,11],[86,-80],[265,-10]],[[78256,87811],[162,-6]],[[78418,87805],[5,115],[-134,119],[-24,-114],[-9,-114]],[[78875,87057],[6,-12]],[[79092,87056],[177,10],[6,91],[-173,-9],[0,11],[133,63],[226,141]],[[79472,87614],[-177,5]],[[79295,87619],[-7,-155],[-176,8],[-131,6],[-7,-77],[-219,8]],[[78484,87307],[-96,-115],[355,-14],[4,76],[179,-6],[-51,-191]],[[79827,87598],[155,134],[-172,19],[137,149],[-286,12],[-177,6]],[[79484,87918],[-9,-228],[-3,-76]],[[95762,87646],[264,-18]],[[96026,87628],[7,76]],[[96033,87704],[-264,18]],[[95769,87722],[-7,-76]],[[68075,88460],[-66,70]],[[68009,88530],[-264,-52],[48,-78],[-217,-131]],[[65564,85421],[28,153]],[[65592,85574],[-166,-12],[-7,-136]],[[28862,36349],[-43,22]],[[28819,36371],[-187,100],[19,87],[-112,35],[-1,107]],[[28538,36700],[-88,81],[-94,56]],[[28356,36837],[-7,-32],[-174,18],[10,192]],[[28185,37015],[-87,-17],[-132,-21],[5,130]],[[27971,37107],[-130,-42]],[[27841,37065],[-11,-88],[-26,-64],[-41,-61],[-137,15]],[[27626,36867],[-148,35],[-118,28]],[[27360,36930],[-310,-98],[-101,-32],[104,171],[354,26]],[[27407,36997],[32,54],[27,78],[9,76]],[[27475,37205],[-2,94],[0,59],[-1,72],[-1,81],[116,1],[234,2],[0,153]],[[27821,37667],[-1,76],[-1,95],[168,16],[7,120]],[[27994,37974],[-175,-1],[-3,153],[-287,-1],[-152,-4],[-3,79],[-2,75],[110,19],[103,-21],[230,7],[174,1]],[[27989,38281],[178,2]],[[28167,38283],[-3,153]],[[28164,38436],[-175,-2],[-177,-2],[-164,-2]],[[27648,38430],[-156,-2],[-119,-1],[-4,156],[1,155],[-135,-1],[-188,-1]],[[27047,38736],[-11,-132],[-16,-178],[-160,41],[-120,-46]],[[26740,38421],[-13,-76],[-18,-108]],[[26709,38237],[193,-14],[111,125],[61,1],[12,-76],[18,-115],[18,-137],[0,-17],[-16,-152]],[[27106,37852],[-8,-40],[-25,-77],[-132,-4],[-323,62]],[[26618,37793],[-50,10],[-10,6]],[[26541,36608],[-172,-54]],[[26369,36554],[12,-195],[63,8]],[[26561,36547],[93,30]],[[26654,36577],[-24,58],[-24,58],[63,19],[140,-21],[24,-58],[-116,-36],[-63,-20]],[[26654,36577],[91,-49],[116,36],[125,35],[118,-17],[20,-42]],[[27425,36687],[55,145],[253,-63],[170,-27],[56,-23],[92,103],[124,-41],[0,-67],[169,-90],[12,-129],[1,-96],[26,-20],[97,90],[106,-128],[93,-74],[-35,-85],[184,-102],[26,57],[-21,101],[29,111]],[[26594,36862],[-76,168],[35,17],[117,41],[91,-46],[-35,-137],[-132,-43]],[[26481,37230],[-80,-20],[44,293],[54,151],[60,65],[-7,-65],[-6,-151],[141,1],[81,0],[1,-267],[-146,0],[-1,5],[-67,166],[-107,-35],[33,-143]],[[26463,36138],[47,-27],[333,-134]],[[26843,35977],[19,117],[19,335],[-34,19]],[[26847,36448],[-100,-63],[-171,15]],[[26576,36400],[-28,-63],[-85,-199]],[[26399,36177],[-12,179]],[[26563,35812],[-171,0],[-70,0]],[[26322,35812],[-67,-126]],[[26255,35686],[2,-189],[312,8],[143,2]],[[26712,35507],[-12,151],[-134,-2],[-3,156]],[[29782,35832],[-107,-120],[183,-27],[-10,-105],[-47,-57],[8,-138],[98,-77],[129,149],[41,182],[13,-3],[221,-101],[24,63],[-227,107],[-18,61],[-25,56]],[[29059,36862],[183,3],[-8,131],[-172,-18]],[[29062,36978],[-3,-116]],[[27250,54692],[49,101],[316,18]],[[27615,54811],[-2,89],[-1,78],[-3,242]],[[63634,85085],[109,-150],[85,-17],[-2,-76],[168,-2]],[[64269,84906],[2,58]],[[64225,85123],[-208,41],[-8,-74],[-145,53],[-23,-23],[-207,-35]],[[66318,83097],[275,-6]],[[66821,83234],[48,156],[220,-5],[2,77],[45,-1],[0,-1],[176,-4],[-3,-76],[-5,-154]],[[67304,83226],[132,-4],[98,-1],[129,-4]],[[67663,83217],[44,-2],[-10,-115],[253,18],[-148,-205],[-125,-142]],[[67677,82771],[-27,-31]],[[67650,82740],[170,49],[107,49],[58,-6],[6,-76],[155,-60]],[[68146,82696],[69,31],[135,56],[357,176],[177,2],[5,113]],[[68889,83074],[1,44],[133,67],[178,-4]],[[68988,83494],[-86,0],[-177,5],[-161,27],[-73,132]],[[68132,83497],[-115,3],[-3,-79],[-88,2],[-133,-55],[-130,44],[117,109],[47,1],[-1,73],[-2,38],[82,39],[70,3]],[[68085,83951],[-117,-78],[-79,-8],[-80,69]],[[67809,83934],[-129,-12]],[[67680,83922],[-3,-92],[-2,-76],[0,-1],[-88,2],[-88,3],[-45,1],[6,169]],[[67460,83928],[-131,8],[-129,2]],[[67200,83938],[-135,11]],[[66618,83968],[-1,-34],[-176,4],[-5,-152],[-178,4]],[[66258,83790],[-6,-230],[-176,6],[-80,2]],[[65244,83736],[-49,-153],[-89,2],[-116,2],[28,0],[-56,-156],[-4,-116],[-5,-118],[91,-2],[93,77],[49,1],[-3,-152],[177,-4],[185,-3],[-7,148],[134,1],[87,10]],[[68202,83079],[0,-17],[11,-102],[-136,-53],[-106,-48],[-64,107],[39,100],[256,13]],[[66092,84333],[0,-21],[-4,-133]],[[66807,82817],[154,94]],[[67141,83020],[172,103],[-9,103]],[[67304,83226],[-176,1]],[[68741,83959],[174,-5],[7,156],[-282,6],[-249,-31],[-109,28]],[[68282,84113],[-3,1],[-13,5],[-222,164],[5,153]],[[67788,84442],[143,-157],[171,-147],[64,-52],[44,-128]],[[69534,84133],[-130,79]],[[69106,84283],[-94,-44],[-13,-131],[197,-2],[-15,-138],[-7,-96]],[[69174,83872],[182,-3],[86,-78],[5,152],[175,-4],[-2,-77],[176,-5],[4,154],[-175,3],[-176,6],[-3,20],[88,93]],[[70949,84130],[0,154]],[[70949,84284],[-126,4],[3,71],[-176,10],[-5,-153]],[[66665,79337],[-3,-115]],[[67265,79552],[115,-3],[176,-4],[-48,154]],[[67508,79699],[-124,2],[-220,8]],[[67983,79376],[-89,3],[-137,5],[45,-143]],[[70046,97649],[184,-85],[41,-14],[79,-35],[198,-70],[31,143],[91,63],[34,-162],[76,27],[104,-18],[99,1],[32,-91],[1,-2],[106,17],[75,18],[89,-42],[22,-127],[-93,-128]],[[71542,96987],[86,108],[1,52],[265,-58]],[[71919,97219],[-95,5],[-5,164],[-94,0],[-68,20],[20,99],[-17,90],[22,-2],[10,98],[122,36],[24,-14],[4,-104],[118,-70],[28,-21],[20,1],[73,210],[17,-58],[355,-27],[-10,-96],[133,-4]],[[72701,97592],[-93,107],[-173,33],[-136,59]],[[71554,98315],[-66,58],[-64,51],[-91,90],[-50,39],[-132,65],[-40,3],[-58,24],[-57,55],[119,86],[3,1],[64,76],[125,16],[18,-51],[270,-97],[100,38],[94,-109]],[[71789,98660],[84,103],[107,-120],[68,137],[205,-18],[27,162],[-161,49],[-68,-42]],[[71361,99620],[-15,103],[29,97],[108,68]],[[71483,99888],[-339,34]],[[71144,99922],[-86,-26],[81,-172],[-117,-68],[-108,20],[-87,62],[-89,1]],[[70738,99739],[-4,-114],[-111,2],[-65,-136],[0,-16],[-157,3]],[[70401,99478],[0,-17]],[[70444,98844],[-77,-332],[-314,-172],[-3,49],[-96,72],[-49,41]],[[69905,98502],[-165,-81]],[[69740,98421],[99,-128],[24,-60],[-143,-115],[-196,37],[-109,98],[20,208]],[[69435,98461],[-125,126]],[[69310,98587],[-39,-188],[19,-197],[-128,6],[-66,5]],[[69096,98213],[-15,-313],[13,-106],[20,-60],[-3,-12]],[[69819,97848],[-76,67],[-121,-37],[-13,100],[-85,41],[260,4],[101,-39],[47,-24],[-74,-90]],[[71734,98960],[115,-97],[-89,-60],[-69,37],[43,120]],[[70442,98477],[-47,39],[149,724],[104,23],[109,-16],[80,5],[27,156],[152,-21],[-61,-127],[-15,-36],[-46,-108],[-45,-107],[-15,-36],[-89,-53],[58,-19],[-30,-72],[-15,-36],[-26,-63],[-34,-80],[-23,-54],[-37,-90],[-31,-71],[-12,3],[-153,39]],[[68892,96901],[-19,56],[140,152],[0,2],[106,17],[90,-45],[73,45],[133,-35],[-101,-101],[-49,-156],[176,-44],[-36,-165],[-146,89],[-17,-134],[-20,-100]],[[69465,96415],[1,53],[149,-31]],[[69615,96437],[101,110],[59,69],[71,107]],[[69846,96723],[92,145],[77,121],[21,34],[72,81],[139,5],[107,-5],[158,-9],[-32,-137]],[[70480,96958],[132,-2],[5,-63]],[[70868,96926],[-149,86]],[[70523,97327],[-63,18],[-107,54],[-27,-65],[-76,-169],[-84,161],[-47,154],[-77,36]],[[69063,97342],[-23,-56],[-20,-50],[-24,-43],[-101,-88],[-101,-133],[-11,-109],[78,-158],[89,23]],[[69422,95732],[-133,59],[-122,66]],[[69167,95857],[-1,-10]],[[69166,95847],[-32,-184],[142,-63],[82,-9]],[[70531,95505],[165,-173],[-88,-83]],[[70616,95116],[142,0]],[[70758,95116],[-26,201],[-85,151],[-103,175],[-25,42],[-26,81],[157,-3],[122,23],[197,63],[30,61]],[[70999,95910],[-219,183]],[[70780,96093],[-45,-75],[125,-118],[-171,-26],[-186,102],[-52,-2],[2,144],[16,107]],[[70469,96225],[-187,0]],[[70150,95760],[164,-24],[-13,-71],[-4,-75],[-169,-9],[-220,-113]],[[69909,95432],[135,-15],[234,-126]],[[70875,97123],[45,-13],[151,-100]],[[71215,97144],[-185,85],[-34,28],[-180,100],[-22,43],[-134,20],[-118,9],[-19,-102]],[[71844,96878],[-158,93],[-20,-204],[51,-2],[-29,-73],[-130,-40],[124,-26],[85,-21],[20,-88],[174,-9],[3,77],[46,175],[73,-58],[128,-120]],[[72211,96582],[213,-61],[23,-108]],[[72447,96413],[305,-15]],[[72752,96398],[-67,117]],[[72685,96515],[-50,30],[-142,24],[-66,10],[-71,167],[124,186],[56,61],[-4,31],[-187,49],[3,79],[53,-1],[37,-1]],[[72537,97280],[-103,27],[7,172],[-114,-26],[-155,-88],[-43,2],[-46,1],[-177,-25],[45,-48],[80,-79]],[[70857,94503],[47,31]],[[70904,94534],[66,118],[11,239],[-188,-42],[-133,-7]],[[71020,95769],[-15,4],[-15,-178]],[[70984,95262],[106,55],[156,-7],[7,229]],[[71253,95539],[-42,1],[-47,183],[-144,46]],[[70758,95116],[28,-151],[34,-33],[209,77],[-9,35],[-5,23]],[[70938,95349],[-147,64],[86,-226],[-119,-71]],[[69285,94129],[40,179],[-18,176],[-165,16],[73,75],[-60,169]],[[69155,94744],[-104,-80],[-112,-6],[-37,-131],[201,21],[35,-50],[-67,-89],[-167,22]],[[68833,94245],[276,-23],[49,56],[127,-149]],[[69027,95349],[-37,8],[-163,-8]],[[68827,95349],[-31,-107]],[[68796,95242],[189,-59]],[[68369,94237],[105,-31]],[[68534,94468],[62,168],[58,3],[18,1],[177,23],[1,99],[-134,3],[188,273]],[[68909,95042],[-96,23],[-98,-83]],[[68715,94982],[-93,-164],[-86,-173],[-75,-171],[-92,-237]],[[68549,93995],[-153,73],[-125,-196]],[[67425,93015],[132,-28]],[[67557,92987],[13,44],[33,-28],[132,62],[129,-91],[216,-134],[-37,-67],[-22,-50],[-6,-6],[115,-131],[95,-8],[105,-133],[157,-170]],[[68487,92275],[-28,197]],[[68645,92563],[60,42],[145,57],[-9,130],[40,27],[145,-6],[-34,-84]],[[69215,92721],[3,128],[189,87]],[[69407,92936],[1,16]],[[69408,92952],[-113,101],[-151,-2],[-33,79],[-175,-45],[5,10],[12,176]],[[68953,93271],[-254,-56],[-25,95]],[[68551,93298],[-37,-72],[-152,38],[17,-137],[-20,-109],[264,-49],[-29,-105],[-54,-82],[-62,56],[-80,-93],[-128,-12],[-74,30],[-49,21],[-19,182],[14,72],[-213,73],[-92,56],[2,1],[137,163],[103,167],[36,63],[31,81]],[[68146,93642],[-33,6],[-81,-4]],[[68032,93644],[-153,-202],[-108,-129],[-234,-271],[-112,-27]],[[69141,91048],[5,127],[4,76]],[[69150,91251],[-219,44],[-115,-37]],[[68816,91258],[6,-77],[6,-57]],[[68360,93535],[-79,-105],[-30,-78],[226,41]],[[68953,93271],[235,-42],[166,145]],[[69335,93400],[-160,-20],[-98,58]],[[68778,93454],[193,-119],[-18,-64]],[[69511,93407],[48,108],[-78,137],[-49,95],[-52,50],[-89,82],[-93,-121]],[[69783,93594],[-160,-28],[-3,-134],[281,97],[-11,86],[-1,2],[-6,17],[-100,-40]],[[70449,93356],[173,-29],[-21,78],[52,-17],[214,53],[34,68],[105,-6],[59,40],[151,-36]],[[71216,93507],[-88,129],[-29,57]],[[71099,93693],[-25,13],[-77,40],[-70,35],[-5,127],[24,82],[-104,79],[-67,-95],[-183,-15],[-80,-23]],[[70512,93936],[168,-92],[-67,-122],[-59,20]],[[70554,93742],[-48,-179],[-99,54],[-39,32],[-49,68]],[[70116,93654],[76,-96],[42,-101]],[[28072,43265],[-175,-66]],[[27897,43199],[197,-43],[-29,-81],[-37,-112],[-179,123],[-87,0]],[[27762,43086],[-18,-316],[6,-61],[2,-114]],[[27752,42595],[150,4],[-85,-199],[-17,-50],[-17,-62]],[[27783,42288],[191,5],[-35,-156]],[[27939,42137],[255,6]],[[28194,42143],[76,156],[209,-13],[1,77],[158,1]],[[28638,42364],[-6,77],[-7,90],[-6,80],[-17,201],[17,-1]],[[28619,42811],[201,96],[84,40],[250,125],[205,112]],[[29359,43184],[-184,69],[-151,42],[16,59],[16,133]],[[29056,43487],[-141,54],[-155,22],[54,-79],[-64,-123],[-24,5],[-64,11],[-2,265],[-2,84]],[[28658,43726],[-14,-36]],[[28644,43690],[-57,-167],[-86,104],[-32,-103],[-28,-107],[-22,-124],[114,27],[-71,-136],[-25,4],[-134,23],[30,31],[-261,23]],[[28690,43209],[103,-31],[-23,-106],[-25,-57],[-89,49],[34,145]],[[28213,43522],[226,3],[-174,55],[-52,-58]],[[28166,43775],[69,-186]],[[28235,43589],[256,82],[9,-1],[32,55]],[[28532,43725],[18,87],[-173,23],[-167,5],[-44,-65]],[[28694,41688],[-46,2],[-91,-2],[-174,-3]],[[28383,41685],[2,-151]],[[28474,41221],[87,-3],[171,1],[-7,84],[223,1],[-2,76],[-164,-3],[-1,155],[-75,3],[-12,153]],[[29230,44667],[196,185],[48,202],[76,84]],[[29550,45138],[1,17]],[[29551,45155],[-42,-28]],[[29509,45127],[-210,-144],[-102,-62],[3,121],[-175,-1],[-2,-66]],[[28852,44893],[-5,-154]],[[29194,44589],[12,49],[24,29]],[[28554,44736],[-115,-1],[55,-153],[47,-171],[102,1],[-5,172],[-3,153],[-81,-1]],[[27282,45224],[-22,256],[-1,154],[-4,305]],[[27255,45939],[-176,-3],[-175,-3]],[[26904,45933],[2,-282],[2,-172],[0,-26],[1,-54],[0,-75],[107,-83],[158,-5],[108,-12]],[[34124,67800],[242,67],[7,69],[1,0]],[[34377,68123],[-309,-122]],[[34068,68001],[51,-60],[5,-141]],[[32707,70859],[10,23]],[[32717,70882],[-100,243]],[[34519,71713],[-48,26]],[[33894,71048],[158,-64],[-38,95]],[[34536,73065],[64,-18]],[[34600,73047],[200,0],[53,15],[2,-8]],[[35003,73306],[-131,-3],[-116,0],[-189,-167]],[[34567,73136],[-31,-71]],[[44142,80447],[226,73]],[[44329,80579],[-275,69],[-113,84],[-115,73],[-187,-4]],[[43639,80801],[56,-60],[93,-136],[-74,-6],[-6,-104],[-72,-18],[36,-120],[-211,-25],[-70,43]],[[43391,80375],[-140,-36],[-289,130],[-154,29]],[[42808,80498],[49,-172],[-111,7],[-143,15]],[[42603,80348],[-17,2]],[[42586,80350],[18,-133]],[[42604,80217],[171,-16],[165,16],[9,0]],[[42949,80217],[339,0],[172,-35],[103,52]],[[43563,80234],[246,32],[-21,64],[54,0]],[[43842,80330],[74,115],[63,29],[163,-27]],[[45529,80689],[219,43],[83,77]],[[45823,80894],[-265,-100]],[[45558,80794],[-29,-105]],[[36536,75665],[5,-120],[3,-278]],[[36544,75267],[182,-28]],[[36726,75239],[9,357],[91,116],[114,140]],[[36940,75852],[-227,4],[-178,-1],[1,-162],[0,-28]],[[36729,75006],[-1,78]],[[36728,75084],[-183,-3],[-178,-3],[1,-77],[1,-77]],[[36369,74924],[2,-76],[1,-76],[2,-77],[177,3],[42,-68],[-15,-39]],[[36530,78120],[45,63]],[[36575,78183],[-91,54],[-9,99],[-156,-22],[-188,-81]],[[36131,78233],[2,-85],[1,-67],[177,2],[175,36],[44,1]],[[42095,80659],[116,-83],[-1,-52],[-153,-3],[-4,99]],[[42053,80620],[-268,-158]],[[41785,80462],[116,-36],[40,-97],[221,1]],[[42162,80330],[38,75],[310,-46]],[[42510,80359],[-198,79],[211,167]],[[42523,80605],[-59,110],[-93,-39],[-51,-2],[-38,-2],[-187,-13]],[[21871,48779],[400,-31]],[[22271,48748],[34,125],[-132,-1],[-44,157]],[[22129,49029],[-142,64],[-51,-88],[157,-33],[-148,-95],[-74,-98]],[[25045,51860],[-135,54],[-12,4],[-131,92]],[[24767,52010],[-112,-4],[6,-186],[102,-67]],[[25745,53398],[-83,-140],[-171,5]],[[25491,53263],[-17,-151],[-125,2]],[[25375,52879],[79,-17],[46,-10]],[[25500,52852],[42,92],[81,-27],[114,238],[8,243]],[[22036,53431],[-123,70],[-207,176],[-129,-51],[-139,-21],[-118,-30],[-125,36],[-19,88],[-142,-13]],[[20974,53592],[22,-90]],[[21237,53292],[84,16]],[[21556,53323],[100,27],[74,21],[15,3],[98,2],[273,-3],[-80,58]],[[20744,53142],[214,21]],[[20925,53420],[-147,-35],[4,-166]],[[20782,53219],[-38,-77]],[[23472,54070],[-63,-50]],[[23409,54020],[215,-169]],[[23624,53851],[48,18]],[[24022,54006],[20,65],[-131,82],[-3,34]],[[23851,54230],[-141,-113],[-174,-34],[-64,-13]],[[19182,15877],[-69,-13]],[[19113,15864],[-69,-281],[251,6],[-125,159],[12,129]],[[20273,41781],[-106,51],[-17,107],[139,73]],[[20289,42012],[-37,53]],[[20252,42065],[-300,-199],[53,37],[119,-176]],[[21398,39650],[-2,1],[149,35],[3,-87]],[[21548,39599],[198,29],[-18,77],[-9,72],[122,14]],[[21841,39791],[-100,58],[-155,78],[0,12],[-1,39],[182,3],[122,5],[-1,101]],[[21888,40087],[-217,-4],[-92,-5],[-199,-3]],[[21380,40075],[-1,1],[-80,-61],[-188,-9]],[[21111,40006],[71,-89],[-133,-118],[9,0],[9,-22]],[[22436,38808],[-5,152]],[[22549,39111],[-80,95],[-292,16],[-37,115],[-65,-49],[-34,39]],[[21940,38956],[70,-37],[89,-73],[50,-33]],[[22149,38813],[35,76],[252,-81]],[[21875,38764],[89,108],[-203,24],[1,-135],[113,3]],[[23264,37902],[250,-205]],[[17085,38989],[141,346]],[[17226,39335],[-57,34],[61,92]],[[17230,39461],[-109,28],[-123,-314],[73,-25],[-119,-181],[133,20]],[[15987,40068],[-125,0]],[[15862,40068],[-32,-73],[-58,-72],[-166,125],[-7,-151],[-80,-92]],[[15519,39805],[-40,-67]],[[15964,39698],[43,91],[-70,84],[140,94]],[[16077,39967],[-66,75],[-24,26]],[[14990,38952],[2,-143],[3,-103]],[[15004,38652],[254,46]],[[15258,38698],[-2,117],[-2,78],[178,15],[-2,65],[-6,230]],[[15424,39203],[-139,-4],[-126,-3]],[[15159,39196],[-87,-148],[-75,-83],[-7,-13]],[[15317,37901],[188,-54]],[[15505,37847],[-6,149],[-182,-95]],[[15021,37594],[96,139],[54,40],[92,4]],[[15263,37777],[127,60],[-120,52]],[[15270,37889],[-3,21]],[[15040,37962],[-42,-3],[-2,99],[-9,77]],[[14745,38155],[8,-137],[-5,-59],[-101,12],[-2,-23],[-167,-73],[12,-153],[4,-153],[160,-74]],[[14654,37495],[52,71],[157,-70]],[[14863,37496],[7,20]],[[14870,37516],[35,139],[16,148],[61,109],[141,-46],[1,-26],[-141,-33],[3,-53],[-13,-152]],[[15761,37714],[-20,-11]],[[15741,37703],[-152,-63],[-168,51],[-50,54]],[[15383,37432],[44,1],[120,-40],[50,150],[6,76],[158,95]],[[14019,36558],[150,1],[31,1],[57,13],[18,212]],[[14275,36785],[-23,-13],[-82,-48],[-151,-166]],[[32413,45376],[334,-123],[66,165]],[[32813,45418],[-88,-27],[-282,73],[-30,-88]],[[31982,45545],[38,16]],[[32020,45561],[0,42],[0,232],[-75,-1],[-277,-231],[0,-93]],[[30916,45822],[132,77],[-120,151],[33,0],[184,5],[175,4],[0,115],[176,3],[-1,-114],[175,0]],[[31670,46063],[351,3],[-1,76]],[[32020,46142],[0,158],[0,108]],[[32020,46408],[0,45],[1,148],[-87,-1],[-87,0],[-176,-1]],[[31671,46599],[-259,2],[-1,-61],[94,-50],[-9,-199],[-3,-1],[-85,90],[-8,126],[-226,6],[146,-71],[0,-186],[-175,-1],[-1,239],[-230,-215]],[[30743,46119],[-194,-182]],[[30549,45937],[235,-1],[1,-116],[131,2]],[[31144,46512],[19,-1],[2,2],[116,111],[35,70],[69,-8],[109,56],[89,24],[139,-9],[123,67]],[[31845,46824],[1,2]],[[31858,47266],[-73,-55],[-206,-3],[-89,-2]],[[31490,47206],[4,-280],[-25,-24],[-153,-3],[0,92],[-2,61]],[[31314,47052],[-176,-3],[-177,-35],[0,-111]],[[32697,48294],[-104,-1],[-100,-154]],[[32493,48139],[-73,-154]],[[32420,47985],[159,1],[-160,-156],[-73,-71],[-45,-45]],[[32301,47714],[-43,-42],[627,8]],[[32885,47680],[-4,78],[-4,77],[91,2],[-2,153]],[[32966,47990],[-135,51],[-27,21],[-103,-1],[-47,-1],[67,66],[-23,14],[-1,154]],[[25449,31097],[1,-114]],[[25450,30983],[4,-153]],[[25382,30677],[-13,-6]],[[46995,58140],[2,152],[-177,-2],[-3,-154]],[[49726,59358],[91,37],[2,114]],[[49819,59509],[-192,1],[15,-152],[84,0]],[[47793,60043],[83,-31]],[[47876,60012],[9,267],[3,2]],[[47681,60358],[-54,-11]],[[48681,60587],[101,0]],[[48782,60587],[16,152],[-161,76],[44,-228]],[[47299,60438],[157,1],[174,0]],[[47976,60440],[2,148]],[[47893,60742],[-257,-2],[-175,2],[-176,2],[-2,-153],[-3,-144],[19,-9]],[[47266,61510],[33,133],[190,-24],[-47,-96]],[[47442,61523],[207,-18],[1,153],[0,154],[-2,108],[-150,46]],[[46996,61744],[-46,2],[-1,-77],[-4,-157],[176,-2],[145,0]],[[49824,61574],[175,-42],[5,189]],[[49841,61704],[-17,-130]],[[50045,63021],[177,-2],[0,153],[-175,2]],[[50047,63174],[-2,-153]],[[50363,63320],[-4,-93]],[[50359,63227],[-1,-58],[-2,-109],[138,-5],[165,0]],[[50659,63055],[4,121],[3,147]],[[35693,43989],[0,0]],[[50479,81192],[-203,104],[-142,89]],[[50134,81385],[-26,-35],[-74,-89],[131,-30],[61,-21],[119,-40],[134,22]],[[49350,82160],[-283,231]],[[48386,82086],[148,-24]],[[48812,82017],[11,70],[168,-27],[-18,-69]],[[48973,81991],[22,-80]],[[48995,81911],[117,-40]],[[49574,82025],[-191,95],[-33,40]],[[48006,81625],[173,-30],[3,80],[-112,195]],[[48070,81870],[-108,123],[-18,-2],[-80,-10]],[[47864,81981],[142,-356]],[[48394,82469],[-95,7]],[[48299,82476],[-44,-191],[-157,-194]],[[48098,82091],[12,-17],[58,-75]],[[49233,82501],[201,-278]],[[49434,82223],[107,76]],[[49541,82299],[-160,271]],[[49373,82767],[-88,0],[-89,64],[0,29],[0,81],[178,154],[25,22],[151,-3]],[[49550,83114],[-15,83]],[[49535,83197],[-223,114],[-115,77],[-85,0],[-24,90]],[[49088,83478],[-147,-57]],[[48941,83421],[79,-108],[1,-167],[0,-53],[-267,0]],[[48754,83093],[0,-58],[0,-171]],[[48754,82864],[134,0],[133,-3],[0,-113],[-1,-114]],[[49020,82634],[0,-106],[56,-108]],[[50887,82360],[117,70],[154,-35],[93,74],[-209,256],[-139,-47],[-259,-29],[-55,-7],[-310,-16]],[[50278,82521],[141,-38],[28,-116]],[[50447,82367],[218,-47],[25,93],[64,-17],[133,-36]],[[51673,83099],[-181,196]],[[51492,83295],[-75,-51]],[[51417,83244],[52,-206],[170,-1],[34,62]],[[51883,83060],[1,-83],[195,7]],[[52233,83048],[15,-99],[27,-87],[-220,20]],[[52293,82517],[17,100],[192,67],[20,-169]],[[52601,82743],[-116,3],[-113,163],[20,91],[133,-10]],[[53201,81931],[177,-3]],[[53378,81928],[176,-2]],[[53554,81926],[131,-1],[132,4],[-1,-122],[208,74]],[[54024,81881],[58,-1],[129,46],[167,25],[223,130],[67,-35]],[[54670,82061],[-106,51]],[[54564,82112],[-140,42],[-187,-57],[-231,-65],[-372,87],[-76,73],[-176,6],[-84,0],[-104,29]],[[53194,82227],[-78,-106]],[[52237,81996],[106,147]],[[52343,82143],[-195,0],[-174,-100],[176,-17],[87,-30]],[[51814,81968],[347,-52]],[[52161,81916],[111,60]],[[52272,81976],[-458,-8]],[[26267,36520],[102,34]],[[26369,36554],[6,99],[-118,134]],[[26073,37110],[-77,-31]],[[25996,37079],[58,-180]],[[24763,36869],[-1,30]],[[24762,36899],[-177,27],[-6,104]],[[23858,36924],[18,-90],[16,-61]],[[23892,36773],[129,4],[44,1]],[[24065,36778],[90,2],[123,-91]],[[24278,36689],[24,95],[75,2],[214,-31],[127,-11],[45,123],[0,2]],[[24292,35556],[174,3],[-5,152],[-175,-4],[-4,75],[-351,-7],[-175,-5],[2,-75],[1,-34],[4,-119],[2,-76],[2,-77],[265,7]],[[24032,35396],[-3,76],[-2,76],[89,2],[88,3],[88,3]],[[25888,30507],[76,-75],[251,49],[-149,121]],[[19953,44553],[-15,120],[80,52]],[[19712,45196],[-130,-72],[-85,70]],[[19497,45194],[-40,284],[-92,81],[-117,-87]],[[19248,45472],[-96,-108]],[[20487,45453],[126,103],[117,-58],[133,-56],[51,138],[93,8],[70,-342],[71,228],[-47,288]],[[19622,45668],[196,-80],[-85,-89],[144,12]],[[20056,46127],[-204,-253],[-84,-38],[-97,-184],[-49,16]],[[21392,46216],[62,75],[-160,-14],[-21,103]],[[21326,46556],[114,134],[-24,106]],[[20767,46764],[34,-17],[-82,-156]],[[22381,47658],[-16,132]],[[20943,47484],[119,-95]],[[21160,47561],[-130,63],[-87,-140]],[[21706,47685],[-128,289],[-55,-1]],[[21523,47973],[-58,-20],[4,-200]],[[21815,45143],[-276,96]],[[21611,45073],[149,-85],[-94,-86],[-8,-116],[124,-8],[-50,-139],[-72,-195]],[[22408,44639],[171,-46],[173,63],[30,129]],[[22883,45312],[5,99]],[[22783,45439],[87,219]],[[22802,46293],[-67,169],[-3,2],[-65,27],[-122,-110],[-129,-200],[-156,-342]],[[23694,45850],[258,-30]],[[24338,46070],[-5,157],[-226,-7],[-69,-51],[-6,141],[-174,-3],[-3,121],[-151,-31],[-150,113]],[[23554,46510],[-60,-162]],[[18923,44770],[46,-67]],[[23777,23960],[122,6],[118,135],[72,18],[17,7],[129,173],[-201,50],[114,19]],[[24148,24368],[-31,354]],[[24117,24722],[-178,-43]],[[23939,24679],[-221,-172]],[[23244,23874],[48,-18],[340,100]],[[26248,24119],[-32,174]],[[26216,24293],[-379,-42]],[[26307,26875],[-253,57]],[[26054,26932],[66,-144],[212,-61]],[[24257,43481],[-435,-7]],[[24620,43028],[-9,335],[-46,3]],[[25504,43871],[-180,4]],[[25324,43875],[25,-145],[192,-137]],[[23055,42517],[126,-145],[190,13]],[[22599,42191],[76,65],[-66,95]],[[22600,42580],[-5,92],[-122,-108],[-201,-31],[1,-74]],[[22081,42389],[-244,-117],[10,-324]],[[20485,42381],[101,-17],[-2,113]],[[20476,42507],[-73,-27]],[[20722,43598],[29,-130],[82,-176],[23,-174],[-32,-27],[-108,15],[-224,-128]],[[20492,42978],[-31,-254]],[[20461,42724],[32,-7]],[[20735,42577],[157,11],[204,-164]],[[21096,42424],[109,204],[148,-38]],[[21337,44084],[60,126]],[[21430,44273],[-26,28],[-140,-255],[-99,79]],[[22219,43084],[166,-31],[178,-123]],[[22563,42930],[-40,128],[-9,398],[-339,-253],[77,158],[-134,-6],[-210,198]],[[21166,44191],[-87,103],[-155,-148]],[[20480,44101],[-24,229],[-14,46]],[[20442,44376],[-237,-153]],[[20205,44223],[-25,-231]],[[20116,44001],[-59,71],[-132,-183]],[[18978,42359],[99,-135],[125,-93],[-60,-167]],[[19556,41965],[-117,165],[-239,233]],[[19338,42642],[-27,45]],[[18242,43105],[-264,-30],[-89,-95]],[[17889,42980],[-35,-75],[187,-30],[137,-65],[58,-123],[-61,-191],[42,-51],[304,127],[196,-101]],[[18657,43678],[-80,-97],[-356,-31]],[[18221,43550],[-43,-182]],[[18829,43298],[170,167]],[[2814,2323],[-140,150],[19,283]],[[2693,2756],[-197,-163]],[[2496,2593],[11,-73],[143,7],[9,-97],[32,-189],[123,82]],[[40995,33099],[-7,5]],[[40988,33104],[-136,88],[-169,-85]],[[40683,33107],[45,-155]],[[31437,35415],[165,299],[82,121]],[[31684,35835],[-278,27],[-300,11]],[[31106,35873],[-170,-31],[-217,53]],[[31086,35604],[32,44],[95,17],[103,-130],[5,-116]],[[31321,35419],[40,6],[76,-10]],[[44005,56521],[-175,0],[-357,8],[-2,201],[-127,-124],[-156,-152],[-69,76]],[[43119,56530],[-176,1]],[[42677,56456],[0,-77]],[[43648,55838],[176,-2],[1,158]],[[42245,56039],[-178,1]],[[42067,56040],[1,-269]],[[43516,55532],[-44,155]],[[43361,54464],[169,-5]],[[43530,54459],[1,154]],[[43714,54769],[353,0],[176,0],[91,0],[251,1]],[[44585,54770],[-251,152],[-114,70],[43,236]],[[44176,55582],[-177,-34]],[[44352,55457],[88,0],[0,170],[-264,-45]],[[44881,56451],[3,-153],[84,0],[0,-153],[262,-2]],[[46098,57406],[190,42]],[[46202,57830],[-113,2],[-14,-189],[45,-128],[-22,-109]],[[44706,57520],[1,307]],[[44356,57595],[-77,-75]],[[44279,57520],[427,0]],[[45055,58320],[249,226]],[[45078,58746],[-19,0],[-4,-426]],[[38400,62459],[181,-2],[0,151],[-181,2],[0,-151]],[[37257,62537],[157,-157],[0,-222]],[[37414,62158],[174,8],[-70,294],[2,156],[-281,-1],[18,-78]],[[2205,12692],[210,-317],[140,147]],[[2682,12648],[-9,169],[96,79]],[[2769,12896],[-29,82]],[[2740,12978],[-202,128]],[[3260,11792],[177,30],[-5,78]],[[3432,11900],[-107,23],[28,150],[-128,16]],[[3225,12089],[-73,-155]],[[2873,10977],[25,-78]],[[2898,10899],[86,79],[140,6],[-15,317],[66,99]],[[3175,11400],[-151,-3],[-26,-87],[-125,9],[-32,-126],[32,-216]],[[86596,94560],[266,-20],[13,235],[8,235],[-282,16]],[[86705,96622],[16,234],[-112,5]],[[86114,96961],[-11,-200]],[[87185,98066],[-351,41]],[[86834,98107],[110,-243],[114,-21]],[[49923,70572],[263,-40],[203,-123],[136,-175],[-245,-176],[-192,1]],[[50091,70174],[4,191],[-178,1],[6,206]],[[49518,70702],[-12,-8],[-291,63],[-1,-80]],[[49387,70369],[-5,-458],[-88,-152]],[[49294,69759],[314,-2]],[[50706,70073],[27,33],[68,96]],[[51526,70212],[-1,141]],[[50989,71279],[7,612],[-176,2]],[[50820,71893],[-2,-153],[-161,2],[-79,-307]],[[51687,70615],[2,65],[-531,-3],[-89,7],[-87,21],[68,144],[-65,162],[4,268]],[[49568,70982],[4,-249]],[[50280,71285],[-177,0]],[[46400,72834],[172,-15],[-174,168],[11,34]],[[46409,73021],[107,119],[-414,-5],[-49,-154],[0,-166]],[[46818,68090],[0,230],[-180,0]],[[46638,68320],[-1,-229],[181,-1]],[[47610,66248],[91,153],[-176,1],[-4,-153],[89,-1]],[[48589,67463],[-354,4],[-1,-306],[285,-5]],[[63971,67946],[-350,8],[-5,-307],[-3,-154],[-34,-156],[380,-6],[6,154],[3,141]],[[52515,72178],[268,-4]],[[52783,72174],[4,154],[-179,2]],[[52608,72330],[-90,2]],[[51879,71728],[-179,2]],[[51522,71579],[-2,-154],[335,-4],[40,56],[-16,251]],[[42919,60601],[-1,-153],[309,-1],[0,153],[0,198],[-264,49]],[[43930,60138],[179,-2],[-3,-152],[176,-2]],[[43931,60291],[-1,-153]],[[44621,60135],[194,154]],[[44288,60757],[-358,1]],[[43930,60758],[2,-161],[1,-11]],[[45286,62902],[2,154],[-175,0],[-1,-115],[-89,-38],[-2,-230],[88,0],[67,115]],[[16147,32318],[-94,219],[73,242]],[[16126,32779],[-238,-68],[-18,-146],[-44,-32]],[[15826,32533],[-241,-159]],[[15585,32374],[77,39],[381,-25],[104,-70]],[[56941,81832],[137,-124],[109,49],[158,-85],[71,148],[88,86]],[[57504,81906],[349,1],[203,-3],[184,126],[17,70]],[[57668,82047],[-95,-54],[-282,-26],[-163,-30]],[[56407,81389],[298,-3]],[[56836,81436],[183,-101],[-16,197]],[[55959,81320],[115,67],[238,2]],[[56110,81550],[-68,-62]],[[56042,81488],[-126,-133]],[[55604,81745],[9,11],[219,-63]],[[55996,81673],[1,-8]],[[55997,81665],[178,183],[-10,80]],[[55043,81992],[48,-245],[58,-62],[180,88]],[[56331,81858],[0,-64]],[[54683,82355],[-153,59]],[[54936,82404],[-130,-74],[-124,9]],[[56994,82240],[98,93]],[[55255,83457],[-286,-109]],[[56447,83489],[-86,11]],[[56250,83571],[-14,-72]],[[56661,84036],[167,-20],[-42,-38]],[[57427,83388],[139,75],[29,-116]],[[57726,83288],[-17,143],[92,88]],[[58892,84668],[-28,1]],[[55940,84335],[6,-3]],[[55946,84332],[28,46],[139,-147],[-16,-130],[118,-31],[77,-175]],[[55889,84601],[-29,-21]],[[55346,84333],[178,47],[-3,-196],[-188,-189],[164,71],[52,-48],[126,186],[94,85]],[[55493,84474],[-115,-33]],[[55378,84441],[-32,-108]],[[57229,85322],[-281,13]],[[58959,86158],[-197,0],[15,163]],[[58568,86941],[195,-13]],[[58763,86928],[-31,97]],[[58381,82177],[89,0],[-6,-157],[180,-2]],[[58644,82018],[4,156],[173,5],[2,92],[0,93],[145,-37]],[[63353,83160],[197,-161],[46,75]],[[63596,83074],[-61,152],[149,2],[35,229]],[[63167,83459],[169,-185],[17,-114]],[[64286,83100],[455,-60],[107,-33],[163,-36],[347,-9],[265,-4]],[[63727,83457],[169,-79],[2,-110],[140,31],[93,149],[49,-1]],[[62635,83326],[247,-6],[-7,-126],[105,-26],[6,263],[49,82]],[[63634,85085],[-111,56],[-20,-148],[-113,42],[-4,-101],[104,-77],[130,0],[-60,-71],[-117,-92]],[[63112,84298],[-106,-56]],[[62714,84922],[-58,169]],[[62880,84368],[-3,28]],[[62722,84034],[-332,-25],[102,205]],[[61811,83571],[-13,-172]],[[61253,84294],[-27,23]],[[61817,84804],[11,-132]],[[60732,84508],[-5,-69]],[[60816,84918],[259,-62]],[[61463,85067],[94,163],[-68,118]],[[61985,85106],[-275,-59]],[[60411,82912],[358,-7],[89,-2]],[[60858,82903],[7,262]],[[59806,82618],[252,190]],[[59272,82502],[431,57]],[[59453,82725],[-37,-174],[-144,-49]],[[60857,86028],[-8,-210]],[[59382,84814],[-208,-129]],[[60587,85980],[90,-3]],[[58978,87036],[-111,-3]],[[58867,87033],[48,-149]],[[59423,86726],[-84,153]],[[60013,87301],[91,109],[144,-78]],[[60392,87331],[-175,199]],[[57908,91619],[154,156]],[[58062,91775],[-108,106],[-166,-96],[120,-166]],[[57588,86339],[147,109],[94,2]],[[56984,87512],[-68,-149],[-82,-135],[82,-112],[127,-88],[130,-116]],[[57773,87495],[58,-126],[-27,-125],[-161,-77],[-149,110]],[[53314,82994],[110,138]],[[53725,83130],[-80,265],[-244,-30]],[[53119,83134],[27,-177]],[[60170,77540],[178,-4]],[[60348,77536],[9,232]],[[59538,77248],[359,-8]],[[59983,77239],[178,-6],[9,307]],[[59472,78016],[-179,4]],[[58937,78013],[-63,16],[-23,154],[2,76]],[[59123,78409],[2,38],[268,-5]],[[59308,78637],[-185,37],[-49,-73],[-212,-212],[-244,-92],[-31,-108],[-1,-156]],[[58586,78033],[-11,-307],[-4,-154]],[[58742,77414],[355,-5],[178,-2]],[[59818,78935],[-169,4]],[[60521,78922],[4,162]],[[60525,79084],[-133,2]],[[56735,80135],[11,-12],[32,-48]],[[56778,80075],[9,-15]],[[56787,80060],[202,32],[2,229]],[[56991,80321],[-240,62]],[[55547,79784],[327,12]],[[55498,79950],[49,-166]],[[56009,80801],[-47,-279]],[[55572,80426],[-28,88]],[[55217,80581],[-73,-155]],[[38674,52215],[-267,95],[-88,-59],[-86,76],[-66,-79],[20,-173],[227,-76],[260,216]],[[40549,54019],[152,152]],[[40701,54171],[-524,-2]],[[40177,54169],[2,-153],[-176,2],[0,-155],[-176,0],[0,-77],[170,0],[6,-152],[153,0]],[[16080,41629],[-115,-109],[114,-164]],[[16521,41723],[62,121]],[[16583,41844],[-217,-30],[-248,-109],[-5,-73],[-33,-3]],[[16065,42252],[371,4],[111,64],[-27,148],[36,59]],[[16953,42864],[-2,0],[76,250],[65,44],[-100,64],[-144,-68],[14,148],[168,85],[92,46],[6,136]],[[17030,43705],[-148,-32]],[[16361,43760],[-82,-166],[-133,-111],[135,-100],[31,-100],[22,-10]],[[17290,43917],[-16,101],[-160,-168],[19,-64]],[[5326,27021],[-260,236]],[[5066,27257],[-66,11]],[[5000,27268],[64,-106]],[[10553,30250],[-107,-123]],[[10446,30127],[130,-89],[174,115],[-43,97],[121,-36],[-116,236]],[[33721,49129],[12,-2]],[[33733,49127],[58,78],[287,127]],[[34078,49332],[-4,136],[-352,-2],[-9,-333]],[[33713,49133],[8,-4]],[[35138,49402],[-460,-312]],[[34678,49090],[467,2],[-7,310]],[[34963,49718],[-181,-103]],[[34782,49615],[60,-215],[120,-2],[176,4]],[[35138,49402],[218,149]],[[35792,49851],[53,-147],[179,-1],[4,-153],[337,0]],[[36365,49550],[-6,305]],[[36531,50000],[248,1],[14,85],[-5,162],[-87,-1]],[[36654,50457],[-11,21],[-649,-6]],[[32378,52280],[415,5]],[[32778,52889],[-531,-2],[2,-156],[116,2],[21,-197],[-8,-256]],[[24708,56800],[-55,159]],[[24653,56959],[-279,-123],[68,-84]],[[24585,56580],[-105,-33]],[[24480,56547],[50,-154],[85,33]],[[22001,57990],[4,-119]],[[21982,57246],[-57,-21]],[[21925,57225],[56,-197],[155,82]],[[23015,57467],[-17,35],[-18,124],[-303,-56],[-72,-93],[-158,117],[-187,49],[-67,62]],[[22195,57685],[-72,-217],[101,-71]],[[22457,57409],[152,-30],[122,-83],[168,-181]],[[22899,57115],[12,91]],[[19372,39493],[15,-2]],[[19387,39491],[-98,59],[52,104]],[[19341,39654],[-78,-3]],[[18784,38983],[120,-68],[132,259]],[[18527,39455],[-105,-112],[38,-88],[148,18],[56,-33]],[[16114,36415],[200,-183],[54,97],[154,42],[-102,182],[-306,-138]],[[62464,85331],[-112,219]],[[62878,85813],[20,-116],[522,-40],[268,-92]],[[64462,86087],[-129,-43],[-356,66],[-199,-113],[-87,61]],[[63692,86025],[132,-65],[136,101],[-24,-121],[142,-123]],[[63519,86547],[-283,-71]],[[64593,88066],[186,-196],[84,10]],[[64863,87880],[17,5],[38,17],[133,141],[173,-4],[55,317],[106,-70]],[[65284,88603],[-157,144],[-147,344]],[[65413,88289],[193,-93],[124,141],[-70,98]],[[65660,88435],[-162,25],[-5,-2]],[[65268,89257],[-54,-110],[45,-122],[100,-97],[27,258],[35,-286],[114,35],[13,371],[-58,61],[-222,-110]],[[65006,89496],[42,88],[-111,100],[-209,-137],[-67,32]],[[64871,90599],[-400,-214]],[[65146,90048],[24,44],[74,152],[109,167],[197,34]],[[63874,89599],[-83,-264],[-4,-209],[-65,-56],[-71,60],[4,-137]],[[64175,90411],[-130,-224],[-80,-34],[-215,-265]],[[63750,89888],[50,-17]],[[63809,88359],[117,77],[107,-16]],[[63162,88344],[37,182],[6,62]],[[62820,88638],[142,79],[13,185],[-233,12],[-127,89]],[[62500,88928],[70,-112]],[[62570,88816],[-128,-109],[-113,134]],[[63233,86616],[-50,46],[22,53]],[[62164,86838],[-45,-38]],[[60529,87835],[-223,-187]],[[60306,87648],[45,14]],[[60766,87637],[-17,-311]],[[30502,33386],[161,-256],[-15,-50]],[[30622,33494],[-71,-88],[-73,32],[24,-52]],[[29899,35999],[-383,18],[-45,53],[-429,178],[-180,101]],[[29251,35205],[1,251],[224,6],[58,74],[30,-147],[41,-154]],[[29459,34298],[11,285],[-134,58],[-46,59]],[[27999,34684],[2,-127],[64,-155]],[[28495,34138],[6,-230]],[[28562,33239],[210,-74],[43,163],[-78,44]],[[28643,33326],[-81,-87]],[[30444,32614],[11,31]],[[30455,32645],[52,200],[-146,0],[-122,-78]],[[30239,32767],[51,-152],[154,-1]],[[28197,33291],[258,3]],[[28192,33598],[1,-84],[4,-223]],[[67250,84604],[88,6],[42,-30]],[[67983,85118],[-75,88],[-6,178],[176,17],[5,80],[218,-7],[-180,-107],[-36,-231],[-55,-31]],[[68523,85424],[4,77],[-176,7],[-47,2],[-86,3]],[[67892,85494],[-72,-65],[-91,-62],[-37,-71],[-142,-65],[-37,116],[-137,126]],[[67376,85473],[-60,-79]],[[67288,85361],[-147,92]],[[65241,85750],[-201,-64]],[[65699,85896],[-185,-65]],[[64754,85926],[433,37]],[[65109,86274],[-38,-99],[-225,15],[-98,4],[-65,-202],[-215,103]],[[67871,84747],[233,70],[2,237]],[[68811,86106],[-1,-79],[-6,-230]],[[69124,86089],[-313,17]],[[69312,85246],[132,-3],[52,229]],[[69874,87909],[88,-2],[4,153],[9,305]],[[69627,88374],[-8,-304],[-361,-7],[-1,-138]],[[69020,87533],[44,-60],[175,-8]],[[69417,87534],[3,70],[351,-75]],[[68965,88003],[-268,82]],[[68615,87801],[47,-172],[250,-2]],[[69106,86860],[-14,153],[-319,9],[67,-121],[90,-3],[-6,-186],[25,0],[63,-3]],[[67435,87681],[105,77],[-70,126]],[[67351,87945],[-75,-148]],[[70255,89389],[100,26],[-2,113],[196,-4],[13,76]],[[70887,89874],[-26,67]],[[70861,89941],[-235,41]],[[69877,89849],[-125,-225]],[[70090,88820],[88,-3],[1,-2],[325,-448]],[[70504,88367],[40,28],[-66,194],[53,217],[5,153]],[[70536,88959],[-498,26],[-34,143],[-32,172]],[[68823,88943],[-29,63],[-459,-279]],[[68335,88727],[-326,-197]],[[68640,88447],[39,105],[-83,2],[135,149]],[[72142,87264],[4,103],[-129,54]],[[71625,87554],[6,120]],[[71631,87674],[-356,-104],[-12,-164]],[[71981,86786],[57,63]],[[72038,86849],[208,182]],[[71242,86873],[177,-6]],[[71419,86867],[44,-1],[133,-5]],[[70949,84284],[60,231]],[[70964,84515],[-87,58],[68,101],[-217,117]],[[70728,84791],[-171,-253]],[[70571,84537],[-96,-92],[-239,-49],[-281,-99]],[[71404,85111],[-73,2],[-113,24]],[[71218,85137],[-131,-101]],[[70995,84976],[462,-19],[7,-153],[137,14],[5,263]],[[71792,85310],[9,181],[-333,-22]],[[71468,85469],[19,-95],[-112,4],[38,-110]],[[72498,85232],[-7,-154]],[[72491,85078],[181,-4],[5,235],[9,214],[-149,-28],[-32,-111],[-354,11]],[[72151,85395],[-4,-70]],[[76062,86048],[6,153],[179,-7],[6,153],[179,-5]],[[76432,86342],[8,151],[-181,7]],[[76259,86500],[-178,5],[7,163],[-176,-5],[-7,-152],[-3,-76]],[[75899,86359],[-6,-153],[-7,-152],[-1,-39],[-262,-178]],[[75623,85837],[107,-43],[325,8]],[[76577,86337],[-145,5]],[[76432,86342],[-9,-152],[71,-2]],[[78379,86405],[187,85],[-21,235]],[[78545,86725],[8,195],[214,118],[29,-5],[79,24]],[[78394,86871],[-15,-466]],[[77863,87364],[-174,45],[3,71]],[[77429,87570],[12,-36],[-34,-274]],[[77407,87260],[48,-171]],[[77455,87089],[42,4],[-7,-175]],[[76962,86782],[-160,-45],[-183,195]],[[76619,86932],[5,-141]],[[76624,86791],[-1,-151],[-9,-151]],[[78505,87765],[-87,40]],[[78256,87811],[116,-61],[-7,-144],[131,-64]],[[79295,87619],[-309,13],[-220,7]],[[79080,86857],[257,47],[102,85]],[[79439,86989],[-10,198],[29,116]],[[95496,87663],[266,-17]],[[95769,87722],[-266,17]],[[95503,87739],[-7,-76]],[[77094,85325],[-176,6]],[[76918,85331],[-4,-157],[175,-2],[5,153]],[[69503,85626],[-38,121],[120,152],[-374,197]],[[69211,86096],[-44,1]],[[69126,89334],[3,-108],[-306,-283]],[[92287,88370],[-1,-42],[509,-5],[13,122],[-468,43],[-53,-118]],[[27360,36930],[47,67]],[[27841,37065],[-263,-86],[48,-112]],[[26712,35507],[118,1]],[[27096,36514],[-130,15],[-119,-81]],[[26843,35977],[18,-152],[-298,-13]],[[26576,36400],[-36,36]],[[26563,35812],[-7,250],[-101,52]],[[25910,35881],[-4,-81],[412,12],[4,0]],[[27053,35372],[30,1]],[[27229,35377],[-90,197]],[[27563,35211],[60,-153]],[[28819,36371],[36,166],[132,238]],[[28987,36775],[-355,1],[-70,-74],[-24,-2]],[[28185,37015],[-3,157]],[[28182,37172],[-211,-65]],[[28164,38436],[-2,101]],[[28162,38537],[-176,177],[-89,64],[-88,-102],[-161,-246]],[[27821,37667],[354,4]],[[28174,37789],[-1,70],[-2,118]],[[28171,37977],[-177,-3]],[[27994,37974],[-5,307]],[[28357,39682],[579,-2]],[[28936,39680],[-469,279]],[[28530,40071],[51,93]],[[28460,40256],[-42,-129]],[[27106,37852],[-271,43],[-150,199]],[[26685,38094],[-67,-301]],[[27047,38736],[-254,-3]],[[26793,38733],[-53,-312]],[[65401,84500],[177,-2]],[[65583,84728],[-351,6]],[[66234,82926],[410,-140]],[[66644,82786],[-60,90]],[[65694,83882],[2,102],[-488,8]],[[66264,83985],[-6,-195]],[[67680,83922],[-220,6]],[[67200,83938],[1,133],[264,-7],[37,185],[-80,49]],[[67663,83217],[-138,-63],[-9,-240],[161,-143]],[[67650,82740],[-140,-100],[102,-184]],[[67612,82456],[199,2],[65,139],[150,0],[120,99]],[[68282,84113],[69,168],[134,151]],[[67784,84441],[79,-278],[-54,-229]],[[68889,83074],[14,-34],[356,-10]],[[69174,83872],[-6,-259]],[[69800,83641],[42,139],[126,-1],[13,304]],[[69811,84244],[-277,-111]],[[70307,75191],[227,-69],[40,48],[196,-63],[108,67]],[[70586,75243],[-265,15],[-14,-67]],[[69221,79644],[11,305],[-263,7]],[[68969,79956],[-12,-304]],[[67939,80588],[-91,122],[-248,84]],[[67600,80794],[-9,-331],[-90,2],[-49,-216],[-102,-86],[-110,2]],[[67240,80165],[109,-156]],[[67568,79697],[-60,2]],[[67824,78691],[27,-35]],[[67851,78656],[118,43],[83,162],[83,158]],[[68703,80268],[-23,107],[-219,176],[-155,31],[-100,-183],[-141,154],[-124,31]],[[64527,84746],[126,74],[8,228]],[[69166,95847],[-175,-66],[-31,3]],[[68942,95775],[-115,-426]],[[69258,95315],[6,78]],[[69351,96123],[-184,-266]],[[70432,96768],[243,-3]],[[70480,96958],[-48,-190]],[[70738,99739],[-178,8],[7,245]],[[70567,99992],[-61,7],[-84,-273],[-21,-248]],[[72096,98611],[288,28]],[[72384,98639],[79,114],[45,206],[4,273],[-88,31]],[[71430,96756],[124,-104],[1,-156],[134,-225],[108,-7],[192,37],[217,206],[5,75]],[[72685,96515],[190,138],[9,16]],[[72884,96669],[57,232],[-149,16],[-7,189]],[[70904,94534],[281,-5],[95,-86]],[[71280,94443],[-226,446],[143,-3]],[[71382,95308],[79,85],[-79,142]],[[71382,95535],[-129,4]],[[70435,95137],[-67,-59]],[[70780,96093],[-261,121],[-50,11]],[[71020,95769],[49,62]],[[71069,95831],[-70,79]],[[69155,94744],[-149,166],[-30,107]],[[68796,95242],[-81,-260]],[[69725,93198],[224,-5]],[[69789,94098],[-150,-35],[-195,65],[-139,-48],[-20,49]],[[68369,94237],[-160,-360],[-177,-233]],[[67557,92987],[423,-355],[485,-407]],[[68465,92225],[22,50]],[[69150,91251],[4,98],[-118,113],[-152,-87]],[[68884,91375],[-68,-117]],[[69090,92424],[73,74]],[[69408,92952],[46,174]],[[70554,93742],[-235,-25]],[[71099,93693],[-4,68]],[[71095,93761],[-41,195],[-89,109],[17,245]],[[70982,94310],[-109,52]],[[70506,94235],[-98,-73],[104,-226]],[[72971,94877],[-134,-35]],[[72668,94510],[-28,-42],[263,-49]],[[70257,98927],[-158,-247],[-194,-178]],[[18461,44832],[0,0]],[[18091,45301],[0,0]],[[18032,45375],[0,0]],[[18051,45359],[0,0]],[[18036,44365],[86,-7],[91,181],[-120,-7],[-57,-167]],[[17636,44009],[0,0]],[[17990,45027],[14,148]],[[18004,45175],[-117,7]],[[28235,43589],[-61,-67],[-39,-88],[-161,-84],[98,-85]],[[28644,43690],[-112,35]],[[27897,43199],[-135,-113]],[[29056,43487],[65,186]],[[29121,43673],[-315,9],[39,108],[-150,40],[-37,-104]],[[28638,42364],[195,-1],[-8,-212],[472,1]],[[29297,42152],[-5,215]],[[29292,42367],[-217,197],[-271,187],[-185,60]],[[27939,42133],[0,4]],[[27783,42288],[-354,-45]],[[27429,42243],[-143,30]],[[27286,42273],[22,-155],[631,15]],[[28448,41157],[283,20],[263,32],[-1,213]],[[28993,41422],[0,115],[-1,154],[-298,-3]],[[29989,45439],[267,3],[-45,48]],[[29946,45676],[43,-237]],[[29550,45090],[0,48]],[[29230,44667],[313,2],[7,421]],[[29509,45127],[-659,-6]],[[34048,67413],[77,181],[-1,206]],[[34068,68001],[-16,-3]],[[34052,67998],[-13,-47],[-82,-103],[63,-159],[-56,-149],[42,-128],[42,1]],[[32717,70882],[151,215],[-38,92]],[[33809,71652],[-68,-70],[133,-16],[-95,-224],[-129,-113]],[[33650,71229],[160,88]],[[34197,71822],[-21,37]],[[34176,71859],[-93,83],[-274,-290]],[[33847,72583],[99,-19]],[[33946,72564],[136,141],[385,163],[133,179]],[[34536,73065],[-123,-198],[-238,-57],[-328,-227]],[[33787,72565],[-26,15]],[[33787,72565],[0,0]],[[35003,73393],[-215,25],[-177,-59]],[[34611,73359],[-44,-223]],[[34371,69146],[124,78],[60,52]],[[34555,69276],[-51,288],[126,54]],[[34630,69618],[-64,133]],[[16841,46452],[16,-148]],[[16614,46902],[-31,-78],[189,-53],[46,-125]],[[17106,47131],[-140,39],[-157,-90],[-120,-42],[-75,-136]],[[17996,46748],[141,128]],[[18983,48333],[-122,41]],[[18861,48374],[-112,-177]],[[18749,48197],[-100,-269],[-340,-148]],[[19282,47895],[209,90]],[[19214,47647],[-28,52]],[[20350,47899],[50,170]],[[20400,48069],[4,24]],[[20404,48093],[83,137]],[[20487,48230],[12,25]],[[43356,80699],[-2,-176],[66,-127],[-29,-21]],[[43639,80801],[-154,-66],[-129,-36]],[[43842,80330],[196,-52]],[[44038,80278],[135,25],[-31,144]],[[45529,80689],[13,-101],[516,148]],[[36445,75659],[91,6]],[[36940,75852],[176,216],[-227,-22],[-177,-111],[-196,-22],[-135,71],[-50,-118]],[[36010,74902],[359,22]],[[36728,75084],[-2,155]],[[36544,75267],[-379,-1],[-158,123]],[[36007,75389],[3,-487]],[[36045,77977],[100,-36],[169,-35]],[[36314,77906],[101,-17],[115,231]],[[36131,78233],[-88,-2],[2,-254]],[[42162,80330],[125,-10],[155,-96],[162,-7]],[[42586,80350],[-76,9]],[[42808,80498],[-192,46]],[[42616,80544],[-13,-196]],[[22497,49370],[-59,-399]],[[21687,48849],[184,-70]],[[22129,49029],[46,115],[-61,86]],[[22445,50822],[-87,96],[-111,-34],[-238,26],[-151,-102]],[[21492,50644],[-282,-193],[0,-9]],[[20771,50160],[-32,-98],[-140,-62],[275,-339]],[[19848,48725],[-130,-43]],[[20655,49573],[-151,-122]],[[22886,50997],[-135,28],[-98,-152]],[[23652,50861],[-95,15]],[[25173,52077],[-88,30],[120,135],[-6,1],[-107,83],[-111,-37]],[[24981,52289],[-177,-162],[-37,-117]],[[25745,53398],[27,115]],[[25772,53513],[-294,-80],[13,-170]],[[20626,53573],[96,-128],[60,-226]],[[23638,54452],[-13,-106],[-153,-276]],[[23479,53749],[145,102]],[[23409,54020],[-50,-33]],[[23359,53987],[-75,-182],[195,-56]],[[20682,52291],[19,261],[-59,-137],[-157,-117],[161,-128],[36,121]],[[22732,53882],[-9,-10],[-117,-137],[-253,-203],[-317,-101]],[[21574,53241],[90,-153],[92,38]],[[21756,53126],[-10,199],[119,-3],[262,-21],[85,33],[157,-150]],[[22369,53184],[49,266],[221,-64],[203,-159],[181,118],[-212,12],[-133,167],[101,104]],[[22779,53628],[-19,101],[-28,153]],[[18352,15243],[398,36],[36,9],[107,-4],[-51,-101],[-201,-119],[-85,-146]],[[18556,14918],[173,5]],[[18729,14923],[188,108],[-21,68],[123,-27],[156,-29],[53,229]],[[19586,15624],[-273,-35],[-4,111],[140,46],[-1,152]],[[19448,15898],[-145,-3],[-121,-18]],[[19113,15864],[-64,-17]],[[18307,15645],[4,-316],[41,-86]],[[19422,16688],[-96,-79],[69,-75],[314,56],[-4,123],[-127,96]],[[20252,42065],[58,30],[-122,174]],[[20349,41820],[-60,192]],[[21480,39343],[87,-123]],[[21698,39378],[-150,221]],[[21841,39791],[55,0],[125,-6],[-1,53]],[[22020,39838],[45,254]],[[22065,40092],[-177,-5]],[[22452,39719],[-97,74],[-194,-6],[24,-114],[240,-30],[27,76]],[[22149,38813],[294,-240],[-7,235]],[[22092,38397],[95,16],[-51,240],[13,160]],[[21635,39109],[-73,-6],[23,-271],[-46,-194],[290,20],[82,-233],[181,-28]],[[17312,39759],[-82,-298]],[[17230,39461],[84,12],[307,40]],[[17621,39513],[-19,113],[-113,-15],[-28,166],[-149,-18]],[[16077,39967],[107,-124],[63,41],[-107,123],[175,114],[-328,-53]],[[15862,40068],[24,56]],[[15886,40124],[-185,-10],[-79,56],[-28,-119],[-123,-7],[48,-239]],[[15159,39196],[-137,110],[-62,-118],[30,-236]],[[15267,38486],[-14,26],[5,186]],[[15741,37703],[-114,62]],[[15627,37765],[-122,82]],[[15317,37901],[-47,-12]],[[14870,37516],[0,-27]],[[14654,37495],[-176,-237],[153,8],[232,230]],[[13990,36600],[29,-42]],[[14275,36785],[200,12]],[[14475,36797],[86,156],[-241,-8],[-75,-2],[-255,-343]],[[13726,36190],[-21,-13]],[[13705,36177],[-144,-110],[-42,-201]],[[13519,35866],[137,-15],[187,99],[-4,83],[-157,-2],[44,159]],[[32413,45376],[0,-195],[-54,-18],[194,23],[1,-79],[127,19],[347,-118],[5,518],[-132,-18],[-88,-90]],[[30916,45822],[226,3],[175,3],[176,2],[176,2],[1,231]],[[30427,45821],[122,116]],[[30608,46130],[-264,-3],[1,-306],[82,0]],[[31671,46599],[4,80],[170,145]],[[31490,47206],[-178,-1]],[[31312,47205],[2,-153]],[[32020,46142],[39,0]],[[32059,46142],[57,155],[126,14]],[[32242,46311],[-222,97]],[[30122,48533],[25,38],[-277,-5],[-2,82],[-166,-9],[-138,-229],[132,1],[11,-305],[144,3],[58,90]],[[32966,47990],[42,154],[-45,154],[-82,-16],[-5,-6],[-179,18]],[[32420,47985],[-119,-271]],[[25450,30983],[-514,-5]],[[24936,30978],[3,-153]],[[48054,58296],[-353,-2]],[[47701,58294],[-1,-305],[350,40],[4,267]],[[47299,60438],[-19,0],[-176,3]],[[48506,60439],[2,147]],[[48508,60586],[-176,0]],[[47326,61356],[116,167]],[[47266,61510],[-34,-153],[94,-1]],[[49568,61727],[-9,-220],[264,-1],[1,68]],[[50359,63227],[-117,64],[-195,-59]],[[50047,63232],[0,-58]],[[50045,63021],[-5,-267]],[[50040,62754],[302,0],[52,76],[260,15]],[[50654,62845],[5,210]],[[50659,63055],[220,35],[37,230]],[[50916,63320],[-250,3]],[[48038,80041],[53,26]],[[48091,80067],[147,194],[97,36]],[[48335,80297],[-35,73]],[[47920,80890],[-23,56],[-68,-36],[101,-324],[-16,-111],[118,-327],[6,-107]],[[48812,82017],[161,-26]],[[48070,81870],[66,27]],[[48098,82091],[-222,-33]],[[47876,82058],[-12,-77]],[[49020,82634],[-266,0],[44,-165]],[[48477,82868],[277,-4]],[[48754,83093],[57,313]],[[48811,83406],[-216,-312],[-118,-226]],[[47207,84841],[0,0]],[[47207,84841],[-156,87],[-276,-34],[-241,-75],[215,-21],[102,73],[216,19],[140,-49]],[[49550,82866],[0,248]],[[49350,82160],[84,63]],[[50364,82239],[83,128]],[[51883,83060],[-210,39]],[[51417,83244],[-307,35]],[[51110,83279],[-118,-83],[18,-75],[127,-179],[103,54],[159,-182],[6,1],[168,-165],[117,13]],[[52746,83260],[112,44]],[[52442,83577],[68,-168]],[[52330,82322],[-1,-40]],[[52329,82282],[258,-3]],[[52706,82278],[21,-128],[142,5],[-26,-132]],[[53194,82227],[-15,122],[-51,83],[-266,92]],[[51674,82033],[140,-65]],[[52272,81976],[-35,20]],[[52343,82143],[-11,107]],[[52332,82250],[3,-35],[-513,11],[-141,38],[52,-206],[-59,17]],[[51674,82075],[0,-42]],[[53378,81928],[-24,-166],[160,-120],[40,284]],[[25996,37079],[-191,0]],[[25805,37079],[22,-122]],[[23726,36919],[4,-153],[162,7]],[[24065,36778],[13,-309],[143,3],[57,217]],[[24762,36899],[-7,246]],[[24032,35396],[264,6],[-4,154]],[[26233,30764],[184,-84],[85,155],[-4,151],[-319,3]],[[26179,30989],[113,153],[196,225]],[[26488,31367],[-353,3]],[[26135,31370],[10,-195],[-22,-186]],[[19622,45668],[-48,118],[-362,-284],[36,-30]],[[21622,45772],[-185,36]],[[21437,45808],[-150,-24],[-90,65]],[[21109,45786],[86,-7],[120,-280],[58,-309],[238,-117]],[[22254,46965],[54,104],[-52,90]],[[21592,46975],[194,-155],[229,157],[103,-80],[136,68]],[[22409,47350],[140,103],[95,-39],[110,249],[-41,242],[4,103],[138,113]],[[22971,48107],[145,349],[-8,77]],[[23108,48533],[-62,-46],[-250,105]],[[20509,47785],[212,-216],[222,-85]],[[21523,47973],[-79,138],[-165,-3],[-40,-139],[-215,-71],[-1,-154],[-302,16],[-82,-96],[-130,128]],[[20509,47792],[0,-7]],[[23451,45272],[29,561]],[[23939,24679],[91,155],[28,172],[-101,140],[-94,-313],[-98,-138]],[[25713,27365],[291,-154],[50,-279]],[[26715,26512],[136,76],[147,-42],[126,-208]],[[27124,26338],[246,8],[95,60],[-61,121],[33,130],[-110,116]],[[27327,26773],[-136,119],[-221,-101],[-143,70],[157,273]],[[26984,27134],[-98,79],[-162,-117],[-204,140]],[[26520,27236],[-2,-2],[-193,101],[-99,-55]],[[26226,27280],[-249,11],[-264,74]],[[25149,43036],[-19,763]],[[25130,43799],[-226,-4]],[[21497,42541],[256,-42],[167,-85],[127,-1]],[[22677,42848],[-114,82]],[[20461,42724],[-450,-265],[-122,-9],[-143,69],[-187,2],[-166,-74],[-100,20]],[[20806,42124],[90,140],[105,27],[95,133]],[[20329,44687],[-74,-150],[139,-52],[48,-109]],[[21958,43897],[260,177],[104,-14],[-10,158]],[[20110,43450],[264,-171],[23,-197],[95,-104]],[[19625,44112],[292,-214]],[[20205,44223],[-352,104]],[[19089,43093],[93,88],[-89,53],[152,206],[-238,5],[64,83]],[[2436,1785],[59,43],[164,-171],[45,143],[-67,32],[54,190],[229,-95],[164,203]],[[3084,2130],[-270,193]],[[2496,2593],[-60,-83],[-282,-213],[172,-267],[110,-245]],[[40684,33191],[-1,-84]],[[40988,33104],[-5,245],[-46,176],[-89,77],[-138,-2],[-46,-173],[106,-81],[2,-125],[-88,-30]],[[30650,35280],[253,-45],[248,171],[170,13]],[[31437,35415],[174,-72],[324,-52],[51,-45]],[[31986,35246],[87,283],[3,157],[-92,119],[-300,30]],[[32502,34768],[225,-6],[-144,-191],[-6,-119]],[[32577,34452],[164,36],[131,122],[225,111]],[[33097,34721],[42,201],[131,193],[267,-53],[275,23]],[[33812,35085],[90,92],[182,54],[-205,14],[-235,99],[42,192],[167,112]],[[33853,35648],[-286,1],[-180,-139],[-180,-45],[-360,139]],[[32847,35604],[-165,-3],[-219,84]],[[32463,35685],[-2,-227],[443,-143],[48,-75],[-199,-128],[-116,-136],[-11,-114],[-124,-94]],[[44176,55582],[2,411]],[[42067,56040],[-526,4]],[[41541,56044],[2,-193]],[[41543,55851],[-5,-386]],[[40314,55853],[348,0]],[[40662,55853],[-2,614],[-351,1],[-354,1],[6,-616],[353,0]],[[43360,54012],[12,84],[153,-41],[5,404]],[[45663,56526],[10,2],[-165,305],[-206,-79]],[[47025,56917],[402,3]],[[47427,56920],[265,2]],[[47694,57373],[-669,-456]],[[45055,58320],[-2,-45],[-145,-141]],[[44706,57520],[350,0],[-1,-76]],[[45495,57523],[87,1],[0,380],[332,0],[-25,123]],[[37257,62537],[-196,-76],[-4,-458],[356,-1],[1,156]],[[19762,26548],[4,-155],[686,14],[98,152],[-166,1],[-98,152],[174,2],[-3,157],[-185,-6],[-146,-155],[-367,-8],[3,-154]],[[3231,12305],[5,158],[-70,85],[11,235]],[[3177,12783],[-326,-4],[-82,117]],[[2614,12495],[207,-138],[271,-129],[139,77]],[[56343,49599],[-177,18],[-198,-42],[-5,-124],[-331,7],[-3,-210],[176,52],[265,-5]],[[51150,70046],[312,-151],[-13,-210],[336,38]],[[51785,69723],[31,85],[343,48],[73,67],[-34,175],[130,293],[55,47]],[[52383,70438],[13,382],[3,132],[-353,6]],[[52046,70958],[-355,5],[4,307],[-706,9]],[[50820,71893],[-534,3],[-1,-154],[-188,1],[-121,158],[-218,-1],[-3,-308],[-185,1],[-1,-306]],[[47706,68848],[567,-6],[307,292],[7,96],[-177,-1],[-1,152],[-176,1],[-530,2],[3,-536]],[[52246,72183],[-7,-307],[535,-9],[9,307]],[[51879,71728],[7,305],[-359,6],[-3,-307]],[[13626,30681],[73,-14],[137,-195],[389,222]],[[14225,30694],[118,71],[-204,516]],[[14139,31281],[-428,-302],[-34,-114],[-51,-184]],[[57114,82145],[155,3]],[[58128,82366],[-450,36],[-24,103]],[[56042,81488],[-45,177]],[[55595,81729],[-70,-272]],[[55525,81457],[154,-41],[58,-140]],[[55946,84332],[58,-153],[-147,-246],[-32,-300],[23,-120]],[[62274,83029],[-2,-75],[172,-4],[-6,-74],[137,-4],[8,150],[110,-3],[-54,-149],[508,-13],[9,153],[130,-3],[67,153]],[[61472,82737],[28,0],[320,-5],[15,302]],[[61227,83190],[76,-144],[180,-4],[162,-4],[8,-150],[-176,2],[-5,-153]],[[58928,86440],[-139,1]],[[54448,83569],[-35,264],[-167,52],[-43,127],[-109,63],[-111,-45]],[[53983,84030],[-72,-229],[-207,-13],[-212,-76],[-65,45],[-264,-51]],[[53163,83706],[111,-170],[171,-49],[-44,-122]],[[62327,77963],[536,-11],[9,309]],[[62872,78261],[-708,13],[-2,-77]],[[62162,78197],[-13,-154],[158,-2],[20,-78]],[[57644,77868],[53,-17],[-8,-417]],[[57689,77434],[878,-16]],[[58586,78033],[-501,8],[-441,-173]],[[59670,78012],[81,463]],[[59751,78475],[26,154]],[[60920,78688],[294,-7]],[[61214,78681],[-15,230],[-250,391],[-275,-221],[-149,3]],[[56787,80060],[214,-142],[93,-131]],[[57094,79787],[12,-7]],[[57106,79780],[216,29]],[[57322,79809],[-62,166],[-157,142],[-42,159],[-70,45]],[[56299,79876],[318,12]],[[56617,79888],[-89,232]],[[56758,80452],[105,392]],[[56863,80844],[-121,49],[-406,-32],[-133,74],[-146,-42]],[[54630,80108],[-278,-110]],[[54352,79998],[31,-104]],[[54214,80586],[209,-132],[311,-100],[185,-136]],[[55270,80730],[-85,73]],[[54759,80769],[-196,-59],[-298,-21],[-51,-103]],[[16331,41298],[153,0],[213,124],[141,17],[-226,186],[-113,73]],[[16340,41179],[-9,119]],[[15901,41285],[-82,-31]],[[15819,41254],[102,-284],[159,24],[253,122],[7,63]],[[15813,42313],[-79,-205],[88,-226],[94,35],[86,-94],[-57,-96]],[[15945,41727],[135,-98]],[[16583,41844],[1,1]],[[16977,42051],[17,3]],[[16994,42054],[-64,159],[28,160]],[[8754,27485],[199,-180],[129,16],[-7,-205],[105,-169],[93,-1],[115,146],[-55,70],[111,153],[17,162],[95,144],[-14,217],[-79,-13],[-104,-176],[-195,-21],[71,-99],[-267,-47],[-214,3]],[[10585,30485],[-349,21],[-116,-121],[73,-77],[217,-59],[-135,-44],[171,-78]],[[35306,50165],[-536,-1]],[[34770,50164],[12,-549]],[[36365,49550],[352,1],[2,-74]],[[36719,49477],[108,34],[57,145],[104,28],[84,174]],[[37072,49858],[-537,-2]],[[34539,53845],[4,-460],[506,6],[30,-26]],[[24885,56090],[255,-306],[57,52]],[[25197,55836],[118,238],[-149,11]],[[24645,55432],[-782,254]],[[23862,55682],[-70,-268],[99,-214],[32,-179],[185,57],[265,-68],[153,14],[63,97],[293,-80],[126,90],[-214,178],[-121,49],[-28,74]],[[22004,57864],[-170,-109],[-43,71],[-165,-100],[-43,-110],[103,-61],[60,-238],[179,-92]],[[22420,57330],[0,0]],[[23256,56600],[-11,10],[-62,-47]],[[23183,56563],[79,-329],[28,-399]],[[23290,55835],[212,214],[162,43],[-23,111],[211,143],[-93,194]],[[23759,56540],[-8,-110],[-321,115],[106,84]],[[25048,56826],[108,165],[-245,282],[-108,-47],[94,-168],[-244,-99]],[[19058,39629],[7,253]],[[19065,39882],[-60,266],[-137,54]],[[18868,40202],[-19,-332],[-116,-36],[-40,-242]],[[30964,30210],[136,433],[174,177],[-26,47],[-165,151],[-155,269]],[[30928,31287],[-106,9],[-52,-142],[68,-153],[-150,1],[-67,102],[-89,-46],[86,-42],[54,-322],[103,-157],[102,-47],[12,-209]],[[29921,29556],[434,3],[56,75]],[[30411,29634],[-213,38],[-233,-62],[-66,164],[-140,0],[-80,193],[-112,-7],[-35,-114],[-135,-66],[11,-123],[186,-115],[4,-100],[323,114]],[[30607,29678],[69,-53],[-91,-318]],[[30585,29307],[282,62],[158,90],[296,-117],[86,126],[298,47],[-105,147],[-181,96],[-247,-63]],[[39179,28404],[121,-69],[60,73],[91,-74]],[[39451,28334],[-48,304],[-98,82],[160,233]],[[38974,28952],[-133,-100],[75,-124],[224,72],[137,-109],[-21,-212],[-77,-75]],[[64008,86680],[-88,189],[-203,162]],[[65660,88435],[77,153],[-73,108],[-63,388],[46,312],[169,203]],[[65816,89599],[-3,8],[-153,194],[-170,17],[-232,-85],[-149,29],[-297,131]],[[63750,89888],[-99,-86]],[[63342,89546],[-212,-74],[-161,-133],[-384,-236]],[[29845,34683],[70,-5],[234,-319],[8,-95],[153,-374],[296,278],[-34,-146]],[[30455,32645],[152,-18],[265,72],[239,-10],[150,-130]],[[31261,32559],[139,97],[-293,210],[-4,73]],[[31103,32939],[-40,18]],[[30502,33386],[-284,-90],[-159,-143],[-217,-50],[-9,-79]],[[29833,33024],[255,-145],[159,-40],[-8,-72]],[[27670,35062],[2,-244],[325,4]],[[28197,33291],[-351,-4],[5,-307],[378,4],[333,255]],[[67385,85691],[-9,-218]],[[68291,84573],[300,310]],[[68367,87650],[90,-3],[-5,-152],[-78,2],[101,-162],[275,-7],[-8,-230],[-13,-75],[-151,-35],[-5,-114],[-111,-314],[-165,17],[-6,-114],[-178,-32],[19,-77],[67,-2]],[[68635,86034],[63,-40],[113,112]],[[69211,86096],[1,150]],[[69473,86385],[123,26],[163,-129],[155,-10],[123,34],[-39,218],[124,170],[-315,-6],[6,212],[-84,96],[202,-5],[10,304]],[[67340,87500],[298,98],[69,133],[127,-8],[116,-132]],[[67950,87591],[110,140]],[[67544,88249],[-36,188],[-187,-174],[-163,72],[-106,195],[24,131],[-348,198]],[[69975,88365],[529,2]],[[70536,88959],[5,79],[203,69],[315,-9],[20,141],[-241,234]],[[70874,87739],[132,-73],[-5,-206]],[[71631,87674],[8,180],[-352,12],[-165,4],[-157,82],[-242,6],[-98,-92],[249,-127]],[[70728,84791],[149,110]],[[71218,85137],[-383,34],[-121,-47],[-364,-273],[-545,-99],[-197,-101],[-80,-93]],[[68732,83719],[348,-151]],[[75840,84828],[-10,-238],[-170,-122],[443,-60],[253,158],[352,88]],[[76708,84654],[148,31]],[[76856,84685],[6,91],[-132,167]],[[77455,87089],[-280,-78],[-76,-78]],[[77155,86622],[-9,-153],[174,-7],[-5,-147]],[[79439,86989],[366,178]],[[79805,87167],[171,178]],[[79976,87345],[-165,-45]],[[95496,87663],[-14,-153],[179,-11],[352,-24],[13,153]],[[96033,87704],[19,229],[-352,23],[-177,12],[-20,-229]],[[78545,86725],[352,-13],[7,150]],[[71185,86064],[87,-5],[528,297]],[[71800,86356],[196,103],[235,-4],[123,121]],[[72354,86576],[-147,38],[6,154],[-175,81]],[[71419,86867],[21,-278],[-177,-142],[-19,-265]],[[71244,86182],[-59,-118]],[[76624,86791],[-171,8],[-7,-152],[-179,4],[-8,-151]],[[27841,37065],[4,143],[-370,-3]],[[25439,35613],[722,32],[94,41]],[[26806,35352],[-56,-369]],[[28356,36837],[-12,234],[103,-4],[438,124]],[[28885,37191],[-2,190],[-701,-209]],[[28528,37795],[205,-166],[148,14],[39,136],[-197,206],[-561,552]],[[28167,38283],[87,-1],[5,-304],[-88,-1]],[[26709,38237],[-24,-143]],[[65216,84241],[5,143]],[[65916,84337],[-11,-460]],[[66840,82198],[58,-127],[356,192],[179,21],[-6,134],[185,38]],[[66644,82786],[57,-71],[-87,-155],[171,93],[227,-122],[-165,-329],[-7,-4]],[[66653,78802],[-32,-463],[353,-5],[108,-4],[-3,-148],[70,-5],[4,153],[87,-79],[180,-5],[13,229],[71,-2],[17,248]],[[69946,75109],[241,19],[431,-118],[259,-14],[53,134]],[[70307,75191],[-368,110],[7,-192]],[[68969,79956],[14,298],[-61,-33],[-219,47]],[[68920,78753],[178,-4],[351,-9]],[[69449,78740],[25,592]],[[66466,80797],[396,-622],[378,-10]],[[67600,80794],[-456,208],[-62,82],[9,180],[-177,-20],[-90,-3],[-11,-149],[-79,1],[-51,-150]],[[66683,80943],[-132,2],[-6,-150],[-79,2]],[[77531,82946],[29,622]],[[77560,83568],[-542,16]],[[77018,83584],[70,-154],[-71,2],[-10,-321],[378,-158],[146,-7]],[[80336,82386],[178,-7],[14,306]],[[80462,82998],[-177,3],[-105,-150],[-20,-457],[176,-8]],[[68716,82120],[34,-6],[-33,-62],[94,-150],[-3,-150],[74,-92],[42,-73],[184,87],[-86,105],[243,133],[-227,98],[295,-37],[-49,121],[-290,109],[-388,19]],[[72123,81920],[223,-167],[126,-12]],[[72719,82122],[-238,30],[-82,-113],[-232,8]],[[71912,82050],[-394,7]],[[71518,82057],[54,-97],[198,10],[-63,-67],[146,-4],[81,74]],[[72823,81761],[95,-18],[151,207],[-46,180]],[[73023,82130],[-266,-2]],[[69846,96723],[268,97],[318,-52]],[[71144,99922],[-577,70]],[[69740,98421],[-197,-12],[-108,52]],[[72752,96398],[325,-133],[173,-117],[256,90],[258,-2],[1,159],[-105,216]],[[73660,96611],[-89,-85],[-475,35],[-212,108]],[[69297,95309],[402,-327],[137,6]],[[71382,95535],[180,-3],[59,124],[-365,190],[-187,-15]],[[70873,94362],[-1,103]],[[70033,94662],[-171,87],[-182,-85],[-100,22],[-302,-61],[-123,119]],[[69859,91635],[-170,160],[-198,16],[-207,146],[-84,137],[-180,-44],[-41,134],[40,145]],[[68465,92225],[285,-235],[25,-308],[59,-2],[110,1],[-60,-306]],[[69150,91251],[150,-3],[96,75],[345,-135],[113,187],[5,260]],[[69102,92405],[29,-81],[329,144],[177,-3],[72,182],[24,284],[-326,5]],[[71095,93761],[129,-7],[179,77],[-44,221],[9,75],[-151,157],[-235,26]],[[16751,44819],[162,-31]],[[27752,42595],[-99,12],[-199,-173],[-25,-191]],[[29617,41080],[125,-189],[267,7],[-3,85],[220,-92]],[[30226,40891],[6,122],[-234,142],[52,60],[-435,3],[2,-138]],[[29550,45138],[439,301]],[[29548,45868],[3,-713]],[[25924,44658],[211,115],[200,175],[163,79],[126,-9],[170,-206],[429,6]],[[27223,44818],[65,195],[-6,211]],[[26904,45933],[-291,-1],[-166,-73],[-545,-16]],[[30280,68583],[146,123],[73,270],[-34,76]],[[30465,69052],[-75,-29],[-408,-417],[-102,-218]],[[29880,68388],[104,19],[90,114],[206,62]],[[32218,70064],[-100,-189],[-228,-200],[-193,20]],[[31697,69695],[261,-68],[84,-83],[0,123],[97,33],[211,240],[-116,122]],[[34629,72682],[291,253]],[[33946,72564],[311,-81],[181,62],[18,77],[173,60]],[[17867,45649],[27,309],[61,78]],[[19348,48675],[-142,45]],[[19206,48720],[-345,-346]],[[17163,47134],[-55,115],[135,39],[92,139],[-117,69],[110,173],[-32,205],[-86,163]],[[17210,48037],[-68,-131],[-140,-77],[-191,74],[-212,-311],[-22,-169],[61,-156],[-57,-245],[33,-120]],[[44012,79796],[103,-14],[366,56]],[[44481,79838],[2,124],[-115,146],[113,270]],[[44038,80278],[1,-172],[109,-63],[-136,-247]],[[39733,78277],[-53,349],[-152,184],[-365,-114],[-78,-100]],[[39085,78596],[108,-118],[173,50],[143,-319],[132,-130],[28,-137],[73,185],[-9,150]],[[35996,75580],[11,-191]],[[36010,74902],[-188,-18],[-53,-341]],[[36045,77977],[-87,-88],[-120,32],[-108,-77],[-28,-164],[177,-6],[138,-176],[94,-166],[-55,-27],[73,-304],[210,123],[3,-177],[148,-24],[113,-92],[51,63]],[[36654,76894],[-139,243],[-18,166],[60,118],[-229,403],[-14,82]],[[42095,80659],[-42,-39]],[[43356,80699],[-380,-133],[-319,13]],[[42657,80579],[-41,-35]],[[23306,48630],[112,13],[249,318],[-98,10],[82,175],[77,24],[200,226],[77,34],[124,227]],[[22962,48805],[233,-47],[111,-128]],[[22271,48748],[101,-30]],[[23204,51188],[77,133],[-205,182]],[[23076,51503],[-226,-74],[-115,-274],[-378,-201],[-158,196],[-263,-38],[-161,-61],[-163,17]],[[21270,50910],[-40,-18],[-167,-158],[-80,-143],[62,-67]],[[20504,49451],[59,162],[-242,-39],[-142,-134],[-177,-12],[-116,-91],[35,-309],[145,60]],[[24101,50618],[128,124],[-269,70]],[[24981,52289],[-140,60]],[[24841,52349],[-175,-110],[-152,-224],[-177,-107]],[[24337,51908],[85,-190],[179,-148]],[[25772,53513],[40,158],[-21,190]],[[25791,53861],[-191,-53],[-99,-115],[-374,-198],[53,-54],[58,-315]],[[21106,52651],[-82,-64],[34,-277],[99,-132],[165,44],[138,-57]],[[21460,52165],[150,-59],[96,34],[-5,186]],[[21701,52326],[-27,35],[-54,55],[64,207],[144,-14],[-53,221],[53,201],[-72,95]],[[23479,53749],[-76,-78],[22,-145],[297,25]],[[18352,15243],[-97,-186],[139,-31],[162,-108]],[[19229,14540],[84,94],[245,332]],[[19558,14966],[-73,234],[68,128]],[[18729,14923],[35,-228],[-13,-206]],[[19699,15654],[-38,247]],[[19661,15901],[-213,-3]],[[18812,14377],[-11,-335],[262,72],[115,121],[2,125]],[[19880,40981],[41,-61],[221,135],[35,499]],[[22782,39115],[-7,229],[-175,-4],[-3,76],[0,307],[-112,-2],[-70,134],[-395,-17]],[[21380,40075],[-274,533]],[[21106,40608],[-116,-8],[-34,-519],[155,-75]],[[17085,38989],[139,-19],[168,-243],[89,-194]],[[17511,38759],[-83,150],[57,100],[-121,193],[-138,133]],[[13432,37037],[217,-33],[19,-330],[84,-153],[-67,-235],[20,-109]],[[13726,36190],[264,410]],[[14475,36797],[168,-137],[252,-36],[102,89],[-61,195],[66,105],[-13,135]],[[15424,39203],[32,0]],[[15456,39203],[155,4],[-124,178]],[[15886,40124],[154,248],[-31,206]],[[15023,40415],[99,-107],[144,35],[137,-80],[19,-143],[-129,-3],[78,-84],[-318,-208],[31,-166],[-43,-142],[172,-4],[-445,-295],[-1,-29]],[[14767,39189],[-42,-402],[-258,-154]],[[13911,37990],[-87,-98],[46,-182],[-63,-341],[1,-2],[-139,-187],[-267,103],[30,-246]],[[15627,37765],[115,278],[152,162],[521,258]],[[16415,38463],[-341,-8],[-83,-109],[-136,-15],[-61,111],[59,195]],[[15853,38637],[-124,101],[-28,113],[-266,-79],[4,-171],[-152,-100]],[[32020,45561],[235,-180],[29,59],[5,396]],[[32289,45836],[-3,308],[-227,-2]],[[30427,45821],[-219,-205]],[[32242,46311],[220,73],[0,65],[-176,4],[2,224],[-68,52]],[[32220,46729],[109,18],[228,-105],[30,147],[146,-16]],[[32733,46773],[-7,496],[-47,-51],[-480,-4]],[[32198,47291],[-4,229],[48,0]],[[32242,47520],[-934,-9],[4,-306]],[[25452,31444],[-530,-7],[14,-459]],[[24838,30210],[367,4]],[[24854,30672],[-16,-462]],[[20130,19578],[114,-179],[262,-192]],[[20506,19207],[1,173],[63,1],[-29,214],[-127,-4],[-6,154],[-180,-7],[-31,61]],[[47175,58135],[2,309],[-705,-4],[1,-153],[129,1],[42,-153]],[[47876,60012],[2,-38],[444,-3],[1,-151],[175,0],[0,152],[92,2],[-3,177],[-41,49]],[[46580,60752],[-4,-308],[117,-20]],[[47981,60873],[4,304]],[[47985,61177],[-175,11],[-4,-152],[-625,16],[-36,27]],[[47145,61079],[-207,-332],[-358,5]],[[37557,42739],[112,157],[-65,15]],[[37604,42911],[-2,73],[-178,-42],[-47,187],[-261,55],[-220,-163],[128,-325]],[[37024,42696],[90,-22],[142,-96],[10,-139],[291,300]],[[48241,79948],[270,70],[12,152],[-78,65],[-110,62]],[[48091,80067],[150,-119]],[[48372,81968],[47,-261],[185,-140],[-1,-142],[183,-33],[156,57],[10,281],[43,181]],[[48477,82868],[-178,-392]],[[48941,83421],[-130,-15]],[[49535,83197],[298,165],[114,105],[-154,152],[-197,113],[-164,-103],[-49,50]],[[49383,83679],[-295,-201]],[[49541,82299],[306,215]],[[51172,82147],[-285,213]],[[50365,82200],[-2,-45],[809,-8]],[[51799,83214],[-307,81]],[[54564,82112],[-309,296],[-304,14],[-170,113],[-197,22],[-24,16],[-125,88],[-133,7]],[[52329,82282],[3,-32]],[[52161,81916],[24,-242],[125,-2],[82,247],[90,-82],[129,39]],[[54024,81881],[51,-145],[97,2],[184,-246],[113,-8]],[[26148,37649],[-354,72],[11,-642]],[[26135,31370],[-2,77],[-365,-28]],[[22254,46965],[70,-75],[284,57],[-512,-638],[-162,-116],[38,-74],[-123,-46],[-59,-143],[-353,-122]],[[23554,46510],[-41,87],[147,17],[93,178],[204,107],[59,101],[170,73],[345,367],[131,254],[-141,-40],[-62,155],[150,84],[-12,153],[165,109]],[[18631,44754],[253,-79]],[[36101,42771],[267,158],[32,-35],[261,47],[180,-218],[183,-27]],[[37604,42911],[72,115],[185,30],[202,-44],[271,-154]],[[38334,42858],[30,139],[-183,211],[104,344],[-69,152],[-128,61],[-28,353]],[[38060,44118],[-37,39],[-194,-90],[-202,129],[72,157],[-116,190],[-4,77]],[[37579,44620],[-422,-209],[-228,-38],[-201,-232],[-427,-79],[-93,-101],[-105,61],[-44,-120],[131,-211],[230,-91],[60,-266],[-112,87],[52,119],[-96,47],[-228,-93],[31,-66],[-150,-103],[-106,25]],[[35706,43039],[-90,-106],[-4,-334],[-180,-338],[51,-186],[-211,-21],[-306,48],[-35,154],[-239,80],[-72,130],[-208,-228],[-92,48],[-336,-7],[-135,-44],[-372,-39],[-114,86],[-155,-57],[-311,88],[-168,109],[-8,273]],[[31461,40626],[-666,29],[-305,107],[-264,129]],[[29617,41080],[-142,121],[-124,-121],[-2,228],[-88,0],[-1,114]],[[29260,41422],[-267,0]],[[28383,41685],[-39,50],[-9,408],[-141,0]],[[27939,42133],[-20,-193],[-289,-219],[-124,-262],[-4,-563],[266,4],[-3,-362],[-170,-18],[-23,-84],[-168,-142]],[[27053,40046],[-75,-226],[-185,-1087]],[[28885,37191],[175,28],[2,-241]],[[29059,36862],[-72,-87]],[[31106,35873],[95,37],[198,338],[194,-145],[101,97],[190,369],[127,45],[61,-179],[54,167],[96,8],[59,-133],[46,-293],[129,-109],[45,-207],[-38,-183]],[[32847,35604],[117,165],[14,214],[68,-20],[136,241],[-6,76]],[[33176,36280],[-126,7],[-173,173],[-39,495]],[[32808,36990],[20,212],[-16,413],[34,101],[-210,17],[-146,-52],[-107,38],[-146,-50],[-219,49],[130,141],[-2,153],[187,38],[-20,307],[-82,172],[336,-28],[44,29],[364,-24],[257,129]],[[33232,38635],[-25,137],[105,176],[178,144],[104,-12],[29,-185],[175,-106],[111,-207],[363,-49],[143,42],[118,-120],[-74,-14],[21,-244]],[[34480,38197],[146,13],[245,-46],[125,-74],[-78,-301],[735,-259],[467,-69],[158,-52]],[[36278,37409],[-298,256],[-91,139],[-20,263],[-207,151],[-452,111],[-124,89],[152,39],[148,-88],[191,31],[158,-45]],[[33732,39663],[-71,119],[-57,283],[182,-1],[-103,83],[-80,218],[-17,201],[151,-5],[201,77],[51,91],[245,198],[62,142],[132,50],[135,184],[236,134],[180,-94],[142,10],[163,-101],[118,-5],[205,-123],[87,6],[201,-140],[368,-119],[323,-192],[253,-117],[223,-178],[70,-260],[324,-55],[131,-83]],[[37587,39986],[-26,133],[168,-117],[91,10],[319,-135],[97,144],[73,-48]],[[31095,38706],[-253,29],[-289,236],[-222,97],[-305,4],[-156,123],[-225,66],[-641,382]],[[29004,39643],[-68,37]],[[25713,27365],[-207,12],[-181,38],[-309,2],[13,-803],[12,-620],[-32,-384],[-781,-773]],[[24228,24837],[19,-82],[444,-46]],[[24691,24709],[500,-256],[128,-100],[-33,-58]],[[26216,24293],[66,286],[-36,302],[87,186],[204,104],[118,43],[156,-74],[80,147],[-66,100],[175,519],[82,168],[42,264]],[[23072,28320],[1046,10]],[[24118,28330],[573,5],[-1,76],[245,-82],[68,-64],[4,-232]],[[25007,28033],[213,1],[131,126],[31,157],[186,116],[-59,214],[116,168],[-92,136]],[[24992,28950],[-6,306],[247,3],[76,273],[159,2]],[[24838,30210],[-144,-5],[19,-291],[-21,-258],[-235,-259],[-90,-145],[-174,-1],[2,-75],[-251,-127],[3,-101]],[[21873,29317],[99,-59],[54,84],[-76,70],[90,247],[-216,236],[160,55],[37,-93],[153,100],[-25,138],[199,56],[170,-104],[94,33]],[[22578,30690],[58,412],[-446,73],[-277,-5],[-82,75],[2,-150],[-229,-43],[6,-160],[11,-309],[-180,-6],[22,-450],[-38,-85],[-276,-8],[-225,124],[5,-360],[-350,-12]],[[20579,29786],[11,-611],[845,26],[271,-20],[30,201],[137,-65]],[[25736,42968],[-386,-12]],[[22065,40092],[83,64],[356,-130],[84,-112],[-6,191],[110,155],[-165,-3],[-6,311],[-82,56],[102,159],[-156,109],[222,228],[-37,263],[228,-34],[-2,196],[-54,106],[119,113],[-25,79],[219,94]],[[21243,42007],[-22,-444],[-98,-190],[-135,-39],[-31,-135],[-124,-17],[61,-157],[212,-417]],[[23815,43551],[120,46],[-8,208],[-107,125],[214,120],[189,9],[239,-67],[115,28],[25,-135]],[[24602,43885],[171,173],[287,218],[-83,329],[-200,211],[-184,91],[-24,82]],[[19663,43670],[-187,10],[-122,-71],[-63,141]],[[2436,1785],[201,-627],[70,-506]],[[2707,652],[70,245],[307,56],[127,290],[154,57],[60,103],[-25,159],[73,141],[-6,168],[113,88],[172,38],[-82,176],[43,41],[-148,138],[-7,81],[-386,90]],[[3172,2523],[14,-242],[-102,-151]],[[31962,32925],[188,235],[-142,152],[-308,3],[27,182],[-135,316],[27,177],[141,172],[161,-52],[157,73],[119,162],[179,-123],[201,230]],[[32502,34768],[-97,40],[-196,-45],[-96,-79],[-77,181],[-3,315],[-44,48],[-3,18]],[[34227,35919],[-106,-34],[-63,-185],[-205,-52]],[[33812,35085],[-121,-153],[160,55],[123,-35],[186,-159],[96,-136]],[[34256,34657],[123,-146],[245,12],[399,-84]],[[35023,34439],[-255,182],[38,206],[-193,-9],[166,131],[-198,81],[-103,33],[57,166],[-13,221],[460,-212],[226,-187],[201,-27],[197,-134],[-38,-84],[-136,-19],[225,-57],[320,81],[108,-8]],[[36085,34803],[169,8],[-113,130],[201,103],[-117,101],[-88,-40],[-221,73]],[[35916,35178],[-75,73],[-44,210],[-74,52],[-237,-7],[-220,39],[-198,83],[-253,164],[-277,112],[-84,-45],[-141,-48],[-86,108]],[[44181,56522],[2,233],[0,153],[-530,1],[-534,3],[0,-382]],[[42417,56304],[1,307],[2,306],[-176,1]],[[42244,56918],[-177,1],[0,-153],[-526,4],[0,-154],[0,-572]],[[41543,55851],[-881,2]],[[40314,55853],[-5,-598],[28,-22]],[[43765,53365],[49,255],[77,69],[-22,265],[131,-27],[80,135],[-7,188],[251,186],[295,10],[99,176],[114,29],[42,112]],[[44874,54763],[-279,5],[-10,2]],[[49157,58761],[17,97],[-145,113],[51,211],[97,146],[146,80],[7,105],[147,-79],[-14,-304],[263,228]],[[49819,59509],[264,-1],[6,75],[234,10],[93,52],[72,54],[-52,216],[-159,228],[-193,120],[-128,161],[136,424],[-265,172],[8,89],[184,220],[175,409],[210,19],[48,115],[219,-1],[47,76],[9,228],[5,153]],[[50732,62328],[7,356],[-85,161]],[[50040,62754],[-2,-38],[-358,4],[4,323],[203,68],[160,121]],[[50916,63320],[256,62],[270,-29],[119,-77],[176,-268]],[[51737,63008],[191,0],[35,150],[80,0],[86,143],[17,207],[-273,10],[-244,66],[2,388],[-175,33],[-171,-208],[-106,-35],[-253,17],[-2,168]],[[50924,63947],[-311,-14],[-278,122],[-261,34],[-89,-51],[-98,70],[-190,-3],[-6,-469],[-532,2],[-523,6],[1,153],[-3167,23]],[[45467,63362],[320,-2],[158,-52],[193,-152],[175,-51],[85,-146],[157,9],[88,-60],[208,-29],[12,51],[273,-22],[113,-51],[321,39],[-41,-414],[-73,-263],[42,-253]],[[47326,61356],[-181,-277]],[[47985,61177],[703,22],[341,0],[0,-153]],[[49033,60588],[-251,-1]],[[48681,60587],[-173,-1]],[[46580,60752],[-521,3]],[[46098,57406],[-8,-184],[-594,-6]],[[44706,57520],[-1,-763],[175,0]],[[45230,56143],[-1,-1069],[-16,-146]],[[45213,54928],[168,137],[105,222],[298,161],[77,136],[-57,92],[70,179],[221,-77],[256,62]],[[46351,55840],[2,3],[67,235],[-111,87],[98,150],[194,71],[265,32],[154,236],[407,266]],[[47025,56917],[-30,114],[-3,801]],[[48960,56932],[32,155],[-290,112],[-102,440],[-90,232],[-136,70],[55,107],[151,86],[-185,146],[-94,172]],[[48301,58452],[-69,-1],[-2,-152],[-176,-3]],[[47701,58294],[-172,-1],[1,153],[87,6],[3,301],[267,1],[-1,306],[265,2],[0,74],[176,0],[4,-379],[826,4]],[[41299,59680],[-176,1],[0,-154],[-353,3],[0,-155],[-177,1],[0,-307],[135,-90],[124,-188],[50,-30],[1158,-9],[3,-915],[1057,-7]],[[43120,57830],[709,-2],[0,-153],[176,-1],[0,-153],[274,-1]],[[36786,55043],[-171,158],[145,190]],[[36760,55391],[-124,0],[164,153],[-1074,-2],[-4,152],[-351,-4]],[[35371,55690],[13,-566],[28,-96],[2,-470],[-40,-72],[21,-281],[153,76],[38,-164],[815,3]],[[20197,19799],[136,119],[215,8],[131,83],[226,58],[95,210],[-90,82],[183,250],[102,0],[-94,174],[100,126],[-35,202]],[[21166,21111],[-64,-109],[-119,-46],[-104,52],[-228,0],[-29,487],[-52,270],[3,-4],[261,-64],[106,24],[393,-52],[10,204],[105,130],[-7,126],[-117,199],[98,32],[-86,111],[48,84],[217,150],[-44,158],[220,-65]],[[22164,25089],[11,79],[-638,-12],[-10,75],[-363,-7],[17,-458],[-177,-4],[-9,151],[-771,-24],[-2,-153],[-92,-3],[-1,-189],[-176,-5],[-34,-231],[-85,-2],[12,-313],[-410,-157],[-262,-199]],[[19600,23646],[29,-1427],[17,-371],[151,-104],[133,-16],[182,59],[26,-708],[48,-17],[-121,-256],[25,-459],[-64,-281]],[[2524,15249],[-50,123]],[[2474,15372],[-127,-128]],[[2347,15244],[84,-253],[-118,-274],[-258,-166],[-325,-44],[-160,-131],[-242,84],[-324,-247]],[[1004,14213],[234,-389],[407,-569],[150,-259],[570,-855],[187,-335],[222,-514],[99,-315]],[[3175,11400],[51,133]],[[3225,12089],[6,216]],[[2740,12978],[20,699],[-220,1],[212,121],[21,67],[246,97],[197,8],[315,298],[-81,105],[163,185]],[[3613,14559],[-205,66],[4,-103],[-270,-59],[-129,-133],[-190,-21],[45,147],[-107,67]],[[82318,90239],[197,100],[117,134],[301,228],[208,249],[794,560],[259,326],[174,115],[220,567],[310,-520],[226,-955],[-43,-24],[169,-178],[65,-4]],[[85315,90837],[65,44],[760,879],[52,40],[540,225],[-105,66],[54,972],[54,93],[126,-5],[8,153],[-129,49],[14,238],[-109,173],[11,283],[-43,12],[-182,-213],[-37,-116],[-208,-94],[-301,12],[-132,47],[-214,-11],[-153,-122],[-379,-98],[-742,-456],[-284,172],[-605,246],[-103,-27]],[[83273,93399],[-199,-408],[-333,-242],[-206,-382],[-124,-130],[-896,-1129],[-85,-216],[-203,-228],[-117,-294],[-96,-78]],[[80478,90311],[-32,-673],[-72,-91],[-110,4],[-5,-124],[-96,-151],[-781,21],[-20,-396],[-351,15],[-10,-214],[-358,8],[-9,-154],[181,0],[-8,-153],[-543,7],[-13,-297],[-789,26],[-41,179],[-71,33],[-94,256]],[[77256,88607],[-44,2],[-11,-306],[-354,12],[-3,-155],[173,-4],[-4,-151],[-181,8],[-24,-672]],[[76808,87341],[229,-56],[142,-175],[149,47],[79,103]],[[78773,87791],[3,40],[-84,5],[-25,127],[132,289],[147,146],[212,-9],[-26,-460],[352,-11]],[[79976,87345],[342,294],[135,225],[187,208],[135,29],[156,222],[282,262],[51,-118],[182,-1],[7,148],[177,-8],[23,187],[336,-10],[110,95],[137,28],[250,261],[501,62],[305,-24],[259,94],[384,8],[115,302],[142,158],[334,116],[379,248]],[[84800,96135],[270,-56],[243,-259],[212,-8],[156,-53],[98,11],[9,119],[90,-36],[88,-347],[1209,-48],[268,-52]],[[87443,95406],[100,335],[181,382]],[[87724,96123],[-148,5],[3,78],[-363,13],[9,184],[-84,-29],[-449,21]],[[86085,96418],[-440,17],[-13,-229],[-578,23],[-250,-20],[-4,-74]],[[86143,97490],[356,-14],[-4,-76],[265,-11],[5,77],[176,-7],[-5,-78],[887,-31]],[[87823,97350],[596,-27],[116,74],[751,-36]],[[89286,97361],[77,290],[-488,220]],[[88875,97871],[-1367,156]],[[86834,98107],[-1342,158]],[[85492,98265],[-131,-272],[-109,-28],[-26,-304],[-64,-51]],[[85162,97610],[857,-39],[124,-81]],[[97620,95290],[-11,400],[-242,243],[-160,80],[-202,276],[2,150],[71,205],[-121,83],[-259,15],[5,76],[-177,9],[4,77],[-316,20],[-26,66],[-757,-61],[-140,-76],[-163,290],[-71,8]],[[95057,97151],[125,-182],[-25,-89],[320,-237],[177,-83],[209,-25],[226,-187],[140,-168],[710,-315],[223,133],[182,-167],[45,-109],[-58,-90],[45,-126],[244,-216]],[[51071,73399],[-31,-9],[-1267,21],[-10,-906],[-887,11],[-2,-150],[-336,2],[-4,-442],[-198,-18],[-3,-307]],[[48333,71601],[-3,-917]],[[52046,70958],[22,1227],[-1245,16],[0,404],[248,794]],[[50252,66071],[1,464],[-106,299],[22,202],[-120,335],[-92,363],[-44,489],[30,374]],[[49943,68597],[-139,37],[-265,-93],[-228,-17],[-1259,15]],[[48052,68539],[-30,-122],[64,-226],[116,-113],[-141,2],[0,-153],[-539,5]],[[47522,67932],[1,-1058],[-253,-776]],[[51785,69723],[81,60],[129,-138],[81,0],[20,-251],[-88,-136]],[[52008,69258],[79,-107],[159,8],[87,102],[279,-41],[158,16]],[[52770,69236],[181,91],[41,83],[-178,4],[5,150],[178,0],[15,146],[599,-5],[-95,48],[-20,146],[-411,210],[-62,62],[-157,-35],[-483,302]],[[59885,73381],[20,-401],[117,-110],[98,-273],[180,-200],[59,-219],[66,151],[530,-12],[-12,-458],[337,-12],[-36,267],[89,126],[-9,139],[130,234],[2,106],[107,185],[-57,144],[153,139],[11,447],[-879,14],[3,-146],[-909,28],[0,-149]],[[64537,74364],[-710,7],[-3,-175],[-10,-292],[-191,2],[10,-154],[-121,-35],[-20,-116],[209,-6],[115,-156],[150,-4],[13,153],[177,-4],[6,142],[173,-63],[37,75],[139,-39]],[[58812,73576],[48,-202],[118,-129],[26,167],[522,-16],[16,696],[-180,8],[3,-78],[-668,26],[115,-472]],[[52963,72172],[354,-5],[-14,-875]],[[53303,71292],[530,238],[225,-4],[160,48],[404,24],[514,324],[88,191],[63,-27],[166,178],[161,-27],[217,162],[182,68],[88,207]],[[55898,73031],[-87,157],[-175,-32],[-291,-52],[-70,-156],[-348,28],[-4,76]],[[54923,73052],[-351,4],[-31,38],[-234,-75],[-82,-159],[-200,46],[-11,-156],[-118,51],[-501,35],[-63,-32],[-369,-557],[0,-75]],[[11912,31258],[189,34],[100,-60],[8,160],[458,26],[28,55],[259,-86],[65,-120],[-82,-66],[-77,-216],[82,-193],[143,-111],[209,84],[152,-90],[180,6]],[[14139,31281],[217,179],[157,97],[303,91],[151,44],[7,147],[116,229],[146,112]],[[15236,32180],[349,194]],[[15826,32533],[-178,273],[174,110],[-60,47],[-270,0],[-231,139],[133,195],[123,-13],[63,110],[-136,141],[246,83],[57,115],[137,47],[202,258],[251,7],[119,46],[-4,-194],[274,-9],[130,-77],[388,149],[51,228],[77,49],[197,-22],[40,139],[145,80],[207,44]],[[11910,31321],[-123,52],[-232,14],[-5,-123],[-160,-89],[-143,-179],[-220,21],[146,175],[68,159],[-253,106],[-456,-47],[69,-215],[-126,-84],[-180,21],[-95,177],[-193,14],[-61,165],[-197,68],[-225,11]],[[9524,31567],[-296,-106],[-209,-196],[-167,-272],[131,-49],[-293,-250],[79,-139],[-105,-112],[161,-94],[-229,-160],[-129,8],[199,-279],[307,127],[360,29],[250,63],[159,-230],[374,-30],[173,94],[293,-84],[106,19],[118,-192],[130,-29],[69,-311],[152,-4],[-513,-54],[-92,-122],[-99,77],[-92,-270],[-184,-74],[-76,-140],[-189,-109],[-117,-104],[-17,-288],[91,102],[192,14],[63,-204],[178,-149],[-38,-134],[179,67],[57,-229],[-112,-288],[308,-90],[232,44],[-25,250],[166,229],[119,56],[-111,85],[192,183],[121,224],[-17,390],[-202,304],[172,-54],[69,192],[285,172],[146,152],[114,45],[243,225]],[[16147,32318],[94,-324],[-92,-94]],[[16149,31900],[181,-97],[205,5],[135,82],[26,126],[193,105],[237,-145],[209,-22],[-10,-132],[202,-64],[195,41],[200,138],[176,-20]],[[18123,32824],[-130,-248],[-197,55],[-158,-181],[-107,-34],[8,-110],[-159,-127],[-183,42],[44,78],[-158,-29],[-286,115],[-43,103],[-191,194],[16,131],[-191,-48],[-104,76],[-158,-62]],[[34925,18632],[73,-211],[255,-81],[203,-198],[99,64],[130,-52],[30,-103],[148,-34],[374,27],[125,-28],[3,-226],[-308,-7],[-42,-205],[-805,-38]],[[34723,17339],[-131,-80],[-220,51]],[[34372,17310],[-159,-32],[-401,-309],[73,-206],[92,-89],[9,-207],[-256,-110],[-102,-88],[71,-153],[-199,-116],[325,-120],[99,-176],[196,-91],[304,105]],[[34424,15718],[135,91],[569,225],[208,140],[157,-145],[203,263],[101,264],[455,118],[155,-109],[155,1],[134,108],[45,150],[236,-64],[147,-193],[105,-58],[431,-104],[60,-130],[186,92],[-60,152],[121,114],[185,91],[151,194],[4,180]],[[38307,17098],[-109,449],[-172,114],[-21,101],[136,120],[13,92],[251,93],[89,145],[-248,250],[-347,48],[-200,145],[-473,109],[-228,27],[-195,4],[-161,78],[-5,124],[100,179],[105,52],[-266,257],[34,92]],[[59092,87110],[-155,3]],[[58937,87113],[-70,-80]],[[52085,83812],[120,167],[181,-74],[40,-92],[130,0],[149,115],[184,-37],[210,-49],[64,-136]],[[53983,84030],[6,12],[-168,145],[-104,-119],[-244,-9],[-234,-64],[-138,122],[111,62],[73,270],[88,76]],[[52596,84606],[-168,-66],[-867,-98]],[[59515,76784],[799,-19],[3,-152],[188,-5]],[[60505,76608],[24,925],[-181,3]],[[59538,77248],[-81,-460],[58,-4]],[[59857,79901],[-350,7],[-3,149],[-358,-12],[10,270],[-302,55],[-393,9],[-5,-152],[-529,6],[-339,23]],[[57588,80256],[66,-34],[32,-289],[-15,-199],[-194,90],[-155,-15]],[[57106,79780],[-5,-150],[89,-2],[7,-154],[157,-6],[-2,-153],[177,-2],[5,-151],[351,-8],[9,-191],[195,-1],[-2,-54]],[[58087,78908],[6,-278],[-184,29],[-3,-156],[-174,-1],[-4,-155],[-184,17],[-3,-81],[-167,-1],[-4,-73],[-185,1],[-23,-147],[-158,0],[-7,-150],[-79,1],[-4,-154],[-95,-1],[-7,-146],[-243,0]],[[56569,77613],[41,-148],[277,24],[314,204],[229,90],[116,-1],[98,86]],[[60057,79246],[25,39],[-205,169],[-69,327],[49,120]],[[59751,78475],[803,-16],[-11,-463]],[[60543,77996],[712,-14]],[[61255,77982],[22,698],[-63,1]],[[56368,79681],[203,-41],[0,154],[523,-7]],[[56778,80075],[-16,-93],[-145,-94]],[[54214,80586],[-168,33]],[[53697,79902],[150,21],[228,-85],[277,160]],[[54278,81094],[102,79],[381,38],[134,112],[408,193],[222,-59]],[[43377,49661],[299,188],[239,-68],[304,107]],[[44219,49888],[-63,94],[80,78],[72,206],[234,82],[297,39],[110,-61]],[[44949,50326],[48,13],[27,217],[224,327],[-30,264],[-126,-4],[-79,129],[-270,31],[-173,75],[-248,334],[-171,55],[-239,196],[-112,133],[-347,-44],[52,-287]],[[43505,51765],[25,-312],[73,-150],[-165,-370],[-211,28],[-146,-97]],[[43081,50864],[158,-237],[-96,-110],[-38,-173],[100,-39],[-30,-94],[-262,-37],[4,-119],[214,-137],[-16,-77],[104,-154],[158,-26]],[[40177,54169],[-885,1]],[[39292,54170],[-878,0],[-11,-923],[-693,-1],[-179,157],[-260,0],[-42,-101],[-137,-87],[-155,-10],[-109,-127],[-81,-204],[257,-202],[5,-554]],[[39868,51604],[-148,91]],[[39720,51695],[-201,125],[-153,13],[-283,191],[-145,-1],[-48,129],[-216,63]],[[38674,52215],[113,97],[55,150],[621,539],[603,539],[112,-36],[-3,-1165],[161,-239],[75,-20]],[[40411,52080],[153,110],[-8,192],[163,137],[257,-18],[32,86],[383,17],[137,94],[237,-77],[28,68],[290,274],[-26,92],[115,58],[183,-7],[89,150],[146,18],[281,157],[33,175]],[[42904,53606],[1,568],[-976,3],[-1228,-6]],[[14616,43280],[186,-76],[91,-190],[147,-170],[171,181],[479,421],[192,92],[-243,195]],[[15639,43733],[-121,-133],[-159,-80],[-188,-24],[-237,129],[-233,-120],[-85,-225]],[[5066,27257],[233,232],[-7,-99],[146,-81],[187,43],[79,89],[111,-44],[323,271],[124,174],[245,114],[300,-19],[226,146],[273,3],[93,304],[-67,89],[92,95],[-127,51],[-154,-169],[-175,-5],[91,204],[-230,121],[14,211],[-242,-97],[-353,134],[-200,-89],[-145,94],[14,-150],[-231,-98],[-208,-30],[-331,38]],[[5147,28789],[-68,19],[-46,-195],[90,-12],[-162,-228],[124,-60],[-238,-326],[106,-124],[-55,-114],[32,-375],[70,-106]],[[33721,49129],[-187,-209]],[[33232,48624],[-214,-209]],[[34318,47879],[344,431],[356,248],[139,-169],[131,36],[194,-59],[281,14],[61,62],[238,-45],[65,98],[-113,170],[-77,253],[81,150],[-91,175],[-129,14],[-50,204],[46,89],[-123,1],[-2,215]],[[34678,49090],[-235,-164],[-58,-81],[-70,-48],[-284,208],[-202,18],[-96,104]],[[27787,45590],[346,-262],[252,-255]],[[32242,47520],[658,7]],[[32900,47527],[-15,153]],[[32493,48139],[-496,-3],[-14,707]],[[32947,48451],[101,44],[-22,766],[79,-9]],[[33105,49252],[-81,63],[-7,418],[-178,-3],[-5,306],[-177,-3],[-3,188],[-220,84],[-44,-105],[-253,45],[-168,-41],[-1,-111],[-94,-57],[-105,-214],[-285,-68]],[[31378,49114],[-115,-51],[-68,-116],[34,-140],[-132,-29]],[[31097,48778],[8,-8],[-85,-27],[-86,-175],[-117,-87],[83,-64],[-445,-313],[-83,-192],[-204,-160],[-3,-105],[-187,-234],[-165,-21],[-303,-405],[47,-70],[-198,-332],[-136,13],[-37,85],[-96,-221],[-163,-61],[-16,-80]],[[28504,46663],[-706,-726],[-11,-347]],[[38765,49759],[-301,152],[-4,425],[-355,-4],[-3,392],[-878,-11]],[[37224,50713],[13,-854],[-165,-1]],[[36719,49477],[-68,-61],[-99,-287],[312,-119],[455,-101],[569,-350],[267,-76]],[[49848,46068],[266,-63],[179,-255],[235,-42],[215,116],[40,73],[208,-54],[136,348],[242,377],[225,43],[-84,106],[-133,42],[-48,202],[101,245],[-85,62],[7,245]],[[22369,53184],[8,-147],[197,-409],[-121,1],[-144,-88],[-249,176],[-107,-243],[-210,-182],[-42,34]],[[21460,52165],[100,-24],[-46,-148],[-70,108],[-173,-32],[45,-265],[-182,-64],[-245,127],[72,-169],[-112,-135],[59,-108],[-159,-7],[-54,115],[-179,164],[-33,-166],[-172,13],[-107,92],[23,-163],[-121,-19],[-45,206],[-102,-71]],[[19959,51619],[-45,-242],[-239,-186],[-56,-103],[-211,-207]],[[23076,51503],[152,134],[-29,122]],[[23199,51759],[-92,276],[-114,10],[-1,143]],[[25682,54352],[146,234],[159,70],[639,107],[173,5]],[[27282,55283],[-123,136],[65,72],[-99,213],[-394,-221],[-107,46],[-189,216]],[[28170,58165],[-17,76],[-222,41],[-168,128],[-222,31],[-1,228],[78,3],[68,165],[-105,283]],[[27581,59120],[-182,-129],[-270,279],[-250,-77],[-40,-113],[-252,-213],[-123,181],[-221,129],[43,125],[-161,46],[-87,-157],[-127,-2],[19,-163],[-49,-179],[-110,-51],[-29,-133],[-148,-102],[-67,3],[-36,-159],[-144,-147],[-164,-42],[-196,178],[-643,160],[-438,-208],[-128,-166]],[[23778,58180],[-23,-192],[33,-146],[-56,-77],[368,-115],[209,271],[268,69],[120,103],[94,-71],[114,-206],[109,-322],[-186,-147],[-275,-209],[-151,31],[-87,-63],[-115,83],[-114,-68],[117,-109],[-156,-51],[-61,-100]],[[23743,56741],[116,-117],[-100,-84]],[[23290,55835],[126,-411]],[[23416,55424],[54,206],[215,43]],[[24645,55432],[-23,250],[105,358]],[[24727,56040],[-468,-146],[-338,25],[55,145],[156,185],[170,189],[178,109]],[[25057,56812],[248,119],[71,-91],[-113,-141]],[[25197,55836],[107,-182],[96,-12],[105,-192],[181,-142]],[[23359,53987],[-312,-122],[-268,-237]],[[19065,39882],[122,1],[-2,-116],[158,12],[-2,-125]],[[19387,39491],[325,42],[172,-97]],[[18928,40959],[-7,-241],[-158,-77],[-13,-127],[74,-88],[-25,-159],[69,-65]],[[18463,38176],[104,-96],[-85,-114]],[[18482,37966],[170,-14],[86,-88],[182,15],[160,156],[177,47],[152,129],[38,-117],[174,24],[242,204],[36,305],[-13,244],[-47,8]],[[19839,38879],[-24,-22],[-444,123],[-215,193]],[[19084,39174],[-58,-290],[-92,-75],[-90,-206],[-121,-91],[-124,-5],[-58,-112],[-5,-185],[-73,-34]],[[17454,35665],[190,318],[117,96],[136,-15],[183,277],[2,201],[323,198],[234,205],[138,71],[242,270],[-34,180],[-406,-71],[-179,112],[-156,7],[-261,-72]],[[17983,37442],[-299,-167]],[[17248,37046],[-73,-75],[7,-172],[-175,-129],[-93,-90],[-1,-109],[148,-85],[19,-259],[-184,-89],[-105,27],[29,-137],[395,-101],[89,-128],[150,-34]],[[29496,29102],[162,99],[34,89],[255,129],[-26,137]],[[30928,31287],[-155,220],[-102,-5],[-113,159],[-109,448]],[[30449,32109],[-67,196],[62,309]],[[29833,33024],[-170,18],[-38,107],[83,222],[-241,46],[-304,-1]],[[26813,32289],[-167,-318],[-84,-83],[9,-362],[29,-68]],[[26600,31458],[63,-16],[685,0],[176,-37],[280,7],[159,-64],[30,53],[200,-57],[-97,131],[102,225],[254,-14]],[[30119,31834],[63,-443],[76,-7],[-28,-131],[259,-236],[-142,-44],[89,-73],[-97,-241],[-203,-89],[-173,-55],[-286,-6],[-54,-157],[-69,136],[-169,63],[-215,-60],[-25,134],[-263,210],[14,179],[-92,44]],[[31836,30863],[-73,-117],[-16,-261],[-86,-255],[-242,-3],[-59,-43]],[[30585,29307],[-56,-129],[338,-230],[117,18],[13,-140],[188,-74],[165,58],[405,-98],[114,79],[82,-147],[49,56],[272,-36],[116,65],[255,-125],[135,46],[409,-103],[40,166],[111,124],[-89,85],[241,-29],[101,103],[123,18],[146,-117],[298,71],[-10,104],[249,-77],[100,42]],[[62798,86323],[6,-123]],[[64843,86503],[-34,118],[-111,-18],[10,97],[-184,329],[-113,88],[80,255]],[[64491,87372],[-264,-97]],[[63874,87922],[192,131],[127,-107],[121,-17],[157,107]],[[60306,87648],[-81,-44]],[[39468,30802],[-86,-125],[-537,-100]],[[38845,30577],[214,-264]],[[39059,30313],[125,-43],[29,-221],[57,-72],[251,-16],[61,-216],[129,-36],[96,-143],[176,63],[125,-96],[115,-1],[210,-126],[26,-102],[131,-109],[118,0],[121,106]],[[40603,29798],[-305,3],[-25,89],[-167,45],[-92,273],[3,145],[-328,49],[-49,61],[-71,57],[-36,233],[-65,49]],[[31261,32559],[167,-221],[80,-187],[-111,-68],[-2,-273],[-93,-69]],[[31414,31582],[50,208],[220,-16],[97,194],[196,64],[26,217]],[[32003,32249],[-162,81],[-179,184],[-17,164],[-240,154],[-56,-14],[-246,121]],[[39415,31155],[-46,102],[76,182],[302,137]],[[39155,31958],[-76,-179],[-75,-1],[23,-172],[2,-217],[93,-96],[8,-175],[285,37]],[[31219,22198],[15,-141],[262,-155],[166,45],[155,-19],[-11,-68],[208,-146],[165,-17],[253,121],[38,145],[-79,81],[400,230],[31,59],[282,158],[290,265],[-139,13],[36,86],[-180,70],[-125,-53],[-114,45],[-41,-88],[-147,-70],[-194,-7],[-91,200],[-131,-32],[-235,77],[-57,-39],[33,-173],[-138,-100],[-118,18],[-79,108],[-125,3],[-198,-81],[52,-116],[-87,-181],[69,-158],[-166,-80]],[[66629,86471],[268,39],[48,66],[410,-162],[265,1],[54,233],[0,202],[134,-14],[-3,122],[96,13],[-5,159],[-82,44],[159,296],[-23,121]],[[66939,87391],[-205,-74],[-205,-136]],[[72385,87218],[128,218],[272,195],[152,179]],[[72937,87810],[-155,4],[22,628],[-133,-71],[-227,22],[-91,179],[-315,55],[-35,209],[319,384],[5,228],[105,36],[36,268],[-154,213],[-12,206]],[[72302,90171],[-384,-56],[-248,61],[-426,-56],[-383,-179]],[[70569,87734],[305,5]],[[71468,85469],[-78,153],[-64,287],[-129,54],[-12,101]],[[71244,86182],[-299,-211],[-115,-32],[-246,-188],[-98,-25],[-223,-255],[-230,-125],[-66,-104],[273,4],[-15,-72],[-185,-185],[-380,-196],[-471,-110],[-111,-113]],[[72456,84165],[6,146],[-85,41],[-78,207],[-2,156],[86,37],[108,326]],[[71960,85092],[-12,-281],[46,-173],[-58,-152]],[[76124,83420],[-12,272],[27,374]],[[76690,84048],[18,606]],[[76856,84685],[464,282],[143,41],[642,235],[540,218],[-294,194],[610,301],[576,433],[255,552],[13,226]],[[78379,86405],[-265,-121],[195,-217],[-48,-138],[78,-278],[-446,-196],[4,66],[-264,9],[-7,-153],[-359,12],[0,-70],[-173,6]],[[76918,85331],[-42,77],[-307,10],[6,180],[-265,-47],[-34,176]],[[76276,85727],[-477,-252],[-572,6]],[[75227,85481],[288,-1145],[-176,-242]],[[75220,84098],[-176,-133],[-40,-247],[209,-67],[202,28],[230,-31],[-48,-151],[441,-22],[86,-55]],[[74928,85492],[169,22],[526,323]],[[75899,86359],[-87,2],[-14,-304],[-88,2],[-4,-155],[-529,17],[-174,7],[-9,-148],[-353,12],[11,149],[-179,5],[-32,-331],[160,-223],[91,-14],[236,114]],[[67425,93015],[-44,-132],[-418,-519],[-256,-288],[-380,-378],[-438,-323],[-283,-159],[-216,-65]],[[68546,90286],[282,-180],[10,-132],[151,-84],[27,-87],[148,13],[146,-316]],[[69992,90056],[-44,79],[-252,34],[-73,-73],[-54,167],[-130,-17],[-83,99],[-171,-45],[-38,126],[-78,-226],[-165,93],[-16,98]],[[70914,90564],[7,152],[194,2],[15,151],[162,-4],[10,150],[895,-27],[17,459],[-430,14],[509,185],[197,98],[255,0],[17,148],[360,-14],[-1,151],[177,1],[4,152],[95,-2],[0,151],[-263,5],[0,40]],[[73134,92376],[-175,41],[-126,-71],[-576,20],[-10,-68],[-175,31]],[[72072,92329],[-9,-148],[183,31],[-7,-142],[-272,4],[-138,-66],[-268,-291],[-256,128],[55,48],[-106,107],[-222,-40],[-56,-117],[-148,-51],[-192,37],[5,414],[-278,36],[-29,-134],[-118,-146],[-252,-43],[-92,-247],[-13,-74]],[[70171,83454],[-32,20]],[[66840,82198],[-387,-217],[-37,-70],[137,-69],[-4,-251],[-289,-280],[29,-200],[338,-81],[56,-87]],[[69784,79606],[288,12],[298,182],[346,26],[268,-9],[208,62],[1289,-28]],[[72481,79851],[31,831],[121,134]],[[72633,80816],[-1153,25],[7,-150],[-323,6],[-687,10],[-439,10],[5,159],[-1384,25],[2,29],[6,108],[326,-8],[138,-53],[195,14],[303,168],[79,190],[150,76],[-54,315],[39,104],[-164,163],[-25,135],[125,38],[76,147],[121,52],[88,-58],[200,110],[-1,368],[-158,170],[12,152],[73,1],[-136,269],[117,63]],[[77531,82946],[-12,-306],[-535,15],[-113,-241],[-85,-74]],[[76786,82340],[4,-137],[180,-5],[-3,-77],[172,-82],[-7,-154],[180,-6],[5,118],[269,30],[82,-160],[174,-5],[12,306],[132,-5],[38,-154],[177,-7],[352,-11],[8,152],[174,-5],[11,287],[186,-7],[13,478],[7,153],[-364,14],[21,448],[-353,30],[-696,27]],[[80855,82055],[28,612]],[[80336,82386],[-33,-690],[135,-4],[55,188],[92,35],[98,226],[172,-86]],[[93317,74691],[91,-245],[416,-135],[141,50],[168,181],[331,175],[256,33],[251,141],[218,386],[-409,114],[-218,135],[-91,-53],[-387,29],[-226,64],[-257,137],[31,-161],[-43,-172],[11,-235],[-85,-153],[-141,-105],[-57,-186]],[[72633,80816],[258,-8],[-3,-41],[327,-13],[6,153],[176,-4],[7,192],[357,-9],[6,152],[175,-6],[7,153],[360,-7],[7,148],[176,-4],[25,459],[172,7],[-246,82],[-321,-190],[-184,27],[-8,307],[-143,87],[-202,-124],[-11,75],[-130,-67],[-218,-26],[-130,41],[-73,-70]],[[72716,81650],[275,-61],[-74,-129],[222,-61],[-506,-583]],[[68983,75815],[40,-166],[156,-107],[340,-320],[226,-96],[201,-17]],[[70723,75506],[35,115],[-100,156],[-29,166]],[[70629,75943],[-104,28],[-86,-74],[-483,147],[-686,634],[-486,-357],[-64,-111],[109,-48],[272,-293],[-118,-54]],[[68899,77676],[1,145],[356,-6],[29,774],[153,-3],[11,154]],[[67851,78656],[716,-633],[332,-347]],[[74254,97173],[281,-18],[143,50],[12,148],[207,98],[138,-2],[78,160],[-136,222],[111,200],[-39,103],[83,184],[-96,210],[-56,394],[-115,92],[23,108],[-136,-26],[-127,168],[-240,60],[17,101],[-206,125],[79,13]],[[74275,99563],[-982,111],[-1810,214]],[[72384,98639],[38,3],[309,-475],[218,-47],[55,-171],[244,-132],[305,10],[33,-35],[-178,-139],[-103,-24],[34,-137],[149,-81],[118,19],[214,-52],[-11,-84],[293,-45],[51,-93],[101,17]],[[71216,93507],[45,-200],[272,-8],[297,-140]],[[71830,93159],[80,156],[213,-35],[6,79],[224,-6],[51,95],[235,-132]],[[72639,93316],[35,777],[240,-183],[147,-30],[-10,-94],[329,-82],[354,13],[112,220],[105,-13],[163,-118],[94,27],[154,170],[18,85],[132,32]],[[74512,94120],[-51,76]],[[74461,94196],[-52,104],[-179,-14],[-447,206],[-263,0],[-129,98]],[[72973,94915],[44,118],[186,14],[37,53],[245,-1],[-9,103],[126,38],[23,199],[226,-187],[116,46]],[[73967,95298],[-12,236],[-166,9],[18,640],[26,78],[153,-14],[6,82],[177,-6],[-6,-148],[365,-21],[9,156],[217,-2],[-119,323]],[[74635,96631],[-203,99]],[[72447,96413],[-103,-185],[14,-132],[89,-120],[-50,-47],[-237,-289],[-77,32],[-171,-187],[-20,-196],[-65,-114],[209,-113],[46,-201],[-61,-150],[-144,-32],[7,-212],[-134,-105],[-308,15],[-162,66]],[[18004,45175],[48,83]],[[29186,44237],[-34,-475],[-31,-89]],[[29359,43184],[305,-3],[-155,-99],[-230,-600],[13,-115]],[[29292,42367],[173,-156],[143,28],[259,-164],[7,1063],[4,631],[336,144],[1078,-11],[-1,77],[707,2]],[[30608,45521],[-10,-850],[-368,-173],[-338,-18],[10,613],[-352,-3]],[[34052,67998],[-41,214]],[[34011,68212],[-205,66],[-283,170],[-427,135],[-176,143],[-209,-49],[-36,70],[-293,36]],[[32382,68783],[-156,-134],[-367,-229],[33,-108]],[[31892,68312],[12,-150],[-102,-210],[99,-106],[226,-9],[145,-263],[-35,-86],[251,-179],[336,6],[77,-111],[143,-66],[296,26],[74,-160],[-88,-73],[96,-75],[258,3],[10,-583],[172,3],[-188,-195]],[[33767,66084],[127,159],[158,84],[85,221],[-148,105],[80,189],[32,464]],[[34101,67306],[-53,107]],[[31992,71675],[421,167],[298,62],[206,-56],[165,40],[95,-135],[180,-82],[205,19],[46,-71],[201,33]],[[34176,71859],[0,80],[349,0],[107,54],[133,168]],[[34765,72161],[54,174],[-23,125],[-167,222]],[[33847,72583],[-60,-18]],[[33761,72580],[-173,-42],[-205,38],[-14,150],[-228,-90],[-69,-93],[-694,-309],[-401,-439],[15,-120]],[[34416,74690],[96,-297],[105,-616],[-6,-418]],[[35375,73302],[105,133],[261,225],[129,150]],[[36304,74017],[264,455],[183,10],[200,-54],[145,52],[-225,274]],[[35927,75680],[-249,135],[-64,345],[-223,62],[-155,-237],[-178,-360],[-74,-69],[-289,-104],[-208,7],[7,105]],[[34494,75564],[-64,-99],[-217,-6],[69,-360],[134,-409]],[[33949,68464],[6,61],[212,28],[216,-73],[129,13],[421,127],[409,40],[19,130],[347,11],[282,124],[86,147],[604,290],[462,138]],[[37142,69500],[-116,130],[-136,11],[-434,-90],[-318,134],[-183,145],[-332,8],[-256,224],[-201,8],[80,-118],[-89,-12],[-140,-187],[-30,34],[-275,-165],[-11,-61]],[[34701,69561],[-146,-285]],[[33910,68861],[-94,-248],[133,-149]],[[19206,48720],[-19,182],[120,57],[62,181],[-128,-101],[-144,155],[25,43]],[[19122,49237],[-38,116],[-96,-35],[-29,-247],[-227,-71],[-16,-79],[-241,-201],[64,-73]],[[18539,48647],[17,-30],[-218,-209],[144,-78],[192,13],[75,-146]],[[18249,47736],[-237,164],[-29,95],[-123,-71],[-291,147],[-192,142],[-124,-15]],[[17253,48198],[-43,-161]],[[39733,78277],[338,3],[276,265],[251,31]],[[40598,78576],[-5,195],[238,-61],[275,131],[205,-61],[247,160],[152,57],[167,-9],[111,174],[89,-85],[192,175],[66,-42],[437,37],[348,-48],[208,120],[88,118],[-33,211],[194,1],[185,95]],[[43762,79744],[-96,72],[-125,203],[93,94],[-71,121]],[[42949,80217],[-64,-162],[66,-235],[-84,-152],[-95,-13],[-305,54],[-270,-60]],[[42197,79649],[-296,-163],[-146,7],[-180,-74],[-469,27],[-143,-67],[-135,34],[-108,-53],[-158,36],[-170,-79],[-176,95],[-266,-18],[-190,107],[-199,-6],[-381,67],[-342,96],[-211,-2],[173,-198],[110,-29],[86,-389],[-45,-331],[33,-125],[101,12]],[[44797,80520],[212,-147],[146,-2],[8,-180],[-119,-85],[-87,-151]],[[44957,79955],[148,-58],[142,45],[9,-85],[498,-47],[339,5],[108,-33],[302,7]],[[45558,80794],[-273,-203],[-123,30],[-364,-86]],[[36654,76894],[173,75],[414,52],[273,-19],[519,122],[127,293],[-118,112],[-24,168],[-16,614],[38,164],[-63,99],[-149,-24],[-46,-81],[-135,43],[-148,-72],[-51,84],[-243,-11],[-164,-101],[-110,15],[-7,-143],[-179,116],[17,-196],[-121,56],[-66,-77]],[[23108,48533],[198,97]],[[20523,48256],[178,128],[290,39],[131,-85]],[[21195,48957],[33,-268],[-140,0],[-100,-85],[-54,283]],[[23960,50812],[243,225],[338,246],[181,200]],[[24337,51908],[-263,-8],[-21,-145],[-121,-122],[-116,-319]],[[23816,51314],[-34,-92],[-142,-66],[91,-220]],[[26263,52479],[115,-30],[164,55],[193,330],[15,149],[-122,212],[-100,24],[-159,-125],[222,409]],[[25831,54131],[-40,-270]],[[25500,52852],[77,-59],[50,122],[130,-51],[-38,-111],[140,-48],[56,116],[210,-160],[-15,-110],[153,-72]],[[18748,16323],[562,472]],[[19723,17213],[-103,67],[49,283]],[[20474,17569],[205,235],[-75,124],[-183,20],[-70,170],[194,92],[112,9],[232,-134],[28,189],[-80,109],[-189,36],[-106,112],[81,191],[-76,99],[155,78],[-196,308]],[[19704,19797],[-298,67],[-611,-23],[-300,-117],[-461,-220],[-175,-3],[-261,70],[-231,-40],[129,-157],[186,-87],[140,-171],[164,-11],[8,-180],[-9,-88],[-218,-85],[-45,-195],[283,-291],[6,-404],[206,-147],[302,4],[28,-75],[298,6],[27,-58]],[[18402,17512],[-6,-98],[-46,-108],[-350,-374],[-203,-379],[-252,-204],[-9,-121],[-173,-80],[130,-74],[339,-36],[109,-50],[43,-163],[22,-300],[-104,-232],[209,-4],[-37,-119],[61,-109],[-63,-186],[133,-1],[132,-235],[-22,-62],[-174,-41],[5,-132],[79,-70],[18,-200],[99,-109],[173,-59],[76,-203],[39,-54],[157,18],[156,-157],[355,11],[289,-128],[326,78],[127,65],[176,-107],[226,56],[7,109],[-206,193],[-68,162],[-50,295],[49,150],[-50,223],[32,142]],[[20156,14819],[-598,147]],[[19553,15328],[98,-37],[626,28]],[[20277,15319],[61,140],[-5,260],[-78,177],[-102,47],[118,203],[-87,201],[46,180]],[[20230,16527],[-30,136]],[[20200,16663],[-117,8],[-40,-26],[-229,-321],[-153,-423]],[[25374,34819],[-14,328],[-98,260],[28,257],[504,784],[31,170]],[[25825,36618],[-512,119],[-9,31],[-541,101]],[[22347,37105],[138,268],[80,16],[-6,345],[77,4],[-3,150]],[[22633,37888],[-502,-8],[-39,517]],[[21338,39326],[-165,-16]],[[20308,35851],[263,163],[277,6],[342,-83],[55,-135],[174,-17],[422,20],[56,307],[969,23],[16,-543],[-258,-45],[106,-139],[194,60],[250,-52],[173,-159],[145,-29],[229,-152],[38,-120],[182,-12],[217,160],[123,-76],[183,11],[10,-235],[483,11],[48,65],[166,-95],[203,34]],[[17312,39759],[-239,79],[-81,104],[-84,115],[-216,52],[143,307],[202,141],[283,47],[133,101],[-73,64],[117,51],[-26,145],[159,92],[-104,54],[58,181],[-48,38]],[[17536,41330],[-117,6]],[[17419,41336],[-46,-12]],[[17373,41324],[-334,74]],[[15456,39203],[234,-33],[463,-175],[165,90],[66,-15],[-130,-219],[-147,-32],[-74,-130],[-180,-52]],[[16415,38463],[126,66],[-9,-340],[-93,-70],[45,-85],[-175,-87],[-57,68],[-203,-151],[-153,-59],[-74,-98],[-61,7]],[[13519,35866],[64,-308],[122,-109],[271,80],[313,137],[120,351],[110,40],[268,-66],[42,59],[237,-26],[230,92],[119,262],[133,-26],[270,27]],[[11866,36406],[93,51],[395,13],[186,60],[115,114]],[[12655,36644],[108,163],[-80,83],[-6,248],[-8,185],[120,251],[119,18],[93,145],[-59,187],[-50,217],[177,92],[152,241],[105,-109],[212,-71],[155,-4]],[[13958,38635],[-127,3],[22,129],[115,35],[-106,113],[-91,-10],[-108,166],[-4,130],[90,45],[224,3],[175,-172],[420,32],[199,80]],[[12206,39316],[-199,-162],[-256,-9],[-17,76]],[[11734,39221],[-77,-102],[62,-135],[-41,-74],[129,-70],[-189,-182],[-32,-90],[263,-85],[-20,-202],[130,-111],[395,-4],[188,-96],[-135,-105],[-249,-74],[-204,-89],[-135,-129],[-35,-113],[82,-116],[-218,-237],[6,-163],[-178,-162],[2,-149],[161,34],[44,-147],[183,-214]],[[11678,33485],[41,-22],[321,235],[162,67],[76,197],[-13,153],[200,233]],[[12465,34348],[27,181],[118,295],[6,110],[-94,-77],[-178,60]],[[12344,34917],[-219,9],[-342,-86],[-71,-87],[-679,-348],[-188,-43],[-179,-103],[-127,26],[-163,-65],[-100,24],[-240,-70],[-195,-219],[41,-111]],[[32289,45836],[686,5],[1262,11],[86,-76],[-2,-153],[484,6],[74,89],[125,-84],[153,-4],[39,-125],[248,-117],[79,-79]],[[36646,46252],[-132,60],[-221,-13],[-254,332],[-239,122],[-430,-47],[-323,-109],[-282,50],[-376,-103],[-397,67],[-408,22],[-405,184],[-446,-44]],[[51738,79990],[912,-7]],[[52650,79983],[79,202],[-120,119],[47,54],[-10,332],[-176,39],[5,150],[184,4],[56,250]],[[52715,81133],[-330,7],[-141,58],[-134,-16],[-48,144],[-99,16],[-153,-90],[-51,-105],[52,-151],[-25,-248],[-55,-288],[33,-124],[-55,-165],[29,-181]],[[49598,81764],[400,-253],[136,-126]],[[50479,81192],[118,-102],[287,-107],[0,29],[-3,87],[267,-87],[37,441],[145,-104],[88,39],[150,-106],[116,99],[96,-12],[44,231],[54,-1],[-63,186],[-188,103],[47,145]],[[51674,82075],[-184,22],[-145,79],[-173,-29]],[[50089,80335],[-47,100],[12,9],[-194,56],[-193,-14],[-178,80],[-381,18],[-10,161],[116,76],[19,311],[73,194],[198,295]],[[48006,81625],[12,-274],[-138,-115],[-360,-232],[-81,-89],[-303,-53],[-239,74],[-171,-108]],[[46726,80828],[436,2],[71,-269],[123,-61],[134,-167],[105,-26],[443,-266]],[[48241,79948],[169,-227],[90,-6],[162,-148],[301,-91],[185,8],[377,242],[184,-69],[158,5],[74,-100],[162,3],[58,121],[114,15],[90,115],[39,200],[-22,191],[-293,128]],[[20509,47785],[-1,-190],[-187,-355],[-134,-279],[11,-200],[-54,-353],[-77,-248]],[[21141,48326],[-41,-7]],[[21100,48319],[-113,-179]],[[20987,48140],[-1,-143],[-181,-40]],[[20805,47957],[-280,-60],[-16,-105]],[[24161,45095],[140,351],[-8,232]],[[33232,38635],[337,-212],[21,83],[283,-38],[274,-249],[174,-57],[159,35]],[[24148,24368],[134,46],[241,-43],[168,338]],[[24228,24837],[-111,-115]],[[26065,23601],[28,-14]],[[25256,24246],[-38,-66],[183,-171],[120,-241],[-30,-288],[25,-140],[83,-66],[12,-213],[90,-40],[168,48],[8,134],[118,22],[-47,128]],[[27327,26773],[121,173],[19,162],[-103,44],[-34,230],[-346,-248]],[[26520,27236],[305,163],[-23,254],[64,109],[-100,174],[-301,116],[-229,-28],[39,-337],[-131,-116],[109,-70],[-27,-221]],[[24118,28330],[5,-306],[88,-75],[532,3],[-1,106],[265,-25]],[[24601,43791],[1,94]],[[25324,43875],[-197,0],[3,-76]],[[18221,43550],[-66,43],[-218,-60],[33,-120],[-213,-129],[-35,-137],[-144,-215],[163,26],[91,91],[57,-69]],[[3172,2523],[42,24],[-18,305],[-53,-2]],[[3143,2850],[-100,-1]],[[3043,2849],[-204,-187],[-146,94]],[[40562,33937],[-60,1],[7,-534],[-44,-304],[91,-24],[128,115]],[[41709,32914],[97,74]],[[41928,33148],[-128,187],[-469,81],[-378,235],[-106,-41],[-77,201],[-208,126]],[[33097,34721],[106,-59],[273,86],[50,-133],[-63,-63],[234,22],[209,94],[161,-71],[189,60]],[[35023,34439],[129,-41],[144,140],[150,-1],[54,83],[207,10],[62,86],[300,59],[97,-59],[180,14],[180,-110],[115,79]],[[36641,34699],[-133,-66],[-171,115],[-140,-15],[-112,70]],[[34227,35919],[-130,101],[-117,-77],[-162,20],[-125,148],[-186,49],[-17,84],[-187,118],[-127,-82]],[[44874,54763],[241,163],[98,2]],[[43120,57830],[0,-458],[-702,3],[1,-153],[-177,1],[2,-305]],[[37301,55629],[180,223],[75,306],[-170,-65],[-264,-246],[-362,-456]],[[3432,11900],[160,57],[173,213],[13,101],[197,129],[137,237],[196,210],[-35,81],[104,129],[-149,43],[-24,111],[-220,-153],[-46,-150],[-134,-144],[-186,-119],[-170,56],[-15,94],[-256,-12]],[[2898,10899],[84,-269],[75,-374]],[[3057,10256],[74,138],[159,43],[215,-29],[136,112],[59,128],[-2,210],[-71,-5],[-12,196],[89,160],[16,302],[-63,33],[-164,-30],[-58,-76],[-125,55],[-135,-93]],[[87724,96123],[-27,464],[87,-8],[39,771]],[[86143,97490],[-16,-305]],[[50668,76376],[-105,-74],[115,-97],[151,-10],[-26,-96],[105,-34],[14,101],[205,99],[211,-16],[1,-93],[456,148],[165,0]],[[48328,70378],[-3,-614],[969,-5]],[[46818,68090],[175,-1],[0,-153],[529,-4]],[[48052,68539],[-531,5],[0,305],[-881,8]],[[46640,68857],[-2,-537]],[[41300,59835],[187,11],[342,319],[2,893],[350,3],[-14,154]],[[42167,61215],[-864,-1]],[[43930,60758],[-525,-4],[3,463]],[[43408,61217],[-882,-2]],[[42526,61215],[-7,-613],[-84,-1],[-2,-151],[89,-1],[7,-170],[124,17],[751,-3],[-2,-154],[528,-1]],[[44760,62447],[700,-3]],[[45114,63212],[-353,0],[-1,-765]],[[15236,32180],[230,-10],[4,-128],[352,-158],[12,-115],[315,131]],[[63596,83074],[-3,-74],[734,-15]],[[60858,82903],[-5,-153],[619,-13]],[[59061,82330],[26,-155],[84,-2],[9,298],[92,31]],[[55380,83505],[-320,574],[280,69],[6,185]],[[55378,84441],[-168,44],[-526,19],[-328,-23],[-148,87],[-313,-2],[-361,10]],[[61255,77982],[541,-17],[4,160],[88,77],[274,-5]],[[62872,78261],[23,618]],[[62895,78879],[-269,4],[16,547],[-874,12],[-175,-149],[-620,11],[-18,72],[-271,92],[-4,-92],[-256,-131],[-159,-3],[-141,-70]],[[57588,80256],[-19,78],[-366,-20],[25,74],[-215,1],[12,452],[-81,7]],[[56944,80848],[-81,-4]],[[58534,87268],[9,78],[148,-32]],[[58691,87314],[-34,85],[172,432]],[[58829,87831],[-370,117],[-142,-47]],[[44219,49888],[174,-149],[100,-237],[113,27],[265,160],[41,97]],[[44912,49786],[137,287],[-87,32],[-13,221]],[[43505,51765],[-59,-47],[-146,76],[-122,-115],[-194,-36],[-330,25],[-229,-80],[237,-256],[114,-29],[107,-171],[213,-19],[-15,-249]],[[39720,51695],[12,116],[254,200],[124,54],[301,15]],[[16340,41179],[2,-172],[-61,-163],[-272,-266]],[[17039,41398],[43,111],[-8,326]],[[15945,41727],[-252,-151],[-149,14],[-183,-84],[-14,-182],[-229,-19],[-67,-72],[-3,-175],[161,-119],[397,40],[18,80],[195,195]],[[17002,42006],[-8,48]],[[15820,42484],[-95,-40],[-100,134],[-186,-60],[-168,28],[-200,-85],[-159,-4],[-59,-246],[177,-57],[315,113],[141,-47],[317,99]],[[32900,47527],[2217,15]],[[33713,49133],[-242,111],[-236,-43],[-130,51]],[[34770,50164],[-256,2],[-95,-7],[5,-305],[-89,-1],[11,-421],[-268,-100]],[[37224,50713],[-5,275],[-500,-450],[-65,-81]],[[35460,5990],[237,-222],[69,-2],[74,-158],[242,-3],[64,209],[-4,210],[-168,183],[-421,-46],[-93,-171]],[[23416,55424],[50,-134],[-139,-340],[-67,-155]],[[23260,54795],[-160,-305],[-368,-608]],[[23778,58180],[-85,148],[15,162],[-82,-91],[-399,-125],[-56,20],[-226,-109],[-71,35],[-273,-123],[-294,0],[-94,-38]],[[22899,57115],[175,-284],[109,-268]],[[28922,58860],[7,325],[-68,152],[-257,118],[-228,-5],[172,122],[-525,-48],[-59,-32],[92,-126],[-163,0],[-312,-246]],[[18520,39063],[-371,-420],[-330,-230],[-133,-137],[60,-152],[119,1],[138,-127],[94,125],[92,-41],[274,94]],[[19839,38879],[127,359],[-59,50]],[[31836,30863],[89,143],[82,-42],[-79,233],[230,3],[77,185],[13,207],[97,92],[-41,184],[-117,208],[-184,173]],[[37861,28948],[161,-110],[-56,-68],[259,-163],[298,-264],[152,-57],[94,151],[196,12],[214,-45]],[[39451,28334],[165,-23],[94,76],[401,-157],[85,70],[8,185],[182,97],[31,161],[106,68],[31,142]],[[65816,89599],[2,-243],[75,-182],[289,-199],[289,-38],[136,37],[121,-115]],[[64491,87372],[229,159],[143,349]],[[72302,90171],[208,148],[321,65]],[[72831,90384],[277,154]],[[67712,89858],[201,-575],[152,-133],[301,-372],[-31,-51]],[[72354,86576],[116,36],[252,-13],[181,-4],[34,660],[21,544],[-21,11]],[[70142,83505],[3,122],[682,-26],[16,152],[357,-9],[6,149],[172,-8],[6,75],[266,-8],[14,70],[255,-7],[5,164]],[[72151,85395],[-178,5],[1,149],[-108,3],[4,112],[116,68],[185,-3],[-135,88],[58,241],[-227,50],[-67,248]],[[74928,85492],[299,-11]],[[76276,85727],[309,174],[179,-29],[349,-10],[9,148],[180,-7]],[[76808,87341],[-16,-241],[-173,7],[0,-175]],[[29004,39643],[-8,530]],[[66466,80797],[-267,5],[-2,-156],[-202,8],[-643,14],[-250,8],[-139,100],[0,164],[73,202],[336,128],[-247,140],[-141,-145],[-292,-15],[-142,-100]],[[64405,79472],[234,-9],[206,-81],[255,-5],[1048,-31]],[[69946,75109],[-72,-134],[290,51],[292,-28],[178,-81],[190,-21],[398,97],[-187,51],[-105,86]],[[76124,83420],[353,-192],[-54,-48],[327,-135],[-261,-96],[-165,-172],[112,1],[61,-109],[-55,-299]],[[76442,82370],[144,46],[200,-76]],[[77018,83584],[-348,12],[20,452]],[[68974,95894],[-27,-102]],[[69310,98587],[-68,74],[-146,-448]],[[74635,96631],[4,55],[238,-63],[171,164],[-177,85],[-154,-17],[-134,118],[-266,-11],[-63,211]],[[72072,92329],[9,190],[-198,-2],[-63,231],[-5,389],[15,22]],[[74461,94196],[-1,195],[-97,296],[61,178],[-154,262],[3,103],[-310,4],[4,64]],[[18081,45398],[125,35],[-74,144],[-105,-1]],[[27223,44818],[365,-92],[36,-86],[208,28],[186,-46],[47,138],[74,2],[165,-185],[-132,-220],[63,-120],[-52,-63],[-89,-106],[72,-293]],[[27787,45590],[-444,332],[-88,17]],[[29260,41422],[-4,477],[41,253]],[[34101,67306],[118,-24],[84,94],[256,-50],[1,-154],[349,-3],[-3,309],[-255,134],[-142,21],[230,184],[-21,30],[207,248]],[[29730,68120],[204,33],[304,103],[111,81],[-74,66],[5,180]],[[29880,68388],[-150,-268]],[[32571,70309],[32,92],[402,30],[-128,168]],[[32259,70534],[57,-90]],[[34923,71567],[182,201],[-75,105],[-61,262],[-204,26]],[[34011,68212],[-62,252]],[[34203,69547],[-219,126],[-170,-45],[-246,-63],[-145,-225],[-311,-5],[-152,-121],[-141,-15],[-44,-76],[-238,-132],[-70,4],[-85,-212]],[[34701,69561],[-71,57]],[[19254,47270],[81,45]],[[19440,47394],[254,97],[-37,111],[339,271]],[[19672,49794],[-118,-65],[-117,-161],[-212,-128],[-103,-203]],[[18539,48647],[-170,52],[-178,-26],[-22,120],[-138,131],[-37,-45],[-149,118],[-87,-51],[-174,203]],[[17584,49149],[-123,-179],[-184,-462],[-24,-310]],[[43762,79744],[250,52]],[[44481,79838],[476,117]],[[42162,80330],[-133,-359],[168,-322]],[[23816,51314],[-202,-13],[-61,111],[-151,65],[44,91],[-141,33],[-106,158]],[[25550,51637],[309,368],[41,219],[181,217],[182,38]],[[24834,52767],[-87,-177],[94,-241]],[[20744,53142],[-38,-140],[-248,-157],[-28,-118],[-169,-182],[0,-122],[-84,-87],[-66,-272],[-123,-109],[-181,-262],[-40,-129],[192,55]],[[20200,16663],[108,167],[215,215],[35,268],[-28,106]],[[20156,14819],[76,-15],[232,-209],[120,-4],[-283,403],[-24,325]],[[16998,2962],[253,-228]],[[17251,2734],[36,109],[119,76],[36,189]],[[17442,3108],[-174,36],[-13,326],[-205,-13],[14,372],[189,5],[-192,68],[-174,-145],[-69,-303],[-231,-62],[191,-121]],[[19142,41964],[-120,-240],[-183,-219],[-553,-327],[-350,-109]],[[22633,37888],[-9,383],[180,30],[-20,715]],[[17940,39406],[-82,-56],[-138,150],[-99,13]],[[12655,36644],[103,7],[332,128],[302,-1],[191,48],[4,176],[-216,-21],[61,56]],[[12171,33441],[237,311],[110,193],[45,300],[167,128],[-74,52],[-191,-77]],[[48301,58452],[61,123],[106,29],[400,-55],[289,212]],[[50732,62328],[404,3],[35,34],[4,304],[45,37],[297,-5],[229,-64],[128,67],[209,3],[43,60],[213,19],[9,70],[-205,5],[-97,-55],[-230,117],[-79,85]],[[37557,42739],[76,10],[117,-124],[-61,-259],[105,-90],[58,62],[231,-130],[262,-25],[16,146],[-69,144],[177,75],[-135,310]],[[50089,80335],[89,75],[176,0],[2,75],[364,-1],[684,-10],[-2,-229],[178,-1],[-1,-253],[159,-1]],[[52715,81133],[172,-89],[102,52],[311,-82],[114,-45],[288,94],[162,105],[199,-98],[215,24]],[[51110,83279],[-283,92],[-266,240],[-20,79],[-223,112],[-6,149],[65,79]],[[50377,84030],[-248,-142],[-230,37],[-207,-50],[-309,-196]],[[25374,34819],[-5,-162],[-249,11]],[[26488,31367],[112,91]],[[31097,48778],[-76,110],[-149,-156],[-1006,-13],[-3,135],[-209,30],[-398,-83],[-169,32],[-154,-39],[-124,253],[-199,221],[-160,16],[-91,-167],[-289,0],[-307,116],[-250,-179],[-236,-82],[-192,-10],[-209,176]],[[18421,44690],[-52,-56],[133,-52]],[[35916,35178],[174,30],[193,191],[430,232],[115,29],[541,-56],[247,17],[325,137],[119,130],[143,51],[190,-48],[162,29],[-19,158],[178,128],[144,-11]],[[36707,37243],[-247,155],[-182,11]],[[21166,21111],[76,40],[203,-124],[549,-25],[633,879],[658,663],[92,281]],[[25514,34449],[-112,-156],[-76,-241],[126,-356],[158,-320],[-144,-423],[-405,-433],[-432,-328],[-100,-409],[-234,-669],[-114,-156],[-463,-302],[-110,-3],[-107,-156],[-176,-76],[-180,0],[-36,61],[-214,-205],[-19,-149],[-180,-96]],[[21873,29317],[-44,-64],[68,-271],[-122,-24],[-5,-116],[109,-53],[-122,-220],[26,-113],[138,-73],[55,-314]],[[48047,45703],[-105,220],[-121,46],[-159,337],[-219,154],[-68,167],[-199,80],[-191,-56],[-117,236],[-88,539],[-75,128],[-297,-3],[-91,145],[85,188],[213,225],[-108,168],[-193,90],[-318,305],[-327,465],[-169,122],[58,56],[-201,90],[-16,176],[-159,199],[-14,179],[-110,-125],[-146,-48]],[[43377,49661],[179,-191],[-112,-168],[68,-343]],[[42097,49936],[-206,-110],[65,-93],[-264,-73],[-69,-245],[29,-175],[-65,-161],[254,-239],[-59,-249],[-369,25],[-53,-109],[-227,65],[-196,162],[-77,-151],[27,-115],[-164,-276],[-325,-217],[-198,104],[-262,-77],[-173,29],[-236,151],[-327,-59],[-150,84],[-202,23],[-243,-136],[-218,94],[-132,-68],[-118,-141],[-125,-7],[-197,-106]],[[37579,44620],[438,222],[222,209],[52,114],[247,287]],[[42321,45373],[-5,207],[719,4],[0,314],[176,-1],[0,118],[-97,-42],[99,245],[-178,-26],[-265,33],[-115,82],[563,6],[5,111],[420,-4],[22,151],[-87,0],[-4,154],[261,-2],[2,533],[-75,0],[5,292],[132,8],[109,141],[57,250],[-265,87],[14,394],[196,118],[109,-34],[-34,111],[128,131],[59,-94]],[[37977,37841],[-86,134],[-12,143],[-88,-6],[-82,193],[139,98],[120,160],[-66,224],[-113,5],[63,116],[123,28],[-3,86],[323,78],[-168,85],[103,209],[-186,146],[-344,150],[-2,210],[-111,86]],[[14225,30694],[140,-151],[25,-149],[-68,-112],[133,-13],[81,-89],[-145,-43],[68,-113],[-207,-236],[8,-124],[279,-275],[36,-142],[-177,-168],[-93,-263],[-125,-144],[195,40],[324,15],[45,-65]],[[17481,30357],[367,-59],[88,-263],[170,41],[61,-180],[150,-200],[259,-10],[96,-247],[15,-216],[81,-131],[94,-293],[122,14],[159,158],[260,184],[308,5],[-10,604],[878,22]],[[3057,10256],[-111,-251],[-177,-102],[-122,-173],[53,-141],[-50,-126],[26,-241],[-54,-85],[70,-136],[137,-13],[217,-465],[166,-415],[11,-115],[154,-489],[229,-909],[118,-677],[-9,-265]],[[3715,5653],[-76,-392],[-45,-101],[14,-384],[-92,-65],[-72,-167],[43,-167],[-24,-182],[-115,-155],[-41,-250],[-130,-183],[-42,-165],[-3,-383],[-89,-210]],[[3143,2850],[33,58],[178,-81],[489,65],[140,70],[151,-21],[-10,93],[124,52],[72,207],[139,48],[-67,83],[110,196],[43,231],[-91,53],[70,250],[147,70],[89,132],[21,163],[146,305],[201,134],[54,-72],[22,264],[128,74],[148,8],[122,301],[143,183],[-199,11]],[[3930,5661],[155,207],[-9,195],[85,45],[-7,117],[151,91],[-14,210],[147,171],[10,111],[110,53],[18,189],[140,69],[-8,122],[-121,98],[-61,226],[-161,120],[-53,162],[80,277],[166,102],[27,143],[259,265],[84,195],[192,77],[14,133],[156,1],[159,97],[46,154],[-40,126],[104,77],[26,213],[28,96],[244,21],[102,180],[127,542],[-33,93],[90,116],[130,21],[39,200],[-25,344],[-140,25],[-145,231],[-46,-168],[-176,158],[-23,169],[128,169],[-4,93],[231,340],[40,203],[70,17],[107,191],[42,196],[128,164],[20,167],[219,60],[199,164],[546,137],[211,88],[186,-87],[259,14]],[[8040,15973],[-317,-56],[-65,22],[-222,-213],[-201,-126],[120,-119],[-104,-235],[-90,-10],[-51,-135],[-113,-20],[-75,-237],[-252,-44],[-124,115],[-284,1],[-159,-110],[5,-116],[-150,-79],[-288,-18],[-69,68],[-225,-68],[-13,-61],[-174,-22],[-79,-83],[-91,30],[-100,-85],[-290,-45],[-73,-193],[57,-63],[-125,-71],[-36,-219],[46,-24],[-273,356],[-147,30],[-132,208],[14,220],[-347,-12]],[[40618,34255],[13,-127],[-135,-176],[66,-15]],[[40589,35133],[-175,-148],[57,-623],[147,-107]],[[35672,28948],[248,175],[-76,169],[-143,166],[-41,236],[-77,143],[63,123],[250,-46],[122,48],[387,26],[291,-47],[79,-51],[31,-160],[241,-27],[50,-71],[218,-37],[164,19],[210,95],[160,-54],[133,128],[247,135],[-37,156],[-102,106],[200,63],[100,186],[86,-18],[84,298],[52,16],[233,-148]],[[39468,30802],[-82,159],[29,194]],[[36295,32724],[-4,138],[-180,283],[-115,115],[-498,73],[-275,-91],[-242,99],[-183,-78],[-240,29],[-85,-114],[-121,-29],[-244,-278],[-164,-2],[-374,193],[-371,9],[-81,117],[-179,64],[90,117],[-37,351],[152,259],[-50,238],[46,326],[-43,178]],[[42904,53606],[128,118],[137,36],[119,-145],[103,-1],[249,-205],[49,42]],[[44760,62447],[-1344,3],[-8,-1233]],[[42526,61215],[-359,0]],[[39934,63119],[764,476],[380,265],[398,430],[110,290],[360,645],[51,282],[-17,235],[47,150],[167,235]],[[40041,68895],[54,244],[239,191],[-346,272],[-24,81],[-1,823],[-284,-99],[-420,-37],[-228,-145],[-218,-37],[-163,-230],[-106,36],[-221,177],[-190,16],[-105,-271],[-192,-120],[-101,-124],[-134,-57],[-459,-115]],[[39265,63664],[-335,-295],[0,-914],[-100,1],[-1,-459],[-7,-1696],[177,-155],[2,-766],[-1413,4],[-58,-152],[-482,-2],[1,309],[-236,99],[-105,93],[-177,-152],[-217,-103],[-339,146],[-52,64],[-443,77],[-220,-33],[-213,36]],[[32542,56603],[-18,-136],[-128,-266],[22,-184],[219,-161],[119,-173],[208,-21],[56,-54],[370,-33],[398,109],[1583,6]],[[39255,55437],[-2,-120],[-176,0],[-1,-230],[44,0],[-3,-457],[176,-3],[-1,-457]],[[46725,51771],[-77,177],[-65,-31],[-308,99],[-85,299],[-109,204],[132,47],[2,-107],[200,330],[283,103],[94,75],[63,195],[-116,-5],[-54,217],[-85,54],[128,44],[142,166],[383,35],[136,-63],[147,66],[-71,-102],[56,-193],[194,8],[161,61],[145,-20],[159,223],[355,129],[-33,-109],[133,-31],[73,90],[-38,104],[-132,77],[158,178],[62,-32],[225,208],[141,-64],[156,21],[170,126],[19,238],[-118,15],[12,89],[-342,-176],[-164,119],[-333,76],[-176,-7],[0,-149],[-162,-4],[-319,-155],[-16,207],[199,101],[-6,63],[-170,75],[-269,0],[-76,256],[-220,50],[-117,115],[-284,-19],[-10,142],[-404,254],[-143,200]],[[1983,19671],[120,-153],[168,-65],[60,-128],[185,-84],[60,-110],[-202,-130],[212,-169],[72,-184],[-116,-175],[16,-109],[118,-102],[72,28],[237,-64],[125,-163],[90,-14],[1,-180],[-64,-16],[36,-181],[309,-117],[-200,-184],[-111,-240],[46,-175],[89,-116],[-154,-59],[-88,-124],[-294,-67],[-142,26],[-106,-120],[-39,-216],[-231,21],[-291,-96],[-113,-84],[-78,-160],[-190,-169],[-140,-16],[-202,-112],[308,-123],[175,76],[71,89],[129,19],[76,-181],[182,-96],[164,20],[4,-224]],[[2474,15372],[-38,81],[396,109],[271,143],[168,6],[86,88],[252,107],[257,224],[231,96],[318,85],[417,281],[-74,220],[-288,-62],[-88,134],[122,223],[-24,270],[-103,38],[-79,69],[101,147],[-11,99],[299,247],[-67,62],[115,182],[98,40],[32,118],[184,-120],[201,220],[-18,176],[88,158],[264,33],[29,123],[174,180],[-108,229],[-261,272],[130,292],[-231,343],[-118,76],[24,123],[158,16],[148,-52],[84,40],[-85,127],[138,137],[-158,31],[5,234],[71,106]],[[3344,21051],[-112,-131],[-185,-122],[-118,27],[-99,-93],[12,-382],[-53,-132],[-205,-275],[-267,-143],[-334,-129]],[[5938,9185],[-69,-225],[1383,-302],[665,-156],[459,1796],[-1998,430],[-56,-173],[-384,-1370]],[[85315,90837],[-61,-111],[58,-187],[614,232],[179,162],[613,473],[256,166],[368,278],[310,309],[90,136],[313,243],[45,79],[351,334],[423,450],[-303,289],[-72,6]],[[88499,93696],[-1626,67],[-62,94],[-12,228],[-136,5],[2,152],[-353,15],[8,153],[-175,7],[8,153],[-261,29],[-728,28],[-161,-238],[-239,-160],[-179,-233],[-244,-199],[-505,-214],[-382,-44],[-181,-140]],[[87443,95406],[1687,-74]],[[89130,95332],[40,603],[157,545],[24,192],[87,229],[-2,246],[-150,214]],[[85162,97610],[-174,-140],[-182,-18],[-287,-126],[-22,-129],[-219,-193],[77,-251],[140,-110],[-56,-229],[361,-279]],[[64412,69368],[-212,5],[-210,-88],[-151,91],[-158,-97],[-241,-60],[-115,96],[-228,-119],[-74,161],[-355,-91],[-413,40],[-82,87],[-239,97],[-172,-2],[-171,-60],[-245,184],[-264,-157],[-120,99],[-210,-6],[-121,217],[-122,62],[21,262],[-48,209],[-145,193],[59,129],[-60,326],[-391,-14],[-143,90],[-129,-99],[41,-108],[-95,-273],[31,-110],[-93,-108],[-411,40],[-257,-120],[-341,76],[-51,167],[-140,53],[-249,-136],[-249,-71],[-159,-185],[13,-119],[-102,-249],[-300,-304],[-433,155],[-35,118],[-186,101],[-80,26],[88,129],[-23,124],[89,124],[-154,19],[-166,-113],[-639,-93],[-181,82],[-382,249],[66,159],[-191,105],[-185,302],[78,183],[-484,163],[-659,-236],[-188,-118],[-404,-54],[-294,148],[186,165],[169,78]],[[52963,72172],[-180,2]],[[52608,72330],[13,458],[-273,4],[13,613],[35,0],[10,499],[-709,7],[-247,422],[-22,206],[208,676],[45,257],[179,116],[244,252],[158,282],[-174,182]],[[45114,72539],[59,-155],[270,-5],[187,167],[423,269]],[[46409,73021],[206,55],[225,121],[119,290],[362,319],[236,2],[3574,-39],[61,16],[-121,-386]],[[52770,69236],[266,-179],[199,5],[123,-140],[250,-32],[40,-166],[189,-83],[53,-176],[135,-110],[18,-189],[224,-89],[207,-196],[236,-76],[176,-374],[140,-134],[122,41],[106,-67],[115,51],[197,-25],[57,-59],[500,-56],[78,36],[-77,178],[211,-53],[453,-47],[94,60],[152,-158],[333,52],[146,-47],[422,16],[269,-162],[44,46],[-179,164],[76,53],[137,303],[48,459],[-106,158],[156,188],[286,81],[163,-101],[331,-15],[106,74],[185,10],[67,69],[301,114],[250,367],[242,46],[242,-83],[-44,-154],[279,-344],[297,-95],[198,-128],[250,-317],[114,-306],[169,-356],[-219,-175],[54,-260],[-88,-71],[46,-336],[-100,-98],[80,-66],[-71,-84],[-6,-159],[98,-205]],[[48333,71601],[-568,15],[-162,-178],[-233,-173],[-221,-61],[-225,-161],[-210,-31],[-189,-122],[-331,-110],[-226,-159],[-119,15],[-194,-79],[-210,-225],[-560,-273],[-182,-203],[-212,-336],[-28,-217],[-69,-126],[1002,-4],[713,-15],[-1,-297],[532,-4]],[[49943,68597],[328,-15],[149,121],[591,39],[80,86],[196,-13],[196,49],[54,79],[214,29],[44,134],[165,168],[48,-16]],[[55031,76268],[-7,-165],[266,-83],[72,-85],[164,-7],[207,-87],[268,12],[424,-309],[-79,-161],[432,-96],[472,-206],[216,-120],[241,-312],[88,-67],[150,155],[16,90],[881,-14],[626,-29],[18,732]],[[59500,76017],[7,156]],[[59507,76173],[8,611]],[[57689,77434],[-45,-1220]],[[33495,18553],[-48,-293],[-75,-131],[56,-243],[-14,-156],[408,-315],[550,-105]],[[60505,76608],[1520,-32],[4,154],[89,-3]],[[62118,76727],[23,929],[178,74],[8,233]],[[60543,77996],[-179,3],[-5,-154]],[[64262,76992],[531,-5],[8,151],[741,-93],[108,30],[1760,-123],[103,66],[-79,201],[28,115],[-100,368],[130,619],[172,273],[187,62]],[[64484,80538],[-35,-73],[-175,3],[-8,-229],[-886,18],[0,15],[-1066,22],[-518,-6],[-176,-56],[-4,-77],[-340,10]],[[61276,80165],[-36,-331],[-156,3],[-15,-305],[-381,7],[-486,9],[8,337],[-353,16]],[[62895,78879],[460,-12],[336,-62],[271,50],[355,-6]],[[52650,79983],[601,-4],[49,-154],[271,-179]],[[52718,77899],[161,89],[153,-23],[211,165],[159,-64],[-29,-116],[-196,-151],[-120,-145],[-115,-250],[20,-379],[164,-95],[221,104],[101,164],[351,16],[-5,-157],[390,3],[312,93],[6,56],[379,-21],[-19,142],[449,8],[-4,64],[337,-5],[7,72],[895,-3],[23,147]],[[58087,78908],[-235,23],[-514,-12],[-154,42],[-135,-110],[35,-62],[-222,-186],[-396,34],[-160,232],[-455,198],[-176,194],[-128,406],[0,117]],[[58763,86928],[78,82],[58,-154],[-46,-194]],[[58937,87113],[-246,201]],[[57504,81906],[249,-74],[276,-5],[-1,-75],[132,10],[0,145],[131,-37],[350,-5],[3,153]],[[17081,44184],[48,94],[-70,118],[-198,53],[-230,-56],[-55,60],[-300,-353],[-194,-60],[-181,-195],[-154,-26],[-108,-86]],[[14616,43280],[-276,-136],[-155,-115],[-131,-300],[-223,-217],[-330,-219],[-242,-97],[-550,-85],[-165,30],[-247,200],[-16,123],[81,54],[-476,-38],[124,-87],[198,-399],[329,-742],[94,-267],[34,-268],[-55,-149],[-108,-53],[0,-207],[-115,-140],[-134,-249],[156,103],[55,-28],[49,-210],[-71,-168],[-87,-58],[-149,-242]],[[9524,31567],[-80,82],[-40,168],[332,376],[111,45],[-28,109],[95,84],[-63,178],[-100,67],[147,88],[138,12],[-94,240],[99,36],[59,216],[63,1],[-15,207],[56,122],[124,24],[-163,228]],[[7685,34095],[183,166],[59,126],[169,154],[166,222],[159,148],[77,138],[342,331],[40,101],[163,6],[-41,120],[275,310],[271,22],[76,79],[-78,58],[67,153],[229,125],[8,91],[235,7],[176,132],[158,199],[-106,57],[108,58],[202,352],[176,117],[4,105]],[[10803,37472],[-86,-88],[-334,-214],[-454,-181],[-164,-212],[-349,-215],[-36,-74],[-276,-178],[11,-113],[-91,-148],[-175,-73],[-57,-132],[-304,-422],[-96,-214],[-143,-79],[-56,-191],[-230,-221],[-243,-182],[-202,-64],[-114,-113],[-52,-171]],[[7352,34187],[-75,-91],[-348,-286],[-138,14],[-95,-232],[-306,-232],[-82,-20],[-105,-289],[-190,-112],[-205,-212],[-64,-138],[-164,-53],[24,-178],[-139,-214],[85,16],[217,-228],[214,-457],[9,-311],[-165,-499],[31,-49],[-106,-218],[14,-124],[-154,-59],[-7,-244],[-142,-144],[-62,-167],[-97,-31],[-41,-215],[6,-240],[-120,-385]],[[5103,26698],[51,-160],[181,-231],[187,-456]],[[5522,25851],[138,147],[57,-108],[152,26],[112,-245],[158,3],[292,267],[288,8],[155,99],[197,-4],[282,47],[408,-25],[175,203],[88,-33],[101,-96],[330,59],[18,-104],[-135,-253],[-7,-177],[129,-127],[21,-103],[-99,-199],[51,-50],[255,152],[215,-90],[125,110],[313,-27],[173,-120],[310,83],[75,328],[136,117],[-46,134],[89,213],[185,149],[172,-56],[233,139],[90,303],[347,46],[60,-111],[325,-127],[185,10],[131,-138],[128,-16],[100,155],[164,48],[78,96]],[[34239,54083],[-301,-88],[-395,-22],[57,-196],[168,-90],[-8,-123],[300,-115],[-45,-26],[20,-1434],[-135,-57],[-242,48],[-141,-277],[-209,21],[-121,-138],[-177,73],[-213,278],[-4,348]],[[32378,52280],[-511,-7],[-149,-232],[-674,-12],[-5,77],[-331,-4],[-480,-142],[-181,43],[-235,-60],[-255,-229],[-288,27],[-235,100]],[[33591,61783],[-50,123],[-244,-52],[-202,-88],[-310,158],[-148,-48],[-164,252],[-264,-3],[-498,160],[-298,12],[-165,-103],[-240,116],[-59,162],[-117,102],[-91,116],[-178,40],[-130,-64],[-338,16],[-299,-46],[-177,148],[-151,48],[-171,161],[-61,192],[23,142],[-397,-161],[-47,-75],[-16,-310],[-84,-150],[-171,34],[-5,158],[-374,5],[-920,-114],[-208,-44],[-52,116],[163,74],[-1,80],[-382,-212],[-68,39],[-177,-138],[-150,-243],[-106,-64],[-57,-185],[47,-194],[-39,-149],[57,-114],[-55,-215],[-323,75],[-112,-158],[-102,-43],[-32,30],[-404,-286],[-111,-34],[-238,-231],[-113,68],[-584,-177],[-127,-65],[-25,-244],[110,-216],[-152,-95],[-106,-156],[-191,11],[-89,-93],[-127,34],[-137,-215],[-189,-103],[-12,-190],[-99,-43],[-306,-143],[-3,-108],[-162,-89],[-41,-152],[-136,-68],[-64,-109],[-166,35],[-253,-35]],[[21923,58665],[-74,-101],[76,-163],[-152,-174],[172,37],[105,-84]],[[11866,36406],[-153,-130],[65,-74],[146,43],[236,-87],[90,64],[119,-82],[-591,-540],[-162,-242],[201,-84],[299,132],[33,-110],[168,-122],[-53,-168],[80,-89]],[[17485,35130],[178,108],[-18,293],[-191,134]],[[17983,37442],[370,318],[129,206]],[[17936,41069],[-19,44],[-381,217]],[[40850,28952],[0,375]],[[39059,30313],[-62,-137],[-36,-356],[-58,-258],[71,-610]],[[33677,24699],[2,-261],[84,-289],[-179,-141],[-256,-122],[-53,-129],[-479,-544],[208,-39],[142,-123],[228,70],[-53,179],[-147,37],[136,70],[210,-40],[154,54],[190,-35],[15,105],[122,75],[385,-24],[-113,174],[126,49],[260,-181],[346,40],[276,-128],[226,-338],[297,106],[79,-117],[104,7],[-23,178],[-93,31],[-232,214],[122,375],[-112,224],[-109,120],[237,-4],[161,-224],[330,294],[-58,104],[100,215],[15,151]],[[20230,16527],[206,-23],[135,43],[369,-107],[196,-19],[243,79],[191,4],[279,-102],[133,-93],[83,-143],[514,176],[195,-119],[420,-33],[120,39],[75,-120],[348,-104],[152,2],[154,-99],[287,16],[88,-61],[338,22],[50,-145],[87,57],[-50,169],[369,85],[95,-27],[373,42],[200,-32],[153,-90],[102,35],[151,-60],[75,85],[242,-57],[132,-215],[125,-79],[-1,58],[260,150],[-3,76],[221,2],[2,-127],[148,2],[3,-80],[712,10],[6,-231],[439,9]],[[29301,16991],[-4,238],[-226,5],[10,242],[167,-6],[-3,171],[88,26],[94,221],[221,255],[46,250],[-73,165],[-174,164],[-91,158],[-133,-104],[-150,166],[-295,-29],[-255,23],[-190,-25]],[[77256,88607],[-33,112],[-554,116],[-240,110],[-140,-21],[-11,-281],[-533,19],[23,382],[-225,-81],[-108,20],[-119,120],[-150,-61],[-156,90],[-466,13],[-459,138],[-8,-202],[-176,6],[9,229],[-352,8],[11,268],[-97,151],[-219,77],[-306,198],[-84,168],[25,160],[-57,38]],[[94166,89660],[71,-1021],[377,-586],[721,-904],[80,-137],[194,-107],[591,-273],[125,-6],[169,-148],[48,-108]],[[96542,86370],[167,159],[16,233],[-270,130],[-72,174],[190,91],[-186,133],[105,139],[-67,117],[96,98],[-169,249],[63,231],[127,172],[-334,232],[-10,159],[-299,197],[-64,136],[-225,330],[-27,244]],[[27286,42273],[-239,-5],[-49,-93],[-133,-17],[-245,166],[-167,-141],[-472,-104],[-40,-108],[-118,-36]],[[29710,54849],[-320,-91],[-126,31],[-102,144],[-38,254],[-313,97],[-98,-6],[-189,146],[-105,-128],[-11,-151],[-263,-311],[-306,-81],[-224,-5],[0,63]],[[76442,82370],[-367,-119]],[[76075,82251],[-29,-1017],[-45,-852],[1075,-36],[-33,-902],[-178,5],[-28,-616],[-359,13],[-15,-348],[-130,7],[-31,-615],[-344,20],[-20,-655]],[[75938,77255],[372,-364],[420,-233],[750,-25],[10,151],[172,-7],[18,309],[1227,-42],[44,905],[806,-32],[1371,-34],[10,458],[1066,-43],[51,9]],[[82255,78307],[177,-6],[1,166],[532,-11],[52,1208],[375,-11],[5,80],[156,-3],[-1,-80],[271,-9],[16,302],[90,-3],[62,1077],[-2649,92],[30,615],[-445,19],[8,154],[-80,158]],[[80904,83126],[18,332],[114,57],[-4,170],[-106,172],[-84,35]],[[76075,82251],[0,0]],[[71518,82057],[-353,-135],[-244,8],[-99,116],[57,149],[156,108],[-38,106],[71,147],[-57,317],[-140,143],[-159,53],[-99,-36],[-161,49],[-77,240],[-177,28],[-27,104]],[[68899,77676],[509,-342],[170,-212],[412,-97],[509,-159],[349,-276],[-219,-647]],[[68983,75815],[-57,-50],[-19,-287],[-276,-559],[-278,-1],[233,-496],[30,-274],[619,-20],[282,-177],[232,-233],[304,192],[291,-5],[507,301],[205,-102],[419,-83],[70,217],[169,217],[83,594],[212,-20],[2,245],[137,-4],[29,78]],[[72177,75348],[-74,96],[127,23],[-68,101],[252,257],[73,210],[36,262],[226,215],[-26,224],[352,167],[542,352],[48,72],[232,70],[-73,202],[-252,490],[-51,25]],[[73521,78114],[-245,309],[-103,201],[-273,208],[-442,406],[23,613]],[[96922,82717],[441,-549],[755,-908],[620,-761],[333,971]],[[99071,81470],[-243,156],[-331,53],[-232,283],[-119,91],[-235,36],[-174,177],[-237,101],[-253,39],[-170,222],[-7,81]],[[73134,92376],[11,426],[-194,82],[-132,121],[-45,168],[-135,143]],[[74512,94120],[217,-241],[205,-61],[67,118],[65,-95],[127,134],[294,-24],[157,-85],[178,95],[211,174],[176,91],[240,552],[-139,43],[-41,-82],[-187,22],[15,64],[321,300],[140,64],[148,272],[100,35],[190,212],[176,135],[87,132],[233,138],[61,-92],[139,198],[-10,104],[359,-31],[6,75],[193,8],[406,-167],[9,137],[-169,81],[14,227],[85,-1],[7,152],[173,-6],[-2,-151],[912,-24],[16,1078],[144,-9],[36,668],[150,132],[337,140],[134,12],[364,-45],[83,-82]],[[80948,98789],[-6673,774]],[[16722,45040],[-7,-76]],[[31892,68312],[-176,-76],[-28,-79],[-161,-49],[-88,-173],[-119,-35],[-128,-180],[-350,-136],[-256,-246],[-203,-132],[-270,-95],[-157,-287],[-203,-45],[-17,-155],[-224,-126],[-84,-143],[-228,-166],[60,-125],[-67,-52]],[[41785,80462],[-247,-77],[-200,4],[-519,-265],[-157,23],[-152,-54],[-501,34],[-299,-103],[-333,-36],[-173,37],[-584,-8],[-112,24],[-452,-3],[-523,59],[-64,40],[-658,34],[-195,56],[-159,-17],[-109,95],[-187,-58],[-88,-350],[-162,-152],[-71,-175],[-76,-116],[-307,-178],[-120,-22],[-272,-161],[-415,29],[-170,-102],[-51,-142],[51,-304],[151,-300],[232,-624],[9,-167],[-131,-222],[-114,-78],[-110,-188],[148,-393],[135,-520],[-63,-253],[-228,-146],[-15,-119]],[[33650,71229],[-274,-148],[-206,-166],[42,-293],[138,0],[177,-105],[409,-50],[61,-72],[34,58],[334,135],[141,195],[110,-65],[225,193],[52,150],[355,-14],[95,69],[521,226],[76,139],[180,58],[115,-19],[166,112],[196,54],[245,-54],[133,-83],[270,49],[143,72],[255,15],[143,-59],[234,178],[-32,106],[280,96],[92,128],[253,135],[65,-206],[150,26],[-5,-137],[70,-82],[-23,-152],[202,47],[181,189],[106,-76],[130,79],[215,299],[351,248],[146,226],[-141,249],[-96,3],[-81,190],[63,83]],[[38808,74214],[40,169],[102,146],[-33,109],[-71,-66],[-94,288],[-150,167],[101,224],[-84,242],[-134,268],[-166,139],[403,150],[142,-18],[264,157],[117,-100],[173,145],[207,-78],[260,42],[386,-209],[62,76],[254,22],[103,81],[123,31],[112,213],[-77,111],[211,-26],[24,166],[90,13],[277,194],[-99,111],[312,119],[-29,82],[121,272],[-19,146],[87,111],[-114,154],[-245,119],[-101,184],[-183,173],[-138,69],[-365,34],[-79,132]],[[18637,52003],[-200,-119],[-153,51],[-89,-84],[15,-159],[-58,-87],[-162,-68],[-53,-240],[-115,-90],[-151,-7],[-95,-153],[-13,-250],[-80,-143],[-20,-166],[71,-181],[122,-747],[12,-234],[-84,-177]],[[20680,53674],[-269,-40],[-457,-229],[-317,-287],[-352,-241],[-45,-137],[-221,-225],[-305,-452],[-77,-60]],[[25118,9176],[489,233],[223,271],[6,387],[-85,403],[124,167],[123,324],[334,87],[32,184],[188,29],[-44,110],[-416,399],[97,189],[286,425],[457,530],[-9,296],[60,108],[71,340],[166,154],[438,175],[128,267],[-63,249],[-153,57],[-405,559],[-295,109],[-158,106],[-153,48],[-127,-82],[-15,-172],[-163,-74],[-170,-191],[-227,-193],[-119,62],[-264,-93],[21,-144],[-99,-163],[-83,-450],[-110,-116],[41,-103],[-114,-250],[16,-169],[-126,-148],[-307,11],[-125,-239],[52,-184],[-26,-179],[-271,-248],[-344,-359],[84,-120],[-21,-112],[-114,-113],[18,-85],[280,3],[62,75],[186,-142],[21,-123],[247,-166],[211,28],[226,-140],[-41,-124],[-170,28],[-186,-70],[-248,47],[-108,-109],[-35,-192],[16,-242],[-91,-202],[234,-261],[26,-103],[119,-28],[-126,-156],[67,-71],[-110,-139],[53,-47],[-106,-139],[-103,92],[-156,-15],[65,-108]],[[17336,7082],[-32,-102],[90,-36],[-27,-316],[-188,-44],[-52,-195],[-137,-72],[-206,76],[-99,-197],[-159,-108],[33,-112],[172,-169],[62,-411],[-65,-250],[74,-171],[-456,-14],[-59,-93],[-248,-129],[-129,-211],[156,-87],[33,-150],[-283,-48],[-305,131],[-418,-39],[-56,-391],[55,-198],[93,-72],[55,-225],[106,-47],[14,-168],[-106,-216],[-76,17],[9,-168],[98,22],[38,-149],[173,-77],[196,-257],[-173,-200],[-155,79],[-98,-18],[-210,-171],[26,-115],[199,-219],[218,50],[221,122],[173,-42],[42,-73],[218,49],[125,-30],[119,175],[199,78],[133,112],[183,-38],[375,47],[64,169],[-94,44],[-131,183],[125,126]],[[17442,3108],[111,87],[85,238],[47,-45],[140,231],[5,140],[173,35],[27,146],[83,70],[-20,145],[125,62],[420,92],[152,114],[388,11],[177,195],[193,99],[260,46],[383,268],[158,368],[243,117],[117,-126],[109,-13],[-391,267],[-107,-52],[-172,65],[282,360],[98,56],[249,522],[-10,268],[-127,213],[-189,147],[22,307],[120,62],[-49,169],[199,-21],[151,106],[22,284],[56,98],[-1,83],[-187,282],[11,80],[222,98],[-274,188],[-13,117]],[[17373,41324],[0,0]],[[50924,63947],[214,266],[361,568],[34,156],[275,201],[97,144],[190,171],[91,267],[146,131],[387,200]],[[44744,40903],[-263,224],[-23,121],[-600,164],[-244,170],[-186,219],[-305,52],[-155,-33],[-192,72],[-53,-76],[-214,38],[-304,285],[-81,154],[56,19],[-152,194],[80,79],[-83,184],[48,56],[-74,169],[-251,91],[-130,277],[173,126],[101,13],[-20,140],[-127,113],[-122,9],[-82,139],[-112,39],[-262,-3],[-114,146],[-247,6],[-129,81],[-47,242],[-259,145],[-186,-66],[-292,35],[-224,-297],[-455,-327],[-461,44],[-91,-87],[-88,63],[-206,-17],[-60,78],[-248,134]],[[46419,80767],[307,61]],[[47876,82058],[-303,-165],[-119,-145],[-214,-158],[-202,15],[-412,-388],[-124,-7],[-179,-189],[-156,0]],[[51561,84442],[-529,-211],[-121,-8],[-290,-169],[-244,-24]],[[21122,48338],[-22,-19]],[[20987,48140],[-69,-140],[-113,-43]],[[36641,34699],[409,-62],[238,95],[542,32],[216,-102],[342,-26],[272,-78],[179,16],[247,-90],[317,46],[205,-225],[149,-31],[-41,81],[121,17],[258,-129],[302,-124],[221,136]],[[40846,29949],[31,1626]],[[40877,31575],[13,715],[471,359]],[[40727,32936],[-498,-88],[-64,-220],[-136,-56],[5,-235],[-199,-173],[-69,-272],[96,-94],[-21,-167],[-94,-55]],[[61843,48259],[1189,924],[314,221],[983,764],[806,599],[1236,958],[895,685],[410,302],[1782,1365],[659,496],[2924,2239],[2244,1706],[1095,852],[45,24],[1271,965],[3657,2791],[411,305],[1049,807],[1058,799]],[[83871,65061],[2500,1913],[1397,1059],[1152,882],[1216,919],[1062,817],[973,737],[2265,1727],[51,220],[-35,232],[61,146],[-18,250],[33,145],[-44,230],[74,201],[459,301],[118,209],[69,218],[202,279],[242,157],[140,142],[214,82],[253,145],[79,226],[165,249],[-58,114],[135,96],[73,261],[154,108],[4,85],[-116,65],[151,162],[180,107],[273,407],[44,235],[-51,523],[139,109],[382,-53],[102,130],[260,97],[158,218],[229,30],[320,244],[90,108],[271,34],[236,115],[221,320],[201,143],[33,275],[69,147],[-304,76],[-41,80],[-562,535],[-21,152]],[[96922,82717],[-606,739],[64,376],[-253,347],[-18,157],[143,297],[58,236],[-65,213],[-20,269],[87,272],[54,418],[68,92],[162,-31]],[[96596,86102],[-54,268]],[[95583,89594],[-153,184],[-150,47],[-304,-37],[-134,107],[-186,14],[-23,97],[158,147],[110,237],[-2,254],[-90,177],[-195,201],[91,147],[299,73],[184,92],[36,152],[-146,116],[166,200],[-28,234],[47,158],[-19,267],[-71,222],[-92,120],[-90,360],[20,97],[182,34],[29,136],[139,139],[49,200],[136,37],[110,-164],[193,178],[283,46],[164,-38],[128,-95],[531,44],[152,129],[197,486],[214,-36],[25,167],[-120,228],[52,120],[151,157],[-6,262]],[[95057,97151],[-6182,720]],[[89130,95332],[-38,-432],[-114,-232],[-138,-90],[-341,-882]],[[93096,82905],[-720,-153],[-354,-174],[147,-24],[-150,-213],[24,-98],[-222,-343],[-366,161],[-274,-262],[-1196,-839],[-306,22],[-392,-20],[-415,-262],[-275,-249],[-355,-412],[-434,-332],[-286,-131],[-348,-115],[-367,-176],[-817,-708],[-1407,-60],[-2171,-464],[-197,7],[40,247]],[[75938,77255],[-589,318],[-394,337],[-135,67],[-661,27],[-227,77],[-411,33]],[[72177,75348],[68,-91],[296,7],[176,-122],[440,-79],[199,-340],[6,-208],[-192,-181],[34,-102],[-52,-337],[35,-288],[-96,-171],[-158,-93],[-171,-180],[142,-125],[-581,-257],[-185,-227],[-339,16],[-423,-105],[-26,-319],[-106,-352],[-105,-188],[11,-377],[90,-76],[221,-8],[-22,-464],[710,-20],[15,334],[354,-15],[-6,77],[67,1134],[162,0],[19,313],[169,-7],[3,-145],[348,-20],[3,153],[350,-8],[7,151],[882,-29],[188,13],[1222,-43],[3,-160],[174,-2],[-12,-293],[188,-4],[-9,-164],[160,-6],[-5,-133],[178,-8],[8,-309],[186,-4],[0,-154],[151,-17],[92,-161],[73,0],[-7,-158],[359,-13],[-54,-1448],[16,-237],[-34,-836],[-169,5],[-23,-472],[-498,-1],[-8,-152],[-1081,38],[-23,-610],[-1154,32],[-508,34],[-2602,85],[-17,-887],[-232,13],[-4,-79],[-308,11],[39,-162],[348,-11],[-25,-665]],[[55164,52099],[-79,-183],[58,-170],[219,-134],[196,-6],[172,-125],[180,-27],[314,143],[210,7],[113,105],[140,30],[481,-194],[150,-117],[29,-167],[175,147],[174,-24],[162,-111],[133,-300],[279,-172],[121,-136],[414,-167],[-47,-79],[58,-155],[-64,-308],[128,-91],[92,69],[283,-31],[76,-50],[551,-135],[544,-656],[119,-265],[70,-10],[151,-250],[253,-157],[11,-109]],[[40901,9293],[5,3270],[17,1601],[15,2326],[-1,1027]],[[40937,17517],[-183,-68],[-308,51],[-176,168],[-194,43],[-221,209],[-288,55],[-207,-113],[-203,-54],[-96,50],[-378,75],[-78,-206],[88,-78],[-274,-153],[-85,-96],[-27,-302]],[[34424,15718],[89,-432],[118,-207],[119,-115],[73,-159],[-6,-190],[-120,-210],[-52,-204],[-323,-270],[-149,-283],[-376,17],[-104,-34],[-185,68],[-138,-128],[-127,20],[-123,-61],[-22,172],[-136,193],[-24,259],[-384,105],[-348,-3],[-184,225],[-206,35],[-226,104],[-267,-10],[-397,-72],[-157,105],[-559,162],[-106,82],[-340,-87],[-237,141],[-597,-70],[-262,-86]],[[61276,80165],[-29,81],[99,291],[-82,127],[38,137],[-146,120],[-118,-32],[-144,70],[-71,-64],[-117,37],[-69,-118],[-381,-52],[-55,-82],[-92,-112],[-121,32],[-174,166],[-230,102],[-86,-39],[-209,25],[-236,-34],[-176,60],[-180,-45],[-211,58],[-8,-196],[-112,-68],[-218,35],[-164,77],[-141,-3],[-365,251],[-132,59],[-241,11],[-161,-211]],[[63164,76078],[19,618],[-1065,31]],[[56856,85860],[-64,-121],[-194,-364]],[[59280,87435],[50,297],[-143,3],[-92,2],[-266,94]],[[17949,46420],[147,79],[-130,224]],[[20487,48230],[36,26]],[[20400,48069],[0,0]],[[50606,90489],[-35,-129],[188,-62],[-10,219],[-201,42],[58,-70]],[[41608,84343],[80,-9],[28,-176],[284,46],[341,16],[318,121],[72,71],[229,-43],[256,21],[114,-40],[253,133],[221,29],[265,246],[184,33],[139,-35],[170,71],[186,-36],[151,-159],[-50,-61],[251,-172],[110,37],[112,-55],[63,68],[268,79],[91,72],[-183,109],[-82,195],[-135,106],[-153,-5],[-147,67],[-735,43],[-121,79],[-319,109],[-83,71],[-362,-24],[-397,48],[-144,-49],[-145,43],[-130,-92],[-174,11],[-253,-134],[-139,-296],[108,-248],[-111,-106],[-293,-170],[-138,-14]],[[38377,84943],[124,-72],[162,-11],[258,65],[288,-41],[199,-175],[119,-13],[210,66],[251,1],[168,-49],[187,-140],[120,21],[-72,236],[38,140],[210,146],[222,70],[251,-18],[22,258],[83,146],[-327,14],[-202,69],[-291,214],[-416,56],[-149,52],[-47,91],[-118,-1],[-579,-340],[-109,-208],[-88,-47],[-237,-373],[-175,-58],[-102,-99]],[[36352,84602],[99,-28],[253,-189],[246,32],[291,-220],[73,145],[-37,95],[277,13],[240,206],[-99,113],[-181,-22],[-232,60],[-519,-182],[-183,70],[-270,-29],[42,-64]],[[8080,14986],[44,119],[237,379],[60,322],[99,235],[125,98],[203,457],[124,209],[-53,113],[127,195],[125,-17],[216,141],[294,100],[196,-54],[165,132],[102,14],[210,-219],[299,-42],[164,55],[162,-54],[139,109],[45,173],[356,107],[61,108],[213,108],[-30,172],[440,208],[193,128]],[[47207,84841],[0,0]],[[41806,32988],[3034,2313]],[[44840,35301],[1287,977],[715,556],[2677,2026],[927,721],[495,361],[1470,1128],[808,606],[900,704],[483,357],[3132,2393],[2700,2055],[700,551],[283,190],[426,333]],[[5522,25851],[-84,-325],[-101,-174],[53,-99],[-2,-531],[-57,-77],[-2,-242],[-121,-223],[-151,-83],[-108,-365],[5,-456],[-112,-409],[-253,-128],[-236,-194],[-186,-499],[-226,-141],[-214,-431],[-142,-116],[-241,-307]],[[2707,652],[-52,-152],[65,-340],[-52,-160],[774,45],[1134,51],[1515,54],[183,17],[779,7],[645,41],[297,-39],[968,20]],[[8963,196],[755,16],[790,51],[1411,-25],[423,-27],[911,91],[1592,40],[2135,37],[1214,-10],[1208,18],[970,41],[645,11],[1721,71],[1394,34],[2247,78],[1376,38]],[[27755,660],[972,22],[820,-3],[1127,27],[825,37],[2024,8],[1500,21],[1326,0],[1950,14],[1141,-14],[1467,2],[-1,1257],[9,1313],[1,1378],[-11,1250],[-4,3321]],[[40937,17517],[-2,1472],[-13,3222],[-20,1106],[-14,1359]],[[40888,24676],[-4,1933],[-13,988]],[[40871,27597],[-21,1355]],[[31992,71675],[-3,-121],[212,-374]],[[31697,69695],[-191,1],[-225,-144],[-241,-38],[-96,30],[-217,-254],[-105,-52],[-157,-186]],[[29730,68120],[-155,-121],[-225,-312],[-218,-84],[-46,87],[-299,-186],[-159,-1],[-205,-132],[-254,-14],[-28,-253],[-250,-255],[3,-413],[-124,-79],[37,-99],[-72,-146],[-136,-129]],[[27599,65983],[-406,-303],[-242,-339],[-259,-126],[-246,-229],[17,-168],[-108,-166],[-104,-532],[-160,-318],[-224,-114],[-476,-158],[-141,-239],[-30,-184],[-136,-76],[-109,-138],[-141,-345],[-398,-453],[-244,-182],[-167,-195],[-486,-280],[-290,-144],[-164,-3],[-134,-87],[-231,-379],[-221,-122],[-237,-201],[71,-343],[-131,-169],[54,-270],[-33,-172],[-91,-55],[9,-239],[-141,-293],[2,-141],[-79,-155]],[[1983,19671],[-105,-37],[-235,-329],[-194,-163],[-198,-98],[-277,-210],[-281,-258],[-57,-116],[-140,-75],[-179,-186],[6,-160],[168,-399],[-118,-301],[-10,-338],[-67,-193],[-158,-155],[-95,-163],[-43,-224],[122,-194],[124,-287],[-11,-160],[596,-1151],[173,-261]],[[85492,98265],[-4544,524]],[[58062,91775],[66,63],[57,256],[-203,121],[-509,-213],[-345,-10],[-331,36],[-249,-75],[-230,-258],[58,-402],[-85,-323],[-235,-100],[-23,65],[-240,-114],[-265,6],[-454,-458],[218,46],[421,-9],[428,214],[28,104],[230,-56],[328,200],[226,14],[427,177],[119,4],[5,140],[197,229],[207,187]],[[55120,95054],[171,23],[142,-43],[119,98],[62,190],[103,41],[32,140],[320,321],[10,46],[313,316],[180,79],[146,156],[868,638],[202,187],[-387,-50],[-145,57],[-26,84],[-234,126],[-81,-149],[-158,-54],[-240,-200],[-295,-128],[-67,-275],[-132,-75],[-115,-206],[-116,-58],[-102,-368],[-251,-283],[-140,-399],[-173,-34],[-6,-180]],[[97070,82709],[-24,232],[59,209],[-23,161],[-158,131],[-87,-9],[50,126],[-383,422],[-219,76],[-122,227],[24,90],[235,146],[36,108],[-174,5],[28,76],[207,167],[19,92],[-211,111],[-44,112],[114,234],[-75,113],[274,564]],[[42657,80579],[-134,26]],[[11734,39221],[-106,11],[-97,-218],[64,-131],[12,-260],[-153,-328],[-78,-47],[-85,-221],[-167,-157],[-59,-217],[-262,-181]],[[45213,92553],[155,77],[339,-151],[405,205],[293,94],[265,264],[-41,120],[-320,58],[-436,-85],[-75,-60],[-265,-39],[-297,-267],[-23,-216]]],"bbox":[14.038067567747248,10,946.0745599273278,1089.9999999999995],"transform":{"scale":[0.009320458128177087,0.010800108001080007],"translate":[14.038067567747248,10]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment