Skip to content

Instantly share code, notes, and snippets.

@mhkeller
Created June 13, 2014 22:26
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 mhkeller/f41cceac3e7ed969eaeb to your computer and use it in GitHub Desktop.
Save mhkeller/f41cceac3e7ed969eaeb to your computer and use it in GitHub Desktop.
A basic setup showing how to draw arc paths on a map with D3.
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
font: 12px sans-serif;
}
/* For centering */
svg {
margin: 0 auto;
display: inherit;
}
.states path {
stroke-width: 1px;
stroke: white;
fill: #DBDBDB;
cursor: pointer;
}
/* .states path:hover, path.highlighted {
fill: tomato;
}
*/
.arcs path {
stroke-width: 2px;
stroke: tomato;
pointer-events: none;
fill: none;
}
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script>
// This is an array of source/target pairs.
// Each location array is in the order of longitude and then latitude.
// You often see these as lat/lng but since we need this to be in math format we do them in lng/lat, which is x/y.
// You could also nest this data and change what object you bind your data to save space. There's no single correct way.
// Do what is best for your data and for your deadlines.
var arcdata = [
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-106.503961875, 33.051502817366334]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-97.27544625, 34.29490081496779]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-92.793024375, 34.837711658059135]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-100.3076728125, 41.85852354782116]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-104.6143134375, 43.18636214435451]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-106.152399375, 45.57291634897]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-105.5811103125, 42.3800618087319]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-74.610651328125, 42.160561343227656]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-78.148248984375, 40.20112201100485]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-81.795709921875, 39.89836713516883]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-91.738336875, 42.1320516230261]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-93.902643515625, 39.89836713516886]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-146.68645699218752, 62.84587613514389]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-151.03704292968752, 62.3197734579205]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-150.50969917968752, 68.0575087745829]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-155.58278180000002, 19.896766200000002]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-155.41249371406252, 19.355435189875685]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-156.22204876777346, 20.77817385333129]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-156.08334637519533, 20.781383752662176]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-119.41793240000001, 36.77826099999999]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-111.73848904062501, 34.311442605956636]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-118.62691677500001, 39.80409417718468]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-115.56173122812501, 44.531552843807575]
},
{
sourceLocation: [-99.5606025, 41.068178502813595],
targetLocation: [-107.13521755625001, 43.90164233696157]
}
]
// Map dimensions (in pixels)
var width = 600,
height = 349;
// Map projection
var projection = d3.geo.albersUsa()
.scale(730.1630554896399)
.translate([width/2,height/2]) //translate to center the map in view
// Generate paths based on projection
var path = d3.geo.path()
.projection(projection);
// Create an SVG
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
// Group for the states
// SVG drawing order is based strictly on the order in the DOM
// So you can't use something like z-index to make an element appear above or below another object
// We have to draw the states group first so that it appears below the arcs
// Change the order of these two variables if you want to see how it would look incorrect.
var states = svg.append("g")
.attr("class","states");
// Group for the arcs
var arcs = svg.append("g")
.attr("class","arcs");
// Keeps track of currently zoomed feature
var centered;
// Load the basemap data
d3.json("us-states.topojson",function(error,geodata) {
if (error) return console.log(error); //unknown error, check the console
//Create a path for each map feature in the data
states.selectAll("path")
.data(topojson.feature(geodata,geodata.objects.states).features) //generate features from TopoJSON
.enter()
.append("path")
.attr("d",path)
.on("click",clicked);
// Create a path for each source/target pair.
arcs.selectAll("path")
.data(arcdata)
.enter()
.append("path")
.attr('d', function(d) {
return lngLatToArc(d, 'sourceLocation', 'targetLocation', 15); // A bend of 5 looks nice and subtle, but this will depend on the length of your arcs and the visual look your visualization requires. Higher number equals less bend.
});
});
// This function takes an object, the key names where it will find an array of lng/lat pairs, e.g. `[-74, 40]`
// And a bend parameter for how much bend you want in your arcs, the higher the number, the less bend.
function lngLatToArc(d, sourceName, targetName, bend){
// If no bend is supplied, then do the plain square root
bend = bend || 1;
// `d[sourceName]` and `d[targetname]` are arrays of `[lng, lat]`
// Note, people often put these in lat then lng, but mathematically we want x then y which is `lng,lat`
var sourceLngLat = d[sourceName],
targetLngLat = d[targetName];
if (targetLngLat && sourceLngLat) {
var sourceXY = projection( sourceLngLat ),
targetXY = projection( targetLngLat );
// Uncomment this for testing, useful to see if you have any null lng/lat values
// if (!targetXY) console.log(d, targetLngLat, targetXY)
var sourceX = sourceXY[0],
sourceY = sourceXY[1];
var targetX = targetXY[0],
targetY = targetXY[1];
var dx = targetX - sourceX,
dy = targetY - sourceY,
dr = Math.sqrt(dx * dx + dy * dy)*bend;
// To avoid a whirlpool effect, make the bend direction consistent regardless of whether the source is east or west of the target
var west_of_source = (targetX - sourceX) < 0;
if (west_of_source) return "M" + targetX + "," + targetY + "A" + dr + "," + dr + " 0 0,1 " + sourceX + "," + sourceY;
return "M" + sourceX + "," + sourceY + "A" + dr + "," + dr + " 0 0,1 " + targetX + "," + targetY;
} else {
return "M0,0,l0,0z";
}
}
// Zoom to feature on click
// This is optional but if you use mapstarter.com, you get it for free.
function clicked(d,i) {
//Add any other onClick events here
var x, y, k;
if (d && centered !== d) {
// Compute the new map center and scale to zoom to
var centroid = path.centroid(d);
var b = path.bounds(d);
x = centroid[0];
y = centroid[1];
k = .8 / Math.max((b[1][0] - b[0][0]) / width, (b[1][1] - b[0][1]) / height);
centered = d
} else {
x = width / 2;
y = height / 2;
k = 1;
centered = null;
}
// Highlight the new feature
states.selectAll("path")
.classed("highlighted",function(d) {
return d === centered;
})
.style("stroke-width", 1 / k + "px"); // Keep the border width constant
//Zoom and re-center the whole map container
//Comment `.transition()` and `.duration()` to eliminate gradual zoom
svg
.transition()
.duration(500)
.attr("transform","translate(" + width / 2 + "," + height / 2 + ")scale(" + k + ")translate(" + -x + "," + -y + ")");
}
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"states":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[0,1,2,-4,4,-6,6,7,-9,9,10,-12,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,-28,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]]],"id":53},{"type":"MultiPolygon","arcs":[[[58,-60,60,-62,62,-64,64,-66,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,-89,89,90,91,-93,93,-95,95,-97,97,98,99,100,101,102,103,104,105,106]]],"id":30},{"type":"MultiPolygon","arcs":[[[-92,-91,-90,88,-88,-87,-86,-85,-84,-83,107,-109,-110,110,-112,-113,113,114,115,116,117,118,119,120,121,-123,-124,-125,125,-127,127,-129,129,130,11,-11,-10,8,-8,-7,5,-5,3,131,96,-96,94,-94,92]]],"id":16},{"type":"MultiPolygon","arcs":[[[132,133,134,135,136,-138,-139,139,-141,141,-143,143,-145,-146,146,147,148,149,150,151,152,153,154,155,156,157,158,159,-68,-67,65,-65,63,-63,61,-61,59,160,161,162,163]]],"id":38},{"type":"MultiPolygon","arcs":[[[164,165,166,167,168,169,170,171,172,173,174,-176,176,-178,178,179,180,-182,182,-184,-185,-186,-187,187,-189,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,-212,212,-214,-215,215,-217,217,-219,219,-147,145,144,-144,142,-142,140,-140,138,137,-137,220,221]]],"id":27},{"type":"MultiPolygon","arcs":[[[222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,-239,239,240,241,242,243,244,245]],[[246]],[[247]]],"id":23},{"type":"MultiPolygon","arcs":[[[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,-283,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]],[[-323,323]],[[324,-326]]],"id":26},{"type":"MultiPolygon","arcs":[[[-269,-268,-267,-266,-265,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,-355,355,-190,188,-188,186,185,184,183,-183,181,-181,-180,-179,177,-177,175,-175,-174,-173,-172,356,357,358,359,-250,-249,-270]],[[360]]],"id":55},{"type":"MultiPolygon","arcs":[[[27,-27,-26,-25,-24,-23,-22,-21,-20,-19,-18,-17,-16,-15,-14,-13,-131,-130,128,-128,126,-126,124,123,122,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,-29]]],"id":41},{"type":"MultiPolygon","arcs":[[[-155,-154,-153,-152,-151,-150,-149,-148,-220,218,-218,216,-216,214,213,-213,211,-211,-210,380,-382,382,-384,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,-405,405,-407,407,408,-410,410,-71,-70,-69,-160,-159,-158,-157,-156]]],"id":46},{"type":"MultiPolygon","arcs":[[[-238,411,412,413,414,415,416,417,418,-420,420,-422,422,423,-425,-426,426,427,-241,-240,238]]],"id":33},{"type":"MultiPolygon","arcs":[[[428,-427,425,424,-424,-423,421,-421,419,429,430,431,432,-434,434,435,-437,437,-439,439,440,441,442]]],"id":50},{"type":"MultiPolygon","arcs":[[[436,-436,-435,433,-433,443,-445,-446,446,447,-449,-450,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,-440,438,-438]],[[495]],[[496,497]],[[498,499,500,501,502,503,504,505]],[[506,507]],[[508]]],"id":36},{"type":"MultiPolygon","arcs":[[[-76,-75,-74,-73,-72,-411,409,-409,-408,406,-406,404,509,-511,511,512,-514,514,515,516,517,518,519,520,521,522,523,524,525,-527,527,112,111,-111,109,108,-108,-82,-81,-80,-79,-78,-77]]],"id":56},{"type":"MultiPolygon","arcs":[[[-196,-195,-194,-193,-192,-191,-356,354,-354,-353,-352,528,-530,530,-532,532,533,-535,-536,-537,537,-539,539,-541,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,-562,562,-564,564,565,-567,567,-569,569,-571,571,572,-386,-385,383,-383,381,-381,-209,-208,-207,-206,-205,-204,-203,-202,-201,-200,-199,-198,-197]]],"id":19},{"type":"MultiPolygon","arcs":[[[510,-510,-404,-403,-402,-401,-400,-399,-398,-397,-396,-395,-394,-393,-392,-391,-390,-389,-388,-387,-573,-572,570,-570,568,-568,566,-566,-565,563,-563,561,-561,573,-575,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,-602,602,-604,604,605,606,607,608,609,610,-515,513,-513,-512]]],"id":31},{"type":"MultiPolygon","arcs":[[[611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,445,444,-444,-432,-431,-430,-419,-418,-417,-416,-415,-414,635,636]],[[637]],[[638]]],"id":25},{"type":"MultiPolygon","arcs":[[[-347,-346,-345,-344,-343,-342,-341,639,640,641,642,-644,644,-646,646,-648,648,649,-651,651,-653,653,-655,655,-657,-658,658,-660,660,-662,662,-664,664,665,666,-668,668,669,670,671,672,673,-675,-676,-677,677,678,679,680,681,-683,-684,-685,685,686,687,688,689,690,-692,692,693,-695,695,-697,697,698,-542,540,-540,538,-538,536,535,534,-534,-533,531,-531,529,-529,-351,-350,-349,-348]]],"id":17},{"type":"MultiPolygon","arcs":[[[-477,-476,-475,-474,-473,-472,-471,-470,-469,-468,-467,-466,-465,-464,-463,699,-701,701,-703,-704,-705,705,706,-708,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,-735,735,736,737,-739,739,-741,741,-743,743,-745,745,-747,747,748,-480,-479,-478]]],"id":42},{"type":"MultiPolygon","arcs":[[[-632,-631,-630,749,750,-752,752,753,754,755,756,757,758,449,448,-448,-447,-635,-634,-633]]],"id":9},{"type":"MultiPolygon","arcs":[[[759,760,761,762,-753,751,-751,-750,-629,-628,-627,-626]],[[763]],[[764,-624]]],"id":44},{"type":"MultiPolygon","arcs":[[[-366,765,-767,-768,-769,-770,770,771,-773,-774,-775,-776,-777,777,-779,-780,780,-782,782,783,-785,-786,-787,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,-372,-371,-370,-369,-368,-367]],[[814]],[[815]],[[816]],[[817]],[[818]]],"id":6},{"type":"MultiPolygon","arcs":[[[-528,526,-526,-525,-524,-820,-821,821,822,-824,824,-826,826,827,828,829,830,831,832,833,834,-836,-837,-838,838,-840,-841,841,-843,843,-118,-117,-116,-115,-114]]],"id":49},{"type":"MultiPolygon","arcs":[[[-363,-362,-122,-121,-120,-119,-844,842,-842,840,839,-839,837,836,835,844,845,781,-781,779,778,-778,776,775,774,773,772,-772,-771,769,768,767,766,-766,-365,-364]]],"id":32},{"type":"MultiPolygon","arcs":[[[-744,742,-742,740,846,-848,848,849,-851,851,-853,853,854,855,856,857,858,-860,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,-883,883,-885,885,886,-888,888,-890,890,-892,-893,893,-895,895,-897,-287,-286,-285,-284,282,897,325,898,322,899,900,901,902,903,904,905,906,907,908,-748,746,-746,744]]],"id":39},{"type":"MultiPolygon","arcs":[[[-289,-288,896,-896,894,-894,892,891,-891,889,-889,887,-887,-886,884,-884,882,-882,-881,909,-911,-912,912,913,914,915,-917,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,661,-661,659,-659,657,656,-656,654,-654,652,-652,650,-650,-649,647,-647,645,-645,643,-643,-642,934,935,936,-296,-295,-294,-293,-292,-291,-290]]],"id":18},{"type":"MultiPolygon","arcs":[[[-459,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,-953,953,-955,955,956,957,958,707,-707,-706,704,703,702,-702,700,-700,-462,-461,-460]]],"id":34},{"type":"MultiPolygon","arcs":[[[-516,-611,-610,-609,-608,-607,-606,-605,603,-603,601,959,-961,961,962,-964,964,-966,-967,967,968,-970,970,971,972,973,974,975,976,977,978,979,980,981,982,-829,-828,-827,825,-825,823,-823,-822,820,819,-523,-522,-521,-520,-519,-518,-517]]],"id":8},{"type":"MultiPolygon","arcs":[[[-732,-731,-984,-985,-986,-987,-988,-989,-990,-991,-992,992,993,994,995,996,-998,998,999,1000,1001,1002,1003,1004,-1006,1006,-1008,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,-1022,-866,-865,-864,-863,-862,-861,859,-859,-858,-857,-856,-855,-854,852,-852,850,-850,-849,847,-847,-740,738,-738,-737,-736,734,-734,-733]]],"id":54},{"type":"MultiPolygon","arcs":[[[-696,694,-694,-693,691,-691,-690,-689,-688,-687,-686,684,683,682,-682,-681,-680,-679,-678,676,675,674,-674,-673,-1023,1023,1024,1025,1026,1027,1028,1029,-1031,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,-1056,1056,-1058,1058,-1060,-1061,1061,1062,-1064,1064,-1066,1066,-1068,1068,1069,1070,1071,1072,-1074,1074,-1076,1076,1077,-577,-576,574,-574,-560,-559,-558,-557,-556,-555,-554,-553,-552,-551,-550,-549,-548,-547,-546,-545,-544,-543,-699,-698,696]]],"id":29},{"type":"MultiPolygon","arcs":[[[-598,-597,-596,-595,-594,-593,-592,-591,-590,-589,-588,-587,-586,-585,-584,-583,-582,-581,-580,-579,-578,-1078,-1077,1075,-1075,1073,-1073,-1072,-1071,-1070,-1069,1067,-1067,1065,-1065,1063,-1063,-1062,1060,1059,-1059,1057,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,-971,969,-969,-968,966,965,-965,963,-963,-962,960,-960,-601,-600,-599]]],"id":20},{"type":"MultiPolygon","arcs":[[[1104,952]],[[1105,954]],[[1106,1107,-1109,1109,1110,-714,-713,-712,-711,1111,1112,1113,1114,1115,1116,1117,1118,-1120]]],"id":10},{"type":"MultiPolygon","arcs":[[[-719,-718,-717,-716,-715,-1111,-1110,1108,-1108,-1107,1119,-1119,-1118,-1117,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,991,990,989,988,987,986,985,984,983,-730,-729,-728,-727,-726,-725,-724,-723,-722,-721,-720]],[[1154]],[[1155,1156]],[[-1115,1157]],[[1158,1159]],[[1160,1161,1162,1163]],[[1164,1165,1166]]],"id":24},{"type":"MultiPolygon","arcs":[[[1167],[-993,-1154,-1153,-1152,-1151,-1169,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,-1257,-1258,1258,-1260,-1261,-1262,-1263,-1017,-1016,-1015,-1014,-1013,-1012,-1011,-1010,-1009,1007,-1007,1005,-1005,-1004,-1003,-1002,-1001,-1000,-999,997,-997,-996,-995,-994]],[[1263,-1162]],[[1264,-1166]],[[-1159,1265]],[[1266,1267,-1123,1268,1269,1270]],[[-1156,1271]],[[1272,1273,1274]]],"id":51},{"type":"MultiPolygon","arcs":[[[-878,-877,-876,-875,-874,-873,-872,-871,-870,-869,-868,-867,1021,-1021,-1020,-1019,-1018,1262,1261,1260,1259,-1259,1257,1256,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,-1027,-1026,-1025,-1024,1022,-672,-671,-670,-669,667,-667,-666,-665,663,-663,-934,-933,-932,-931,-930,-929,-928,-927,-926,-925,-924,-923,-922,-921,-920,-919,-918,916,-916,-915,-914,-913,911,910,-910,-880,-879]],[[1305,-1029]]],"id":21},{"type":"MultiPolygon","arcs":[[[1306,1168,-1150,-1149]]],"id":11},{"type":"MultiPolygon","arcs":[[[-1308,1308,1309,1310,-1312,1312,1313,-1315,1315,1316,1317,1318,786,785,784,-784,-783,-846,-845,-835,-834,-833,-832,-831,-830]]],"id":4},{"type":"MultiPolygon","arcs":[[[-1080,-1079,-1057,1055,-1055,1319,-1321,-1322,1322,-1324,1324,-1326,1326,1327,-1329,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,-1353,1353,-1355,1355,-1357,1357,1358,1359,1360,1361,1362,1363,1364,1365,-1367,-972,-1104,-1103,-1102,-1101,-1100,-1099,-1098,-1097,-1096,-1095,-1094,-1093,-1092,-1091,-1090,-1089,-1088,-1087,-1086,-1085,-1084,-1083,-1082,-1081]]],"id":40},{"type":"MultiPolygon","arcs":[[[-976,-975,-974,-973,1366,1367,1368,-1370,1370,1371,-1373,1373,1374,1375,1376,-1378,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1314,-1314,-1313,1311,-1311,-1310,-1309,1307,-983,-982,-981,-980,-979,-978,-977]]],"id":35},{"type":"MultiPolygon","arcs":[[[-1293,-1292,-1291,-1290,-1289,-1288,-1287,-1286,-1285,-1284,-1283,-1282,-1281,-1280,-1279,-1278,-1277,-1276,-1256,-1255,-1254,-1253,-1252,-1251,-1250,-1249,-1248,-1247,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,-1411,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,-1440,1440,-1442,-1443,-1444,-1445,1445,-1032,1030,-1030,-1306,-1028,-1305,-1304,-1303,-1302,-1301,-1300,-1299,-1298,-1297,-1296,-1295,-1294]]],"id":47},{"type":"MultiPolygon","arcs":[[[-1244,-1243,-1242,-1241,-1240,-1239,-1238,-1237,-1236,-1235,-1234,-1233,-1232,-1231,-1230,-1229,-1228,-1227,-1226,-1225,-1224,-1223,-1222,-1221,-1220,-1219,-1218,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,1410,-1410,-1409,-1408,-1407,-1406,-1405,-1404,-1403,-1402,-1401,-1400,-1399,-1398,-1397,-1396,-1395,-1394,-1246,-1245]],[[1508,-1214,1509,1510]],[[-1512,1273,-1513,1215]],[[1513,1514,1515]],[[1516,1517]],[[1518,1519]]],"id":37},{"type":"MultiPolygon","arcs":[[[-1366,-1365,-1364,-1363,-1362,-1361,-1360,-1359,-1358,1356,-1356,1354,-1354,1352,-1352,-1351,-1350,-1349,-1348,-1347,-1346,-1345,-1344,-1343,-1342,-1341,-1340,-1339,-1338,-1337,-1336,-1335,-1334,-1333,-1332,-1521,1521,-1523,1523,-1525,-1526,-1527,1527,-1529,1529,-1531,-1532,-1533,1533,1534,-1536,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,-1390,-1389,-1388,-1387,-1386,-1385,-1384,-1383,-1382,-1381,-1380,-1379,1377,-1377,-1376,-1375,-1374,1372,-1372,-1371,1369,-1369,-1368]],[[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]]],"id":48},{"type":"MultiPolygon","arcs":[[[-1051,-1050,-1049,-1048,-1047,-1046,-1045,-1044,-1043,-1042,-1041,-1040,-1039,-1038,-1037,-1036,-1035,-1034,-1033,-1446,1444,1443,1442,1441,-1441,1439,1625,1626,1627,-1629,1629,1630,-1632,-1633,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1522,-1522,1520,-1331,-1330,1328,-1328,-1327,1325,-1325,1323,-1323,1321,1320,-1320,-1054,-1053,-1052]]],"id":5},{"type":"MultiPolygon","arcs":[[[-1493,-1492,-1491,-1490,-1489,-1488,-1487,-1486,-1485,-1484,-1483,-1482,-1481,-1480,-1479,-1478,-1477,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,-1668,1668,-1670,1670,1671,1672,1673,1674,1675,1676,-1678,1678,1679,1680,1681,1682,1683,1684,1685,-1501,-1500,-1499,-1498,-1497,-1496,-1495,-1494]],[[-1519,1686]],[[-1475,1687]],[[1688,1689]],[[1690]],[[1691]],[[1692]]],"id":45},{"type":"MultiPolygon","arcs":[[[1693,-1429,-1428,-1427,-1426,-1425,-1424,-1423,-1422,-1421,-1420,1694,-1696,-1697,1697,-1699,-1700,1700,-1702,1702,1703,-1705,1705,1706,-1708,1708,-1710,1710,-1712,-1713,1713,-1715,1715,1716,-1718,1718,-1720,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,-1738,1738,-1740,1740,1741,-1743,1743,1744,-1746,1746,-1748,1748,-1750,1750,-1752,1752,-1754,-1755]],[[1755,1756]]],"id":1},{"type":"MultiPolygon","arcs":[[[-1684,-1683,-1682,-1681,-1680,-1679,1677,-1677,-1676,-1675,-1674,-1673,-1672,-1671,1669,-1669,1667,-1667,-1666,-1665,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,-1721,1719,-1719,1717,-1717,-1716,1714,-1714,1712,1711,-1711,1709,-1709,1707,-1707,-1706,1704,-1704,-1703,1701,-1701,1699,1698,-1698,1696,1695,-1695,-1419,-1418,-1417,-1416,-1415,-1414,-1413,-1412,-1508,-1507,-1506,-1505,-1504,-1503,-1502,-1686,-1685]],[[1786]],[[1787]],[[1788]],[[1789,1790]],[[1791]],[[1792]]],"id":13},{"type":"MultiPolygon","arcs":[[[-1433,-1432,-1431,-1430,-1694,1754,1753,-1753,1751,-1751,1749,-1749,1747,-1747,1745,-1745,-1744,1742,-1742,-1741,1739,-1739,1737,-1737,-1736,1793,1794,1795,-1797,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,-1809,-1810,-1811,-1812,-1813,1813,1814,1815,1816,-1818,1818,-1635,-1634,1632,1631,-1631,-1630,1628,-1628,-1627,-1626,-1439,-1438,-1437,-1436,-1435,-1434]]],"id":28},{"type":"MultiPolygon","arcs":[[[1526,1525,1524,-1524,-1647,-1646,-1645,-1644,-1643,-1642,-1641,-1640,-1639,-1638,-1637,-1636,-1819,1817,-1817,-1816,-1815,-1814,1812,1811,1810,1809,1808,-1808,-1807,-1806,-1805,-1804,-1803,-1802,-1801,-1800,-1799,-1798,1796,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,-1538,-1537,1535,-1535,-1534,1532,1531,1530,-1530,1528,-1528]],[[1855,1856],[-1858],[-1859]],[[1859]],[[1860,1861]],[[1862]],[[1863]]],"id":22},{"type":"MultiPolygon","arcs":[[[-1783,-1782,-1781,-1780,-1779,-1778,-1777,-1776,-1775,-1774,-1773,-1772,-1771,-1770,-1769,-1768,-1767,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,-1731,-1730,-1729,-1728,-1727,-1726,-1725,-1724,-1723,-1722,-1786,-1785,-1784]],[[-1757,1933]],[[1934,1935,1936,1937]],[[1938,1939]],[[1940,1941,1942,1943]],[[1944]],[[1945,1946]],[[1947,1948]],[[1949,1950]],[[1951,1952]],[[1953,1954]],[[1955,1956]],[[1957,1958]],[[1959]],[[1960,1961]],[[1962]]],"id":12},{"type":"MultiPolygon","arcs":[[[1963,1964]],[[1965]],[[1966]],[[1967]],[[1968]],[[1969]],[[1970]],[[1971]]],"id":15},{"type":"MultiPolygon","arcs":[[[1972]],[[1973]],[[1974]],[[1975]],[[1976]],[[1977]],[[1978]],[[1979]],[[1980]],[[1981]],[[1982]],[[1983]],[[1984]],[[1985]],[[1986]],[[1987]],[[1988]],[[1989]],[[1990]],[[1991]],[[1992]],[[1993]],[[1994]],[[1995]],[[1996]],[[1997]],[[1998]],[[1999]],[[2000]],[[2001]],[[2002]],[[2003]],[[2004]],[[2005]],[[2006]],[[2007]],[[2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069]],[[2070]],[[2071]],[[2072]],[[2073]],[[2074]],[[2075]],[[2076]],[[2077]],[[2078]],[[2079]],[[2080]],[[2081]],[[2082]],[[2083]],[[2084,2085,2086,2087,2088,2089]],[[2090]],[[2091]],[[2092,2093,2094]],[[2095]],[[2096]],[[2097]],[[2098]],[[2099]],[[2100]],[[2101,2102,2103,2104,2105,2106,2107,2108,2109,2110]],[[2111]],[[2112,2113]],[[2114]],[[2115]],[[2116]],[[2117]],[[2118]],[[2119]],[[2120]],[[2121]],[[2122]],[[2123]],[[2124]],[[2125]],[[2126]],[[2127]],[[2128]],[[2129]],[[2130]],[[2131]],[[2132,2133]],[[2134]],[[2135]],[[2136]],[[2137]],[[2138]],[[2139]],[[2140]],[[2141]],[[2142]],[[2143]],[[2144]],[[2145]],[[2146]],[[2147]],[[2148]],[[2149]],[[2150]],[[2151]],[[2152]],[[2153]],[[2154]],[[2155]],[[2156]],[[2157]]],"id":2},{"type":"MultiPolygon","arcs":[[[2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199]],[[2200]]],"id":72},{"type":"MultiPolygon","arcs":[[[2201]],[[2202]]],"id":78}]}},"arcs":[[[168030,583185],[1783,-2]],[[169813,583183],[2137,9]],[[171950,583192],[1105,-24]],[[173055,580325],[0,2843]],[[173055,580325],[-26,-14911]],[[173027,564143],[2,1271]],[[173027,564143],[7,-11380]],[[173034,552763],[0,-1987]],[[173035,548317],[-1,2459]],[[173035,548317],[0,-10900]],[[173035,537417],[-1,-2156]],[[173379,527249],[-121,1925],[103,1310],[-372,3279],[45,1498]],[[173379,527249],[-1569,43]],[[171810,527292],[-342,20]],[[171468,527312],[-1044,34]],[[170424,527346],[-54,1]],[[170370,527347],[-2758,-17]],[[167612,527330],[-389,-1248],[-851,-271]],[[166372,525811],[-389,134],[-274,-1277],[-552,-389]],[[165157,524279],[-366,-438]],[[164791,523841],[-599,-1642],[-746,-545],[-477,786]],[[162969,522440],[-731,-1784]],[[162238,520656],[-782,-457],[-46,928],[-635,568]],[[160775,521695],[-228,512]],[[160547,522207],[-794,-346],[-319,-1061]],[[159434,520800],[-911,-1888]],[[158523,518912],[-1067,1089],[-329,767],[-34,1504]],[[157029,524550],[64,-2278]],[[157029,524550],[-330,4340],[-600,1895],[-259,-236]],[[155840,530549],[-3,55]],[[155837,530604],[-182,-462],[-495,2189],[-757,413]],[[154403,532744],[-414,-941],[-400,1402],[-173,-854],[164,5827],[40,-3886],[155,66],[162,3197],[-179,1201],[336,1944],[-445,-236],[-277,1653]],[[153372,542117],[-109,2053],[252,-203],[623,1196],[-914,1191],[-230,4847],[-241,1362],[-95,3331]],[[152658,555894],[-216,4014],[-498,2438]],[[151944,562346],[-337,5363],[261,4074],[686,-1863],[395,-423],[749,-1863],[763,57],[868,-996],[776,702],[530,-1618]],[[156635,565779],[272,1293],[567,-4577],[-189,-394],[-250,-3034],[-106,2479],[-246,-3231],[-218,-1081]],[[156465,557234],[-97,-1599]],[[156368,555635],[296,1874],[455,872],[193,2437],[440,2119],[103,-3144],[-199,149],[-132,-3408],[312,-1093],[-157,-1982]],[[157679,553459],[-93,-2778],[-243,609],[127,2171]],[[157470,553461],[-20,-1]],[[157450,553460],[-258,-1217],[-95,-3180],[-196,1414],[82,2158]],[[156983,552635],[-348,-1456],[-55,-1447],[-358,-1953]],[[156222,547779],[372,1367],[-166,-1817],[271,11],[248,1910],[329,-1488]],[[157276,547762],[314,1630],[141,2452],[323,72]],[[158054,551916],[259,527],[-269,4234],[225,530],[-270,1061],[118,2164]],[[158117,560432],[249,3191],[302,1598],[-409,1180],[-142,2439]],[[158117,568840],[-233,-1009],[277,-1641],[-369,861],[-55,2155],[353,23]],[[158090,569229],[58,869]],[[158148,570098],[-745,2121]],[[157403,572219],[-141,1501],[247,575],[362,-1247],[-15,3533]],[[157856,576581],[-6,1800],[-436,605],[-476,3063],[168,1173],[2781,-89],[2529,56]],[[162416,583189],[2209,-16],[3405,12]],[[156776,574866],[145,-2337],[-336,700],[191,1637]],[[156017,576188],[369,-1160],[-55,-1922],[-274,764],[-40,2318]],[[156711,577873],[437,-1001],[-571,-1183],[-175,1059],[309,1125]],[[157569,571941],[242,-1775],[-417,-309],[-219,-1057],[350,-341],[185,-3596],[45,1501],[415,-1154],[-3,-2382],[-641,2318],[-19,2344],[-435,1258],[298,3297],[199,-104]],[[157723,558952],[153,-2102],[-264,243],[111,1859]],[[157999,553531],[-252,-1157],[151,3089],[101,-1932]],[[206421,583169],[2811,11]],[[209233,576370],[-1,6810]],[[209233,576370],[4,-4555]],[[209243,564495],[-6,7320]],[[209243,564495],[-2,-11146]],[[209241,552096],[0,1253]],[[209241,552096],[0,-12822]],[[209241,537403],[0,1871]],[[209241,537403],[-2,-4854]],[[209239,532549],[2,-6235]],[[209241,526314],[2,-1180]],[[209243,525134],[13,-12456]],[[209256,512678],[-50,-4012]],[[209206,508666],[-2733,56]],[[206473,508722],[-141,2]],[[206332,508724],[-2606,-128]],[[203726,508596],[-665,4]],[[203061,508600],[-4592,140]],[[198469,508740],[-941,-34]],[[197528,508706],[-1036,14]],[[196492,508720],[-3281,35]],[[193211,508755],[-2525,-183],[-945,169]],[[189741,508741],[-31,-6239]],[[189710,502502],[17,-3577]],[[189727,498925],[-492,1903],[19,851],[-442,2414]],[[188812,504093],[-265,-790]],[[188547,503303],[-98,-3225],[-306,273]],[[188143,500351],[-567,-771],[-129,1023],[-637,-764],[-534,835],[-279,-2222],[-237,583],[-858,91],[-97,-2023]],[[184805,497103],[-525,1387],[-10,1397],[-347,4611],[-317,913],[-262,-704],[-322,1502],[12,3599],[-287,1010],[-383,2792],[-233,2701],[-86,3614],[-272,361],[-94,1382]],[[181679,521668],[-945,-3980],[-193,-399],[-349,1947],[-259,-138]],[[180579,539634],[-28,-2628],[-263,-4539],[-67,-3326],[-131,-1223],[266,-995],[5,-2349],[-248,-34],[-188,-1419],[189,-1950],[-181,-2073]],[[180579,539634],[-732,-499]],[[179847,539135],[-221,1916]],[[179626,541051],[-762,2278],[-30,1370]],[[176969,554879],[-257,-1008],[472,-1408],[61,-942],[526,-680],[549,-2997],[262,-2458],[252,-687]],[[176969,554879],[-353,1336],[183,799],[-97,1863],[-282,1074],[-625,4218]],[[175795,568571],[0,-4402]],[[175795,568571],[2,5341]],[[175797,583199],[0,-9287]],[[175797,583199],[3677,-7]],[[179474,583192],[1843,-30]],[[181317,583162],[5221,-4]],[[186538,583158],[2571,-26]],[[189109,583132],[1471,25]],[[190580,583157],[3492,32]],[[194072,583189],[3492,-14]],[[197564,583175],[2944,8]],[[200508,583183],[2975,-11]],[[203483,583172],[2938,-3]],[[189727,498925],[6,-9134]],[[189738,480811],[-5,8980]],[[189740,477359],[-2,3452]],[[189740,477359],[2,-5504]],[[189734,462418],[8,9437]],[[189734,452894],[0,9524]],[[189734,452894],[-1285,-40]],[[188449,452854],[-1678,-35]],[[186771,452819],[-155,1]],[[186616,452820],[-2328,11]],[[184288,452831],[-2898,-84]],[[181390,452747],[-671,9]],[[180719,452756],[-2108,33]],[[178611,452789],[-3086,40],[-2428,19]],[[173097,452848],[-25,12]],[[173073,484146],[-1,-31286]],[[173193,487863],[-118,-729],[-2,-2988]],[[173432,492937],[-215,-1207],[111,-1864],[-135,-2003]],[[173432,492937],[-217,1683],[-680,1089]],[[173427,505746],[-386,-1718],[-295,-3771],[-220,-1145],[9,-3403]],[[173427,505746],[187,1739],[-43,1634],[179,1068]],[[174020,513699],[-270,-3512]],[[174020,513699],[363,4439],[257,2020],[-236,2561],[-686,1931]],[[173718,524650],[-339,2599]],[[173055,583168],[2742,31]],[[220002,583169],[1830,2]],[[221832,583171],[1466,10]],[[223298,583181],[2925,10]],[[226223,583191],[2008,0]],[[228231,583191],[207,-4516],[166,-1312],[-187,-2686]],[[228476,568168],[71,2440],[-130,4069]],[[228463,567800],[13,368]],[[228463,567800],[349,-5610],[345,-3679]],[[229285,555257],[-128,3254]],[[229285,555257],[53,-4884]],[[229314,548758],[24,1615]],[[229314,548758],[6,-2653],[212,-1370],[-110,-2549],[11,-3116]],[[229474,539069],[-41,1]],[[230050,527738],[45,1765],[-114,3994],[-380,2927],[-127,2645]],[[230050,527738],[35,-1611]],[[230085,526127],[-1851,-1]],[[228234,526126],[-2092,12]],[[226142,526138],[-81,1]],[[226061,526139],[-1995,51]],[[224066,526190],[-784,21]],[[223282,526211],[-1985,21]],[[221297,526232],[-452,10]],[[220845,526242],[-1760,43]],[[219085,526285],[-4142,17]],[[214943,526302],[-5,-2]],[[214938,526300],[-2623,9]],[[212315,526309],[-151,2]],[[212164,526311],[-2923,3]],[[209232,583180],[3092,-11]],[[212324,583169],[2556,-7]],[[214880,583162],[1460,10]],[[216340,583172],[3662,-3]],[[233545,583163],[470,-1],[0,7179],[546,-267],[367,-1411],[396,-7637],[-21,-1976],[287,-1125],[439,-310]],[[236029,577615],[339,174],[234,-1133],[1049,-347],[153,-2131],[908,561],[5,841],[718,948],[333,-276]],[[239768,576252],[1003,-1645],[260,60],[-216,-1482],[572,-281],[382,-4206],[280,489],[20,1987],[576,81],[136,-1748],[581,-1162]],[[243362,568345],[243,-1594],[423,-163],[-23,-1208],[886,751],[607,1960]],[[245498,568091],[407,1054],[402,-2818],[1697,311],[722,-2325],[297,673],[566,-549],[-1155,-3041],[-1287,-1848],[-816,-1938],[-809,-2999]],[[245522,554611],[-1265,-6316],[-883,-3447]],[[243374,544848],[-834,-2841],[-305,-2384]],[[242235,539623],[-250,56]],[[241985,539679],[-1,-4579]],[[241984,535100],[-2,-4839]],[[241982,530261],[-158,-2624],[-996,-2261],[-371,-3070]],[[240329,520708],[128,1598]],[[240329,520708],[7,-1269],[308,-146],[354,-2358],[-275,-2708]],[[240688,512617],[35,1610]],[[240688,512617],[-96,-2433],[64,-4038]],[[240656,506146],[-96,-2136]],[[240560,504010],[201,-612]],[[241919,500171],[-648,507],[-510,2720]],[[241919,500171],[207,-1615]],[[242567,497681],[-441,875]],[[243194,493692],[-278,3080],[-349,909]],[[244028,490570],[-834,3122]],[[244402,489807],[-374,763]],[[244402,489807],[393,-2555]],[[244871,485042],[-76,2210]],[[244871,485042],[-34,-2082],[143,-2160]],[[244980,480800],[-1096,2]],[[243884,480802],[-334,1]],[[243550,480803],[-972,-1]],[[242578,480802],[-1029,-3]],[[241549,480799],[-290,-4]],[[241259,480795],[-1313,-10]],[[239946,480785],[-67,0]],[[239879,480785],[-1250,-4]],[[238629,480781],[-422,3]],[[238207,480784],[-899,-1]],[[237308,480783],[-771,10]],[[236537,480793],[-543,5]],[[235994,480798],[-1150,8]],[[234844,480806],[-164,-7]],[[234680,480799],[-1319,-4]],[[233361,480795],[-187,5]],[[233174,480800],[-1131,-9]],[[232043,480791],[-535,2]],[[231508,480793],[-1114,5]],[[230394,480798],[-1,6502]],[[230393,487300],[2,6459]],[[230395,493761],[0,-2]],[[230395,493761],[2,6457]],[[230398,501852],[-1,-1634]],[[230398,505110],[0,-3258]],[[230398,505110],[-1,3185]],[[230394,513722],[3,-5427]],[[230394,513722],[-49,1073]],[[229327,519628],[390,-3087],[628,-1746]],[[229327,519628],[-6,1157],[513,1813],[251,3529]],[[228231,583191],[2295,-8]],[[230526,583183],[3019,-20]],[[309697,499439],[-194,-3152],[-121,2655],[-613,1158],[154,-1190],[-465,-1335],[31,1761],[-402,-1705],[118,-3275],[-828,3345],[180,1912],[-237,2131],[81,1096]],[[307401,502840],[-7,-12]],[[307394,502828],[-140,-1574],[180,-625],[-64,-1886],[-523,-588],[177,-1428],[-225,-1984]],[[306799,494743],[-208,-3179],[83,-579],[-394,-2172],[-422,632],[40,936]],[[305898,490381],[-88,1149],[-333,-4456],[-153,1112],[-294,-802],[27,3032],[-191,-1420]],[[304866,488996],[-144,-864],[186,-1284],[-161,-1130]],[[304747,485718],[-31,9]],[[304716,485727],[-143,4023],[63,809]],[[304636,490559],[138,2126]],[[304774,492685],[-7,9]],[[304767,492694],[-187,-2521],[-266,-1555]],[[304314,488618],[155,528]],[[304469,489146],[96,424],[146,-4223],[-211,-753],[-72,3540]],[[304428,488134],[-42,-1968],[-144,1438],[-555,-1234],[-307,-2322],[164,-2049],[-435,-546]],[[303109,481453],[-237,-3362],[-309,-545],[-343,-4752],[-437,1187]],[[301783,473981],[56,1697],[-493,2897],[67,2978]],[[301339,486191],[74,-4638]],[[301339,486191],[-59,9209]],[[301280,495400],[-86,9640],[-121,9366]],[[301073,514406],[217,752],[480,-1279]],[[301770,513879],[26,2283],[518,-340],[-235,2392],[476,2920]],[[302555,521134],[466,1248],[-87,1100],[431,1782],[-152,2424],[219,2372],[-153,837],[286,2948],[372,1242],[93,2931]],[[304030,538018],[72,2263],[2153,14229],[505,-617],[6,-3382],[393,-1252],[815,1288],[76,747],[564,5],[41,1253],[358,12],[783,-2953],[455,-2410],[25,-20921],[-70,-4892]],[[310206,521388],[551,-1388],[510,-516],[-213,-1646],[200,-1812],[-163,-2048],[408,-2915],[145,1140],[349,-533],[352,-3817],[161,-2744],[-592,-2997],[-880,-140],[-164,-1985],[-252,636],[-149,-1354],[-202,2089],[-181,-786],[-141,-3116],[-248,1983]],[[307819,495119],[63,-2040],[-255,1148],[192,892]],[[308823,498239],[322,-1211],[-422,-2790],[-256,1683],[356,2318]],[[251184,529143],[-281,767],[-2333,3002],[1,-218]],[[248571,532694],[-534,910],[-308,3219],[-519,1035]],[[247210,537858],[1092,2058],[381,1674]],[[248683,541590],[281,994],[1035,453],[493,1189],[335,1615],[517,690]],[[251344,546531],[128,1308],[718,2354],[11,-1815],[317,-391],[169,-3174]],[[252687,544813],[-46,-3488],[634,3347],[545,-364]],[[253820,544308],[634,-392],[509,-1456],[171,-1720],[674,-4188],[597,-8]],[[256405,536544],[266,725],[573,-1785],[182,768],[315,-1250],[489,2627],[901,2228],[763,319]],[[259894,540176],[1066,-173],[680,1396]],[[261640,541399],[788,243],[-207,-1485],[-13,-3741],[568,-815],[557,744],[103,-1308],[702,1641],[226,-1324],[215,-3356],[-110,-1628],[279,286],[140,-1587],[477,-2057],[-594,-10]],[[264771,527002],[-281,51]],[[264490,527053],[-48,-2]],[[264442,527051],[-1182,1275],[-230,-2015],[-35,-1966],[-708,3124],[-1172,1763],[-254,-167],[-380,-2335],[-589,12]],[[259892,526742],[-133,-900],[-413,823],[-697,-828],[-157,-2486],[-258,-540]],[[258234,522811],[-689,-1998],[491,3712],[-698,206],[-250,-2796],[-467,641],[-361,-1503],[-267,-2116]],[[255993,518957],[-480,-4770],[-502,-3587]],[[255011,510600],[-348,1797],[263,2653],[-666,243],[263,2751],[-117,1109],[148,2102],[-182,911]],[[254372,522166],[-588,1082]],[[253784,523248],[-214,794],[49,1831]],[[253619,525873],[-836,1000],[-325,853],[-417,-133]],[[252041,527593],[-695,1110]],[[251346,528703],[-162,440]],[[266792,512570],[208,-2837],[-312,125],[-6,-2477],[298,-1300]],[[266980,506081],[138,-2704],[-131,-3752]],[[266987,499625],[-62,-3376],[-470,-1067],[-157,-2039]],[[266298,493143],[-35,-2126],[-276,-1072],[-460,40],[-182,-1553]],[[265345,488432],[-13,-4365],[594,-1607]],[[265926,482460],[509,2703],[138,-132]],[[266573,485031],[572,4601],[580,621],[347,1131],[524,-1430],[297,-2969],[77,-2649]],[[268970,484336],[189,-4720],[100,-4989]],[[269259,474627],[236,-3607],[-157,-1605],[-122,-4884],[-353,81],[-169,1030]],[[268694,465642],[-316,-1304],[-142,-3078]],[[268236,461260],[-80,-1234],[-498,-1329],[-248,-2669],[-87,-2522]],[[267323,453506],[-736,-4607],[-57,-1020]],[[265749,447719],[781,160]],[[265749,447719],[-327,-66]],[[265422,447653],[-1337,-250]],[[264085,447403],[-109,-15]],[[263976,447388],[-1133,-180]],[[262843,447208],[-53,1188]],[[262790,448396],[-1035,-6]],[[261755,448390],[-266,4]],[[261489,448394],[-1024,-14]],[[260465,448380],[-349,0]],[[260116,448380],[-774,26]],[[259342,448406],[-456,-2]],[[258886,448404],[-830,-14]],[[258056,448390],[-838,12]],[[257218,448402],[580,2540],[358,3964],[346,2486]],[[258502,457392],[252,3279]],[[258754,460671],[182,6483]],[[258936,467154],[-50,4105],[-128,2427]],[[258758,473686],[-525,6589]],[[258233,480275],[-220,3394],[303,3068]],[[258316,486737],[-227,4106],[347,2582]],[[258436,493425],[364,3555],[63,2768]],[[258863,499748],[-12,3454],[458,1388]],[[259309,504590],[9,2169],[372,1309],[375,-215],[514,4334],[145,-2358],[-222,-3319],[14,-1981]],[[260516,504529],[127,-152],[342,4122],[-150,-4480],[236,2087]],[[261071,506106],[219,4693],[-69,1784]],[[261221,512583],[62,1279],[458,1590],[294,75]],[[262035,515527],[484,1048],[-316,239],[-233,2466],[498,2961],[580,1139]],[[263048,523380],[752,-2509],[718,-497]],[[264518,520374],[261,-2226],[563,-388],[377,-1460],[555,-1119],[218,172],[319,-1624],[-19,-1159]],[[252516,551273],[245,1548],[576,1487],[1023,471]],[[254360,554779],[387,-1343],[-682,-275],[51,-770],[-806,-2719]],[[253310,549672],[-511,-4125],[-63,2159],[-507,612],[-28,1852],[315,1103]],[[252129,567028],[638,1076],[-743,-3451],[-872,-1785],[142,-551],[-582,-1037],[-166,1628],[1583,4120]],[[266291,525882],[-781,768]],[[265510,526650],[490,1336],[-121,1234],[374,-217],[304,-1926],[-266,-1195]],[[264534,537282],[192,-120],[-169,-2149],[-263,1388],[240,881]],[[263518,523913],[579,-848],[-387,-678],[-192,1526]],[[260809,522685],[124,-2642],[-358,-488],[234,3130]],[[259619,509895],[-266,698],[189,945],[77,-1643]],[[266582,447887],[26,6]],[[266582,447887],[26,6]],[[266536,447880],[30,6]],[[266536,447880],[30,6]],[[255011,510600],[-35,-2168],[-370,-346]],[[254606,508086],[-385,-2584],[-242,-2788]],[[253979,502714],[-8,-2]],[[253971,502712],[-10,-1]],[[253961,502711],[-152,-2103],[333,-531],[464,2017]],[[254606,502094],[73,608]],[[254679,502702],[345,2967],[570,1287],[473,4864],[330,490],[143,1897],[235,8],[-572,-6085],[-44,-1741],[-319,-1642],[-155,-2071]],[[255685,502676],[-302,-3068],[-168,-3412]],[[255215,496196],[9,-3137],[-283,-948],[-252,-4019]],[[254689,488092],[84,-3796],[-251,-2704]],[[254522,481592],[-329,-5331],[50,-1204]],[[254243,475057],[184,-6512]],[[254427,468545],[185,-1078],[-127,-2165]],[[254485,465302],[3,-3266]],[[254488,462036],[-1092,46]],[[253396,462082],[-300,-9]],[[253096,462073],[-1122,-20]],[[251974,462053],[-193,-28]],[[251781,462025],[-456,56]],[[251325,462081],[-1187,97]],[[250138,462178],[-98,3]],[[250040,462181],[-1216,98]],[[248824,462279],[-246,1]],[[248578,462280],[-1394,25]],[[247184,462305],[-597,23]],[[246587,462328],[-172,2279],[-542,826]],[[245873,465433],[-469,1435],[-255,4394]],[[245149,471262],[-56,1713]],[[245014,479356],[3,-1361],[406,-1716],[-330,-3304]],[[245014,479356],[-34,1444]],[[242235,539623],[262,1549],[296,-1142],[509,151],[748,1221]],[[244050,541402],[832,1558],[406,334],[672,1956],[310,-1206],[-364,-2639],[91,-1053],[-209,-2122]],[[245788,538230],[630,1480],[422,-1521]],[[246840,538189],[370,-331]],[[246668,543604],[119,-491],[-601,-1771],[482,2262]],[[173072,452860],[-3259,-51]],[[169813,452809],[-3140,-58]],[[166673,452751],[-101,8]],[[166572,452759],[-1780,9]],[[164792,452768],[-2453,-18]],[[162339,452750],[-1582,69]],[[160757,452819],[-2347,191]],[[158410,453010],[-2620,-73]],[[155790,452937],[-801,-56]],[[154989,452881],[-846,-101]],[[154143,452780],[-1087,57]],[[153056,452837],[-394,1953],[-208,4302],[105,4473],[-70,1598],[-265,1357],[-113,2029],[199,2095]],[[152310,470644],[269,5888],[458,6312]],[[153037,482844],[167,4714]],[[153204,487558],[120,7683]],[[153324,495241],[89,2631],[44,7615],[170,1570],[17,2495]],[[153644,509552],[190,6726],[-97,7015]],[[153737,523293],[-68,3038],[184,1181],[-261,4092],[308,-881],[393,424],[492,-351],[260,901],[373,-1735]],[[155418,529962],[422,587]],[[230394,480798],[-407,0]],[[230109,476319],[87,2489],[-209,1990]],[[230109,476319],[223,-746],[59,-2539]],[[230156,469784],[78,2629],[157,621]],[[230156,469784],[-257,-2657],[18,-1097],[319,-1425],[30,-1300]],[[230266,463305],[144,-1321]],[[230410,461984],[-513,643]],[[229897,462627],[-186,2345],[-301,1002]],[[229410,465974],[-586,1070]],[[228824,467044],[-401,709]],[[228423,467753],[-412,1263],[-492,-321]],[[227519,468695],[-420,22]],[[227099,468717],[-647,152],[-239,-1688],[-226,-92],[-331,1396]],[[225656,468485],[-436,812]],[[225220,469297],[-525,2161]],[[224695,471458],[-2109,-11]],[[222586,471447],[-777,-2]],[[221809,471445],[-1850,12]],[[219959,471457],[-2869,-14]],[[217090,471443],[-2381,27]],[[214709,471470],[-1977,12]],[[212732,471482],[-581,13]],[[212151,471495],[-1401,0]],[[210750,471495],[-1532,70]],[[209214,480377],[4,-8812]],[[209214,480377],[1,473]],[[209213,487371],[2,-6521]],[[209213,487371],[2,5353]],[[209215,492724],[0,733]],[[209211,500728],[4,-7271]],[[209211,500728],[-5,7938]],[[301783,473981],[-163,-963]],[[301620,473018],[189,655],[301,-1389],[-295,-3187]],[[301815,469097],[-594,-238],[-94,-984],[-503,-1185]],[[300624,466690],[-29,-122]],[[300595,466568],[-107,-727],[-1684,269]],[[298804,466110],[-84,15]],[[298720,466125],[-986,173]],[[297734,466298],[-489,101]],[[297264,474485],[21,-2797],[-310,-2918],[270,-2371]],[[297264,474485],[51,1341]],[[297604,482655],[-139,-532],[-150,-6297]],[[297604,482655],[73,1781],[273,1403]],[[297950,485839],[461,7162]],[[298975,496577],[-544,-513],[-20,-3063]],[[299180,497653],[-205,-1076]],[[299180,497653],[520,1849],[112,1481],[-264,3053],[383,3038],[-19,1892]],[[299912,508966],[388,4730],[214,623],[386,-1122],[173,1209]],[[298808,508864],[1104,102]],[[297245,466399],[-1314,229]],[[295931,466628],[-259,35]],[[295672,466663],[-674,89]],[[294998,466752],[-25,3681]],[[295027,477342],[-54,-6909]],[[295027,477342],[17,4427],[-151,1361],[-345,332],[179,2038]],[[294727,485500],[-47,1035]],[[294864,495017],[-214,-1346],[-132,-2762],[162,-4374]],[[294864,495017],[48,3057],[-119,2205]],[[294728,500594],[65,-315]],[[294728,500594],[-75,974],[149,3512],[-119,603],[97,3232]],[[294780,508915],[422,51]],[[295202,508966],[1777,-101]],[[296979,508865],[1829,-1]],[[294998,466752],[-244,-4393]],[[294352,453789],[-31,693],[433,7877]],[[294378,453788],[-26,1]],[[294378,453788],[-86,-7125]],[[294292,446663],[-33,-2600]],[[294218,441069],[41,2994]],[[293903,434099],[-195,2024],[683,2086],[-173,2860]],[[293903,434099],[-3,-310]],[[293900,433789],[-376,-1707]],[[293524,432082],[-12,-1259],[-325,-351]],[[293187,430472],[-271,-1807],[244,3331]],[[293160,431996],[39,674]],[[293199,432670],[123,2992],[-28,2071],[-288,2510]],[[293006,440243],[-18,-18]],[[292988,440225],[220,-3323],[11,-2681]],[[293219,434221],[-863,2533]],[[292356,436754],[-51,173]],[[292305,436927],[-373,1055]],[[291932,437982],[-934,2866]],[[290998,440848],[-150,1310]],[[290848,442158],[-634,1016],[-245,2281]],[[289969,445455],[47,2798],[-244,1860]],[[289772,450113],[-329,184],[-290,2565]],[[289153,452862],[-334,-22]],[[288819,452840],[-1736,22]],[[287083,452862],[-115,0]],[[286968,452862],[-1145,0]],[[285823,452862],[-1027,0]],[[284796,452862],[-109,0]],[[284687,452862],[-1795,-1]],[[282892,452861],[-390,-47]],[[282502,452814],[-1272,48]],[[281230,452862],[-281,0]],[[280949,452862],[-1704,-49]],[[279245,452813],[-396,49]],[[278849,452862],[-1529,-46]],[[277320,452816],[-423,27],[0,5035]],[[276897,457878],[602,1757],[633,2570],[508,1259]],[[278640,463464],[245,2248],[543,1800],[-163,3147],[81,1263]],[[279346,471922],[-518,1157],[12,3307],[719,1122],[949,879]],[[280508,478387],[1310,-112]],[[281818,478275],[657,-444],[527,-1886],[546,682]],[[283548,476627],[635,252],[429,-526],[753,1479]],[[285365,477832],[294,1431]],[[285659,479263],[575,1959],[489,118],[146,2788]],[[286869,484128],[-30,11]],[[286839,484139],[-17,6]],[[286822,484145],[-93,2653],[-183,296],[473,1067],[-221,1528],[192,1727],[-400,-1117]],[[286590,490299],[-326,1891],[242,1614],[1261,3804]],[[287767,497608],[260,2084],[1343,6200],[870,2516],[687,208]],[[290927,508616],[1946,20]],[[292873,508636],[1907,279]],[[279029,472686],[285,-725],[-124,-1250],[-161,1975]],[[294554,427238],[1,-231]],[[294555,427007],[-1,231]],[[293600,427176],[63,322]],[[293663,427498],[-315,245]],[[293348,427743],[-53,-1237],[-451,497],[216,2354]],[[293060,429357],[139,1000],[457,-202]],[[293656,430155],[90,1668],[410,856],[287,-1047]],[[294443,431632],[-93,1193],[769,-305],[174,1129],[1072,-46],[376,297],[903,2986],[-441,-2840],[-371,-1388],[292,-372],[379,1927],[532,898],[205,-1022],[552,1761],[82,-626],[-1554,-3633],[-192,472],[-405,-1606],[-231,346],[-428,-1335],[-389,98],[-351,-945],[-238,353],[-532,-1101]],[[294554,427873],[-875,-1167]],[[293679,426706],[-79,470]],[[293414,427306],[-2,-252]],[[293412,427054],[2,252]],[[292731,427718],[-75,-1793],[-401,-1051],[179,2726],[297,118]],[[209218,471565],[2,-7313]],[[209220,452897],[0,11355]],[[209220,452897],[0,-5655]],[[209220,447242],[0,-2490]],[[209222,441569],[-2,3183]],[[209222,441569],[-4,-7295]],[[209218,434274],[-2479,-59]],[[206739,434215],[-930,1]],[[205809,434216],[-2546,-6]],[[203263,434210],[-360,21]],[[202903,434231],[-1501,67]],[[201402,434298],[-1280,5]],[[200122,434303],[-1672,-17]],[[198450,434286],[-3153,-25]],[[195297,434261],[-2649,-56]],[[192648,434205],[-132,0]],[[192516,434205],[-2782,5],[1,4725]],[[189737,445042],[-2,-6107]],[[189737,445042],[-3,7852]],[[246587,462328],[-37,-555],[502,-1806]],[[247487,456473],[-210,622],[-225,2872]],[[247487,456473],[432,-1435],[25,-1576]],[[247949,451542],[-5,1920]],[[247949,451542],[-252,-2717]],[[247697,448825],[-205,-1009]],[[246182,442680],[363,172],[871,2340],[76,2624]],[[245386,440459],[89,1581],[707,640]],[[245386,440455],[0,4]],[[245386,440455],[-115,-1740],[343,-1568],[114,-1545]],[[245728,435563],[0,39]],[[245728,435563],[-37,-2695],[-356,-1885],[-62,-2388]],[[245070,427505],[203,1090]],[[245070,427505],[-470,-581],[-146,-1017],[115,-2813],[-151,-420]],[[244418,422674],[-829,4099]],[[243589,426773],[-630,137]],[[242959,426910],[-660,-98]],[[242299,426812],[-476,-61]],[[241823,426751],[-800,-120]],[[241023,426631],[-213,-27]],[[240810,426604],[-1067,-101]],[[239743,426503],[-772,-67]],[[238971,426436],[-508,-2]],[[238463,426434],[-606,-50]],[[237857,426384],[-672,-69]],[[237185,426315],[-604,-36]],[[236581,426279],[-666,-20]],[[235915,426259],[-448,10]],[[235467,426269],[-788,69]],[[234679,426338],[-801,62]],[[233878,426400],[-478,39]],[[233400,426439],[-1091,87]],[[232309,426526],[-329,3028],[138,668]],[[232176,432418],[-58,-2196]],[[232176,432418],[-184,2823]],[[231988,437224],[4,-1983]],[[231988,437224],[-119,577]],[[231869,437801],[88,2412],[-128,1310]],[[231666,443686],[163,-2163]],[[231666,443686],[-257,439],[-95,2838]],[[231269,450376],[205,-1282],[-160,-2131]],[[231269,450376],[19,2011],[-392,1358]],[[230662,456867],[249,-1941],[-15,-1181]],[[230662,456867],[1,1146]],[[230663,458013],[-154,1202],[39,2677],[-138,92]],[[232309,426526],[155,-1144]],[[232896,420561],[-164,920],[-268,3901]],[[232896,420561],[7,-54]],[[232903,420507],[433,-2548],[-67,-1277],[314,-1050]],[[233583,415632],[-88,0]],[[233495,415632],[-1249,8]],[[232246,415640],[-620,4]],[[231626,415644],[-637,4]],[[230989,415648],[-625,3]],[[230364,415651],[-953,8]],[[229411,415659],[-308,1]],[[229103,415660],[-1262,8]],[[227841,415668],[-1261,2]],[[226580,415670],[-306,0]],[[226274,415670],[-954,11]],[[225320,415681],[-642,-7]],[[224678,415674],[-618,2]],[[224060,415676],[-950,-1]],[[223110,415675],[-312,-4]],[[222798,415671],[-1243,-6]],[[221555,415665],[-8,0]],[[221547,415665],[-1531,-4]],[[220016,415661],[-44,2]],[[219972,415663],[-1520,8]],[[218452,415671],[-55,3]],[[218397,415674],[-1579,8]],[[216818,415682],[-239,-3]],[[216579,415679],[-1784,9]],[[214796,422132],[-1,-6444]],[[214796,422132],[0,1691]],[[214796,428618],[0,-4795]],[[214796,428618],[0,968]],[[214796,429586],[-3,4706]],[[214793,434292],[-1584,2]],[[213209,434294],[-90,-2]],[[213119,434292],[-2032,-1]],[[211087,434291],[-534,-10]],[[210553,434281],[-1335,-7]],[[301168,460179],[-67,-42]],[[301101,460137],[28,-397]],[[301129,459740],[-2,-4]],[[301127,459736],[69,-1616]],[[301196,458120],[304,-647]],[[301500,457473],[293,318]],[[301793,457791],[116,-446]],[[301909,457345],[403,-2845],[-196,-1500],[475,-1515],[5,-2152]],[[302596,449333],[321,-1188],[408,-370],[764,1511],[-341,4569],[401,-2137],[107,-3240],[-210,-1768],[-1057,-860]],[[302989,445850],[-269,-1329],[-502,-405],[144,4029]],[[302362,448145],[-280,-205],[-97,-1526],[-241,-453]],[[301744,445961],[-236,-1675],[-533,-779]],[[300975,443507],[-36,3034],[-176,276]],[[300763,446817],[-87,708]],[[300676,447525],[-253,1172]],[[300423,448697],[-177,3888]],[[300246,452585],[-325,600]],[[299921,453185],[-840,-170]],[[299081,453015],[-844,386]],[[298237,453401],[-93,26]],[[298144,453427],[-1041,74]],[[297103,453501],[-1391,88]],[[295712,453589],[-125,17]],[[295587,453606],[-1209,182]],[[301815,469097],[129,-3012],[504,-1290],[-172,-916],[-656,-1010],[-20,-1436],[-247,-531]],[[301353,460902],[-185,-723]],[[302428,442673],[372,-1939],[-773,-265],[113,1842],[288,362]],[[304069,440803],[121,-1847],[-424,-198],[303,2045]],[[254488,462036],[-82,-3532],[208,-2802]],[[254614,455702],[218,-1447],[203,-4307],[236,-2529]],[[255271,447419],[-5,-4485]],[[255266,442934],[-3,-3134]],[[255263,437340],[0,2460]],[[255263,437340],[2,-2899]],[[255265,429351],[0,5090]],[[255265,429351],[-2,-4574]],[[255263,424514],[0,263]],[[255263,424514],[-13,-6127]],[[255250,418387],[-5,-4935]],[[255248,408321],[-3,5131]],[[255248,408321],[1,-2424]],[[255047,401845],[202,1648],[0,2404]],[[255047,401845],[-69,-1899]],[[255274,395199],[-296,4747]],[[255274,395199],[-23,-931]],[[254915,388975],[434,3215],[-98,2078]],[[254659,386113],[-35,904],[308,955],[-17,1003]],[[254659,386113],[-464,-2725],[-218,-212]],[[253987,382687],[-10,489]],[[253987,382687],[206,-1257],[-505,-5062]],[[253866,374660],[-178,1708]],[[253866,374660],[-365,-2527],[72,-1661]],[[253774,369187],[-201,1285]],[[253774,369187],[-63,-597],[-543,-371],[-221,-906]],[[252947,367313],[-159,351]],[[252788,367664],[-169,-666],[-98,-2357],[240,-2056],[-183,-1538]],[[252367,361276],[211,-229]],[[252367,361276],[-1008,2721]],[[251359,363997],[-14,-27]],[[251345,363970],[-427,-1200],[-227,-1780]],[[250691,360990],[93,-1565]],[[250784,359425],[-347,1557],[-155,-1006]],[[250282,359976],[-177,540],[-308,3945]],[[249809,366030],[-12,-1569]],[[249705,370322],[275,-3107],[-171,-1185]],[[249705,370432],[0,-110]],[[249705,370432],[27,2111],[-434,1361],[-18,829]],[[249280,374733],[-473,1904],[-262,-566]],[[248545,376071],[-165,1642],[-585,2327]],[[247795,380040],[-127,736]],[[247668,380776],[-303,1893],[53,2933]],[[247630,388130],[-212,-2528]],[[247655,388299],[-25,-169]],[[247867,390697],[-212,-2398]],[[247867,390697],[42,2084]],[[247909,392781],[135,617]],[[248044,393398],[7,862],[-447,1330]],[[247604,395590],[-491,817]],[[247113,396407],[-269,-1766],[-327,1148]],[[246517,395789],[-157,5398]],[[245762,404456],[468,-1904],[130,-1365]],[[245762,404456],[-253,772],[-419,2922]],[[245090,408150],[-354,1597]],[[244567,411139],[169,-1392]],[[244567,411139],[-193,1581],[-1,1892]],[[244178,419364],[30,-3036],[165,-1716]],[[244178,419364],[23,898]],[[244201,420262],[217,2412]],[[290998,440848],[-384,-1437],[-427,-3445]],[[290256,436007],[-69,-41]],[[290256,436007],[-428,-2349]],[[289615,426960],[68,3155],[341,1723],[-196,1820]],[[289635,426649],[-20,311]],[[290323,421993],[-332,1496],[-16,2220],[-340,940]],[[290323,421993],[609,-3619]],[[290932,418374],[-696,-1839]],[[289999,415506],[237,1029]],[[289999,415506],[-235,-1942],[-206,-350]],[[289558,413214],[-576,-1173]],[[288982,412041],[-434,587]],[[288548,412628],[-38,-23]],[[288510,412605],[-2,-1]],[[288508,412604],[-541,-2144]],[[287967,410460],[-967,-20]],[[287000,410440],[-272,4]],[[286728,410444],[-19,0]],[[286709,410444],[-918,-3]],[[285791,410441],[-606,-7]],[[285185,410434],[-592,-13]],[[284593,410421],[-604,-5]],[[283989,410416],[-677,3]],[[283312,410419],[-28,0]],[[283284,410419],[-1756,39]],[[281528,410458],[-678,3]],[[280850,410461],[-105,6]],[[280745,410467],[-1192,5]],[[279553,410472],[-342,-1]],[[279211,410471],[-1285,-23]],[[277926,410448],[-234,-9]],[[277692,410439],[-800,-6]],[[276892,410433],[-426,0]],[[276466,410433],[-1406,8]],[[275060,410441],[-274,6]],[[274787,414933],[-1,-4486]],[[274787,414933],[1,1005]],[[274788,415938],[-1,2668]],[[274787,418606],[3,4451]],[[274787,424519],[3,-1462]],[[274787,424519],[0,3001]],[[274788,431483],[-1,-3963]],[[274788,431483],[-2,895]],[[274786,436567],[0,-4189]],[[274786,436567],[1,162]],[[274786,443352],[1,-6623]],[[274786,443352],[0,194]],[[274786,450060],[0,-6514]],[[274786,450060],[0,2383]],[[274786,452443],[526,1090],[1585,4345]],[[299081,453015],[27,-5279]],[[299108,447736],[6,-1575]],[[299109,445360],[5,801]],[[299109,445360],[-23,-3357],[-140,-1619]],[[298946,440384],[-436,-420],[-482,288],[-416,-839],[-291,2723]],[[297321,442136],[207,-2885],[-531,-113]],[[296997,439138],[9,-64]],[[297006,439074],[21,-79]],[[297027,438995],[-1112,59],[-473,-1600],[-8,1106]],[[295434,438560],[-200,-1187],[-705,-2090],[-626,-1184]],[[300676,447525],[-94,-1308],[-254,2050]],[[300328,448267],[-110,207]],[[300218,448474],[-108,-2110]],[[300110,446364],[27,-3367],[-179,-1832],[-1042,-1243],[30,462]],[[300704,446133],[-85,-2792],[-210,504],[295,2288]],[[300975,443507],[-208,-748],[-4,4058]],[[164792,452768],[-2,-15096]],[[164787,410464],[3,27208]],[[164780,405355],[7,5109]],[[164769,402898],[11,2457]],[[164778,400098],[-9,2800]],[[164778,400098],[2,-986]],[[164780,399112],[3,-842]],[[165056,395773],[-269,1240],[-4,1257]],[[165957,391614],[-901,4159]],[[166657,388375],[-700,3239]],[[167138,386119],[-481,2256]],[[169169,376466],[-2031,9653]],[[169169,376466],[1658,-8029]],[[172686,359242],[-1859,9195]],[[176229,341180],[-3543,18062]],[[176229,341180],[677,-3534]],[[179740,322568],[-2834,15078]],[[179740,322568],[3,-2451],[444,-2895],[104,-2181],[266,-2705],[564,-2760]],[[181121,309576],[-326,-2417],[-494,-1592]],[[179762,293446],[283,2148],[77,2692],[-106,4262],[275,1900],[10,1119]],[[180071,285808],[-439,260],[-94,887],[82,3389],[-151,600],[21,1938],[272,564]],[[179502,280076],[536,716],[179,2808],[-146,2208]],[[179502,280076],[-3864,-1869]],[[175638,278207],[-2839,-1563],[17,2580],[-321,834],[-130,1949],[82,972],[-206,4489],[-531,4208],[-222,845]],[[171488,292521],[-527,2874],[-608,2125],[-308,1675]],[[170045,299195],[-299,468],[-189,-1226],[-341,667],[55,1824],[-185,2348],[-237,1372],[-532,-107],[-201,-603],[-390,829]],[[167726,304767],[-743,1874],[-183,2255],[-553,1999]],[[166247,310895],[-249,759],[-867,-158],[-358,994],[-804,202],[-490,-415],[-116,1396],[-373,1054],[124,2397],[-24,2470],[-171,1150],[59,1337]],[[162978,322081],[-4,3223],[-296,221],[-393,1772],[197,1535],[-165,1791],[-326,508],[-445,3199],[-341,589],[-167,2431]],[[161038,337350],[-326,1746],[-77,1736],[-231,787],[-396,3160],[-504,2054],[-221,5106],[442,1738],[41,3417]],[[159766,357094],[-380,2272],[-465,-406],[-519,2827]],[[158402,361787],[-315,1659],[12,3042],[-319,2975],[37,3501]],[[157817,372964],[-33,1342],[287,553],[49,-1893]],[[158120,372966],[96,-2155],[271,-373],[409,-1981]],[[158896,368457],[359,-59]],[[159255,368398],[-342,754],[-149,3107],[-463,2405],[48,1825]],[[158349,376489],[-209,1239],[349,1655],[315,-572],[373,669],[783,-708],[357,1506],[63,-1114]],[[160380,379164],[28,1257]],[[160408,380421],[-311,-432],[76,1800]],[[160173,381789],[-408,-2224],[-354,-188],[-351,1519],[-215,-1697],[-284,501],[-159,1609]],[[158402,381309],[-24,5]],[[158378,381314],[145,-1463],[-436,1442]],[[158087,381293],[-4,44]],[[158083,381337],[-236,-852],[-152,859]],[[157695,381344],[162,-971],[-42,-3300],[180,-855],[-251,-1183],[-370,1729],[-114,-334],[-478,2413],[-375,-283],[165,2871],[317,-1456],[-463,3938]],[[156426,383913],[-354,2862],[-569,2151],[-557,3777]],[[154946,392703],[-541,2802],[109,2093],[-387,5926],[151,3427],[-35,2229],[-193,3368],[-469,3107]],[[153581,415655],[-243,1899],[-703,2916],[-128,3411],[386,4769],[132,-280],[309,6364],[-133,874],[262,7291]],[[153463,442899],[-268,5083],[-262,812],[123,4043]],[[164640,304627],[231,-1774],[-418,-879],[-323,2121],[510,532]],[[165055,305327],[975,-1439],[-461,-705],[-359,133],[-155,2011]],[[166087,290611],[275,-965],[-300,-17],[25,982]],[[168718,285870],[613,-3553],[-361,242],[-252,3311]],[[168676,294217],[663,-1336],[118,-1996],[-366,420],[-148,2046],[-267,866]],[[195302,427799],[-5,6462]],[[195295,419777],[7,8022]],[[195295,419777],[-1,-10466]],[[195294,409311],[0,-3031]],[[195295,403841],[-1,2439]],[[195295,403841],[-25,-16135]],[[195319,381246],[-49,6460]],[[195319,381246],[2,-5060]],[[195321,376186],[-5,-7382]],[[195316,368804],[-5,-9040]],[[195311,359764],[-2663,-21]],[[192648,359743],[-2089,98]],[[190559,359841],[-1844,-33]],[[188715,359808],[-3143,-14]],[[185572,359794],[-999,-6]],[[184573,359788],[-3208,1]],[[181360,371041],[5,-11252]],[[181367,381164],[-7,-10123]],[[181367,389063],[0,-7899]],[[181367,389063],[0,1944]],[[181373,407118],[-6,-16111]],[[181375,413882],[-2,-6764]],[[181375,413882],[0,3927]],[[181389,434247],[-14,-16438]],[[181389,434247],[1,18500]],[[181365,359789],[1,-2928]],[[181366,356861],[18,-12097],[-305,-3168],[-223,-193],[-382,2417],[-725,-8],[-349,-1053],[144,-4363],[76,-6299],[227,-3470],[73,-3058],[-217,-1125],[37,-1876]],[[274787,427520],[-415,-1045]],[[274481,422993],[90,1246],[-199,2236]],[[274481,422993],[82,-1389],[-230,-2518]],[[274333,419086],[-58,-528]],[[274188,416255],[87,2303]],[[274188,416255],[-53,-2244],[-194,-1196]],[[273912,410429],[29,2386]],[[273912,410429],[-309,-2118]],[[273603,408311],[-264,-1244]],[[273339,407067],[-230,-1523]],[[273109,405544],[-695,-2159]],[[272414,403385],[-195,1248],[-314,-1223],[-55,-1445],[-293,114],[-131,-1044]],[[271426,401035],[-87,-662]],[[271363,398820],[-24,1553]],[[271363,398820],[-98,-3219],[-349,-848]],[[270916,394753],[20,1087],[-281,1701],[-269,-1233]],[[270386,396308],[-126,-2313],[-210,-922],[124,-3420],[-112,-240]],[[270062,389413],[-201,-167]],[[269861,389246],[-95,-2475],[-512,-708]],[[269254,386063],[-253,186]],[[269001,386249],[-194,1564]],[[268807,387813],[-419,1211]],[[268388,389024],[-201,3414],[-398,-532]],[[267789,391906],[-350,-1992],[-309,-3]],[[267130,389911],[-689,1521],[-363,-1183]],[[266078,390249],[-168,17]],[[265910,390266],[-554,2429]],[[265356,392695],[-414,62]],[[264942,392757],[-495,1044]],[[264447,393801],[-4,882]],[[264443,394683],[-244,2734]],[[264199,397417],[-520,1367]],[[263679,398784],[-327,-385]],[[263352,398399],[-336,1360],[-212,-781]],[[262804,398978],[2,3719]],[[262806,402697],[11,4035]],[[262819,407581],[-2,-849]],[[262819,407581],[1,2960]],[[262825,414085],[-5,-3544]],[[262825,414085],[5,1641]],[[262830,415726],[20,5678]],[[262849,422199],[1,-795]],[[262849,422199],[4,4084]],[[262854,429187],[-1,-2904]],[[262854,429187],[-2,3620]],[[262851,434050],[1,-1243]],[[262850,438950],[1,-4900]],[[262850,438950],[0,349]],[[262849,442180],[1,-2881]],[[262849,442180],[-2,1937]],[[262843,447208],[4,-3091]],[[266530,447879],[6,1]],[[266566,447886],[16,1]],[[266608,447893],[806,-2042]],[[267414,445851],[546,-1926],[381,1256],[294,-1579],[-868,-836]],[[267767,442766],[-50,-4]],[[267717,442762],[-15,-1]],[[267702,442761],[447,-499]],[[268149,442262],[561,621],[551,-1528],[431,841]],[[269692,442196],[936,1652],[121,-200]],[[270749,443648],[623,-330],[714,2684]],[[272086,446002],[570,2451],[784,1682]],[[273440,450135],[1346,2308]],[[262804,398978],[-161,-1387]],[[262663,395170],[-20,2421]],[[262873,394359],[-210,811]],[[262873,394359],[-58,-1366],[-578,-417]],[[262237,392576],[-496,-1309]],[[261741,391267],[-366,838]],[[261375,392105],[-331,-490],[65,-2302]],[[261096,388152],[13,1161]],[[261096,388152],[-572,-2670]],[[260524,385482],[-286,-2089],[-141,377]],[[260097,383770],[-303,-2052]],[[259794,381718],[-135,-3194]],[[259659,378524],[-139,-131]],[[259520,378393],[-502,215],[-245,852],[-175,2318]],[[258598,381778],[-366,-1124]],[[258232,380654],[-83,-1403]],[[258149,379251],[-55,-2224],[-404,-1554]],[[257690,375473],[31,1003],[-293,275],[-178,1615]],[[257250,378366],[-461,-1267]],[[256789,377099],[-280,-2533],[-526,1578]],[[255983,376144],[-94,369]],[[255889,376513],[-415,787]],[[255474,377300],[-169,-642],[-244,1256],[-44,-2643],[-240,1223]],[[254777,376494],[-629,72]],[[254148,376566],[55,-1760],[-337,-146]],[[255271,447419],[248,-1016],[591,-542]],[[256110,445861],[808,1607]],[[256918,447468],[300,934]],[[293219,434221],[-249,-3680]],[[292970,430541],[-211,-2553],[-210,-377],[73,1697]],[[292622,429308],[-118,-888]],[[292504,428420],[-134,-1704]],[[292370,426716],[-184,-1987],[143,-699]],[[292329,424030],[617,-741],[71,-1974],[-164,-3757],[-172,375]],[[292681,417933],[179,-418],[-159,-5398],[-46,2228],[-255,-3465],[103,-763],[-505,-2575],[-203,-84]],[[291795,407458],[-8,-68]],[[291787,407390],[22,-3591],[-686,-1401]],[[291123,402398],[69,-688],[-433,-4686],[-217,-1125],[-299,-2],[197,2821],[-39,1600]],[[290401,400318],[-713,1073],[-543,2047]],[[289145,403438],[-116,685]],[[289029,404123],[-16,44]],[[289013,404167],[-11,64]],[[289002,404231],[-350,2028]],[[288664,406266],[-12,-7]],[[288664,406266],[-51,2043]],[[288605,408740],[8,-431]],[[288605,408740],[368,2881]],[[288973,411621],[822,1858]],[[289795,413479],[217,1979]],[[290012,415458],[-13,48]],[[214795,415688],[5,-7987]],[[214800,407592],[0,109]],[[214800,407592],[8,-8099]],[[214808,399493],[2,-1603]],[[214813,391383],[-3,6507]],[[214813,391383],[1,-1533]],[[214815,383401],[-1,6449]],[[214814,383282],[1,119]],[[214814,383282],[7,-9752]],[[214821,373530],[2,-1754]],[[214823,367027],[0,4749]],[[214823,367027],[-2,-7366]],[[214821,359661],[-2674,122]],[[212147,359783],[-234,3]],[[211913,359786],[-2568,-76]],[[209345,359710],[-3196,-17]],[[206149,359693],[-183,-2]],[[205966,359691],[-1387,13]],[[204579,359704],[-803,-10]],[[203776,359694],[-1308,-29]],[[202468,359665],[-2633,116]],[[199835,359781],[-168,0]],[[199667,359781],[-2501,-9]],[[197166,359772],[-1855,-8]],[[277663,400851],[29,9588]],[[278263,403119],[-600,-2268]],[[278831,405952],[-568,-2833]],[[279975,406978],[-386,1375],[-475,-3170],[-283,769]],[[280501,406634],[-526,344]],[[280875,408877],[-278,-307],[-96,-1936]],[[281744,408550],[-440,1436],[-237,-1383],[-192,274]],[[282292,406200],[-167,1078],[132,1025],[-513,247]],[[282590,402983],[-298,3217]],[[282590,402983],[-306,-3505]],[[282284,399478],[-571,2462]],[[281713,401940],[-545,2358]],[[281168,404298],[-330,1392]],[[280838,405690],[20,-2093],[-220,-1797],[43,-1668],[-291,-1468]],[[280290,398069],[100,595]],[[280290,398069],[-483,-2836],[-192,-318],[-231,-2314]],[[279384,392601],[-347,1621],[-177,-1640]],[[278860,392582],[-466,-5289]],[[278394,387293],[-254,-1223]],[[278140,386070],[-449,839],[-166,1725],[-310,767]],[[277215,389401],[-117,-2971],[-334,-2301],[41,-775]],[[276805,383354],[-350,-1567],[-111,-2181]],[[276077,377503],[267,2103]],[[276077,377503],[-296,-1430],[-373,-3414]],[[275618,371468],[-210,1191]],[[275618,371468],[-300,-1181],[80,-1043],[-490,-1589]],[[274908,367655],[-100,1092],[-720,-2035],[-246,1043]],[[273842,367755],[-4,20]],[[273838,367775],[29,-1537],[-368,-993]],[[273499,365245],[-679,-1092]],[[272820,364153],[-382,1915]],[[272438,366068],[-555,-2441],[-498,580]],[[271385,364207],[-316,930],[-383,3657],[178,532]],[[270864,369326],[-114,472]],[[270750,369798],[-437,240],[-582,3546]],[[269731,373584],[-227,2107]],[[269504,375691],[-230,1692]],[[269274,377383],[-144,2308],[-237,1272],[85,2044]],[[269001,386249],[-23,-3242]],[[250877,358721],[-93,704]],[[250877,358721],[-61,-2945]],[[250816,355776],[-215,-1257],[64,-1203]],[[250665,353316],[-203,-1647],[-216,1258]],[[250246,352927],[-253,-2472]],[[249993,350455],[-185,-21]],[[249808,350434],[-152,5]],[[249656,350439],[-17,-3004]],[[249405,344615],[-185,1255],[449,35],[-218,1039],[188,491]],[[249405,344615],[100,-1065],[-238,-810],[-78,-1541]],[[249189,341199],[-703,-51]],[[248486,341148],[-919,-51]],[[247567,341097],[-247,-14]],[[247320,341083],[522,3829]],[[247842,344912],[352,1894],[-43,1810],[-211,1819],[-183,-2]],[[247757,350433],[-990,13]],[[246767,350446],[-581,-1]],[[246186,350445],[-952,-15]],[[245234,350430],[-783,-12]],[[244451,350418],[-118,11]],[[244333,350429],[-620,34]],[[243713,350463],[-1248,-11]],[[242465,350452],[-84,-5]],[[242381,350447],[-1056,0]],[[241325,350447],[-677,-18]],[[240648,350429],[-227,4]],[[240421,350433],[-1233,7]],[[239188,350440],[-52,-2]],[[239136,350438],[-751,14]],[[238385,350452],[-786,-3]],[[237599,350449],[-586,0]],[[237013,350449],[-1507,12]],[[235506,350461],[0,3137]],[[235504,355434],[2,-1836]],[[235504,355434],[2,4327]],[[235506,360838],[0,-1077]],[[235506,360838],[0,5243]],[[235506,366561],[0,-480]],[[235506,371949],[0,-5388]],[[235506,371949],[0,363]],[[235506,372312],[11,6775]],[[235517,379516],[0,-429]],[[235517,379516],[3,6119]],[[235520,387288],[0,-1653]],[[235520,387288],[11,4850]],[[235534,394170],[-3,-2032]],[[235534,394170],[2,3666]],[[235536,397836],[0,1290]],[[235536,399126],[16,860]],[[235552,399986],[-482,732]],[[235070,400718],[-348,1876],[57,1415],[-251,803]],[[234155,406943],[373,-2131]],[[234155,406943],[134,1679]],[[234786,412292],[-21,-1747],[-200,349],[-276,-2272]],[[234786,412292],[-326,1439]],[[234460,413731],[-255,-671],[-622,2572]],[[235506,359761],[-1085,11]],[[234421,359772],[-184,1]],[[234237,359773],[-931,-5]],[[233306,359768],[-320,0]],[[232986,359768],[-736,0]],[[232250,359768],[-495,-4]],[[231755,359764],[-101,-4]],[[231654,359760],[-1462,-3]],[[230192,359757],[-625,5]],[[229567,359762],[-1109,1]],[[228458,359763],[-876,-6]],[[227582,359757],[-948,0]],[[226634,359757],[-862,-11]],[[225772,359746],[-656,1]],[[225116,359747],[-550,11]],[[224566,359758],[-1269,13]],[[223297,359771],[-1270,0]],[[222027,359771],[-237,3]],[[221790,359774],[-1286,38]],[[220504,359812],[-242,10]],[[220262,359822],[-1515,-39]],[[218747,359783],[-871,-31]],[[217876,359752],[-337,-10]],[[217539,359742],[-1361,-48]],[[216178,359694],[-1317,-41]],[[214861,359653],[-40,8]],[[288652,406259],[12,7]],[[288613,408309],[-8,431]],[[288150,393826],[-70,5853]],[[288080,399679],[-23,1917]],[[288046,402537],[11,-941]],[[288046,402537],[-18,1506]],[[288028,404043],[-61,6417]],[[288982,412041],[-534,-3559],[147,-1016],[-73,-1880],[204,-1805]],[[288726,403781],[311,-1993],[21,-3696],[231,-1998]],[[289289,396094],[351,-2735],[270,-53],[-16,-3323],[132,-3184]],[[290026,386799],[-57,0]],[[289969,386799],[-44,0]],[[289925,386799],[-712,13]],[[289213,386812],[-982,152],[-22,1873]],[[288209,388837],[-16,1390]],[[288150,393826],[43,-3599]],[[289925,386799],[-60,-966]],[[289865,385833],[-126,-2837],[-305,-808],[-323,-3508]],[[289111,378680],[-677,-383]],[[288434,378297],[-6,31]],[[288428,378328],[-760,-1369],[113,2733]],[[287781,379692],[-1,1870],[-264,-795],[434,2591]],[[287950,383358],[-283,-697],[-32,1164],[220,2459]],[[287855,386284],[-365,-3226],[-582,1331]],[[286908,384389],[-189,473],[-264,2364],[218,1227],[-54,1255],[301,245],[335,-1095],[296,2144]],[[287551,391002],[-166,1427],[180,785]],[[287565,393214],[-230,-1317],[167,-933],[-195,-1782],[-402,1980],[-480,1174],[215,1899],[256,-1835],[-68,1744],[239,1469]],[[287067,395613],[-237,-814],[-18,1650],[166,2199],[440,2943]],[[287418,401591],[-372,-2533],[-163,577],[-139,-1618],[-138,1746],[461,4161],[775,50]],[[287842,403974],[-578,294],[198,3146],[-296,-282]],[[287166,407132],[-74,-2014],[-419,-1266],[83,1879],[-379,-1384]],[[286377,404347],[69,-1032],[-251,-2455],[-293,639]],[[285902,401499],[-150,-622]],[[285752,400877],[17,-34]],[[285769,400843],[123,37]],[[285892,400880],[302,-2195],[-274,-289],[359,-1162],[-228,-562],[21,-1315]],[[286072,395357],[-240,-2629],[72,-1052]],[[285904,391676],[33,-3345],[377,-2749],[-110,-1238],[-607,2727],[-162,3701]],[[285435,390772],[-7,-2277]],[[285428,388495],[2,-844]],[[285430,387651],[602,-3278]],[[286032,384373],[445,-3369],[-10,-1655],[-344,2010],[-710,2346],[-112,-1069],[-345,3019]],[[284956,385655],[81,-2290],[-234,435],[-329,2868],[-459,-1568],[-187,2279],[549,3866]],[[284377,391245],[169,2220]],[[284546,393465],[298,1554],[-259,1360]],[[284585,396379],[-327,-587]],[[284258,395792],[-575,2284]],[[283683,398076],[-376,336],[-185,1328],[194,1435]],[[283316,401175],[-301,1528],[-310,354]],[[282705,403057],[-115,-74]],[[286601,396689],[-270,-2437],[180,3428],[90,-991]],[[289490,378911],[-53,-33]],[[289437,378878],[53,33]],[[290026,386799],[-57,0]],[[287272,377541],[-21,-6]],[[287251,377535],[21,6]],[[287356,378030],[36,-498]],[[287392,377532],[-31,2]],[[287361,377534],[-41,379]],[[287320,377913],[36,117]],[[287320,377913],[-5,-375]],[[287315,377538],[-19,-1]],[[287296,377537],[24,376]],[[285316,364880],[0,0]],[[284323,395292],[-65,500]],[[284323,395292],[135,-1232]],[[284458,394060],[-9,-959]],[[284449,393101],[22,-1315],[-319,-1468],[-235,541]],[[283917,390859],[-162,-3064]],[[283755,387795],[-68,-3120]],[[283687,384675],[250,-96],[535,1274],[40,-2469]],[[284512,383384],[528,-1941],[635,-277],[253,-1943],[-162,-527]],[[285766,378696],[289,-8],[647,-2450],[-301,-3401]],[[286401,372837],[0,-1491]],[[286401,371346],[-510,730],[-228,2729]],[[285663,374805],[-240,292],[-546,3122],[-106,1694]],[[284771,379913],[-351,1527]],[[284420,381440],[-8,-28]],[[284412,381412],[24,-1012],[357,-713],[24,-1757],[347,-1481],[310,-2327]],[[285474,374122],[422,-2950],[651,-1010],[-346,-835],[-351,1027]],[[285850,370354],[308,-1053]],[[286158,369301],[207,217],[310,-1576],[-73,-2371],[-462,2607]],[[286140,368178],[152,-3489],[-321,-311],[-554,3770]],[[285417,368148],[-256,2601]],[[285161,370749],[-468,-116]],[[284693,370633],[402,-619],[175,-1718]],[[285270,368296],[233,-1658]],[[285503,366638],[154,-1165],[635,-2093],[-66,-1011]],[[286226,362369],[148,441]],[[286374,362810],[-59,-946]],[[286315,361864],[307,-509],[-325,-1766]],[[286297,359589],[-664,2556],[48,766]],[[285681,362911],[-94,911],[-633,480],[-19,2346]],[[284935,366648],[-7,-2001],[-380,948],[-673,137],[24,1169]],[[283899,366901],[-182,64]],[[283717,366965],[-7,-1437]],[[283710,365528],[174,-301]],[[283884,365227],[441,265],[239,-1371]],[[284564,364121],[581,-507],[352,-1233]],[[285497,362381],[59,-1872],[467,-1558],[-107,-890]],[[285916,358061],[-22,-1249],[348,1044]],[[286242,357856],[63,-1055]],[[286305,356801],[-51,-466]],[[286254,356335],[304,309]],[[286558,356644],[136,37]],[[286694,356681],[55,51]],[[286749,356732],[42,-62]],[[286791,356670],[-328,768],[3,1657],[404,-769]],[[286870,358326],[530,-178],[348,-6731]],[[287748,351417],[-69,0]],[[287679,351417],[-139,3116],[-110,-3119]],[[287430,351414],[-90,0]],[[287340,351414],[-61,1]],[[287279,351415],[-242,-1]],[[287037,351414],[-532,-2]],[[286505,351412],[-497,3]],[[286008,351415],[-140,0]],[[285868,351415],[-1042,28]],[[284826,351443],[-1,-152]],[[284825,351291],[-691,42]],[[284134,351333],[-370,-25]],[[283764,351308],[-1310,11]],[[282454,351319],[-369,-15]],[[282085,351304],[-408,-9]],[[281677,351295],[-774,-7]],[[280903,351288],[-371,-27]],[[280532,351261],[-772,-7]],[[279760,351254],[-173,-6]],[[279587,351248],[-953,1]],[[278634,351249],[-224,-2]],[[278410,351247],[-345,-5]],[[278065,351242],[-356,-10]],[[277709,351232],[-112,-1]],[[277597,351231],[-569,23]],[[277028,351254],[-871,10]],[[276157,351264],[-73,0]],[[276084,351264],[-1077,151]],[[275007,351415],[-479,135]],[[274528,351550],[-629,24]],[[273899,351574],[-178,49]],[[273721,351623],[-1258,240]],[[272463,351863],[-903,251]],[[271560,352114],[85,441]],[[271645,352555],[-501,44]],[[271144,352599],[-890,-363]],[[270254,352236],[-271,17]],[[269983,352253],[-141,0]],[[269842,352253],[-878,-29]],[[268964,352224],[-617,-6]],[[268347,352218],[-431,0]],[[267916,352218],[-1356,66]],[[266560,352284],[-565,64]],[[266591,353542],[-596,-1194]],[[268214,357779],[-540,-707],[-177,-2081],[-906,-1449]],[[268214,357779],[25,1522]],[[269086,363431],[-450,-1507],[10,-1311],[-407,-1312]],[[269118,363554],[-32,-123]],[[269796,365347],[-678,-1793]],[[270750,369798],[-954,-4451]],[[287392,377532],[-31,2]],[[287315,377538],[-19,-1]],[[287272,377541],[-21,-6]],[[287827,370121],[-283,133],[408,3844]],[[287952,374098],[291,1243],[191,2956]],[[289111,378680],[-235,-2169]],[[288876,376511],[119,-271],[-517,-3407],[-55,-2435],[-470,-1282]],[[287953,369116],[-346,-3596],[-150,-3564],[-151,2651],[266,5440],[255,74]],[[289490,378911],[-53,-33]],[[287471,351575],[127,-160]],[[287598,351415],[-118,-3]],[[287480,351412],[-9,163]],[[265995,352348],[-713,-243]],[[265282,352105],[-222,46]],[[265060,352151],[-603,36]],[[264457,352187],[-96,-3]],[[264361,352184],[-1440,211]],[[262921,352395],[-20,2]],[[262901,352397],[-528,227]],[[262373,352624],[-838,203]],[[261535,352827],[-57,-11]],[[261478,352816],[-392,-139]],[[261086,352677],[-980,63]],[[260106,352740],[-514,127]],[[259592,352867],[-645,209]],[[258947,353076],[-577,205]],[[258370,353281],[-422,-314]],[[257948,352967],[-558,277]],[[257390,353244],[-830,-106]],[[256560,353138],[-150,-14]],[[256410,353124],[-615,-17]],[[255795,353107],[-851,-64]],[[254944,353043],[-147,-18]],[[254797,353025],[-1049,764]],[[253748,353789],[47,-3359]],[[253795,350430],[-1214,64]],[[252581,350494],[-77,9]],[[252504,350503],[-835,21]],[[251669,350524],[-28,4]],[[251641,350528],[-22,-4]],[[251619,350524],[-1425,9]],[[250194,350533],[-201,-78]],[[249808,350434],[-152,5]],[[284546,393465],[-223,1827]],[[195309,341208],[2,18556]],[[195309,341208],[0,-19411]],[[195309,321797],[-2,-7083]],[[195307,314714],[-2,-14912]],[[195305,289203],[0,10599]],[[195305,289203],[0,-8030]],[[195305,281173],[-1,-6539]],[[195297,254263],[7,20371]],[[195297,254263],[-3928,9]],[[191369,254272],[-1713,-9],[-813,1748]],[[188843,256011],[-5480,11409]],[[183363,267420],[-4124,8474],[12,2286],[251,1896]],[[235506,350461],[153,-6282]],[[235690,343068],[-31,1111]],[[235854,336681],[-164,6387]],[[235854,336681],[57,-2246]],[[236026,329941],[-115,4494]],[[236026,329941],[-3,-305]],[[235980,321318],[43,8318]],[[235980,321318],[-18,-3816]],[[235962,317502],[-20,-4124]],[[235918,307464],[24,5914]],[[235918,307464],[-20,-4633]],[[235898,302831],[-24,-5642]],[[235874,297189],[-725,1210]],[[235149,298399],[-87,1119],[-235,-358],[-301,2195],[-518,1395]],[[234008,302750],[-177,481],[-257,-1569]],[[233574,301662],[-669,199],[-133,969],[-448,-1249]],[[232324,301581],[-241,-630]],[[232083,300951],[-248,889],[-428,-565],[-250,-1798],[-558,-651]],[[230599,298826],[-126,948],[-567,1262],[110,939]],[[230016,301975],[-185,351],[-328,-1483],[-268,388],[-184,1849]],[[229051,303080],[-28,-98]],[[229023,302982],[-419,-2885],[-33,-1358],[-271,1490],[50,1869],[-343,-239],[-176,-1290],[-249,389],[-61,1401]],[[227521,302359],[-216,-290]],[[227305,302069],[-352,1623],[-506,-2569],[-303,758]],[[226144,301881],[91,1860],[-382,233],[-153,2623]],[[225700,306597],[-88,-540],[-543,799],[-165,-1383]],[[224904,305473],[-175,-372],[-345,1754]],[[224384,306855],[-433,-385],[-521,1416]],[[223430,307886],[-657,27],[-63,2288]],[[222710,310201],[-463,2267],[-59,-1528],[-214,361]],[[221974,311301],[-293,391],[-320,-718],[-413,2380]],[[220948,313354],[-223,1273],[-207,-260]],[[220518,314367],[-8,3460]],[[220510,323131],[0,-5304]],[[220510,323131],[0,2818]],[[220510,330410],[0,-4461]],[[220510,330410],[0,3663]],[[220510,338939],[0,-4866]],[[220510,338939],[0,3261]],[[220510,342200],[-10,8267]],[[220500,350467],[-1510,-7]],[[218990,350460],[-1137,6]],[[217853,350466],[-365,-7]],[[217488,350459],[-1502,5]],[[215986,350464],[-1138,19]],[[214848,350483],[-361,-4]],[[214487,350479],[-2341,1]],[[212147,359783],[-1,-9303]],[[212146,350480],[-110,1],[3,-8288]],[[212039,342193],[-1,-5881]],[[212037,334134],[1,2178]],[[212037,334134],[-3,-8177]],[[212034,325957],[0,-4264]],[[212034,317844],[0,3849]],[[212034,317844],[-4,-8091]],[[212030,309753],[0,-189]],[[212030,309564],[-9,-8889]],[[212021,300675],[-14,-4738]],[[211995,292545],[12,3392]],[[211995,292545],[-22,-7994]],[[211973,284551],[0,-8132]],[[211973,276419],[1,-8101]],[[211974,268318],[0,-1611],[-730,-3]],[[211244,266704],[-1105,-3]],[[210139,266701],[-717,-2]],[[209422,266699],[-123,-1]],[[209299,266698],[-2294,9]],[[207005,266707],[-196,-1]],[[206809,266706],[-3008,34]],[[203801,266740],[-1057,-20]],[[202744,266720],[-672,-15],[-49,-2500],[301,-1531]],[[202324,262674],[-2142,-6]],[[200182,262668],[-2540,2]],[[197642,262670],[0,-8384],[-2345,-23]],[[271560,352114],[-142,-3667]],[[271418,348447],[-528,-1942]],[[270890,346505],[-41,-398]],[[270849,346107],[-412,-3020]],[[270437,343087],[-395,999]],[[270042,344086],[-542,-1569]],[[269500,342517],[-247,-1769]],[[269253,340748],[-294,-190],[22,1348]],[[268981,341906],[-95,482],[-414,-1435],[-99,-1242],[-215,431]],[[268158,340142],[-176,-2869]],[[267982,337273],[-326,-26],[-492,-1366]],[[267164,335881],[3,-378]],[[267167,335503],[-680,-2474],[-459,115]],[[266028,333144],[-304,-143],[-504,-1879]],[[265220,331122],[-22,60]],[[265198,331182],[-169,-1111],[-21,-2086]],[[265008,327985],[-272,-947],[-243,467],[-219,-1110]],[[264192,322332],[82,4063]],[[264192,322332],[-835,-3]],[[263357,322329],[-430,-7]],[[262927,322322],[-101,-5]],[[262826,322317],[-467,1]],[[262359,322318],[-796,-49]],[[261563,322269],[-276,-32]],[[261287,322237],[-305,-6]],[[260982,322231],[-365,30]],[[260617,322261],[-721,68]],[[259896,322329],[-1243,53]],[[258653,322382],[-24,1]],[[258629,322383],[-1296,15]],[[257333,322398],[-144,-1]],[[257189,322397],[-1046,132]],[[256143,322529],[-37,7]],[[256106,322536],[-1068,76]],[[255038,322612],[-1051,46]],[[253987,322658],[-600,-193]],[[253387,322465],[-454,-3]],[[252933,322462],[-49,3]],[[252884,322465],[-1131,-7]],[[251753,322458],[-101,0]],[[251652,322458],[-542,-5]],[[251110,322453],[-504,-8]],[[250606,322445],[-430,-12]],[[250176,322433],[-813,26]],[[249363,322459],[-223,-9]],[[249140,322450],[-1629,16]],[[248162,329699],[-213,-2387],[219,-627],[19,-1534],[-292,-393],[-116,-1726],[-268,-566]],[[248162,329699],[-189,946]],[[248221,329795],[-36,1333],[-212,-483]],[[248257,329931],[-36,-136]],[[248625,332562],[-364,175],[-4,-2806]],[[249362,339384],[-276,30],[116,-1381],[-336,-1405],[-365,-377],[270,-1925],[-281,-846],[135,-918]],[[249362,339384],[-173,1815]],[[287279,351415],[112,-2597],[320,-2365],[229,-3945],[-422,3626]],[[287518,346134],[-187,1417]],[[287331,347551],[294,-3319],[-296,418],[-595,3434]],[[286734,348084],[37,-1380],[441,-2721],[-295,-509],[-337,1726]],[[286580,345200],[260,-2060],[-166,-57],[-563,1793],[417,-1963],[-516,-159]],[[286012,342754],[225,-326],[-290,-1136],[-496,1123],[-83,1530],[115,2811]],[[285483,346756],[-266,1180],[-452,775]],[[284765,348711],[428,-836],[170,-2171]],[[285363,345704],[-90,-1721],[200,-3015],[-54,-1229]],[[285419,339739],[847,1101],[88,-950]],[[286354,339890],[552,1171],[303,-80],[50,-5635],[-333,155]],[[286926,335501],[415,-496]],[[287341,335005],[74,4091],[488,662],[174,-763],[41,-4813],[-337,-752],[-91,1013]],[[287690,334443],[20,-1176],[-419,-3066],[-333,-1393],[-288,214],[-380,1513],[-221,-1048],[-325,2540],[265,-142],[-10,1305]],[[285999,333190],[-398,-1100],[175,-2296],[-1124,1767],[-310,1394]],[[284342,332955],[-25,-150]],[[284317,332805],[371,-2175],[955,-1729],[26,-1207]],[[285669,327694],[310,747],[30,-1790],[-452,-993],[295,-348],[-138,-1386],[-575,-2026],[-396,1479],[22,795]],[[284765,324172],[-259,864],[-282,-1162]],[[284224,323874],[52,13]],[[284276,323887],[204,503],[398,-2748],[591,-1004]],[[285469,320638],[29,1355],[695,560],[-107,-1080],[521,321],[-484,-2667],[-165,-1717],[-182,-43],[-131,1683],[-204,-1777],[-551,161],[-575,-953],[-157,1697]],[[284158,318178],[119,-1090],[-640,-3358],[-489,-1594]],[[283148,312136],[-617,-2746]],[[282531,309390],[61,23]],[[282592,309413],[10,-64]],[[282602,309349],[-405,-2626],[-165,-1819],[-109,2614]],[[281923,307518],[8,-4064],[-186,-1609],[-387,485],[-737,-284],[-373,-588]],[[280248,301458],[-33,175]],[[280215,301633],[-11,68]],[[280204,301701],[-212,1202]],[[279992,302903],[-1171,6598]],[[278821,309501],[-4,25]],[[278817,309526],[-1052,5966]],[[277765,315492],[-32,174]],[[277733,315666],[-629,3248]],[[277104,318914],[-668,34]],[[276436,318948],[-6,0]],[[276430,318948],[-1089,137]],[[275341,319085],[-679,65]],[[274662,319150],[-651,42],[43,2132],[-159,1234]],[[273895,322558],[-185,1400]],[[273710,323958],[-377,-575],[22,1922]],[[273355,325305],[-822,285]],[[272533,325590],[-107,26]],[[272426,325616],[-1119,291]],[[271307,325907],[-296,68]],[[271011,325975],[-264,59]],[[270747,326034],[-688,163]],[[270059,326197],[-383,-98]],[[269676,326099],[-619,-853]],[[269057,325246],[-524,-1428]],[[268533,323818],[-371,-223]],[[268162,323595],[-311,-531]],[[267851,323064],[-277,-502]],[[267574,322562],[-1,-3]],[[267573,322559],[-1043,-136]],[[266530,322423],[-186,-14]],[[266344,322409],[-1079,-93]],[[265265,322316],[-191,-6]],[[265074,322310],[-349,6]],[[264725,322316],[-533,16]],[[288002,345465],[-124,1107],[-199,4845]],[[287748,351417],[261,-5943]],[[288009,345474],[568,-6868],[-469,3338],[-106,3521]],[[287598,351415],[-258,-1]],[[287430,351414],[50,-2]],[[288069,326136],[643,1433],[149,5776],[-43,1705]],[[288818,335050],[63,-1480],[-197,-6894],[-610,-638]],[[288074,326038],[-5,98]],[[281978,302679],[3,-82]],[[281981,302597],[-3,82]],[[280269,301329],[-18,102]],[[280251,301431],[18,-102]],[[237107,295594],[-319,701],[-638,-835],[-276,1729]],[[237107,295594],[0,-5231]],[[237107,285671],[0,4692]],[[237107,285671],[0,-2571]],[[237107,279599],[0,3501]],[[237107,274000],[0,5599]],[[237109,270346],[-2,3654]],[[237109,270346],[75,-4024]],[[237565,263797],[-381,2525]],[[237565,263797],[235,-2648],[-112,-2156]],[[238341,251360],[-233,2339],[-88,3955],[-332,1339]],[[238475,251534],[-134,-174]],[[238458,245638],[138,2981],[-121,2915]],[[238458,245638],[-203,-3554],[-301,-2556],[116,-1802],[-122,-774]],[[237948,236952],[-68,-1096],[158,-1846]],[[238004,230423],[34,3587]],[[238004,230423],[-371,-3473]],[[237633,226950],[-208,-1155],[251,-2061]],[[237676,223734],[-488,-232],[-947,-2204]],[[236241,221298],[-46,-111]],[[236195,221187],[-1085,-2978],[545,2519],[264,492]],[[235919,221220],[-211,270],[-540,-841],[124,4279],[-301,699],[-199,-2304],[-147,207]],[[234645,223530],[-248,563],[-164,2138],[-76,-1074],[333,-1692],[-99,-2415]],[[234391,221050],[302,-995],[-118,-527],[193,-1648],[-61,-1444]],[[234707,216436],[-104,255],[-319,-2118]],[[234284,214573],[-259,-342],[-244,-3554],[-457,-2356],[-295,-717]],[[233029,207604],[-515,-1809],[-269,336],[-408,-941],[-74,-1320],[716,1769],[-1754,-5264],[802,2733]],[[231527,203108],[199,1337],[-526,-947],[-444,705]],[[230756,204203],[-189,587]],[[230567,204790],[-105,612]],[[230462,205402],[-19,-1857],[-318,624]],[[230125,204169],[-69,1194]],[[230056,205363],[-228,274]],[[229828,205637],[-8,-8]],[[229820,205629],[-3,30]],[[229817,205659],[1,-375]],[[229818,205284],[138,-1955],[593,-2862],[-702,-2229],[-380,2325]],[[229467,200563],[-207,-609],[193,-1783]],[[229453,198171],[-22,-807]],[[229431,197364],[4,-945]],[[229435,196419],[-34,-86]],[[229401,196333],[-90,-602]],[[229311,195731],[-328,-1202],[-163,1476]],[[228820,196005],[-625,-2605]],[[228195,193400],[229,-264],[-76,-1379]],[[228348,191757],[8,-75]],[[228356,191682],[443,2663],[-6,-1493],[-303,-2406]],[[228490,190446],[-3,-28]],[[228487,190418],[-15,-156]],[[228472,190262],[-134,-1330],[-231,1091],[-605,-773]],[[227502,189250],[289,8],[157,-2289]],[[227948,186969],[214,-388],[-199,-2527]],[[227963,184054],[-251,-4476],[-258,-851],[114,2438],[-407,-1627],[-336,1830],[200,-2389],[-320,-88]],[[226705,178891],[359,-136],[285,-872],[340,625],[-70,-2738]],[[227619,175770],[-62,-1844],[-237,-795]],[[227320,173131],[22,-2788],[212,-1258],[78,-2922]],[[227632,166163],[52,-1580]],[[227684,164583],[-2,-1372]],[[227682,163211],[-57,-570]],[[227625,162641],[156,-4]],[[227781,162637],[266,-4006],[-45,-1341],[285,-1113]],[[228287,156177],[-113,-1804],[-350,-1094],[6,-1267],[-410,862],[-516,2812],[-435,616]],[[226469,156302],[-922,-316],[-540,1945],[-164,1243],[-394,621]],[[224449,159795],[-248,-323],[-357,2360],[-856,1102],[53,932],[-216,1774]],[[222825,165640],[-275,5054],[-494,3303],[54,2885],[-77,1666]],[[222033,178548],[-140,1380],[71,2611],[-322,2959],[-327,370],[-463,2628],[-155,3393],[-154,197],[-278,2896],[-346,911]],[[219919,195893],[-227,1634],[-299,5632],[-269,1346],[-138,3110],[-290,2182],[-44,2619]],[[218652,212416],[-301,1679],[-54,1254]],[[218297,215349],[-585,2296],[-155,1737],[-559,1473],[-109,1937],[-428,2705],[-230,-538],[-627,431]],[[215604,225390],[-988,209],[-570,1613]],[[214046,227212],[-191,-2194],[-355,428],[-421,-724],[-394,-4187],[-190,-3082],[-26,-2697],[-288,-495],[-452,-3923],[-784,1354],[-338,2103],[-458,443],[-204,1500]],[[209945,215738],[-500,620],[-308,933],[-500,3116],[-209,111],[-482,2314],[-466,5014],[-27,4955],[-481,3934],[-34,2230],[-301,2214]],[[206637,241179],[-655,3287],[-500,980],[-452,2433],[-137,1784],[-467,1523],[-266,2269],[-357,1834]],[[203803,255289],[-617,1714],[-455,4718],[-407,953]],[[234510,223479],[12,43]],[[234522,223522],[-12,-43]],[[235183,217122],[-168,-987],[-898,-3581],[739,3848],[327,720]],[[229342,194267],[112,1477],[225,126],[310,1666]],[[229989,197536],[539,1175],[-1215,-4810]],[[229313,193901],[29,366]],[[228706,189797],[-14,-358]],[[228692,189439],[14,358]],[[229222,193536],[-326,-2723],[39,1456],[287,1267]],[[227841,171687],[-58,4800],[50,1667]],[[227833,178154],[31,634]],[[227864,178788],[9,1767],[307,3882]],[[228180,184437],[70,-94]],[[228250,184343],[-350,-5556]],[[227900,178787],[-81,-3293],[22,-3807]],[[228402,187096],[249,1940],[-343,-3972],[94,2032]],[[227986,166171],[12,-1]],[[227998,166170],[-12,1]],[[228159,164435],[-24,128]],[[228135,164563],[-189,860]],[[227946,165423],[67,747]],[[228013,166170],[-73,1392]],[[227940,167562],[76,-470]],[[228016,167092],[52,-919]],[[228068,166173],[91,-1738]],[[228016,167092],[-141,1393]],[[227875,168485],[-65,3026]],[[227810,171511],[31,176]],[[227841,171687],[175,-4595]],[[228195,162657],[36,0]],[[228231,162657],[-36,0]],[[247511,322466],[186,-1296],[-172,-1231]],[[247525,319939],[-289,-501]],[[247236,319438],[-214,563],[88,-2170],[-319,-435],[282,-923],[-325,-596]],[[246786,313701],[-38,2176]],[[246786,313701],[-19,-2055],[-497,-862],[38,-1147],[-293,-1723],[-253,397],[310,-1737],[-363,-408]],[[245709,306166],[2,-23]],[[244943,295765],[269,600],[-237,1264],[283,816],[-40,1454],[303,-381],[-185,3715],[560,1251],[-185,1659]],[[244988,295163],[-45,602]],[[244988,295163],[-59,-1673],[289,735],[-25,-3356],[150,-2943],[-317,-598],[225,-984],[-128,-819]],[[245123,285525],[1,-136]],[[245124,285389],[-272,19]],[[244852,285408],[-481,19]],[[244371,285427],[-67,-3]],[[244304,285424],[-1696,42]],[[242608,285466],[-1828,114]],[[240780,285580],[-734,58]],[[240046,285638],[-697,10]],[[239349,285648],[-702,9]],[[238647,285657],[-84,2]],[[238563,285659],[-791,14]],[[237772,285673],[-29,1]],[[237743,285674],[-636,-3]],[[280204,301701],[21,-472],[-685,-2075],[-529,-3190]],[[279011,295964],[-403,-3615],[-92,-2363],[-262,1132],[231,-2620],[-212,-590],[-375,806]],[[277898,288714],[355,-1067],[-412,-2026],[-412,-58],[-522,-3075]],[[276907,282488],[-285,-1501],[-132,340],[309,2769]],[[276799,284096],[-357,-1958],[-73,1501]],[[276369,283639],[51,-2897],[155,-81],[-317,-2464],[-721,-1619]],[[275537,276578],[-263,-628]],[[275274,275950],[-210,1998]],[[275064,277948],[21,-1800],[-453,1074]],[[274632,277222],[33,-1172],[-536,816],[-157,-985],[-64,1467]],[[273908,277348],[8,-2098]],[[273916,275250],[-11,-827]],[[273905,274423],[15,-90]],[[273920,274333],[-20,-184]],[[273900,274149],[-60,-391]],[[273840,273758],[261,-1595],[-185,-2613],[-322,-438]],[[273594,269112],[-42,-1026],[-431,800]],[[273121,268886],[-76,2024]],[[273045,270910],[44,2084],[-425,4060]],[[272664,277054],[-301,728]],[[272319,280566],[44,-2784]],[[272319,280566],[-381,5598]],[[271736,287088],[202,-924]],[[271736,287088],[-363,872],[-35,1043]],[[271338,289003],[-265,919]],[[271073,289922],[-257,2317],[43,1727],[-233,1254]],[[270626,295220],[-44,239]],[[270582,295459],[-242,962]],[[270340,296421],[-326,1802]],[[270014,298223],[-319,2645],[-607,2239]],[[269004,304189],[84,-1082]],[[269004,304189],[-407,3628]],[[268597,307817],[-93,1502]],[[268504,309319],[-251,3128],[-348,457]],[[267905,312904],[-174,218]],[[267731,313122],[-145,796]],[[267586,313918],[-653,2805]],[[266933,316723],[-40,540]],[[266893,317263],[305,3008],[323,1133],[53,1158]],[[280269,301329],[-18,102]],[[280248,301458],[-33,175]],[[278193,288025],[76,-264]],[[278269,287761],[-76,264]],[[274213,271739],[154,-1026],[-395,-1964],[241,2990]],[[274414,275981],[264,-152],[280,-1526],[-294,-988],[-167,-1800],[-139,1960],[56,2506]],[[274160,276707],[170,-315],[46,-4156],[-277,1436],[-122,1905],[183,1130]],[[253672,320541],[-285,1924]],[[260617,322261],[61,-2314]],[[260815,315545],[-137,4402]],[[260834,314890],[-19,655]],[[260834,314890],[37,-1200]],[[261015,309262],[-144,4428]],[[261127,305435],[-112,3827]],[[261127,305435],[65,-2173]],[[261226,302102],[-34,1160]],[[261226,302102],[134,-4629]],[[261360,297473],[95,-3169]],[[261484,293284],[-29,1020]],[[261484,293284],[160,-5559]],[[261644,287725],[10,-399]],[[261790,282903],[-136,4423]],[[261790,282903],[136,-2309]],[[262077,278017],[-151,2577]],[[262077,278017],[223,-1817]],[[262381,273729],[-81,2471]],[[262517,270995],[98,588],[-330,1225],[96,921]],[[262517,270995],[-386,-1847],[16,-1278]],[[262113,266543],[34,1327]],[[262113,266543],[-202,-2490],[-1,-1443]],[[261910,262610],[38,-331]],[[262176,257708],[-228,4571]],[[262176,257708],[-117,-3881]],[[262223,249488],[-201,1665],[37,2674]],[[262223,249488],[73,-1396]],[[262296,248092],[-1354,-66]],[[260942,248026],[-27,-3]],[[260915,248023],[-1496,-68]],[[259419,247955],[-424,14]],[[258995,247969],[-561,3]],[[258434,247972],[-835,6]],[[257599,247978],[-272,46]],[[257327,248024],[-1052,38]],[[256275,248062],[-1213,-29]],[[255062,248033],[-100,-2449],[293,-2294],[342,-1258],[-72,-3552]],[[255525,238480],[118,-709],[-472,-3244],[-776,-835],[-364,139],[619,1003],[-446,2269],[13,2457],[-100,3216],[-226,557]],[[253891,243333],[-3,422]],[[253888,243755],[51,358]],[[253939,244113],[-283,-5326],[-10,-2294],[-805,176]],[[252841,236669],[-46,6488]],[[252795,243157],[-36,4891]],[[252741,250208],[18,-2160]],[[252741,250208],[-49,5985]],[[252651,261072],[41,-4879]],[[252651,261072],[-26,3649]],[[252625,264721],[118,6214]],[[252770,272443],[-27,-1508]],[[252770,272443],[91,5017]],[[252861,277460],[114,6533]],[[252996,285150],[-21,-1157]],[[252996,285150],[100,5531]],[[253179,295254],[-83,-4573]],[[253179,295254],[72,3928]],[[253367,305017],[-116,-5835]],[[253367,305017],[10,525]],[[253461,309908],[-84,-4366]],[[253461,309908],[48,2646]],[[253555,314761],[-46,-2207]],[[253672,320541],[-117,-5780]],[[255286,234666],[0,83]],[[255286,234749],[0,-83]],[[273121,268886],[209,-711],[80,-2196],[219,-966],[-158,-954],[-438,1417],[-233,-803]],[[272800,264673],[248,-709],[-50,-2336],[-442,1524]],[[272556,263152],[267,-1393]],[[272823,261759],[40,-1068],[-396,-433]],[[272467,260258],[359,-497],[69,-955],[-372,-536],[-14,-3438],[142,-739],[-530,301]],[[272121,254394],[4,-51]],[[272125,254343],[81,-132]],[[272206,254211],[155,-844],[-204,-1997],[71,-2599],[-325,802]],[[271903,249573],[306,-2479],[-160,-4072],[-292,-203]],[[271757,242819],[-831,2065]],[[270926,244884],[-366,-1369],[-37,-1853],[123,-1708],[-124,-3746]],[[270522,236208],[-335,-63],[-107,1022],[-17,2880]],[[270063,240047],[-569,247]],[[269494,240294],[-114,46]],[[269380,240340],[-346,136]],[[269034,240476],[-293,113]],[[268741,240589],[-1247,491]],[[267494,241080],[-481,194]],[[267013,241274],[-88,36]],[[266925,241310],[-45,18]],[[266880,241328],[-709,260]],[[266171,241588],[-368,135]],[[265803,241723],[-735,253]],[[265068,241976],[-212,69]],[[264856,242045],[-554,175]],[[264302,242220],[-274,89]],[[264028,242309],[-1345,402]],[[262683,242711],[-3,0]],[[262680,242711],[-384,5381]],[[273103,263918],[241,-619],[-261,-1765],[-124,1737],[144,647]],[[273429,267956],[229,-1122],[-211,-969],[-18,2091]],[[273082,261032],[-133,-2579],[-38,2026],[171,553]],[[272518,253791],[20,18]],[[272538,253809],[99,-1698],[-281,-1545],[-109,1279],[124,2060],[147,-114]],[[272895,258076],[-221,-2948],[-140,1838],[361,1110]],[[272307,246842],[-203,-3711],[-81,2743],[284,968]],[[252841,236669],[-233,-1277],[-178,1269],[-576,-701],[-371,1452]],[[251483,237412],[-1133,-2305],[-141,1297]],[[250209,236404],[34,-1300],[-543,-2316]],[[249236,238014],[202,-4320],[262,-906]],[[249236,238014],[-349,2359],[-75,1498]],[[248812,241871],[318,6252]],[[249130,248123],[-300,-5]],[[248830,248118],[-1181,-26]],[[247649,248092],[-244,-5]],[[247405,248087],[-559,-12]],[[246846,248075],[-54,0]],[[246792,248075],[-721,-7]],[[246071,248068],[-652,-8]],[[245419,248060],[-324,3]],[[245095,248063],[-1283,6]],[[243944,251639],[-102,-1383],[173,-932],[-203,-1255]],[[244529,261751],[-61,-2123],[-260,460],[230,-1495],[-276,-598],[18,-3120],[-205,749],[175,-2365],[-388,-521],[182,-1099]],[[244701,262039],[-172,-288]],[[244895,264274],[-272,-484],[78,-1751]],[[245501,268826],[-126,-1816],[-314,-1032],[-166,-1704]],[[245501,268826],[-1,115]],[[245500,268941],[-62,69]],[[245438,269010],[-314,191],[117,1425]],[[245241,270626],[337,223],[252,2168],[-256,410],[68,1607],[-306,123],[53,2007]],[[245465,277425],[-76,-261]],[[245465,277425],[-297,1279],[258,1421],[-227,255],[-6,1864],[185,934],[-62,1883],[-223,-1603],[31,1931]],[[249700,232788],[-283,-441]],[[249417,232347],[-289,-1734],[-364,-1099]],[[248764,229514],[179,-1316],[187,486],[63,-1578],[278,-40],[74,2257],[373,1266],[61,-2277]],[[249979,228312],[58,-697]],[[250037,227615],[219,-583],[-251,-836],[181,-671]],[[250186,225525],[-338,382],[72,-1088]],[[249920,224819],[-579,0],[296,-1820]],[[249637,222999],[-31,137]],[[249606,223136],[-17,-12]],[[249589,223124],[-218,-164]],[[249371,222960],[-15,-479]],[[249356,222481],[-255,-314],[203,-1847],[362,-1191],[-111,-778],[530,-230],[375,-1687],[141,832],[308,-3041],[-51,-1666],[-255,-1182],[-171,580],[-447,-2431],[421,3794],[-137,1556],[-368,-602],[-134,2620],[-304,1183],[-511,-72],[-60,606]],[[248892,218611],[-160,572]],[[248732,219183],[-297,219]],[[248435,219402],[-412,1680],[32,1884],[-166,601]],[[247889,223567],[32,-2069],[-180,-981],[501,-1665]],[[248242,218852],[-13,-1968]],[[248229,216884],[-88,-464]],[[248141,216420],[54,-1722]],[[248195,214698],[-70,-748]],[[248125,213950],[-368,-1497],[-123,993]],[[247634,213446],[-257,3161],[-145,-1653]],[[247232,214954],[0,260]],[[247232,215214],[0,104]],[[247232,215318],[15,317]],[[247247,215635],[12,85]],[[247259,215720],[-524,941],[21,-1318]],[[246756,215343],[-83,-581]],[[246673,214762],[-79,239]],[[246594,215001],[-200,-1714]],[[246394,213287],[-354,100]],[[246040,213387],[-298,518],[375,1326],[-331,809],[-84,1095],[-260,-2776],[-234,825],[15,1953],[-359,1999],[123,2647]],[[244987,221783],[-279,-1858],[-257,1227],[-396,-629],[-7,2090],[-205,-83],[-21,2141],[-622,-89]],[[243200,224582],[80,1698],[-402,85]],[[242878,226365],[-34,-728],[-509,-1742],[180,-15],[-21,-1563],[-530,-1558],[-885,887]],[[241079,221646],[-915,2301],[-643,1244],[-860,-33],[-722,-624],[-263,-800]],[[249760,222644],[-11,41]],[[249749,222685],[-49,282]],[[249700,222967],[-38,168]],[[249662,223135],[98,-491]],[[243094,222650],[507,-1498],[-373,-1379],[-504,1635],[370,1242]],[[247232,214758],[0,-134]],[[247232,214624],[0,134]],[[249172,217874],[111,-1305],[-398,134],[287,1171]],[[244928,217715],[211,-933],[-106,-1819],[-306,1568],[201,1184]],[[271757,242819],[498,-308],[-34,-3431],[-155,926],[-295,-108]],[[271771,239898],[387,-695],[23,-1979],[-488,-403],[1,-1428],[-265,-959],[92,-1411]],[[271521,233023],[-209,-1367],[211,19],[-61,-1459],[280,-1434],[17,-2306]],[[271759,226476],[138,-1240],[-266,-1803],[-119,-4401],[73,-1266]],[[271585,217766],[74,-1764]],[[271659,216002],[241,-1603]],[[271900,214399],[73,2024],[-125,914]],[[271848,217337],[-291,1591],[-5,2836],[246,455],[-91,1669],[277,1095]],[[271984,224983],[-177,2427],[99,1442],[-322,1680],[221,1274]],[[271805,231806],[-186,99],[91,1895],[-113,886],[151,2028],[471,-633],[29,-1923]],[[272248,234158],[350,-6433],[-19,-1080],[258,-3314]],[[272837,223331],[-14,0]],[[272823,223331],[-64,-213]],[[272759,223118],[386,-4324]],[[273145,218794],[71,-1438],[822,-10398]],[[274038,206958],[411,-2425],[-276,2426]],[[274173,206959],[19,0]],[[274192,206959],[437,-3793],[144,-2447],[-167,-836],[-12,3070],[-288,-3646],[-72,101],[-11,3804],[-174,605],[153,1506],[-297,1636]],[[273905,206959],[-39,-1]],[[273866,206958],[152,-4434],[384,-6703],[460,-6126],[-21,-546]],[[274841,189149],[341,-3282],[59,-1881]],[[275241,183986],[343,-5477]],[[275584,178509],[-145,-584]],[[275439,177925],[-1,-410]],[[275438,177515],[375,-1551],[181,-2897]],[[275994,173067],[-63,2]],[[275931,173069],[-9,1]],[[275922,173070],[-37,2]],[[275885,173072],[-22,0]],[[275863,173072],[173,-517],[58,-7156],[-69,-4426]],[[276025,160973],[-123,-6439]],[[275902,154534],[-15,-1397]],[[275887,153137],[-181,-2634],[-305,-2457],[-117,-2921],[81,-1855],[-329,-2502]],[[275036,140768],[-16,1]],[[275020,140769],[-149,-433]],[[274871,140336],[3,-77]],[[274874,140259],[-199,601],[-388,-1467],[-445,273]],[[273842,139666],[-118,-685],[-512,-438],[-244,1965],[102,2256],[184,-1642],[296,-971],[166,920],[-246,1771],[-349,147],[-259,2833],[-188,3419],[234,600],[-210,869],[-82,-1357],[-127,1983]],[[272489,151336],[-461,1867],[-228,-193],[-395,1935],[-191,1815],[-122,4386]],[[271092,161146],[-65,2473],[-474,1226],[-124,2786],[67,1707]],[[270496,169338],[-105,2644],[304,1032],[-368,5],[-94,-804],[-283,1506]],[[269950,173721],[0,-130]],[[269950,173591],[197,-1158],[100,-2595],[-427,921],[-144,1848]],[[269676,172607],[-254,2093],[-338,6157]],[[269084,180857],[-345,1646],[240,735],[143,2390]],[[269122,185628],[467,3254],[-294,1838],[49,-1786],[-175,308],[19,1797],[-334,1530]],[[268854,192569],[-198,-1538],[342,-1333],[-115,-2958],[-287,863],[-300,2065],[148,2365],[29,3410]],[[268473,195443],[316,4857]],[[268789,200300],[108,4858]],[[268897,205158],[-149,697],[-6,3293],[-183,1660]],[[268559,210808],[-4,-28]],[[268555,210780],[11,1182],[-229,1768],[-631,424],[-130,2752]],[[267576,216906],[-181,85],[-177,1931],[-468,2014],[37,2410]],[[266787,223346],[-399,936],[-283,2980],[-405,1944],[-589,2028]],[[265111,231234],[-234,66]],[[264877,231300],[-794,-652],[8,-1736],[-255,55]],[[263836,228967],[267,-1311],[-501,150],[-1029,-3275],[-405,827]],[[262168,225358],[-1,-31]],[[262167,225327],[153,-1173],[-624,-386]],[[261696,223768],[-262,-97],[31,2044],[-245,2372]],[[261220,228087],[-832,3622],[181,87],[318,-1693],[326,-77]],[[261213,230026],[0,122]],[[261213,230148],[-257,-46],[-113,1656],[-199,-122],[-385,1289],[-7,-1143],[-725,2693]],[[259527,234475],[-1117,2045]],[[258410,236520],[1,356]],[[258411,236876],[815,-134],[-426,1780],[-383,-606]],[[258417,237916],[-166,1066],[-410,-2043],[-551,87]],[[257290,237026],[-1052,-1037],[665,1910],[-226,962],[-136,-1053],[-250,2450],[-60,-658]],[[256231,239600],[17,-2078],[-262,-1641],[-543,-651],[107,1726],[233,527],[-258,997]],[[255286,234749],[0,-83]],[[257287,236666],[-333,-291]],[[256954,236375],[0,65]],[[256954,236440],[334,329]],[[257288,236769],[-1,-103]],[[272253,234159],[-2,2673],[137,-2660]],[[272388,234172],[216,-5656],[-351,5643]],[[273150,218794],[-308,4538]],[[272842,223332],[13,0]],[[272855,223332],[309,-4536]],[[273164,218796],[-14,-2]],[[261985,223666],[46,-1027],[-348,842],[302,185]],[[268299,195426],[9,1]],[[268308,195427],[-9,-1]],[[275308,183988],[31,2]],[[275339,183990],[-31,-2]],[[268873,180869],[11,-1]],[[268884,180868],[-11,1]],[[275648,178510],[28,-1]],[[275676,178509],[-28,1]],[[269621,172608],[7,1]],[[269628,172609],[-7,-1]],[[276005,173063],[4,0]],[[276009,173063],[-4,0]],[[269903,169694],[11,1]],[[269914,169695],[-11,-1]],[[270224,168130],[277,-3879],[-101,-152],[-176,4031]],[[272238,151333],[13,1]],[[272251,151334],[-13,-1]],[[275491,142866],[-401,-4416],[-362,-2015],[523,3741],[240,2690]],[[61671,65311],[273,-273]],[[61944,65038],[565,-356],[-456,-1899],[-525,1010],[-689,11],[161,2281],[671,-774]],[[64908,48284],[736,-2763],[362,-390],[489,-1482],[554,-3197],[-25,-2085],[243,13],[56,-1738],[491,-2284],[-473,-3219],[-430,-1374],[-451,-185],[-606,-2496],[-404,-3858],[-627,2124],[-104,1502],[90,4218],[-292,5439],[-197,1716],[344,2264],[318,3335],[-188,1775],[-21,2013],[135,672]],[[55029,84760],[231,-812],[-50,-4138],[-316,-1725],[-532,857],[-340,1190],[-70,1625],[168,1567],[390,1358],[519,78]],[[53118,80468],[25,-1793],[-233,-683],[-126,-1603],[-76,1953],[410,2126]],[[61752,60573],[246,-293],[244,-1960],[-83,-860],[-350,-533],[-259,3326],[202,320]],[[62904,54516],[45,-1246],[-351,-600],[8,966],[298,880]],[[62814,62495],[341,-2479],[437,901],[263,-353],[322,-1915],[311,-601],[36,-1558],[-162,-1020],[-712,-1318],[-390,413],[-55,3220],[-458,617],[-171,1326],[59,2294],[179,473]],[[58972,75139],[408,-3431],[-18,-1219],[214,21],[315,-3032],[-403,-785],[-272,1418],[-579,-705],[-494,5220],[436,170],[393,2343]],[[996992,632383],[818,-1163],[91,-906],[715,-2639],[-620,1211],[-351,1709],[-879,1733],[226,55]],[[949,635992],[100,-1643],[-281,619],[181,1024]],[[7984,636500],[-24,-2275],[-306,-73],[-67,2101],[397,247]],[[8254,636861],[430,-729],[-176,-972],[-344,387],[90,1314]],[[8791,637399],[78,-1228],[-422,750],[344,478]],[[2943,637533],[354,-28],[111,-1138],[763,-730],[-473,-573],[-84,-1947],[-423,-823],[-299,1293],[442,1084],[-738,1715],[347,1147]],[[5406,633633],[-183,-598],[-330,1038],[-855,-380],[1117,1264],[254,737],[16,1940],[428,-501],[-229,-1193],[22,-1774],[-240,-533]],[[996377,638802],[311,-784],[-244,-853],[-67,1637]],[[7152,639094],[-123,-3160],[552,52],[-112,-1993],[-620,-692],[-248,-1116],[-150,1715],[-276,-2445],[-148,1181],[344,1636],[-141,1180],[574,-355],[-294,2578],[642,1419]],[[999633,639522],[334,-975],[-327,-1865],[-356,430],[-110,1602],[459,808]],[[8394,641129],[361,-843],[-150,-1151],[-356,-113],[145,2107]],[[993962,641501],[134,-1164],[-300,-1592],[3,-1344],[-561,-90],[-111,-1517],[-310,1266],[482,1562],[297,122],[366,2757]],[[15680,641866],[-88,-643],[552,-599],[499,441],[599,-277],[-1373,-851],[-663,468],[-396,-613],[-511,1117],[345,752],[243,-726],[793,931]],[[18717,646240],[353,-1060],[-311,-985],[-542,-451],[86,1790],[414,706]],[[13936,646817],[445,-1871],[-208,-1713],[-379,-563],[294,-1046],[-845,-838],[-954,-1616],[-415,665],[-938,-680],[1038,1800],[664,138],[757,1388],[293,1606],[-347,796],[247,1637],[348,297]],[[983194,648582],[-58,-2898],[-305,735],[-724,157],[687,1802],[400,204]],[[23638,652034],[279,-453],[-114,-1345],[-515,-1145],[-82,1788],[432,1155]],[[26147,655623],[247,-1330],[-168,-813],[-713,1495],[634,648]],[[980647,657671],[764,-147],[436,-2390],[463,-235],[-708,-1136],[-317,775],[-432,-1614],[-470,872],[165,1668],[-516,-336],[77,1140],[-541,-71],[552,1546],[527,-72]],[[28034,654543],[907,4624],[-95,1472],[528,2185],[746,67],[-272,830],[82,1804],[501,2015],[614,648],[608,-970],[-157,-2372],[-1193,-2675],[-518,-3466],[-1751,-4162]],[[36357,673363],[-391,-2467],[-196,1415],[587,1052]],[[34797,676523],[213,-3286],[495,2734],[387,-122],[70,-1818],[-314,-391],[-519,-2697],[581,1301],[181,-1596],[-674,-868],[-156,-1539],[-278,590],[46,-1876],[-401,265],[-1841,-3579],[-467,-1377],[-651,1241],[1053,2460],[1096,1206],[-225,1759],[468,337],[-151,1493],[937,464],[-873,524],[-342,2033],[352,1704],[1013,1038]],[[26198,724966],[754,-263],[-288,-1192],[-466,1455]],[[25147,736552],[-441,-1991],[-390,1137],[831,854]],[[39420,678834],[125,-1114],[-549,-30],[-134,746],[558,398]],[[36825,680387],[730,-1661],[-578,-1781],[-479,150],[-104,2381],[431,911]],[[38082,681762],[-168,-1483],[356,-62],[-385,-1861],[-335,2175],[180,1214],[352,17]],[[45571,685391],[687,-1487],[-645,-37],[-42,1524]],[[46951,694607],[167,-1890],[-230,-1028],[-300,1739],[363,1179]],[[42854,695877],[634,14],[265,-1568],[337,-4089],[371,437],[216,-1478],[-489,52],[-123,932],[-254,-1722],[-453,-779],[-609,441],[-827,-359],[-642,-1585],[-62,-1249],[-802,-1375],[-569,492],[-277,2147],[71,1348],[583,1047],[406,3984],[356,1064],[528,-514],[981,2494],[359,266]],[[48298,698203],[503,-1314],[-281,-971],[-459,2013],[237,272]],[[54720,699114],[33,-1697],[-429,-1611],[396,3308]],[[53768,699716],[-56,-3065],[-690,-2054],[14,3270],[393,-758],[86,2465],[253,142]],[[52386,701641],[20,-2213],[-523,1390],[503,823]],[[51367,702388],[93,-1872],[271,219],[341,-2313],[-185,-1094],[-922,1412],[40,2470],[362,1178]],[[52632,703466],[225,-1137],[-484,351],[259,786]],[[56429,729712],[0,-1271]],[[56429,728441],[767,-812],[-200,4018],[209,1634],[849,4197],[641,1528],[416,1983],[586,1663],[449,-1863],[-120,2913],[-249,-206],[-33,2059],[290,6723],[197,1491],[339,172],[-417,2930],[210,2814],[593,2402]],[[60956,762087],[580,2152],[206,3039]],[[61742,767278],[-122,1251],[-356,-1780]],[[61264,766749],[-1094,-1968],[-1643,-2597],[-488,694],[-101,1404],[-594,1396],[200,3649],[-345,-1592],[-443,-553],[-70,-2804],[-801,1977]],[[55885,766355],[509,-1408],[386,-3700]],[[56780,761247],[191,-1494],[-550,-1757],[-436,893],[-942,6038],[-709,1488],[71,1756],[-303,-417],[-191,-2035],[-311,-514],[-282,1932],[-661,238],[-84,2398],[-286,617],[-1293,-3499]],[[50994,766891],[-531,-524]],[[50463,766367],[-102,-328]],[[50361,766039],[-742,-1613]],[[49619,764426],[-138,-1468],[-1061,-1905],[-96,1293],[-1035,446],[860,1205],[618,1650],[-308,160],[-106,3181],[675,2398]],[[49028,771386],[-725,158],[-208,-907],[-382,2903],[195,2895],[687,2210],[-440,2484],[-275,3082],[-345,1471],[-415,3726],[136,1138],[-767,3115],[394,1259],[285,3791],[-130,576],[-403,-4188],[-432,-1001],[310,-2534],[-70,-3037],[-404,-1084],[-1629,-2447],[-1521,-851],[-1010,789],[-259,2086],[268,429],[-760,1956],[-695,3087],[-88,1177],[383,1597],[-109,1291],[397,379],[-182,1458],[363,50],[278,1573],[409,341],[230,1753],[700,-118],[-14,-3249],[424,240],[608,2498],[-385,1562],[-1050,843],[630,147],[398,1002],[-599,266],[-481,-1345],[-126,3490],[-457,-1833],[195,-1308],[-1243,-569],[-215,1520],[-538,-627],[-174,927],[-744,-457]],[[39043,805100],[-170,1112],[663,830],[-1128,3201],[-12,-2176],[-520,182],[-235,2567],[115,849],[-613,570],[-206,2124],[417,1187],[-482,1393],[-545,-1186],[-96,2644],[1075,795],[-527,599],[-414,1924],[1382,581],[-440,3024],[250,2550],[1108,5288],[620,2101],[570,-118],[934,3976],[822,-896],[964,-4031],[-209,4581],[-455,1793],[10,1197],[849,640],[78,1725],[725,1785],[524,-1400],[778,465],[611,2670],[668,1252]],[[46154,848898],[640,3384],[126,1617],[837,-1042],[-393,-958],[1743,358],[1078,995],[1027,4968],[-512,5797],[-74,2808],[-781,2760],[-730,206],[138,2075],[1090,-247],[768,2179],[53,1989],[-321,1964],[-700,1681],[381,361]],[[50524,879793],[-439,-61],[-575,-2905],[-898,82],[-597,-1411],[-710,-398],[-196,-1163],[-839,-1617],[-254,-2636],[-445,-1193],[-160,3172],[-951,2837],[-460,-1140],[679,-1515],[9,-1793],[-1367,2871],[-2017,-59],[-2019,-2250],[-808,901],[-2507,1784],[-688,2790],[278,1486],[-107,1445],[-748,1759],[-608,2844],[665,-529],[574,1255],[300,1828],[875,-777],[602,-2903],[499,-323],[641,1345],[-383,829],[-828,195],[-166,-711],[-668,2577],[-1943,1612],[-1533,483],[-1421,2817],[-463,460],[785,2443],[578,22],[0,1593],[845,1741],[325,-909],[992,2482],[419,1887],[1043,1672],[643,-1027],[1215,98],[319,782],[-1041,1555],[504,1845],[720,1193],[1099,506],[108,-679],[852,2834],[830,667]],[[41084,910486],[1579,206],[201,-2555],[-310,-1226],[121,-2179],[-264,-1027],[215,-1763],[590,-1196],[376,539],[1137,-444],[965,699],[321,-1177],[667,-159],[981,798],[547,-2005],[189,2045],[810,3513],[796,-959],[610,527],[-497,1901],[-1493,1021],[-695,-1271],[194,3234],[-839,3465],[-837,787],[-420,2412],[385,1580],[445,29],[876,-3093],[-152,-2499],[446,-1912],[933,-1943],[1112,1831],[1076,-3146],[1509,330],[133,1771],[-332,2163],[-932,-161],[-461,1239],[-884,-261],[-253,-1862],[-716,-283],[-1101,3517],[233,3055],[871,1517],[-975,1716],[-1120,-1075],[-1026,-154],[-390,1249],[-528,-563],[-2239,1823],[-398,5493],[-678,3577],[-1095,2080],[-2354,5735]],[[38413,937425],[-1696,2109],[-331,1546],[-1318,2643],[529,805],[402,3101],[39,5653],[2426,-417],[2904,1306],[906,1070],[1222,2915],[1185,4351],[538,5905],[-331,649],[1232,3475],[364,2386],[847,2064],[658,2579],[521,-1587],[-929,-958]],[[47581,977020],[610,-137],[635,1732],[830,26],[1623,2411],[1469,3493],[882,526],[-302,-3710],[454,-2620],[-61,3461],[378,971],[-494,2434],[-541,44],[1262,3273],[1370,1209],[-524,-1006],[415,-852],[3298,1403],[1420,2119],[704,1934],[1322,4592],[409,808],[628,-1392],[914,-472],[118,-1343],[1297,-96],[153,-1576],[-590,-1822],[-1262,-1268],[607,-390],[-401,-1320],[1303,-53],[456,606],[-100,1673],[703,1368],[285,1695],[248,-1304],[706,927],[681,-1755],[-272,-1974],[1375,-2190],[694,2096],[1211,87],[986,692],[972,-831],[277,-2576],[300,2683],[990,-1071],[-562,-2518],[5,-1534],[1010,-523],[-1484,-682],[2476,170],[-501,-2281],[1553,-378],[327,-1081],[239,1607],[1279,271],[-193,-2495],[904,1575],[843,524],[666,1465],[1962,-426],[888,-1702],[687,50],[281,-1516],[1081,465],[877,-2131],[2069,-1579],[1437,785],[1494,-1037],[433,636],[1636,-3239],[1773,-386],[360,910],[3398,1866],[1397,-1342],[1104,-2166],[387,-1504],[1266,-1053],[1132,-2958],[448,853],[589,-630],[-2,-21362]],[[106278,946179],[-1,-49412]],[[106277,896767],[0,-73392]],[[106277,823375],[-1,-28115]],[[106276,795260],[0,-1588],[1342,-1612],[173,1644],[1330,-2348],[802,2853],[1723,322],[-346,-4919],[404,-1740],[965,-1648],[226,-2564],[2839,-9770],[299,-4811],[-74,-1471]],[[115959,767608],[1943,4721],[682,110],[264,1748]],[[118848,774187],[34,3836],[479,-24],[183,1767],[-318,751],[1118,1162],[642,1240]],[[120986,782919],[676,1289],[685,-1897],[571,-2466],[-201,-2534],[196,-1512]],[[122913,775799],[197,-1218],[722,-594],[59,-1056],[547,-1130],[415,-3084]],[[124853,768717],[212,-1953],[1164,-2450],[370,-2181],[920,-3383],[-234,-797],[806,-4371]],[[128091,753582],[284,-2841],[560,-2991],[878,-6389],[515,-2749]],[[130328,738612],[338,-2561],[-338,-2230],[903,-864],[-220,-3192],[700,-1259],[104,-3850],[709,243],[1429,-3886]],[[133953,721013],[796,-683],[443,-1861],[433,-443],[117,-1890],[501,-840],[396,491],[280,-2136],[-1,-1873],[-414,-2628],[68,-3449],[428,-5570],[-358,-1661],[-236,-2416],[-442,-2702],[-867,-2699],[-212,1931],[-287,-2059],[-268,662],[-207,4192],[490,1687],[-537,-477],[-157,1948],[583,2169],[-76,7458],[-888,5088],[-486,-470],[-72,869],[-948,-2430],[-397,-118],[344,-1651],[-544,-5283],[-589,1664],[-116,2845]],[[130730,708678],[461,1375],[54,2694],[202,40],[-9,3932],[574,625],[-465,526],[-185,2188],[-506,719],[-71,1280],[-436,1390],[255,2614],[-502,-62],[-114,1369],[-779,1724],[-462,2944],[356,-608],[-84,2468],[-160,-1289],[-1098,1537],[-631,1283]],[[127130,735427],[-12,1829],[1069,643],[-784,626],[-295,2733],[131,1559],[-541,1078],[246,1825],[1153,-2770],[-708,2710],[-430,722],[25,2218]],[[126984,748600],[108,525]],[[127092,749125],[55,266]],[[127147,749391],[-328,-1604]],[[126819,747787],[-268,-754]],[[126551,747033],[-347,2791],[-601,2743],[-35,3375],[303,711],[-120,1531],[-569,-3645],[-843,2824],[-590,340],[-224,2827],[-377,2538],[-7,5750]],[[123141,768818],[-26,12]],[[123115,768830],[93,-1237],[-283,-3191],[-329,1969],[-88,2494]],[[122508,768865],[-496,6831]],[[122012,775696],[-90,222]],[[121922,775918],[-144,-2315],[-359,300],[514,-2661],[-51,-2482],[722,-6540],[-70,-1017],[303,-3963],[-99,-2100],[-512,-56],[-321,1677],[-283,3280]],[[121622,760041],[48,-2295],[-406,960],[-823,-873],[177,2058]],[[120618,759891],[-327,4038],[-328,1992],[899,1274],[-790,545],[-394,2927],[235,-3862],[-191,-2032],[-885,1580],[-102,2460],[-280,-1505],[-688,1343],[-390,-1137],[760,-460],[670,-1418],[-345,-493],[774,-1580],[-470,-1770],[539,847],[340,-512],[457,-4298],[-641,-1196],[-12,909],[-620,-1129],[-299,1069],[42,-2620],[-717,2665],[-654,322],[-1471,4078],[-936,3744]],[[114794,765672],[-73,1821],[-695,2541],[-827,1292],[164,1473],[-569,-631],[-2065,4796]],[[110729,776964],[-495,571],[-782,1958],[461,899]],[[109913,780392],[89,-474],[541,2603],[-419,3604],[332,1618],[530,-2532],[165,177],[-481,2635],[-359,838],[-174,-1871],[-465,-2242],[-1471,-2407],[-1544,735],[-1624,2726],[528,2089],[-370,3152],[-376,-855],[438,-1616],[-624,-1272],[-2761,2302],[-2698,-711],[-927,-990]],[[98243,787901],[-1022,2714],[46,774],[-1003,-33],[-278,1650],[-683,426],[370,3141],[18,2628],[-612,-1565],[-177,-1401],[-661,-2022],[-456,1505],[-714,1071],[-573,-359],[943,3800],[-1115,-764],[259,1691],[-925,-1558],[532,2101],[-1010,-888],[-678,62],[-93,801],[1014,956],[445,1115],[-1048,-704],[-517,1833],[317,3213],[1054,57],[-177,903],[-745,-283],[-1115,-3389],[-360,1426],[-192,-1467],[-587,-1116],[-377,408],[7,3472],[-279,-1340],[36,-2946],[-408,-423]],[[87479,803390],[-298,-138],[-587,2075],[325,2591],[505,2085],[121,1742],[-770,-3524],[-194,-1549],[-273,1236],[-414,-4415],[-943,-1986]],[[84951,801507],[-1,-1122]],[[84950,800385],[697,2105],[-37,-2998],[389,2501],[243,-2671],[-389,-1481],[-417,814],[-485,-1412]],[[84951,797243],[-25,-747]],[[84926,796496],[583,1622],[519,-1020],[524,1882],[285,-1347],[30,-1922],[-995,-2869],[605,-1030],[-718,-2215],[-216,-2677],[-633,-420]],[[84910,786500],[-1246,807],[242,1474],[-372,-167],[-386,-2037],[-206,3701],[-28,-2396],[-482,-1666],[-172,-1732],[-184,2620],[-197,-5326],[-848,3357],[-38,-1545],[418,-800],[-370,-1104],[-67,-1569],[-636,-858],[208,3841],[-674,-5212],[-362,1475],[21,-2088],[-388,-20],[-756,-4011],[-74,2111],[-348,-2231],[-659,934],[-174,-858],[-797,-888],[-20,1049],[-622,715],[206,2741],[545,1203],[719,24],[15,1316],[737,963],[-65,842],[764,2927],[-372,25],[-1226,-2967],[-387,246],[-630,2275],[461,4880],[785,3381],[113,2715],[230,475],[103,3025],[-412,3227],[967,1254],[994,2799],[846,1832],[515,-1977],[449,-352],[796,1052],[346,-814],[1490,-887],[200,-646]],[[83882,803635],[-435,1931],[-461,-308],[-1060,1668],[-902,2472],[707,3049],[1129,2748],[470,301]],[[83330,815496],[-403,602],[-737,-459],[-671,-2022],[-282,-2604],[-1336,126],[-327,2166],[-17,-1517],[-1057,-1636]],[[78500,810152],[-530,-2655],[-888,-709],[-891,-2927],[269,-2258],[-403,43],[-549,-1340],[-154,-1303],[-582,-1608],[-230,-3803],[-475,-1478],[-1034,410],[708,-1448],[308,-1772],[-383,-2913],[-286,-680],[-1149,-274],[-158,-989],[796,2],[-164,-2224],[-453,-1067],[-564,295],[229,1314],[-338,1411],[33,-1984],[-398,-2576],[-670,-197],[277,-1966],[-1054,-1700],[-61,-2764],[-262,-488],[165,-2860],[276,1050],[1026,35],[412,-1681],[604,-1165],[58,-1233]],[[71985,766650],[159,17]],[[72144,766667],[-256,-165],[-280,-2562],[-647,-1820],[-614,-90],[-174,-2212],[-343,-44],[105,-2404],[-386,-649],[215,-848],[-603,-2221],[-48,-1387],[-356,1779],[54,-1574],[-326,275],[-477,-1769],[-794,237],[-111,-2260],[-819,-2015],[-130,-1037],[-601,883],[69,-2348],[-396,-579],[8,-1505],[-775,384],[-34,-2432],[-519,654],[-902,-2724],[-22,-1053],[572,813],[-197,-1902],[142,-997]],[[63499,735095],[-533,-3229],[-498,991],[-282,-2643],[-166,1250],[-876,-3730],[-513,1840],[-92,-1738],[-418,-1466],[296,-1221],[-476,-272],[-290,1208],[-838,-1435],[-237,-1294],[834,518],[-97,-1512],[-772,886],[46,-1061],[-586,328],[-1006,-4054],[729,1416],[657,-1055],[-889,-5668],[-359,2476],[4,-2388],[-570,564],[-201,-1661],[-1170,-914],[-208,-1647],[-122,1992],[-210,-168],[97,-2311],[-193,-2336]],[[54560,706761],[-222,3583],[-465,487],[-226,-1331],[-227,543],[-129,-1791],[-940,-1953],[-503,-2559],[-202,1961],[-157,-2246],[-320,-160],[-389,1335],[-213,-1550],[-894,-1527],[-527,87],[101,2154],[312,2133],[-635,501],[-314,-1612],[37,-2336],[-533,-3433],[-423,296],[235,-2134],[-319,-953],[-327,1503],[-197,-2494],[-615,575],[-125,3742],[-386,953],[-194,-965],[303,-1471],[137,-4091],[-323,1731],[-87,-1650],[-582,-104],[-227,2389],[-557,961],[-45,-1927],[534,-1473],[-912,-2585],[204,4150],[-79,1484],[293,977],[935,318],[218,2402],[378,1261],[397,-106],[-126,1804],[846,4218],[1241,3632],[1202,1198],[763,131],[637,709],[-431,-1918],[671,-3199],[315,-565],[-272,3532],[664,-283],[156,-1434],[616,-516],[79,1328],[-803,1925],[-146,1183],[589,5125],[1474,4921],[1402,2353],[1202,3896]],[[56429,729876],[0,-164]],[[131840,702692],[477,-1813],[-260,-3591],[-338,3444],[121,1960]],[[133474,712615],[473,-2306],[365,-3908],[-109,-3956],[-237,-2723],[-412,-1256],[-725,1926],[512,3110],[-666,-3077],[-840,2748],[551,2915],[-269,716],[-18,1677],[520,1253],[-148,1905],[1003,976]],[[51409,765657],[-524,-4199],[-534,-542],[51,2808],[1007,1933]],[[61034,724293],[684,-546],[-930,-219],[246,765]],[[65699,709070],[-504,743],[538,1338],[-34,-2081]],[[70400,724037],[-204,-1087],[-507,-19],[711,1106]],[[68717,724702],[-248,-2013],[-521,-1695],[195,2304],[574,1404]],[[69851,724354],[-436,-1711],[-363,958],[373,1308],[426,-555]],[[72264,735888],[652,-276],[179,-1133],[-749,-602],[-369,-1913],[-211,2137],[498,1787]],[[71587,750055],[468,-1112],[219,-1969],[-713,1537],[26,1544]],[[72120,750653],[753,-1609],[143,801],[402,-896],[-318,-1580],[497,-23],[268,1873],[865,-1804],[-646,-1899],[256,-25],[-10,-2224],[878,340],[-525,-3652],[-487,209],[-630,1356],[-203,-636],[516,-1216],[-217,-2411],[-308,-183],[-530,1368],[-252,-544],[428,-942],[-369,-902],[-532,226],[-638,-2935],[-448,348],[322,-1679],[-993,-4198],[-692,-436],[210,1779],[607,2267],[-322,-122],[145,1970],[-434,-1663],[-185,436],[446,2279],[-692,794],[-670,-678],[121,-1421],[343,1135],[574,213],[-521,-3914],[-672,1507],[-36,3723],[-598,1836],[84,2427],[258,1668],[756,2433],[973,103],[65,-1861],[626,-4463],[-146,2063],[79,2795],[-205,1554],[707,-247],[-927,1791],[6,1470],[589,1559],[420,-1165],[70,-2442],[173,2477],[785,-907],[-89,1984],[525,-1432],[-620,2635],[25,690]],[[72294,752633],[298,-243],[385,-2001],[-773,1279],[-524,168],[436,1600],[178,-803]],[[74768,758553],[203,-1495],[404,602],[-151,-1955],[514,1173],[-65,-2164],[-262,-1096],[-683,1715],[168,-2076],[-474,81],[-333,-1022],[-38,2484],[-168,-2623],[-420,-227],[-2,-1319],[-1062,2147],[-116,1830],[591,-260],[-304,1148],[155,946],[718,-477],[-71,2281],[415,1422],[495,-330],[342,-2521],[144,1736]],[[73815,761335],[865,1186],[-377,-3031],[-415,471],[-73,1374]],[[123807,754929],[26,-1188],[798,113],[222,-709]],[[124853,753145],[18,23]],[[124871,753168],[418,538]],[[125289,753706],[-147,-677],[907,-5880],[24,-2256],[-213,92],[-809,7066],[77,-1904],[-257,510],[590,-4994],[507,-2211],[51,-2144],[-522,218],[645,-2298],[-310,-1473],[-532,1666],[53,-3416],[-405,-716],[-195,-1446],[-545,-1275],[-191,2104],[52,2518],[366,839],[-4,1567],[-686,5962],[71,2065],[-287,4181],[127,721]],[[123656,752525],[58,1722]],[[123714,754247],[-96,-1670],[-340,1775],[-158,4018],[687,-3441]],[[124293,757146],[750,-2547],[-1015,763],[-163,962],[428,822]],[[125029,711856],[426,56],[-445,-1309],[19,1253]],[[122848,727161],[-437,-147],[76,1437],[-513,245],[-61,2351],[448,1679],[-481,1224],[98,2801],[-465,-185],[-451,2135],[587,60],[-327,842],[147,1990],[629,564],[-76,-1197],[394,257],[556,-1676],[492,7],[-82,-2392],[463,-6885],[222,-4906],[-139,-7130]],[[123928,718235],[-1,-1610]],[[123927,716625],[-394,1362],[-698,5371],[279,1647],[-447,-368],[181,2524]],[[130215,719801],[108,-2063],[754,-2315],[-336,-626],[253,-2100],[-617,-805],[-300,1242],[211,718],[-488,1319],[-281,-690],[-163,3076],[325,412],[163,1719],[371,113]],[[129377,721918],[250,-1134],[-116,-2167],[-588,-789],[-541,1883],[181,1807],[814,400]],[[130831,716911],[-490,1839],[74,2204],[-143,1693],[378,-777],[303,-2038],[326,198],[294,-2758],[-436,-1557],[-306,1196]],[[128815,728558],[1034,-4174],[-771,-1664],[-361,266],[61,2359],[-148,3100],[185,113]],[[126153,727422],[-66,1104],[447,-558],[-460,-4949],[-272,-4761],[208,396],[-146,-3602],[-196,615],[-111,3651],[-137,-5807],[-277,1260],[-135,3642],[145,2920],[526,49],[-192,2101],[-590,341],[100,963],[-331,2219],[-29,2428],[339,-758],[184,2186],[563,-1046],[430,-2394]],[[126096,733937],[1281,-1597],[901,-116],[344,-1458],[134,-4906],[-200,-1131],[-499,1925],[-370,3180],[207,-4438],[380,-383],[50,-1490],[-322,-1689],[-658,1032],[13,-897],[-616,-308],[-202,4527],[180,2218],[-302,119],[-133,1682],[-635,2448],[447,1282]],[[121078,751604],[-276,-1102]],[[120802,750502],[345,-330],[594,2364],[322,432]],[[122063,752968],[1024,-1345],[153,-1323],[-237,-1608],[-620,1179],[756,-2767],[-774,-494],[-453,1350],[-1420,2800]],[[120492,750760],[1454,-3708],[395,-1834],[350,1018],[503,16],[257,-5147],[-688,-337],[-264,1058],[-1794,4643],[717,-3300],[33,-2583],[-443,-1626],[-365,435],[-452,2590],[539,-1592],[-959,3723],[85,790],[-518,1930]],[[119342,746836],[-119,768]],[[119223,747604],[-113,-8]],[[119110,747596],[-67,-6]],[[119043,747590],[175,3136],[917,-3047]],[[120135,747679],[12,85]],[[120147,747764],[-1106,4388],[167,2241],[346,-765],[279,1062],[445,-194],[426,1507],[912,-2103],[-538,-2296]],[[118824,752542],[436,-1596],[-323,-3068],[-280,1218],[167,3446]],[[121729,756658],[0,124]],[[121729,756782],[0,-124]],[[120877,738496],[390,-2216],[135,-2451],[-165,-1458],[-606,-381],[12,6413],[234,93]],[[40063,839903],[771,-536],[-861,-2773],[-123,3413],[213,-104]],[[40964,844347],[884,-2223],[77,-1915],[441,-2172],[-39,-1739],[-704,2419],[-1775,1536],[91,1825],[445,2301],[580,-32]],[[42066,848667],[903,-976],[561,-1663],[-705,-1821],[-339,-2285],[-564,-2],[-710,2401],[-621,812],[14,1297],[651,1760],[810,477]],[[46896,791982],[260,-1285],[-269,-665],[9,1950]],[[36192,795959],[181,-1952],[581,363],[562,-947],[-125,-4413],[449,-2402],[-1266,-1162],[-486,-2126],[-684,2000],[-494,-131],[-1055,2670],[-324,-89],[-642,1570],[-208,2198],[273,856],[1285,-623],[56,1282],[1009,2111],[905,-187],[-17,982]],[[17304,799216],[127,-1746],[803,-2157],[617,-183],[448,-1365],[-1030,65],[-999,3082],[-322,373],[356,1931]],[[39654,805231],[135,-1106],[641,589],[-99,-1482],[647,41],[525,-808],[141,-1889],[-483,-1833],[-426,-534],[213,-1308],[-376,-571],[-318,-2845],[-421,135],[-776,2413],[438,1980],[-611,-775],[-639,998],[1250,2977],[-198,1359],[400,589],[-43,2070]],[[97243,787641],[-969,-3439],[63,996],[906,2443]],[[87222,789210],[-180,-1772],[-423,-410],[603,2182]],[[86635,788749],[222,2200],[234,-961],[-456,-1239]],[[86657,791573],[-367,-3115],[-331,1166],[698,1949]],[[89187,794370],[361,-14],[-243,-1523],[503,637],[-806,-2688],[-815,-3927],[158,-1241],[-672,-1392],[-694,-249],[129,1479],[1250,4306],[686,2953],[143,1659]],[[86770,795107],[-72,-1859],[-323,817],[395,1042]],[[90856,797012],[511,-366],[-55,-1276],[665,500],[124,-712],[-949,-1371],[-533,-1467],[-220,828],[596,1566],[-651,-377],[-24,893],[536,1782]],[[87021,792777],[236,3392],[602,-294],[-414,-4995],[-424,1897]],[[92921,798974],[-9,-545],[-1146,-2071],[-223,1207],[1378,1409]],[[88340,800844],[382,-576],[-511,-770],[129,1346]],[[84950,800816],[1,-141]],[[84951,800675],[-1,141]],[[86236,802132],[283,-1843],[-420,600],[137,1243]],[[86677,805210],[323,-2117],[-624,-286],[301,2403]],[[71670,777076],[234,-1111],[-578,-409],[344,1520]],[[79473,776784],[-279,-2074],[91,2387],[188,-313]],[[75949,796147],[-338,-1237],[225,2636],[113,-1399]],[[79658,983425],[-185,-1457],[-394,1372],[579,85]],[[46592,855663],[132,-1524],[-911,379],[779,1145]],[[20846,858391],[155,-1916],[1767,-2170],[1394,2515],[527,-233],[507,-1478],[154,-2243],[1091,-1044],[302,-1308],[1484,-327],[900,-741],[-444,-2851],[-1263,663],[-757,-2936],[125,-925],[-598,-398],[121,1508],[-579,2032],[-993,769],[95,1587],[-982,2254],[-776,1164],[-1178,-1499],[-407,-1269],[-853,1089],[-307,2233],[515,5524]],[[40155,909679],[-379,-812],[-1697,-1707],[2076,2519]],[[129335,693546],[271,-1010],[-141,-1955],[-386,2864],[256,101]],[[133465,694933],[143,-1619],[-432,-1116],[-420,1401],[709,1334]],[[129050,698432],[385,-3029],[-188,-665],[-381,868],[234,1060],[-50,1766]],[[128270,699419],[265,-2151],[-73,-1620],[898,-5179],[113,-1526],[-466,199],[-649,4105],[-450,3522],[51,2603],[311,47]],[[132791,699517],[330,-1553],[-34,-2741],[-744,304],[318,2135],[-200,1262],[330,593]],[[127590,701351],[341,-1447],[-98,-960],[-490,-120],[13,2204],[234,323]],[[126996,702605],[285,-601],[-587,-1676],[302,2277]],[[127348,703974],[-506,-707],[254,1440],[252,-733]],[[126550,705223],[399,-333],[-241,-1814],[-292,1013],[134,1134]],[[127577,705503],[193,-1280],[-213,-947],[-254,1520],[274,707]],[[126975,710441],[673,-1209],[-594,136],[47,-1542],[-469,1638],[343,977]],[[127738,711890],[120,-2595],[-287,1329],[167,1266]],[[132952,712558],[-518,-394],[513,1289],[5,-895]],[[127378,716539],[385,-260],[-14,-2495],[-237,369],[-704,-1255],[-241,-1211],[-256,709],[517,3076],[550,1067]],[[126878,720141],[452,-580],[748,57],[385,-2788],[-192,-1470],[384,-1821],[435,266],[496,-1761],[457,-2620],[48,-3196],[266,734],[170,-1960],[371,-1718],[-851,2044],[-551,-1434],[684,586],[160,-2342],[298,487],[445,-2791],[-465,-922],[455,-352],[205,1480],[89,-3147],[-431,-827],[397,-512],[100,-2503],[-398,-58],[420,-1193],[-181,-2479],[-613,701],[-450,4337],[-562,-35],[259,2639],[-330,-709],[133,1822],[-301,-502],[-724,2251],[-726,264],[29,1948],[514,-22],[-360,1667],[235,2818],[-439,-874],[-449,797],[645,3530],[-239,1458],[-150,5159],[-813,307],[-188,1878],[133,1386]],[[312146,5060],[-281,902],[86,3226]],[[311951,9188],[-19,1838]],[[311932,11026],[-107,568]],[[311825,11594],[-39,1453]],[[311786,13047],[223,739]],[[312009,13786],[157,1825]],[[312166,15611],[404,-454]],[[312570,15157],[157,-88]],[[312727,15069],[180,63]],[[312907,15132],[200,-68]],[[313107,15064],[497,21]],[[313604,15085],[146,-83]],[[313750,15002],[266,102]],[[314016,15104],[248,-34]],[[314264,15070],[97,-158]],[[314361,14912],[282,-188]],[[314643,14724],[206,-56]],[[314849,14668],[74,-409]],[[314923,14259],[15,-206]],[[314938,14053],[199,390]],[[315137,14443],[122,139]],[[315259,14582],[455,-646]],[[315714,13936],[219,-708]],[[315933,13228],[225,-428]],[[316158,12800],[154,393],[-56,-1846]],[[316256,11347],[125,-1005],[-200,-416]],[[316181,9926],[-216,-625]],[[315965,9301],[-160,-1939]],[[315805,7362],[-150,-1087]],[[315655,6275],[-164,-577]],[[315491,5698],[-308,-32]],[[315183,5666],[-140,-215]],[[315043,5451],[-379,-88]],[[314664,5363],[-367,291]],[[314297,5654],[-318,76]],[[313979,5730],[-242,-150]],[[313737,5580],[-446,66]],[[313291,5646],[-154,397]],[[313137,6043],[-273,-820]],[[312864,5223],[-20,-8]],[[312844,5215],[-339,-40]],[[312505,5175],[-359,-115]],[[316936,9054],[328,-560],[-757,-908],[-91,685],[520,783]],[[318309,12803],[169,-865],[-544,830],[375,35]],[[318661,1986],[376,-1085],[-740,-781],[24,1181],[340,685]]],"transform":{"scale":[0.0003589261789261791,0.0000537148685138684],"translate":[-179.1473399999999,17.67439566600018]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment