Skip to content

Instantly share code, notes, and snippets.

@GerardoFurtado
Created January 4, 2020 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GerardoFurtado/35411b29afd3b69f5310f395109b09e2 to your computer and use it in GitHub Desktop.
Save GerardoFurtado/35411b29afd3b69f5310f395109b09e2 to your computer and use it in GitHub Desktop.
Simple Flight Animation
license: mit
<!DOCTYPE html>
<meta charset="utf-8">
<style type="text/css">
</style>
<body>
</body>
<script src="https://unpkg.com/topojson@3.0.2/dist/topojson.js"></script>
<script src="https://d3js.org/d3.v5.min.js"></script>
<script>
var margins = {top:20, bottom:300, left:30, right:100};
var height = 600;
var width = 900;
var totalWidth = width+margins.left+margins.right;
var totalHeight = height+margins.top+margins.bottom;
var projection = d3.geoMercator().rotate([-80,0]).scale(500).translate([-200,500]);
var svg = d3.select('body')
.append('svg')
.attr('width', totalWidth)
.attr('height', totalHeight);
var path = d3.geoPath().projection(projection);
/*
var svg = d3.select("body")
.append('svg')
.attr('width', 310)
.attr('height', 150);
*/
var topoData = d3.json("world-continents.json");
var graphGroup = svg.append('g')
.attr('transform', "translate("+margins.left+","+margins.top+")");
svg.append('rect')
.attr('width', width*2)
.attr('height',height*2)
.attr('x',0)
.attr('y',0)
.style('fill',"steelblue");
topoData.then(function(mapData) {
var map = svg.append('g').attr('class', 'boundary');
var continents = topojson.feature(mapData, mapData.objects.continent).features;
var world = map.selectAll('path').data(continents);
//var continent = map.selectAll('.continent').data(continents);
//var continents = topojson.feature(mapData, mapData.objects.continent).features;
world.enter()
.append('path')
.attr('d', path)
.style('fill','lightgreen');
var plane = svg.append("path")
.attr("class", "plane")
.style('fill','#fff')
.attr("d", "m25.21488,3.93375c-0.44355,0 -0.84275,0.18332 -1.17933,0.51592c-0.33397,0.33267 -0.61055,0.80884 -0.84275,1.40377c-0.45922,1.18911 -0.74362,2.85964 -0.89755,4.86085c-0.15655,1.99729 -0.18263,4.32223 -0.11741,6.81118c-5.51835,2.26427 -16.7116,6.93857 -17.60916,7.98223c-1.19759,1.38937 -0.81143,2.98095 -0.32874,4.03902l18.39971,-3.74549c0.38616,4.88048 0.94192,9.7138 1.42461,13.50099c-1.80032,0.52703 -5.1609,1.56679 -5.85232,2.21255c-0.95496,0.88711 -0.95496,3.75718 -0.95496,3.75718l7.53,-0.61316c0.17743,1.23545 0.28701,1.95767 0.28701,1.95767l0.01304,0.06557l0.06002,0l0.13829,0l0.0574,0l0.01043,-0.06557c0,0 0.11218,-0.72222 0.28961,-1.95767l7.53164,0.61316c0,0 0,-2.87006 -0.95496,-3.75718c-0.69044,-0.64577 -4.05363,-1.68813 -5.85133,-2.21516c0.48009,-3.77545 1.03061,-8.58921 1.42198,-13.45404l18.18207,3.70115c0.48009,-1.05806 0.86881,-2.64965 -0.32617,-4.03902c-0.88969,-1.03062 -11.81147,-5.60054 -17.39409,-7.89352c0.06524,-2.52287 0.04175,-4.88024 -0.1148,-6.89989l0,-0.00476c-0.15655,-1.99844 -0.44094,-3.6683 -0.90277,-4.8561c-0.22699,-0.59493 -0.50356,-1.07111 -0.83754,-1.40377c-0.33658,-0.3326 -0.73578,-0.51592 -1.18194,-0.51592l0,0l-0.00001,0l0,0z");
//start
var coordinatesSH = projection([121.4737,31.2304]);
var coordinatesHN = projection([-157.8583,21.3069]);
var coordinatesTK = projection([139.7690,35.3804]);
var routeOne = svg.append('path')
.datum({type: "LineString", coordinates: [[121.4737,31.2304],[139.7690,35.3804]]})
.attr('class', 'route')
.attr('d', path);
function transition(plane, route) {
var l = route.node().getTotalLength();
plane.transition()
.duration(2000)
.attrTween('transform', delta(route.node()));
}
function delta(path) {
var l = path.getTotalLength();
return function(i) {
return function(t) {
var p = path.getPointAtLength(t*l);
return "translate(" +p.x+","+p.y+ ")";
}
}
}
transition(plane, routeOne);
svg.append("circle")
.attr("cx", coordinatesSH[0])
.attr("cy", coordinatesSH[1])
.attr("r", 3)
.style("fill", "black");
svg.append("circle")
.attr("cx", coordinatesHN[0])
.attr("cy", coordinatesHN[1])
.attr("r", 3)
.style("fill", "black");
svg.append("circle")
.attr("cx", coordinatesTK[0])
.attr("cy", coordinatesTK[1])
.attr("r", 3)
.style("fill", "black");
});
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.007898374251299942,0.003946132450970359],"translate":[-180,-55.91391747071693]},"arcs":[[[14099,282],[-54,-37],[-92,40],[-56,-17],[-184,63],[-4,51],[90,-11],[19,33],[100,18],[-8,129],[98,55],[-40,42],[-74,-26],[-27,38],[113,203],[56,-44],[50,32],[60,-108],[36,-157],[87,-115],[103,-104],[81,-46],[87,2],[-22,-70],[-80,3],[-73,-37],[-62,37],[-204,26]],[[15421,5947],[7,-153],[-30,-6],[-21,-154],[21,-128],[-17,-63],[46,-80],[80,-67],[47,-119],[-26,-62],[13,-112],[70,-57],[4,-115],[-49,-143],[-58,-116],[-10,-71],[-71,-70],[-115,-67],[-229,-72],[-82,-9],[-65,19],[-42,-42],[38,-87],[-7,-95],[-25,-12],[-22,-115],[33,-85],[-14,-54],[-96,-72],[-86,-1],[-148,114],[-29,-76],[23,-130],[-10,-117],[64,-115],[55,1],[-4,57],[45,35],[27,-69],[-3,-103],[-62,-34],[-27,86],[-37,7],[-51,-64],[87,-61],[-55,-35],[-72,-133],[14,-92],[-13,-120],[-46,-51],[11,-80],[-76,9],[-41,-57],[-44,-5],[-58,-96],[-37,-139],[25,-102],[81,-112],[132,-50],[-13,-187],[-79,-116],[-82,-69],[-65,-116],[-13,-165],[-43,-77],[-102,-62],[-25,-58],[-12,-106],[30,-169],[72,-168],[-104,27],[-169,-132],[-36,-7],[-24,-161],[3,-94],[-33,-30],[-104,42],[-51,76],[139,74],[14,83],[-154,-125],[-7,-67],[-86,77],[131,150],[-62,33],[-38,-95],[-40,56],[-53,19],[51,116],[-32,22],[-91,283],[-5,116],[-49,69],[55,32],[-22,180],[4,196],[25,32],[-41,130],[117,-21],[-15,67],[-116,2],[38,139],[35,8],[-27,103],[-49,-1],[-55,37],[-78,0],[128,202],[63,13],[54,-112],[27,90],[4,103],[25,33],[-3,97],[29,3],[50,48],[5,68],[-75,96],[38,89],[-17,76],[44,114],[-10,44],[-3,236],[28,46],[-40,61],[-30,-77],[-58,7],[-18,49],[-19,150],[30,252],[39,44],[23,118],[-41,233],[10,83],[-25,95],[-1,90],[49,38],[16,121],[22,11],[43,285],[53,114],[21,116],[4,126],[49,168],[-10,84],[19,40],[20,162],[-17,45],[4,106],[-19,158],[-1,205],[48,104],[-2,130],[-27,121],[44,147],[5,105],[28,83],[-6,116],[22,42],[19,173],[-9,121],[7,75],[27,50],[-18,207],[11,188],[-17,68],[9,116],[24,2],[11,90],[17,261],[11,59],[-17,156],[9,189],[-29,329],[7,83],[-134,206],[-20,88],[-37,24],[-61,78],[-131,140],[-48,28],[-96,125],[-88,84],[-50,129],[-48,60],[-44,129],[12,152],[-5,46],[-75,222],[-5,46],[-40,58],[-5,108],[-55,90],[-15,134],[-51,157],[-42,242],[-56,191],[-6,55],[-61,127],[-30,154],[-33,81],[-42,62],[-102,120],[31,106],[-43,112],[17,48],[-34,87],[10,111],[61,134],[55,87],[49,43],[29,159],[-57,-4],[-19,-32],[-42,75],[-25,203],[14,69],[-22,70],[38,32],[24,86],[-9,56],[54,109],[7,129],[-8,65],[79,65],[71,44],[-13,92],[19,54],[35,-10],[-17,103],[47,116],[31,-34],[43,29],[13,113],[56,139],[-28,97],[13,137],[-3,177],[-18,89],[30,49],[-21,114],[9,78],[-70,175]],[[12927,16003],[10,61],[61,58],[13,100],[-31,108],[13,35]],[[12993,16365],[13,-43],[69,-105],[-5,81],[12,71],[53,83],[11,61],[33,46],[36,6],[-4,64],[18,223],[85,133],[43,-35],[40,87],[113,-6],[68,102],[62,48],[16,56],[61,91],[53,-35],[16,-59],[-34,-85],[-73,-42],[2,-54],[46,-167],[-6,-67],[-43,-89],[-20,-71],[20,-83],[30,-36],[-4,-60],[31,-18],[58,80],[2,101],[-54,162],[-8,89],[30,59],[54,54],[87,45],[-15,126],[36,83],[23,-47],[27,-139],[44,18],[52,-21],[56,-70],[13,-110],[24,-65],[24,-5],[177,42],[53,-8],[32,-74],[88,-54],[54,2],[76,95],[41,-8],[37,46],[103,33],[-14,-89],[120,-148],[56,-2],[81,-109],[-39,-112],[15,-95],[78,17],[44,-20],[109,-127],[63,-120],[25,-69],[9,-108],[42,-16],[98,-149],[28,-72],[52,8],[84,-43],[19,42],[136,2],[93,-36],[66,-67],[66,-31],[135,-219],[52,-38],[37,-70],[18,-72],[-1,-128],[48,-289],[28,-102],[39,-4],[34,-39],[5,-77],[-13,-73],[-42,-65],[-61,-164],[-52,-55],[-31,-107],[-32,-70],[-2,-71],[-25,-138],[74,81],[62,86],[2,-133],[32,-115],[25,-21],[50,38],[76,-18],[93,129],[38,18],[24,135],[109,48],[26,-40],[49,-24],[28,-45],[32,3],[46,-66],[21,28],[56,-113],[21,36],[73,-111],[5,-126],[-28,-151],[33,12],[8,101],[38,38],[7,-59],[68,24],[21,49],[76,-54],[33,-49],[140,-43],[107,34],[65,-16],[79,-84],[89,-125],[25,-11],[45,-111],[63,-114],[36,-23],[18,-54],[75,-49],[75,14],[62,-24],[31,-86],[28,-191],[20,-204],[11,-30],[-2,-189],[-16,-112],[-46,-214],[-70,-137],[-23,-84],[-47,-111],[-63,-69],[-67,-201],[-28,-122],[-50,-150],[-34,-75],[-24,54],[-29,-3],[-13,-108],[-25,-52],[14,-162],[-18,-170],[18,-263],[8,-35],[-24,-148],[-20,-184],[3,-105],[-11,-73],[-28,-36],[-29,-130],[2,-227],[-40,-88],[-41,-187],[-52,-92],[-40,-167],[14,-108],[-35,-50],[-54,-34],[-42,-83],[-7,-87],[-124,-6],[-91,-19],[-14,39],[-41,-39],[-31,14],[-81,-132],[-46,-38],[-9,-43],[-45,20],[-140,-137],[-27,-60],[-82,-91],[-16,-78],[-60,-107],[-23,-106],[-9,-172],[13,-75],[-9,-160],[11,-54],[-32,-190],[-67,-79],[-59,-132],[-30,-94],[-34,-164],[-51,-148],[-55,-111],[-3,85],[57,90],[24,120],[-74,16],[-41,-209],[-60,-57],[-41,-136],[15,-85],[-32,-81],[-31,-153],[-109,-195],[-36,-132],[-59,-74],[-89,-73],[-56,43],[-52,7],[-66,-33],[-102,112],[-89,-3],[-72,135],[3,200],[24,11],[16,50],[-19,118]],[[16304,14028],[-6,-117],[-65,-109],[14,153],[22,60],[35,13]],[[16447,14136],[56,-28],[55,25],[100,-30],[-14,-160],[-38,-81],[0,-58],[-49,-46],[-42,-6],[-32,-44],[-31,30],[-44,-33],[-51,103],[3,194],[25,119],[62,15]],[[16519,14246],[-38,-74],[-36,54],[58,41],[16,-21]],[[14136,232],[-1,-121],[-119,-4],[-75,109],[183,31],[12,-15]],[[14205,253],[94,-40],[-26,-59],[-113,28],[45,71]],[[13546,614],[104,-72],[-25,-52],[-156,83],[77,41]],[[13257,1491],[58,-48],[-49,-55],[-30,22],[21,81]],[[13334,1821],[30,-151],[-5,-159],[-48,-16],[-34,40],[-42,133],[68,4],[16,54],[-32,62],[47,33]],[[13329,1949],[25,-115],[-64,44],[39,71]],[[13555,2905],[8,-74],[-48,-50],[-27,75],[32,59],[35,-10]],[[13426,3574],[53,-7],[6,-78],[-41,-112],[38,-51],[-46,-160],[-53,25],[21,165],[-8,61],[30,157]],[[11225,14208],[20,-92],[49,-139],[-17,-54],[-59,-12],[-5,61],[43,53],[-32,66],[1,117]],[[15273,1155],[-64,-150],[-49,-10],[-11,106],[45,39],[79,15]],[[15353,1162],[105,-12],[5,-89],[-172,-122],[-45,75],[107,148]],[[41118,3849],[120,-52],[90,-60],[75,48],[54,-8],[65,65],[48,-63],[-9,-202],[-41,-201],[7,-148],[-26,-17],[-26,107],[-29,-26],[-63,-182],[-105,40],[-7,51],[-59,82],[-31,92],[-7,159],[-36,66],[-40,180],[20,69]],[[40214,5152],[17,-73],[-38,-53],[-31,25],[-63,-20],[-12,79],[127,42]],[[42197,7901],[11,-70],[-37,-166],[-17,29],[11,93],[32,114]],[[40100,10701],[0,-127],[-33,-7],[-4,86],[37,48]],[[39313,11312],[63,-20],[34,42],[32,-50],[-12,-56],[-57,-81],[-62,70],[2,95]],[[40837,11456],[25,-68],[16,-105],[0,-117],[42,-33],[-16,-88],[45,-72],[13,-288],[27,-150],[41,-28],[56,71],[21,-97],[76,-99],[-1,-150],[24,-133],[-8,-97],[48,-112],[47,-189],[-17,-153],[41,-74],[-8,-88],[24,-51],[138,-113],[17,-77],[72,-35],[25,-58],[44,-19],[-8,-114],[62,-94],[21,-105],[20,-173],[35,-51],[29,62],[49,-94],[40,11],[8,-58],[-7,-116],[11,-92],[92,-136],[44,-39],[16,-77],[44,-59],[37,-128],[28,-11],[-3,-99],[36,-65],[-13,-86],[17,-194],[-12,-49],[42,-144],[18,-116],[2,-152],[-33,-115],[-3,-95],[-42,-263],[12,-41],[-19,-149],[-53,-172],[3,-71],[-89,-107],[-52,-168],[-22,-121],[-41,-82],[-12,-115],[-85,-298],[-2,-92],[-30,-154],[10,-144],[-64,-73],[-149,-10],[-90,-65],[-90,-143],[-60,-24],[-18,-65],[-90,155],[-55,57],[-17,66],[-40,-30],[-34,-72],[-110,-141],[-144,125],[-57,21],[-65,-23],[-38,62],[-53,15],[-45,47],[-31,93],[-47,85],[-9,58],[23,84],[-48,184],[-55,74],[-10,48],[-54,-59],[-12,77],[12,152],[-63,110],[-46,-221],[-34,14],[-57,-40],[10,97],[52,-4],[9,76],[-8,115],[62,161],[-17,68],[30,34],[-18,86],[-57,-90],[-29,-130],[-78,-63],[-30,-43],[-54,-177],[-43,-28],[-27,61],[-25,189],[-43,65],[-24,105],[-49,15],[-26,114],[20,48],[-51,71],[-52,28],[-34,-16],[-44,61],[-72,-19],[-88,108],[-45,32],[-44,-31],[-86,7],[-147,-29],[-123,-100],[-93,-48],[-77,-11],[-62,21],[-187,-170],[-75,-55],[-21,-113],[-49,-80],[-53,-30],[-16,36],[-90,-17],[-37,26],[-61,1],[-194,-27],[-55,-55],[-24,-75],[-57,-2],[-114,-144],[-174,-3],[-80,50],[-35,73],[-52,58],[-40,13],[-8,147],[57,17],[33,83],[-8,158],[21,15],[-11,242],[-64,208],[-30,202],[5,140],[-19,98],[-32,78],[-6,66],[-46,106],[-3,106],[-17,94],[-53,162],[37,85],[45,6],[3,83],[-82,278],[-29,163],[9,86],[37,101],[8,117],[-21,120],[46,182],[21,-116],[27,-11],[32,127],[103,87],[61,116],[102,112],[77,-28],[62,28],[37,64],[89,26],[30,70],[63,-21],[85,41],[90,69],[31,41],[57,174],[73,149],[-10,160],[4,77],[49,117],[27,10],[14,63],[33,-75],[32,-132],[55,50],[-23,195],[40,31],[32,-40],[47,77],[-24,55],[0,80],[29,14],[27,92],[36,24],[2,81],[76,72],[37,-16],[13,79],[32,48],[22,-48],[49,120],[19,-59],[40,3],[61,-141],[35,-50],[2,-91],[43,77],[136,-48],[15,38],[-47,97],[18,81],[28,19],[15,128],[55,48],[-18,96],[28,25],[32,116],[53,6],[3,54],[57,-38],[112,21],[31,53],[6,126],[30,45],[29,-87],[78,-24],[55,-63],[53,-8],[60,-54],[57,46],[82,-27],[34,62],[31,-86],[30,-24],[-32,-75],[-5,-72],[-96,-94],[-4,-69],[20,-50],[-13,-86],[-65,-153],[10,-53],[98,-120],[3,-31],[63,-90],[31,2],[45,-58],[48,-33],[56,-113],[108,-55],[30,-110],[92,-91],[64,18],[47,73],[9,84],[32,80],[28,157],[-6,36],[37,235],[-19,134],[8,103],[-7,128],[21,79],[-14,72],[32,85],[-21,51],[35,138],[24,141],[5,103],[47,57]],[[45360,9772],[38,-67],[12,-119],[-98,-47],[-70,42],[-11,39],[17,79],[57,69],[55,4]],[[45567,10056],[0,-123],[-77,-23],[-77,-45],[-11,52],[40,75],[107,77],[30,8],[0,-5],[-12,-16]],[[43971,8920],[16,-110],[-46,41],[30,69]],[[43555,9080],[29,-51],[32,-4],[116,-194],[128,-164],[65,-93],[-20,-79],[-69,61],[-70,99],[-49,46],[-47,74],[-34,86],[-58,107],[-23,112]],[[44703,5449],[5,-101],[45,-46],[53,-2],[31,-81],[24,8],[30,-78],[-9,-99],[33,-66],[8,-146],[53,-30],[36,24],[46,-20],[14,-179],[66,-33],[80,-66],[52,27],[23,61],[68,29],[36,-40],[-27,-72],[-6,-134],[-43,-58],[-10,-82],[-63,2],[-41,-31],[-20,-63],[17,-78],[-25,-107],[-62,-132],[-49,-139],[-80,-92],[-19,49],[-72,31],[41,79],[38,174],[-34,96],[-51,23],[-31,54],[-68,56],[9,65],[92,75],[34,272],[-46,190],[-6,154],[-53,36],[-117,265],[6,74],[-51,126],[43,5]],[[44056,2335],[28,-101],[-72,5],[44,96]],[[44681,3904],[-29,-42],[49,-54],[19,-105],[74,84],[53,-11],[-3,-219],[-81,-156],[-34,-117],[-60,-54],[-40,-140],[-147,-147],[-17,-153],[-42,-146],[-129,-250],[-103,-54],[-207,109],[-81,8],[-35,104],[93,221],[67,84],[84,146],[56,14],[111,103],[71,115],[53,42],[52,90],[46,193],[74,105],[5,134],[67,96],[34,0]],[[42390,12780],[33,-18],[48,-148],[33,-36],[32,-114],[-31,-36],[-46,32],[-21,48],[3,60],[-30,32],[-35,108],[14,72]],[[42064,13107],[22,-43],[-15,-145],[-38,-10],[13,-122],[-80,-58],[-32,-66],[-94,-84],[-106,-6],[-21,50],[-41,-11],[-66,85],[-30,9],[6,84],[69,-6],[53,-31],[74,38],[42,-31],[41,1],[49,42],[5,49],[41,72],[39,24],[-19,163],[53,-39],[35,35]],[[40638,11862],[0,560],[-16,49],[16,93],[0,441],[0,505]],[[40638,13510],[130,-90],[23,-31],[107,-70],[57,-17],[66,-94],[65,-6],[68,-133],[37,-12],[59,-120],[-10,-142],[93,-45],[73,-86],[60,-15],[40,-85],[3,-90],[-111,-13],[-3,-54],[26,-111],[66,-106],[55,-62],[16,-130],[25,-25],[15,-93],[26,-18],[61,27],[-2,-124],[50,-34],[40,-112],[33,-8],[63,-117],[-61,-37],[-21,58],[-230,93],[-60,12],[-30,46],[-27,86],[-32,20],[-18,85],[-36,26],[-7,51],[-60,183],[-115,71],[-40,9],[-22,42],[-62,-45],[-36,25],[-9,-87],[-34,-51],[-77,-24],[53,-113],[1,-46],[-95,-93],[-55,43],[-76,-19],[-64,4],[-18,29]],[[41913,13482],[99,-121],[29,-14],[55,-101],[12,-46],[47,-44],[23,-69],[-8,-84],[-25,-47],[-26,85],[-9,118],[-54,126],[-46,33],[-91,133],[-6,31]],[[43216,11582],[51,-50],[47,-13],[-1,-92],[-63,55],[-34,100]],[[43039,11779],[54,5],[53,-80],[-18,-53],[-41,31],[-61,5],[-30,72],[43,20]],[[43148,12051],[45,-150],[9,-121],[-45,70],[-35,194],[26,7]],[[42869,12247],[67,-85],[29,-13],[-1,-73],[-63,73],[-32,98]],[[42614,12484],[58,-62],[-14,-79],[-44,141]],[[3088,19273],[35,-24],[65,-143],[-21,-36],[-113,-78],[-1,77],[-22,100],[57,104]],[[2964,19498],[74,-58],[-51,-54],[-23,112]],[[2799,19643],[12,-88],[-38,10],[26,78]],[[43987,10086],[53,-87],[-49,-28],[-4,115]],[[43909,10327],[31,51],[23,-143],[-56,-33],[-23,69],[-11,140],[27,0],[9,-84]],[[977,10750],[13,-53],[-43,-26],[-29,57],[59,22]],[[13543,19531],[-12,-42],[-46,-17],[12,76],[46,-17]],[[12901,20546],[46,-117],[3,-51],[-42,-54],[-38,62],[31,160]],[[11609,18853],[27,-96],[-24,-133],[8,-158],[-40,-173],[-26,-11],[-22,-85],[37,-35],[22,26],[35,-42],[57,58],[107,-40],[52,10],[97,44],[27,-27],[62,30],[89,-45],[66,-133],[46,-5],[29,-71],[-29,-40],[19,-59],[5,-87],[-27,-75],[-17,-170],[3,-179],[-15,-82],[1,-163],[-27,-60],[4,-59],[30,-72],[26,-122],[79,-181],[53,-66],[13,-98],[18,-20],[44,32],[28,-63],[30,-8],[176,133],[46,81],[62,-43],[79,-14],[52,-45],[69,-141],[13,-1]],[[12927,16003],[-63,173],[30,121],[-42,16],[-2,44],[-85,96],[-39,-3],[-31,-39],[-6,-68],[-88,-91],[2,-46],[40,-72],[17,-73],[-59,-54],[-51,-10],[-9,87],[-73,39],[-24,107],[-72,54],[-87,-31],[-23,37],[-54,19],[-21,46],[14,106],[-36,64],[-77,57],[-49,99],[-30,-76],[-23,54],[-42,19],[-25,113],[29,70],[-24,145],[-86,143],[-38,117],[-107,165],[36,61],[-15,63],[-43,12],[-14,-63],[-108,22],[-59,57],[-71,14],[-18,35],[-96,67],[-77,7],[-56,57],[-62,93],[-73,158],[-165,266],[-92,53],[-73,-115],[-102,-74],[-40,-7],[-90,71],[-64,11],[-45,58],[-56,29],[-37,52],[-112,51],[-31,45],[-129,87],[-81,106],[-21,56],[-48,6],[-165,106],[-26,81],[-35,56],[-105,90],[-27,35],[-64,169],[-22,95],[47,27],[-4,63],[22,172],[-29,40],[-27,90],[-22,173],[-80,154],[-76,186],[-75,121],[-47,49],[-42,129],[-85,86],[-56,75],[22,95],[2,83],[-37,58],[-39,19],[-8,66],[-47,22],[-34,60],[-4,115],[-84,54],[-28,83],[-30,20],[-23,82],[-33,46],[-14,93],[-54,146],[-23,132],[-33,98],[11,87],[-64,35],[-41,76],[-36,-26],[-54,68],[-34,-60],[-4,-92],[21,-56],[7,-192],[35,-101],[78,-95],[37,-117],[28,-27],[20,-85],[25,-8],[16,-155],[51,-76],[45,-148],[58,-72],[31,-157],[1,-75],[36,-81],[46,-165],[-10,-64],[22,-87],[50,10],[43,-48],[19,-105],[26,-22],[-7,-115],[-46,-59],[-26,36],[-26,133],[-35,36],[-58,107],[-51,55],[-30,67],[-56,73],[6,212],[-34,118],[-91,107],[-10,40],[-46,9],[-125,113],[-55,151],[54,-15],[56,109],[2,64],[-118,233],[-27,13],[-65,83],[-17,149],[-27,34],[-3,85],[-77,187],[7,77],[-28,33],[-35,119],[-25,165],[-24,58],[-131,178],[-33,-10],[-52,37],[-51,70],[-108,7],[-22,35],[0,140],[-79,133],[-28,81],[-51,84],[13,124],[-78,99],[-15,85],[48,12],[-98,116],[-7,58],[-97,175],[-14,223],[-65,108],[38,298],[-47,226],[-14,131],[34,146],[16,116],[36,578],[-19,209],[-20,14],[-31,178],[-40,108],[20,51],[67,-49],[159,-24],[49,-77],[25,60],[-41,91],[11,58],[-43,105],[-54,28],[-44,66],[-149,143],[16,71],[-93,65],[-114,3],[8,89],[-106,-8],[-96,88],[14,58],[-26,70],[9,148],[-56,76],[-39,147],[-41,43],[12,63],[-57,20],[-13,-60],[-98,139],[-45,102],[33,96],[-93,25],[-16,94],[22,131],[-35,57],[-32,18],[-67,-1],[-3,89],[-180,248],[-22,96],[-86,127],[-66,47],[-48,110],[-10,-57],[21,-66],[-32,-25],[-91,35],[-72,-42],[-67,45],[-157,177],[-248,152],[-313,105],[-142,-30],[-126,98],[-130,19],[-111,146],[-69,-36],[-73,4],[-40,-48],[40,-70],[-58,-114],[-119,8],[-51,-19],[-74,-120],[-179,-78],[-20,62],[79,38],[-77,57],[53,102],[50,151],[78,63],[-23,67],[-141,-97],[-75,-111],[-50,-144],[-170,-134],[-15,-77],[109,-36],[-71,-80],[-44,-125],[-99,-25],[-47,-76],[-119,-79],[-29,-104],[-79,-58],[-29,23],[-58,-98],[-68,-8],[11,-73],[-164,-88],[-26,10],[-82,-91],[-102,-35],[-43,65],[-43,-123],[-58,-7],[-114,-72],[-2,77],[107,71],[33,76],[51,46],[165,14],[20,87],[78,76],[102,67],[80,120],[76,64],[26,227],[53,107],[-249,-117],[-42,84],[-67,5],[-55,75],[-154,-119],[-52,134],[33,94],[-103,125],[-137,-49],[-230,190],[96,69],[-49,60],[-69,16],[-63,177],[122,176],[70,158],[55,31],[133,-52],[128,100],[114,13],[50,62],[-31,192],[19,77],[-151,-23],[-67,-54],[-80,36],[-140,-15],[-87,-36],[-147,35],[-70,121],[55,63],[-138,23],[-86,48],[93,78],[333,167],[92,14],[39,-136],[224,-9],[39,105],[-105,136],[-159,28],[-58,131],[-304,187],[40,131],[239,14],[151,109],[26,109],[118,123],[146,18],[191,105],[166,19],[155,119],[155,-60],[74,12],[60,-73],[173,25],[120,-28],[31,-93],[333,15],[122,-50],[159,-36],[158,1],[119,-49],[216,35],[255,-112],[263,-41],[64,-58],[183,-85],[142,-16],[13,85],[197,110],[99,-65],[94,66],[95,7],[151,99],[78,16],[92,-38],[163,-1],[49,147],[100,-80],[62,-132],[90,-80],[131,134],[105,-70],[-46,-76],[113,2],[75,117],[193,-18],[145,-91],[204,-46],[80,-51],[232,-49],[154,9],[100,-75],[18,-68],[-99,-10],[-88,-83],[212,-61],[182,-3],[253,67],[231,-82],[20,-48],[116,-56],[-53,162],[284,161],[-104,10],[-77,-57],[-159,-48],[-54,41],[67,88],[125,20],[130,52],[101,-47],[-8,-69],[118,-54],[15,-51],[142,-4],[76,-52],[154,-33],[105,42],[228,-35],[70,26],[98,-53],[67,19],[-74,84],[-102,15],[75,120],[76,-19],[109,-75],[23,-99],[-32,-68],[153,-64],[-41,162],[91,33],[167,135],[-72,50],[-26,176],[-169,83],[-105,80],[37,133],[-54,51],[51,143],[70,-25],[55,167],[86,14],[197,-164],[11,-115],[172,-192],[-117,-113],[84,-47],[88,0],[10,-75],[74,-84],[-20,-113],[93,10],[25,143],[93,48],[126,-128],[19,-101],[-73,-90],[28,-75],[104,-128],[105,52],[-4,78],[80,93],[29,171],[95,53],[-54,67],[-21,144],[148,23],[75,-38],[149,-9],[43,-112],[115,-24],[7,-127],[-139,-71],[35,-116],[108,-111],[-37,-118],[-54,-5],[-86,-105],[-133,-92],[-200,22],[-19,71],[-152,-15],[0,-49],[96,-38],[-78,-109],[-115,-102],[-69,1],[-83,79],[-140,76],[-19,-29],[101,-128],[253,-23],[13,-24],[-140,-243],[-87,-53],[-138,34],[-41,-121],[-105,-13],[42,-129],[-101,-72],[-128,2],[25,-59],[-42,-66],[-116,-113],[-61,-100],[-9,-89],[-37,-63],[-46,-151],[-14,-156],[2,-160],[47,-74],[158,9],[55,-227],[67,-214],[151,62],[57,-9],[96,-64],[114,-31],[120,-104],[48,-98],[242,-119],[71,-72],[65,-15],[86,21],[187,-47],[32,-78],[-29,-154],[39,-105],[1,-136],[-23,-78],[93,-130],[22,-83],[52,-32],[48,-73],[21,-90],[87,-59],[7,70],[44,66],[58,-66],[6,112],[43,130],[-61,181],[10,33],[-29,230],[-42,51],[-17,106],[80,31],[150,107],[84,102],[58,101],[20,180],[-11,124],[-62,175],[-66,78],[-123,93],[87,214],[75,80],[1,58],[-112,213],[45,56],[13,134],[-48,68],[-9,104],[85,74],[210,-70],[179,-15],[94,58],[135,-136],[121,-75],[-10,-90],[100,-56],[78,7],[52,-74],[39,-148],[-9,-195],[38,-148],[75,13],[55,-76],[58,-31],[31,-63],[68,27],[116,99],[70,82],[30,87],[-18,80],[52,43],[36,118],[55,-27],[34,-146],[96,-99],[-7,-44],[110,-156],[23,-99],[64,-124],[3,-115],[63,-16],[-56,-81],[-3,-104],[62,-103],[108,-41],[33,-97],[46,-72],[114,-1],[36,-81],[106,-20],[57,-60],[-100,-37],[-100,-98],[-139,-66],[4,-58],[122,52],[28,65],[80,31],[27,44],[83,-25],[25,-101],[142,-41],[36,-110],[-39,-96],[47,-166],[-160,-172],[-101,8],[-89,-37],[-63,-70],[-6,-64],[-53,-32],[-82,-104],[-98,1],[-112,-40],[-16,31],[-237,21],[-148,-8],[-47,13],[-114,-32],[-48,5],[-75,-98],[-34,-127],[-91,-15],[-120,-130],[-48,-117],[-40,-42],[-21,-90],[-72,-88],[-32,-85],[27,-21],[188,310],[107,104],[201,122],[133,36],[77,-12],[94,-82],[-14,-121],[-140,-105],[-67,47],[42,-131],[53,37],[52,-2],[-20,-131],[7,-103],[49,-164],[89,-25],[1,-64],[78,-39],[57,7],[39,-30],[122,10],[50,-116],[-93,-32],[-154,-102],[-162,-41],[2,-60],[-84,-133],[-104,-26],[-44,18],[-11,92],[53,150],[177,170],[-56,29],[-61,-6],[-75,-63],[-66,-32],[-85,-12],[16,-56],[-32,-43],[-79,-41],[-53,1],[-32,-49],[-56,35],[-33,-126],[-71,-50],[-57,-10],[-73,-204],[-8,-90],[43,-183],[-122,-114],[-162,-24],[-108,-67],[-82,-129],[39,-43],[-25,-159],[-61,-127],[-64,0],[-30,-37],[43,-127],[-13,-79],[-92,-224],[-5,64],[27,57],[-13,76],[-52,53],[15,261],[-40,-13],[3,-78],[-20,-61],[37,-218],[-15,-162],[14,-79],[36,-13],[-6,-104],[19,-51],[-39,-50],[59,-69],[-54,-122],[-44,-9],[-20,-150],[-60,-7],[-68,-80],[-44,-122],[-69,-7],[-48,-57],[-33,-114],[-102,-148],[-111,-137],[-61,-160],[12,-41],[-29,-78],[0,-67],[31,-232],[42,-182],[42,-123],[-19,-54],[46,-179],[43,-216],[-13,-231],[-22,-134],[-50,-58],[-48,-6],[-30,168],[-60,80],[-65,190],[-42,151],[2,69],[-27,28],[22,157],[5,108],[-28,78],[-22,-1],[-48,90],[-35,99],[-44,47],[-31,-4],[-78,-92],[-53,-9],[-6,49],[-40,60],[-103,90],[-165,-61],[-144,52],[-99,-68],[-65,54],[-15,-82],[38,-6],[74,-54],[-27,-78],[81,-94],[-41,-30],[-17,54],[-54,59],[-21,-76],[-64,27],[-16,-41],[-66,30],[-5,65],[-34,10],[-19,55],[-38,20],[-36,-75],[-117,60],[-93,1],[-121,-101],[-34,-84],[-56,-72],[-77,-44],[-104,-139],[-50,-180],[-17,-128],[50,-279],[-38,-138],[-24,-168],[-15,-318],[4,-73],[-19,-88],[29,-251],[64,-250],[88,-198],[23,-140],[38,-65],[16,-87],[81,-2],[51,-47],[29,-84],[47,0],[97,64],[64,1],[32,45],[93,17],[34,-61],[44,31],[-12,78],[62,71],[26,54],[4,85],[28,54],[-1,155],[16,118],[73,72],[137,44],[32,30],[62,6],[91,-40],[31,31],[32,-101],[-17,-79],[-72,-168],[3,-160],[-38,-223],[-5,-63],[-69,13]],[[15130,26080],[24,-37],[-25,-123],[79,-49],[2,-61],[-67,-74],[-119,-20],[-26,121],[56,104],[29,88],[47,51]],[[14682,26036],[26,-55],[81,-45],[138,13],[-56,-130],[-57,53],[-80,11],[-100,116],[48,37]],[[14670,26827],[96,-30],[106,-57],[83,-64],[9,-72],[-56,0],[-169,81],[-69,142]],[[6598,27060],[87,-63],[223,-78],[81,-213],[81,-41],[97,-175],[-21,-74],[-140,62],[-179,206],[-63,10],[-9,120],[-63,-8],[-80,93],[-80,139],[66,22]],[[15714,27250],[47,-4],[-29,-135],[-134,-321],[92,53],[39,-19],[-22,-83],[91,-87],[149,54],[75,-60],[-48,-55],[-8,-100],[47,-43],[-12,-116],[-29,-75],[31,-43],[43,19],[60,-76],[-19,-132],[-82,-42],[-7,91],[-70,-25],[39,162],[-32,78],[-40,-85],[-52,-30],[-49,-117],[-30,56],[53,116],[-89,-35],[-58,44],[-177,-8],[-59,24],[-129,-34],[-37,82],[110,144],[-32,28],[44,125],[39,10],[-6,88],[73,183],[19,80],[61,101],[32,111],[106,76]],[[12481,27658],[81,-71],[-31,-50],[-131,69],[81,52]],[[6103,27664],[23,-50],[-20,-69],[14,-61],[52,-31],[-16,-55],[-143,212],[90,54]],[[6505,27640],[3,-138],[-58,33],[-17,71],[14,71],[58,-37]],[[5951,27895],[165,-43],[-40,-188],[-51,-27],[-44,44],[-49,146],[19,68]],[[12732,29977],[21,-59],[-47,-123],[-68,29],[-4,92],[48,69],[50,-8]],[[12394,30126],[19,-68],[-149,-132],[-68,-8],[-30,87],[49,85],[179,36]],[[12862,30259],[72,-5],[44,-50],[-56,-48],[-60,103]],[[11966,30843],[52,-86],[63,8],[61,-71],[89,-18],[24,-48],[106,-46],[76,-65],[18,-98],[138,-56],[9,-44],[-70,-71],[-134,62],[-58,71],[-146,10],[7,-61],[-98,-55],[-23,-61],[-87,-48],[-46,30],[3,109],[-204,-3],[42,68],[89,44],[-27,85],[31,127],[17,184],[68,33]],[[13385,31421],[96,-17],[14,-59],[-125,0],[15,76]],[[13218,31481],[58,-20],[10,-173],[-105,-75],[-138,-3],[-43,117],[80,141],[138,13]],[[10459,31807],[148,-73],[48,-107],[-57,-104],[-161,21],[-235,83],[14,68],[76,11],[14,90],[79,86],[74,-75]],[[8331,32746],[50,-169],[77,90],[142,-24],[170,-83],[83,107],[183,-109],[56,-156],[97,7],[-111,293],[81,50],[112,-8],[175,-127],[45,-173],[83,-130],[-27,-134],[134,-120],[143,-44],[104,-74],[75,10],[4,-129],[-205,20],[67,-65],[11,-131],[-180,-47],[-316,100],[-89,82],[-95,-121],[-153,-20],[-52,-52],[-291,-56],[-168,-3],[-98,21],[-40,57],[11,98],[-103,22],[-200,3],[-83,41],[-103,133],[61,36],[352,47],[202,-29],[56,74],[-134,39],[-301,-17],[-254,7],[-101,105],[314,94],[-35,27],[-251,-30],[-118,131],[64,135],[155,124],[352,118],[49,-20]],[[9547,32748],[-77,-94],[-233,137],[56,58],[181,11],[85,-48],[-12,-64]],[[12619,32861],[111,-32],[167,9],[117,-40],[119,-104],[-6,-72],[-235,21],[-127,-37],[-98,24],[-27,98],[-80,13],[-14,81],[73,39]],[[11831,32885],[183,-11],[20,-36],[-137,-93],[-84,-123],[56,-107],[-26,-48],[112,-76],[-16,185],[30,121],[79,70],[254,88],[165,-5],[50,-119],[62,-20],[48,-112],[-31,-87],[246,-7],[123,102],[304,-66],[17,-93],[105,-14],[-4,-65],[128,-124],[85,83],[147,-51],[99,-95],[288,-126],[158,-217],[-114,12],[1,-79],[99,0],[-115,-159],[26,-78],[110,-13],[107,-119],[168,-17],[103,-81],[24,-96],[124,-68],[114,16],[93,-109],[-167,-239],[-98,-31],[-37,-158],[-66,66],[-92,27],[-260,319],[-44,-66],[15,-88],[-79,-14],[-15,-66],[110,-42],[12,-93],[175,-84],[-18,-61],[80,-24],[-27,-57],[82,-42],[-34,-64],[54,-33],[0,-76],[-58,-173],[-132,80],[-88,15],[-40,63],[-108,45],[-80,70],[-33,-47],[89,-99],[68,-33],[68,-84],[133,-128],[-43,-86],[-166,82],[-123,17],[-113,77],[-23,60],[-77,-9],[-100,82],[-84,24],[-17,55],[33,76],[-95,-3],[-144,232],[-139,10],[-21,-63],[-126,49],[-77,-75],[-103,5],[-111,32],[-17,134],[186,115],[116,-50],[159,33],[99,109],[-95,95],[185,160],[83,86],[-11,105],[-69,162],[-176,94],[-86,118],[-161,-79],[-8,179],[-61,105],[-78,11],[-25,82],[-137,2],[-15,-76],[-277,52],[-99,-59],[-151,37],[-79,-16],[-267,12],[-109,84],[-153,-22],[-107,57],[-95,112],[142,13],[32,65],[-221,29],[-36,149],[44,176],[89,162],[163,118],[153,35]],[[10150,32896],[78,-40],[248,31],[33,-60],[-85,-35],[1,-114],[172,-155],[-33,-149],[-114,-56],[-64,11],[-73,-93],[-87,14],[-80,129],[-98,83],[-152,36],[-116,123],[81,70],[104,-94],[109,6],[15,101],[-158,78],[86,97],[133,17]],[[11047,32943],[323,-46],[-210,-267],[-67,-35],[-129,21],[-8,-84],[-79,-101],[-134,-25],[-21,163],[-35,23],[-3,228],[46,104],[250,43],[67,-24]],[[7396,33063],[181,-70],[264,0],[152,-49],[196,-147],[-55,-38],[-432,-184],[-22,-72],[-108,-33],[-56,-184],[-312,-103],[-122,156],[-148,61],[-57,73],[79,85],[25,133],[138,171],[-125,148],[402,53]],[[10838,33328],[114,-85],[-14,-155],[-141,-6],[-149,49],[-89,61],[102,110],[177,26]],[[7893,33461],[-35,-100],[-86,-58],[-101,25],[222,133]],[[10330,33598],[94,-46],[31,-245],[-88,-56],[10,-69],[-290,-3],[-44,82],[57,83],[-323,-31],[65,83],[85,14],[-56,123],[224,60],[235,5]],[[9031,33638],[7,-102],[96,-91],[265,-19],[46,-75],[-77,-161],[-126,-34],[-326,-17],[-362,-112],[-159,7],[-94,61],[207,77],[158,6],[66,42],[-497,-52],[-153,17],[-191,65],[274,294],[165,4],[31,-71],[194,-5],[135,-115],[108,-36],[204,-21],[-81,177],[-109,52],[219,109]],[[10732,33686],[194,-24],[128,-82],[158,24],[126,-71],[146,-28],[-113,-59],[252,-139],[180,-11],[187,25],[175,61],[355,-9],[204,-98],[13,-131],[-145,-79],[-158,-27],[-215,30],[-97,-18],[-429,-12],[-100,62],[-192,-43],[-198,28],[-64,34],[-61,112],[63,97],[-23,74],[-119,120],[-218,-25],[-124,33],[-130,124],[205,32]],[[8087,33802],[29,-196],[-149,-44],[-35,-68],[-164,44],[-32,-66],[-122,-79],[-199,22],[-181,60],[166,64],[44,62],[317,173],[326,28]],[[10711,33880],[227,0],[13,-80],[-314,4],[74,76]],[[8913,33954],[-80,-144],[-237,-45],[-139,51],[-5,95],[321,51],[140,-8]],[[8812,34126],[133,-55],[-60,-61],[-248,-6],[-4,71],[179,51]],[[10522,34114],[193,-116],[39,-69],[-165,-28],[-174,45],[-79,104],[1,82],[185,-18]],[[9666,34275],[133,-67],[121,1],[265,-122],[-31,-73],[99,-105],[-202,-8],[-53,85],[-312,78],[14,68],[-284,99],[250,44]],[[11044,34776],[119,-39],[139,-151],[384,-39],[92,-135],[-27,-64],[198,-6],[89,-78],[-201,-58],[-287,-223],[-267,-11],[-262,74],[-167,135],[214,105],[-388,3],[-143,172],[195,239],[312,76]],[[13966,35232],[486,-69],[305,-4],[48,-74],[188,-12],[34,-74],[-388,-120],[-40,-84],[-454,-160],[-363,-246],[-257,-64],[-359,-26],[8,-50],[149,-102],[-103,-183],[-304,-75],[-39,-111],[-144,-35],[71,-80],[146,-26],[-54,-75],[-320,-92],[-38,80],[-232,-23],[-181,15],[-129,-33],[-301,5],[-195,22],[-47,110],[235,126],[-63,113],[88,83],[1,82],[110,91],[108,5],[181,92],[-126,123],[-143,19],[2,143],[335,-17],[435,56],[-109,39],[-403,-29],[-469,43],[-163,50],[-183,148],[-141,43],[414,108],[217,-2],[152,106],[387,-22],[143,104],[283,46],[651,7],[571,29]],[[12299,19728],[34,-50],[-31,-74],[-30,80],[27,44]],[[13277,19230],[-60,-20],[-81,25],[-189,-34],[79,166],[-25,50],[-95,1],[-55,85],[-8,85],[-26,65],[-56,-23],[-134,86],[-22,39],[-70,3],[-26,40],[-79,-6],[18,70],[-25,55],[-96,0],[-53,-49],[-46,-76],[-64,-4],[-15,-64],[-33,-9],[-11,119],[47,82],[103,82],[80,13],[68,38],[97,-15],[11,-23],[71,10],[43,-45],[33,8],[86,-135],[71,-6],[92,-79],[20,-51],[72,-28],[22,-69],[131,-102],[38,12],[6,-77],[27,-32],[71,-2],[50,-54],[43,-106],[-110,-25]],[[13704,19164],[14,47],[60,-16],[22,27],[89,-71],[51,-6],[4,-53],[32,-84],[110,-33],[49,-78],[-15,-78],[-96,26],[-82,5],[-37,-61],[-48,-7],[-19,58],[-45,-73],[-46,-136],[-30,88],[-52,72],[-103,-24],[-98,28],[-27,-58],[-78,103],[13,52],[206,-52],[51,25],[-58,133],[10,94],[-89,90],[34,40],[49,1],[59,-45],[70,-14]],[[16114,31890],[92,-31],[-18,-83],[-174,-57],[-32,69],[-155,45],[21,126],[47,29],[151,-29],[68,-69]],[[19564,32104],[-139,-63],[-189,-24],[126,118],[52,0],[121,48],[29,-79]],[[19760,32638],[153,-62],[-44,-82],[-163,71],[54,73]],[[19847,32687],[170,-40],[-96,-55],[-74,95]],[[19750,32760],[130,-64],[-188,-18],[-157,37],[58,58],[157,-13]],[[18712,35358],[197,-3],[633,-77],[252,-116],[296,-59],[-141,-68],[-939,-51],[662,-38],[410,24],[45,-79],[-42,-145],[268,90],[266,-36],[83,86],[325,15],[240,-44],[49,-63],[-479,-187],[-130,-109],[-180,-15],[-203,25],[-120,-106],[154,-37],[-46,-78],[78,-60],[-213,-80],[-126,-212],[110,-7],[94,-70],[-27,-82],[211,-21],[8,-137],[-255,50],[-180,-82],[47,-60],[240,-65],[31,-229],[-157,18],[18,-155],[196,-50],[-50,-56],[-125,46],[-179,-2],[-58,-86],[246,-76],[-32,-89],[-94,2],[-131,-52],[-261,78],[-116,-22],[-59,-54],[5,-31],[93,-28],[82,-176],[232,-109],[96,-104],[2,-231],[-204,-35],[-74,44],[-43,118],[-51,49],[-118,-26],[-104,-50],[-137,-8],[-102,-96],[10,-49],[189,29],[161,-27],[327,-105],[-103,-62],[-15,-52],[-153,-73],[-24,-41],[-152,-103],[-328,-79],[-127,-56],[-114,-20],[-139,57],[-11,-92],[-54,-9],[-96,-96],[-124,-230],[-90,-75],[-78,0],[-206,-130],[-74,69],[-54,-102],[-209,-36],[-39,-117],[-73,10],[-37,-52],[62,-92],[-105,-85],[105,-18],[-7,-76],[-108,-147],[-18,-70],[-139,-66],[58,-64],[17,-109],[-75,-182],[-9,-138],[-55,-90],[10,-78],[-108,27],[-97,-49],[-55,55],[32,69],[-132,24],[23,68],[-73,60],[-62,-72],[-135,10],[-11,52],[-76,42],[-79,100],[-42,157],[-93,67],[16,70],[-111,106],[-9,79],[-52,48],[13,101],[101,111],[-83,53],[-68,-128],[-42,8],[38,148],[-52,60],[0,93],[-116,58],[5,47],[-65,71],[30,128],[-43,79],[-5,117],[30,87],[86,100],[35,94],[132,-1],[81,38],[-23,137],[34,105],[65,66],[-253,42],[-114,76],[-100,15],[-72,68],[77,37],[194,-32],[114,-68],[12,120],[-158,157],[-124,55],[-34,-77],[-85,-22],[-113,24],[-42,70],[37,80],[85,54],[-31,64],[60,86],[-103,58],[25,79],[-105,161],[-77,46],[59,75],[-77,79],[-162,76],[-5,99],[-140,96],[-202,71],[-292,51],[-80,-51],[-586,-20],[-145,91],[85,57],[-222,35],[-30,99],[233,16],[-403,173],[-83,59],[39,89],[399,72],[51,44],[370,31],[159,103],[-9,143],[-269,-3],[-51,71],[295,111],[47,55],[225,59],[187,-31],[83,106],[-55,73],[338,74],[528,68],[179,-93],[270,-33],[-27,160],[646,-120],[203,18],[85,76],[-358,123],[178,69],[432,8],[291,-59],[229,49],[-134,68],[821,48]],[[13134,18734],[-43,-37],[-31,32],[-47,-70],[-28,37],[-36,-2],[-44,87],[-16,65],[37,16],[128,-28],[69,-64],[11,-36]],[[8574,21575],[1,-115],[-39,27],[38,88]],[[15090,17834],[-44,52],[20,37],[24,-89]],[[14305,18859],[130,-11],[41,-24],[-21,-86],[-42,-25],[-133,9],[25,137]],[[15066,16881],[1,-143],[-81,-20],[22,62],[-18,113],[76,-12]],[[13642,24594],[-20,-70],[-164,-70],[-26,52],[54,39],[111,12],[45,37]],[[1678,27847],[59,0],[-48,-120],[-63,-6],[17,123],[35,3]],[[2057,28122],[49,-75],[-32,-38],[-65,3],[-35,-48],[-55,-3],[37,116],[101,45]],[[6177,28346],[31,-61],[-29,-131],[-75,61],[15,105],[58,26]],[[5876,28450],[52,-5],[56,-85],[96,-208],[4,-98],[-80,41],[-4,42],[-76,41],[-19,85],[12,135],[-41,52]],[[5826,28580],[35,-66],[-46,-33],[-43,93],[54,6]],[[5854,28633],[99,-36],[-21,-119],[-65,0],[-13,155]],[[5645,28728],[64,-28],[37,-155],[-1,-118],[-94,144],[-6,157]],[[3417,28849],[66,-4],[16,-123],[-113,-48],[-89,-124],[-72,62],[-36,90],[38,59],[131,49],[59,39]],[[5607,28925],[100,-51],[14,-134],[-144,-9],[-56,96],[-2,74],[88,24]],[[5708,28962],[28,-52],[64,0],[-16,-48],[48,-91],[9,-67],[-96,-62],[8,93],[-20,68],[-25,159]],[[3468,28986],[61,-77],[-86,-44],[-54,45],[79,76]],[[1760,29473],[52,-23],[11,-99],[-81,-26],[-120,56],[92,91],[46,1]],[[1054,30336],[93,-57],[81,32],[95,-85],[-71,-40],[-94,65],[-74,-36],[-52,51],[22,70]],[[25322,24228],[-19,90],[-48,42],[-21,109],[26,150],[-12,37],[21,111],[-52,30],[-33,72],[-140,149],[-117,151],[-57,36],[-42,-17],[-121,181],[21,40],[-52,85],[-9,108],[-63,61],[-45,-129],[-42,57],[-17,163],[-48,14],[-81,-79],[-28,1],[22,-163],[-24,-17],[14,-127],[44,-68],[115,-114],[58,-237],[84,-130],[48,-38],[115,2],[-16,-83],[15,-47],[131,-88],[53,-64],[67,-45],[65,-136],[-19,-81],[-37,29],[-29,96],[-42,4],[-59,54],[-56,-110],[-12,-100],[82,-72],[-4,-121],[-74,-52],[2,-78],[-49,-69],[-14,-53],[-55,40],[75,205],[-28,137],[-49,160],[-34,-17],[-55,60],[11,40],[-31,70],[-88,41],[-42,105],[-86,-6],[-102,129],[-73,137],[-85,110],[-62,58],[6,52],[-56,221],[-42,16],[-69,69],[-62,19],[-35,-31],[-64,-115],[-58,-15],[-97,-98],[-16,-59],[-63,-23],[-97,34],[-1,30],[-97,9],[-80,41],[-70,-63],[-44,-86],[17,-147],[-3,-132],[-108,-96],[-30,-48],[-135,-60],[-35,-57],[-46,-134],[-85,-195],[14,-111],[56,-81],[-94,-106],[-53,-199],[-50,2],[-44,-50],[-58,-159],[-29,25],[-73,-21],[-190,-11],[-36,-55],[-59,-21],[-54,-102],[-54,46],[-58,195],[-67,63],[-62,-9],[-34,-38],[-107,25],[-21,94],[-9,122],[14,131],[-56,-19],[-37,74],[17,168],[34,53],[28,138],[27,221],[-29,188],[11,132],[-35,86],[-18,141],[114,63],[55,91],[82,-49],[229,-2],[87,-36],[69,-3],[77,28],[59,-41],[46,24],[49,-34],[89,21],[23,46],[30,234],[25,389],[-24,62],[-72,56],[-41,93],[17,46],[-71,84],[-26,65],[-74,20],[-138,65],[9,35],[-25,131],[132,53],[56,-3],[56,-73],[41,37],[93,-11],[4,98],[-43,127],[62,46],[26,-71],[123,-38],[60,46],[-11,58],[127,68],[47,80],[5,150],[112,51],[83,66],[42,57],[84,19],[3,95],[46,84],[30,160],[81,33],[76,78],[132,11],[25,55],[92,14],[28,-43],[87,71],[20,67],[-49,74],[8,88],[-9,178],[-42,37],[12,78],[-35,58],[2,109],[69,-19],[56,143],[108,140],[59,-6],[14,-84],[-35,-84],[13,-88],[76,-28],[-27,-59],[-68,-17],[4,-59],[-84,-124],[-11,-67],[57,-97],[9,-59],[136,-86],[129,-6],[49,74],[124,-89],[71,-93],[64,-13],[30,83],[182,62],[44,71],[98,48],[124,23],[34,-103],[52,-22],[67,18],[38,46],[26,89],[151,-2],[8,90],[-41,243],[12,150],[43,48],[38,132],[99,47],[82,-94],[15,-65],[57,-37],[86,66],[-34,256],[-47,26],[-31,84],[-3,136],[257,91],[99,4],[83,-34],[119,-11],[123,97],[40,54],[-64,117],[-56,21],[-96,-21],[-173,-11],[-45,-44],[-68,-1],[-248,-88],[-242,238],[37,180],[-49,111],[13,94],[-34,67],[50,84],[115,94],[16,76],[140,103],[148,212],[85,26],[-12,131],[-105,79],[-273,-9],[-150,-234],[35,-118],[-62,-56],[-35,-89],[-178,-86],[-32,-71],[-53,0],[-20,-82],[-51,-65],[-88,-62],[27,-38],[-60,-144],[8,-175],[32,-78],[70,-30],[55,-79],[85,-79],[-4,-43],[-96,-77],[14,-63],[-58,-67],[-57,-6],[-97,-114],[14,-62],[-47,-76],[29,-107],[-42,-180],[-64,-171],[-45,23],[-102,-7],[-62,-107],[20,-41],[-123,-55],[-49,13],[-9,89],[-40,93],[26,30],[-11,104],[-45,68],[-86,245],[23,81],[-82,43],[-1,183],[-98,65],[-55,-95],[-85,-56],[-154,-165],[-142,-18],[-164,124],[-29,59],[67,69],[-10,84],[-80,-3],[-14,42],[117,151],[-102,21],[-8,159],[-35,114],[41,54],[-6,122],[24,57],[63,3],[43,100],[89,34],[38,73],[61,-18],[132,124],[114,54],[40,120],[176,138],[143,199],[-23,48],[111,139],[-16,90],[82,100],[61,12],[22,74],[104,67],[67,104],[79,15],[-29,77],[61,83],[106,48],[78,86],[28,80],[100,63],[179,9],[84,27],[5,84],[134,22],[138,-46],[19,64],[96,61],[-3,45],[139,43],[61,-32],[221,68],[334,-105],[108,-80],[-174,-101],[218,-64],[82,63],[135,-77],[-55,-40],[250,-64],[85,7],[116,-42],[181,-101],[96,-90],[327,-167],[43,-174],[-116,-154],[-139,-68],[-180,-12],[-131,50],[-191,33],[-62,47],[-178,33],[17,-107],[111,-49],[44,-53],[-13,-92],[-47,-39],[50,-72],[24,-166],[108,-28],[61,-84],[111,-29],[106,15],[0,92],[-112,20],[-70,128],[56,69],[131,-81],[193,-78],[122,8],[-19,88],[-85,121],[15,52],[123,97],[69,18],[109,119],[133,-24],[100,-90],[56,151],[1,62],[-86,65],[54,273],[-33,75],[168,-1],[80,-26],[75,-79],[24,-73],[-174,-29],[-50,-104],[81,-41],[33,-69],[92,-18],[130,33],[82,187],[111,46],[308,157],[118,34],[119,76],[83,-170],[236,103],[174,-23],[82,73],[114,39],[113,-85],[88,13],[60,62],[-101,155],[160,54],[155,-12],[190,-49],[284,-151]],[[31193,31643],[-3,-109],[-40,-224],[-49,-108],[-265,-251],[-67,-90],[-99,-72],[-112,-27],[-144,-143],[-67,-99],[-72,-377],[-4,-216],[-32,-215],[0,-494],[14,-449],[45,-574],[-5,-252],[-45,-467],[-45,-224],[-125,-72],[-99,18],[-80,45],[-140,45],[-215,-27],[-128,26],[-59,-23],[-11,-46],[-61,-5],[-9,54],[-82,-13],[-33,-84],[-69,-51],[-45,0],[-7,-70],[-88,-62],[27,-142],[-59,-53],[-101,160],[-42,-42],[2,-59],[-52,-57],[-15,-123],[26,-72],[-29,-34],[-35,-128],[76,-34],[-3,-76],[43,-38],[82,-14],[61,-91],[61,-163],[-70,-27],[98,-85]],[[29022,25909],[-61,-102],[-60,-37],[-82,-17],[-69,-235],[-45,-32],[6,-67],[60,-46],[33,-109],[-5,-193],[141,-298]],[[28940,24773],[-26,-67],[-80,-98],[-60,28],[-66,136],[-101,46],[-41,52],[9,71],[-43,3],[-63,61],[-74,-14],[-60,11],[-77,45],[-56,64],[-152,12],[-114,80],[-53,9],[-31,-47]],[[27852,25165],[-127,192],[-102,65],[-32,53],[-56,16],[-37,80],[-76,44],[31,70],[41,-29],[73,12],[-19,57],[45,106],[46,51],[-60,65],[3,37],[68,28],[87,76],[24,58],[-144,-47],[-69,4],[-88,-73],[-125,-38],[-77,-91],[-61,-33],[29,-125],[56,-95],[103,45],[18,-103],[-75,-19],[-38,32],[-68,-72],[-68,-27],[-65,-87],[-61,56],[18,82],[-139,134],[150,114],[-12,60],[-140,-17],[-79,61],[29,49],[-79,38],[-63,-15],[-63,-132],[-114,-132],[21,-63],[-18,-117],[-105,-37],[-20,-112],[-9,-205],[-59,-23],[-26,-90],[1,-75],[-45,-37],[61,-150]],[[26337,24806],[-62,-17],[-25,38],[-90,-22],[-36,-65],[38,-85],[-39,-31],[4,-74],[-40,-57]],[[26087,24493],[-16,29],[-78,25],[-63,-25],[-30,25],[-58,-57],[-31,-79],[-72,-46],[-74,70],[-18,-115],[45,-116],[-10,-79],[24,-69],[-34,-58],[55,-26],[64,-88],[31,-11],[-6,-129],[-58,60],[-45,-28],[1,-279],[-60,-1],[-32,-33],[-28,88],[-56,-52],[-18,86],[-2,103],[-54,70],[26,46],[79,80],[116,-100],[30,68],[-142,51],[-95,-21],[-69,189],[-50,66],[-37,91]],[[24098,28262],[62,-77],[-12,-60],[-53,-2],[-54,48],[0,65],[57,26]],[[24350,28393],[35,-106],[-45,-42],[18,-73],[-43,-30],[-102,19],[-20,105],[70,80],[87,47]],[[22399,27666],[8,170],[-78,148],[32,93],[-122,-46],[-105,74],[71,128],[-46,95],[-76,-29],[7,103],[-18,85],[-43,30],[48,152],[-31,70],[8,89],[65,34],[-2,67],[41,97],[85,-20],[141,29],[-2,-90],[-103,-90],[-11,-91],[79,31],[190,-3],[30,-58],[-59,-152],[-94,-169],[104,-74],[65,-84],[8,-75],[51,-161],[76,-44],[88,-212],[25,-141],[31,-30],[89,-10],[47,-39],[16,-73],[-24,-103],[-80,-117],[3,-68],[48,-55],[-137,-98],[-56,21],[-81,-24],[-64,17],[-85,-52],[-111,35],[-72,-31],[-50,-96],[-43,36],[-74,-11],[-5,67],[81,156],[138,-1],[-116,90],[-37,-2],[-108,76],[117,108],[19,112],[-37,99],[72,52],[87,-15]],[[23192,24298],[37,-58],[-52,-119],[-72,51],[-17,35],[104,91]],[[25656,29016],[56,-49],[-111,-62],[-43,29],[58,81],[40,1]],[[23986,24986],[13,-145],[-42,-187],[-56,55],[-21,89],[-2,113],[65,86],[43,-11]],[[25816,23172],[55,-45],[48,20],[171,-49],[22,-49],[-190,-28],[-43,66],[-112,30],[49,55]],[[25758,24027],[52,-55],[-28,-39],[-24,94]],[[26133,24134],[2,-90],[-68,45],[66,45]],[[21996,27878],[34,-287],[-47,-199],[-135,-13],[-19,-35],[-120,-85],[-103,-46],[-54,30],[-62,101],[-2,71],[94,95],[36,129],[-55,56],[-43,3],[31,241],[164,-12],[-14,84],[42,137],[136,45],[55,-41],[91,-2],[77,-178],[-77,-109],[-29,15]],[[20761,31030],[31,-62],[104,2],[17,-122],[153,-77],[13,-112],[-45,-70],[-79,-35],[-2,-53],[-188,-77],[-115,-85],[-122,-18],[-13,-54],[-97,-32],[-184,37],[-125,84],[-147,-3],[72,91],[-76,92],[-7,57],[-105,5],[128,152],[-87,36],[-123,-42],[-38,24],[51,144],[154,101],[159,-122],[-15,-87],[125,-19],[1,117],[211,42],[110,-11],[62,-40],[118,50],[-7,80],[66,7]],[[23959,24622],[44,-64],[31,-121],[-25,-60],[13,-50],[-22,-239],[-44,22],[-46,-89],[-26,4],[-34,88],[23,155],[-12,117],[-42,106],[80,46],[60,85]],[[24770,23865],[-55,-130],[-12,-108],[27,-74],[-32,-94],[-74,34],[-27,64],[-48,14],[-121,119],[-31,-2],[-34,60],[10,54],[50,4],[52,49],[60,-63],[69,12],[73,43],[23,-15],[70,33]],[[24804,31644],[-1,-149],[-113,-14],[114,163]],[[25035,31795],[28,-95],[-144,-31],[12,66],[104,60]],[[25743,33986],[-26,-54],[165,-41],[-151,-142],[-132,61],[-161,-16],[94,121],[4,74],[207,-3]],[[25509,34084],[100,-81],[-153,-17],[-111,75],[164,23]],[[24919,34411],[94,5],[167,-115],[8,-72],[326,-77],[-320,-98],[-84,-143],[-17,-105],[-90,-46],[-20,-83],[-125,-92],[-164,131],[-85,16],[-83,145],[19,83],[148,5],[96,57],[-74,80],[-171,-113],[-127,38],[-153,98],[-119,206],[141,72],[633,8]],[[25720,34539],[518,-72],[-178,-166],[-368,-56],[-64,48],[-203,-8],[-257,87],[-99,119],[139,18],[414,-39],[98,69]],[[29155,31703],[-71,-76],[-142,-40],[-48,41],[11,97],[123,59],[127,-81]],[[30304,31998],[142,-110],[-115,-52],[-141,122],[114,40]],[[29791,32754],[144,-27],[-28,-102],[-61,-11],[-50,-182],[97,-205],[121,-100],[14,-63],[-254,-16],[-181,100],[-61,129],[-176,0],[-59,105],[118,51],[43,60],[61,214],[132,30],[94,39],[46,-22]],[[31419,33674],[98,-63],[-82,-111],[-267,-81],[-494,-132],[-183,-73],[-121,-133],[-165,-61],[-79,-147],[-155,-135],[-163,15],[-52,28],[-70,-14],[-76,99],[108,50],[148,173],[-9,127],[155,60],[408,181],[173,51],[167,-27],[280,68],[225,120],[154,5]],[[28850,34648],[-226,-94],[-125,53],[351,41]],[[30672,34643],[-154,-98],[-178,7],[7,102],[325,-11]],[[29120,34662],[215,-48],[-250,-46],[-78,-78],[-213,34],[279,80],[47,58]],[[21990,28792],[37,-129],[-37,-8],[-59,75],[59,62]],[[22005,28957],[-26,-88],[-73,-69],[-7,129],[106,28]],[[25168,28827],[16,-103],[-61,-71],[-40,90],[44,74],[41,10]],[[29915,20664],[10,-145],[32,-142],[68,-138],[144,-81],[40,1],[40,-76],[48,-138],[69,-88],[-6,-62],[-58,-193],[-53,-75],[-30,-80],[-21,-104],[-37,-5],[-15,45],[-51,-208],[1,-205],[-64,-9],[-69,-79],[-12,-113],[-48,-49],[-94,-30],[-28,-82],[4,-73],[-29,-55],[-119,0],[-63,-66],[-31,-4],[-94,-65],[-39,-54],[-17,-71],[10,-92],[-110,-99],[-103,-46],[-47,-52],[-77,-27],[-63,-59],[-48,-117],[-64,-19],[-22,23],[-78,-102],[-91,-58],[-57,2],[-72,-24],[-38,-73],[-61,-82],[-43,17],[-45,-45],[-35,7],[-55,51],[-29,93],[6,94],[-25,126],[-20,219],[-30,195],[18,85],[-18,175],[-46,109],[-5,71],[-74,116],[-64,200],[-32,163],[-55,160],[-58,79],[-53,45],[-72,216],[10,49],[-22,89],[20,134],[-43,154],[-25,145],[-66,127],[-79,94],[-39,104],[10,87],[-36,112],[-36,61],[-55,190],[-84,210],[-30,107],[-35,61],[-53,11],[22,92],[10,244]],[[27206,21642],[-19,133],[-67,330]],[[27120,22105],[64,161],[30,219],[17,23],[69,328],[45,86],[-14,98],[12,69],[-24,88],[25,120],[-23,76],[50,72],[-21,82],[-85,-97],[-73,69],[-28,-13],[-60,-89],[-68,-68],[-110,-25],[-39,33],[-43,93],[-86,67],[-83,21],[-31,-165],[-24,17],[-58,-41],[-60,26],[-29,106],[-85,41],[-39,-57],[-29,107],[-51,-9],[9,72],[-46,21],[6,160],[-80,30],[-43,46],[85,37],[-28,73],[38,38],[-39,118],[23,62],[-93,-31],[0,122],[73,117],[72,14],[19,-35],[114,21],[36,-10],[80,128],[-30,29],[26,65],[82,-23],[49,16],[71,-34],[53,7],[19,53],[93,72],[16,31],[135,75],[173,-18],[52,19],[15,-66],[39,-32],[46,19],[71,-119],[21,34],[121,-85],[96,-31],[139,50],[90,-48],[160,118],[46,109],[-34,208],[-82,107],[-66,20],[-44,63]],[[28940,24773],[59,-109],[19,-90],[44,-102],[88,-41],[-84,-70],[-18,-44],[-25,-222],[-38,-11],[-9,-93],[6,-171],[13,-87],[54,-62],[90,-23],[42,-94],[77,-75],[104,-39],[200,77],[66,-17],[-24,234],[0,198],[20,95],[-51,109],[9,58],[-27,112],[-70,-14],[-18,27],[-1,110],[47,73],[55,-3],[23,-35],[57,27],[54,117],[-70,87],[-19,138],[-98,2],[-71,-144],[-20,145],[43,143],[-34,43],[-68,2],[-78,154],[-60,189],[-78,52],[9,67],[75,-9],[10,57],[54,123],[148,17],[66,157],[13,177],[-34,61],[-59,11],[-28,-49],[-133,78],[-129,-93],[-44,-53],[-44,6],[-31,-60]],[[31193,31643],[86,-44],[168,-140],[92,165],[-78,23],[-66,132],[-152,63],[64,188],[-2,87],[-78,65],[36,55],[129,58],[67,79],[65,220],[37,34],[289,19],[118,-32],[47,-131],[-83,-167],[-13,-82],[71,-46],[13,-173],[-43,-41],[33,-108],[-24,-48],[9,-179],[136,-111],[-71,-73],[15,-89],[-101,-97],[-22,-79],[-83,-130],[-148,-24],[-60,76],[-102,-8],[32,-80],[124,-46],[99,8],[107,-34],[64,98],[126,52],[52,120],[105,99],[-1,118],[-50,59],[16,78],[93,46],[150,30],[119,-117],[28,-102],[72,30],[-53,162],[-118,60],[-157,35],[-101,-45],[-122,25],[19,59],[-49,84],[28,110],[74,86],[-97,186],[-65,47],[61,97],[223,35],[32,-106],[61,-77],[209,12],[-170,69],[-38,93],[117,30],[80,-54],[79,43],[-59,55],[96,48],[113,-5],[297,-174],[143,22],[58,-26],[-130,-101],[-12,-68],[118,-34],[-23,-141],[104,38],[-79,195],[61,92],[-34,59],[-149,64],[1,47],[-125,19],[-64,48],[18,96],[-72,98],[70,66],[336,22],[418,62],[3,71],[-100,20],[169,198],[122,35],[103,69],[220,55],[340,46],[17,71],[216,8],[182,-63],[339,140],[170,19],[9,110],[156,108],[237,84],[248,-75],[-67,-50],[227,-59],[-101,-128],[144,1],[45,58],[306,5],[151,-18],[216,-106],[80,-104],[-70,-81],[34,-64],[-236,-157],[-221,-73],[-14,-45],[-177,-108],[-171,-61],[-98,-85],[172,-7],[252,72],[-23,82],[62,61],[226,-69],[201,-15],[-33,-60],[289,66],[257,-30],[127,0],[-12,-78],[71,-41],[271,-48],[197,25],[119,48],[-39,83],[138,64],[167,-69],[296,-14],[57,-60],[-61,-145],[147,-46],[3,-97],[-120,33],[152,-223],[115,-104],[117,-48],[40,35],[91,201],[241,-78],[230,66],[174,-66],[177,69],[122,-47],[-18,120],[38,62],[-42,81],[169,10],[85,60],[489,-55],[192,-62],[186,0],[154,-41],[57,-58],[-37,-69],[234,-89],[126,-117],[166,15],[254,52],[260,-13],[216,-96],[50,-109],[-51,-89],[157,-63],[65,-66],[98,70],[230,30],[102,-52],[266,-17],[93,68],[72,-54],[6,-80],[143,-55],[26,-63],[92,13],[86,58],[-56,138],[3,131],[175,-32],[571,-60],[217,-79],[71,-7],[155,-110],[0,-107],[0,-126],[0,-127],[0,-126],[0,-126],[0,-127],[0,-126],[0,-126],[0,-1],[-157,-108],[-129,17],[-56,33],[-138,9],[66,-75],[96,48],[-4,-88],[157,-129],[-13,-126],[89,-50],[-6,-59],[45,-70],[-58,-92],[-137,50],[-92,12],[-93,-24],[-268,-172],[-125,-62],[-189,-181],[-76,-27],[-184,-175],[-36,94],[-64,35],[-135,1],[-133,-62],[-96,-122],[-5,136],[-25,18],[-102,-89],[-71,-28],[-131,15],[-97,-238],[25,-26],[-86,-90],[-52,-144],[59,-76],[32,46],[78,-66],[-63,-82],[-6,-157],[63,-19],[11,-129],[-69,-31],[-29,53],[-57,-35],[-46,-132],[12,-134],[35,-58],[-50,-84],[-128,4],[-87,-91],[-27,-96],[16,-57],[-43,-80],[-79,-45],[-57,-74],[-1,-124],[-33,-84],[-67,-107],[-131,-166],[-22,99],[-14,237],[-41,183],[-23,235],[-26,143],[-22,217],[12,161],[60,231],[90,97],[12,113],[143,84],[122,107],[89,119],[18,65],[119,118],[143,206],[178,97],[87,138],[12,232],[60,104],[-169,-38],[-45,-239],[-62,25],[-201,-234],[-117,128],[64,128],[-106,-28],[-27,61],[-240,-28],[-100,-66],[-16,-79],[-80,-116],[-122,-98],[-93,-126],[-3,-73],[128,-60],[-147,-74],[-86,48],[-57,-82],[-65,27],[-48,-38],[-84,-5],[-18,60],[69,52],[-16,47],[-258,70],[-59,-30],[-44,-102],[-110,39],[-47,-39],[-140,56],[-49,-81],[-48,72],[-85,-14],[-233,-4],[-114,-58],[-86,-128],[-86,-60],[-52,-136],[-232,-220],[-138,-218],[-215,-239],[-83,-71],[68,-82],[143,5],[-25,-198],[115,4],[41,-60],[74,-11],[33,109],[51,58],[82,3],[56,-88],[126,-141],[-17,-218],[50,-71],[-11,-62],[-66,-79],[-25,-71],[-6,-100],[-27,-100],[10,-100],[-14,-73],[19,-73],[-46,-212],[-3,-70],[-100,-141],[-54,-150],[-50,-72],[-59,-203],[-54,-110],[-107,-149],[-89,-185],[-30,-19],[-95,-226],[-119,-109],[-34,-50],[-98,-49],[-83,60],[-93,93],[-71,-172],[-45,12],[-98,-147],[-49,-109],[14,-71],[-5,-109],[-69,-62],[-17,-56],[-54,-39],[-44,-73],[-38,3],[-61,-75],[-19,-129],[50,-33],[65,-90],[44,-154],[89,-219],[18,-129],[-12,-145],[21,-34],[-11,-140],[-33,-91],[-85,-13],[-96,-73],[-34,-57],[-62,6],[-48,-57],[-46,64],[23,108],[-11,51],[47,156],[-25,85],[-3,97],[-38,64],[82,47],[-24,37],[-18,144],[-59,12],[-33,48],[-28,-53],[-72,31],[-16,114],[69,240],[-26,73],[-114,82],[-43,-26],[-46,15],[-155,-116],[-88,-132],[-34,156],[13,90],[30,15],[67,147],[-32,62],[-87,49],[-47,-28],[-70,-161],[-114,-77],[-29,-116],[-47,-74],[-75,-28],[-38,48],[-41,-32],[-22,-120],[68,-122],[58,-18],[38,22],[25,-109],[-10,-108],[61,-45],[41,8],[12,53],[76,98],[59,18],[29,-60],[64,-28],[101,-13],[8,-120],[-26,-31],[-35,41],[-163,-134],[-7,-79],[-84,-77],[-49,-65],[-56,-136],[18,-68],[39,-63],[76,-56],[19,-114],[41,-166],[21,-49],[2,-97],[60,-62],[7,-69],[48,-41],[-18,-58],[-46,41],[-31,-40],[83,-112],[32,-94],[-72,-37],[-55,-57],[-18,-60],[69,5],[38,-82],[39,-45],[-11,-133],[-35,-47],[6,-73],[-20,-43],[18,-80],[-55,3],[-79,-198],[-10,-94],[-55,-140],[-41,-24],[-24,-127],[-8,-146],[-29,24],[-71,-184],[-9,-70],[-76,2],[-19,-139],[-103,-117],[-99,-152],[-64,-53],[-27,31],[-26,-47],[-83,25],[-102,-105],[-38,156],[-31,-29],[29,-77],[-1,-85],[-46,-50],[-51,-19],[-27,-49],[-78,-2],[-43,-57],[-110,-35],[-80,-106],[48,-128],[-51,-59],[-37,66],[-21,156],[17,59],[-85,63],[-92,15],[-129,-97],[-7,-70],[-59,-31],[-38,-90],[0,-75],[-78,-77],[-18,-83],[0,-81],[-25,-71],[27,-103],[36,-84],[52,-79],[-7,-51],[38,-105],[134,-240],[41,-43],[70,-196],[23,-27],[25,-154],[28,-246],[0,-154],[21,-60],[-33,-68],[5,-231],[-29,-96],[-56,-45],[-29,-57],[-136,-146],[-68,37],[8,-93],[-23,-55],[-5,-74],[-48,-27],[-1,-43],[-82,-61],[-56,-126],[-31,-17],[-5,94],[10,232],[25,37],[-64,67],[-38,70],[-43,12],[-41,-22],[5,134],[-72,-24],[5,97],[-49,183],[-58,39],[-27,75],[-39,55],[-41,-20],[-77,21],[15,192],[-91,3],[-34,-56],[18,-51],[-19,-98],[8,-121],[-48,-170],[-26,-182],[-36,-113],[4,-181],[37,-112],[48,24],[13,-167],[33,-48],[13,-211],[-17,-26],[32,-89],[22,8],[49,-85],[72,-6],[26,-84],[170,-284],[42,-149],[6,-116],[-20,-146],[18,-63],[-6,-139],[65,-158],[44,-226],[-78,-1],[-39,24],[-112,141],[-38,31],[-51,91],[-63,85],[2,87],[-33,93],[-40,63],[7,55],[-27,59],[1,135],[-26,59],[8,55],[-10,180],[-30,114],[-54,105],[-2,65],[-39,51],[-9,72],[-88,192],[-41,-34],[-10,74],[16,170],[34,187],[-13,65],[-4,131],[32,53],[6,87],[-7,197],[-19,59],[18,109],[-15,121],[-48,173],[-51,256],[-8,244],[-19,42],[9,70],[-13,64],[-33,31],[-28,150],[-57,-186],[-109,-94],[-46,-109],[-68,17],[-81,95],[21,185],[24,107],[3,77],[-13,116],[-35,170],[-59,58],[21,127],[-76,150],[-34,-18],[-35,53],[-59,142],[-32,99],[-13,142],[-26,177],[-25,73],[-75,-32],[-41,130],[-26,-78],[24,-118],[-54,-130],[-21,16],[-70,-21],[-46,9],[-3,-51],[-50,21],[-14,-32],[-77,67],[-33,-46],[-64,-26],[-36,-57],[-9,-62],[19,-90],[-92,-207],[-91,-56],[-42,12],[-5,-66],[-39,-65],[-56,-146],[-45,-94],[-58,-58],[-48,-114],[-96,-98],[-23,-45],[1,-114],[-69,-65],[-56,11],[-40,-132],[-39,14],[-55,-58],[-26,-167],[18,-114],[-11,-84],[16,-100],[-15,-85],[27,-77],[-22,-183],[-37,-115],[-14,-113],[8,-34],[6,-270],[-13,-30],[-46,17],[-53,-167],[-3,-99],[-69,-45],[-29,-60],[-15,-124],[-70,-75],[-65,74],[-57,138],[-30,147],[11,83],[-23,52],[-48,272],[-39,151],[-50,130],[-40,166],[-26,246],[-44,220],[-19,20],[-29,166],[-15,15],[-40,145],[-17,112],[-10,201],[-44,289],[-8,155],[-22,199],[29,170],[1,91],[-36,101],[-13,179],[-50,-195],[-82,-81],[-61,-44],[-55,24],[-62,87],[-38,86],[-70,124],[-33,80],[86,16],[71,52],[28,97],[-72,-22],[-15,-28],[-65,26],[-82,104],[-52,122],[-83,36],[-24,76],[-16,145],[-62,19],[4,101],[-37,63],[-130,-22],[-93,-41],[-75,29],[-63,5],[-9,-43],[-129,16],[-51,-40],[-73,28],[-11,-38],[-99,54],[-10,44],[-82,-30],[-57,34],[-55,-15],[-26,40],[-94,0],[-14,33],[-81,22],[-20,80],[-24,221],[-21,44],[-54,14],[-88,-49],[-112,-128],[-63,55],[-75,-1],[-38,72],[-103,91],[-4,47],[-71,74],[-53,5],[-26,36],[-31,103],[-10,85],[-53,104],[2,77],[-65,124],[-9,65],[-60,-42],[-93,80],[9,-67],[-52,-38],[-73,16],[2,-106],[25,-141],[42,-131],[16,-99],[60,-142],[77,-150],[38,-36],[4,-82],[22,-31],[-13,-97],[6,-73],[40,-64],[12,-100],[27,10],[-3,83],[35,154],[28,34],[44,-99],[-16,-63],[19,-98],[-22,-116],[4,-93],[39,-18],[3,-61],[53,-6],[56,43],[150,-21],[67,49],[41,139],[47,54],[56,133],[45,50],[39,128],[25,-37],[-13,-119]],[[37353,15391],[42,21],[27,67],[-27,38],[24,56],[38,5],[45,167],[56,126],[41,-2],[22,75],[21,-95],[42,-27],[2,-143],[45,26],[21,-65],[29,-2],[71,-93],[30,4],[-6,-86],[-60,-41],[-41,24],[-28,-39],[53,-132],[-84,-27],[-28,43],[-19,-96],[32,-63],[-4,-41],[-67,3],[17,-118],[34,-25],[2,-69],[59,-135],[-29,-101],[70,-100],[73,-133],[-29,-40],[-74,18],[-48,-16],[-37,-132],[-10,-141],[20,-40],[-18,-112],[-23,9],[-31,-95],[-26,-14],[-63,-112],[35,-132],[-26,-89],[-8,-89],[-46,-173],[-165,-146],[-18,179],[-61,31],[-52,-26],[-1,69],[-35,-15],[-21,43],[-71,-88],[-53,24],[-48,-55],[1,122],[-67,32],[-50,-37],[-50,53],[-31,-33],[-6,119],[-18,155],[-19,39],[18,85],[-42,122],[-59,25],[-19,90],[6,155],[-31,58],[-8,119],[30,190],[72,112],[33,-79],[56,5],[45,-42],[36,10],[45,191],[10,86],[29,42],[43,11],[122,65],[58,154],[65,132],[7,83],[67,24],[50,78],[13,-46]],[[36844,19157],[-24,-32],[-30,-102],[-20,-120],[-124,-99],[-56,20],[-41,47],[-6,186],[67,92],[18,69],[53,22],[32,-16],[84,41],[38,-29],[9,-79]],[[27096,23055],[-97,-93],[-74,-11],[-32,25],[-5,73],[70,91],[64,-18],[77,36],[-3,-103]],[[37984,11798],[59,-72],[44,-114],[-14,-29],[-71,-4],[-23,58],[-63,62],[-55,18],[16,74],[107,7]],[[38623,11765],[-11,-44],[-70,-127],[-38,-3],[-37,-48],[-39,7],[22,184],[38,66],[77,49],[47,59],[22,74],[160,54],[18,-17],[53,45],[42,-32],[-37,-61],[-54,-33],[-19,-38],[-104,-59],[-70,-76]],[[37570,12043],[-31,-104],[-63,-25],[4,115],[44,62],[46,-48]],[[38481,12080],[-68,-87],[-5,45],[55,58],[18,-16]],[[38561,12109],[66,-8],[4,-48],[-89,-29],[19,85]],[[37726,12117],[59,-40],[69,-13],[-11,-96],[-55,-45],[-21,27],[-163,-89],[-31,24],[3,109],[51,57],[46,-12],[29,-77],[28,60],[-38,62],[34,33]],[[38360,12101],[5,-44],[-27,-70],[-51,-33],[-37,2],[-40,-38],[-111,-11],[-41,33],[-79,-4],[-19,67],[58,71],[88,-17],[68,-68],[41,33],[57,-41],[27,15],[61,105]],[[37413,12098],[27,-51],[-58,-86],[-42,62],[-9,70],[46,34],[36,-29]],[[38834,12226],[-38,-67],[-78,17],[18,48],[98,2]],[[40374,12132],[-60,-90],[-99,1],[50,198],[27,39],[71,21],[17,-43],[14,-5],[-20,-121]],[[39458,12353],[-1,-109],[-36,-89],[-35,20],[21,101],[51,77]],[[37222,12426],[7,-34],[-63,-56],[-105,22],[25,65],[136,3]],[[39810,12536],[8,-49],[-40,-71],[-16,36],[10,152],[38,-68]],[[36230,12646],[106,-17],[45,26],[15,-43],[95,-23],[41,-64],[8,-69],[40,-21],[77,2],[46,-21],[75,-5],[31,122],[41,0],[13,-60],[42,18],[73,-69],[65,-24],[23,-137],[68,-65],[91,43],[57,-54],[-14,-147],[-20,-60],[-60,30],[-67,64],[-66,-43],[-112,48],[-15,-28],[-151,65],[-56,57],[-84,44],[-105,5],[-27,-32],[-81,40],[-35,42],[-113,21],[-30,109],[-41,42],[-51,-10],[28,87],[14,112],[34,15]],[[39829,12795],[14,-28],[10,-141],[-21,-71],[-42,73],[10,93],[29,74]],[[38334,12915],[-29,-121],[-34,25],[16,68],[0,82],[42,24],[5,-78]],[[38389,12984],[-21,-19],[-9,-163],[-18,-71],[-34,43],[25,76],[19,185],[38,-51]],[[37492,13148],[-14,96],[31,62],[6,-120],[-23,-38]],[[38853,13381],[49,-66],[-2,-60],[-64,-64],[-72,65],[-23,90],[55,45],[57,-10]],[[39191,13465],[64,-54],[37,4],[30,-37],[11,-71],[26,-43],[-7,-75],[-106,104],[-55,41],[-8,-42],[-77,66],[-49,-66],[-26,61],[-51,3],[38,89],[92,1],[27,-26],[54,45]],[[36444,13523],[53,-52],[-10,-86],[-25,-37],[-52,58],[11,114],[23,3]],[[39294,13740],[-13,-89],[-42,10],[11,65],[44,14]],[[38556,13755],[95,-24],[-34,-54],[-77,-16],[16,94]],[[39942,13766],[90,-16],[10,-65],[-100,81]],[[36194,13792],[38,-99],[11,-120],[53,-45],[-29,-114],[-59,40],[-24,165],[-62,9],[20,145],[52,19]],[[38974,13807],[28,-72],[-66,-4],[-16,60],[28,41],[26,-25]],[[35313,13931],[45,-168],[-22,-50],[-27,31],[-37,122],[8,59],[33,6]],[[39935,14003],[54,-10],[28,-45],[-30,-59],[-52,114]],[[40638,11862],[-132,253],[-73,-23],[-19,26],[-46,-11],[19,69],[13,78],[-19,15],[-23,98],[8,78],[-46,102],[-24,130],[-72,169],[-55,56],[-57,18],[-108,104],[-99,18],[-46,48],[-49,89],[-60,18],[-47,69],[-40,-124],[-46,-9],[-15,41],[5,118],[-64,131],[-16,68],[68,-34],[38,84],[85,-30],[20,96],[-72,4],[-76,-26],[-44,9],[-35,42],[-18,101],[-43,55],[-74,8],[23,63],[7,99],[81,34],[27,54],[78,28],[56,-43],[30,-49],[74,0],[39,-159],[-25,-84],[9,-159],[22,-54],[41,-10],[6,-100],[36,-94],[61,-9],[56,96],[7,53],[38,55],[17,86],[45,-8],[59,45],[-10,72],[82,77],[111,-77],[141,-143],[41,8],[110,-71]],[[38949,14064],[-1,-85],[-21,-16],[-21,85],[43,16]],[[39353,14168],[60,-39],[-50,-64],[-74,38],[6,35],[58,30]],[[35118,14554],[71,-135],[-7,-87],[-62,79],[-20,117],[18,26]],[[38623,14594],[11,-65],[-31,-113],[-30,-43],[-28,-88],[-88,-37],[-64,4],[-33,40],[-83,3],[-67,-18],[-14,25],[-101,-25],[-26,27],[-39,-14],[-31,-75],[-17,-99],[12,-113],[19,-59],[43,-55],[12,-73],[50,-7],[54,143],[77,-17],[13,40],[89,1],[42,49],[27,-48],[-9,-62],[-41,31],[-32,-11],[-56,-144],[-72,-57],[-13,-48],[41,-199],[37,-59],[10,-52],[-21,-126],[28,-26],[58,-167],[-101,-33],[-2,-80],[-49,0],[-28,45],[7,108],[-23,67],[-58,108],[22,88],[-8,135],[-29,12],[-69,-85],[27,-198],[-12,-51],[6,-163],[-17,-146],[7,-91],[-98,-31],[-23,60],[20,130],[13,144],[-5,87],[-36,138],[-47,-35],[-21,122],[-1,78],[48,81],[0,64],[28,68],[-4,183],[45,121],[14,159],[-1,88],[35,128],[36,32],[28,-22],[29,64],[3,69],[74,-12],[29,-51],[37,10],[67,-20],[50,-51],[15,36],[124,-31],[47,50],[29,82],[65,80]],[[39003,14725],[-26,-93],[20,-27],[-5,-107],[-42,-75],[19,-51],[52,150],[65,45],[-2,-126],[-49,-43],[0,-59],[47,-32],[2,-54],[-94,39],[-8,-127],[-41,111],[-10,161],[-11,44],[22,132],[45,111],[16,1]],[[39071,14830],[12,-43],[-16,-83],[-28,-18],[-19,58],[51,86]],[[36502,15205],[1,-102],[-42,83],[41,19]],[[34881,15590],[49,-24],[30,-58],[66,-17],[41,15],[37,-30],[29,24],[53,-92],[19,-84],[27,-33],[4,-88],[47,-42],[35,-61],[101,-125],[57,-119],[45,-140],[38,-40],[6,76],[50,-64],[10,-69],[50,-33],[44,-65],[15,-103],[34,-59],[47,-6],[25,-72],[36,24],[44,-57],[10,-82],[-37,-27],[-15,-154],[58,-77],[69,0],[9,-127],[27,-126],[28,-65],[79,-27],[64,-146],[6,-75],[-31,-103],[17,-41],[-18,-103],[12,-58],[-16,-345],[-22,5],[-37,87],[-25,-80],[-51,65],[-53,-30],[-48,128],[-126,164],[-77,127],[-11,88],[-74,99],[-40,130],[-28,39],[-34,113],[7,26],[-40,151],[-21,45],[-13,113],[-62,133],[-9,67],[-75,92],[-14,112],[-64,294],[-111,120],[-7,116],[-107,223],[-42,20],[-127,254],[-29,182],[39,15]],[[39682,22898],[-33,-39],[-84,18],[-35,-31],[-21,-87],[-40,41],[-59,-33],[-46,32],[21,94],[43,0],[152,218],[2,39],[60,40],[39,-36],[104,23],[38,32],[103,-47],[47,1],[48,72],[-18,50],[60,117],[42,111],[-2,123],[46,-19],[-13,-113],[156,88],[39,49],[35,107],[77,94],[21,121],[22,43],[35,174],[-3,81],[-26,35],[26,100],[-21,64],[52,52],[8,107],[33,-4],[10,-82],[65,4],[11,69],[-60,-14],[13,94],[47,-37],[21,-173],[38,-73],[42,-214],[-21,-109],[-34,-31],[-21,-140],[-47,-16],[-21,-121],[14,-131],[-11,-104],[-19,-20],[-31,-153],[35,-137],[-45,-45],[-11,-93],[-67,-47],[-41,75],[-50,-19],[-1,-92],[-50,-36],[7,100],[-31,-7],[-43,-97],[-54,-19],[-111,35],[-44,-46],[35,-73],[-69,-39],[-43,-142],[-65,-10],[-46,90],[3,104],[39,61],[-85,53],[-53,-16],[-43,-45],[-71,-21]],[[41245,25164],[-32,-54],[-49,-14],[-49,-49],[-53,20],[-87,-87],[-36,-86],[-12,-96],[-194,171],[-90,-76],[-35,63],[-45,-15],[-11,-63],[53,-32],[-9,-80],[-55,-105],[-28,40],[20,107],[-44,64],[10,109],[49,24],[69,110],[46,-13],[34,56],[-12,83],[37,63],[20,167],[-26,144],[47,87],[129,-234],[102,-123],[54,3],[28,-43],[85,-16],[27,-153],[57,28]],[[39842,22742],[-52,-81],[-11,-66],[-57,73],[-59,-48],[-45,-144],[-53,54],[-15,120],[37,63],[12,71],[94,-8],[21,66],[60,41],[61,-53],[7,-88]],[[39459,22399],[-40,-274],[-53,-71],[-89,33],[13,101],[-20,37],[60,207],[-28,121],[-37,5],[-5,-78],[-25,-34],[-32,67],[21,107],[74,65],[37,84],[40,-16],[8,-56],[85,-18],[-3,-79],[35,-96],[-41,-105]],[[38862,22653],[-13,-42],[-71,-28],[4,67],[60,25],[20,-22]],[[32977,16597],[35,-56],[24,-86],[55,-136],[11,-90],[54,-203],[2,-78],[-27,-141],[-40,-60],[-98,-77],[-51,30],[-20,57],[-21,137],[-17,306],[12,31],[29,318],[52,48]],[[38697,16605],[44,-54],[41,-112],[19,-184],[-7,-101],[22,-28],[4,-117],[-68,-106],[-34,129],[-38,-85],[-17,-86],[25,-40],[17,-93],[-5,-51],[-35,-95],[-41,73],[-42,19],[-62,63],[-24,64],[-3,171],[27,74],[-23,50],[-60,60],[-13,-45],[-62,-49],[-23,70],[-47,-35],[-37,-172],[-32,33],[19,61],[10,131],[39,64],[62,21],[16,90],[54,48],[35,-22],[15,-128],[45,28],[22,100],[44,-28],[4,114],[86,9],[10,52],[-18,125],[31,-18]],[[38533,16742],[30,-33],[-22,-92],[-60,-10],[-6,75],[58,60]],[[38396,16951],[39,-38],[-53,-243],[9,-193],[-24,-18],[-26,82],[-29,19],[-26,102],[61,71],[-8,101],[18,88],[39,29]],[[38489,16976],[8,-47],[-6,-131],[-80,-109],[41,131],[37,156]],[[37922,17043],[-2,-94],[26,-111],[-45,-51],[-20,-69],[-57,-43],[-3,-65],[-29,-81],[-46,-47],[-45,-107],[-61,-16],[46,106],[59,71],[51,110],[37,107],[58,79],[-7,87],[38,124]],[[38545,17070],[24,-36],[45,19],[2,-148],[24,-49],[-4,-81],[-35,-37],[-18,66],[4,108],[-49,62],[7,96]],[[38274,17150],[41,-64],[69,-11],[-20,-95],[-54,-100],[-46,-14],[-36,39],[13,56],[8,163],[25,26]],[[38605,17353],[32,4],[42,-84],[-4,-163],[13,-115],[-45,-5],[-27,72],[0,53],[-41,103],[-37,48],[-14,79],[81,8]],[[38407,17349],[25,-22],[62,-120],[-42,-8],[-21,60],[-41,19],[17,71]],[[38106,17597],[58,-77],[14,-147],[-24,-81],[-28,-20],[-43,123],[-4,69],[-36,76],[11,54],[52,3]],[[38098,18874],[25,20],[64,-72],[88,-28],[-18,-38],[-1,-122],[11,-65],[36,-64],[-41,-214],[-80,-84],[8,-53],[-33,-105],[27,-114],[18,-170],[26,-49],[75,89],[28,-4],[33,-57],[12,-97],[47,58],[58,-43],[-52,-40],[69,-154],[-32,-47],[-48,52],[-34,105],[-83,122],[-2,-143],[-48,97],[-50,55],[-57,-95],[-29,9],[-58,145],[48,76],[-17,67],[-59,-37],[-35,44],[-27,284],[3,85],[51,-52],[12,31],[-16,113],[20,89],[1,116],[-13,34],[35,249],[38,7]],[[41631,25657],[-76,-35],[-29,-48],[-76,-68],[-16,33],[79,89],[118,29]],[[41853,25885],[-118,-157],[-20,14],[92,130],[46,13]],[[40875,27925],[18,-182],[28,-51],[16,-167],[-28,-93],[1,-94],[43,-126],[42,-294],[26,-75],[36,-193],[-99,25],[-41,-26],[-80,-311],[0,-64],[60,-130],[19,-138],[-90,-20],[-33,-152],[-34,1],[-14,144],[30,114],[-11,142],[28,90],[-7,89],[-35,115],[28,108],[10,121],[-1,170],[-13,46],[26,160],[-73,191],[-2,119],[34,161],[-15,81],[53,46],[44,-5],[34,198]],[[43627,29167],[19,-40],[-145,-118],[33,113],[93,45]],[[36,31634],[110,-42],[19,-53],[93,-64],[158,-67],[52,-77],[129,-14],[76,-229],[66,-92],[58,-8],[-41,150],[61,33],[112,-52],[97,22],[169,-157],[109,-57],[-105,-70],[-17,-64],[-190,-45],[9,-94],[-90,-63],[53,-100],[-91,-42],[-112,43],[-84,80],[-102,18],[-49,55],[-8,98],[-135,52],[-56,-42],[-110,1],[-74,114],[-14,67],[-100,-14],[6,-82],[56,-38],[-48,-124],[-43,-19],[0,0],[0,1],[0,126],[0,126],[0,127],[0,126],[0,126],[0,127],[0,126],[0,107],[0,0],[36,-16]],[[44239,31850],[-69,-51],[-137,61],[60,54],[146,-64]],[[45579,32298],[0,-123],[0,-15],[-148,-47],[9,109],[139,76]],[[160,32306],[164,-84],[-62,-50],[-179,-34],[-83,22],[0,0],[0,15],[0,123],[0,0],[160,8]],[[31772,32800],[69,-94],[-205,-28],[11,91],[125,31]],[[40802,32888],[144,-82],[-29,-93],[-211,31],[-129,47],[80,101],[145,-4]],[[37143,33011],[-75,-67],[-151,44],[67,74],[159,-51]],[[41367,33299],[212,-17],[282,-77],[-3,-57],[-177,-34],[-132,11],[-266,111],[84,63]],[[40402,33453],[132,-75],[196,81],[107,-65],[177,-7],[106,-98],[-57,-102],[-250,-56],[-65,44],[-316,-79],[-150,22],[-128,91],[35,65],[-46,85],[47,58],[212,36]],[[35821,34259],[286,-120],[-51,-118],[-452,-36],[-149,-59],[-97,20],[258,303],[205,10]],[[34298,34461],[358,-37],[-139,-65],[-219,102]],[[35169,34476],[180,-21],[104,-57],[-78,-254],[-208,-4],[-122,46],[-225,13],[-161,128],[150,133],[360,16]],[[34940,34748],[127,-76],[27,-171],[-442,-59],[-151,40],[70,213],[369,53]],[[26337,24806],[12,-92],[34,-41],[92,-54],[-16,-59],[-45,-9],[-49,30],[-38,-29],[-53,4],[-44,-90],[-139,-5],[-4,32]],[[38190,20561],[32,-28],[-7,-160],[-22,-73],[-33,-265],[-57,-157],[-14,-152],[-28,93],[-37,57],[-34,160],[16,158],[65,211],[46,112],[73,44]],[[29572,17389],[24,-22],[45,21],[45,-40],[-42,-49],[-72,-4],[-30,46],[30,48]],[[24279,9797],[7,196],[-11,147],[33,72],[8,97],[27,122],[7,167],[23,69],[1,96],[54,116],[0,42],[54,57],[34,87],[20,122],[7,166],[-12,118],[-70,238],[-4,78],[-22,78],[49,86],[-2,109],[-66,268],[-4,81],[-25,54],[-43,148],[22,25],[-39,110],[11,35],[-14,104],[-40,124],[-99,183],[-48,103],[-1,35],[-93,155],[30,44],[-66,37],[-6,48],[-41,95],[1,87],[-28,44],[-29,143],[59,82],[14,156],[-9,104],[39,49],[-19,154],[42,123],[-4,47],[14,201],[10,51],[-69,208],[-56,51],[-5,108],[-82,4],[-69,-12],[-72,27],[-19,-57],[-117,-26],[-63,91],[-75,308],[-36,79],[-40,50],[-109,24],[-210,-46],[-95,-51],[-18,-59],[-79,-15],[-94,-73],[-54,-70],[-97,-50],[-66,-71],[-34,46],[-202,80],[-199,-34],[-41,-18],[-135,-95],[-69,-79],[-32,5],[-69,55],[-129,143],[-28,62],[-114,200],[-49,29],[-5,37],[-67,67],[-18,58],[-43,55],[-85,61],[-3,75],[-44,36],[-4,71],[-30,82],[-22,165],[0,67],[-79,157],[-26,23],[-65,115],[-23,116],[-24,-45],[-22,84],[-38,60],[8,52],[-18,73],[-48,-21],[-47,63],[-59,118],[7,141],[-10,75],[32,77],[-29,118],[-47,139],[5,69],[75,215],[11,220],[36,157],[19,177],[-6,132],[-17,127],[-34,73],[24,67],[-2,98],[12,74],[-24,90],[-34,25],[-34,122],[-5,160],[33,125],[24,10],[29,148],[85,286],[90,167],[16,193],[47,206],[100,109],[57,252],[26,58],[114,44],[73,60],[56,111],[60,58],[54,111],[62,177],[6,63],[-27,105],[-3,155],[61,158],[13,140],[129,209],[90,58],[90,103],[67,214],[48,232],[72,9],[12,-63],[61,-87],[49,-23],[89,35],[33,-23],[57,44],[11,-57],[105,-18],[99,80],[10,44],[106,87],[29,-31],[32,67],[116,111],[160,36],[37,-9],[42,54],[67,-8],[46,35],[122,-5],[65,-64],[113,66],[18,42],[72,-45],[74,42],[53,-53],[74,14],[52,30],[39,54],[57,26],[61,-26],[9,-65],[41,-52],[60,79],[13,-62],[-40,-98],[-36,-29],[12,-122],[56,-62],[7,-103],[-65,-168],[-59,-55],[-10,-87],[35,-71],[49,1],[50,-40],[9,-86],[84,-32],[64,-63],[48,-9],[79,27],[104,-48],[37,-50],[92,-33],[22,-58],[16,-125],[34,-71],[36,-28],[86,-13],[81,-35],[103,-76],[60,-92],[40,-37],[47,5],[52,54],[36,78],[14,101],[-28,127],[19,116],[62,97],[132,94],[62,-2],[125,-70],[2,-82],[126,-80],[112,-10],[27,-110],[80,21],[190,-59],[73,-68],[64,-7],[79,-66],[60,33],[109,140],[48,-26],[60,44],[72,-60],[34,-67],[35,49],[51,-59],[46,38],[70,-18],[70,50]],[[27206,21642],[-19,-45],[-14,-146],[-27,-105],[2,-85],[-44,-47],[-40,57],[-67,138],[-11,117],[-33,54],[-50,155],[-19,-65],[32,-63],[4,-96],[31,-99],[81,-158],[6,-107],[34,-70],[23,-160],[68,-229],[88,-335],[35,-108],[-3,-125],[26,-139],[24,-50],[39,-22],[31,-74],[58,-74],[-3,-63],[35,-164],[10,-153],[-7,-55],[8,-176],[25,-201],[62,-70],[29,-85],[55,-44],[43,-172],[30,-195],[9,-132],[61,-214],[20,61],[36,-132],[50,2],[32,-73],[44,-15],[66,-178],[39,-26],[39,-67],[61,-180],[40,-11],[41,-146],[-5,-61],[-42,-52],[10,-55],[43,-58],[47,-139],[56,-88],[87,-10],[48,64],[59,52],[81,-46],[25,14],[92,108],[39,-17],[61,10],[63,47],[31,-21],[67,26],[106,60],[39,84],[28,18],[63,-40],[-22,-83],[2,-210],[-27,-89],[-15,-178],[4,-42],[-50,-144],[-19,-102],[-57,-133],[-3,-56],[-57,-181],[-37,-155],[-5,-69],[-49,-168],[-57,-145],[-32,-114],[-167,-363],[-76,-149],[-187,-223],[-137,-237],[-176,-376],[-54,-178],[-47,-103],[-48,-28],[-9,-74],[-56,-47],[-27,-52],[-6,-124],[-21,-37],[-52,-254],[-36,-52],[-16,-126],[-46,-235],[9,-81],[78,-129],[11,-66],[-31,-83],[-1,-61],[20,-82],[-20,-88],[25,-183],[19,-27],[17,-188],[57,-69],[35,-70],[12,-87],[-28,-131],[20,-167],[-7,-123],[10,-84],[-2,-214],[8,-122],[30,-82],[-1,-86],[-39,-80],[5,-98],[-51,-104],[-59,-156],[-63,-72],[-14,-43],[-63,-28],[-87,-66],[-88,-99],[-41,-112],[-53,-93],[-7,-55],[-39,-8],[-56,-83],[-68,-145],[-31,-40],[-29,-141],[59,-139],[-8,-59],[27,-113],[8,-112],[21,-14],[3,-194],[-16,-237],[12,-68],[-49,-123],[-58,-55],[-116,-74],[-109,-111],[-35,-108],[43,-75],[-12,-217],[-20,-101],[-17,-169],[-21,-92],[-46,-80],[-33,-25],[-72,-151],[-101,-326],[-48,-113],[-78,-112],[-66,-140],[-123,-190],[-66,-81],[-109,-101],[-71,12],[-35,-22],[-11,-64],[-51,22],[-77,-55],[-120,50],[-29,-33],[-98,29],[-45,-15],[-73,-85],[-94,9],[-55,-25],[-72,-90],[-40,10],[-42,89],[-63,14],[-32,74],[-16,95],[-36,86],[-37,134],[53,46],[10,98],[-23,151],[-35,81],[-77,253],[-60,321],[-38,106],[-105,180],[-49,159],[-8,91],[-34,160],[-15,144],[-8,244],[-39,163],[4,408],[-15,69],[-55,125],[-15,83],[-57,162],[-29,168],[-110,369],[-32,49],[-23,92],[-17,151],[6,74]],[[20838,21301],[5,-74],[-52,-2],[13,82],[34,-6]],[[20749,21410],[-39,-107],[-32,-39],[-30,91],[101,55]],[[20986,21298],[31,148],[20,-78],[-51,-70]],[[23919,15120],[-29,-138],[-31,17],[32,123],[28,-2]],[[29038,11105],[27,-136],[30,-45],[43,-248],[6,-166],[12,-111],[28,-111],[-35,-166],[-24,28],[-18,111],[-33,-31],[26,-169],[1,-86],[-53,-186],[9,-96],[-18,-193],[-36,-162],[-32,-212],[-33,-171],[-46,-309],[-38,-174],[-8,-106],[-34,-241],[-61,-283],[-40,-47],[-67,-11],[-95,-95],[-45,-3],[-38,61],[-59,22],[-43,65],[-47,206],[-9,282],[-29,62],[-17,146],[32,215],[43,46],[11,86],[72,227],[-12,58],[14,60],[-33,119],[4,63],[-26,96],[-2,166],[-12,80],[62,191],[3,130],[50,-9],[53,76],[47,-4],[88,78],[69,103],[22,2],[49,138],[39,18],[8,98],[29,16],[-21,93],[39,10],[31,56],[40,29],[27,152],[-12,44],[15,77],[47,61]]],"objects":{"continent":{"type":"GeometryCollection","geometries":[{"arcs":[[[0]],[[1,2,3]],[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]]],"type":"MultiPolygon","properties":{"continent":"South America"}},{"arcs":[[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33,34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]]],"type":"MultiPolygon","properties":{"continent":"Oceania"}},{"arcs":[[[47]],[[48]],[[49,-3,50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]]],"type":"MultiPolygon","properties":{"continent":"North America"}},{"arcs":[[[115,116,117,118,119,120,121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]]],"type":"MultiPolygon","properties":{"continent":"Europe"}},{"arcs":[[[151,152,153,-119,154,-117,155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[-34,187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]],[[222]],[[223]],[[224]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230,-121]],[[231]],[[232]]],"type":"MultiPolygon","properties":{"continent":"Asia"}},{"arcs":[[[233,-153,234]],[[235]],[[236]],[[237]],[[238]],[[239]]],"type":"MultiPolygon","properties":{"continent":"Africa"}},{"arcs":[[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33,34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]]],"type":"MultiPolygon","properties":{"continent":"Oceania"}},{"arcs":[[[47]],[[48]],[[49,-3,50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]]],"type":"MultiPolygon","properties":{"continent":"North America"}},{"arcs":[[[115,116,117,118,119,120,121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]]],"type":"MultiPolygon","properties":{"continent":"Europe"}},{"arcs":[[[151,152,153,-119,154,-117,155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[-34,187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]],[[222]],[[223]],[[224]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230,-121]],[[231]],[[232]]],"type":"MultiPolygon","properties":{"continent":"Asia"}},{"arcs":[[[233,-153,234]],[[235]],[[236]],[[237]],[[238]],[[239]]],"type":"MultiPolygon","properties":{"continent":"Africa"}}]}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment