Skip to content

Instantly share code, notes, and snippets.

@seemantk
Last active November 25, 2015 19:55
Show Gist options
  • Save seemantk/1203a5f66cf5a6ab91fd to your computer and use it in GitHub Desktop.
Save seemantk/1203a5f66cf5a6ab91fd to your computer and use it in GitHub Desktop.
Responsive Map

An experiment with responsive maps and svg's with d3.

The projection paths are defined in the svg's section, and the states are rendered on screen using svg's statements, one for each state. Additionally, since d3's albersUsa projection assumes a screen size of 960x500, the viewBox attribute is set to those dimensions, but the svg itself doesn't have any sizing information. This makes it fill up the available space of its containing

(or, in this case).

To see the resizing, click "Open in a new window"

Built with blockbuilder.org

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.19/topojson.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<style>
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; }
svg { width: 100%; height: 100%; }
use { stroke-width: 1.5px; }
</style>
</head>
<body>
<script>
var margin = {top: 20, right: 10, bottom: 20, left: 10};
var width = 960 - margin.left - margin.right;
var height = 500 - margin.top - margin.bottom;
var svg = d3.select("body")
.append("svg")
.attr("viewBox", "0 0 960 500")
;
var g = svg
.append("g")
.attr("transform", "translate(" + margin.top + "," + margin.left + ")")
;
var projection = d3.geo.albersUsa()
, path = d3.geo.path().projection(projection)
, states = []
;
d3.json("usa.json", function(error, usa) {
svg.datum(usa)
.append("defs")
.append("g") // state shapes
.attr("id", "shapes")
.selectAll("path")
.data(geogrify(svg.datum()))
.enter().append("path")
.attr("id", function(d) { return slugify(d.feature.id); })
.attr("d", function(d) { return path(d.feature); })
.style("all", "inherit")
;
draw();
})
;
function geogrify(us) {
return topojson.feature(us, us.objects.states).features
.map(function(d) {
states.push(d.id);
var centroid = path.centroid(d);
if(centroid.some(isNaN)) return;
centroid.x = centroid[0];
centroid.y = centroid[1];
centroid.feature = d;
return centroid;
})
.filter(function(d) { return d; }) // remove NaNs
;
} // geogrify()
function draw() {
g.selectAll(".state")
.data(
states.map(function(d) { return { State: d }; })
, function(d) { return d.State; }
)
.enter().append("g")
.attr("class", function(d) { return slugify(d.State); })
.classed("state", true)
.append("use")
.attr("class", "shape")
.attr("xlink:href", function(d) { return "#" + slugify(d.State); })
.attr("fill", "#ccc")
;
}
function slugify(arg) {
return arg.toLowerCase()
.split(' ').join('_')
;
}
</script>
</body>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"states":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","properties":{"usps":"CA"},"id":"California","arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5,6,7,8]]]},{"type":"Polygon","properties":{"usps":"DC"},"id":"District of Columbia","arcs":[[9,10]]},{"type":"MultiPolygon","properties":{"usps":"FL"},"id":"Florida","arcs":[[[11]],[[12]],[[13]],[[14,15,16]]]},{"type":"Polygon","properties":{"usps":"GA"},"id":"Georgia","arcs":[[17,18,19,20,-15,21]]},{"type":"Polygon","properties":{"usps":"ID"},"id":"Idaho","arcs":[[22,23,24,25,26,27,28]]},{"type":"Polygon","properties":{"usps":"IL"},"id":"Illinois","arcs":[[29,30,31,32,33,34]]},{"type":"Polygon","properties":{"usps":"IA"},"id":"Iowa","arcs":[[35,36,-30,37,38,39]]},{"type":"Polygon","properties":{"usps":"KY"},"id":"Kentucky","arcs":[[-34,40,41,42,43,44,45]]},{"type":"Polygon","properties":{"usps":"LA"},"id":"Louisiana","arcs":[[46,47,48,49]]},{"type":"MultiPolygon","properties":{"usps":"MD"},"id":"Maryland","arcs":[[[50,51,52,53,54,55,-10,56,57]]]},{"type":"MultiPolygon","properties":{"usps":"MI"},"id":"Michigan","arcs":[[[58]],[[59]],[[60]],[[61,62,63]],[[64]],[[65,66]]]},{"type":"Polygon","properties":{"usps":"MN"},"id":"Minnesota","arcs":[[67,68,-36,69,70]]},{"type":"Polygon","properties":{"usps":"MO"},"id":"Missouri","arcs":[[-38,-35,-46,71,72,73,74,75]]},{"type":"MultiPolygon","properties":{"usps":"NY"},"id":"New York","arcs":[[[76,77,78,79,80,81,82]]]},{"type":"Polygon","properties":{"usps":"OR"},"id":"Oregon","arcs":[[83,-29,84,-6,85]]},{"type":"Polygon","properties":{"usps":"TN"},"id":"Tennessee","arcs":[[-72,-45,86,87,-18,88,89,90]]},{"type":"Polygon","properties":{"usps":"TX"},"id":"Texas","arcs":[[91,92,-50,93,94]]},{"type":"MultiPolygon","properties":{"usps":"VA"},"id":"Virginia","arcs":[[[-54,95]],[[96,-57,-11,-56,97,98,-87,-44]]]},{"type":"MultiPolygon","properties":{"usps":"WI"},"id":"Wisconsin","arcs":[[[99]],[[100]],[[101,-67,102,-31,-37,-69]]]},{"type":"MultiPolygon","properties":{"usps":"AK"},"id":"Alaska","arcs":[[[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]]]},{"type":"Polygon","properties":{"usps":"AZ"},"id":"Arizona","arcs":[[-8,147,148,149,150]]},{"type":"Polygon","properties":{"usps":"AR"},"id":"Arkansas","arcs":[[-73,-91,151,-47,-93,152]]},{"type":"Polygon","properties":{"usps":"CO"},"id":"Colorado","arcs":[[153,154,155,156,157,158]]},{"type":"Polygon","properties":{"usps":"IN"},"id":"Indiana","arcs":[[159,-63,160,-41,-33]]},{"type":"Polygon","properties":{"usps":"CT"},"id":"Connecticut","arcs":[[161,162,163,-80]]},{"type":"MultiPolygon","properties":{"usps":"HI"},"id":"Hawaii","arcs":[[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]]]},{"type":"Polygon","properties":{"usps":"NE"},"id":"Nebraska","arcs":[[172,-39,-76,173,-155,174]]},{"type":"Polygon","properties":{"usps":"NM"},"id":"New Mexico","arcs":[[-158,175,-95,176,-150]]},{"type":"Polygon","properties":{"usps":"NC"},"id":"North Carolina","arcs":[[-99,177,178,-19,-88]]},{"type":"MultiPolygon","properties":{"usps":"OH"},"id":"Ohio","arcs":[[[-62,179,180,181,-42,-161]]]},{"type":"MultiPolygon","properties":{"usps":"ME"},"id":"Maine","arcs":[[[182,183]]]},{"type":"MultiPolygon","properties":{"usps":"MA"},"id":"Massachusetts","arcs":[[[184]],[[185]],[[186,187,188,189,-162,-79]]]},{"type":"Polygon","properties":{"usps":"MS"},"id":"Mississippi","arcs":[[-152,-90,190,191,-48]]},{"type":"Polygon","properties":{"usps":"MT"},"id":"Montana","arcs":[[192,193,194,195,-25]]},{"type":"Polygon","properties":{"usps":"OK"},"id":"Oklahoma","arcs":[[-157,196,-74,-153,-92,-176]]},{"type":"Polygon","properties":{"usps":"SC"},"id":"South Carolina","arcs":[[-179,197,-20]]},{"type":"Polygon","properties":{"usps":"SD"},"id":"South Dakota","arcs":[[-195,198,-70,-40,-173,199]]},{"type":"Polygon","properties":{"usps":"UT"},"id":"Utah","arcs":[[-27,200,-159,-149,201]]},{"type":"MultiPolygon","properties":{"usps":"WA"},"id":"Washington","arcs":[[[202]],[[-23,-84,203]]]},{"type":"Polygon","properties":{"usps":"WV"},"id":"West Virginia","arcs":[[-182,204,-58,-97,-43]]},{"type":"Polygon","properties":{"usps":"WY"},"id":"Wyoming","arcs":[[-200,-175,-154,-201,-26,-196]]},{"type":"Polygon","properties":{"usps":"DE"},"id":"Delaware","arcs":[[205,206,-52,207]]},{"type":"MultiPolygon","properties":{"usps":"RI"},"id":"Rhode Island","arcs":[[[208]],[[-163,-190,209]]]},{"type":"Polygon","properties":{"usps":"AL"},"id":"Alabama","arcs":[[-89,-22,-17,210,-191]]},{"type":"Polygon","properties":{"usps":"ND"},"id":"North Dakota","arcs":[[211,-71,-199,-194]]},{"type":"Polygon","properties":{"usps":"PA"},"id":"Pennsylvania","arcs":[[212,-83,213,-208,-51,-205,-181]]},{"type":"Polygon","properties":{"usps":"VT"},"id":"Vermont","arcs":[[214,215,-187,-78]]},{"type":"Polygon","properties":{"usps":"KS"},"id":"Kansas","arcs":[[-174,-75,-197,-156]]},{"type":"Polygon","properties":{"usps":"NV"},"id":"Nevada","arcs":[[-85,-28,-202,-148,-7]]},{"type":"Polygon","properties":{"usps":"NH"},"id":"New Hampshire","arcs":[[216,-184,217,-188,-216]]},{"type":"Polygon","properties":{"usps":"NJ"},"id":"New Jersey","arcs":[[-214,-82,218,-206]]}]}},"arcs":[[[168772,277481],[304,386],[553,-2594],[-109,-999],[-390,515],[-358,2692]],[[168770,269256],[671,-4081],[-202,-408],[-434,2500],[-35,1989]],[[166027,273884],[423,-240],[-104,-965],[-319,1205]],[[165087,288754],[1539,-145],[3,-957],[-1422,-385],[-120,1487]],[[163828,289100],[648,-961],[225,222],[227,-1816],[-413,-892],[-218,1167],[-708,1356],[239,924]],[[153120,440181],[1546,-64],[3221,255],[4083,-288],[2887,23]],[[164857,440107],[7,-31912],[-25,-19644],[13,-5563],[14953,-76240]],[[179805,306748],[-2,-2459],[470,-3465],[363,-4601],[452,-2002],[94,-1630],[-252,-1384],[-553,-1797],[-297,-3133],[107,-3991],[-79,-3185],[-308,-2470],[-251,-337],[6,-2230],[136,-619],[-88,-2867],[98,-1284],[443,-277],[119,-3400],[-283,-1864],[-415,-546]],[[179565,263207],[-6701,-3522],[-200,2952],[-138,-372],[-100,3245],[4,3296],[-459,4885],[-557,3284],[-786,3144],[-571,2816],[-351,-943],[-385,613],[-44,2823],[-299,2738],[-933,127],[-710,1151],[-330,1282],[-118,1739],[-531,2311],[-434,895],[-717,-234],[-745,1233],[-863,-502],[-167,1447],[-375,1108],[122,2118],[-23,3166],[-168,876],[97,4191],[-727,2366],[34,3477],[-331,582],[-455,3332],[-294,597],[-168,2220],[-361,1954],[-67,1617],[-246,1045],[-295,2681],[-580,2614],[-228,5339],[306,541],[191,3891],[-319,2933],[-556,-248],[-279,1106],[-532,3305],[-11,2856],[-125,2375],[-197,1140],[13,4765],[316,657],[107,-4064],[534,-1685],[158,471],[-143,2652],[-417,2084],[-61,2509],[-253,895],[453,1827],[-364,1754],[-272,-674],[107,-2135],[-93,-1416],[189,-1320],[-331,-426],[-461,1210],[-429,2344],[-431,-253],[160,3284],[-140,2314],[-452,3394],[-461,1728],[-306,2559],[-749,4072],[55,2061],[-375,6475],[164,3661],[-238,5326],[-155,591],[-500,4107],[-770,3481],[-128,3378],[301,4226],[347,3509],[163,2776],[-128,2851],[116,973],[165,4765],[-253,5516],[-253,1211],[92,3931]],[[284315,381744],[220,1169],[366,-1959],[-361,-1930]],[[284540,379024],[0,1458],[-225,1262]],[[271244,107777],[168,1616],[858,3048],[385,-1110],[172,-1548],[-442,-961],[-117,365],[-672,-1603],[-352,193]],[[270678,107287],[407,782],[-140,-1640],[-267,858]],[[270195,107889],[123,912],[121,-1701],[-244,789]],[[262354,230441],[384,-5515],[6700,-2426],[672,-379],[108,-3734],[388,28],[69,4417],[-47,2841],[249,1464],[588,-1484],[803,-761]],[[272268,224892],[133,-7050],[389,-10591],[259,-4376],[550,-7768],[499,-5200],[566,-5293],[164,-2637],[-228,-2346],[165,-5486],[457,-5889],[362,-6871],[280,-4013],[298,-5914],[21,-5528],[-197,-9195],[-1,-5130],[-126,-2912],[-206,1277],[-202,-2274],[-99,-2815],[74,-1448],[211,614],[164,1893],[35,-1316],[-543,-5701],[-386,-2936],[-430,-2540],[-878,-3018],[-382,-733],[-126,784],[839,2693],[659,2961],[263,1688],[59,1990],[-432,-206],[-271,-794],[-179,737],[-746,-1282],[-254,2423],[67,3083],[-399,5073],[-261,1968],[-643,2236],[-313,252],[-228,4673],[-100,3346],[-220,2079],[-422,-280],[-294,1035],[-180,2380],[-54,2970],[-766,9488],[-567,5279],[257,-152],[381,3480],[229,1192],[-340,1533],[-499,-4491],[-37,2256],[-279,2346],[51,3163],[-88,2936],[266,1340],[276,4577],[-10,4030],[-171,2946],[115,1058],[-375,3686],[-10,1135],[-471,375],[-159,-901],[-60,2234],[-264,808],[-198,2724],[-448,1718],[-37,2809],[-343,1000],[-394,3729],[-1069,3487],[-632,-842],[-213,-927],[48,-2133],[-338,530],[-298,-700],[34,-1481],[-590,-2250],[-747,-2007],[-598,1799],[-259,-411],[-178,3488],[89,1493],[-603,2582],[-1111,4090],[-620,1389],[-1145,1005],[-605,-293],[-1860,-1918]],[[255346,216704],[422,2980],[-217,1350],[124,2857],[-344,1546],[-310,2433],[100,2509],[4751,-77],[2482,139]],[[260676,306420],[3575,72]],[[264251,306492],[1955,-36],[1425,269]],[[267631,306725],[-89,-1444],[-511,-2579],[-41,-2054],[513,-1789],[296,-1810],[486,-415],[359,-4323],[82,-1844],[442,-3869],[647,-2389],[453,-3994],[656,-2816],[-17,-2277],[494,-3661],[706,-2603],[226,-3506],[66,-4303],[563,-2681],[173,-2484],[-58,-1852],[112,-2374],[297,-230],[338,-1270]],[[273824,250158],[103,-883],[-786,-5064],[-8,-1896],[-348,-4174],[-129,-3782],[-271,-1541],[-9,-4142],[-153,-2636],[45,-1148]],[[262354,230441],[-292,3542],[42,3366],[141,3466],[-233,2867],[-46,2752],[206,2442],[26,3217],[465,2430],[-324,1396],[101,2026],[-273,2675],[-319,5306],[-683,24101],[-489,16393]],[[173446,516408],[-184,1707],[162,1640],[-387,3484],[63,2254],[-2,31527],[24,16674]],[[173122,573694],[2739,32]],[[175861,573726],[0,-19089],[596,-4558],[311,-1226],[18,-3127],[230,-971],[-211,-1220],[667,-2536],[401,-551],[1069,-7399],[491,-2463],[390,-495],[222,-1304],[632,47],[-88,-2648],[-143,-180],[-119,-6194],[-191,-117],[96,-2621],[256,-2822],[-485,-1953],[160,-1102],[-4,-3108],[633,-1498],[857,4195],[459,-1878],[199,-5280],[447,-3754],[343,-1319],[-63,-2832],[145,-1300],[488,-375],[323,-1110],[228,-2582],[118,-3006],[349,-1743],[485,2340],[893,-1050],[280,2298],[450,-762],[710,677],[174,-998],[289,925],[394,-95],[345,3152],[321,76],[560,-4402],[205,-373]],[[189791,487395],[15,-33403],[-8,-13752]],[[189798,440240],[-3394,-10],[-4327,-237],[-623,98]],[[181454,440091],[-3545,46],[-3655,24],[-1115,47]],[[173139,440208],[8,34785],[239,3921],[-111,1066],[227,1316],[-212,1551],[-682,1005],[-25,3644],[231,1484],[225,3241],[362,1144],[275,2705],[-22,1944],[241,1584],[223,3821],[589,5748],[-361,3105],[-542,1176],[-358,2960]],[[244477,409283],[130,397],[-60,2583],[153,1505],[609,1130],[78,2830],[392,2535],[-15,2995],[-436,2649],[241,3311],[910,594],[667,1312],[340,1433],[80,2737],[363,1331],[111,3510],[-57,2105],[-667,2535],[-128,2245],[-559,2191],[12,697]],[[246641,449908],[5391,-284],[2528,-31]],[[254560,449593],[-96,-3633],[97,-1782],[328,-2523],[203,-4396],[237,-2610]],[[255329,434649],[-20,-45017],[-192,-668],[64,-1940],[-176,-848],[310,-3714],[-50,-1837],[135,-2247],[-338,-2257],[-95,-2432],[-167,-611],[-328,-3292],[-382,-1332],[116,-1631],[-288,-2311],[-102,-3331],[110,-1084]],[[253926,360097],[-368,-2764],[272,-3174],[-1124,-1665],[-136,-2091],[250,-2689],[-143,-1559],[-1269,3041],[-352,-741],[-306,-2185],[98,-1757]],[[250848,344513],[-632,1155],[-439,4564],[253,2394],[-240,2332],[-27,3180],[-406,1200],[-80,1048],[-430,1708],[-201,-634],[-237,1898],[-586,2368],[-405,2707],[-24,1660],[524,5496],[-71,2183],[269,2352],[-326,1174],[-661,970],[-245,-1735],[-283,944],[-157,2550],[90,889],[-137,2961],[-858,3673],[-172,1721],[-746,3629],[-190,2222],[-211,6197],[257,3964]],[[230454,468825],[4454,3],[2462,-18],[3066,-1],[4603,19]],[[245039,468828],[28,-2420],[418,-2282],[-327,-2277],[104,-4403],[186,-2445],[361,-1748],[670,-1096],[162,-2249]],[[244477,409283],[-219,450],[-644,4039],[-2667,-456],[-3913,-322],[-1233,-41],[-3432,275]],[[232369,413228],[-343,2883],[218,2868],[-154,2492],[25,3237],[-147,-51],[-36,5175],[-231,1683],[-209,-302],[-105,1627],[150,3423],[-264,2233],[74,1230],[-391,1386],[-209,2279],[33,1870],[-201,1385],[74,2369],[-178,553]],[[230475,449568],[-491,5504],[338,3436],[-31,1536],[201,1410],[-101,2044],[-287,1336],[159,1803],[-215,2189],[406,-1]],[[253926,360097],[346,354],[87,1969],[687,-1318],[208,1401],[369,370],[665,-1972],[207,-1407],[266,2899],[555,1479],[247,-1993],[299,-759],[294,954],[-34,2583],[559,2080],[319,-2393],[483,-983],[309,1112],[77,3048],[219,1802],[369,238],[267,2957],[480,1828],[-93,3185],[483,530],[245,-1022],[627,1724],[417,155],[74,1833],[-309,3246],[214,1012]],[[262862,385009],[194,799],[398,-1414],[406,926],[378,-1800],[316,-4229],[1005,-1034],[223,-1779],[258,-536],[407,1374],[438,-775],[250,-1186],[317,399],[448,2095],[342,497],[106,-2895],[352,-891],[365,-2590]],[[269065,371970],[61,-2021],[-151,-3451],[449,-3014],[470,-5543],[646,-2701],[268,-128]],[[270808,355112],[-1079,-5200],[-565,-1250],[-468,-1674],[-68,-1673],[-330,-953],[-73,-1754],[-502,-602],[-170,-2050],[-836,-1467],[-252,-4],[-413,-1243]],[[266052,337242],[-43,-348],[-3050,397],[-1407,440],[-551,-218],[-1074,165],[-1766,549],[-3748,-366],[10,581],[-616,274],[56,-3395],[-4147,-41]],[[249716,335280],[-15,1461],[380,-232],[82,1142],[421,-1009],[173,1775],[185,5633],[-94,463]],[[237168,268936],[5071,-192],[2944,-95]],[[245183,268649],[262,-1265],[-239,-3085],[281,-963],[-116,-767],[244,-3219],[-116,-1489],[242,-260],[125,-1578],[-196,-2430],[-326,-124],[205,-2042],[-408,-3452],[-556,-3578],[-42,-1684],[-189,-454],[73,-1415],[-222,-912],[22,-3942],[-376,-1092],[234,-3526],[-214,-955],[3597,17],[1721,40],[-301,-5250],[124,-3349],[221,-1412],[292,-4966],[232,-694]],[[249757,214803],[-444,-1996],[-449,-1100],[-21,-1252],[420,-1500],[288,140],[67,1952],[361,1472],[286,-34],[442,1720],[-244,-7495],[-357,272],[-14,-1693],[-552,-1364],[90,-2217],[244,-1675],[474,-348],[312,-831],[233,-2382],[284,-1003],[-284,-1770],[-73,-1573],[-325,1273],[-394,-2375],[111,2632],[-340,2730],[-436,1441],[-566,539],[-1061,-4458],[-611,-553],[-1184,0],[-206,2027],[-939,1629],[-156,972],[193,1186],[-274,1139],[-85,1457],[-185,-516],[-226,2371],[-285,693],[57,1307],[-316,957],[-324,-886],[-55,-1442],[452,-1106],[-308,-1819],[-677,2131],[-722,-1034],[-1005,1403],[-860,2266],[-512,890],[-1007,-137],[-567,-514],[-267,-872]],[[237740,205457],[-255,2142],[627,4793],[-8,4218],[-148,1039],[161,1908],[-74,2191],[276,2575],[276,4665],[-13,4979],[-186,-58],[-204,2260],[-140,3873],[-304,1566],[88,2183],[-297,3670],[-367,1892],[-4,19583]],[[277749,396748],[3054,32],[3871,-50],[3350,41]],[[288024,396771],[264,-24069],[1796,-169]],[[290084,372533],[-403,-6776],[-135,-1312]],[[289546,364445],[-1065,-630],[-126,-827]],[[288355,362988],[-318,416],[-303,-1063],[80,3510],[-204,444],[135,2235],[-419,257],[92,-3390],[-249,916],[19,1286],[-360,2156],[-330,3559],[158,2237],[318,13],[-204,1956],[-234,-638],[-159,2078],[301,1211],[224,-422],[-35,1883],[-318,-326],[-162,-1160],[207,3607],[195,-403],[-130,2426],[468,4321],[289,806],[-151,719],[-1015,-4701],[-280,-531],[270,-881],[97,-2297],[-342,-3054],[-2,-5950],[346,-2854],[2,-2857],[202,-1932],[-6,-1943],[-442,1513],[-306,1876],[-762,1044],[-310,1495],[-114,1874],[-543,-1238],[-98,3007],[324,1844]],[[284286,376037],[254,2987]],[[284315,381744],[-358,1766],[-597,941],[-163,1618],[171,1099],[-358,1588],[-366,369]],[[282644,389125],[-307,5073],[-493,268],[-210,1331],[-838,-932],[-217,-1837],[-686,569],[-178,1575],[-518,-3778],[-374,613],[-536,-3104],[-566,-1978],[28,9823]],[[263431,514483],[725,-2337],[-357,-787],[-465,2452],[97,672]],[[260406,511463],[494,1786],[455,-234],[-412,-4215],[-316,-199],[-221,2862]],[[259190,498245],[262,2223],[252,-769],[-356,-2463],[-158,1009]],[[266669,435112],[-3767,-697]],[[262902,434415],[0,1223],[-2745,-22],[-2880,22]],[[257277,435638],[633,3015],[367,4121],[305,2283],[323,5453],[90,4248],[-129,6114],[-427,4865],[-371,5838],[306,3741],[-232,4146],[236,1175],[449,4302],[134,4223],[-78,2523],[444,809],[85,3233],[354,1101],[215,-583],[617,4439],[283,121],[-97,-2548],[129,-1328],[388,1379],[24,4281],[488,1713],[662,292],[-448,3683],[415,2237],[-121,1411],[824,328],[716,-2386],[368,228],[372,-818],[279,-2368],[520,-221],[189,-962],[675,-1578],[307,64],[289,-1559],[-58,-896],[391,-3820],[-491,460],[9,-2101],[329,-1149],[122,-3647],[-105,-1538],[-63,-5259],[-523,-1362],[-165,-3906],[-304,-1296],[-491,-535],[-218,-4302],[737,-2757],[476,2730],[293,3549],[1005,1829],[327,1024],[378,-880],[445,-3662],[111,-4764],[150,-3033],[47,-3758],[298,-4192],[-150,-2252],[-111,-4771],[-472,-2195],[-65,1221],[-437,-845],[-180,-3621],[-481,-1181],[-103,-3853],[-379,-2843],[-479,-2486],[-34,-1450]],[[250601,552885],[1129,2840],[513,1742],[575,1189],[-428,-3241],[-763,-1438],[-129,-1233],[-720,-1462],[-177,1603]],[[247267,527292],[1038,1949],[595,2589],[1160,761],[523,1316],[238,1371],[509,451],[197,1756],[846,2704],[464,2457],[560,1479],[804,571],[693,-439],[211,-1278],[-939,27],[-4,-1033],[-699,-2416],[-407,-2455],[-384,-4385],[931,2214],[219,-918],[459,-168],[850,-2417],[257,-2584],[337,-1286],[43,-1388],[534,-185],[552,553],[462,-1467],[322,2010],[384,-1289],[272,1230],[896,2307],[828,304],[1000,-161],[628,1392],[814,371],[-177,-1864],[2,-2314],[162,-1479],[810,219],[516,-904],[204,1159],[842,315],[-59,-2772],[67,-3779],[648,-2518],[185,1267],[606,-351],[328,-1791],[-127,-1479],[-1543,995],[-825,-741],[-290,874],[-706,-1349],[-164,-922],[-588,2812],[-413,850],[-1083,551],[-436,-2279],[-315,380],[-288,-1157],[-441,876],[-574,-443],[-198,-2059],[-536,-2404],[-266,-3166],[-210,1313],[180,2321],[-351,1503],[-181,-1700],[-350,-945],[-296,879],[-283,-1087],[-498,-4845],[-552,-4123],[-115,-1837]],[[255145,499241],[-422,1942],[235,3273],[-574,-300],[161,2291],[69,3829],[-275,1544],[-712,1275],[170,1028],[-479,1667],[-782,1103],[-365,-601],[-429,616],[-779,2229],[-2867,3783],[-263,3110],[-566,1262]],[[228292,573721],[2295,-12],[3487,-21],[0,7352],[562,-301],[377,-908],[185,-6122],[186,-2213],[-30,-1804],[690,-1839],[459,235],[87,-933],[1132,-514],[81,-1962],[969,366],[9,879],[715,967],[704,-210],[631,-1758],[260,68],[-62,-1448],[560,-1005],[-38,-1190],[281,-2509],[297,2567],[577,82],[208,-2124],[740,-928],[63,-1522],[371,-211],[47,-1049],[814,587],[262,1076],[871,1965],[188,-2313],[201,-500],[1581,308],[747,-2331],[331,637],[725,-168],[-1352,-3509],[-1567,-2431],[-923,-2787],[-776,-3346],[-864,-4621],[-1686,-6391],[130,-1861]],[[242817,529969],[-356,479],[-415,-1303],[-5,-11231],[-162,-1120],[-539,-868],[-489,-1646],[-414,-3217],[-32,-2704],[346,-303],[307,-2280],[-321,-2918],[60,-3271],[-174,-915],[144,-2362],[-150,-3303],[713,-3637],[655,-757],[227,-1766],[749,-1588],[198,-2499],[890,-3894],[370,-484],[547,-4357],[-81,-2030],[154,-3167]],[[230454,468825],[-13,34466],[-178,1298],[-527,1168],[-371,2995],[50,1148],[665,3095],[66,2266]],[[230146,515261],[26,2836],[-130,4493],[-301,2207],[-227,3845],[74,5256],[-153,3216],[-98,9362],[-815,11377],[-7,6937],[136,2586],[-359,6345]],[[249716,335280],[46,-2920],[-88,-1279],[-386,-1007],[280,-1703],[-393,-2576]],[[249175,325795],[-1770,-92],[206,2234],[643,3626],[-6,1587],[-245,2080],[-3485,35],[-2634,11],[-2627,9],[-3690,22]],[[235567,335307],[0,9527]],[[235567,344834],[0,13031],[29,27295],[43,794],[-418,290],[-463,2926],[-107,1450],[-465,2942],[397,3227],[308,503],[-254,2880],[-362,-741],[-632,2638]],[[233643,402069],[-208,517],[-249,3985],[-506,1649],[13,1403],[-324,3605]],[[276954,445358],[859,2694],[200,1055],[678,1869],[250,2378],[550,1957],[-161,2697],[-461,2758],[12,3522],[1457,2042],[1120,114],[1073,-655],[583,-2010],[585,856],[1083,-190],[745,1564],[150,1156],[594,2059],[507,152],[109,2298],[-91,2944],[-592,1501],[453,1709],[-269,1127],[248,3285],[348,1468],[591,1304],[511,3179],[1423,6518],[732,2286],[440,709],[1673,-429],[2483,356]],[[294837,497631],[-103,-2933],[127,-1046],[-155,-3482],[268,-3415],[-64,-3486],[-335,-4105],[240,-5188],[-177,-2142],[52,-1718],[189,1102],[239,-1734],[-102,-13379],[38,-1669]],[[295054,454436],[-677,-12581],[58,-697]],[[294435,441158],[-177,-14385],[190,-1575],[-683,-2138],[196,-2204]],[[293961,420856],[-277,-1383],[120,-810],[894,1624],[456,-958],[331,1275],[698,-111],[765,601],[644,2715],[459,1022],[-261,-2397],[335,-280],[100,1182],[209,-1805],[545,954],[-225,-1229],[-2997,-6226],[-545,-930],[-833,-715],[-745,-51],[-462,-913],[-325,1044],[-567,-1814]],[[292280,411651],[163,2449],[322,394],[414,4256],[123,2336],[-1137,3344],[-1094,3526]],[[291071,427956],[-112,1304],[-690,1348],[-171,1500],[-26,3384],[-167,1680],[-417,848],[-218,2053],[-6321,121],[-4043,-5],[-1950,-1],[-2,5170]],[[154971,521436],[325,-1473],[419,-706],[459,771],[589,-1936],[251,-2340],[147,-3849],[-37,-1503],[365,-1348],[1062,-1248],[448,748],[808,2351],[776,378],[884,-1055],[89,-1236],[276,791],[639,450],[737,1431],[237,-887],[822,494],[682,1877],[825,620],[193,1196],[314,-254],[1008,507],[387,1277],[5770,-84]],[[173139,440208],[-4874,-137],[-3408,36]],[[153120,440181],[-285,1324],[-269,3483],[-67,3617],[61,4153],[-270,1466],[-118,2018],[199,2115],[274,6078],[415,5472],[232,6746],[98,7164],[139,6599],[-25,3158],[275,6625],[-3,6564],[103,4179],[-78,3796],[84,1325],[-169,4921],[239,-1066],[541,182],[475,1336]],[[266052,337242],[2354,-134],[2497,7],[32,420],[768,-81],[-85,-454]],[[271618,337000],[-159,-3334],[79,-1427],[-354,169],[-209,-864],[-336,-3389],[-274,-380],[-234,1042],[-553,-1442],[-413,-2471],[-196,2064],[-421,-1327],[-102,-1307],[-453,-2696],[-510,-367],[-938,-3821],[-762,-17],[-696,-2950],[-5,-2129],[-206,-923],[-352,413],[-166,-810],[-107,-4542]],[[260676,306420],[-3284,139],[-3954,306],[8,-235]],[[253446,306630],[-3440,-36],[-2436,37]],[[247570,306631],[313,1049],[103,1490],[193,-201],[-20,2510],[-191,471],[401,3486],[-42,1772],[220,-165],[229,1621],[-224,1313],[650,2171],[213,1632],[-240,2015]],[[212208,335326],[2340,0],[3001,-21],[3023,9],[0,-36983],[198,309],[648,-3733],[312,509],[457,-518],[71,1174],[333,-1057],[240,-3287],[694,-202],[566,-1387],[446,344],[283,-1617],[310,1771],[543,-819],[128,771],[113,-2902],[377,-216],[-11,-2148],[239,-555],[540,2708],[316,-1798],[200,381],[117,-1778],[200,-84],[464,1810],[2,-1992],[155,-1676],[163,251],[99,2299],[419,1746],[153,-1907],[385,-297],[145,1621],[440,-2731],[183,126],[205,-1637],[373,1026],[216,1601],[603,823],[318,-318],[736,1308],[305,-1110],[457,170],[158,1606],[682,-2091],[391,-2153],[991,-1938]],[[235935,280734],[367,-1551],[475,682],[390,-778],[1,-10151]],[[237740,205457],[-609,-371],[-1500,-3877],[-379,-1884],[23,-719],[-846,-3496],[-993,-5374],[-158,-140],[-1039,-3700],[-1064,-3103],[-546,-2297],[-146,-1223],[-527,-1809],[-709,-3663],[-326,-2335],[-383,-3655],[-432,-5521],[-174,-3669],[-57,-3332],[33,-3328],[123,-3506],[351,-7550],[143,-6383],[-537,-916],[-235,-1579],[-617,3171],[-421,927],[-1119,18],[-684,2727],[-591,702],[-426,2546],[-233,-227],[-612,1311],[53,966],[-222,1390],[-104,3336],[-167,2259],[-497,3486],[48,2540],[-94,2084],[-184,716],[117,2029],[-193,3851],[-411,775],[-392,2362],[-242,3603],[-400,2996],[-535,2392],[-361,6206],[-287,1646],[-99,2745],[-256,1865],[-131,3740],[-274,1310],[-317,2658],[-303,1059],[-181,1817],[-541,1176],[-146,2296],[-260,1856],[-449,1080],[-260,-564],[-867,805],[-299,-390],[-635,1732],[-255,-2138],[-333,280],[-459,-801],[-366,-4118],[-177,-3246],[2,-2107],[-571,-2973],[-140,-1976],[-430,0],[-680,2648],[-556,1344],[-179,1260],[-519,734],[-469,1664],[-238,1865],[-397,1183],[-469,2536],[-72,1799],[-297,2683],[-88,2158],[2,3576],[-435,3408],[-84,2760],[-311,2620],[-606,2460],[-489,980],[-455,2619],[-195,2066],[-406,1303],[-504,3773],[-618,1745],[-292,2018],[-382,3622],[-307,595]],[[202386,245364],[-300,1685],[48,2460],[4080,0],[3147,-9],[2675,9],[-2,16189],[60,23457],[4,46173],[110,-2]],[[289546,364445],[-386,-3347],[-162,336],[-315,-2312],[-297,-5651],[-335,-2949],[-108,-1978],[-451,-1774],[-123,3598],[230,5240],[342,4345],[321,1105],[-152,1036],[245,894]],[[270808,355112],[-47,-1592],[376,-3225],[478,-1580],[328,82],[553,2498],[382,-1961],[1085,1907],[-2,1707],[185,-992],[627,1951],[223,-926],[483,2105],[190,1654],[-192,1155],[258,2741],[636,4136],[154,2671],[358,1696],[-46,774],[319,2240],[113,3054],[296,-730],[184,-1831],[498,-778],[571,4636],[262,3443],[361,-1470],[269,2494],[588,2198],[412,2850],[33,2257],[171,1463],[-18,2146],[1445,-6362],[303,3602]],[[284286,376037],[-325,4],[-211,-3206],[160,-2555],[605,515],[239,-2786],[344,-965],[626,-285],[520,-3271],[531,-1675],[-205,-1799],[-52,-2362],[219,-4751],[-70,-2134],[-451,1330],[209,-2089],[-88,-859],[342,-2682],[9,-2289],[502,-1065],[255,256],[360,-7081]],[[287805,336288],[-2926,-91],[-4437,-94],[-2789,-7],[-2184,62],[-3851,842]],[[256973,505456],[357,-157],[-261,-2245],[-96,2402]],[[246267,536031],[602,242],[138,-1442],[-350,-1043],[-390,2243]],[[242817,529969],[544,-311],[1818,2947],[510,1543],[168,1455],[499,-2053],[-379,-2942],[79,-770],[-287,-2042],[559,1025],[49,876],[479,-2047],[411,-358]],[[255145,499241],[-111,-2258],[-509,-435],[-71,-1527],[-405,-2933],[-160,-2815],[271,-818],[470,2089],[540,4054],[376,655],[505,3722],[74,1639],[326,810],[178,1585],[223,-41],[-238,-4031],[-593,-4694],[-477,-4709],[-274,-5051],[106,-2109],[-412,-2459],[-225,-3971],[83,-3702],[-511,-7092],[-17,-5567],[170,-3033],[190,-1370],[-134,-2688],[40,-2899]],[[999184,630451],[433,962],[382,-1049],[-347,-1850],[-459,906],[-9,1031]],[[996730,624347],[166,531],[739,-1129],[1031,-3903],[515,-1055],[-632,-509],[-1071,4192],[-269,-55],[-479,1928]],[[996347,630690],[358,-670],[-248,-1011],[-110,1681]],[[995627,627698],[349,111],[123,-1696],[-472,1585]],[[992865,629404],[689,1514],[336,2768],[264,-1006],[-289,-1724],[80,-1517],[-533,164],[-272,-2000],[-275,1801]],[[983534,646036],[770,-797],[50,-852],[-510,27],[-310,1622]],[[982351,639895],[554,1024],[375,-272],[-131,-2925],[-667,230],[-464,828],[333,1115]],[[979619,649127],[515,961],[1333,-279],[845,-2327],[-4,-753],[-610,383],[-106,-1024],[-733,-639],[-416,2208],[-472,837],[-312,-594],[-40,1227]],[[126032,705694],[769,3112],[8,4635],[206,489],[1073,-371],[642,-2074],[370,-2297],[-10,-1517],[610,-2152],[411,-2467],[23,-2065],[223,-162],[228,-2182],[439,-1774],[-320,-796],[782,-4486],[55,-7433],[-201,-1716],[-775,334],[-266,1256],[-656,-598],[-98,-1498],[-535,489],[-832,5274],[-208,2204],[20,2029],[-479,308],[-508,1789],[-28,-1727],[-261,1644],[166,2129],[-442,797],[203,3859],[204,1312],[-159,2067],[-613,436],[-41,1152]],[[124756,723689],[685,1769],[569,-2889],[205,771],[-145,2205],[-356,1290],[449,1307],[1543,-1817],[640,61],[342,-1493],[219,-2361],[791,-2724],[-145,-2244],[-377,-716],[-655,244],[-395,-1222],[-1315,-228],[-463,-967],[-386,-5725],[-354,68],[-85,-3439],[-541,-1951],[-176,2216],[233,-45],[249,2078],[-257,5736],[269,3721],[-341,447],[-157,2177],[-46,3731]],[[123176,753049],[266,-886],[459,-3734],[1464,-690],[-27,-916],[779,-5146],[22,-2325],[247,-1447],[-164,-4612],[224,-1074],[-549,-165],[-585,-2249],[-1036,-3075],[-192,1644],[-17,2478],[236,3197],[-389,5299],[-246,7571],[-486,4573],[-6,1557]],[[118711,746017],[68,1115],[481,1057],[-60,1974],[1682,655],[198,-1046],[1216,-2573],[906,-1145],[69,-2194],[-220,-716],[503,-7329],[-84,-4487],[627,-10589],[-13,-8463],[-110,-1886],[-379,1490],[-1020,8254],[-811,1784],[-233,1333],[550,3426],[-607,1617],[-183,-1827],[-611,-271],[282,2446],[-322,1863],[-61,3556],[-963,4156],[-185,2767],[-748,2971],[28,2062]],[[75527,791448],[311,1781],[315,-472],[-327,-2250],[-299,941]],[[71255,771798],[514,540],[72,-1609],[-358,-188],[-228,1257]],[[67960,733264],[719,4033],[906,1656],[562,-147],[167,2978],[595,1480],[934,875],[243,937],[-336,1411],[1495,6500],[675,1323],[69,2517],[728,696],[48,-939],[-489,-3084],[349,-1295],[87,1220],[632,-515],[870,-2537],[-125,-1815],[-1858,-1420],[-662,-1218],[-106,-2494],[143,-1234],[329,1605],[564,1095],[303,-1133],[-75,-1560],[386,-828],[-634,-1235],[351,-1721],[429,-816],[-457,-2399],[196,-1599],[-196,-787],[-687,2025],[-348,-3195],[-690,-466],[118,-2381],[-456,-540],[-773,-2307],[-173,1864],[-493,-600],[110,-3074],[-830,-1255],[-494,-2532],[-804,3004],[-21,1371],[-601,1587],[15,2426],[-199,2441],[-554,605],[38,1477]],[[67792,715224],[908,3504],[1166,261],[604,-990],[-396,-1600],[-1417,394],[-594,-1926],[-271,357]],[[65257,703809],[404,2040],[208,-317],[-168,-2870],[-444,1147]],[[62517,708687],[331,-237],[-186,-1350],[-145,1587]],[[60970,718003],[326,610],[547,-1099],[-976,-291],[103,780]],[[52714,686482],[321,4925],[742,2163],[151,-2038],[408,81],[416,1356],[90,-1233],[795,-5225],[-296,-935],[-544,3081],[-690,740],[-764,-863],[-557,-2991],[-72,939]],[[51031,694209],[472,1598],[473,-435],[715,1606],[344,-247],[-46,-1395],[-523,-2398],[-519,87],[7,-2413],[-363,581],[-462,-810],[-98,3826]],[[50412,757470],[62,1271],[991,2196],[60,-707],[-561,-3794],[-544,-600],[-8,1634]],[[48690,692887],[484,430],[-103,-1233],[-381,803]],[[45493,678800],[1391,-2082],[-339,-1118],[-817,563],[-283,1003],[48,1634]],[[37811,669929],[895,1340],[760,370],[681,1681],[-538,-3092],[-367,220],[-1303,-935],[-128,416]],[[36530,672594],[539,569],[677,1603],[408,-69],[264,-1881],[-460,-1611],[-1386,-1298],[-183,1495],[141,1192]],[[32716,787248],[316,659],[1323,-402],[18,1113],[963,2302],[329,-655],[619,1555],[313,-2235],[431,455],[565,-972],[-81,-4317],[492,-2147],[-138,-862],[-1401,-1308],[-294,-1706],[-477,1685],[-1208,1423],[-1499,2926],[-271,2486]],[[31713,656393],[1427,2727],[398,1387],[-72,1042],[434,2852],[-379,1364],[308,2255],[1078,1322],[379,-1728],[421,1495],[785,-624],[-682,-1908],[-47,-1573],[624,1270],[-71,-2338],[-854,-1725],[-848,-3808],[-1161,-537],[-897,-2739],[-374,-358],[-639,1111],[170,513]],[[30771,891354],[416,1376],[1941,3231],[1431,3265],[2036,3833],[1759,2878],[2804,3064],[1605,201],[614,-639],[-750,-3225],[83,-2463],[-203,-1324],[616,-2496],[555,492],[973,-493],[1103,584],[358,-965],[810,-155],[541,899],[833,-1068],[985,4574],[797,-982],[570,449],[-264,1538],[-649,1020],[-1038,526],[-619,-891],[117,3090],[-839,3363],[-908,1043],[-348,2232],[441,2309],[-1043,201],[-471,733],[-1923,1522],[-492,5850],[-481,2866],[-1344,3036],[-2274,5726],[-1742,2195],[-319,1533],[-1424,2142],[-664,68],[1423,2004],[377,5423],[-86,2794],[1954,-330],[3537,1433],[908,1332],[983,2351],[919,3470],[259,2368],[0,3479],[453,4055],[1913,7228],[1177,2385],[1647,-621],[1326,1525],[1665,3478],[1577,4487],[1329,1540],[158,-1101],[1507,-427],[1509,711],[1703,2757],[1704,5913],[670,1252],[105,-1072],[1273,-1026],[83,-1103],[1272,-231],[153,-2000],[-1167,-1962],[76,-2138],[1063,-105],[83,1780],[1261,3907],[1336,-2633],[25,-3459],[1239,-912],[659,2051],[1294,84],[524,617],[2269,-1215],[644,-1211],[-782,-2128],[111,-1272],[2051,-1320],[-118,-2128],[1572,-1156],[757,1628],[965,395],[712,-1207],[1211,1762],[1130,143],[1483,-1744],[731,63],[878,-2397],[413,834],[946,-1046],[275,-1402],[1681,-1223],[1820,579],[1399,-870],[411,489],[655,-1558],[1250,-1767],[1401,-473],[603,1304],[1507,1535],[1762,674],[1492,-2071],[953,-2403],[1925,-2422],[788,-1799],[1193,-945],[2,-178116],[1299,-1560],[176,1647],[1346,-2392],[810,2961],[1705,327],[-317,-5091],[429,-1763],[959,-1678],[326,-3010],[2732,-9714],[438,-6362],[508,1771],[1221,2976],[683,124],[319,2276],[-22,3433],[325,-275],[344,1428],[-323,1423],[1128,1231],[1304,2589],[687,-1954],[566,-2546],[-110,-2705],[294,-2698],[722,-620],[378,-2279],[522,-1780],[-61,-1120],[421,-2255],[1141,-2479],[393,-2302],[891,-3421],[-228,-809],[795,-4489],[278,-2868],[577,-2990],[865,-6467],[855,-5496],[-333,-2297],[892,-842],[-207,-3364],[708,-1330],[101,-3873],[708,217],[1380,-3943],[767,-676],[524,-1968],[434,-536],[115,-1890],[500,-835],[398,377],[274,-2352],[-331,-3552],[10,-4637],[328,-5710],[-286,-1441],[-654,-5104],[-966,-3899],[-686,1716],[-179,4526],[-270,2806],[-186,117],[-97,-5296],[-369,-1156],[-819,1666],[46,3069],[-398,404],[-318,3064],[51,3193],[-945,2507],[-228,3318],[551,2154],[-593,949],[-326,-878],[-266,3578],[-283,-850],[-319,1721],[-27,2013],[-444,432],[-536,1728],[258,2074],[975,443],[493,1931],[-296,3683],[-656,1886],[-405,3665],[-1072,1229],[-619,2475],[201,2405],[-131,3090],[-438,1802],[62,1688],[-541,4229],[-560,2415],[-270,2614],[-1350,922],[-332,2748],[-519,1258],[-467,-157],[153,-2669],[-108,-2083],[-609,817],[-283,1908],[-673,-353],[-219,1384],[-873,-323],[-196,-717],[-905,-766],[-301,272],[-130,-1883],[-740,1877],[-359,1674],[-256,-127],[-1365,3635],[-1041,3934],[-28,1750],[-759,2788],[-1149,1876],[-789,2249],[-1393,2503],[-1230,3183],[331,1471],[436,361],[-62,3417],[-469,226],[-1113,-1865],[-186,-917],[-1532,776],[-1672,2697],[-564,1752],[-2316,2083],[-886,439],[-2449,-1085],[-761,-978],[-807,2499],[-453,-493],[-852,2169],[-765,445],[-78,1143],[-1176,1233],[-722,-969],[-973,1629],[-1128,-1143],[-597,-1646],[-862,949],[-949,-3490],[-543,-2936],[168,-1454],[-1349,-2171],[60,2061],[-285,1668],[-828,-517],[-166,1936],[-459,-1870],[-1795,626],[-706,-2531],[-267,1293],[-343,-2021],[188,-1732],[-569,-3],[-40,-1318],[-482,1033],[-1007,-4291],[-416,-2355],[-191,2155],[-229,-211],[-278,-2667],[-396,484],[-333,-1862],[-512,-443],[-960,623],[105,-2042],[-639,-874],[-546,1040],[-350,2564],[272,2715],[1557,2899],[341,1091],[-256,1271],[-423,-928],[-540,-23],[-631,2330],[421,4583],[826,3880],[390,5399],[-359,4100],[970,1456],[993,2868],[847,1878],[579,-2572],[582,-427],[747,2523],[-972,2666],[-557,-452],[170,2520],[-1323,122],[-723,-1061],[-633,-3126],[-875,-677],[-890,-2997],[233,-2733],[-505,216],[-1208,-4734],[271,-1519],[-852,-2903],[-98,-3688],[-351,-2440],[-742,-740],[-234,-3622],[-526,-1128],[-842,-42],[-100,-1416],[-510,-240],[173,-1522],[-834,-1505],[-346,-1852],[-161,-3134],[326,-975],[1025,35],[600,-1500],[593,-2443],[-494,-3011],[-410,-1321],[-723,-537],[-220,-2182],[-391,-1096],[-10,-1666],[-412,-4197],[-1002,-2160],[-821,160],[-674,-1408],[60,-1688],[-491,-789],[-225,-2073],[-712,1189],[-56,-2313],[-288,-2033],[-875,-458],[95,-1418],[-973,-971],[78,-4161],[-602,-3770],[-428,46],[-341,-1705],[-304,429],[-692,-2880],[-298,679],[-669,-972],[220,-2107],[-620,-644],[-326,1167],[-353,-526],[279,-2459],[-143,-1097],[-1156,466],[-429,-1023],[-143,-1633],[787,-905],[249,-1214],[-715,-1835],[-158,-2671],[-1852,-1519],[27,-1525],[-1243,-3020],[-562,-2031],[298,4449],[-398,936],[-713,-1146],[-292,-2114],[-730,-1500],[-359,-2447],[-1267,-32],[-774,-2229],[-646,65],[47,2623],[213,2505],[-541,-155],[-314,-2015],[36,-2028],[-492,-2691],[128,-1725],[744,-2112],[-674,-257],[-457,1143],[-453,-178],[-279,-1409],[-50,-2811],[-313,-868],[-220,1131],[42,2692],[-486,-1230],[-687,-863],[-356,1272],[-1089,-3496],[471,-673],[407,-2440],[-517,571],[-972,-1023],[-1297,28],[-611,-991],[-266,-2054],[-802,-1409],[-615,766],[-243,2832],[577,1251],[459,3417],[2,1348],[393,721],[254,-743],[1587,3082],[689,-284],[271,-1642],[414,1491],[-93,1780],[507,1017],[754,358],[-107,1032],[719,2671],[1176,6071],[1148,3454],[1813,2294],[975,224],[38,-2632],[639,-424],[298,1020],[-370,1255],[281,1795],[288,3862],[1115,3243],[439,1797],[815,1574],[1567,4112],[333,-943],[549,331],[-65,3407],[1001,5585],[659,1443],[424,2271],[704,1671],[-85,1784],[314,8224],[325,2454],[-188,1149],[183,3876],[1169,4946],[191,1843],[-344,587],[-2851,-4816],[-534,959],[-125,1578],[-524,1042],[-153,2067],[-411,-894],[-261,-3216],[438,-4059],[-493,-1756],[-509,619],[-964,6684],[-651,1362],[-191,1610],[-548,-2852],[-1154,3319],[15,2222],[-1153,-2846],[-256,-1756],[-135,940],[-1299,-2584],[-95,-1463],[-1058,-2182],[-141,1155],[-626,-101],[-402,789],[968,1643],[165,2129],[-110,2774],[-681,5006],[155,1607],[810,2908],[-479,3024],[-986,7758],[-401,2112],[-341,-701],[-57,-2939],[-620,-74],[-1213,-2427],[-795,-669],[-1316,-115],[-564,795],[-211,1695],[215,1082],[-779,2030],[-802,3788],[-795,1023],[-404,1599],[482,1794],[-652,-568],[-640,1004],[1194,2826],[-261,4099],[-306,1147],[383,1637],[-746,2088],[-168,-1711],[-708,1116],[46,2677],[-579,539],[-251,1838],[488,1645],[-463,1276],[-454,-1206],[-381,2201],[328,3918],[427,671],[840,-38],[-319,3985],[1351,7083],[482,1812],[373,2591],[346,514],[-105,2308],[747,5848],[461,1712],[1046,1137],[930,-935],[1161,-3346],[730,391],[1469,4926],[486,2622],[-990,2355],[854,1083],[415,-1766],[752,-1819],[1564,263],[640,570],[1137,5012],[49,1446],[-489,4532],[-58,2943],[-840,3385],[-674,477],[321,2378],[534,-977],[1128,2341],[27,1865],[-973,3453],[-679,-2386],[-749,65],[-648,-1277],[-864,-709],[-128,-1011],[-851,-1687],[-257,-2769],[-381,-995],[-479,3985],[-537,-3064],[-778,2730],[-762,837],[-1730,-141],[-1394,-2137],[-541,-295],[-807,892],[-2635,1962],[-492,1290],[-192,1981],[140,2443],[-740,2060],[-595,2569],[773,0],[429,789],[371,2079],[-258,815],[-866,270],[-884,991],[-1131,527],[-1051,2391],[-547,592],[-227,1651]],[[27546,645889],[911,2899],[486,2065],[60,2627],[506,1978],[382,-404],[285,4018],[878,1653],[664,-827],[-148,-2533],[-1266,-3038],[-448,-3268],[-437,-899],[-393,-1931],[-1412,-2909],[-68,569]],[[26065,719290],[957,-159],[58,-791],[-647,-840],[-368,1790]],[[25082,645891],[220,2566],[654,-208],[264,1325],[-160,1693],[390,-605],[-67,-4919],[-690,220],[-714,-1522],[103,1450]],[[24389,730338],[768,570],[28,-1171],[-424,-1014],[-372,1615]],[[23279,643056],[409,1179],[388,-345],[-148,-1770],[-566,-895],[-83,1831]],[[20441,851478],[261,4159],[363,41],[168,-2266],[1677,-1834],[960,1958],[728,409],[694,-1555],[244,-2617],[980,-869],[539,-1325],[1464,-507],[702,-714],[-436,-2719],[-1083,365],[-848,-1880],[-288,-2610],[-1146,4307],[-594,301],[-467,2578],[-1298,1973],[-920,-432],[-575,-1669],[-912,1412],[-213,3494]],[[18280,636773],[458,1614],[409,-1172],[-316,-1014],[-627,-610],[76,1182]],[[16993,796930],[632,-3583],[840,-1994],[855,-1441],[-42,-748],[-1048,716],[-1207,3197],[-30,3853]],[[10788,631983],[1154,1391],[481,-23],[702,1635],[20,1918],[754,1987],[557,-1912],[-173,-1551],[68,-1955],[1374,488],[431,-974],[559,344],[630,-361],[-89,-827],[-1484,-738],[-2133,1224],[-364,-1463],[-411,456],[-501,-561],[-1635,4],[60,918]],[[6195,624947],[93,2105],[376,674],[-80,1806],[642,1452],[10,-3070],[1123,766],[-104,3477],[432,853],[469,-2180],[1218,336],[71,-771],[-1014,-1012],[-584,-2245],[-1306,-1429],[-692,-2025],[-622,-563],[-32,1826]],[[4189,626029],[1233,1151],[129,2658],[381,-850],[-168,-3418],[-1522,-1253],[-53,1712]],[[2722,629120],[682,188],[181,-1229],[757,79],[-704,-3350],[-114,-1577],[-581,1547],[379,720],[-38,1257],[-637,1590],[75,775]],[[794,622728],[587,1062],[353,-302],[-509,-1294],[-431,534]],[[829,627832],[269,260],[-35,-2013],[-234,1753]],[[0,617173],[498,2582],[241,-1409],[-607,-2302],[-132,1129]],[[179805,306748],[169,2611],[-151,5164],[-104,762],[30,3076],[-140,3887],[95,963],[-171,1503],[-14,3060],[302,699],[712,40],[155,-1526],[459,-735],[292,3233],[-10,15377]],[[181429,344862],[3020,-3],[4703,5],[3560,-48],[2662,22]],[[195374,344838],[-6,-80510],[-9,-27559]],[[195359,236769],[-5640,-5],[-6293,13502],[-4123,8660],[11,2343],[251,1938]],[[247570,306631],[165,-1686],[-595,-1380],[-344,-4181],[105,-909],[-72,-2917],[-237,-1513],[-191,543],[-66,-1430],[-395,-1237],[-144,-2193],[150,-1575],[-315,-950],[-156,-1897],[96,-2172],[-526,-4467],[284,-2599],[-34,-2153],[160,-903],[-101,-1932],[-212,-635],[41,-1796]],[[235935,280734],[151,33027],[-519,21546]],[[195359,421152],[2228,-11],[5739,-44],[3719,6],[2236,64]],[[209281,421167],[4169,15],[1407,3],[0,-19058]],[[214857,402127],[27,-43188],[-1,-14216]],[[214883,344723],[-2674,134]],[[212209,344857],[-3724,-125],[-1095,-3],[-4489,16],[-4617,110],[-2910,-17]],[[195374,344838],[9,22229],[-51,2113],[24,16222],[3,35750]],[[255329,434649],[443,-1504],[289,-175],[651,1037],[565,1631]],[[262902,434415],[10,-22776],[-50,-26630]],[[294435,441158],[1783,-244],[2916,-253],[4,-297]],[[299138,440364],[4,-11277],[-175,-1841]],[[298967,427246],[-950,-85],[-516,-1028],[-589,131],[-452,-523],[-488,329],[-542,-2131],[-675,-815],[-794,-2268]],[[64422,16458],[374,2035],[251,2647],[-181,1862],[0,2510],[427,-618],[388,-1875],[266,-197],[647,-1900],[513,-3036],[-2,-2428],[224,214],[90,-2023],[445,-1966],[-173,-1848],[-401,-1942],[-388,-1202],[-293,112],[-670,-2599],[-464,-4204],[-584,2273],[-90,1191],[70,4746],[-250,4961],[-239,2339],[40,948]],[[62612,38203],[223,2043],[158,-221],[228,-2250],[412,919],[253,-163],[665,-2715],[4,-1858],[-356,-1346],[-690,-936],[-152,376],[-115,3674],[-442,581],[-188,1896]],[[62694,31322],[287,858],[77,-1472],[-361,-437],[-3,1051]],[[61610,38065],[340,226],[359,-2000],[-83,-1064],[-361,-563],[-255,3401]],[[61003,42738],[45,1282],[947,-1079],[590,-200],[-259,-1745],[-208,-339],[-567,1004],[-641,-7],[93,1084]],[[58342,50850],[297,56],[438,2401],[366,-3485],[65,-1709],[255,361],[33,-1921],[164,-851],[-136,-952],[-304,-119],[-225,930],[-594,-164],[-486,5358],[127,95]],[[54020,60024],[218,1802],[346,1224],[499,174],[303,-2092],[-123,-3276],[-300,-1574],[-440,450],[-423,1632],[-80,1660]],[[52721,55261],[58,1412],[324,2024],[172,-271],[-77,-1620],[-216,-537],[-138,-1687],[-123,679]],[[209281,459293],[2932,-6],[2558,-21],[3015,-32],[2234,9],[4736,12],[178,-1323],[798,-1702],[314,-1445],[237,104],[257,1820],[437,-406],[1291,178],[297,-1549],[296,-180],[912,-1971],[-33,-1057],[273,-1861],[462,-295]],[[233643,402069],[-4738,27],[-3524,17],[-4288,-18],[-3475,18],[-2761,14]],[[209281,421167],[0,38126]],[[212209,344857],[-1,-9531]],[[202386,245364],[-4681,7],[-1,-8585],[-2345,-17]],[[287805,336288],[197,-4967],[217,-3369],[620,-7347],[104,-2514],[-209,-7071],[-284,-107],[-773,-1920],[-625,-2512],[-872,-5214],[-238,-2400],[-231,1601],[-302,460],[-499,-265],[-642,-951],[-909,-3081],[-479,-2132],[-541,-3757],[-365,-5899],[-493,1124],[-688,-195],[-438,-970]],[[280355,284802],[-3159,18187],[-3125,365],[41,2134],[-426,3273],[-296,-1196],[-4,1994],[-3813,1015],[-337,-893],[-1605,-2956]],[[266669,435112],[1079,-2619],[368,-1545],[279,1398],[324,-871],[281,-2165],[436,-803],[1298,2444],[713,-494],[1259,5181],[654,1513],[1484,2631]],[[274844,439782],[1,-25531]],[[274845,414251],[-415,-1073],[176,-2592],[-5,-2722],[-363,-4268],[-9,-2084],[-176,-994],[-186,-2959],[13,-1922],[-733,-4069],[-610,-1976],[-303,1211],[-304,-2538],[-315,-48],[-360,-3619],[89,-1968],[-342,-975],[-302,1906],[-229,-1023],[-335,-3304],[95,-3703],[-276,-282],[-138,-2756],[-752,-523]],[[301130,503249],[375,498],[158,-1761],[234,1381],[76,2280],[409,-907],[-247,2417],[475,3004],[472,1278],[-90,979],[436,1994],[-132,3254],[187,1552],[-143,822],[232,2774],[428,1868],[158,5073],[2165,14531],[504,-668],[-3,-3377],[388,-1269],[1464,2169],[39,1208],[438,-304],[702,-2737],[453,-2488],[27,-21503],[-65,-4964],[356,-895],[613,-503],[106,-1958],[-186,-954],[159,-1492],[-148,-2013],[391,-2719],[192,1250],[442,-1503],[453,-5623],[-957,-4161],[-433,19],[-365,-3264],[-205,1845],[-391,-593],[-171,-1437],[-443,-557],[-98,-1134],[-213,1075],[-504,-2904],[-68,-2427],[-943,-595],[-570,-973],[-171,2003],[130,556],[-422,1414],[23,-2949],[-125,-2010],[-273,63],[-407,-2293],[-202,1901],[-306,-2264],[-596,-864],[-384,-1671],[-169,1341],[-502,-1961],[-201,55],[-106,-2241],[-432,-542],[94,-1348],[-248,-1859],[-282,-325],[-188,-1409],[-31,-2035],[-300,-1977]],[[302189,460422],[-346,1321],[42,1682],[-477,3029],[32,3704],[-178,22241],[-132,10850]],[[303383,427061],[547,171],[84,1378],[247,-2425],[-700,-302],[-178,1178]],[[301827,427879],[212,234],[430,2227],[389,-1206],[43,-1251],[-683,-206],[-356,-1750],[-35,1952]],[[295054,454436],[2247,-363]],[[297301,454073],[3244,-569],[313,774],[89,1484],[330,833],[596,252]],[[301873,456847],[244,-3866],[378,-659],[-169,-1007],[-540,-612],[35,-1138],[-409,-1268],[-42,-1961],[745,-2102],[256,-2468],[-66,-2306],[219,-203],[119,-2560],[277,-1199],[472,-601],[689,1259],[-164,4285],[-450,986],[296,556],[404,-1786],[162,-3621],[13,-3561],[-223,-1503],[12,2435],[-732,-1025],[-145,241],[-1746,-4220],[37,869],[660,1988],[-187,1576],[-603,-2508],[-387,-242]],[[301028,430626],[-34,3103],[-547,2336],[-146,2109],[1,2396],[-1164,-206]],[[253446,306630],[285,-1973],[-436,-22760],[-597,-33673],[0,-2717],[204,-27105]],[[252902,218402],[-213,-943],[-637,453],[-539,948],[-527,-484],[-729,-1427],[-500,-2146]],[[175861,573726],[2344,-32],[4220,-30],[6107,-13],[3703,43],[3263,0],[4345,3],[3873,-3],[3274,-5],[2303,18]],[[209293,573707],[18,-22821],[-9,-35433]],[[209302,515453],[18,-18057],[-52,-20]],[[209268,497376],[-6145,-71],[-1743,41],[-4489,72],[-1680,119],[-4462,-260],[-946,173],[-12,-10055]],[[214883,344723],[3306,105],[3337,31],[3632,-43],[2700,17],[4451,8],[3258,-7]],[[280355,284802],[-645,-1575],[-461,-2454],[-549,-4500],[-223,-4736],[-319,-1250],[-84,-1589],[-453,546],[-234,-1204],[103,-868],[-437,-2301],[-395,-1357],[-369,-2460],[-411,-522],[-530,-1904],[-354,316],[29,-3219],[-393,-1010],[-330,995],[-143,-630],[270,-1447],[-528,-2235],[-75,-1240]],[[209302,515453],[4164,-7],[4984,-23],[3543,-65],[4773,-95],[3380,-2]],[[209281,459293],[-13,38083]],[[189798,440240],[0,-19140],[1412,-30],[4149,82]],[[181429,344862],[1,29991],[24,65238]],[[155836,567673],[465,314],[369,1723],[542,-2447],[-155,-1093],[-13,-3356],[-198,-200],[-743,1661],[-267,3398]],[[154971,521436],[-427,881],[-486,-1248],[-262,984],[-310,-461],[31,6931],[408,802],[-440,1188],[-245,4949],[-188,5583],[-231,1303],[-258,6401],[-726,5210],[-137,3601],[191,4529],[758,-2021],[777,-1295],[143,-745],[1053,-287],[1209,-849],[262,1101],[392,-1629],[679,1005],[173,-766],[132,-3472],[290,881],[-143,2736],[-430,2850],[243,2982],[63,3278],[-250,4764],[-248,1969],[177,1163],[2804,-94],[4876,38],[3244,17],[5027,-21]],[[274845,414251],[-1,-17495],[2905,-8]],[[289064,398291],[-402,-3282],[87,-2513]],[[288749,392496],[-181,-360],[515,-4090],[34,-3945],[256,-2760],[405,-2345],[193,134],[113,-6597]],[[288024,396771],[350,1892],[257,339],[433,-711]],[[299605,424319],[240,1450],[73,-1776],[-313,326]],[[301028,430626],[-201,-753],[-657,-72],[-152,-1573],[-1051,-982]],[[255346,216704],[-838,-993],[-207,208],[269,1620],[-381,3112],[7,3154],[-365,-149],[-207,-6182],[-338,-36],[-384,964]],[[209293,573707],[1876,-18],[3226,-7],[3042,10],[3376,-1],[2910,21],[4569,9]],[[274844,439782],[528,1119],[1582,4457]],[[291071,427956],[-337,-1169],[-249,-2679],[-635,-3346],[188,-1802],[-312,-2317],[-26,-3715],[302,-403],[62,-2521],[307,-1121],[625,-3881],[-290,-571],[-863,-3371],[6,-971],[-785,-1798]],[[294837,497631],[2770,-99],[2361,148]],[[299968,497680],[19,-1937],[-369,-3140],[209,-2281],[-78,-2399],[-666,-2839],[-634,-1163],[27,-3601],[-408,-5625],[-283,-1675],[-264,-2791],[-64,-4837],[-137,-3183],[19,-2843],[-243,-944],[-21,-2862],[226,-1487]],[[299968,497680],[266,3523],[-91,780],[431,1201],[282,-1162],[274,1227]],[[302189,460422],[-316,-3575]],[[292280,411651],[152,-1177],[441,-416],[139,1101],[74,-2453],[-362,-11288],[-565,-5429],[-302,-2110],[-652,-2838],[-165,-2081],[-442,-3099],[-286,-133],[226,4009],[-452,1365],[-246,-636],[-300,1980],[-814,3334],[23,716]]],"transform":{"scale":[0.0003589485459485459,0.00005243514743514743],"translate":[-179.174265,18.917466]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment