Skip to content

Instantly share code, notes, and snippets.

@animateddata
Last active July 3, 2020 17:46
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 animateddata/0949801eba0d51c80f22490db665f8c3 to your computer and use it in GitHub Desktop.
Save animateddata/0949801eba0d51c80f22490db665f8c3 to your computer and use it in GitHub Desktop.
World map with rivers
license: gpl-3.0
height: 960
border: no

World map with rivers and lakes using Natural Earth data.

Peter Cook

<!DOCTYPE html>
<meta charset="utf-8">
<head>
<title>Geo (spinning))</title>
</head>
<style>
body {
background-color: #eee;
}
</style>
<body>
<canvas id="content"></canvas>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.2.2/d3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/3.0.0/topojson.min.js"></script>
<script>
var context = document.getElementById('content').getContext('2d');
var width = window.innerWidth;
var height = window.innerHeight;
var size = d3.min([width, height]);
var landGeojson, riversGeojson, lakesGeojson;
d3.select('#content')
.attr('width', width + 'px')
.attr('height', height + 'px');
var projection = d3.geoOrthographic()
.scale(0.45 * size)
.translate([0.5 * width, 0.5 * height]);
var geoGenerator = d3.geoPath()
.projection(projection)
.context(context);
function drawFeatures(features, fill) {
context.beginPath();
geoGenerator({type: 'FeatureCollection', features: features});
fill ? context.fill() : context.stroke();
}
function update(t) {
context.clearRect(0, 0, width, height);
projection.rotate([-t / 1000 - 40])
context.lineWidth = 0.3;
context.strokeStyle = '#999';
drawFeatures(landGeojson.features, false);
context.strokeStyle = '#3882bc';
context.lineWidth = 0.5;
drawFeatures(riversGeojson.features, false);
context.fillStyle = '#3882bc';
drawFeatures(lakesGeojson.features, true);
window.requestAnimationFrame(update);
}
// REQUEST DATA
d3.json('ne.json', function(err, json) {
landGeojson = topojson.feature(json, json.objects.ne_50m_admin_0_countries)
riversGeojson = topojson.feature(json, json.objects.ne_10m_rivers_lake_centerlines)
lakesGeojson = topojson.feature(json, json.objects.ne_10m_lakes)
window.requestAnimationFrame(update);
})
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","arcs":[[[47420,71333],[-19,-9],[-53,75],[13,47],[27,-32],[32,-81]],[[109629,88441],[-149,-88],[-68,-49],[-16,-2],[-100,46],[-154,-5],[-127,-9],[-53,-12],[-159,-15],[-83,-45],[-78,-21],[-40,-24],[-27,-47],[-75,-69],[-42,-34],[-22,-37],[-65,3],[-32,-41],[-36,-59],[-65,-85],[-34,-34],[-21,-56],[15,-29],[53,-43],[37,-73],[24,-83],[15,-81],[23,-36],[12,-96],[-23,-56],[0,-27],[32,-74],[-32,-57],[-39,-93],[-70,-69],[-29,-62],[-49,-68],[-20,-57],[-43,-48],[24,-69],[32,-43],[-2,-174],[-17,-49],[-88,-47],[-83,-21],[-103,-1],[-70,18],[-111,52],[-46,-31],[-9,-76],[81,-124],[34,-69],[37,-115],[27,-60],[-10,-56],[-146,-123],[-94,-12],[-58,-21],[-29,-31],[-21,-130],[-21,-48],[1,-57],[-20,-64],[-30,-42],[-21,-67],[17,-346],[-85,-138],[-47,-50],[-45,-23],[-38,9],[-47,79],[-32,30],[-33,-6],[-34,-28],[-53,9],[-45,28],[-23,-3],[-13,-28],[-49,-59],[-120,-91],[-48,-6],[-21,-23],[8,-37],[22,-30],[37,-21],[2,-25],[-61,-46],[-62,-30],[-71,-12],[-74,18],[-38,40],[-45,3],[-41,-29],[-42,-48],[-46,-103],[-25,-35],[-73,-59],[-21,-76],[-26,-135],[6,-73],[2,-127],[-10,-89],[-19,-58],[4,-46],[28,-53],[-11,-33],[-24,-38],[-24,-21],[-220,-94],[-209,-86],[-36,-12],[-76,-5],[-40,8],[-132,0],[-55,-14],[-55,-26],[-40,-32],[-32,-48],[-55,27],[-173,47],[-470,-63],[-45,12],[-160,73],[-335,153],[-164,76]],[[103729,83453],[113,188],[196,328],[96,162],[12,56],[1,111],[-25,148],[-41,68],[-347,70],[-15,8],[-12,116],[5,51],[-7,99],[1,77],[16,126],[1,57],[-51,244],[-58,275],[-7,99],[68,129],[86,127],[-4,23],[-44,14],[-65,1],[-35,20],[-27,35],[-11,51]],[[103575,86136],[18,90],[-18,176],[37,87],[31,61],[106,9],[-70,138],[33,26],[64,69],[3,39],[52,101],[-4,46],[34,120],[-18,81],[-3,43],[38,28],[24,113],[15,27],[-7,74],[35,7],[33,-58],[52,-62],[34,-17],[43,-9],[94,20],[19,-3],[46,-45],[53,-62],[17,-28],[8,-43],[16,-12],[34,42],[33,14],[63,-13],[49,27],[58,54],[85,67],[12,85],[15,49],[22,28],[-26,98],[30,27],[53,0],[93,38],[149,70],[63,-1],[35,70],[40,26]],[[105168,87833],[75,53],[66,80],[23,61],[16,88],[92,402],[59,43],[59,31],[200,9],[23,82],[15,69],[18,36],[35,34],[148,-107],[156,-49],[154,19],[103,-26],[55,-69],[54,-18],[52,34],[33,6],[12,-22],[26,-9],[40,3],[23,-19],[6,-41],[29,-53],[53,-64],[48,-16],[62,50],[21,-6],[17,53],[37,34],[69,32],[39,28],[14,24],[48,0],[18,9],[14,32],[45,6],[39,-41],[56,-76],[36,-34],[39,29],[26,40],[6,58],[-13,75],[9,61],[31,46],[58,29],[84,11],[51,-7],[19,-24]],[[107666,88819],[59,-15],[29,27],[27,57],[2,70],[-24,84],[6,27],[43,42],[45,63]],[[107853,89174],[43,81],[42,99],[52,62],[61,23],[75,-27],[88,-77],[33,-95],[-22,-113],[-1,-62],[47,-9],[43,18],[27,1],[13,-48],[-15,-48],[-18,-134],[-31,-331],[42,-197]],[[108332,88317],[29,-78],[29,-25]],[[108390,88214],[30,-9],[29,7],[60,51],[91,93],[89,57],[128,32],[43,100],[60,66],[136,99],[74,37],[42,7],[103,-37],[-1,-62],[-30,-27],[2,-36],[42,-5],[141,58],[39,10],[40,59],[38,3],[75,-26],[59,9],[30,-26],[63,-80],[-15,-12],[-32,17],[-17,29],[-73,-38],[-80,-55],[2,-14],[71,-80]],[[85096,57024],[27,6]],[[85123,57030],[59,13],[58,3],[41,-28],[16,5],[62,54],[127,38],[33,23]],[[85519,57138],[39,0],[106,-44],[105,-2],[85,24],[14,217],[20,68],[26,60],[4,56],[-2,78],[19,94],[57,75],[93,35],[52,7],[83,21],[126,21],[46,-3],[4,-10],[-26,-130],[-1,-43],[10,-43],[21,-23],[251,-5],[242,-14],[23,-16],[15,-65],[-3,-125],[-23,-184],[9,-172],[41,-159],[4,-246],[-33,-330],[-7,-209],[19,-88],[40,-91],[60,-96],[47,-124],[33,-152],[12,-96],[-9,-39],[1,-68],[10,-98],[-11,-64],[-34,-32]],[[87087,55123],[-11,-44],[17,-83],[4,-77]],[[87097,54919],[23,-50],[15,-3],[34,27],[40,51],[32,21],[46,-2],[64,-15],[112,-5],[35,9],[105,69],[27,5],[42,-7],[58,-20],[60,-4],[29,21],[11,64],[17,14]],[[87847,55094],[9,-92],[16,-217],[9,-63],[-14,-78],[-18,-82],[5,-62],[-9,-183],[-2,-91],[17,-162],[-3,-50],[-35,-149]],[[87822,53865],[-12,-113],[37,-110],[-2,-22],[-51,-9]],[[87794,53611],[-218,0],[-256,0],[-230,0]],[[87090,53611],[-99,0],[0,-332],[0,-223],[0,-447],[0,-447],[0,-223],[0,-385],[26,-214],[48,-233],[66,-64],[67,-88],[37,-66],[76,-115],[100,-146],[183,-247],[-326,-98],[-285,-86],[-234,-67],[-21,1],[-35,25],[-75,5],[-88,-35],[-71,-9],[-51,16],[-51,31],[-49,45],[-86,16],[-122,-12],[-117,9],[-113,30],[-81,12],[-48,-7],[-53,10],[-55,26],[-47,44],[-56,93],[-43,88],[-39,31],[-242,4],[-232,1],[-330,1],[-329,0],[-330,1],[-252,1],[-171,-15],[-35,14],[-62,70],[-42,38],[-58,64],[-37,71],[-31,22],[-96,25],[-34,3],[-59,-33],[-45,-33],[-32,-32],[-102,-72],[-81,4],[-63,-2],[-43,31],[-43,-3],[-48,-40],[-69,-16],[16,263],[17,117],[0,139],[-10,360],[-19,108],[42,44],[51,94],[21,84],[24,184],[90,426],[42,416],[54,198],[20,221],[149,286],[37,175],[78,86],[109,92],[78,163],[38,113],[43,216],[-1,227],[27,302],[-5,86],[-41,120],[-8,86],[-38,85],[-40,64],[-19,114],[-70,179],[-20,120],[-33,86],[-6,106],[-17,113],[-35,111],[-33,126],[0,40],[21,48],[3,-59],[131,223],[8,43],[-5,108],[6,70],[-124,410],[-99,382],[-17,193],[-130,254],[-51,165],[-29,115],[-22,44],[8,22],[34,6],[74,27],[102,29],[95,67],[25,30],[50,6],[51,-18],[19,13]],[[83273,58581],[130,1],[50,5],[92,-2]],[[83545,58585],[181,-25],[112,3],[39,6],[146,4],[275,7],[253,-1],[50,-24],[46,-45],[30,-60],[14,-44],[25,-35],[9,-53],[-8,-73],[4,-88],[15,-102],[30,-107],[46,-113],[20,-89],[-6,-66],[14,-70],[34,-73],[39,-69],[39,-113],[125,-315],[19,-16]],[[82803,58662],[-18,-8],[-25,87],[22,115],[-13,100],[-29,89],[-30,113],[-9,21],[25,36],[55,121],[44,9],[17,29],[16,73],[51,22],[60,39],[34,43],[34,27],[35,-10],[39,-74],[33,-47],[4,-22],[-98,-60],[-67,-117],[-43,-64],[-53,-52],[1,-13],[30,-41],[-2,-192],[-6,-188],[-8,-16],[-99,-20]],[[50390,75351],[-68,-36],[3,21],[55,48],[10,-33]],[[86166,92288],[17,-16],[35,-69],[24,-60],[46,-21],[59,-60],[17,-36],[22,-110],[3,-67],[-7,-30]],[[86382,91819],[-5,-8],[-21,-109],[5,-92],[-29,-37],[18,-90],[-1,-83],[34,-101],[38,-46],[23,-93],[13,-16],[56,9],[27,-10],[14,-37]],[[86554,91106],[-4,-52]],[[86550,91054],[32,-81],[-12,-67],[-22,-48],[-30,-18]],[[86518,90840],[-33,-16],[-46,-138],[-18,-90],[-22,-24],[-64,-12]],[[86335,90560],[-63,-60],[0,-20],[31,-76],[0,-27]],[[86303,90377],[-33,-5],[-14,-66],[-29,-33],[-32,5],[-31,27],[-25,7],[-3,63],[-13,50],[-48,119],[-159,116],[-37,52],[-33,85],[51,-21],[8,20],[-8,45],[-41,106],[-3,29],[20,89],[33,99],[-2,120],[10,91],[-11,59],[-6,72],[25,96],[34,54],[0,103],[-47,47],[-54,9]],[[85855,91815],[8,140],[-13,42],[-21,30],[51,118],[62,104],[48,95],[21,14],[16,-29],[-2,-57],[22,-34],[65,21],[54,29]],[[86402,104468],[-39,-21],[-40,35],[60,6],[19,-20]],[[85993,104570],[-54,-30],[-8,28],[14,41],[33,2],[15,-41]],[[86134,104684],[42,1],[74,-64],[-28,-47],[-65,-9],[-4,-60],[-101,-9],[-23,12],[-32,94],[6,24],[40,12],[3,-50],[27,5],[10,56],[-36,37],[43,36],[44,-38]],[[78259,92257],[-51,-33],[-43,-15],[-25,19],[-6,60],[6,33],[31,33],[90,-27],[13,-33],[-15,-37]],[[100751,79497],[0,-23],[-44,6],[-12,-12],[-36,7],[-35,17],[24,29],[62,33],[41,-57]],[[100186,79575],[-14,44],[20,17],[12,-31],[-18,-30]],[[100494,79554],[-32,-4],[-29,26],[61,36],[35,48],[14,-28],[-27,-63],[-22,-15]],[[100982,79682],[-3,-14],[-43,14],[-10,20],[27,24],[29,-44]],[[101772,80523],[28,-57],[4,-383],[6,-27]],[[101810,80056],[-15,-5],[-36,-74],[-28,-23],[-42,-59],[-18,-7],[-41,84],[20,34],[-7,31],[-36,13],[-40,-42],[-12,-30],[-2,-60],[6,-101],[-12,-41],[-4,-61],[17,-98],[-20,-74],[17,-14],[55,-5],[28,-86],[-3,-20],[-89,-32],[-35,5],[-65,-23],[-34,-35],[22,-39],[6,-46],[-10,-66],[-67,-235],[-66,-245],[-6,-231]],[[101293,78471],[-36,-57],[-272,54],[-275,54],[-189,37],[-165,33],[-196,39],[-91,174],[-190,365],[-134,259],[-9,34],[-1,110]],[[99735,79573],[16,36],[25,-61],[44,3],[11,-125],[22,-45],[27,-17],[92,-10],[57,16],[112,82],[59,29],[163,-5],[130,-34],[203,-20],[40,5],[110,66],[67,58],[40,16],[26,56],[33,120],[20,23],[19,40],[15,66],[37,66],[152,161],[88,136],[8,44],[48,66],[39,72],[180,206],[36,85],[24,102]],[[101678,80810],[37,-11],[3,-71],[-8,-67],[-4,-110],[16,-32],[29,-14],[21,18]],[[101734,80219],[31,15],[-2,45],[-19,3],[-10,-63]],[[49724,24566],[47,-16],[94,12],[50,0],[31,-14],[65,14],[21,-32],[-59,-30],[-25,13],[-127,-3],[-56,-30],[-24,0],[-55,-44],[-41,28],[-11,25],[29,36],[28,1],[33,40]],[[47956,24471],[6,368],[1,373],[2,381],[1,410]],[[47966,26003],[25,-29],[101,-143],[26,-59],[-66,-49],[-39,-85],[14,-59],[41,-23],[100,-8],[7,-9],[59,-171],[142,-155],[76,-94],[89,-89],[97,-68],[88,-52],[84,-63],[90,-89],[97,-65],[105,-45],[106,-38],[162,15],[51,-4],[31,-28],[-31,-77],[-40,-62],[-54,-26],[-57,-9],[-103,12],[-48,-6],[-46,-26],[-48,-13],[-50,-2],[-96,-38],[-50,13],[-131,62],[-85,15],[-286,24],[-93,14],[-91,22],[-48,1],[-69,-14],[-55,1],[-15,-13]],[[50875,35389],[4,-44],[-22,6],[-53,42],[-22,56],[54,-18],[26,-17],[13,-25]],[[51216,46192],[22,-69],[83,-71],[144,-74],[105,-35],[65,4],[94,-59],[123,-121],[74,-84],[27,-46],[80,-76],[200,-156],[88,-39],[41,-36],[25,-45],[24,-14],[25,18],[50,-16],[76,-51],[59,-60],[77,-134],[24,-53],[11,-48],[-4,-42],[-23,-45],[-56,-69],[-12,-60],[-36,-86],[-11,-69],[-22,-32]],[[52569,44524],[-60,-60],[-15,-60],[-28,-58],[-9,-51],[-1,-66],[6,-107],[-21,-33],[-2,-38],[-31,-45],[-3,-43],[-14,-22],[-35,-23],[-21,-32],[-7,-42],[-20,-38],[-30,-34],[-10,-44],[16,-83],[188,29],[153,-30],[182,-80],[120,-27],[59,24],[44,-4],[29,-30],[39,-7],[48,18],[40,-14],[31,-46],[29,12],[26,69],[30,50],[33,31],[42,10],[50,-13],[39,-25],[30,-38],[33,1],[35,40],[17,49],[-2,56],[14,40],[30,24],[19,33],[11,41],[35,25],[59,9],[31,20],[3,31],[17,29],[33,27],[22,33],[12,39]],[[53865,44071],[19,25],[28,10],[30,83],[33,156],[20,211],[7,300]],[[54002,44856],[34,-1],[15,-22],[25,-12],[48,37],[35,1],[19,29],[23,4],[30,-34],[31,-4],[25,-48],[27,-15],[12,-56],[17,-146],[33,-87],[33,-98],[1,-44],[-18,-45],[-19,-276],[12,-39],[4,-54],[-18,-67],[-34,-99],[-42,-28],[-45,-58],[-32,-21],[-18,14],[-21,-25],[-24,-64],[-29,-29],[-67,-23],[-31,2],[-26,-16],[-22,-35],[-23,-12],[-25,8],[-22,-12],[-20,-34],[-15,-76],[-20,-27],[-36,-14],[-10,-48],[-16,-21],[-62,-23],[-44,-40],[-27,-56],[-29,-36],[-45,-22],[-62,-58],[-9,-36],[24,-33],[8,-29],[-7,-26],[-19,-3],[-54,22],[-20,-31],[-11,-51],[-24,-11],[-15,-25],[-6,-40],[-30,-49],[-52,-59],[-42,-81],[-31,-101],[-35,-66],[-41,-32],[-28,-45],[-15,-58],[-44,-91],[-71,-124],[-65,-84],[-59,-46],[-32,-52],[-8,-58],[-37,-65],[-69,-74],[-19,-33]],[[52713,41645],[-16,-28],[-2,-47],[-27,-62],[-51,-78],[-18,-66],[24,-84],[3,-103]],[[52626,41177],[-10,-41],[-23,-13],[-5,-27],[12,-39],[1,-51],[-11,-63],[-23,-72],[-37,-82],[-9,-55],[29,-56],[-9,-76],[-15,-59],[-23,-43],[-31,-29],[-9,-35],[12,-44],[2,-45],[-9,-47],[5,-46],[20,-45],[-2,-50],[-33,-105],[-8,-64],[21,-275],[-34,-83],[-55,4],[-20,-27],[-14,-122],[-39,-262],[7,-63],[32,-101],[20,-113],[7,-92],[-18,-42],[-39,-30],[26,-112],[20,-52],[58,-106],[224,-147],[93,-86],[105,-118],[58,-121],[5,-100],[-84,-150],[-10,-125],[18,-88],[30,-82],[81,-106],[60,-39],[81,4],[22,-55],[13,-215],[-2,-81],[-23,-74],[-156,-340],[-132,-208],[-48,-115],[-18,-122],[-42,-59],[-230,-185],[-356,-166],[-289,-86],[-65,-28],[-463,-95],[-90,-13],[-117,8],[-94,-12],[-106,25],[-94,30],[-53,74],[-63,9],[-17,-37],[31,-94],[-15,-113],[19,-64],[37,-13],[35,-34],[32,-44],[-55,-5],[45,-56],[-3,-75],[-21,-179],[-67,-48],[-16,-39],[-33,-171],[-11,-111],[14,-72],[64,-150],[-24,-98],[-41,-53],[-242,-152],[-110,-30],[-176,-5],[-65,7],[-151,99],[-112,59],[-102,48],[-100,28],[21,40],[-49,17],[-65,-51],[-28,-53],[-8,-46],[-1,-110],[11,-93],[48,-228],[5,-124],[-23,-157],[31,-92],[38,-42],[86,-41],[33,-28],[37,5],[5,-31],[-21,-40],[1,-42],[65,-12],[67,8],[71,19],[16,29],[1,61],[-83,10],[11,23],[62,25],[82,40],[42,8],[48,-52],[24,-66],[14,-86],[1,-104],[-10,-97],[-32,-77],[-148,-52],[-41,13],[-38,74],[-13,76],[-32,52],[-71,41],[-70,-13],[-69,-71],[-69,-23],[-24,-64],[171,-105],[81,-29],[53,-13],[-49,-62],[-122,-54],[-54,-37],[-62,-73],[-88,-159],[-27,-34],[-14,-41],[-9,-109],[29,-182],[-30,-77],[18,-84],[-10,-57],[-31,-81],[-123,-128],[-22,-94],[43,-55],[-3,-48],[-15,-44],[-51,0],[-186,30],[-68,-48],[-63,-59],[-39,-45],[-128,-31],[-26,-21],[-136,-223],[-58,-138],[-71,-135],[-18,-58],[-4,-79],[20,-124],[24,-68],[52,-78],[262,-314],[55,-28],[280,-34],[63,-43],[36,-70],[14,-61],[-16,-156],[-17,-49],[-31,-44],[-67,-57],[-79,-30],[23,-21],[102,21],[31,-18],[23,-62],[-44,-24],[-46,-75],[-162,-180],[-87,-54],[-80,-72],[-108,-73],[-42,-41],[-57,-88],[-88,-96],[-94,-206],[-4,-39],[14,-27],[-52,-360],[-19,-42],[-37,-45],[-100,-75],[-48,-9],[-64,43],[-36,45],[-35,78],[-30,2],[-9,-50],[-109,-23],[-28,-24],[97,11],[67,-16],[28,-18],[48,-85],[-19,-26],[-53,-21],[-69,-39],[-82,-70],[-46,-82],[-19,-58],[-22,-118],[-6,-78],[-35,-60],[-53,-54],[68,24],[25,-72],[33,-144],[16,-99],[-12,-70],[-69,-10],[-62,1],[21,-29],[57,-42],[64,18],[50,-55],[97,-208],[85,-128],[43,-76],[-21,-35]],[[48047,26209],[-8,46],[-110,25],[-211,83],[-122,0],[-203,89],[-225,4],[-401,6],[-217,3],[-23,17],[8,59],[-79,95],[-57,36],[-60,105],[18,49],[27,120],[1,52],[-25,37],[-8,52],[30,43],[14,86],[-11,84],[-17,75],[-22,33],[-51,19],[-48,-28],[-78,7],[-27,-11],[-93,-74],[-31,15],[-9,47],[-33,78],[-26,137],[-33,91],[-49,74],[-12,149],[25,81],[-14,67],[-31,80],[9,83],[31,46],[9,59],[141,9],[-6,78],[50,121],[22,26],[109,56],[33,39],[16,33],[12,91],[-9,100],[11,30],[36,41],[62,36],[26,95],[-15,83],[-34,65],[-44,30],[-3,68],[19,64],[57,147],[-2,56],[27,32],[77,72],[27,71],[59,27],[2,40],[-24,40],[-3,50],[9,128],[37,28],[53,60],[14,37],[2,51],[-16,105],[-20,103],[-42,83],[29,40],[54,43],[22,61],[-21,52],[-30,28],[-9,80],[11,101],[23,31],[80,15],[7,53],[61,73],[-2,71],[-39,43],[-65,132],[-93,34],[-99,18],[-14,58],[4,34],[46,-14],[75,12],[57,3],[84,14],[42,-24],[42,15],[17,92],[27,49],[3,47],[-26,36],[-49,12],[-213,29],[-6,37],[10,156],[19,27],[37,96],[-15,49],[-34,73],[25,34],[-6,80],[-35,44],[-31,60],[0,65],[60,37],[6,40],[-13,49],[-51,15],[-67,30],[-20,25],[-19,53],[14,148],[-13,139],[39,73],[-11,79],[-20,42],[7,33],[35,72],[36,-13],[36,13],[43,32],[4,39],[-8,54],[-32,137],[-29,85],[17,62],[-9,116],[3,71],[2,207],[3,71],[-29,72],[4,68],[21,50],[34,126],[15,27],[26,13],[6,32],[-45,63],[-8,48],[7,36],[16,21],[26,0],[19,51],[10,93],[-15,38],[-21,138],[29,28],[49,-6],[6,56],[26,84],[19,80],[5,56],[-7,154],[10,35],[50,63],[86,61],[58,13],[24,40],[16,53],[5,44],[-52,67],[-14,91],[-7,84],[-5,106],[-60,195],[-8,91],[22,130],[-28,100],[35,130],[-17,135],[-14,53],[14,57],[40,82],[-3,46],[7,38],[34,25],[31,47],[50,6],[17,13],[12,77],[43,49],[25,46],[46,9],[23,50],[-5,127],[15,75],[-17,113],[2,60],[-18,49],[4,54],[-10,34],[-26,13],[-10,42],[13,21],[57,49],[23,156],[23,103],[-2,29],[34,106],[47,103],[22,92],[21,17],[53,15],[12,21],[-4,98],[-9,107],[-5,138],[5,91],[19,91],[17,50],[-9,80],[-33,23],[-32,-20],[-21,5],[-28,49],[-9,51],[5,71],[22,44],[9,55],[-41,54],[-26,126],[3,107],[-26,29],[-12,84],[-27,30],[-19,128],[4,28],[28,8],[16,51],[-33,54],[-28,-2],[-24,29],[-32,122],[-26,68],[13,175],[15,118],[20,24],[37,-5],[34,68],[-17,84],[34,157],[47,165],[-4,38],[29,-2],[63,21],[21,53],[8,48],[19,26],[-8,39],[-42,29],[16,142],[-2,73],[-23,156],[-19,154],[13,51],[41,71],[31,32],[37,222],[3,99],[21,56],[13,103],[56,89],[16,59],[23,6],[41,85],[39,67],[33,34],[24,126],[33,121],[18,84],[25,31],[29,110],[12,65],[33,27],[26,7],[25,-30],[25,6],[24,38],[82,40],[12,38],[0,66],[-71,145],[-42,105],[-5,70],[7,46],[20,53],[50,85],[-5,62],[-37,226],[-38,177],[3,46],[23,128],[19,51],[28,10],[20,40],[-19,28],[-16,88],[-27,18],[-15,43],[0,63],[24,81],[26,23],[10,36],[53,59],[22,48],[156,103],[229,146],[16,69],[43,210],[90,440],[-80,125]],[[48584,46773],[60,119],[10,69],[18,29]],[[48672,46990],[82,70],[14,47],[8,51],[16,37],[32,7],[118,64],[18,42],[32,155],[12,20],[52,-23],[18,-31],[85,-97],[38,-56],[37,-7],[72,11],[15,-3],[184,-3],[28,-5],[64,-24],[62,-29],[40,-30],[36,-99],[33,-149],[31,-122],[29,-24],[17,133],[25,78],[33,88],[68,204],[23,31],[44,16],[19,-16],[25,0],[18,16],[176,3],[182,2],[43,-113],[34,-40],[17,-51],[36,-41],[73,-62],[68,-121],[64,-179],[60,-132],[55,-86],[52,-60],[46,-35],[25,-29],[4,-22],[43,-45],[85,-70],[53,-69]],[[97144,90943],[-32,-6],[11,40],[21,-34]],[[97548,89753],[-75,4],[-63,-30],[-24,6]],[[97386,89733],[-30,97],[-40,112],[11,46],[-77,74],[-14,19],[13,77],[-6,40],[-14,12],[-60,-9],[-67,-39],[-46,25],[-42,45],[-43,-9],[-1,52],[-31,60],[-20,15],[-71,-32],[-42,-10]],[[96806,90308],[-15,29],[-75,99],[-69,75],[-47,31],[-48,-3],[-75,-15],[-27,6],[-65,33],[-54,39],[19,28],[-44,132],[3,26],[-20,62],[43,64],[19,51],[4,50],[-39,146],[-17,27],[-32,26],[-27,41],[-6,30]],[[96234,91285],[88,7],[64,10],[50,19],[72,16]],[[96508,91337],[65,22],[106,-16],[39,12],[119,2],[-13,34],[71,12],[11,10]],[[96906,91413],[10,-32],[26,-35],[29,-14],[17,-34],[-52,-18],[15,-21],[72,-44],[42,-1],[94,-110],[-4,-30],[-77,-68],[-10,-48],[33,-73],[50,-81],[72,-61],[98,-66],[1,-41],[-35,-105],[-12,-9],[-98,2],[-22,-26],[36,-14],[55,-53],[31,-50],[33,-23],[113,-126],[52,16],[69,-44],[-2,-55],[-43,-29],[0,-36],[56,-58],[33,-53],[-15,-15],[-56,4],[-8,-28],[32,-39],[6,-29],[1,-113]],[[96892,91229],[24,0],[-1,36],[-26,0],[3,-36]],[[3994,52671],[-18,-6],[-22,33],[56,38],[21,-17],[-37,-48]],[[7755,4790],[-134,-16],[-319,32],[-218,76],[-105,101],[430,-16],[501,-113],[-84,-11],[-71,-53]],[[9481,5496],[-241,109],[-164,91],[250,-57],[37,-33],[183,-58],[-65,-52]],[[8413,5855],[-45,-6],[-1155,81],[-221,26],[-80,37],[35,47],[288,30],[321,-22],[387,-59],[267,-46],[138,-41],[65,-47]],[[11228,6939],[-180,5],[-256,41],[-44,47],[-304,49],[33,44],[220,-59],[271,-59],[219,-37],[41,-31]],[[51798,6722],[-17,-217],[-23,-54],[-129,-74],[-197,-75],[-620,41],[-279,38],[-116,48],[-55,96],[-33,23],[-246,-16],[-151,-23],[-87,-68],[-403,98],[-422,115],[-176,59],[-77,44],[39,24],[130,26],[69,-25],[22,-61],[80,-27],[1491,8],[382,20],[138,26],[51,35],[-125,9],[-91,76],[5,80],[164,17],[-17,76],[98,17],[38,37],[193,47],[304,-25],[71,-68],[-34,-88],[-1,-69],[125,-10],[76,-57],[-90,-8],[-87,-95]],[[64122,7102],[57,-14],[140,60],[340,-63],[111,-60],[-179,-19],[-169,-52],[-182,51],[-323,35],[-99,27],[-76,81],[171,61],[209,-107]],[[63595,7189],[-104,11],[89,86],[98,3],[93,-26],[-29,-27],[-147,-47]],[[49024,6908],[-83,16],[-19,56],[-213,45],[-38,81],[-36,22],[-277,98],[-38,52],[52,12],[107,-22],[198,-6],[84,-27],[332,-12],[62,-78],[125,-23],[32,-128],[-170,-60],[-118,-26]],[[48555,7343],[-74,-34],[-313,16],[-167,29],[55,72],[167,74],[138,9],[103,-6],[175,-32],[-74,-41],[-28,-46],[18,-41]],[[62909,7435],[-50,-25],[-1047,43],[-51,8],[15,52],[223,19],[111,23],[110,41],[492,-93],[171,-39],[26,-29]],[[9022,7096],[-538,-26],[-218,23],[-456,75],[-625,139],[-170,43],[-221,85],[-24,52],[35,136],[32,38],[134,47],[66,51],[136,52],[38,41],[166,-2],[207,-25],[99,-23],[223,-75],[155,-74],[224,-86],[221,-98],[124,-37],[120,-54],[114,-74],[182,-158],[-24,-50]],[[47232,7185],[-280,4],[-233,35],[-69,39],[-42,86],[50,138],[92,81],[86,49],[306,122],[246,52],[247,86],[827,225],[190,33],[133,-48],[-25,-26],[-299,-182],[-291,-131],[-207,-99],[-264,-137],[-188,-163],[23,-51],[-42,-70],[-260,-43]],[[149727,8256],[-54,-52],[-61,-23],[-189,19],[-134,-43],[-147,-16],[-70,22],[-31,43],[-16,77],[42,9],[324,-74],[118,46],[123,86],[74,-11],[21,-83]],[[58047,7790],[283,4],[226,-1],[138,-8],[76,-59],[120,-181],[24,-96],[106,-123],[9,-71],[-20,-155],[-33,-62],[-86,-61],[-99,6],[-113,-35],[116,-53],[-17,-66],[-2437,-315],[-191,-48],[-61,-50],[-1891,-60],[-81,77],[2,132],[130,57],[242,208],[38,56],[147,-46],[106,13],[149,63],[71,-52],[252,105],[227,118],[224,135],[140,102],[19,35],[-36,64],[-153,38],[92,125],[7,107],[53,19],[60,62],[-59,37],[68,122],[121,100],[252,167],[118,121],[598,145],[285,34],[88,4],[245,-14],[313,-53],[292,-74],[221,-73],[106,-52],[123,-83],[13,-69],[-32,-100],[-41,-48],[-483,-44],[-62,-18],[-60,-72],[55,-14]],[[13258,8817],[124,-36],[-219,12],[-97,48],[124,15],[68,-39]],[[12750,8794],[-34,-3],[-374,53],[-72,16],[126,33],[85,5],[225,-81],[44,-23]],[[149486,8827],[163,-51],[426,6],[355,-48],[33,-49],[-101,-25],[-156,-64],[-102,-20],[-84,0],[-175,26],[-226,-3],[-49,-37],[-109,-38],[-128,-66],[-84,105],[-128,107],[168,118],[-8,29],[-84,58],[40,44],[91,19],[117,-17],[51,-59],[-10,-35]],[[13526,9046],[-181,-9],[-99,19],[-25,53],[28,11],[314,-38],[-37,-36]],[[13252,8967],[-27,-11],[-187,5],[-55,21],[-261,16],[-141,66],[170,57],[225,17],[158,-88],[38,-54],[80,-29]],[[14382,9078],[-161,-31],[-42,9],[15,44],[-19,64],[95,0],[268,-32],[35,-45],[-191,-9]],[[13208,9248],[174,-9],[115,6],[120,-16],[5,-35],[-128,-5],[-63,-27],[-73,-4],[-109,20],[-100,42],[59,28]],[[12821,9206],[-182,-8],[-76,19],[-3,33],[284,16],[40,-31],[-63,-29]],[[13959,9295],[-60,-3],[-117,53],[43,13],[108,-36],[26,-27]],[[14303,9306],[-50,-56],[-136,30],[-57,36],[33,46],[62,15],[110,-22],[38,-49]],[[14346,9575],[-88,-10],[-194,80],[-7,58],[178,-24],[111,-104]],[[147713,10048],[-77,-89],[-85,19],[56,50],[106,20]],[[14972,9948],[-131,13],[-216,56],[-46,27],[32,28],[78,20],[58,-7],[147,-51],[78,-86]],[[148148,10560],[-92,21],[-9,63],[112,58],[89,14],[-100,-156]],[[20505,10832],[-67,-40],[-134,26],[11,28],[120,24],[82,-16],[-12,-22]],[[21075,10733],[-48,-15],[-181,36],[-104,8],[-80,37],[-59,44],[97,53],[75,18],[73,-4],[15,-26],[140,-32],[109,-1],[6,-70],[-43,-48]],[[22669,10706],[-65,-12],[-129,45],[-79,60],[-41,16],[-17,97],[40,10],[81,-14],[158,-51],[111,-14],[36,-38],[-37,-68],[-58,-31]],[[27246,11025],[-212,-20],[-57,22],[-6,55],[429,151],[98,-31],[-196,-110],[41,-19],[-97,-48]],[[26036,11063],[-117,-7],[-37,27],[105,64],[-60,122],[123,27],[129,-2],[111,-22],[35,-48],[-78,-83],[-168,-55],[-43,-23]],[[25602,11309],[77,-69],[45,-93],[-309,-117],[-27,-71],[-4,-54],[-527,-46],[-247,42],[-34,28],[-8,43],[83,15],[-48,54],[-2,30],[73,73],[37,20],[-177,89],[-134,-4],[42,72],[59,40],[291,0],[202,-21],[203,-14],[405,-17]],[[68649,11218],[-20,-152],[23,-64],[76,-83],[3,-88],[-31,-35],[-107,9],[-47,30],[-56,148],[-82,64],[-191,29],[-183,-11],[45,35],[277,47],[70,34],[43,42],[20,62],[48,80],[76,35],[48,5],[25,-65],[0,-60],[-37,-62]],[[150675,11415],[-58,-15],[-99,60],[77,85],[6,50],[48,15],[44,-94],[32,-38],[-50,-63]],[[23115,11637],[114,-20],[39,-30],[103,-34],[47,-33],[28,-58],[102,-56],[21,-51],[-238,-19],[-12,-43],[79,-30],[149,19],[144,-24],[129,56],[66,7],[177,-66],[38,-32],[-48,-45],[10,-18],[85,-26],[57,-48],[-16,-104],[-63,-21],[-93,21],[-290,12],[-94,19],[-142,78],[-113,24],[-88,56],[-154,44],[-98,55],[-10,78],[-93,33],[-55,-3],[-72,-48],[-97,9],[-1,89],[-78,48],[9,94],[54,54],[125,-3],[164,21],[115,-5]],[[45706,11587],[-69,-6],[-47,35],[42,66],[94,75],[68,9],[56,-16],[-60,-71],[-17,-49],[-67,-43]],[[32501,11720],[-53,-32],[-95,8],[-74,52],[-34,94],[69,35],[187,-157]],[[45501,11767],[-73,-101],[-62,-22],[86,-106],[44,-25],[-37,-71],[-53,-32],[-571,194],[-66,54],[-19,73],[34,45],[105,22],[116,-38],[38,40],[61,1],[14,28],[-85,11],[-69,29],[-56,51],[152,41],[389,-51],[60,-18],[48,-54],[-56,-71]],[[37128,11892],[-74,-1],[-63,42],[47,28],[88,-43],[2,-26]],[[38262,11709],[-79,-17],[-71,8],[26,158],[40,41],[-11,29],[-73,79],[-51,91],[25,21],[133,32],[153,-6],[61,-38],[11,-84],[-49,-64],[51,-22],[0,-96],[-96,-100],[-70,-32]],[[36597,12069],[-83,-3],[2,49],[199,57],[81,34],[22,-16],[38,-84],[-259,-37]],[[70588,12059],[-91,-16],[-59,35],[-27,84],[26,40],[66,-3],[85,-140]],[[107010,12323],[-11,28],[56,49],[44,60],[74,-43],[-10,-44],[-63,-33],[-90,-17]],[[72137,12411],[-91,-10],[-72,36],[-33,50],[21,35],[54,6],[66,-46],[55,-71]],[[107638,12589],[-55,-89],[-42,54],[44,52],[53,-17]],[[35277,12593],[-36,-74],[3,-73],[106,5],[46,138],[100,25],[47,-82],[-46,-66],[52,-65],[50,-1],[44,40],[66,131],[95,65],[209,10],[111,-41],[-74,-104],[-180,-61],[-114,-62],[78,-27],[384,96],[96,46],[32,-9],[0,-74],[34,-51],[-19,-112],[-108,-21],[-109,-10],[28,-49],[-16,-37],[-276,21],[-96,-22],[-48,4],[-96,36],[-249,-25],[-250,7],[-100,40],[-104,12],[-115,0],[-123,46],[-103,19],[-225,74],[-70,-4],[-536,72],[-181,-7],[-104,35],[-21,38],[11,34],[69,32],[744,84],[78,22],[58,-2],[43,-72],[65,-74],[43,9],[74,61],[133,-19],[74,28],[50,55],[151,63],[95,-13],[88,-27],[42,-64]],[[76252,13079],[-46,-15],[-107,24],[-41,57],[3,40],[58,7],[133,-113]],[[51445,13191],[-102,9],[-68,51],[71,37],[73,-4],[42,-55],[-16,-38]],[[76434,13390],[47,-23],[72,3],[70,-17],[-51,-56],[-35,-67],[-33,-33],[-102,-67],[-76,-18],[-18,38],[10,91],[-70,29],[-19,62],[-207,80],[-21,37],[214,6],[125,-14],[94,-51]],[[45780,13482],[67,-61],[-62,-49],[-220,-91],[-259,-61],[-590,-84],[-41,0],[-65,29],[-38,70],[4,34],[109,54],[92,20],[355,44],[65,46],[22,68],[47,12],[47,-28],[86,-112],[52,46],[6,97],[99,-19],[81,43],[68,-18],[75,-40]],[[51364,13430],[-67,14],[-34,63],[39,57],[143,6],[43,-24],[-15,-72],[-109,-44]],[[74986,13540],[-113,-41],[-121,110],[83,5],[76,29],[51,-19],[24,-84]],[[78832,13509],[-146,-19],[-48,62],[20,24],[190,83],[68,-15],[12,-32],[-38,-73],[-58,-30]],[[76112,13553],[-70,-1],[-24,33],[91,100],[49,26],[96,19],[62,-6],[40,-22],[13,-99],[-24,-31],[-233,-19]],[[46646,13740],[20,-21],[94,19],[39,-34],[-42,-52],[-49,-33],[-57,-2],[-48,107],[43,16]],[[108535,13484],[-69,8],[-78,86],[-6,112],[25,37],[40,14],[36,-99],[51,-35],[42,-82],[-41,-41]],[[79474,13591],[-69,-16],[-80,35],[-22,24],[-26,89],[81,34],[102,-7],[40,-30],[13,-52],[-39,-77]],[[89092,13659],[-28,-26],[-79,4],[-60,-24],[-200,52],[-22,78],[12,42],[137,89],[54,8],[77,-12],[35,-25],[81,-150],[-7,-36]],[[78084,13747],[-38,-88],[-95,109],[-18,91],[34,31],[124,19],[42,-13],[21,-66],[-70,-83]],[[51184,13941],[-65,-1],[-41,32],[33,53],[76,-19],[19,-50],[-22,-15]],[[45228,14114],[76,-17],[113,-76],[48,-61],[-61,-34],[-40,-93],[-76,-33],[-181,21],[-197,37],[-34,40],[-4,38],[24,47],[33,24],[147,29],[33,63],[119,15]],[[84511,13919],[-27,-45],[-135,63],[-100,30],[-22,53],[59,62],[91,32],[145,16],[141,-13],[22,-19],[-134,-65],[-40,-114]],[[46521,14135],[-93,-29],[-62,23],[-186,43],[-78,80],[9,42],[91,39],[113,-27],[57,-28],[149,-143]],[[50823,14118],[-38,-5],[-37,65],[-19,98],[-121,144],[-31,75],[54,24],[88,-21],[52,-27],[60,-59],[70,-53],[14,-46],[-10,-50],[-45,-14],[1,-37],[-38,-94]],[[47354,14489],[-12,-85],[71,31],[89,-38],[125,-182],[28,-58],[51,-169],[61,-126],[156,-222],[117,-191],[3,-94],[50,-26],[25,-168],[11,-151],[10,-287],[-5,-67],[-66,-107],[-29,-76],[-77,-87],[-220,-151],[-25,-75],[-368,-64],[-207,-27],[-81,29],[-82,7],[-102,-9],[-296,-9],[-225,-21],[-70,56],[-60,-5],[-94,34],[-51,44],[-34,53],[100,72],[101,21],[105,-15],[104,-25],[228,-19],[315,-5],[87,7],[105,23],[95,67],[-94,41],[-93,-1],[-231,-66],[-101,-14],[-107,24],[-100,68],[-2,22],[340,51],[93,42],[30,56],[-229,49],[-95,-10],[-104,20],[-99,57],[-92,69],[-66,-15],[-222,-180],[-103,11],[-105,36],[-96,13],[-84,-25],[111,-77],[15,-29],[-156,-90],[-42,-12],[-92,19],[-48,48],[-47,12],[-153,-5],[-148,69],[-96,60],[-13,35],[25,71],[-12,32],[26,45],[83,42],[102,8],[97,-52],[106,-14],[5,41],[-20,85],[22,29],[81,23],[107,-39],[169,-94],[71,32],[-91,55],[-5,68],[89,21],[163,-33],[171,-14],[177,37],[-95,42],[-204,36],[-67,67],[151,38],[152,-2],[275,-49],[92,24],[85,70],[49,18],[195,-5],[155,32],[49,-13],[151,-118],[35,29],[2,124],[-70,12],[-132,42],[-155,13],[-168,39],[-53,34],[-7,37],[55,86],[215,92],[101,30],[102,7],[50,-6],[117,-38],[36,11],[-114,65],[-191,101],[-169,15],[-89,-37],[-84,-3],[-247,89],[-68,69],[-11,42],[11,71],[58,197],[-11,71],[-39,38],[-55,27],[-51,43],[-24,63],[-1,43],[35,79],[81,42],[206,47],[419,59],[46,-30],[89,-89],[23,-160]],[[38531,14762],[-47,12],[7,44],[35,-1],[5,-55]],[[51401,14783],[-17,-19],[-86,25],[-52,34],[29,20],[58,-5],[46,-24],[22,-31]],[[48518,15480],[-84,-13],[-64,15],[1,53],[-23,18],[80,40],[60,9],[74,-5],[42,-36],[-56,-43],[-30,-38]],[[148517,15637],[-61,-14],[-23,42],[25,64],[-9,83],[64,-26],[41,-84],[-37,-65]],[[48512,16087],[-68,-2],[-31,15],[40,50],[-5,33],[37,14],[40,-12],[32,-61],[-45,-37]],[[114487,16046],[-74,-18],[-14,20],[-111,67],[-19,54],[11,37],[91,-4],[110,-32],[56,-83],[-50,-41]],[[98433,16164],[-73,-16],[-31,6],[-2,51],[25,15],[120,2],[63,-21],[-4,-33],[-98,-4]],[[147857,16138],[-59,1],[-32,83],[64,-6],[27,-78]],[[114797,16175],[-88,-14],[-45,38],[65,41],[59,-9],[57,-21],[-48,-35]],[[48242,15683],[-44,-45],[-36,-13],[-65,18],[-24,-16],[-25,-71],[-61,-53],[-36,7],[-66,-21],[-36,6],[-84,99],[-18,61],[3,43],[21,35],[113,118],[71,113],[103,152],[35,35],[171,101],[46,23],[52,-6],[13,-53],[-108,-94],[-16,-131],[121,-80],[-116,-75],[-31,-31],[-63,-31],[13,-27],[59,-25],[8,-39]],[[114275,16284],[-46,-22],[-37,4],[-29,37],[22,46],[90,-65]],[[120097,16383],[-41,-9],[-42,20],[-25,49],[66,10],[86,-36],[-44,-34]],[[147560,16377],[-43,-29],[-90,83],[10,37],[-7,67],[109,-127],[21,-31]],[[120708,16559],[-57,-9],[-24,29],[42,39],[50,13],[-11,-72]],[[48842,16570],[-96,-78],[-21,26],[33,29],[5,85],[64,31],[15,-93]],[[119135,16685],[49,-18],[88,2],[32,-27],[4,-46],[-35,-26],[-232,-17],[-38,27],[40,74],[43,24],[49,7]],[[117407,16843],[-56,-9],[-59,10],[-37,47],[23,23],[84,3],[59,-20],[16,-31],[-30,-23]],[[49165,16819],[-94,-26],[-48,10],[10,64],[44,20],[-7,55],[29,23],[13,43],[59,31],[84,-14],[-14,-74],[-62,-23],[-12,-36],[-2,-73]],[[121016,16934],[-187,-16],[-15,18],[-69,1],[-35,49],[23,57],[37,39],[85,48],[119,13],[84,-17],[61,-49],[8,-64],[-111,-79]],[[122057,17096],[-26,-16],[-86,23],[-11,86],[-25,18],[-114,35],[-13,47],[58,27],[105,-43],[23,-32],[-2,-65],[91,-80]],[[50255,17503],[-68,-32],[-37,0],[43,77],[40,3],[63,43],[-41,-91]],[[52872,17708],[-37,-3],[-47,21],[-5,56],[57,17],[125,58],[31,-21],[-17,-60],[-107,-68]],[[50313,17775],[-41,-72],[63,1],[87,37],[39,-37],[-81,-27],[-108,-74],[-34,-12],[-88,0],[-38,-48],[-40,-22],[-28,30],[-87,16],[-76,41],[-38,9],[44,80],[130,50],[-21,37],[104,25],[-3,55],[85,57],[65,-4],[45,-40],[-18,-40],[39,-62]],[[50681,17807],[-30,-28],[-48,7],[-31,-42],[-63,13],[-9,17],[45,56],[60,96],[10,30],[-56,65],[28,49],[40,24],[53,-1],[26,-19],[0,-34],[90,-34],[-15,-67],[-34,-43],[-5,-51],[-61,-38]],[[50842,18048],[-29,35],[36,26],[60,16],[-67,-77]],[[52611,18065],[45,4],[64,56],[32,-30],[116,-60],[-10,-49],[21,-38],[-45,-11],[-37,-41],[32,-15],[19,-34],[-40,-9],[-83,20],[-44,-5],[-9,45],[-51,-6],[-21,-69],[-35,5],[14,44],[-44,6],[-83,-33],[-39,38],[123,51],[-51,25],[-4,75],[-108,-26],[-12,47],[65,106],[150,76],[41,2],[22,-45],[-20,-56],[-8,-73]],[[52814,18236],[6,-12],[86,7],[24,-18],[-49,-24],[-54,-2],[-117,17],[-29,29],[105,14],[28,-11]],[[51402,18195],[-54,-25],[-84,37],[70,9],[6,83],[35,34],[66,-19],[-40,-44],[-15,-34],[16,-41]],[[53461,18426],[-37,-31],[-95,46],[-25,31],[11,22],[152,21],[41,-10],[19,-49],[-66,-30]],[[52966,18539],[40,-93],[63,-46],[-23,-41],[-60,5],[-62,-10],[-14,46],[23,34],[-23,31],[-133,-24],[-52,-23],[-119,-77],[-175,-74],[-116,-106],[-132,-189],[-72,-6],[-18,-27],[54,-31],[53,-10],[-8,-32],[-33,-35],[38,-39],[9,-55],[-46,-9],[-68,60],[-77,5],[-61,28],[-39,41],[-37,-10],[-28,-56],[17,-63],[-32,-37],[-38,17],[-13,75],[-85,14],[-120,-81],[-43,-2],[-23,-41],[-114,-84],[-110,-123],[-62,-52],[-118,-30],[-116,25],[-44,1],[-14,-32],[69,-106],[-37,-37],[-83,2],[-40,30],[-59,-56],[-26,-41],[40,-87],[64,-40],[47,-6],[17,-32],[-102,-14],[-68,-77],[-67,-98],[5,-53],[54,-80],[70,-57],[72,-5],[92,18],[22,16],[93,9],[40,55],[97,-9],[22,36],[160,5],[22,-32],[-76,-87],[-49,27],[-43,-4],[-23,-27],[46,-56],[-17,-51],[-37,-51],[-46,33],[-6,54],[-62,33],[-60,14],[-40,-56],[-65,-17],[-9,-65],[-25,-60],[-37,18],[-15,75],[-104,60],[-53,8],[-190,-28],[-31,-50],[45,-38],[15,-50],[-18,-83],[49,-46],[3,-60],[-73,19],[-126,158],[-78,70],[-34,62],[-142,15],[-71,-25],[28,-29],[14,-44],[-44,-18],[-89,-125],[-49,-46],[116,-74],[23,-78],[-37,-27],[-87,-11],[-154,52],[-66,1],[-23,36],[-34,-5],[-46,-115],[-37,-37],[17,-91],[-81,-41],[73,-20],[16,-45],[-112,-19],[-73,-5],[-43,22],[-40,-11],[-26,-35],[-9,-47],[9,-58],[36,-92],[-67,-90],[-11,-60],[56,-93],[-35,-28],[-38,-57],[109,-14],[73,8],[143,58],[24,-50],[-29,-28],[-202,-83],[-37,-34],[52,-19],[104,-5],[40,-26],[-62,-57],[-44,-65],[36,-24],[112,-39],[203,-50],[150,-18],[-33,59],[-6,73],[106,59],[55,19],[250,36],[69,-2],[53,-15],[-20,-30],[-58,10],[-101,-20],[-155,-64],[-28,-28],[11,-50],[131,-42],[43,-32],[-58,-98],[10,-63],[66,-69],[89,-78],[43,-53],[67,-30],[109,-73],[59,-75],[18,-169],[88,-140],[104,-64],[12,-55],[-34,-56],[-88,32],[-49,-32],[-20,-59],[162,-93],[214,5],[6,-55],[-89,-74],[-48,-23],[-80,-14],[-20,-50],[34,-69],[112,30],[81,4],[87,-11],[26,-94],[101,-115],[24,-54],[-18,-52],[-63,-16],[-95,-77],[-63,-18],[-118,-96],[-73,-29],[171,-12],[150,78],[57,-17],[37,-51],[20,-60],[-37,-51],[-262,-29],[-127,-29],[-137,-79],[156,-37],[115,12],[137,-41],[87,14],[67,29],[100,-16],[24,-201],[-29,-45],[-136,-31],[-100,2],[-3,-92],[150,-69],[92,37],[83,-19],[0,-110],[63,-122],[56,-7],[46,55],[60,0],[23,-64],[-26,-111],[-46,-60],[-188,45],[-55,-42],[-90,-34],[-80,-6],[-69,55],[-80,41],[-129,21],[-121,9],[40,-47],[55,-28],[22,-84],[43,-86],[100,23],[140,-50],[86,-51],[39,-70],[-49,-110],[-129,-60],[-87,42],[-124,-19],[-21,-51],[-42,-25],[224,-2],[68,-14],[51,-46],[-79,-60],[-149,9],[-63,-23],[-54,-43],[220,-27],[91,15],[145,46],[35,-46],[-132,-120],[-155,-23],[-116,-1],[-257,50],[4,-44],[40,-31],[103,-114],[17,-44],[-31,-60],[-91,-44],[-101,-18],[-83,39],[-62,110],[-76,33],[-126,4],[23,-115],[-31,-41],[-69,21],[-87,-19],[-157,-69],[152,-18],[101,-3],[70,-56],[-25,-27],[-138,-12],[-131,-24],[-182,-61],[132,-25],[127,1],[161,-17],[20,-32],[-46,-37],[-296,-89],[-313,-111],[-115,-34],[-119,-19],[-277,-95],[-175,-43],[-494,-67],[-769,-168],[-263,-119],[-78,-93],[-196,-44],[-148,-15],[-390,-9],[-397,44],[-323,10],[-176,-15],[-598,80],[-168,-18],[-252,15],[-408,-31],[-41,-50],[51,-92],[148,-111],[248,-196],[134,-41],[81,-45],[156,-52],[347,-3],[475,-40],[270,-38],[-10,-72],[-162,-140],[-101,-53],[-240,-97],[-331,-47],[-253,14],[-448,79],[-561,72],[-835,68],[-397,63],[-216,-62],[-206,-3],[61,-28],[831,-187],[712,-137],[183,-58],[-9,-88],[-39,-69],[-140,-60],[-363,-4],[-454,-48],[-227,-1],[-225,47],[-480,136],[-292,102],[-204,116],[-142,92],[-158,91],[39,-115],[77,-69],[113,-76],[-47,-35],[-81,36],[-70,-34],[-24,-40],[72,-104],[144,-114],[125,-29],[164,-70],[400,-127],[189,-138],[25,-72],[117,-70],[154,-8],[24,60],[-4,74],[145,37],[300,-26],[1273,-15],[121,-42],[49,-55],[31,-112],[-134,-135],[-92,-58],[-286,-63],[-207,-11],[-427,10],[-417,-1],[325,-64],[315,-54],[437,9],[174,16],[151,25],[181,-139],[119,-62],[93,-163],[111,-129],[69,-40],[116,-18],[127,33],[247,16],[239,-54],[152,-17],[205,45],[164,62],[342,57],[156,44],[197,-19],[72,-62],[66,-85],[201,-73],[255,-30],[254,26],[114,-25],[18,-49],[61,-39],[76,-13],[1030,-217],[355,-43],[548,-22],[425,-2],[140,-55],[-162,-30],[-174,-4],[-262,12],[-92,-6],[-400,16],[-140,-30],[-257,-23],[57,-32],[291,-19],[267,5],[23,-52],[-245,-12],[-521,-11],[-94,-35],[125,-28],[25,-36],[-55,-96],[86,-67],[125,-1],[217,-63],[225,-2],[269,49],[132,-2],[354,30],[320,-5],[449,58],[143,-9],[-125,-53],[-550,-132],[-276,-43],[116,-133],[145,-72],[91,-108],[90,-23],[211,13],[8,-74],[-168,-169],[71,-38],[191,-23],[486,-10],[145,-11],[529,235],[211,113],[192,82],[446,144],[223,108],[218,10],[298,103],[265,81],[279,39],[232,-7],[166,13],[295,52],[464,59],[268,6],[719,52],[204,-23],[227,-54],[146,0],[329,39],[59,-64],[32,-83],[-66,-78],[-107,-48],[-30,-80],[147,-40],[167,12],[321,39],[253,51],[168,24],[170,42],[211,176],[265,178],[224,114],[144,133],[119,76],[224,88],[204,5],[292,92],[427,105],[328,-51],[345,-76],[171,62],[134,11],[230,48],[82,54],[110,47],[83,66],[421,33],[440,44],[268,18],[194,37],[268,11],[139,-3],[127,98],[255,20],[472,75],[2191,77],[95,37],[192,30],[72,74],[-293,31],[-91,31],[-160,-3],[-253,8],[-2020,114],[-43,10],[-70,69],[14,126],[-59,99],[-142,27],[-331,-15],[-486,-53],[-195,-5],[-518,82],[-344,93],[-224,31],[-161,62],[-150,48],[-12,111],[37,102],[289,298],[182,142],[120,11],[110,64],[113,144],[92,68],[209,79],[92,21],[329,98],[90,3],[147,-17],[167,89],[511,188],[115,71],[142,44],[413,158],[368,78],[184,22],[223,48],[463,140],[771,132],[462,35],[315,39],[223,-23],[221,8],[192,34],[88,28],[128,71],[428,-34],[277,49],[114,5],[121,22],[-92,29],[-100,103],[57,88],[43,44],[128,54],[66,78],[62,114],[210,223],[59,31],[133,10],[241,-3],[326,-58],[61,22],[104,66],[87,82],[185,121],[37,36],[-17,60],[-279,-26],[-210,-40],[-203,21],[-27,34],[44,26],[76,10],[29,40],[-70,34],[-125,19],[-56,26],[5,62],[31,90],[123,64],[149,127],[89,38],[254,35],[296,-53],[67,14],[71,71],[-73,110],[-56,41],[1,36],[154,-16],[145,-25],[170,4],[199,109],[280,91],[137,38],[121,22],[65,91],[97,174],[70,90],[-1,56],[-21,45],[-140,-20],[-156,46],[-195,74],[-58,83],[-29,73],[119,65],[64,5],[113,-29],[145,-76],[72,-29],[82,-55],[62,5],[72,77],[60,103],[209,114],[-38,49],[-90,26],[-12,29],[38,32],[74,7],[91,-71],[124,-47],[85,-16],[74,-39],[114,-130],[138,-217],[64,-2],[121,20],[129,8],[87,62],[20,155],[33,70],[-11,71],[-111,126],[8,39],[44,29],[157,39],[154,-34],[83,-6],[126,19],[130,42],[133,30],[104,-22],[46,-78],[-52,-78],[-84,-58],[-76,-71],[-20,-78],[4,-42],[72,-11],[646,10],[196,-8],[121,-24],[204,9],[184,28],[87,0],[151,-25],[106,-53],[221,14],[63,18],[60,71],[64,13],[74,-58],[24,-132],[34,-64],[94,-57],[93,49],[61,58],[146,112],[165,86],[128,50],[309,85],[154,54],[301,72],[387,39],[692,131],[228,14],[372,34],[191,36],[194,28],[119,96],[271,-73],[93,-8],[127,57],[140,145],[203,-60],[117,-93],[143,-73],[324,-125],[101,-29],[214,-26],[57,21],[101,83],[104,121],[66,51],[95,43],[106,66],[-28,36],[-116,31],[14,36],[189,8],[100,-122],[101,-41],[125,-38],[288,30],[246,3],[215,-25],[105,5],[94,91],[154,34],[87,-41],[54,-135],[197,-37],[413,-63],[46,16],[51,71],[35,88],[84,14],[108,47],[57,-7],[80,-57],[-27,-138],[-46,-127],[55,-102],[48,-57],[166,-12],[126,7],[80,-5],[406,51],[49,114],[65,129],[159,165],[110,-30],[174,-121],[13,-60],[-70,-57],[19,-37],[73,-30],[229,-50],[74,10],[111,51],[111,103],[60,119],[94,-6],[92,-25],[64,-61],[0,-117],[88,-81],[72,-50],[186,-54],[199,-14],[139,-33],[226,13],[110,36],[195,39],[130,68],[82,29],[296,63],[226,69],[238,123],[233,74],[357,37],[99,15],[136,-1],[336,88],[128,52],[71,17],[81,64],[78,198],[-6,75],[-31,96],[-72,86],[-73,126],[32,143],[58,60],[149,65],[148,13],[167,-8],[146,-14],[11,-61],[-62,-66],[-130,-94],[18,-55],[105,-8],[232,11],[66,-51],[164,-222],[41,-105],[56,-31],[91,15],[194,-1],[135,16],[110,1],[57,-10],[59,-51],[112,-59],[111,43],[80,21],[98,-5],[154,-69],[153,-161],[166,-81],[11,51],[-22,64],[69,57],[82,97],[119,124],[94,127],[25,175],[44,144],[76,69],[75,44],[116,46],[143,10],[136,104],[96,42],[202,57],[252,56],[177,159],[151,45],[165,9],[268,51],[85,8],[140,40],[125,94],[89,26],[161,-3],[137,53],[115,2],[105,27],[16,59],[-50,40],[-1,52],[59,68],[45,25],[140,-5],[117,-57],[84,-4],[23,-32],[-74,-42],[-50,-72],[85,-65],[76,-43],[92,8],[110,39],[108,-28],[48,-59],[0,-92],[23,-50],[76,43],[42,93],[-12,117],[4,73],[182,117],[72,87],[-128,19],[-90,-12],[-50,32],[-57,89],[157,73],[180,-2],[104,-62],[223,-101],[123,3],[112,-16],[23,31],[-42,147],[5,83],[-92,46],[-27,105],[38,110],[110,61],[151,29],[323,169],[85,37],[212,35],[249,17],[308,60],[550,-40],[148,-26],[92,-34],[88,-54],[114,-90],[167,-114],[214,-35],[61,-36],[80,-96],[-86,-64],[-70,-6],[-135,38],[-93,39],[-64,-16],[63,-66],[69,-41],[12,-56],[-38,-79],[-254,-157],[152,-46],[91,36],[84,68],[142,41],[202,3],[115,27],[87,-19],[85,-44],[125,-41],[181,-46],[221,-178],[172,18],[94,39],[265,12],[228,-79],[128,-29],[372,-24],[222,-50],[142,59],[94,25],[199,12],[100,-12],[277,-66],[488,-66],[336,-35],[296,-1],[141,-30],[257,-30],[99,-25],[246,19],[115,26],[108,57],[61,-14],[42,-71],[-23,-122],[80,-166],[83,-129],[-23,-50],[-72,-44],[-98,-96],[6,-83],[42,-53],[-49,-64],[36,-90],[6,-54],[-34,-44],[-77,-26],[-132,-4],[-68,-25],[-12,-67],[35,-49],[76,-27],[22,-53],[-11,-80],[-34,-68],[-70,-31],[-76,-7],[-142,14],[-102,45],[-112,-80],[-147,-95],[-133,-129],[169,-36],[121,-68],[266,7],[199,61],[61,-6],[38,-68],[-23,-107],[-4,-83],[-136,-230],[-107,-102],[-76,-49],[-59,-24],[-117,-73],[-71,-131],[-77,-110],[-113,-185],[-65,-200],[-29,-119],[-43,-125],[-96,-214],[-62,-36],[-108,-88],[31,-58],[187,-19],[138,-44],[183,92],[96,57],[19,117],[-19,116],[59,70],[134,94],[318,68],[171,30],[176,169],[143,54],[120,86],[18,62],[200,73],[85,79],[31,77],[13,142],[37,108],[73,143],[59,103],[57,66],[154,34],[67,41],[148,141],[-7,109],[33,100],[95,60],[122,112],[151,16],[115,57],[122,-39],[149,-56],[248,17],[119,-26],[91,31],[80,86],[30,104],[95,62],[107,-2],[177,104],[181,93],[151,22],[119,74],[85,123],[92,95],[112,90],[32,162],[70,81],[133,71],[109,39],[463,120],[355,81],[358,98],[110,-1],[144,55],[237,1],[63,6],[82,112],[176,104],[111,33],[140,91],[113,8],[159,-16],[134,-25],[121,0],[176,74],[272,13],[144,67],[386,106],[144,-21],[204,18],[124,-5],[119,-13],[149,-3],[256,37],[109,24],[205,92],[226,21],[99,24],[128,21],[177,-67],[106,-14],[148,37],[122,-10],[157,-40],[104,-33],[54,1],[97,29],[117,72],[109,30],[105,-19],[71,-30],[126,-42],[194,7],[186,15],[158,34],[134,36],[124,-55],[143,-20],[231,97],[88,-21],[111,-38],[60,-82],[220,15],[196,70],[167,52],[163,34],[129,46],[188,180],[-2,55],[26,33],[40,16],[301,-2],[94,15],[121,47],[212,-36],[204,-58],[134,8],[146,-36],[163,-68],[143,-19],[597,-171],[338,-42],[170,-57],[44,-19],[51,-59],[89,-5],[71,23],[94,-89],[230,-66],[238,-33],[156,52],[264,148],[80,68],[-16,147],[138,164],[235,81],[292,42],[180,37],[237,33],[116,-34],[147,-56],[106,-91],[164,-209],[122,-75],[200,-18],[98,-47],[140,-146],[-84,-130],[-72,-49],[-303,-56],[-134,-45],[-115,-27],[-34,-109],[49,-51],[126,25],[146,12],[115,22],[106,34],[92,49],[215,25],[142,41],[127,24],[88,43],[91,-6],[89,-41],[72,3],[192,-13],[89,30],[81,2],[164,-55],[84,-7],[108,19],[152,51],[194,55],[180,18],[81,-12],[-181,-64],[-290,-86],[-155,-84],[91,-36],[546,94],[249,70],[219,31],[54,24],[181,108],[65,29],[194,38],[253,42],[192,47],[130,48],[98,5],[173,-74],[96,9],[118,37],[82,88],[48,63],[202,42],[91,-22],[149,-46],[104,-25],[90,-182],[212,-160],[75,-43],[184,16],[199,-64],[85,9],[82,18],[71,-12],[110,39],[113,201],[104,198],[101,87],[62,37],[78,16],[120,41],[160,12],[121,-16],[258,-15],[211,49],[238,-8],[118,58],[128,9],[171,-50],[50,-36],[95,-50],[23,-49],[25,-90],[47,-2],[160,88],[87,16],[163,141],[88,-37],[196,-60],[79,-18],[155,-102],[80,22],[65,47],[192,-5],[180,-41],[74,-35],[92,-61],[57,-14],[45,16],[373,-23],[160,-44],[123,-54],[432,-26],[165,-56],[100,27],[196,-9],[80,-47],[72,-52],[156,-45],[86,9],[121,36],[120,50],[122,0],[57,-43],[21,-106],[89,2],[99,49],[87,-12],[31,-74],[-46,-98],[-110,-137],[-46,-115],[-91,-104],[15,-50],[92,-24],[92,73],[205,51],[107,67],[184,24],[181,-23],[130,-88],[237,-149],[30,-109],[-8,-49],[-35,-57],[128,-67],[112,-10],[92,6],[382,-64],[183,25],[165,0],[195,9],[150,-1],[120,-11],[142,23],[113,31],[57,-19],[23,-166],[8,-98],[64,-37],[69,37],[49,49],[303,-22],[121,-3],[115,-26],[116,-62],[111,27],[67,37],[90,25],[27,61],[11,103],[-4,100],[53,18],[54,-18],[72,-48],[162,-150],[177,-145],[76,-37],[154,-90],[211,-37],[206,-74],[240,5],[187,-92],[127,72],[68,17],[97,-20],[118,-63],[93,-14],[318,-103],[171,-37],[63,-76],[84,-72],[0,-74],[36,-94],[191,-73],[166,-165],[167,-355],[86,-62],[125,6],[118,-92],[38,12],[4,37],[-106,239],[-8,129],[84,74],[197,21],[152,-137],[138,-84],[94,-15],[186,4],[175,88],[134,-32],[213,-10],[277,-52],[120,9],[213,-22],[260,-74],[146,-28],[99,-79],[72,-117],[89,-63],[91,-10],[178,-54],[373,-165],[215,-83],[38,43],[11,87],[69,18],[72,-129],[76,-98],[34,-86],[-79,-70],[-115,14],[-79,0],[-84,-116],[-33,-200],[75,3],[57,19],[11,-74],[-34,-62],[-68,-24],[-118,46],[-144,33],[-158,13],[-153,58],[-125,1],[169,-118],[193,-48],[241,-74],[7,-46],[-57,-58],[-72,-120],[-220,-105],[-128,76],[-153,18],[-76,-45],[-152,6],[-300,-18],[-117,95],[-186,52],[6,-42],[159,-158],[168,-36],[168,-43],[40,-40],[-75,-37],[-102,5],[-130,-72],[-244,12],[-116,-5],[-68,-30],[-13,-37],[58,-73],[-83,-61],[-77,-31],[-80,15],[-87,-23],[-42,67],[-2,147],[-50,131],[-53,6],[-83,-15],[-27,-113],[59,-194],[40,-62],[-32,-54],[-56,-17],[113,-164],[97,-113],[59,-37],[4,-55],[-46,-25],[-130,22],[-64,-11],[-190,31],[-102,7],[-103,-31],[-86,3],[-77,102],[-68,24],[-57,-30],[-43,-123],[-88,-37],[-91,-56],[-63,-61],[-31,-239],[-53,-49],[-79,2],[-60,-19],[-175,31],[-332,-82],[53,-42],[84,6],[291,-12],[123,-44],[22,-108],[48,-45],[97,-50],[76,-24],[27,-37],[-72,-141],[-91,-74],[26,-37],[99,-12],[42,-166],[-65,-73],[31,-62],[7,-61],[-118,-86],[-17,-60],[99,-36],[176,-18],[70,-65],[154,-182],[5,-136],[63,-82],[120,-52],[-3,-54],[165,-21],[31,-50],[-27,-61],[-139,-73],[-56,-53],[138,-9],[142,-55],[182,62],[158,128],[46,-15],[5,-63],[55,-105],[235,-102],[130,-32],[125,-17],[111,2],[31,-61],[-35,-55],[-226,-6],[-175,86],[-639,-23],[-144,-18],[-171,-61],[-172,-29],[-262,-60],[-110,-37],[-286,142],[-94,104],[-106,-18],[-4,-74],[134,-160],[60,-43],[0,-43],[-93,-21],[-82,32],[-153,25],[-137,-49],[-168,-106],[81,-110],[-11,-47],[-188,-89],[-100,-22],[46,-32],[103,-2],[-25,-71],[-169,-37],[11,-48],[92,-23],[119,9],[73,-35],[1,-56],[-164,-54],[-608,-143],[-89,-39],[6,-52],[212,-13],[636,12],[41,-17],[-50,-93],[34,-37],[96,-26],[3,-39],[-141,-35],[-105,-5],[7,-42],[190,-42],[0,-203],[-103,-49],[-3,-50],[188,-34],[291,-153],[178,-30],[185,-78],[65,-47],[105,-23],[15,-38],[322,-140],[33,-46],[-540,-89],[-542,-65],[50,-57],[586,6],[158,-37],[111,50],[316,46],[321,30],[100,-22],[431,-170],[200,-64],[220,-30],[136,-80],[-17,-51],[159,-66],[211,51],[80,-9],[142,-54],[-158,-115],[-251,-29],[195,-63],[744,-26],[213,-55],[209,30],[174,-28],[29,-56],[271,-61],[229,-22],[183,1],[408,-95],[512,-20],[135,-70],[972,-94],[270,-39],[124,-4],[391,-49],[257,-101],[0,-3932],[-155049,0],[0,290],[0,202],[0,491],[0,492],[0,491],[0,492],[0,491],[0,492],[0,491],[694,10],[283,-40],[321,-3],[300,-13],[179,-64],[212,21],[310,12],[1274,-56],[1308,-98],[266,-31],[240,-74],[250,10],[1485,-56],[228,-1],[910,-59],[1591,-139],[288,0],[-79,74],[-149,68],[-201,49],[131,14],[285,2],[-57,34],[-157,20],[-567,23],[-2268,174],[-235,58],[-346,10],[-90,39],[528,15],[58,20],[-396,118],[79,58],[163,13],[48,26],[-31,48],[-373,98],[-253,34],[-166,-23],[-313,-1],[-389,-13],[-107,14],[-235,107],[-354,130],[-870,135],[-151,36],[-1088,212],[-73,74],[501,-85],[206,22],[87,-6],[246,31],[340,-66],[685,-107],[440,-92],[948,19],[258,-10],[303,-52],[202,-124],[307,66],[268,31],[231,-57],[162,-75],[691,20],[289,-3],[206,-34],[752,113],[116,24],[173,78],[-242,33],[-39,40],[285,38],[423,33],[248,33],[134,85],[572,131],[182,58],[167,95],[-375,190],[-360,165],[228,90],[100,77],[-228,93],[-182,39],[-683,93],[-232,40],[94,62],[123,48],[262,20],[1673,72],[1685,90],[43,45],[-224,53],[-190,13],[-70,16],[-29,79],[-395,66],[-166,70],[-25,39],[60,99],[93,42],[277,31],[349,-1],[194,25],[-51,99],[131,15],[20,36],[-40,56],[-104,31],[-273,52],[-620,77],[-240,60],[-138,46],[-115,53],[-196,53],[16,34],[-36,53],[-46,10],[-197,-23],[-351,13],[-431,49],[-298,57],[-390,153],[-153,76],[113,53],[124,34],[518,78],[77,28],[106,69],[-173,29],[-147,-2],[-132,20],[-529,4],[-300,-10],[-250,88],[-189,86],[-52,44],[-40,76],[116,195],[-7,100],[14,137],[91,46],[69,9],[162,-106],[141,-8],[203,20],[197,75],[125,5],[242,-24],[110,10],[124,-6],[390,-69],[131,-58],[62,-74],[166,-18],[464,20],[120,-9],[329,-103],[280,-110],[95,-27],[158,-19],[105,58],[150,50],[339,64],[79,62],[-45,34],[-208,49],[-43,41],[28,111],[89,14],[162,-74],[200,-69],[124,-8],[222,43],[231,-148],[137,-10],[171,-1],[33,23],[-90,126],[126,52],[-102,67],[-92,24],[145,80],[-24,48],[4,61],[-32,33],[-179,64],[-263,105],[-243,48],[-543,-38],[-191,24],[-262,65],[159,37],[168,28],[113,72],[74,35],[60,9],[198,-18],[449,-130],[95,-14],[307,-60],[85,-4],[106,14],[-86,58],[-94,41],[-225,117],[25,55],[145,91],[380,7],[165,33],[216,70],[278,117],[238,14],[298,36],[102,-27],[253,-111],[160,-39],[112,0],[-150,139],[221,34],[179,64],[260,134],[233,37],[660,59],[227,-54],[190,-6],[43,15],[37,72],[101,139],[85,50],[288,52],[225,-3],[162,-57],[149,-37],[139,-17],[138,1],[208,32],[276,12],[130,16],[148,-31],[365,-11],[285,-45],[175,0],[238,43],[128,6],[464,71],[363,15],[274,-32],[444,20],[448,-15],[182,-26],[1011,16],[804,67],[109,23],[173,72],[94,67],[63,20],[136,8],[230,-15],[318,-49],[274,18],[521,-28],[51,23],[49,125],[86,199],[72,60],[120,-15],[360,-114],[9,-49],[-37,-34],[-60,-14],[-17,-97],[48,-27],[81,8],[52,-42],[-114,-73],[-132,-59],[-35,-138],[-48,-46],[-6,-51],[77,0],[362,63],[397,41],[204,28],[48,29],[-66,68],[-22,56],[40,48],[-11,81],[-37,82],[76,61],[71,-13],[123,9],[69,-30],[108,-27],[101,-14],[98,-54],[33,-118],[-30,-121],[-100,-88],[-187,-80],[-214,-127],[45,-60],[110,20],[480,-5],[309,9],[194,-15],[244,-32],[194,-48],[232,-9],[144,18],[135,-24],[525,102],[214,57],[122,-29],[198,25],[111,-22],[205,36],[131,4],[151,-15],[458,-7],[34,-66],[140,-100],[114,-39],[143,16],[105,31],[164,-12],[237,43],[238,-13],[98,7],[46,28],[37,61],[-73,34],[-207,44],[-191,90],[-84,19],[-136,-11],[-134,45],[90,35],[109,112],[-46,102],[-51,21],[-126,-3],[-151,-36],[-61,25],[-99,13],[-39,95],[-105,176],[-55,51],[-168,46],[-285,51],[-42,70],[28,96],[167,21],[161,-10],[313,-45],[140,-43],[115,-1],[404,26],[103,53],[163,3],[115,20],[-131,28],[-141,53],[-213,65],[-179,34],[-324,24],[-165,-8],[-105,13],[-370,-7],[-100,25],[-73,70],[-99,167],[-29,88],[114,68],[109,3],[160,-13],[53,-17],[39,-52],[-39,-54],[-52,-27],[32,-25],[164,-8],[149,-22],[151,24],[220,10],[111,-24],[131,-18],[193,29],[690,-16],[84,-7],[156,-78],[75,13],[224,-56],[121,-43],[121,-23],[105,-6],[117,11],[151,37],[126,15],[89,-14],[191,-7],[146,-44],[113,18],[120,50],[378,35],[253,-9],[462,-90],[107,-8],[211,52],[67,87],[-9,98],[62,23],[50,-10],[94,67],[127,-5],[78,-13],[48,44],[44,92],[150,8],[109,-14],[143,-59],[0,-50],[-59,-53],[-99,-129],[61,-76],[92,7],[116,-15],[141,32],[90,2],[156,-113],[106,-6],[82,7],[267,101],[78,11],[94,-47],[138,-107],[121,-62],[176,-38],[154,-11],[180,-50],[100,-43],[225,-1],[98,-17],[272,-87],[248,43],[129,40],[62,73],[-31,111],[-12,111],[37,46],[66,9],[296,-125],[-44,132],[-75,99],[11,73],[63,23],[125,-38],[148,-20],[123,-43],[240,-155],[77,-135],[163,-34],[113,6],[129,22],[173,19],[133,-5],[123,24],[37,-74],[-116,-105],[-44,-70],[37,-18],[127,38],[200,-11],[161,48],[138,18],[130,50],[189,-13],[112,-40],[108,22],[150,-11],[460,175],[104,-3],[132,10],[166,41],[128,18],[105,-1],[188,64],[299,-8],[153,33],[295,40],[199,44],[353,119],[144,70],[155,156],[98,155],[108,207],[-53,135],[-219,258],[-30,168],[11,158],[-41,149],[-40,110],[-85,184],[-102,120],[-119,160],[0,146],[-29,116],[-72,81],[-30,66],[106,34],[138,25],[331,-45],[29,66],[84,48],[58,61],[-20,92],[-72,38],[-87,78],[39,64],[72,0],[34,69],[-27,67],[32,85],[64,108],[43,40],[-79,65],[-74,85],[18,66],[83,165],[62,69],[40,23],[-12,23],[-94,25],[-86,5],[-157,-43],[-24,8],[-18,69],[15,116],[25,109],[83,29],[60,83],[54,5],[35,-28],[11,-111],[18,-25],[-7,-53],[126,33],[25,-37],[34,13],[-8,90],[-18,94],[30,72],[-27,94],[10,35],[57,57],[82,11],[98,-37],[46,-3],[34,18],[21,36],[17,118],[-42,42],[1,38],[25,23],[43,83],[129,-3],[62,16],[-41,86],[116,33],[166,-51],[43,42],[-15,41],[-45,23],[-9,37],[12,46],[74,-23],[36,51],[-21,47],[97,5],[35,44],[29,11],[88,-1],[27,52],[-47,10],[-62,34],[-8,97],[14,69],[54,60],[65,42],[120,-36],[94,8],[37,-37],[51,-9],[12,41],[-23,36],[-15,60],[149,70],[47,-11],[59,17],[-21,54],[32,69],[43,9],[28,-60],[41,-12],[44,14],[111,71],[108,14],[57,41],[13,49],[32,34],[96,45],[39,33],[84,115],[-15,29],[25,24],[253,104],[123,10],[207,62],[126,74],[78,31],[71,82],[85,12],[198,58],[149,93],[206,64],[96,-6],[39,-19],[24,-77]],[[53609,18678],[27,-19],[133,-3],[22,-31],[13,-52],[-35,-20],[-188,12],[-68,27],[-34,-1],[-77,-30],[-32,-29],[-127,-38],[-37,13],[-18,59],[52,69],[148,54],[195,20],[26,-31]],[[53380,18744],[-86,-66],[-41,3],[-82,49],[-30,37],[54,44],[184,-21],[1,-46]],[[51466,18821],[-81,-20],[-21,33],[44,37],[58,-50]],[[50557,18750],[-11,26],[49,76],[90,34],[-41,-68],[-87,-68]],[[51414,19105],[21,-9],[188,17],[59,-49],[66,3],[-160,-91],[-44,26],[-24,63],[-104,-11],[-33,9],[-43,-29],[-115,-12],[-37,31],[-1,32],[76,-2],[59,40],[17,41],[29,-11],[46,-48]],[[51946,19185],[-59,-5],[-58,68],[79,2],[35,-11],[18,-32],[-15,-22]],[[52183,19284],[-95,-31],[-61,45],[59,30],[80,-20],[17,-24]],[[52554,19556],[55,-19],[48,13],[27,-15],[16,-54],[-72,5],[-68,-45],[-79,10],[-15,-75],[-69,36],[-54,-13],[-17,-61],[-37,-16],[-66,21],[-31,32],[-59,5],[106,84],[11,25],[122,49],[58,-11],[124,29]],[[54237,19983],[-20,-7],[-33,43],[62,73],[3,-79],[-12,-30]],[[53765,20038],[-56,-20],[-22,26],[-10,45],[-30,28],[23,23],[308,-30],[-17,-16],[-149,-20],[-47,-36]],[[57834,20525],[94,-18],[49,-25],[12,-29],[56,-11],[24,-65],[-97,58],[-134,3],[-31,41],[-67,-23],[1,65],[43,-12],[50,16]],[[107364,28505],[-27,-5],[-7,52],[-23,51],[7,25],[87,-5],[11,-43],[-48,-75]],[[107322,28470],[56,2],[95,92],[25,2],[-3,-70],[25,-32],[-31,-8],[-59,4],[-13,-40],[59,-52],[53,-6],[81,30],[56,43],[33,16],[64,1],[48,53],[37,-1],[33,-16],[21,-37],[10,-45],[-8,-45],[-22,-43],[-41,-26],[-2,-48],[-38,6],[-26,37],[-31,20],[-107,-3],[-6,-29],[-36,-34],[-30,-6],[46,-68],[56,-26],[33,-5],[5,50],[39,6],[36,-15],[25,-37],[-39,-32],[-4,-25],[-57,-30],[-67,13],[-74,61],[-28,-28],[-30,-6],[-58,23],[-54,38],[-86,23],[-29,-85],[-40,-37],[-77,4],[-13,34],[12,70],[26,74],[-4,36],[-19,27],[10,48],[-18,37],[6,27],[30,19],[-29,21],[-20,48],[29,98],[-2,54],[54,107],[43,26],[28,-76],[6,-66],[-16,-53],[-29,-56],[9,-45],[57,-19]],[[99849,30329],[-31,-6],[-28,14],[-16,38],[35,32],[32,-47],[8,-31]],[[50944,74526],[-14,-28],[-48,11],[-12,59],[30,49],[34,-21],[23,-28],[-13,-42]],[[50931,74900],[-7,-18],[-35,33],[-11,62],[7,20],[33,-16],[11,-21],[2,-60]],[[145952,24571],[-18,4],[26,138],[21,-48],[-29,-94]],[[140990,32447],[-21,-72],[-33,12],[-34,-11],[-21,48],[25,0],[31,70],[34,35],[19,-82]],[[141023,32556],[-37,6],[-12,61],[14,45],[19,-27],[16,-85]],[[141312,32925],[-32,-3],[-3,52],[21,33],[30,-16],[12,-25],[-30,-20],[2,-21]],[[139993,34265],[50,-3],[28,18],[26,-3],[28,-40],[35,-22],[45,-4],[18,-28],[68,-40],[38,-44],[124,-65],[89,-31],[111,14],[64,45],[27,-25],[22,3],[8,36],[58,46],[50,-2],[48,8],[44,19],[58,-32],[54,88],[18,21],[108,-19],[41,65],[28,-1],[79,-52],[33,-64],[-3,-117],[9,-82],[2,-81],[-9,-80],[3,-127],[-4,-118],[12,-78],[-6,-78],[17,-49],[0,-73],[-25,29],[-12,50],[-31,26],[-50,-73],[-19,-63],[-8,-59],[2,-63],[-37,-95],[-5,-60],[1,-110],[19,-101],[10,-137],[-16,-17],[-46,-9],[-22,-17],[-38,67],[-22,71],[17,29],[37,-17],[12,53],[-46,39],[-52,18],[-16,-22],[6,-67],[-42,-41],[-19,97],[-46,37],[20,-60],[-10,-61],[-28,-40],[-6,-101],[-31,-27],[-76,69],[-4,-43],[38,-40],[-31,-66],[-21,-92],[-35,-77],[-17,-4],[-58,12],[-65,64],[-59,-7],[-97,5],[-62,-24],[-21,119],[49,15],[51,-1],[-22,38],[-22,-7],[-64,24],[-44,-11],[-30,34],[-53,117],[-31,54],[-52,50],[-95,266],[-13,62],[-17,156],[75,-75],[27,-47],[14,-60],[26,73],[-5,23],[-67,89],[-9,25],[-45,-4],[10,62],[-9,61],[-78,135],[-61,127],[-59,157],[-6,54],[-28,105],[-16,77],[-7,69],[28,138],[4,77],[43,-35],[96,-45]],[[141369,34454],[-21,-54],[-31,50],[33,12],[19,-8]],[[139882,34460],[-16,-58],[-16,73],[35,31],[-3,-46]],[[141407,34599],[41,-42],[23,-45],[-30,-38],[-22,-8],[-15,44],[-45,-16],[-48,4],[-35,33],[16,33],[60,-1],[55,36]],[[141267,34981],[76,-126],[52,-32],[-3,-56],[-17,-24],[31,-31],[-49,-62],[-45,-20],[-92,172],[6,31],[-12,45],[-28,-3],[-19,28],[31,27],[40,73],[29,-22]],[[139513,34732],[-22,36],[5,56],[-21,55],[11,56],[-1,60],[7,27],[26,29],[4,51],[22,3],[39,-40],[13,-103],[-6,-62],[15,-55],[-13,-48],[-33,-39],[-46,-26]],[[140110,35863],[-19,-20],[-61,-5],[39,48],[41,-23]],[[140184,35958],[-65,-46],[-23,21],[6,50],[57,3],[25,-28]],[[136786,37780],[103,-17],[40,25],[51,-20],[33,-68],[-24,-33],[-24,-5],[-76,28],[-71,-21],[-21,-28],[-14,-62],[-61,-33],[-28,37],[-74,27],[-27,-40],[-53,11],[-48,-16],[-68,10],[-72,68],[-21,31],[17,57],[26,42],[195,59],[104,49],[85,-8],[45,-36],[-17,-57]],[[143652,43560],[-37,-191],[-24,32],[2,111],[15,70],[44,-22]],[[143611,43644],[-9,-10],[-19,66],[-5,67],[6,63],[37,8],[-17,-114],[7,-80]],[[126271,44523],[-11,-28],[-83,216],[-24,149],[32,34],[49,-205],[15,-47],[0,-48],[22,-71]],[[143454,44734],[-11,-19],[-20,34],[-13,124],[10,71],[23,66],[3,36],[-9,76],[65,86],[16,45],[7,58],[-24,62],[-19,13],[16,34],[33,25],[11,-6],[7,-123],[26,-44],[-4,-59],[-90,-313],[-25,-119],[-2,-47]],[[142622,46307],[40,-27],[-5,-45],[29,-87],[-24,-39],[-24,24],[-65,147],[12,49],[37,-22]],[[142351,47121],[-24,10],[26,55],[12,-54],[-14,-11]],[[142097,47211],[-15,-21],[-10,51],[3,53],[15,18],[7,-101]],[[127246,48189],[-25,-54],[-30,11],[-4,27],[20,45],[34,55],[10,-34],[-5,-50]],[[141716,48535],[-24,-7],[-21,12],[18,91],[27,-96]],[[141670,48634],[-21,4],[19,52],[11,-46],[-9,-10]],[[140525,49969],[9,-66],[19,-51],[-19,-59],[-27,24],[-19,61],[-32,49],[-8,28],[38,-2],[39,16]],[[137588,50747],[-22,17],[22,29],[15,40],[29,-35],[5,-37],[-49,-14]],[[137609,51124],[-33,-61],[-17,8],[-16,-33],[-84,-31],[-5,19],[7,61],[28,69],[28,42],[71,20],[56,30],[47,-83],[-59,-11],[-23,-30]],[[136570,51678],[-19,-33],[-23,34],[-5,35],[-18,10],[28,81],[24,-47],[3,-53],[10,-27]],[[136353,51782],[-33,1],[-5,30],[9,28],[38,-1],[-9,-58]],[[131188,51939],[-17,-19],[-33,62],[16,51],[37,-62],[-3,-32]],[[131447,52512],[-28,-43],[-19,35],[12,69],[18,25],[16,-13],[1,-73]],[[136406,53052],[19,-29],[20,2],[18,64],[19,-25],[7,-28],[-51,-83],[-18,-88],[2,-30],[16,-29],[42,-28],[28,9],[-8,-43],[-16,-32],[-57,13],[-49,-5],[-81,32],[-42,4],[28,72],[-7,80],[5,102],[47,49],[22,51],[31,31],[20,-4],[-3,-31],[8,-54]],[[136201,53038],[-10,-8],[-40,13],[5,44],[35,62],[18,-29],[8,-59],[-16,-23]],[[136244,54585],[-68,-52],[38,70],[78,62],[9,-15],[-39,-52],[-18,-13]],[[133712,54531],[36,-16],[26,-49],[2,-30],[-45,-13],[-80,44],[-80,-37],[-24,0],[-14,26],[12,74],[29,-11],[26,27],[-5,82],[-15,44],[43,81],[38,17],[16,-58],[4,-63],[20,-57],[11,-61]],[[133781,54743],[57,-6],[70,52],[32,-21],[15,4],[51,49],[33,14],[22,37],[22,-40],[50,-46],[16,-48],[28,-38],[-30,-50],[-4,-55],[-33,4],[-39,-90],[-147,-150],[-132,128],[-57,87],[-39,120],[-7,98],[-16,63],[25,22],[40,-67],[18,-19],[25,-48]],[[136356,54741],[-31,-42],[-2,31],[17,25],[38,102],[27,37],[7,37],[2,56],[21,9],[-17,-127],[-62,-128]],[[134631,54794],[-8,-11],[-35,107],[10,34],[-14,54],[23,7],[24,21],[2,-76],[14,-43],[-16,-93]],[[139190,54340],[-11,-85],[-21,-65],[3,-93],[62,-66],[15,-70],[48,-98],[-1,-67],[26,-84],[23,-166],[7,-146],[25,-97],[-16,-207],[17,-85],[23,-70],[28,-140],[21,-128],[29,-37],[60,-43],[62,48],[44,64],[49,16],[65,33],[49,-85],[26,-96],[115,-127],[65,-81],[49,-46],[47,-60],[-5,-60],[-11,-48],[11,-74],[7,-86],[-9,-104],[33,-156],[11,-125],[36,-122],[-3,-126],[-11,-118],[28,-87],[26,-65],[38,-71],[50,-106],[36,-22],[32,-1],[-5,-110],[64,-217],[33,-177],[-23,-238],[-22,-138],[4,-67],[83,-165],[47,-31],[-9,-79],[-7,-121],[38,-95],[42,-71],[45,-42],[46,-33],[59,-34],[74,-14],[39,-53],[20,-43],[60,-14],[60,25],[23,-29],[17,-38],[33,-103],[67,-103],[48,-17],[27,-52],[71,-20],[47,-40],[76,-92],[69,-15],[31,-25],[69,-101],[26,-53],[28,-80],[-34,-7],[-33,16],[-20,-78],[46,-108],[53,-77],[64,-80],[62,-114],[16,-88],[16,-34],[21,-123],[54,-71],[3,-130],[27,-180],[31,-163],[21,-49],[26,-78],[29,10],[22,25],[42,-78],[23,-34],[14,20],[-28,149],[17,86],[41,14],[29,-70],[39,-75],[74,-67],[58,-63],[17,2],[-7,49],[2,71],[24,12],[21,-36],[39,-110],[8,-227],[0,-191],[26,-196],[38,-51],[25,-49],[43,-65],[28,-62],[36,-28],[114,-131],[32,-14],[50,-4],[60,-59],[31,-54],[65,-204],[33,-72],[65,-71],[31,-23],[44,-49],[16,-71],[4,-41],[26,-76],[39,-90],[59,-50],[53,-110],[3,-179],[28,-89],[18,-37],[42,-37],[17,-29],[-34,-236],[33,-473],[-19,-147],[35,-147],[80,-253],[19,-90],[11,-105],[52,-134],[-3,-204],[21,-97],[-5,-126],[-62,-136],[-49,-168],[0,-143],[-32,-276],[-21,-74],[-16,-115],[-68,-278],[-2,-109],[10,-130],[-11,-125],[-17,-85],[-17,-158],[-68,-244],[-97,-181],[-7,-137],[-32,-137],[-60,-82],[-36,-36],[-36,-104],[-90,-43],[-61,-57],[-62,-137],[-26,-72],[-54,-101],[-22,-122],[-32,-15],[-28,-26],[13,-82],[-15,-95],[-3,-64],[-16,-40],[-18,14],[-33,-28],[46,-17],[-61,-93],[-56,-94],[-14,-62],[-24,-78],[-22,-174],[-17,-100],[12,-71],[-48,-33],[-7,-24],[17,-41],[-13,-30],[-24,0],[-29,-25],[-84,-258],[-35,-68],[-42,-105],[-15,-96],[-13,-104],[-15,-176],[-14,-124],[-32,-120],[-12,-85],[-4,-163],[15,-124],[-10,-66],[0,-64],[-13,-59],[-53,-13],[-43,-48],[-62,-79],[-36,-29],[-79,-21],[-153,9],[-293,-29],[-57,-18],[-109,-54],[-106,-85],[-101,-113],[-232,-310],[-182,-33],[-62,8],[-32,-19],[0,-39],[51,-77],[39,51],[17,-14],[8,-156],[-12,-33],[-24,-23],[-26,15],[-4,33],[-33,78],[-41,68],[-38,22],[-58,-47],[-30,88],[-33,76],[-79,7],[-90,84],[28,83],[34,16],[-10,57],[-18,47],[-47,13],[-32,-8],[-44,-102],[-100,-82],[-48,45],[-56,67],[84,-2],[46,59],[21,38],[22,79],[-58,96],[-40,37],[-152,-124],[-62,-41],[53,-21],[31,6],[33,-36],[-53,-52],[-41,-13],[-51,-31],[-98,-80],[-125,-164],[-54,-48],[-63,-37],[-87,44],[-48,10],[-62,67],[-104,46],[-99,90],[-67,45],[-48,10],[-67,-19],[-114,81],[-86,8],[-56,-81],[-73,17],[-91,133],[-87,67],[-166,33],[-102,92],[-76,177],[-146,202],[-39,74],[-18,73],[-1,57],[19,109],[27,108],[5,60],[-55,202],[-78,191],[-36,60],[-95,128],[-89,96],[-30,76],[42,-13],[20,39],[28,14],[23,-52],[25,-10],[1,88],[15,41],[-19,36],[-38,19],[-43,-29],[-33,-38],[-44,-31],[-17,-34],[-63,-10],[-89,-63],[-57,-2],[-89,22],[30,88],[34,52],[29,60],[48,210],[-9,182],[-23,74],[-74,151],[-34,92],[-42,96],[-20,-56],[-13,-58],[-40,-85],[-19,-189],[-79,-290],[-54,-3],[-46,12],[-80,-33],[-56,-41],[-49,0],[-27,-13],[-36,11],[56,226],[50,-7],[53,10],[60,-2],[27,104],[17,116],[-11,75],[-4,77],[15,152],[67,210],[57,109],[65,86],[-8,82],[-21,103],[-6,79],[31,25],[30,49],[-34,225],[-22,68],[-34,66],[-1,-86],[4,-84],[-48,-108],[-62,-78],[-40,-72],[-38,-165],[-51,-139],[-46,-51],[-41,-11],[-42,-22],[-66,-55],[-64,-47],[-47,-61],[-41,-32],[-133,-277],[-61,-93],[-13,-37],[-25,-32],[5,-44],[20,-30],[21,-123],[-12,-26],[-22,13],[-55,69],[-62,-53],[-72,126],[-30,30],[-37,51],[-41,44],[-46,-5],[3,35],[37,34],[70,-77],[31,12],[-36,143],[-24,125],[-40,164],[-14,37],[-62,90],[-66,105],[-18,127],[-24,81],[-31,51],[-48,45],[-132,18],[-55,129],[-32,161],[55,12],[10,50],[-7,77],[-131,95],[-62,100],[-52,42],[-49,17],[-65,-3],[-81,3],[-196,158],[-47,5],[-140,-49],[-47,9],[-212,216],[-142,103],[-107,37],[-84,-49],[-71,-27],[-282,18],[-241,-34],[-164,-22],[-104,-30],[-173,-129],[-206,-125],[-168,-59],[-154,-78],[-101,-23],[-132,-10],[-277,38],[-94,-28],[-151,-145],[-44,-36],[-85,-40],[-219,-187],[-101,-40],[-65,-13],[-56,-39],[-50,-80],[-69,-220],[-42,-105],[-94,-167],[-62,-55],[-61,7],[-68,-58],[-60,61],[-49,12],[-76,-5],[-270,-70],[-39,82],[-49,12],[-94,-4],[-139,25],[-255,-31],[-122,-34],[-48,-30],[-90,19],[-153,-27],[-95,-88],[-79,-186],[-88,-62],[-71,-2],[-80,-14],[-162,-179],[-166,-174],[-55,-18],[-62,-29],[-81,-14],[-40,-16],[-189,45],[-120,4],[-150,27],[-129,85],[-99,50],[-112,187],[-70,70],[-123,85],[-36,-4],[-29,-23],[-51,60],[-2,77],[-13,66],[1,172],[7,201],[46,-46],[35,-44],[77,3],[67,76],[38,110],[34,125],[-5,133],[-23,233],[16,49],[23,20],[7,117],[6,357],[-17,134],[-105,273],[-69,238],[-51,107],[-42,172],[-36,240],[-11,121],[-12,223],[13,127],[-6,74],[-44,202],[-98,189],[-16,70],[0,73],[-23,86],[-79,172],[-82,150],[-13,72],[-15,301],[-31,137],[-137,348],[-162,300],[-44,122],[-9,47],[39,-46],[19,22],[-1,58],[20,14],[17,-65],[51,-166],[15,-84],[66,-26],[44,66],[7,117],[-33,53],[-30,23],[-51,87],[-32,139],[-51,129],[1,46],[23,33],[38,-18],[35,-74],[40,-69],[-9,-181],[31,-48],[20,31],[18,70],[12,-9],[27,-161],[21,-43],[42,-51],[37,39],[17,34],[-5,113],[11,110],[-6,82],[-96,213],[-86,264],[-52,132],[-44,197],[-28,69],[-37,111],[-2,126],[3,85],[30,183],[27,95],[88,219],[4,94],[-1,72],[13,109],[0,76],[-12,70],[-36,122],[48,213],[70,274],[28,40],[44,37],[8,-57],[-22,-189],[31,-99],[-10,-111],[70,40],[32,59],[17,56],[80,222],[46,82],[64,61],[131,74],[127,96],[60,93],[75,81],[53,87],[50,61],[257,220],[43,42],[56,4],[68,-7],[62,12],[67,-51],[48,-5],[120,54],[64,49],[110,107],[48,31],[112,34],[126,45],[152,185],[109,-12],[98,-18],[78,56],[185,34],[102,47],[192,123],[51,42],[79,88],[68,110],[67,149],[41,133],[18,69],[39,109],[27,86],[21,41],[75,58],[110,164],[36,33],[6,52],[-23,29],[-30,18],[-20,173],[-19,120],[-1,83],[7,80],[43,124],[31,53],[43,62],[39,20],[32,54],[53,54],[22,54],[33,109],[30,84],[23,-3],[45,-194],[29,-103],[53,-121],[51,-178],[41,-82],[20,-52],[20,9],[-4,40],[19,136],[-9,95],[14,52],[20,-10],[58,-73],[14,5],[-1,86],[19,54],[-8,38],[-33,-2],[-15,46],[-27,54],[-32,39],[-50,123],[15,16],[24,-2],[19,38],[9,51],[-17,83],[17,31],[36,-9],[56,-132],[24,13],[20,53],[35,16],[37,-10],[24,-38],[50,-38],[65,4],[34,-9],[69,6],[-9,33],[-43,5],[-50,-2],[-21,25],[-8,67],[20,69],[62,-7],[3,65],[10,58],[18,46],[0,45],[-18,-11],[-45,-105],[-21,85],[-31,64],[6,93],[19,92],[28,12],[24,-14],[36,54],[20,41],[1,60],[24,-8],[96,-83],[19,-44],[20,17],[7,48],[-3,47],[-21,-7],[-49,4],[-7,49],[-23,55],[32,36],[28,2],[19,24],[0,33],[71,-14],[49,-43],[23,-9],[9,23],[3,49],[-60,50],[-2,49],[-25,56],[-1,55],[38,46],[8,45],[21,18],[44,1],[29,38],[33,13],[8,85],[-1,58],[13,15],[33,-24],[-10,-68],[0,-64],[25,25],[35,-17],[13,-89],[18,-15],[23,68],[33,18],[-2,86],[12,62],[4,46],[20,22],[5,49],[-17,34],[-8,61],[28,14],[28,-31],[19,-77],[13,-35],[17,19],[11,51],[34,30],[34,-41],[38,-57],[47,49],[44,94],[-7,57],[5,59],[55,31],[44,-23],[40,-63],[84,-47],[70,-67],[32,-44],[61,-70],[39,-73],[54,-129],[126,-158],[8,-28],[-17,-52],[-15,-68],[-19,-114],[-5,-168],[18,12],[19,60],[20,-12],[11,21],[-23,77],[0,41],[48,73],[51,48],[3,28],[29,29],[42,9],[26,-4],[182,-72],[46,-72],[4,-89],[18,-31],[9,55],[-2,122],[15,24],[49,-19],[33,-24],[47,-80],[9,-39],[20,-25],[7,37],[-16,112],[10,52],[55,4],[-5,39],[-39,48],[-25,51],[41,50],[-39,11],[-54,49],[-45,67],[34,125],[70,122],[38,41],[4,41],[31,140],[3,49],[18,53],[43,50],[58,17],[27,20],[27,45],[26,56],[-53,110],[14,130],[64,52],[36,136],[23,21],[51,-4],[19,12],[-3,108],[6,42],[21,17],[27,-15],[18,-47],[39,-43],[13,24],[-10,108],[64,17],[3,50],[-4,40],[11,17],[75,8],[19,41],[21,16],[12,-79],[42,-47],[124,-1],[70,33],[29,-19],[46,-15],[82,66],[51,-37],[17,-39],[13,82],[30,29],[31,17],[40,-13],[16,4],[-36,62],[0,138],[6,76],[13,54],[-86,110],[-84,17],[-63,-23],[-26,18],[-55,88],[-53,32],[-4,21],[64,63],[25,-10],[37,-59],[22,-21],[18,4],[12,46],[16,24],[31,-13],[96,-100],[54,-97],[75,80],[45,-11],[27,-32],[39,-118],[30,-58],[74,-16],[37,-22],[39,-39],[52,3],[108,-14],[101,-75],[42,-47],[49,-13],[29,-19],[52,-5],[83,53],[37,-49],[16,-33],[76,-64],[81,-19],[58,64],[84,48],[59,73],[44,34],[42,59],[16,-3],[-34,-55],[-4,-32],[24,-29],[-37,-43],[-44,-67],[1,-41],[17,-22],[20,10],[29,34],[35,18],[30,-27],[10,-97],[22,-64],[77,-8],[29,89],[-16,76],[-18,17],[9,28],[75,126],[41,-4],[30,-123],[47,-65],[51,6],[26,-17],[22,-75],[-177,-302],[-8,-34],[23,-55],[10,-64],[-58,-154],[-21,-8],[-20,42],[-31,27],[-55,-30],[-103,-86],[1,-221],[26,-131],[-15,-87],[-31,-152],[-59,-93],[-89,-208],[-28,-50],[-30,-70],[21,-115],[33,-54],[130,-111],[59,-77],[102,-93],[23,-63],[14,-53],[74,-59],[52,-36],[26,22],[26,-7],[-8,-72],[5,-32],[38,-41],[59,1],[34,10],[38,-44],[34,-29],[56,-58],[98,-70],[76,-46],[90,-170],[69,-98],[74,-70],[113,-50],[51,8],[84,-57],[82,-27],[43,-80],[15,-61],[4,-46],[41,-112],[82,-36],[108,-112],[88,-49],[22,-29],[39,-34],[75,-2],[129,56],[60,56],[78,90],[37,155],[21,124],[109,256],[32,127],[27,169],[24,106],[-8,114],[26,209],[74,382],[-9,142],[-35,266],[16,92],[15,129],[-25,94],[-24,64],[-3,90],[26,169],[24,90],[24,115],[-14,220],[52,77],[21,38],[40,0],[19,-17],[4,44],[-15,41],[-7,47],[-11,24],[-25,9],[-50,52],[5,98],[50,188],[28,73],[39,-55],[3,55],[-7,55],[38,185],[43,249],[12,228],[68,43],[35,57],[21,66],[38,0],[26,-28],[-17,-50],[-5,-38],[73,-95],[25,-73],[10,-69],[14,-64],[7,-88],[-1,-139],[10,-132],[49,-68],[34,-3],[48,-21]],[[138801,55210],[-36,-40],[-23,21],[-3,64],[29,33],[33,-78]],[[138829,55567],[-26,-43],[-27,13],[-9,25],[10,35],[34,6],[18,-36]],[[138755,55593],[-11,-19],[-19,42],[22,49],[18,-24],[-10,-48]],[[84826,96501],[-4,-33],[-35,-77],[1,-37],[46,-132],[41,-80],[8,-30],[27,-24]],[[84910,96088],[-25,-29],[-5,-44],[-21,-44],[16,-90],[-40,-9],[-97,-6],[-44,36],[-41,6],[-51,-63],[89,-33],[16,-51],[-23,-61],[-47,-30],[-31,-4],[-3,-22],[12,-66],[-20,-35],[9,-54],[24,-16],[-17,-80],[-53,-4],[-34,-21],[-68,-75]],[[84456,95293],[-50,-43],[1,-67],[-10,-20],[-82,24],[-58,-9],[-37,-31],[-46,-17],[-96,9],[-93,-12],[-46,-14],[-23,-17],[-36,-57],[-69,-44],[-20,-25],[-20,12],[-174,31],[-115,35],[-57,6]],[[83425,95054],[-90,24],[-60,2],[-79,10],[-156,37],[-46,15],[-95,18],[-39,21],[-52,93],[-49,69],[-10,34],[30,53],[-13,15],[-86,-29],[-84,-38]],[[82596,95378],[-107,8],[-40,-10],[-82,-5],[-47,-28],[-47,-96],[-42,-20],[-72,17],[-31,37],[-90,6],[-12,7]],[[82026,95294],[-16,69],[-28,14],[-73,-85],[-20,-8],[-59,24],[-51,37],[-14,48],[-43,21],[-71,14]],[[81651,95428],[13,34],[-17,36],[-19,78]],[[81628,95576],[35,85],[7,52],[-44,40]],[[81626,95753],[55,1],[42,35],[96,-49],[27,-22],[27,-66],[45,-11],[-8,-59],[56,24],[39,72],[12,87],[98,4],[36,-16],[56,-3],[9,-35],[38,-50],[26,-3],[64,22],[46,0],[41,43],[78,44],[62,23],[202,25],[5,63],[71,-15],[52,-35],[87,22],[37,-21],[5,-52],[41,-40],[59,-20],[14,70],[3,53],[-9,30],[-59,17],[25,59],[-1,58],[-83,129],[23,59],[36,30],[80,50],[57,18]],[[83216,96294],[47,21],[37,44],[22,118],[11,12],[81,-41],[48,45],[12,125]],[[83474,96618],[75,-52],[26,-62],[61,-17],[76,-2],[28,28],[25,7],[87,-19],[7,51],[49,71],[44,-2],[10,39],[11,109],[41,10],[57,-35],[48,18],[39,-11],[85,-50],[44,-18],[53,3],[100,-76],[70,-11],[64,0],[47,42],[53,-12],[49,-34],[73,-21],[30,-73]],[[97386,89733],[-83,21],[-150,45],[-41,23],[-39,63],[-57,68],[-28,15],[-22,27],[-30,75],[-30,43],[-79,158]],[[96827,90271],[-21,37]],[[98444,91798],[40,-40],[69,-109],[97,-178],[24,-51],[30,-129],[22,-62],[99,-158],[43,-58],[70,-76],[25,-16],[92,-5],[83,-51],[53,-64],[26,-92],[-96,30],[-97,-5],[-55,-20],[-52,-27],[-51,-38],[-32,-74],[-27,-172],[-39,-162],[1,-74],[18,-72],[-2,-34],[-41,-45],[-30,-148],[-14,-29],[-25,-1],[1,39],[-42,34],[-22,-38],[-15,-82],[-33,-102],[8,-264]],[[98572,89425],[-12,1],[-89,-27],[-18,9],[-76,122],[-48,19],[-19,20],[-24,57],[-78,66],[-13,45],[24,35],[83,31],[22,28],[-8,56],[-64,50],[-9,49],[13,49],[52,30],[28,31],[-17,34],[-123,164],[-45,1],[-51,-26],[-82,-73],[-46,-31],[-124,-110],[-53,-61],[-33,-51],[-59,-22],[-128,-170],[-27,2]],[[96906,91413],[93,92],[28,18],[60,-17],[127,-61],[-9,-33],[42,-45],[56,-27],[47,-13],[24,11]],[[97374,91338],[36,10],[47,-30],[65,-54]],[[97522,91264],[44,8],[40,49],[20,89],[-23,40],[-48,43],[-53,37],[-34,34]],[[97468,91564],[-22,66],[-22,7],[-9,31],[8,55],[44,14],[19,23],[35,71]],[[97521,91831],[47,-15],[6,-40],[28,-4],[32,17],[25,-13],[33,-48],[45,-51],[34,-58],[57,-49],[27,-42],[24,-98],[25,-23],[87,-37],[117,-21],[30,9],[44,85],[40,87],[104,60],[40,39],[17,43],[61,126]],[[90684,60992],[-9,-18],[-47,-150],[21,-37],[-21,-90],[4,-35],[35,-30],[39,-12],[45,-30],[30,-5],[14,-92]],[[90795,60493],[0,-58],[-9,-52],[-47,-24],[-31,-40],[9,-36],[-44,-51],[-45,-67],[-10,-46]],[[90618,60119],[-9,-53],[-14,-34],[-34,-50],[-35,-99],[-17,-64],[-86,-155],[-99,-103],[-136,4]],[[90188,59565],[-10,105],[-21,142],[-46,128],[-5,54],[2,249],[-3,79],[7,156],[-1,59],[-30,69],[-59,108],[-1,55]],[[90021,60769],[21,82],[17,5],[41,-17],[43,-37],[22,-82],[18,-12],[31,0],[81,11],[20,-2],[37,20],[36,35],[11,36],[9,81],[7,145],[19,2],[51,-52],[22,-1],[39,46],[16,0],[59,24],[32,-44],[31,-17]],[[79977,98016],[59,24],[26,-39],[44,-2]],[[80106,97999],[54,-49],[15,-30],[35,-28],[-29,-36],[15,-32],[40,-9],[19,-24],[11,-94],[-82,-58],[-25,-78]],[[80159,97561],[-12,23],[-49,9],[-47,-59],[-34,-84],[-19,-29],[-8,-78],[27,-34],[40,-80],[-39,-74]],[[80018,97155],[-34,1],[-88,-20],[-31,30],[-67,86],[-67,31],[-50,39],[-60,7],[-11,88],[-22,32],[30,122],[-18,12],[-48,-39],[-22,-66],[-48,-29],[-76,-11],[-83,11],[-17,28],[24,65],[-24,35],[16,71],[-56,52],[-40,11],[-87,5],[-35,-13],[-17,92],[-65,29],[-69,6],[-19,17],[-16,91],[-23,48],[-32,33],[-37,-8],[-43,-28],[-35,-11],[-74,70],[-31,45],[2,55],[-28,65],[-5,34]],[[78612,98241],[187,117],[115,60],[53,18]],[[78967,98436],[13,-60],[40,-34],[46,30],[76,-22],[32,-29],[31,-3],[60,27],[57,42],[23,55]],[[79345,98442],[33,-17],[43,4],[-8,42],[51,32],[37,-36],[19,0],[53,48],[40,-61],[41,3],[37,43],[13,-12],[17,-74],[49,-47],[42,-13],[85,10],[43,-53],[62,-20],[32,-31],[-4,-27],[-29,-68],[-6,-39],[-42,-62],[24,-48]],[[79073,70807],[-18,-45],[-27,-92],[-1,-72],[65,-153],[24,-39],[9,-28]],[[79125,70378],[8,-75],[10,-142]],[[79143,70161],[31,-80],[2,-32]],[[79176,70049],[-22,-120],[-11,-16],[-33,11],[-15,-13]],[[79095,69911],[-18,-41],[-12,-57],[30,-75],[-19,-109],[-19,-68],[-35,-38],[-31,-9],[-34,-42],[1,-78],[-45,-70],[-38,-80],[5,-91],[-16,-92],[-28,-73],[-116,-24],[-18,-186],[0,-117],[-4,-120],[-9,-49]],[[78689,68492],[3,-68],[-4,-156],[-7,-122],[10,-33],[5,-72],[0,-75],[28,-97],[-15,-57],[0,-175],[3,-53],[-15,-61],[4,-88],[19,-99],[-17,-80],[-12,-117],[-1,-41],[-181,-29],[-201,-47],[-85,-30]],[[78223,66992],[-5,24],[72,30],[-15,92],[-44,108],[-18,20],[-9,54],[11,35],[-9,97],[-22,80],[40,3],[0,508],[0,379],[-8,201],[-2,342],[-15,60],[-61,103],[-17,54],[-3,70],[-13,73],[-2,275],[-6,24],[-237,252],[-7,19],[11,226],[14,29],[23,93],[11,75]],[[77912,70318],[25,24],[12,35],[33,-14],[10,12],[5,56],[17,13],[4,54],[38,6],[36,24],[35,93],[12,13],[58,1],[17,-34],[111,30],[52,-17],[108,146],[25,44],[43,143]],[[78553,70947],[11,71],[-22,132],[2,23],[44,29],[56,21],[21,2],[35,40],[33,21],[31,-11],[117,-174],[51,-88],[13,-45],[27,-33],[38,-20],[36,-44],[27,-64]],[[77618,73046],[-23,-289],[37,-70],[45,-75],[12,-30],[-12,-74],[9,-44],[23,-72],[82,-187],[56,-21],[16,-17],[48,-27],[35,-41],[17,-58],[46,-39],[33,-38],[-13,-20],[-41,8],[-38,17],[-5,-28],[-1,-108],[6,-89],[47,-28],[91,-117],[83,-109],[28,-29],[45,-11],[51,-4],[22,10],[50,55],[51,5],[13,-9],[24,-45],[22,-69],[6,-50],[-9,-37],[-59,-23],[-4,-15],[14,-56],[45,-98],[64,-133],[19,-34]],[[77912,70318],[-111,-8],[-40,-19],[-24,0],[-4,26],[-140,54],[-98,32]],[[77495,70403],[-99,35],[-6,-33],[-14,-22],[-37,4],[-26,-59],[-68,-57],[-23,44],[-30,4],[-56,-7],[-60,17],[-82,-9],[-131,18],[-27,-17],[-273,-5],[-224,-3],[-33,8],[-34,-188],[-3,-95],[16,-58],[18,-37],[19,-16],[2,-21],[-16,-27],[2,-28],[18,-29],[5,-30],[-9,-32],[2,-76],[14,-121],[0,-78],[-13,-36],[6,-61],[26,-87],[4,-36]],[[76363,69265],[-30,-40],[-22,1],[-36,76],[-38,106],[-46,45],[-28,68],[-27,32],[-28,-9],[-42,13],[-84,16],[-90,-5],[-38,-15],[-130,-79]],[[75724,69474],[-37,-27],[-28,-68],[-32,2],[-32,22],[-20,30],[-43,-6],[-41,29],[-40,59],[-29,20],[-38,42],[-10,81],[-24,57],[-22,79],[-32,36],[-38,19]],[[75258,69849],[-52,-4],[-34,31],[-26,47]],[[75146,69923],[19,96],[9,144],[-5,111],[-9,78],[61,61],[21,53],[21,118],[9,102],[-26,112],[-5,54],[6,47],[25,43],[53,54],[133,45],[43,31],[48,54],[18,50],[50,78],[3,169],[-25,64],[109,84],[1,60],[-16,67],[-21,53],[-8,47],[77,130],[43,53],[44,14],[41,-20],[119,-125],[21,-8],[25,10],[32,32],[40,26],[16,84],[-2,123],[9,56],[22,10],[69,-23],[38,6],[14,22],[-4,75],[23,114],[41,85],[82,108],[26,21],[30,11],[148,-74],[25,19],[36,182],[40,17],[48,3],[48,29],[70,69],[125,94],[66,41],[61,82],[64,77],[40,15],[56,6],[36,-13],[21,-33],[73,33],[105,-52],[90,-51]],[[117126,77639],[-26,-4],[-12,21],[6,29],[-7,93],[33,10],[12,-79],[-6,-70]],[[117094,77864],[-24,-15],[7,52],[21,-1],[-4,-36]],[[116782,78103],[-45,-49],[15,289],[34,-107],[8,-58],[-12,-75]],[[116957,78247],[-20,-20],[-18,18],[-24,67],[11,86],[20,-15],[28,-106],[3,-30]],[[116622,78043],[-75,-24],[-38,8],[71,182],[-3,82],[-11,67],[-36,53],[-2,38],[-16,53],[-9,61],[41,19],[32,-35],[12,-69],[16,-52],[57,-107],[-1,-66],[-16,-160],[-22,-50]],[[116563,78652],[-16,-12],[-29,48],[19,14],[26,-50]],[[115831,80937],[12,4]],[[115843,80941],[5,24],[-25,62],[12,26]],[[115835,81053],[29,-1]],[[115864,81052],[21,-23],[15,-48],[3,-74],[33,-67],[45,-48],[34,-21],[42,-16],[36,15],[18,47],[-8,41]],[[116103,80858],[5,38],[15,20],[22,-1],[17,-30],[48,-160],[-10,-70],[11,-195]],[[116211,80460],[-12,-128],[2,-28]],[[116201,80304],[6,-21],[22,-9]],[[116229,80274],[59,-24],[50,-27]],[[116338,80223],[57,-24],[81,-19],[75,7]],[[116551,80187],[50,-6],[133,10],[110,3],[44,-18],[36,-7],[122,13],[124,6],[66,-41],[73,-66],[41,-50],[7,-28],[-18,-38],[-25,0]],[[117314,79965],[-58,32],[-10,-10],[0,-76]],[[117246,79911],[-13,-60],[-34,-133]],[[117199,79718],[-7,-60],[-16,-24]],[[117176,79634],[-49,-12],[-22,-67],[-10,-45],[-13,-14],[-32,24],[-20,-3]],[[117030,79517],[-25,-11],[-24,-26],[-17,-32],[-20,-11],[-57,6],[-19,-27]],[[116868,79416],[-6,-29],[-45,-69],[-30,-181],[2,-55],[38,-144],[26,-188],[19,-25]],[[116872,78725],[5,90],[28,2]],[[116905,78817],[15,-41],[18,-75],[18,-29],[28,-9],[33,18],[24,34]],[[117041,78715],[10,36],[-9,127],[16,51],[55,76],[8,24],[-3,126],[49,-6]],[[117167,79149],[36,30],[26,-31],[25,5],[19,-133],[19,-117],[0,-57]],[[117292,78846],[3,-120],[9,-98]],[[117304,78628],[13,-22],[31,-113]],[[117348,78493],[12,-35]],[[117360,78458],[8,-111],[9,-80],[13,-252]],[[117390,78015],[6,-49]],[[117396,77966],[3,-26],[1,-231],[4,-99],[16,-112],[-27,-30],[-13,40],[-89,83],[-22,-8],[-31,-49],[-13,-45],[16,-126],[21,-35],[2,-40],[18,-97],[6,-51]],[[117288,77140],[-7,-1],[-49,135],[-60,133],[-19,237],[-1,118],[-41,138],[-27,191],[-11,49],[14,62],[-26,-14],[-27,76],[-18,69],[-70,141],[-21,62],[-1,61],[-30,-61],[-41,-43],[-42,-65],[-28,-19],[-89,-12],[-51,86],[-74,212],[-9,48],[9,125],[-17,117],[0,63],[-23,3],[-3,-80],[-64,7],[-59,17],[52,-62],[57,-15],[29,-55],[2,-92],[-56,-56],[5,-47],[33,-57],[-39,-16],[-11,-37],[-1,-53],[27,-82],[-4,-32],[19,-34],[27,-72],[9,-52],[-11,-72],[-41,-55],[-60,-91],[-29,-104],[-25,-48],[-31,-9],[-38,49],[0,50],[8,40],[52,97],[-28,-13],[-82,-80],[-26,125],[0,74],[39,110],[-44,-55],[-12,-69],[5,-80],[-6,-57],[-17,-75],[-24,-45],[-38,-29],[-17,-44],[-26,-33],[-1,65],[-8,86],[-28,203],[-6,-44],[14,-126],[0,-81],[-21,-65],[-43,-70],[-32,-10],[-19,11],[-29,43],[-31,62],[-6,99],[-13,54],[0,126]],[[115878,78172],[-34,165],[-22,84]],[[115822,78421],[3,27],[-12,121]],[[115813,78569],[-14,66],[-7,71],[33,101],[-13,17],[-75,31]],[[115737,78855],[-8,26],[15,100],[-18,40]],[[115726,79021],[-44,76],[-12,50],[23,106],[34,123],[14,159],[-4,30],[-35,36],[-62,14]],[[115640,79615],[-44,30],[-25,45]],[[115571,79690],[-22,18],[-27,-14]],[[115522,79694],[-34,18]],[[115488,79712],[-29,45],[-24,54],[10,59],[45,141],[17,4],[39,-27],[14,0],[26,55],[36,158],[51,0]],[[115673,80201],[74,-13],[62,17],[17,20]],[[115826,80225],[6,47],[-38,30]],[[115794,80302],[-15,23],[-11,63],[-11,24]],[[115757,80412],[-76,3],[-39,29],[-22,26],[-38,86],[-48,64],[-45,15]],[[115489,80635],[-18,21]],[[115471,80656],[-9,32],[5,48],[23,91],[37,63],[42,56]],[[115569,80946],[46,78]],[[115615,81024],[-2,47],[-21,24]],[[115592,81095],[-15,7]],[[115577,81102],[8,57],[20,5],[44,-37],[43,-61],[27,-54],[0,-43]],[[115719,80969],[35,-8],[28,-19],[29,6],[20,-11]],[[89836,93120],[-10,-168],[-42,-78],[-62,26],[-81,-22],[-42,-88],[-46,-58],[-14,-115],[-3,-188],[-58,-31],[-116,-166],[67,-46],[29,-36],[49,-99],[69,-111],[14,-55],[-58,12],[-34,-21],[-60,4],[-54,-29],[-26,19],[-78,92],[-44,-2],[-78,-13],[-54,-46],[-37,-12],[-79,-7],[-29,-47]],[[88959,91835],[-16,-49],[-65,-18],[-15,-20],[-2,-39],[-52,19],[-40,-12],[-18,-37],[19,-45],[14,-61],[5,-60],[-8,-34],[-30,-25],[-62,-27],[-59,13],[-26,-10],[-85,-11],[-63,-25],[-56,-14],[-51,50],[-60,34],[-63,21],[-32,-27],[-76,61],[-34,76],[-56,-20],[-68,5],[-75,-3],[-10,-40],[-25,-12],[-40,3],[-51,-30],[-55,-18],[-87,8],[-83,-10],[-36,-43],[-104,9]],[[87394,91444],[6,14],[10,174],[23,77],[-6,28],[-21,13],[-46,152],[-17,22],[-49,24],[-43,32],[-37,41],[-66,104]],[[87148,92125],[33,11],[44,78],[0,43],[-22,28],[-15,60],[12,84],[-11,29],[12,35],[39,25],[64,4],[40,71]],[[87344,92593],[25,23],[37,54],[14,64],[-50,45],[-40,70],[-91,70],[-24,45],[-11,58],[-34,73],[-11,52],[-2,56],[24,101],[76,48],[13,82],[33,31]],[[87303,93465],[31,-30],[73,-47],[36,-35],[-19,-42],[-32,-21],[-18,-27],[-1,-58],[23,-21],[131,27],[134,-14],[179,-46],[119,-17],[88,22],[314,-75],[145,-11],[81,28],[57,39],[50,72],[121,95],[118,54],[155,43],[103,15],[14,-15],[131,-88],[59,0],[47,-15],[29,-29],[63,21],[71,-115],[74,-34],[87,-23],[70,2]],[[99321,80685],[-14,-53],[-14,18],[-33,92],[10,65],[-16,92],[7,27],[41,12],[-3,-34],[23,-51],[3,-85],[-4,-83]],[[46072,77419],[-13,-51],[-46,-98],[-102,-24],[-112,-5],[-11,50],[8,37],[-5,29],[41,16],[27,45],[42,7],[53,-31],[29,-1],[42,35],[34,75],[20,-10],[-7,-74]],[[46120,77638],[-57,-34],[-6,40],[29,32],[34,-38]],[[46066,78280],[42,-9],[49,-21],[36,-41],[-16,-25],[-45,48],[-40,6],[-55,-1],[-23,9],[15,52],[37,-18]],[[45564,78130],[-23,15],[58,61],[56,88],[26,20],[13,34],[-4,29],[-27,46],[10,56],[45,11],[-12,-35],[18,-99],[-60,-123],[-51,-39],[-49,-64]],[[45629,78485],[-18,-40],[-62,34],[-14,-2],[-17,64],[3,25],[37,-20],[20,-36],[51,-25]],[[45291,78604],[-2,-18],[-55,139],[-68,34],[-40,34],[9,19],[27,8],[4,44],[-11,48],[-66,176],[-2,55],[42,-85],[18,-75],[29,-74],[19,-127],[55,-43],[39,-62],[2,-73]],[[44936,78991],[-18,-4],[-32,18],[-75,85],[-35,7],[11,48],[27,-17],[61,-73],[23,-36],[38,-28]],[[45468,79421],[-34,-75],[-18,6],[10,95],[33,14],[9,-40]],[[44078,79547],[1,-16],[-43,-43],[31,-32],[29,68],[23,-55],[13,-104],[6,-82],[-24,-91],[-85,9],[-2,77],[-13,15],[-20,109],[-26,35],[-37,90],[21,23],[29,-8],[14,11],[64,21],[19,-27]],[[45090,79513],[3,-35],[-29,7],[-43,-14],[-6,24],[30,33],[1,31],[-36,45],[-43,112],[-20,26],[-9,42],[-36,46],[15,29],[24,-11],[58,-177],[91,-158]],[[44212,80080],[-49,-15],[-35,14],[6,31],[33,16],[53,2],[25,-27],[-33,-21]],[[44041,79866],[-1,-84],[5,-63],[-5,-23],[-46,-42],[-12,-23],[-44,-24],[-27,-33],[-13,54],[-26,33],[-4,56],[-20,-19],[-28,12],[-47,43],[-30,58],[42,10],[8,-36],[33,44],[-24,70],[49,113],[11,74],[-22,117],[20,8],[56,-41],[25,-41],[1,-56],[23,-43],[34,-103],[42,-61]],[[44512,80409],[71,-78],[61,-30],[65,-98],[28,-35],[5,-32],[-11,-146],[-14,-87],[-13,-54],[-16,50],[-34,44],[46,3],[4,80],[22,62],[-3,65],[-54,72],[-36,63],[-56,20],[-52,63],[-31,7],[-38,-11],[30,96],[26,-54]],[[43718,81274],[52,-22],[45,17],[77,-5],[63,20],[7,-56],[-132,-18],[-122,-54],[-66,-37],[-32,-4],[-24,19],[-58,101],[59,-63],[37,11],[34,42],[0,47],[15,50],[45,-48]],[[44264,80700],[-9,-7],[-37,70],[-30,20],[47,50],[20,42],[0,93],[11,50],[-4,44],[10,45],[-14,50],[-39,40],[-78,158],[-123,39],[-63,1],[35,26],[82,-18],[59,-8],[37,-46],[34,-62],[45,-41],[3,-35],[41,-29],[42,-47],[12,-137],[-56,-64],[-10,-199],[-15,-35]],[[85711,93904],[99,32],[32,-12],[19,-27],[-28,-113],[-60,-118],[-8,-30],[-6,-86],[14,-40],[34,-16],[47,-38],[105,-127],[-15,-39],[-43,-6],[-62,10],[-21,-34],[46,-69],[54,-98],[3,-43],[-19,-56],[-39,22],[-46,-6],[-26,-36]],[[85791,92974],[-49,-11],[-45,17],[-15,-31],[41,-97],[-4,-46],[-21,-4],[-18,37],[-36,5],[-77,-80],[-22,-74],[1,-68],[-59,-11],[-19,-30],[10,-133]],[[85478,92448],[33,-72],[-4,-38],[-42,-42]],[[85465,92296],[-57,28],[-78,63],[-34,36],[-87,72],[-17,40],[-27,9],[-31,-13]],[[85134,92531],[-36,29]],[[85098,92560],[32,29],[-15,44],[-95,108],[-48,75],[-7,26],[-1,71],[-11,17],[-70,32],[-160,183],[-53,94],[-51,62],[-41,40],[-33,45],[-37,63],[-36,180],[-12,33],[-23,11],[-73,101],[-62,58],[1,63],[21,225],[43,26],[61,-19],[55,-81],[32,-32],[27,-12],[31,34],[38,72],[33,38],[112,-14],[55,56],[89,-73],[37,-11],[49,6],[96,-29],[46,28],[15,-3],[53,-56],[27,-1],[52,45],[61,-16],[64,11],[87,-34],[75,-6],[36,-35],[15,-34],[3,-44],[21,-22],[45,-13],[29,3]],[[89648,101754],[58,-61]],[[89706,101693],[47,22],[74,3],[31,-21],[45,-74],[23,-9],[66,42],[60,13],[124,-57],[10,-41],[-19,-67],[55,-69],[87,59],[26,0],[83,53],[46,-7],[82,7],[96,-41],[73,-84]],[[90715,101422],[121,-67],[-3,-120],[-34,-47],[-3,-36],[62,-98],[8,-61],[-63,-94],[-14,-92],[80,-61],[59,-33],[15,-26],[-35,-83],[48,-27],[26,-43],[23,-69],[45,-67],[167,-97],[20,-39],[-6,-45],[-30,-87],[28,-13],[74,3],[90,-11],[108,-61],[0,-28]],[[91501,100020],[-11,-25],[19,-49],[93,-68],[8,-78],[-54,-17],[-47,-29],[-19,-42],[-75,-57],[-47,-26],[-37,-1],[-89,11]],[[91242,99639],[-44,55],[-34,11],[-108,-3],[-69,-125],[80,-108],[39,-44],[13,-46],[-19,-23],[3,-46],[38,-60],[-13,-10]],[[91128,99240],[-3,-153],[48,-64],[32,-83],[-82,4],[-98,-1],[-55,-39],[-60,19],[-42,-22],[-97,-105],[-38,-56],[-58,-152],[30,-87],[13,-81],[-24,-25],[-14,-38],[-41,7]],[[90639,98364],[-50,36],[-11,51],[-64,55],[-41,3],[-67,-17],[-87,-13],[-66,-3],[-89,-37],[-21,22],[-53,116],[-17,26],[-32,5],[-36,-37],[-55,-22],[-24,-21],[-27,-53],[-36,16],[-21,60],[-29,14],[-46,0],[-104,31],[-45,-30],[-30,-3],[-65,22],[-51,-76],[-27,5],[5,58]],[[89450,98572],[-38,20],[-64,3],[-45,-8],[-33,13],[-56,97],[-81,1],[-77,12],[-138,29],[-26,22],[-54,7],[-148,41],[-60,7]],[[88630,98816],[-88,1],[-135,9],[-86,-5],[-87,-22],[-160,-11],[-57,-11],[-35,-65],[-66,-76],[-76,-56],[-37,27],[-68,12],[-42,-21],[2,-59]],[[87695,98539],[-4,-5]],[[87691,98534],[-28,70],[2,63],[35,69],[-8,50],[19,64],[0,47],[-23,44],[-60,46],[-113,61],[-9,21],[12,35],[89,125],[30,24],[157,79],[25,27],[6,47],[-3,93],[-10,86],[-42,169],[-82,229],[-49,237]],[[87639,100220],[32,-14],[75,-5],[60,16],[59,-3],[78,13],[55,-40],[69,27],[61,34],[64,-4],[25,101],[19,18],[76,-9],[28,16],[29,41],[45,26],[37,0],[39,29],[29,-54],[-13,-28],[33,-25]],[[88539,100359],[75,12],[7,45],[-27,50],[-66,27],[31,89],[45,73],[-1,107],[25,80],[34,60],[45,19],[56,11],[35,28],[32,85],[18,10],[133,-6],[21,51],[55,48],[-41,23],[-80,8],[-16,17],[47,143],[11,84]],[[88978,101423],[99,29],[56,72],[43,12],[110,-18],[116,-4],[28,79],[109,114],[59,40],[50,7]],[[39687,74794],[-22,3],[31,52],[15,-15],[-24,-40]],[[39645,75144],[-1,53],[23,107],[22,-10],[-44,-150]],[[39093,73726],[-2,4],[10,441],[13,532],[9,364]],[[39123,75067],[0,61],[12,48],[36,20],[66,-59],[39,35],[27,74],[68,152],[27,109],[27,21],[38,4],[33,-7]],[[39496,75525],[-23,-79],[23,-10],[21,7],[51,-3],[19,-86],[-5,-73],[-48,-192],[-6,-66],[-21,-99],[29,-64],[-27,-87],[-10,-55],[-2,-84],[14,-160],[-22,-230],[-40,-100],[-24,-38],[-44,-100],[-57,-30],[-79,-161],[-14,-42],[8,-46],[-95,7],[-51,-8]],[[49646,85148],[-39,-23],[54,88],[-15,-65]],[[52476,48623],[8,116],[-9,100],[-8,26],[-242,228],[-150,142],[-194,-4],[-201,-4],[-192,-63],[-188,-63],[-268,-89],[-106,-27],[-69,-286],[-40,-100],[-114,-253],[-1,-350],[-86,-445],[-65,-334],[-10,-34]],[[50541,47183],[-40,51],[-43,113],[-182,-2],[-176,-3],[-18,-16],[-25,0],[-19,16],[-44,-16],[-23,-31],[-68,-204],[-33,-88],[-25,-78],[-17,-133],[-29,24],[-31,122],[-33,149],[-36,99],[-40,30],[-62,29],[-64,24],[-28,5],[-184,3],[-15,3],[-72,-11],[-37,7],[-38,56],[-85,97],[-18,31],[-52,23],[-12,-20],[-32,-155],[-18,-42],[-118,-64],[-32,-7],[-16,-37],[-8,-51],[-14,-47],[-82,-70]],[[48672,46990],[-18,-29],[-10,-69],[-60,-119],[-72,-23],[-94,-25],[-92,8],[-37,39],[-4,66],[7,68],[-4,96],[-29,111],[-2,90],[-15,103],[-38,51],[-10,85],[-5,75],[-32,94],[-5,119],[1,103],[-103,245],[-42,17],[-16,51],[3,91],[33,55],[-6,20],[-105,107],[-7,56],[31,47],[-20,59],[2,54],[-13,23]],[[47910,48658],[14,31],[55,18],[17,54],[1,45],[-9,32],[-50,80],[-1,14],[53,112],[48,89],[-12,35],[-56,60],[-59,93],[-43,48],[-32,48],[-16,40],[-4,107],[-21,110],[-5,73],[-23,187],[-23,96],[24,51],[-2,14],[-81,60],[-13,15],[-19,119],[-59,106],[-7,79]],[[47587,50474],[-5,82],[-18,39],[-27,27],[-8,32],[9,33],[52,67],[28,11],[7,34],[17,27],[79,162],[29,39],[33,27],[15,22],[-8,69],[3,47],[11,29],[64,55],[4,29],[-28,36],[-57,30],[-38,-3],[-36,51],[-75,287],[-13,67],[2,26],[50,142],[55,114],[-6,26],[-62,111],[-19,53],[7,117],[36,34],[18,104],[15,17],[34,71],[46,65],[4,78],[14,21],[39,25],[4,20],[-9,53],[-19,55],[-16,27],[-21,137],[-22,67],[24,62],[15,68],[5,80],[-4,292],[1,57],[48,87],[47,48],[-2,55],[33,74],[-155,436],[-136,381],[-93,262]],[[47558,55038],[50,2],[100,-5],[98,-27],[66,-11],[28,-24],[6,-37],[18,-17],[21,7]],[[47945,54926],[24,2],[97,63],[37,31],[20,29],[46,103],[38,57],[34,20],[68,8],[21,-16],[27,2],[24,59],[36,64],[72,81],[36,22],[22,29],[39,4],[34,29],[164,205],[67,52],[76,22],[58,30],[146,28],[94,12],[30,-28],[34,8],[29,45],[41,14],[25,-54],[12,-58],[-8,-43],[2,-64],[11,-84],[-6,-74],[-36,-96],[-18,-40],[-4,-41],[3,-55],[16,-89],[30,-124],[4,-92],[-20,-59],[-10,-52],[2,-43]],[[49362,54833],[20,-48],[7,-35],[2,-51],[17,-50],[33,-49],[13,-46],[-6,-44],[11,-38],[32,16],[23,-61],[15,-63],[4,-39],[70,-38],[20,-20],[40,-61],[34,-40],[42,-33],[40,-131],[71,-30],[84,-16],[53,-17],[65,42],[42,-6],[45,-28],[52,-60],[51,-52],[41,-20],[30,29],[28,10],[21,-12],[22,-95],[78,-103],[30,-30],[34,2],[144,-96],[38,-8],[38,7],[25,-18],[10,-58],[64,-114],[31,-45],[36,-38],[92,0],[28,-11],[41,10],[146,26],[70,-50],[83,-72],[55,-56],[38,-31],[36,-103],[8,-57],[-10,-56],[-15,-23],[-5,-36],[6,-55],[27,-48],[10,-60]],[[51522,52624],[15,-106],[17,-33],[11,-328],[-133,-6],[23,-31],[124,-235],[15,-294],[13,-255],[320,-19],[205,-12],[181,-10],[49,14],[34,16],[2,-39],[-5,-105],[-51,-111],[-4,-35],[8,-146],[19,-118],[9,-107],[21,-34],[61,-56],[92,-104],[37,-14],[32,14],[18,-42],[4,-69],[83,-314],[15,-42],[25,-22],[-25,-22],[-9,-23],[-65,-316],[-25,-126],[22,-2],[6,-88],[-27,-7],[-9,-19],[-142,-462]],[[52488,48916],[116,-164],[-11,-28],[-58,-24],[-31,-67],[-28,-10]],[[56642,43330],[-30,-31],[6,165],[33,96],[22,26],[16,-36],[-14,-80],[-38,-98],[5,-42]],[[56600,44281],[-8,-9],[-27,87],[54,83],[18,-34],[-14,-66],[-23,-61]],[[58031,46030],[-18,-18],[-47,-14],[-17,28],[64,117],[23,-39],[7,-30],[-12,-44]],[[58518,46550],[-39,-34],[-43,-15],[-17,28],[37,39],[13,30],[49,-48]],[[60769,53282],[-15,-41],[-17,6],[-19,55],[18,32],[32,-1],[1,-51]],[[60838,53544],[-19,29],[44,56],[7,66],[24,-30],[5,-48],[-61,-73]],[[58359,60617],[-42,-69],[14,79],[-8,55],[6,42],[38,47],[-1,-66],[-7,-88]],[[58194,61746],[-37,-51],[-12,30],[8,56],[38,-7],[3,-28]],[[55201,61665],[-46,-13],[59,174],[52,81],[1,161],[57,143],[52,58],[74,17],[40,-87],[-50,-247],[-14,-2],[-67,-130],[-74,-91],[-84,-64]],[[56150,62504],[40,-3],[57,13],[38,32],[43,7],[42,-4],[143,-36],[85,-11],[62,-28],[22,-18],[6,-38],[-21,-62],[-16,-65],[-14,-91],[-11,-18],[-19,5],[12,-81],[-4,-33],[-32,-97],[-35,-83],[-37,-47],[-21,-37],[15,-70],[-13,-44],[-41,-64],[-47,-22],[-21,6],[-37,65],[-14,-102],[-12,-28],[-48,3],[-27,27],[-43,31],[-8,-83],[-27,-57],[-27,-18],[-42,-12],[-24,-24],[-46,19],[-42,38],[-24,3],[-19,-31],[-99,-5],[-45,-31],[-28,8],[-40,63],[-7,42],[-24,85],[-22,100],[-15,92],[13,79],[57,-15],[8,31],[-6,21],[-51,-3],[-31,47],[-6,72],[7,151],[4,31],[22,43],[7,38],[-5,41],[9,74],[21,63],[79,81],[92,28],[267,-78]],[[55709,62572],[-118,-137],[-40,45],[-8,26],[18,84],[66,38],[33,7],[43,-12],[6,-51]],[[56229,62585],[-114,-22],[-52,35],[12,29],[39,47],[47,33],[43,15],[44,-19],[12,-39],[-3,-39],[-28,-40]],[[56103,62850],[17,-36],[-61,-146],[-33,-21],[-37,-4],[-48,43],[-74,-3],[-23,11],[-3,63],[31,68],[63,-4],[107,54],[61,-25]],[[55806,62760],[-7,-102],[-78,43],[6,105],[36,29],[32,56],[11,68],[1,93],[32,16],[8,-224],[-41,-84]],[[55924,62937],[-47,-24],[-8,22],[0,88],[13,48],[59,13],[24,24],[9,-31],[-1,-50],[-49,-90]],[[55861,64013],[-43,-32],[-25,13],[-22,82],[7,69],[32,23],[33,-13],[21,-113],[-3,-29]],[[51812,65695],[-16,-89],[20,-46],[31,-95],[29,-63],[-23,-79],[-28,-47],[-4,-37],[-75,-78]],[[51746,65161],[9,-87],[1,-79],[-18,-46],[-32,-136],[-11,-68],[-10,-156],[0,-53],[46,-227],[17,-25],[40,-37],[5,-106],[-5,-154],[7,-19],[31,-22],[1,-67],[56,-32],[68,-120],[17,-14],[9,-30],[37,-62],[113,-49],[46,-71],[32,4],[45,50],[74,3],[11,44],[-9,63],[15,19],[33,11],[24,74],[72,-28],[13,-21],[46,2],[17,37],[6,52],[47,13],[33,23],[87,3],[21,15],[20,33],[37,94],[41,38],[18,-3],[37,16],[31,23],[11,-6],[24,-48]],[[52959,64012],[29,-14]],[[52988,63998],[57,-25],[64,23],[31,6],[23,-11],[35,25],[199,-70],[25,10],[14,22],[6,105],[-45,83],[-23,55],[-28,15],[4,28],[47,65],[12,73],[24,14],[89,-77],[31,8],[117,16],[18,33],[25,8],[43,33],[50,1],[28,31],[34,-67],[32,-40],[37,10],[19,-9],[11,-57],[15,-22],[20,-1]],[[54002,64283],[28,-23],[15,-33],[96,-64],[28,0],[42,-23],[79,78],[77,85],[14,-32],[74,-33],[24,-6],[33,18],[42,42],[21,-31],[24,-62],[21,4],[93,-19],[26,19],[15,39],[73,67],[50,115],[11,31],[2,52],[42,151],[16,27],[27,103],[0,46],[12,45],[43,62],[29,65],[20,61],[50,136],[4,38],[20,23],[6,29],[44,65],[26,85],[49,48]],[[55278,65491],[41,120],[5,54],[36,2],[58,-62],[47,-91],[61,-294],[11,-272],[25,-142],[72,-296],[4,-55],[12,-66],[23,-71],[25,-116],[8,-55],[22,-19],[14,-73],[18,-50],[32,-68],[67,-22],[50,-8],[57,-39],[42,-49],[33,-167],[-11,-105],[3,-74],[-16,-29],[-47,-48],[-11,-26],[-96,-125],[-21,-59],[-51,-79],[-52,-151],[-74,-138],[-27,-35],[-40,-8],[-25,-21],[-58,-112],[-78,-38],[-7,-65],[-45,-149],[-40,-81],[-25,-28],[-63,-148],[-9,-65],[1,-114],[-43,-69],[-44,-44],[-5,-97],[-37,-55],[-90,26],[-140,-106],[-48,-26],[153,-6],[49,-56],[107,38],[130,133],[49,29],[101,90],[41,61],[75,73],[16,32],[41,33],[23,-43],[2,-27],[-34,-53],[9,-34],[22,-43],[11,-105],[14,-79],[46,-107],[-4,-82],[22,-39],[23,-23],[78,-115],[62,64],[38,19],[24,27],[50,18],[42,-27],[79,-39],[58,41],[117,95],[-37,-167],[-27,-154],[-20,-61],[-20,-167],[-36,-96],[49,42],[29,64],[21,112],[85,298],[24,26],[70,34],[122,238],[47,0],[30,-55],[29,-32],[7,65],[42,26],[-44,33],[-11,78],[29,65],[-17,59],[61,73],[-4,56],[49,92],[32,23],[6,40],[35,22],[31,-45],[34,54],[32,20],[33,-32],[35,-6],[40,34],[37,-55],[23,-12],[-18,59],[27,38],[55,-13],[30,-24],[31,-46],[44,-3],[35,5],[22,-26],[35,0],[18,-39],[54,-56],[12,-37],[84,-42],[43,-6],[44,5],[2,-47],[32,-13],[41,10],[32,-58],[83,-45],[58,-67],[38,12],[42,-18],[45,-147],[11,-104],[20,14],[19,47],[24,85],[45,28],[22,-32],[46,-53],[39,-58],[17,-37],[29,-6],[1,-41],[30,33],[25,-67],[20,-73],[3,-74],[-34,-69],[-18,-53],[-42,-26],[41,-75],[36,99],[25,28],[37,16],[19,-71],[4,-67],[-60,-28],[0,-52],[-30,-64],[-9,-72],[-12,-60],[-36,-265],[0,-43],[43,47],[80,134],[24,144],[31,141],[35,45],[21,0],[32,-16],[-3,-73],[-49,-109],[14,-38],[77,117],[35,41],[29,-9],[59,54],[118,11],[9,62],[23,26],[65,-7],[126,-55],[45,-45],[67,-42],[36,-49],[148,-92],[108,-9],[53,41],[66,-43],[35,-49],[69,-26],[70,-14],[53,35],[138,11],[172,52],[103,-12],[117,-34],[83,-87],[70,-49],[42,-48],[69,-50],[145,-134],[51,-78],[91,-106],[90,-44],[49,-111],[39,-50],[96,-186],[109,-131],[73,-131],[140,-84],[55,-139],[94,-17],[41,-21],[49,-58],[67,-33],[88,9],[97,-6],[78,27],[186,-52],[29,-26],[38,-59],[68,-220],[40,-244],[20,-186],[46,-145],[26,-273],[21,-86],[2,-66],[18,-15],[12,-183],[-5,-74],[-17,-97],[1,-70],[-10,-79],[18,-87],[0,-69],[-24,-84],[-32,-220],[-83,-364],[-79,-209],[-110,-216],[-72,-112],[-28,-12],[-24,-89],[-73,-159],[-73,-104],[-75,-180],[-102,-74],[-57,-57],[-73,-104],[-67,-163],[-14,-21],[-25,12],[1,-83],[-58,-131],[-17,17],[15,59],[-17,10],[-34,-99],[12,-72],[-25,-109],[-95,-311],[-115,-261],[-27,-81],[-95,-176],[-70,-85],[-42,7],[-11,135],[-55,82],[-16,15],[-23,-87],[-19,-24],[-28,-5],[30,-38],[8,-44],[-30,-87],[-1,-80],[-53,-87],[-31,-64],[-15,-81],[-10,-75],[23,21],[20,-39],[-22,-100],[2,-162],[-5,-37],[17,-40],[18,68],[10,-19],[-50,-434],[20,-196],[7,-221],[23,-217],[27,-208],[-35,-225],[-44,-221],[-26,-181],[-17,-195],[-17,-93],[-5,-96],[19,-227],[7,-43],[-53,-102],[-58,-49],[-32,-49],[-71,-182],[-38,-270],[-1,-144],[18,-300],[-14,-123],[-22,-82],[-26,-54],[-68,-64],[-60,-158],[-26,-165],[-42,-61],[-8,-92],[-34,-101],[-86,-149],[-56,-43],[-27,-42],[-17,-87],[-54,-144],[-40,-186],[10,-64],[15,-225],[-5,-55],[-53,-59],[-198,-111],[-53,-46],[-118,-189],[-7,-44],[4,-64],[20,-36],[-20,-40],[-24,-71],[-34,4],[-198,0],[-107,-22],[-55,4],[-53,45],[-9,37],[16,55],[-9,33],[-30,-1],[-32,-16],[-5,-33],[20,-100],[-13,-37],[-62,-4],[-71,-34],[-87,-14],[-70,-24],[-33,30],[33,16],[46,-8],[50,26],[-12,30],[-70,38],[-78,-23],[-44,-47],[-94,5],[-116,-35],[-19,-36],[3,-70],[23,-15],[22,-32],[-42,-42],[-123,-32],[-113,-136],[-48,-16],[-42,-60],[-4,-51],[-14,-31],[-27,-1],[-59,28],[-77,0],[-55,-22],[-284,-219],[-102,-88],[-116,-178],[-196,-201],[-103,-120],[-20,-31],[-48,-26],[13,-21],[22,-2],[-9,-70],[-41,-47],[-77,-125],[-17,9],[24,65],[-37,2],[-56,24],[-24,-27],[13,-64],[-21,-28],[-38,-3],[-34,8],[-38,47],[17,-86],[80,-20],[33,-20],[13,-33],[-62,-152],[-52,-20],[22,-22],[16,-42],[-18,-170],[-26,-32],[-15,-1],[-15,-29],[42,-96],[-3,-78],[-8,-65],[-1,-63],[27,-122],[10,-125],[17,-96],[-18,-48],[10,-75],[-30,-129],[15,-186],[-6,-175],[-12,-91],[-19,-72],[-45,-92],[-1,-93],[-97,-86],[-106,-120],[-99,-142],[-106,-200],[-123,-305],[-115,-435],[-138,-329],[-55,-118],[-75,-133],[-99,-154],[-133,-155],[-146,-138],[-52,-62],[-51,-87],[-13,36],[11,59],[-9,103],[30,11],[44,-37],[38,49],[53,16],[101,151],[75,56],[42,95],[7,51],[-1,103],[24,26],[54,-9],[11,30],[-5,32],[11,71],[73,63],[35,76],[-12,194],[14,8],[30,-30],[14,13],[16,85],[-8,44],[-35,11],[-123,-95],[-41,4],[-6,75],[-60,34],[-23,63],[-7,43],[-21,17],[7,-146],[53,-83],[-38,-72],[-18,-86],[2,-112],[-32,54],[-8,-120],[-36,-46],[-11,-45],[10,-53],[-19,-36],[-91,-97],[-90,-66],[-20,-31],[-23,-150],[-40,-67],[-32,-133],[1,-57],[11,-84],[17,-55],[-27,-37],[-37,-72],[-29,-80],[-71,-304],[-62,-182],[-48,-90],[-68,-94],[-194,-237],[-64,45],[-8,38],[3,85],[0,230],[21,71],[38,40],[78,132],[38,59],[-14,39],[-32,38],[-56,31],[-55,54],[-48,70],[-23,73],[-46,168],[-50,44],[-19,29],[-77,35],[-52,33],[-64,76],[-47,85],[-23,57],[-24,39],[-133,66],[-60,78],[-24,-25],[-35,24],[-35,38],[-39,92],[-9,33],[-36,57],[-47,61],[-30,13],[-16,-47],[-18,-15],[-43,-63],[-29,-22],[-56,-7],[-6,61],[8,107],[-76,146],[-100,126]],[[53230,41464],[-135,181],[-48,56],[-45,4],[-41,-6],[-38,-24],[-28,-84],[-12,-13],[-73,2],[-73,13],[-24,52]],[[54002,44856],[2,99],[59,148],[16,69],[-7,39],[17,138],[43,236],[14,155]],[[54146,45740],[-16,73],[0,51],[33,56],[-56,53],[-29,48],[-39,35],[-41,27]],[[53998,46083],[-83,-52],[-71,-60],[-91,-30],[-74,18],[-22,28],[-11,60],[0,50],[-7,74],[-26,41],[-8,33],[1,83],[7,32],[-16,67],[3,48],[-5,67],[-17,41],[-9,49],[0,48],[-13,48],[-1,53],[11,49],[4,48],[-12,34],[-25,21],[-18,55],[-3,72],[-41,71],[-24,0],[-38,19],[-85,0],[-24,11],[-13,26],[-33,34],[-18,60],[-23,11],[-33,-18],[-24,-55],[-23,-37],[-30,2],[-31,-21]],[[53072,47163],[-70,-6],[-88,39],[-42,14],[-39,-14],[-27,11],[-76,12],[-31,37],[-34,20],[-43,-30],[-59,23],[-12,44],[2,28],[20,67],[-7,41],[3,37]],[[52569,47486],[11,69],[-12,143],[31,96],[-6,63],[26,92],[-1,94]],[[52618,48043],[-13,55],[-18,32],[7,22],[-10,45],[7,21],[-10,39],[-28,23],[-12,95],[2,39],[-52,120],[-15,89],[28,10],[31,67],[58,24],[11,28],[-116,164]],[[52488,48916],[142,462],[9,19],[27,7],[-6,88],[-22,2],[25,126],[65,316],[9,23],[25,22],[-25,22],[-15,42],[-83,314],[-4,69],[-18,42],[-32,-14],[-37,14],[-92,104],[-61,56],[-21,34],[-9,107],[-19,118],[-8,146],[4,35],[51,111],[5,105],[-2,39],[-34,-16],[-49,-14],[-181,10],[-205,12],[-320,19],[-13,255],[-15,294],[-124,235],[-23,31],[133,6],[-11,328],[-17,33],[-15,106]],[[51522,52624],[-10,60],[-27,48],[-6,55],[5,36],[15,23],[10,56],[-8,57],[-36,103],[-38,31],[-55,56],[-83,72],[-70,50],[-146,-26],[-41,-10],[-28,11],[-92,0],[-36,38],[-31,45],[-64,114],[-10,58],[-25,18],[-38,-7],[-38,8],[-144,96],[-34,-2],[-30,30],[-78,103],[-22,95],[-21,12],[-28,-10],[-30,-29],[-41,20],[-51,52],[-52,60],[-45,28],[-42,6],[-65,-42],[-53,17],[-84,16],[-71,30],[-40,131],[-42,33],[-34,40],[-40,61],[-20,20],[-70,38],[-4,39],[-15,63],[-23,61],[-32,-16],[-11,38],[6,44],[-13,46],[-33,49],[-17,50],[-2,51],[-7,35],[-20,48]],[[49362,54833],[-2,43],[10,52],[20,59],[-4,92],[-30,124],[-16,89],[-3,55],[4,41],[18,40],[36,96],[6,74],[-11,84],[-2,64],[8,43],[-12,58],[-25,54],[-41,-14],[-29,-45],[-34,-8],[-30,28],[-94,-12],[-146,-28],[-58,-30],[-76,-22],[-67,-52],[-164,-205],[-34,-29],[-39,-4],[-22,-29],[-36,-22],[-72,-81],[-36,-64],[-24,-59],[-27,-2],[-21,16],[-68,-8],[-34,-20],[-38,-57],[-46,-103],[-20,-29],[-37,-31],[-97,-63],[-24,-2]],[[47945,54926],[-21,-7],[-18,17],[-6,37],[-28,24],[-66,11],[-98,27],[-100,5],[-92,-4],[-71,15],[-52,2],[-45,-36],[-67,-46],[-30,-11],[-44,4],[-25,23],[-36,54],[-47,-44],[1,296],[2,530],[18,40],[12,43],[-14,59]],[[47118,55965],[3,54],[22,73],[-41,-28],[-16,-28],[-37,-37],[-24,-37],[-30,-31],[-37,-67],[-31,-37],[-31,-24]],[[46896,55803],[-53,-79],[-44,-15],[-115,-13],[-248,2],[4,111],[-37,49],[-3,60],[-22,91],[-27,33],[-97,40],[-90,29],[-86,2],[-84,-3],[103,203],[-2,89],[-41,77],[-57,113],[-43,46],[-24,60],[-1,61],[-81,93],[0,33],[-27,75],[0,32],[-31,87],[-40,58],[1,29],[18,14],[5,65],[-44,30],[-31,59],[-38,48],[-9,20],[19,35],[-2,89],[31,4],[16,16],[45,10],[13,18],[-2,32],[-15,63],[-15,26]],[[45742,57695],[-5,39],[20,121]],[[45757,57855],[28,50],[84,108],[75,73],[36,7],[28,27],[17,41]],[[46025,58161],[5,46],[-4,39],[-31,131],[-12,40],[31,115],[41,100],[38,108],[9,97],[27,207],[-5,28],[9,25],[23,20],[58,18],[39,40],[60,76],[50,80],[41,26],[75,74],[43,47],[60,49],[139,24],[36,23],[52,9],[35,25],[39,1],[74,25],[25,39],[21,45],[29,40],[33,10],[38,-7],[45,1],[54,12],[26,-31],[12,-37],[33,-37],[48,10],[32,-33],[35,23],[3,45]],[[47391,59714],[7,25],[43,376],[50,448],[28,243],[50,448],[32,280],[18,139],[8,123],[7,35],[-21,72],[1,65],[-41,57],[-17,84],[-17,52],[13,57],[-9,60],[-24,49],[-34,21],[-35,50],[-41,44],[-52,85],[-11,40],[0,109],[7,390],[55,8],[51,12],[58,40],[15,-3],[48,39],[23,10],[49,-55],[23,1],[10,-18],[47,6],[9,16],[-10,38],[4,28],[1,77],[-13,24],[-28,81],[-44,34],[-34,-17],[-13,13],[-65,11],[-41,-10],[-35,13],[-23,-13],[1,452],[21,-2],[26,20],[39,3],[29,22],[48,-9],[33,-22],[32,-3],[276,0],[216,-1],[-34,87],[16,78],[11,21],[27,-22],[42,-117],[19,-24],[49,5],[26,21],[45,92],[44,78],[47,51],[43,6],[21,-21],[100,-267],[12,-61],[1,-149],[-2,-133],[12,-22],[82,31]],[[48722,63515],[192,-280],[35,-38],[20,-10],[104,23],[27,17],[80,89],[56,32],[50,-40],[18,-57],[-17,-67],[3,-42],[36,3],[48,123],[42,44],[40,63],[29,60],[33,35],[50,43],[40,26],[37,-3],[28,28],[61,96],[17,15],[35,-4],[43,6],[43,51],[39,63],[20,105],[14,93],[26,34],[56,17],[70,49],[48,51],[46,11],[14,13],[16,47],[8,82],[-6,50],[-84,15],[-55,0],[-91,13],[-43,20],[-11,30],[17,103],[-12,90],[-46,142],[-32,139],[-4,97],[3,169],[-23,53],[-126,165],[-44,78],[-14,54],[-50,99],[13,31],[28,-2],[25,-26],[22,-55],[16,-12],[138,0],[27,-9],[31,-42],[21,-64],[22,-32],[118,2],[41,6],[54,-33],[63,35],[37,-15],[68,-115],[39,-49],[33,-64],[49,-1],[39,56],[11,186],[12,54],[20,15],[24,2],[59,67],[27,13],[111,-41],[30,19],[113,50],[115,63],[32,79],[48,22],[38,58],[76,-8],[43,21],[16,28],[26,78],[71,60],[26,37],[23,46],[10,39],[0,32],[-29,118],[-31,26]],[[51363,66285],[39,14],[33,-20],[50,-3],[22,15],[32,-8],[40,41],[43,-13],[27,-66],[38,-43],[-11,-122],[-7,-116],[-16,-51],[-24,-48],[-10,-45],[16,-16],[64,-6],[24,-15],[32,-3],[56,-66],[1,-19]],[[51901,71772],[-12,-14],[-39,28],[-13,33],[-2,107],[24,10],[45,-84],[26,-31],[-29,-49]],[[127066,66075],[48,0]],[[127114,66075],[13,-23],[25,-81],[17,-81],[5,-124],[21,-53],[-35,-23],[-60,30],[-24,134],[-10,76],[0,145]],[[127066,66075],[-36,-30],[-69,-71],[-16,-26],[6,-36],[13,-141],[21,-49],[-4,-27],[-20,-51],[11,-10],[-14,-68],[-22,-50],[-31,-41],[-20,-10],[-41,62],[-41,100],[-41,4],[-14,29],[-1,35],[-27,86],[-24,34],[-45,46]],[[126651,65861],[49,-1],[52,11],[54,37],[52,45],[44,51],[40,58],[43,45],[67,53],[23,-4],[-9,-81]],[[116990,81992],[-23,-104],[7,-37],[27,-45],[36,-35],[47,-3],[43,14],[17,-6],[40,-111],[-22,-53],[-17,-80],[32,-87],[3,-42],[-10,-28],[-23,-13],[-67,-2],[-73,-35],[-67,3],[-26,42],[-13,0],[-60,-54],[-66,10],[-120,-18],[-50,-4],[-51,6],[-26,11],[-92,65],[-61,-30],[-35,-64],[-78,-22],[-77,-15],[-66,12],[-1,30],[-27,24],[-31,5],[-61,31],[-79,-22],[-46,34],[-79,67],[-10,72],[-41,77],[9,29],[52,56],[28,116],[34,37],[33,52],[25,83],[102,172],[36,71],[24,33],[50,35],[42,21],[29,47],[35,27],[36,11],[53,-6],[105,-40],[6,-19],[-12,-68],[8,-27],[53,-7],[66,6],[37,-5],[82,-32],[49,-39],[25,3],[64,67],[20,5],[41,-39],[102,-49],[16,-20],[-4,-113]],[[88403,50274],[-15,-84],[25,-88],[44,-70],[23,-65],[23,-81],[29,-63],[88,-145],[21,-102],[55,-99],[9,-33],[-4,-67],[57,-200],[37,-118],[31,-21],[101,-125],[88,-100],[102,-68],[76,-45],[37,-32],[19,-32],[15,-60],[10,-171],[81,2],[67,-6],[32,-33],[-2,-44],[5,-120],[-7,-57],[-9,-150],[11,-33],[65,-104],[27,-68],[29,-103],[31,-46],[58,-12],[151,-43],[93,-39],[74,-41],[31,-10],[20,-21],[-10,-90],[12,-54],[28,-33],[56,-10],[55,-80]],[[90172,47210],[-102,-13],[-50,-45],[-29,-82],[-45,-59],[-63,-38],[-65,-26],[-70,-15],[-74,-70],[-78,-125],[-40,-79],[-2,-32],[-17,-28],[-34,-24]],[[89503,46574],[-19,-29]],[[89484,46545],[-4,-33],[-18,-16],[-32,2],[-22,-25],[-12,-50],[-28,-30],[-43,-11],[-37,-28],[-31,-46],[-24,-23],[-17,-1],[-26,-37],[-42,-88],[-66,-374],[-93,-107],[-50,-82],[-22,-49],[-23,-21],[-115,-41],[-94,-53],[-13,-28],[-13,-102],[-36,-147],[-29,-109],[-18,-94],[-33,-117],[-28,-40]],[[88515,44795],[-32,-36],[-42,-18],[-57,-11],[-93,2],[-56,-42],[-52,-2],[-150,47],[-30,4],[-59,77],[-96,5],[-33,17],[-96,116],[-64,63],[-57,37],[-53,17],[-51,-15]],[[87494,45056],[-54,-25],[-31,-32],[-31,-61],[-26,-96],[-9,-58],[-29,-124],[-39,-149],[-39,-75],[-33,-28],[-110,-118],[-54,-134],[-35,-38],[-76,-30],[-19,-22],[-22,-67],[-40,-33],[-82,15],[-165,-14],[-87,30],[-56,-28],[-24,19],[-18,56]],[[86415,44044],[-10,112],[3,95],[56,125],[25,70],[-9,173]],[[86480,44619],[-36,127],[-43,169],[-59,188],[-18,51],[-37,82],[-136,155],[-21,21]],[[86130,45412],[0,368],[-1,399],[0,399],[0,399],[0,368],[219,0],[209,0],[3,27],[0,408],[0,284],[-1,284],[0,284],[0,284],[0,284],[-1,284],[0,425],[111,8],[336,75],[193,58],[275,74],[52,7],[34,-20],[69,-141],[44,-109],[8,-46],[29,3],[23,17],[71,108],[14,28],[45,52],[55,54],[99,69],[23,-8],[51,-44],[112,131],[51,30],[132,23],[18,-4]],[[87370,70266],[31,-86],[14,-31],[126,-204],[24,-49],[62,-149],[38,-100],[44,-144],[4,-79],[-6,-67],[-8,-190],[-12,-55],[-55,-102],[-2,-47],[11,-38],[27,-35],[-6,-89],[20,-34],[41,-24],[104,-15],[55,-13],[43,-18]],[[87925,68697],[20,-9],[11,-31],[-17,-102],[12,-65],[36,-54],[36,-23],[35,-13],[120,-33],[51,-38],[66,-120],[83,-109],[20,-58],[-3,-53],[-25,-64],[4,-26],[82,-130],[80,-73],[139,-114],[63,-76],[22,-58],[35,-63],[83,-102],[-23,-125],[20,-77],[29,-49],[11,-64],[29,-79],[34,-36],[57,-13],[31,-37],[62,-63],[61,-54],[26,-38],[30,-72],[7,-40],[1,-84],[11,-106],[32,-72],[31,-53]],[[89327,66221],[-124,61],[-41,-9],[-65,-76],[-20,-9],[-82,16],[-198,60],[-152,57],[-46,21],[-81,20],[-54,-39],[-50,-135],[-15,-26],[-79,-40],[-38,11],[-91,-37],[-142,56],[-50,-11],[-40,-28],[-163,-96],[-72,-32],[-68,-48],[-46,-27],[-45,0],[-85,51],[-53,5],[-55,-14],[-47,-53],[-19,-39],[-40,-101],[-48,-166],[-36,-51],[-222,83],[-95,19],[-64,-25],[-81,46],[-35,8],[-17,-14],[-45,21],[-73,56],[-70,24],[-63,-8],[-38,19],[-31,54],[-40,101],[-72,100],[-97,80],[-60,60],[-24,41],[-52,22],[-80,4],[-76,-39],[-110,-125],[-102,-256],[-57,-98],[-45,-26],[-12,-61],[23,-98],[6,-113],[-16,-192],[6,-140]],[[85540,65085],[-25,22],[-23,66],[-11,13],[-67,-29],[-68,-57],[-21,36],[-100,2],[-31,21],[-116,54],[-20,18],[-23,-2],[-60,-47],[-32,-13],[-96,-29],[-102,-14],[-39,-1],[-27,-21],[-18,-29],[-32,-177],[-8,-31],[1,-45],[-9,-142],[4,-45],[-64,-201],[-58,-190]],[[84495,64244],[-21,65],[-12,77],[-5,87],[-16,121],[10,46],[-8,48],[-68,131],[-56,22],[-137,229],[-142,258],[-28,84],[-12,48],[35,5],[9,32],[-21,66],[-11,84],[-17,51],[-56,79],[-53,60],[-17,31],[-9,44],[-21,278],[-9,79],[-29,51],[-4,20],[9,111],[14,39],[0,257],[-17,35],[-32,1],[-31,85],[4,33],[31,53],[20,20],[60,41],[18,21],[52,192],[52,132],[23,27],[53,194],[21,100],[17,40],[57,66],[44,115]],[[84192,67902],[47,-6],[48,-19],[62,-9],[48,23],[32,45],[150,77],[11,62],[51,61],[12,-17],[16,-64],[34,-64],[51,-70],[14,4],[31,53],[78,33],[20,15],[56,77],[66,50],[39,18],[68,51],[48,-7],[77,8],[129,25],[93,8],[47,9],[12,11],[18,74],[49,53],[68,112],[45,95],[42,80],[-19,42],[-76,84],[1,37],[68,73],[42,15],[110,-3],[94,8],[21,-2],[73,20],[50,18],[52,40],[116,-4],[96,103],[28,19],[16,31],[45,41],[51,85],[40,76],[11,53],[110,182],[38,-3],[19,22],[43,121],[13,23],[46,21],[21,36],[19,53],[0,66],[-9,79],[28,48],[84,65],[33,60],[49,2],[34,48],[58,39],[53,32],[56,-14],[102,-40]],[[51774,93257],[-58,-25],[-49,2],[-35,33],[79,-10],[63,0]],[[48770,93774],[-58,-37],[23,94],[18,29],[25,-10],[-8,-76]],[[51269,94336],[-22,5],[-27,28],[21,28],[49,-7],[-21,-54]],[[45785,94403],[-52,-14],[-18,6],[57,68],[65,16],[-52,-76]],[[45840,94322],[-33,-14],[-57,13],[-62,-18],[29,51],[71,32],[71,98],[20,2],[-39,-164]],[[46934,95299],[-30,19],[93,67],[-14,-53],[-49,-33]],[[51207,94653],[15,-5],[58,34],[29,-26],[-73,-46],[29,-31],[-35,-30],[-17,-33],[14,-31],[55,31],[54,-7],[46,25],[98,120],[5,16],[-106,-25],[-12,16],[69,73],[-5,39],[35,61],[55,56],[34,18],[23,-28],[7,-52],[58,7],[57,-10],[41,-22],[7,-33],[-37,-65],[46,-38],[-6,-16],[-75,-43],[-42,-42],[-39,-53],[-78,-62],[-124,-44],[-39,0],[-46,14],[-46,-4],[-46,-16],[-86,-6],[-54,66],[-17,33],[-20,157],[6,82],[31,77],[46,51],[27,41],[159,344],[48,47],[61,78],[55,24],[35,-5],[-7,-56],[40,-108],[-22,-107],[-43,-139],[-11,-77],[6,-23],[-35,-69],[-73,-55],[-72,-33],[-83,-70]],[[50042,95018],[32,8],[23,57],[64,-15],[33,-26],[38,3],[36,-33],[67,-26],[71,3],[109,16],[13,6],[111,14],[112,6],[39,-15],[21,-31],[-63,-46],[-64,-54],[-89,-52],[-11,-26],[9,-131],[-91,-7],[-59,24],[-11,46],[4,39],[-25,50],[-27,-4],[-43,44],[-34,-12],[-33,-25],[-2,-33],[-126,39],[-31,15],[-39,41],[-30,54],[-26,29],[-68,-3],[-40,15],[2,95],[-12,26],[-43,22],[-66,7],[-6,35],[21,54],[56,92],[29,37],[70,75],[5,-104],[-46,-95],[80,-95],[17,-47],[-18,-44],[41,-28]],[[50859,95586],[34,-43],[-50,-3],[-25,11],[36,133],[42,30],[86,87],[34,27],[32,10],[34,-6],[-35,-51],[-45,-3],[-44,-43],[-29,-47],[-35,-27],[-24,-33],[-11,-42]],[[54169,95695],[-21,-24],[-19,22],[40,71],[6,31],[29,-8],[-35,-92]],[[49741,96005],[-11,-51],[-37,-43],[-17,29],[-1,49],[42,2],[24,14]],[[24362,96609],[-35,-3],[-28,123],[49,-41],[-9,-15],[28,-36],[-5,-28]],[[45348,93998],[61,26],[128,102],[95,37],[123,108],[89,20],[17,24],[23,121],[41,87],[50,74],[40,102],[73,65],[111,54],[102,119],[56,36],[54,26],[23,49],[34,27],[89,57],[99,15],[100,46],[77,25],[47,44],[68,23],[204,126],[57,58],[73,121],[64,61],[23,65],[92,106],[96,139],[47,100],[71,56],[137,159],[74,63],[30,7],[84,57],[52,58],[83,59],[150,73],[142,87],[191,75],[223,113],[181,61],[127,9],[155,28],[55,-3],[241,-49],[116,-61],[131,-127],[20,-34],[3,-47],[-69,23],[-19,-24],[72,-79],[-3,-98],[-41,-88],[-122,-44],[-32,-35],[-25,-57],[-25,-22],[-59,-26],[-33,-37],[-96,-59],[-44,-7],[-49,14],[-120,56],[-75,54],[-67,-60],[-71,10],[-33,-14],[-54,15],[-110,-67],[32,-8],[87,39],[30,-5],[64,-50],[156,-54],[40,-35],[39,-114],[25,-19],[53,12],[60,57],[50,30],[98,25],[-19,-38],[74,3],[73,-50],[-27,-36],[-37,-72],[-26,-140],[-75,-94],[-100,-93],[55,-36],[64,28],[43,-2],[48,-18],[-15,-71],[-17,-49],[38,-132],[40,-19],[15,-111],[21,-60],[-3,-49],[39,-31],[7,-49],[142,-14],[29,-19],[98,-19],[37,-41],[-97,-60],[78,-43],[74,-70],[58,14],[26,-3],[65,-44],[28,-41],[79,21],[85,-4],[91,-25],[-21,-64],[70,8],[45,-27],[26,30],[88,46],[113,96],[14,-12],[19,-95],[44,-41],[51,-10],[71,32],[28,-27],[33,-52],[32,-68],[-2,-25],[-41,-21],[-36,-30],[152,-13],[33,-40],[-30,-40],[-28,16],[-51,-15],[-44,-35],[-48,-19],[-31,-3],[-64,-41],[-33,-7],[-100,-62],[-103,-41],[-107,-65],[-109,-40],[-114,-49],[-53,-3],[-65,-48],[-32,7],[-33,-8],[-38,10],[-6,-31],[6,-46],[-28,-45],[-65,5],[-56,41],[-14,41],[-33,28],[-19,-40],[0,-29],[-24,-41],[-29,70],[-51,-26],[-23,-73],[27,-77],[-25,-30],[-19,8],[-39,-82],[-47,-30],[-49,-84],[-57,-64],[-16,-43],[-97,-98],[-64,0],[-40,-41],[-7,-83],[-36,9],[-23,-30],[-36,24],[-42,-13],[-32,18],[-42,121],[-22,42],[-40,14],[-25,-50],[-38,49],[-29,186],[0,44],[40,156],[100,140],[-21,32],[60,22],[41,3],[41,54],[-61,-22],[31,44],[324,251],[66,42],[130,53],[18,34],[33,3],[-12,-50],[2,-69],[51,-17],[43,-64],[-20,87],[38,49],[149,65],[124,7],[39,30],[-106,21],[-125,-11],[-78,22],[-108,-14],[-113,14],[-35,-19],[-28,-41],[-72,35],[37,70],[115,105],[70,91],[36,55],[-72,-20],[-24,42],[-45,32],[21,-69],[-80,-122],[-51,-9],[-69,-57],[-97,-49],[-113,-95],[-146,-79],[-31,-1],[-66,66],[1,-42],[-16,-20],[-46,-27],[-82,-65],[-30,33],[-85,-42],[-71,-11],[-20,55],[-25,8],[-46,-9],[-18,17]],[[48614,94113],[-53,22],[-29,-33],[-22,14],[-45,71],[19,71],[-28,67],[29,40],[-3,50],[-23,11],[-47,2],[-82,56],[-6,47],[10,34],[4,76],[-8,18],[-5,380],[-4,407],[-125,133],[-60,50],[-32,6],[-29,-27],[-44,-21],[-81,-23],[-69,-35],[-47,6],[-48,43],[-7,45],[6,62],[-83,25],[-166,-265],[-163,-260],[-26,-186],[-48,-69],[-30,-64],[-24,-134],[3,-106],[-48,-72],[-5,-45],[-76,-65],[-45,-65],[5,-85],[-47,-17],[-17,-27],[1,-38],[-27,-34],[-26,49],[-18,3],[-58,-52],[-28,-1],[-55,20],[-39,-62],[-43,-134],[-358,-1],[-358,-1],[-359,0],[-279,-1]],[[45368,93998],[-20,0]],[[23218,97027],[12,-63],[-72,22],[10,59],[50,-18]],[[54028,97190],[-100,-64],[-33,56],[32,10],[24,-20],[50,42],[27,-24]],[[54227,97299],[48,-58],[-111,-49],[-20,3],[-1,46],[13,40],[25,-21],[27,43],[19,-4]],[[24053,97150],[-90,40],[-41,32],[-26,36],[-49,35],[3,27],[87,-33],[49,-42],[67,-95]],[[22981,97202],[-44,6],[-30,19],[-54,54],[18,45],[-12,38],[43,24],[37,-20],[38,-68],[10,-49],[-6,-49]],[[50907,96846],[-180,-11],[-143,44],[-107,20],[-104,38],[-226,121],[-47,94],[-44,48],[-46,38],[-239,119],[-20,41],[49,27],[55,13],[49,-2],[160,-46],[201,-41],[88,-31],[99,-46],[97,-57],[215,-151],[39,-12],[97,-74],[35,-56],[17,-45],[-45,-31]],[[23698,97497],[-21,73],[17,43],[21,-21],[12,-66],[-29,-29]],[[23609,97544],[-33,23],[-42,127],[24,71],[46,-17],[24,-35],[28,-83],[-47,-86]],[[53606,97978],[-41,1],[11,41],[33,15],[24,-18],[-27,-39]],[[22742,97923],[213,-87],[215,-43],[157,-51],[96,-16],[57,-29],[27,-43],[46,-103],[35,-66],[71,-114],[57,-81],[13,-32],[-11,-30],[43,-79],[81,-70],[63,-34],[134,-55],[82,-54],[75,-97],[29,-93],[55,-88],[55,-169],[17,65],[30,-3],[10,-45],[35,-105],[-22,-34],[-48,15],[-39,-58],[-25,-8],[-138,37],[-86,35],[-112,55],[-135,57],[-77,39],[-109,75],[-6,43],[86,93],[37,50],[21,79],[-16,-2],[-13,-42],[-26,-45],[-103,-16],[-84,5],[-42,-40],[-36,9],[-50,53],[-73,43],[55,33],[25,33],[-37,10],[-46,53],[-50,-20],[-14,28],[20,64],[-35,-8],[-35,37],[-29,-4],[-33,19],[-26,-43],[-49,47],[-35,-34],[-21,13],[-6,87],[9,33],[43,20],[122,21],[-81,8],[-50,41],[-27,-1],[-29,31],[-39,79],[-26,19],[-69,28],[-31,-43],[-60,-2],[-22,21],[-18,57],[13,41],[-6,34],[-25,27],[-17,-47],[-26,-13],[-51,77],[-89,0],[-41,-29],[-40,5],[15,58],[-10,71],[-48,23],[25,69],[32,18],[81,5],[66,-36],[-17,76],[1,42],[-97,8],[9,-50],[-58,-26],[-83,0],[-33,15],[-57,62],[-36,61],[2,33],[45,58],[60,21],[79,2],[89,-28],[222,-125]],[[53639,98547],[-54,-103],[-63,-21],[-130,-21],[-5,-47],[19,-43],[54,6],[25,-12],[13,-42],[-6,-68],[-31,-88],[-39,-48],[-50,-40],[-18,-32],[-7,-58],[-26,-46],[-80,-117],[-31,-26],[-13,-76],[-24,-44],[-66,-103],[-24,-65],[-2,-58],[-41,-82],[17,-38],[-5,-67],[28,26],[63,95],[47,57],[54,45],[23,55],[32,53],[30,18],[24,-37],[-18,-73],[102,42],[23,-3],[47,-37],[39,4],[62,22],[1,-42],[-24,-31],[-58,-44],[-138,-87],[26,-18],[47,-6],[-10,-63],[-64,-85],[97,40],[59,-56],[82,19],[49,19],[8,-75],[33,22],[-1,70],[32,-22],[3,-51],[-25,-99],[-36,-69],[3,-62],[36,30],[3,55],[30,31],[64,42],[19,-26],[31,34],[55,27],[28,23],[60,71],[47,27],[-5,-42],[8,-89],[63,58],[20,-4],[134,16],[41,-11],[105,-73],[22,-40],[-2,-85],[-80,-74],[-22,-29],[-15,-47],[-25,-26],[-111,-70],[26,-2],[107,18],[-15,-30],[-32,-20],[-2,-23],[34,-15],[44,7],[37,-11],[-33,-72],[-8,-34],[-40,-29],[-78,-46],[116,21],[26,32],[40,11],[40,-20],[61,56],[58,0],[24,11],[70,56],[13,-17],[3,-44],[-17,-63],[-33,-55],[-38,-26],[-47,-6],[-31,-43],[-54,-43],[-34,-17],[22,-24],[7,-45],[-11,-15],[-58,-14],[-39,-40],[61,11],[-2,-40],[-16,-33],[-72,-85],[10,-50],[31,-53],[70,8],[43,57],[95,177],[85,49],[71,55],[21,-37],[-36,-45],[-67,-152],[-18,-54],[-10,-56],[3,-99],[20,-39],[77,68],[30,46],[40,105],[30,-17],[25,-137],[-13,-85],[-98,-225],[10,-40],[0,-50],[-32,-108],[-46,-96],[-42,-24],[-54,49],[-39,-4],[-66,-55],[-23,4],[-12,29],[15,193],[-13,37],[15,86],[-25,3],[-97,-138],[-64,-70],[-29,-13],[-42,42],[8,60],[27,83],[53,122],[44,87],[8,37],[-22,49],[-17,94],[-21,77],[-25,35],[-62,38],[-12,-10],[-7,-52],[-73,-150],[-13,-65],[-23,-41],[-23,15],[34,77],[-81,-89],[-89,-16],[-100,-147],[-4,-49],[-18,-40],[-49,-73],[-27,-25],[-36,-4],[-56,10],[-53,-23],[-58,-10],[-40,14],[-30,29],[-2,31],[16,31],[34,38],[99,33],[51,29],[56,68],[73,132],[93,47],[46,38],[32,49],[-65,-14],[-56,26],[-52,-6],[-73,8],[-11,-13],[-19,-98],[-61,-25],[-85,23],[-38,22],[-94,-21],[-1,17],[93,47],[10,136],[-32,3],[-44,-19],[-56,7],[-31,-72],[-45,-11],[-57,-27],[-113,-17],[-23,-19],[-76,7],[-225,39],[-80,-4],[-97,24],[-18,11],[-135,-4],[-40,5],[-2,38],[-74,-55],[-45,-18],[-141,-32],[-76,-7],[-44,22],[-17,22],[-26,72],[-18,90],[9,47],[30,43],[134,114],[107,115],[46,61],[44,21],[72,50],[-68,-1],[-99,20],[-95,-14],[-96,0],[-1,26],[45,48],[96,83],[-28,-67],[27,-31],[55,-5],[12,16],[20,89],[41,103],[23,74],[39,56],[93,-15],[59,-52],[-21,62],[21,72],[30,34],[-50,1],[-41,20],[-12,32],[2,57],[14,34],[32,44],[40,30],[23,-7],[45,-41],[25,25],[-42,63],[-13,70],[92,226],[45,121],[62,185],[58,98],[40,0],[-26,65],[24,32],[47,30],[34,49],[21,57],[-13,50],[25,11],[74,82],[24,90],[29,41],[71,46],[133,62],[79,56],[53,-3],[16,-39],[75,-26],[13,28],[-17,33],[14,14],[63,12],[27,-41]],[[22428,98503],[-24,-12],[-48,38],[-24,80],[11,28],[39,29],[50,-85],[-4,-78]],[[53681,98792],[-25,8],[31,57],[31,9],[-8,-46],[-29,-28]],[[43334,98836],[-58,0],[-53,40],[133,62],[27,-19],[-25,-55],[-24,-28]],[[21091,98843],[-32,36],[-6,61],[9,34],[37,-38],[-8,-93]],[[22237,99148],[-33,-9],[14,59],[-10,61],[-1,95],[32,60],[50,1],[0,-30],[-32,-196],[-20,-41]],[[21992,99224],[-13,-32],[-79,99],[-43,81],[-7,35],[35,13],[83,-90],[23,-43],[1,-63]],[[21830,99560],[-41,22],[-39,73],[21,32],[46,-85],[13,-42]],[[42754,99390],[-30,-10],[-90,19],[-147,63],[-210,74],[-71,37],[-15,27],[38,58],[45,37],[220,27],[86,-13],[101,-118],[59,-79],[23,-64],[-9,-58]],[[20779,99702],[44,-65],[13,-58],[-5,-68],[-70,-26],[-36,21],[-11,-33],[41,-34],[36,-43],[50,-8],[67,-30],[-51,-55],[-7,-31],[63,-87],[26,-26],[47,7],[6,-25],[-29,-51],[29,-18],[50,0],[12,-50],[-46,-46],[-86,59],[-38,58],[-22,55],[-27,30],[-80,68],[-122,147],[-31,22],[-32,58],[-8,46],[49,17],[0,29],[-140,51],[-24,50],[77,-6],[134,30],[61,37],[60,-25]],[[22158,99524],[20,-223],[-2,-71],[-28,-46],[-21,-78],[-23,-35],[-23,46],[-2,78],[-13,91],[9,115],[-37,-59],[-30,-4],[-53,58],[-26,46],[-5,48],[-34,51],[-1,37],[40,85],[10,70],[12,27],[27,-3],[99,-67],[46,-46],[35,-120]],[[21893,99648],[-47,-5],[-20,21],[4,49],[26,51],[33,-18],[4,-98]],[[43096,99777],[-44,-5],[-15,33],[43,6],[16,-34]],[[21600,99682],[-37,6],[-94,118],[-66,43],[-45,58],[-46,37],[28,61],[25,-8],[86,-49],[107,-79],[82,-133],[-40,-54]],[[21433,100233],[-44,-64],[-20,-16],[-37,13],[-29,39],[-68,23],[21,28],[66,57],[41,8],[43,-34],[27,-54]],[[20391,100351],[39,-41],[95,26],[36,-21],[41,-84],[4,-56],[-25,-42],[-151,-89],[13,-25],[30,1],[120,22],[15,85],[18,65],[-11,94],[84,5],[52,25],[53,45],[12,-1],[-15,-108],[-51,-101],[-29,-88],[-14,-88],[-3,-145],[-12,-50],[-24,-30],[-144,-53],[-75,4],[-66,48],[-32,33],[24,40],[112,-13],[-102,76],[-76,34],[-23,38],[-6,47],[-60,103],[-20,99],[0,60],[15,96],[31,10],[43,-12],[102,-9]],[[21135,100595],[-11,44],[20,63],[56,-9],[-12,-53],[-53,-45]],[[21287,100798],[35,45],[78,77],[42,56]],[[21442,100976],[5,-55],[-63,-92],[-80,-46],[-17,15]],[[51255,101682],[-85,6],[14,49],[31,15],[52,-29],[-12,-41]],[[43575,101755],[-38,-8],[24,69],[25,105],[33,39],[24,0],[5,-85],[-23,-72],[-50,-48]],[[43079,101798],[-48,5],[13,51],[23,22],[84,40],[56,20],[20,-13],[-23,-41],[-125,-84]],[[43528,101840],[-64,-138],[-40,-128],[-42,26],[57,149],[0,31],[-35,-3],[-80,-168],[-37,-42],[-48,1],[-69,-48],[116,199],[-29,20],[-94,-126],[-53,-48],[-35,14],[-6,28],[91,127],[83,91],[35,57],[20,93],[16,-9],[-19,-94],[-34,-84],[41,13],[29,46],[37,130],[15,95],[26,-36],[38,-20],[19,-46],[50,-22],[9,-54],[15,-17],[-12,-37]],[[43277,102112],[-26,-9],[12,62],[29,-13],[-15,-40]],[[43126,102194],[-33,1],[0,35],[20,27],[31,-16],[-18,-47]],[[50932,102737],[36,-21],[10,-76],[-68,5],[-78,50],[-15,37],[70,22],[45,-17]],[[43191,102710],[-25,-1],[-15,31],[36,32],[4,-62]],[[47738,103771],[-26,-50],[-35,6],[-12,101],[58,17],[15,-74]],[[43042,104280],[-45,-5],[20,41],[34,33],[37,5],[25,-17],[-22,-30],[-49,-27]],[[49785,104695],[-15,-48],[-128,54],[-30,24],[-12,63],[82,10],[103,-103]],[[48137,104607],[-57,9],[12,74],[44,67],[40,74],[24,18],[47,-12],[27,-22],[41,-63],[-10,-40],[-73,-61],[-95,-44]],[[43702,104947],[-60,-8],[25,38],[91,25],[52,-17],[-108,-38]],[[49602,105391],[-112,60],[-130,77],[-17,60],[131,25],[75,0],[71,-16],[52,-48],[-12,-85],[-58,-73]],[[37451,105723],[-17,-1],[-49,53],[53,12],[35,-32],[-22,-32]],[[49516,105748],[31,-5],[48,-77],[-34,-20],[-103,45],[-28,46],[9,45],[61,-2],[16,-32]],[[43265,106119],[34,-19],[77,-96],[7,-43],[-23,-111],[-94,-152],[-29,-68],[-45,-68],[-44,-12],[-34,24],[-84,82],[-49,21],[-31,56],[1,137],[17,68],[92,133],[66,42],[67,-6],[72,12]],[[49605,106221],[133,-5],[42,-45],[-26,-48],[-29,-19],[-48,-5],[-105,26],[-24,26],[50,25],[7,45]],[[45653,106262],[-23,-6],[-86,9],[-106,33],[-54,30],[26,14],[73,-26],[123,-10],[40,-13],[7,-31]],[[47231,106214],[-88,2],[-97,31],[-31,36],[-6,39],[-58,58],[-65,20],[1,43],[130,-26],[69,-23],[99,-51],[66,-82],[9,-27],[-29,-20]],[[42208,106496],[22,-49],[-33,-107],[-38,-54],[-118,-93],[-78,-80],[-193,-135],[-49,-4],[-53,20],[-53,4],[-139,-55],[-27,100],[-61,69],[2,52],[69,64],[156,234],[37,12],[77,-27],[63,-7],[112,50],[106,-6],[97,28],[80,-4],[21,-12]],[[43984,106856],[36,-30],[38,2],[71,-100],[3,-37],[-27,-32],[-85,-41],[-65,-10],[-35,17],[-100,70],[-91,82],[-30,46],[13,19],[117,27],[155,-13]],[[44500,106802],[-45,-6],[-60,15],[-58,30],[-133,97],[100,65],[159,-75],[48,-49],[-11,-77]],[[44085,107219],[-31,-32],[-93,11],[-1,37],[135,15],[-10,-31]],[[40950,108102],[34,-3],[99,133],[48,8],[101,-64],[37,-35],[41,-69],[79,-25],[77,-9],[100,-26],[36,-19],[79,-95],[100,-44],[139,-86],[35,-13],[136,-28],[95,-54],[52,-59],[61,-93],[48,-149],[4,-29],[-23,-36],[-78,-61],[80,-6],[164,37],[100,-27],[42,-2],[36,46],[40,-7],[95,-82],[13,-44],[137,-74],[-18,-28],[-87,-62],[-89,-54],[-105,-80],[-40,-13],[-57,15],[-83,38],[-254,88],[-79,18],[-100,11],[-15,21],[-23,133],[-45,23],[-155,28],[-45,16],[8,72],[-21,22],[-103,-10],[-82,-31],[-38,-29],[-15,-31],[-19,-98],[-29,-42],[-126,-106],[-52,-33],[-71,-19],[-34,-39],[-52,-97],[-54,-57],[-70,-43],[-72,-35],[-119,-40],[-66,-14],[-45,14],[-30,92],[-64,269],[-39,34],[-214,-35],[-118,4],[-117,-60],[-88,-3],[-54,17],[-5,53],[68,110],[62,65],[200,89],[49,30],[24,30],[-9,70],[-35,97],[-8,131],[13,68],[50,163],[17,79],[32,283],[17,81],[49,119],[63,89],[50,36],[62,24],[48,-51],[87,-34],[48,-72],[10,-49],[-52,-53],[-6,-25],[80,-51],[58,-123]],[[41056,108321],[-47,-3],[-64,83],[-60,33],[-28,58],[-17,106],[11,30],[51,7],[40,-12],[106,-150],[39,-95],[-31,-57]],[[41464,108475],[111,-42],[89,-9],[12,-18],[-42,-46],[-21,-1],[-110,43],[-6,-23],[-59,7],[-5,29],[42,32],[-48,22],[-84,-25],[-48,14],[-10,100],[-55,52],[-43,15],[-35,37],[19,46],[123,-37],[74,-35],[107,-75],[-11,-86]],[[41724,108814],[83,-18],[-56,-40],[-66,54],[39,4]],[[30970,109317],[124,-5],[-12,-54],[-57,-25],[-41,43],[-14,41]],[[50528,109352],[-62,11],[86,73],[99,1],[-123,-85]],[[31053,109593],[-45,-25],[-64,44],[11,139],[59,-5],[0,-75],[37,-33],[2,-45]],[[30507,109997],[85,-2],[36,-56],[-15,-14],[-75,32],[-31,40]],[[45816,109859],[-210,-1],[-114,5],[-86,27],[-45,54],[-29,55],[17,57],[141,19],[215,-50],[127,-5],[65,-31],[14,-64],[-2,-60],[-93,-6]],[[30440,110003],[-75,39],[12,36],[55,-37],[8,-38]],[[40229,109826],[-48,10],[-67,42],[-20,39],[26,100],[-48,62],[32,63],[79,80],[57,-12],[50,-43],[14,-30],[0,-76],[16,-102],[-27,-77],[-64,-56]],[[44932,110234],[224,-62],[39,-64],[1,-46],[-28,-77],[17,-149],[-1,-81],[-16,-68],[-32,-54],[-86,-64],[-163,-58],[-116,-15],[-122,-3],[-156,-16],[-71,4],[-63,18],[-65,99],[-29,69],[-36,138],[34,100],[122,168],[88,98],[62,33],[100,27],[83,-6],[131,19],[83,-10]],[[43507,110144],[-35,-8],[-47,37],[9,70],[86,12],[54,-59],[-67,-52]],[[32500,110292],[-69,9],[-114,51],[-37,47],[62,16],[131,-15],[56,-40],[7,-50],[-36,-18]],[[45274,110252],[-34,-4],[-49,43],[-102,49],[-39,35],[13,77],[36,36],[91,-2],[40,-26],[80,-132],[-36,-76]],[[33660,110418],[-181,54],[-2,30],[85,46],[26,36],[80,-18],[46,-52],[-5,-50],[-49,-46]],[[34362,110571],[-64,-54],[-50,40],[-58,-2],[2,144],[20,25],[65,1],[101,-86],[-16,-68]],[[34458,110715],[-10,-41],[-54,11],[-43,49],[38,62],[51,-30],[18,-51]],[[38550,110860],[-35,-8],[-48,54],[-37,3],[13,46],[61,7],[26,-30],[20,-72]],[[43409,110598],[-65,9],[-19,45],[70,88],[42,27],[106,33],[41,69],[61,19],[-11,44],[40,32],[113,11],[45,-58],[-25,-28],[-106,-82],[-27,-46],[-79,-90],[-32,-24],[-154,-49]],[[38676,110998],[10,-44],[-39,-58],[-42,-7],[-55,74],[74,41],[52,-6]],[[44363,110806],[-94,-4],[-46,39],[-25,56],[26,99],[56,16],[84,-20],[107,-5],[25,-53],[-53,-43],[-44,-64],[-36,-21]],[[33951,110982],[-51,31],[26,36],[-55,33],[19,25],[92,-25],[42,-55],[-73,-45]],[[36388,111105],[57,-47],[-8,-60],[-42,-48],[-101,-2],[26,38],[-14,94],[-49,2],[2,-65],[-35,-66],[-40,28],[-4,54],[26,68],[26,27],[72,12],[84,-35]],[[17640,111107],[-36,-26],[-71,41],[65,36],[90,-23],[-48,-28]],[[48274,111082],[-124,28],[-8,25],[100,43],[69,-2],[32,-31],[-69,-63]],[[43918,111204],[26,-53],[-31,-22],[-115,-39],[-70,-34],[-83,0],[-54,14],[90,81],[76,8],[111,61],[50,-16]],[[43314,111254],[29,-52],[-81,-57],[-142,-15],[-71,17],[40,-77],[-89,9],[-36,40],[-37,-5],[-51,44],[-142,19],[0,23],[54,28],[80,-9],[18,42],[91,3],[38,-45],[67,1],[162,50],[70,-16]],[[35558,111153],[88,22],[106,-84],[49,-30],[78,-27],[170,-88],[50,-60],[100,-164],[86,-87],[72,-44],[91,40],[45,-46],[-85,-55],[-95,-8],[-90,-76],[-55,-14],[-105,-69],[-58,-26],[-85,-7],[-176,55],[-110,-8],[-90,11],[-100,57],[-78,33],[-151,46],[-36,72],[-95,-31],[-70,3],[-55,25],[-32,66],[-66,-11],[-14,-37],[-70,0],[-81,37],[-53,82],[47,67],[159,13],[75,12],[81,36],[115,81],[-44,88],[28,26],[-23,32],[68,14],[72,-56],[26,19],[-55,82],[9,87],[81,55],[125,20],[43,-14],[120,-72],[-12,-67]],[[40092,111481],[129,-5],[42,-62],[-94,-28],[-108,24],[-89,5],[-57,58],[93,31],[84,-23]],[[34323,111747],[-135,36],[-25,69],[19,17],[86,-15],[49,-49],[6,-58]],[[45348,93998],[-23,-3]],[[45325,93995],[-41,3],[-60,-23]],[[45224,93975],[-79,-50],[-95,-88]],[[45050,93837],[-168,-192],[-12,-20]],[[44870,93625],[-25,-36],[-118,-78],[-15,-43]],[[44712,93468],[-27,-20],[-93,-109],[-53,-93],[-100,-205],[-109,-2],[-347,2],[-250,2],[-113,-5],[-194,-110],[38,-94],[10,-38],[-3,-119]],[[43471,92677],[16,-31],[2,-31]],[[43489,92615],[19,-26],[28,-49]],[[43536,92540],[-10,-32],[-42,-43],[-59,-37]],[[43425,92428],[-253,-146],[-209,-121],[-337,-82]],[[42626,92079],[-107,-27],[-99,-73]],[[42420,91979],[-201,-150]],[[42219,91829],[-200,-149],[-108,0]],[[41911,91680],[-76,55],[-71,55],[-48,100],[-3,115],[17,76]],[[41730,92081],[16,35],[88,59],[53,75],[86,92]],[[41973,92342],[24,79],[31,194],[4,38],[94,280]],[[42126,92933],[22,67]],[[42148,93000],[-61,433],[-55,384],[-33,237]],[[41999,94054],[-29,183],[-158,119]],[[41812,94356],[-290,208],[53,124],[-5,20],[-58,65]],[[41512,94773],[-64,-5],[-64,-26],[-28,9],[-48,98],[-11,101],[-15,51],[11,41]],[[41293,95042],[-29,32],[-107,-36]],[[41157,95038],[-27,-25],[-26,-3],[-44,60]],[[41060,95070],[-49,65],[-42,183]],[[40969,95318],[-83,56],[-251,167]],[[40635,95541],[-335,223],[-104,67]],[[40196,95831],[-231,148],[-231,147]],[[39734,96126],[-180,115],[-93,54],[-101,-27],[-247,-151],[-38,-19],[-78,-16],[-138,13],[-54,-14],[-40,14],[-42,71],[-99,-13],[-123,10],[-59,-6],[-23,18]],[[38419,96175],[-19,49],[-32,6],[-55,-11],[-76,-62],[-72,-32]],[[38165,96125],[-57,0],[-55,32],[-91,65],[-63,72]],[[37899,96294],[-72,26],[-55,-7],[-21,-36]],[[37751,96277],[-29,0],[-37,110]],[[37685,96387],[-100,67],[-45,25]],[[37540,96479],[-92,37],[-89,6]],[[37359,96522],[-52,-9]],[[37307,96513],[-37,-38],[-43,-17],[-62,-8],[-41,16],[-21,41]],[[37103,96507],[-87,36],[-155,31],[-89,27],[-36,46],[-4,38]],[[36732,96685],[-39,97]],[[36693,96782],[-16,81],[-8,97]],[[36669,96960],[3,32]],[[36672,96992],[-37,32],[-93,14],[-3,-263]],[[36539,96775],[-102,1],[-367,0],[-184,0],[-367,0],[-367,0],[-184,0]],[[34968,96776],[-183,0],[-368,0],[-367,0],[-184,0],[-367,0],[-183,0],[-368,0],[-183,0],[-368,0],[-367,0],[-367,0],[-184,0],[-367,0],[-367,0],[-368,0],[-367,0],[-367,0],[-368,0],[-183,0],[-367,0],[-184,0],[-367,0],[-368,0],[-367,0],[-184,0],[-367,0],[-183,0],[-368,0],[-367,0],[-184,0],[-367,0],[-367,0],[-412,0],[-16,24],[-42,32],[-34,-9],[-20,-47],[-16,0],[-13,44],[16,51],[-30,-6],[-20,18],[2,50],[-16,29],[69,21],[23,22],[-69,18],[-44,-3],[13,69],[10,103],[16,62],[-60,-71],[-4,-83],[-44,-5],[-40,-38],[-142,60],[-38,36],[-35,47],[-10,41],[26,52],[30,-13],[45,-91],[34,5],[55,44],[-65,1],[-48,54],[-13,41],[0,130],[-29,-9],[0,-53],[-38,-27],[-35,-43],[-60,-14],[-57,4],[-30,21],[-95,104],[-34,44],[-1,36],[-65,129],[1,28],[-23,40],[-25,6],[-5,38],[51,83],[32,69],[2,56],[-7,76],[-25,-11],[1,-64],[-24,-88],[-31,-55],[-65,-26],[-115,15],[-47,53],[-11,-61],[-37,-15],[-33,31],[-29,1],[-54,-16],[-55,7],[-62,18],[-72,5],[-19,13],[14,40],[76,12],[74,28],[38,33],[-168,-31],[-62,9],[-1,31],[51,58],[-9,30],[-44,11],[16,65],[-14,68],[-20,-64],[-30,-35],[-141,-15],[-42,-18],[-91,34],[-74,51],[-65,68],[-50,44],[-3,82],[11,52],[24,58],[92,126],[60,32],[134,11],[101,16],[-129,17],[-131,-7],[-45,-19],[-57,-81],[-30,-59],[-30,8],[-14,37],[-31,42],[-14,49],[-8,71],[17,72],[44,79],[-56,-2],[6,67],[21,73],[53,43],[53,31],[48,41],[84,27],[29,-56],[72,-16],[30,12],[-81,44],[-15,16],[-20,72],[9,28],[83,83],[19,44],[-24,24],[-12,-51],[-209,-225],[-84,-28],[-33,-20],[-48,-97],[-40,-139],[-46,-113],[-39,146],[-71,112],[138,111],[-10,76],[17,44],[-7,28],[-63,-86],[-38,-31],[-2,50],[34,131],[38,164],[1,34],[-111,-57],[-38,36],[-31,183],[-55,72],[-93,59],[-92,27],[-39,116],[25,75],[40,35],[37,16],[35,-7],[2,-27],[-24,-74],[31,-7],[125,-90],[28,-7],[52,35],[29,-2],[68,-28],[23,-33],[55,-28],[-71,81],[-39,26],[-70,5],[-43,-14],[-57,25],[-32,34],[-32,74],[-6,60],[21,43],[79,34],[-51,42],[-24,0],[-79,-62],[-30,8],[-42,-44],[-65,-95],[-14,-113],[-19,-60],[-77,-32],[-44,-66],[-111,112],[-38,96],[-70,17],[-82,55],[-31,49],[44,99],[64,76],[9,90],[9,20],[109,22],[71,45],[-73,4],[-45,-7],[-80,-31],[-88,62],[-46,57],[-15,48],[16,41],[10,97],[27,56],[38,21],[34,65],[14,45],[69,134],[25,59],[47,80],[95,127],[-61,-17],[-47,66],[-2,-80],[-10,-69],[-17,-47],[-46,-97],[-27,-38],[-19,35],[14,61],[27,48],[5,66],[-25,79],[-21,111],[3,83],[28,90],[3,49]],[[21529,101620],[-4,44],[-33,66]],[[21492,101730],[-50,-18],[-85,28],[-28,75]],[[21329,101815],[-74,23]],[[21255,101838],[-40,54],[-147,44],[-212,135],[-107,-6],[-4,66],[-23,40],[9,35]],[[20731,102206],[-103,45],[18,67]],[[20646,102318],[14,51],[-132,37],[45,83],[-30,54],[-107,156],[-158,262],[-36,50]],[[20242,103011],[-51,90],[-67,101]],[[20124,103202],[-63,80],[9,51],[-63,64]],[[20007,103397],[-118,141],[-171,101]],[[19718,103639],[-48,62],[-27,48]],[[19643,103749],[-21,54],[-78,48],[-24,31]],[[19520,103882],[-54,35],[-61,27]],[[19405,103944],[-55,106],[15,77],[-6,19],[-90,81],[-46,34]],[[19223,104261],[-47,34],[-97,-44]],[[19079,104251],[-100,-47],[-167,-40],[32,-50],[-13,-36],[-30,-17],[-51,2]],[[18750,104063],[-1,-125],[-48,-89],[-101,-1],[-200,-113],[-69,-59],[-36,8],[16,53],[-47,164]],[[18264,103901],[-312,268],[-135,116],[-32,86]],[[17785,104371],[-145,64],[-61,63],[45,136],[0,45],[-67,-3]],[[17557,104676],[-190,-8],[-128,-101],[-206,81]],[[17033,104648],[-32,-57],[-205,57],[0,407]],[[16796,105055],[0,407],[0,204]],[[16796,105666],[0,407],[0,406],[0,204]],[[16796,106683],[0,203],[0,407]],[[16796,107293],[0,407],[0,204],[0,407]],[[16796,108311],[0,203],[0,407]],[[16796,108921],[0,203],[0,407],[0,407]],[[16796,109938],[0,407],[0,204]],[[16796,110549],[0,406],[0,204],[257,-34],[185,14],[342,-74],[212,-139],[172,-68],[70,-46],[111,-42],[263,-89],[81,-9],[152,-43],[95,5],[162,-10],[110,-35],[217,-95],[57,-1],[-76,94],[-100,44],[-102,17],[-27,40],[28,18],[122,6],[-112,50],[-26,21],[94,139],[33,-14],[50,33],[89,-21],[16,11],[11,71],[38,29],[124,13],[155,-12],[16,6],[-17,66],[19,65],[91,2],[70,-77],[86,-35],[-30,-54],[-93,-104],[93,15],[110,46],[94,26],[78,5],[56,15],[58,52],[49,84],[32,15],[135,-5],[-18,38],[35,28],[66,9],[74,-32],[99,33],[151,90],[61,25],[53,4],[78,-12],[91,101],[112,52],[72,12],[139,-40],[99,3],[93,71],[23,0],[59,-61],[0,-21],[-47,-54],[-349,-151],[-108,-66],[-108,-37],[-107,-11],[-114,-26],[-168,-21],[-54,-22],[-60,-80],[-87,-66],[-65,-24],[-89,-9],[-56,-38],[-117,-123],[-125,-99],[33,-27],[257,-23],[55,23],[16,29],[-70,4],[-28,81],[22,47],[74,43],[81,18],[189,86],[59,69],[-3,30],[97,20],[95,-18],[78,14],[64,-19],[14,-122],[46,47],[92,112],[132,121],[102,45],[235,74],[132,20],[67,19],[97,57],[-23,-62],[-86,-30],[1,-57],[35,-34],[36,8],[114,68],[137,104],[47,103],[79,37],[142,43],[35,26],[-125,23],[-30,25],[24,24],[-78,38],[18,74],[59,35],[102,-40],[162,-103],[103,-90],[91,-124],[73,-145],[63,-86],[155,-129],[81,-54],[145,-61],[87,-19],[59,-2],[93,55],[2,36],[-82,102],[5,25],[55,49],[7,67],[53,-8],[48,53],[86,67],[-66,11],[-13,25],[89,27],[17,25],[65,24],[47,-28],[-12,-134],[28,-105],[25,-23],[97,-31],[-6,-25],[-112,-111],[-36,-48],[24,-32],[136,-14],[26,9],[190,4],[64,29],[43,54],[63,31],[30,63],[15,74],[36,50],[139,5],[136,-6],[137,5],[141,-13],[91,-15],[245,-80],[64,-31],[225,-136],[65,-28],[124,-27],[424,-59],[53,-16],[112,-62],[168,-71],[114,-30],[301,-65],[45,6],[205,-26],[93,-3],[48,-19],[68,6],[-80,71],[36,13],[100,-12],[23,20],[108,-10],[169,-57],[106,-29],[161,-72],[88,-60],[85,-75],[46,-52],[8,-29],[55,-26],[-24,-64],[-33,-28],[-77,-13],[-211,16],[-37,-53],[-119,-44],[-25,-33],[8,-46],[-112,-66],[127,-72],[52,-9],[67,5],[83,-13],[101,-31],[231,-31],[91,-4],[201,1],[144,-15],[192,3],[85,32],[58,1],[169,18],[58,-1],[122,41],[43,5],[45,-24],[42,2],[80,29],[186,85],[67,-1],[75,17],[46,-63],[45,-15],[63,-79],[24,-14],[174,-2],[62,-13],[37,-51],[20,-100],[25,-39],[33,0],[43,101],[52,6],[44,-75],[62,-56],[155,-102],[34,-66],[-9,-24],[-68,-40],[-57,-14],[-101,9],[102,-85],[50,-56],[147,-123],[121,-134],[46,-39],[41,-7],[-124,135],[-62,84],[-13,52],[-3,102],[52,29],[54,-46],[42,8],[106,-46],[-82,120],[28,34],[-86,67],[-37,51],[-33,78],[-2,88],[-45,53],[-48,36],[-46,65],[6,60],[84,62],[15,36],[-14,51],[108,19],[68,1],[98,33],[56,-1],[68,15],[72,61],[105,-11],[9,83],[57,44],[100,17],[79,47],[32,36],[3,59],[-68,18],[-131,-42],[-95,-42],[-37,-39],[-28,-72],[-74,21],[-71,-9],[-86,-49],[-66,-5],[-138,24],[-53,-32],[28,-57],[-25,-21],[-227,-16],[-183,89],[-13,14],[33,56],[127,153],[14,9],[235,26],[143,28],[260,84],[51,7],[168,56],[68,14],[64,-10],[94,-28],[49,-26],[62,-76],[36,-98],[12,-83],[22,-31],[79,-58],[65,-30],[46,10],[11,-36],[61,1],[57,-27],[-10,-45],[75,-60],[126,-22],[126,7],[105,20],[79,32],[65,-36],[130,-86],[78,-61],[64,-29],[208,-55],[65,15],[75,-6],[142,-36],[301,74],[103,6],[69,22],[105,-1],[189,-16],[130,-22],[140,-42],[97,2],[96,37],[106,13],[15,20],[-123,97],[-7,53],[38,21],[93,-59],[152,-152],[57,-41],[139,-55],[65,-10],[78,34],[51,42],[7,49],[-29,41],[-146,73],[-83,12],[-75,-17],[-85,-35],[-35,14],[-106,99],[-27,36],[52,11],[-109,138],[-7,23],[78,13],[108,-45],[55,20],[127,28],[-50,43],[-12,43],[48,15],[81,-35],[99,10],[62,-30],[56,-52],[68,-86],[214,-8],[-105,-127],[57,-9],[42,26],[24,46],[157,59],[45,9],[-28,-64],[-59,-227],[-12,-79],[-74,-114],[1,-31],[79,-93],[7,-61],[68,-12],[126,32],[10,-13],[-37,-73],[109,11],[49,-37],[-2,-100],[-60,-28],[-90,-4],[-108,36],[-33,-17],[-52,3],[-58,50],[-30,-24],[26,-32],[204,-173],[49,-10],[-105,100],[-12,37],[31,20],[150,-25],[58,5],[58,40],[14,119],[27,77],[-16,69],[-40,109],[-32,64],[-73,65],[-7,24],[81,197],[33,24],[65,3],[47,17],[114,-29],[50,20],[211,157],[67,72],[74,51],[118,49],[88,52],[-84,10],[-14,37],[7,68],[-9,72],[-37,58],[-56,8],[-41,-112],[-31,-25],[-66,-17],[-113,-12],[-52,42],[16,75],[38,33],[103,63],[65,51],[-74,20],[-12,63],[13,50],[42,20],[234,42],[-81,-85],[23,-38],[78,49],[59,55],[-46,5],[2,69],[-51,26],[-157,-50],[-110,6],[-64,43],[-93,92],[-33,0],[-48,-50],[-202,62],[-179,78],[-111,17],[-66,48],[-65,83],[-96,93],[-25,59],[2,82],[138,149],[76,18],[61,91],[-120,-42],[-74,29],[-82,90],[-1,57],[34,125],[-23,40],[45,34],[-11,44],[17,24],[115,85],[93,-2],[85,-45],[70,6],[68,108],[-116,8],[-67,16],[-3,50],[96,61],[44,63],[134,89],[201,55],[77,-3],[28,-44],[5,-47],[74,-58],[214,1],[28,-16],[-7,-73],[218,-124],[97,-87],[35,-51],[29,-134],[-10,-107],[-33,-45],[86,-37],[60,-55],[110,-48],[31,-30],[44,-80],[71,-72],[-10,-49],[38,-23],[70,39],[45,-30],[66,-84],[-23,-21],[-104,-11],[-59,8],[-92,38],[-35,29],[-96,-95],[29,-14],[137,1],[65,-32],[-40,-38],[-93,-64],[-201,-124],[-22,-44],[133,22],[79,-7],[44,-48],[128,-50],[81,10],[82,48],[64,24],[79,-3],[13,-17],[-51,-54],[146,-19],[122,0],[48,-8],[60,-33],[-115,-20],[-48,-57],[-12,-39],[-79,-9],[-22,28],[-78,-22],[212,-125],[68,-111],[52,-58],[-31,-31],[13,-91],[-28,-149],[65,-56],[76,-88],[31,2],[25,47],[48,42],[54,86],[-2,72],[44,77],[27,136],[23,58],[135,148],[66,29],[62,-2],[104,-91],[76,-53],[139,-73],[118,-99],[33,-72],[23,-100],[43,-112],[-18,-96],[-59,-17],[-67,17],[-27,48],[-60,-33],[12,-85],[2,-150],[51,-129],[86,-97],[214,-188],[35,-99],[66,-21],[195,152],[88,34],[31,46],[26,137],[46,78],[166,153],[13,19],[71,178],[25,81],[-1,129],[93,98],[40,3],[64,-23],[176,22],[0,12],[-103,37],[10,45],[72,37],[23,78],[-108,64],[-56,-2],[-62,48],[-19,85],[7,135],[-38,72],[25,88],[-27,47],[87,-6],[56,-22],[67,0],[162,31],[173,-10],[140,-62],[109,-32],[48,3],[242,-13],[160,4],[106,-34],[-7,-29],[-46,-48],[-111,-26],[48,-25],[143,-34],[69,-112],[86,19],[94,-13],[138,-41],[36,-55],[-122,-81],[-146,-66],[-3,-17],[117,-4],[131,-20],[51,-48],[-8,-86],[-105,-70],[-132,-49],[-75,-16],[-88,30],[-147,-42],[69,-75],[0,-37],[73,-97],[90,19],[-34,-85],[-3,-43],[16,-43],[37,-46],[115,-97],[128,-88],[61,-95],[-13,-71],[-37,-117],[-35,-83],[-70,-47],[-105,-10],[-56,-47],[-84,-109],[-76,-38],[-115,-85],[-132,-26],[-150,-110],[-97,-16],[-29,13],[-26,67],[-38,35],[-78,101],[-56,42],[-68,-2],[-50,31],[-16,29],[38,11],[-115,93],[-66,31],[-66,8],[-84,-50],[-31,-35],[41,-24],[69,48],[52,-5],[42,-22],[22,-32],[116,-100],[41,-21],[56,-109],[115,-164],[13,-36],[-47,-19],[-167,56],[-45,-23],[-35,-55],[-185,64],[-81,37],[-90,81],[-59,67],[-69,22],[-81,-25],[-117,-9],[-246,8],[-44,-14],[20,-38],[-25,-28],[27,-39],[43,-27],[122,-36],[130,-58],[18,-47],[-36,-67],[-284,-245],[-109,-99],[-55,-61],[-90,-60],[-70,-11],[-97,-3],[-125,10],[-65,31],[-118,85],[-120,67],[-31,46],[-87,17],[-61,25],[-143,85],[-74,34],[-68,18],[-84,-1],[42,-43],[-116,7],[-86,31],[-85,-4],[-214,31],[-127,-1],[-52,-11],[61,-38],[105,-45],[-14,39],[39,24],[166,-24],[189,-50],[48,-5],[112,-48],[80,-62],[155,-140],[115,-69],[334,-47],[116,0],[232,-14],[122,-25],[34,-18],[11,-63],[-11,-31],[-108,-165],[-261,-297],[-48,-109],[-47,-42],[-118,-65],[-118,-56],[-71,-12],[-104,29],[-64,50],[44,-87],[-46,2],[-82,39],[-42,-17],[-49,11],[-64,48],[-20,56],[-116,-37],[54,-32],[40,-71],[-26,-25],[-95,27],[55,-124],[-60,-80],[-39,-33],[-54,-12],[-71,28],[-27,-2],[-47,-45],[-45,-11],[-58,4],[-70,21],[-186,75],[-166,22],[-2,39],[-46,0],[-68,-26],[-62,9],[-91,29],[-181,75],[-198,63],[-115,83],[43,-74],[-29,-69],[45,-53],[62,-19],[63,2],[-48,41],[1,34],[366,-131],[82,-18],[78,-30],[-20,-25],[-111,-60],[74,-5],[92,54],[101,40],[67,-26],[85,-68],[68,-39],[98,-21],[57,-24],[97,-63],[15,-33],[9,-135],[-16,-65],[-22,-32],[-40,-17],[-105,-17],[-101,-72],[-43,-10],[-181,21],[-71,20],[-70,-24],[-71,-7],[7,-59],[44,-35],[124,-27],[8,-37],[-31,-36],[-31,3],[-54,28],[-83,-19],[-66,-7],[-18,-54],[-75,-63],[1,-20],[60,-50],[36,-53],[-16,-18],[-67,58],[-56,32],[-124,42],[-11,-12],[82,-44],[36,-49],[-69,-46],[21,-40],[-65,-41],[-78,-2],[32,-48],[-42,-23],[-90,10],[23,-49],[42,-42],[50,-22],[-46,-52],[-124,-72],[-88,-84],[-12,-26],[22,-70],[-23,-25],[-51,7],[5,-74],[-8,-51],[-37,-79],[-66,-107],[-52,-98],[-35,-88],[-26,-43],[-47,-3],[-36,-28],[40,-31],[10,-26],[-10,-80],[-31,-135],[-19,-107],[4,-331],[-5,-146],[-13,-82],[-22,-44],[40,-47],[27,-81],[17,-23],[41,-1],[69,-86],[57,-21],[3,-39],[-23,-223],[26,27],[27,173],[37,77],[29,16],[119,9],[127,-20],[89,8],[43,-21],[11,-22],[23,-142],[75,-185],[36,-103],[44,-162],[17,-46],[91,-215],[17,-58],[4,-77],[-16,-49],[-59,-115],[-53,-60],[37,4],[84,54],[66,6],[24,-25],[99,38],[391,124],[92,10],[131,-22],[107,-53],[116,-67],[122,-49],[194,-46],[56,-22],[113,-23],[53,-26],[63,-62],[100,-81],[76,-51],[84,-47],[85,-88],[137,-198],[34,-25],[84,-32],[158,-42],[234,-99],[102,-38],[67,-15],[66,-28],[66,-38],[51,-43],[65,-76],[82,-57],[2,-36],[-64,-141],[64,90],[65,43],[61,-2],[92,-16],[81,-1],[70,17],[108,6],[84,16],[105,-35],[42,-2],[153,-33],[98,12],[51,-49],[78,3],[47,-11],[79,-57],[37,-48],[35,-99],[3,-30],[-65,-230],[-20,-89],[-3,-77],[13,-45],[66,-94],[34,-111],[9,-47],[-4,-55],[-17,-89],[4,-68],[15,-104],[-6,-70],[-43,-72],[-14,-65],[14,-74],[65,-58],[38,-46],[69,-111],[51,-61],[61,-92],[12,-45],[-38,-51],[-50,-28],[98,-12],[36,-22],[29,-44],[49,-37],[68,-30],[68,-51],[113,-121],[21,-28],[70,-162],[20,-65],[2,-30],[-22,-31],[-77,-56],[-76,-97],[24,5],[50,41],[86,81],[48,16],[114,-33],[61,-33],[54,-43],[79,-116],[84,-92],[2,29],[-79,92],[-34,48],[-10,48],[21,111],[20,47],[25,27],[38,82],[68,40],[18,-3],[14,-50],[75,-35],[37,-53],[29,-116],[17,9],[30,110],[42,47],[-20,48],[-87,117],[-1,28],[39,49],[8,48],[19,34],[54,49],[91,153],[-15,41],[-1,61],[-12,65],[-72,94],[-18,92],[19,68],[-8,29],[-49,54],[-19,47],[-21,113],[-20,142],[-22,105],[-24,67],[-6,42],[31,70],[16,13],[-31,67],[35,48],[-31,35],[-75,33],[44,40],[-67,42],[-59,83],[-19,41],[-19,67],[-34,77],[-50,37],[21,29],[326,129],[27,18],[160,72],[74,40],[75,57],[102,60],[50,38],[32,37],[162,147],[69,75],[40,65],[58,77],[76,90],[48,77],[20,64],[25,111],[7,98],[4,145],[-2,128],[-21,202],[-35,139],[-57,151],[-10,42],[-35,69],[-114,182],[-143,123],[-28,31],[-56,36],[-87,41],[-55,34],[-146,126],[-48,15],[-22,56],[14,102],[22,51],[80,93],[45,74],[66,72],[62,41],[36,53],[-43,66],[54,74],[3,66],[104,6],[5,21],[61,57],[-17,89],[36,68],[-10,14],[-101,13],[-11,28],[51,31],[-84,151],[-14,45],[71,94],[-86,11],[-32,43],[56,104],[-91,-2],[-55,22],[-53,-6],[-16,30],[97,104],[45,57],[44,102],[-10,113],[6,31],[96,83],[-80,49],[-107,94],[-32,49],[-24,64],[-26,128],[2,121],[28,51],[73,50],[127,73],[100,29],[72,-16],[140,-17],[113,-42],[345,-104],[61,-46],[144,43],[98,-29],[39,-4],[49,-24],[119,-80],[-25,48],[19,19],[93,42],[97,35],[190,102],[58,-10],[187,-122],[63,-56],[72,-51],[63,4],[28,-12],[16,-60],[-14,-50],[-46,-80],[19,-1],[67,47],[29,11],[62,-24],[58,-39],[63,-72],[17,-34],[-18,-27],[26,-20],[43,45],[24,8],[98,-50],[-7,-46],[-43,-17],[-37,-42],[21,-31],[63,-6],[-37,-28],[-5,-25],[83,-86],[55,-38],[107,-8],[60,-15],[135,-49],[78,-9],[113,18],[39,-19],[19,-42],[-1,-41],[22,-29],[44,-16],[36,2],[47,33],[40,5],[36,94],[29,7],[37,-34],[31,-89],[-15,-48],[-61,-50],[-28,-36],[-35,-86],[-13,-55],[-2,-69],[21,-72],[32,-45],[4,-52],[-21,-49],[-53,-32],[-72,-8],[-235,-2],[-63,8],[15,-30],[351,-27],[31,-19],[44,-67],[22,-102],[-48,-130],[-8,-67],[12,-35],[121,-3],[22,-42],[-43,-68],[15,-64],[-26,-61],[-24,-91],[-33,-28],[-30,2],[-33,75],[-32,-8],[-17,-50],[-48,-28],[-78,-19],[3,-20],[52,-10],[66,-34],[39,-5],[60,27],[115,85],[90,32],[100,-5],[105,11],[58,-27],[64,-58],[14,-27],[24,-104],[32,-27],[10,-50],[-2,-59],[-35,-120],[-18,-45],[-48,-60],[-56,-28],[-98,-25],[-52,-22],[-41,-46],[112,51],[123,25],[62,55],[27,61],[49,156],[28,49],[38,9],[18,-17],[54,-131],[21,64],[30,14],[20,-98],[4,-96],[27,24],[21,50],[81,61],[94,49],[62,43],[128,41],[49,40],[40,103],[66,66],[27,2],[56,-47],[54,-85],[12,-121],[36,72],[2,53],[-40,86],[-10,60],[81,18],[-28,48],[34,43],[60,-4],[3,42],[65,-14],[8,17],[61,17],[-96,35],[-25,29],[-15,43],[40,-1],[41,96],[45,-14],[-35,82],[6,16],[54,5],[33,-10],[86,-60],[2,24],[-44,35],[-102,54],[-29,54],[-3,51],[21,60],[32,22],[63,1],[68,-40],[11,13],[-56,41],[-5,54],[42,108],[61,132],[49,55],[48,3],[89,-47],[27,-28],[8,-39],[-47,-54],[-14,-35],[66,14],[53,0],[43,-63],[14,-125],[41,20],[33,-48],[22,-76],[77,-92],[-43,-45],[-52,-27],[11,-20],[71,-22],[12,-50],[49,45],[42,-6],[54,-97],[-39,-55],[-108,-36],[-66,2],[-13,-27],[63,0],[97,14],[105,24],[47,-107],[-29,-42],[42,-7],[58,14],[54,-79],[22,-64],[-98,-88],[-50,-18],[-74,-47],[-36,-85],[76,77],[37,18],[28,-5],[30,-31],[103,45],[99,11],[6,-15],[-35,-108],[-59,-83],[-108,-51],[-86,-78],[18,-9],[103,64],[71,25],[98,20],[44,-3],[78,-126],[45,-13],[36,7],[68,-37],[26,-35],[-6,-25],[-35,-39],[27,-70],[-16,-39],[-85,-53],[-38,-5],[-36,-31],[15,-31],[93,9],[72,-22],[30,-28],[-55,-93],[51,-35],[100,-10],[127,-120],[-6,-62],[-19,-48],[8,-120],[-69,-18],[-228,31],[-131,47],[-3,48],[-54,-24],[44,-49],[120,-44],[54,-53],[59,-5],[51,-40],[-70,-15],[-48,-36],[30,-21],[107,-18],[77,-5],[38,-21],[-31,-23],[-90,-27],[-3,-40],[67,-16],[83,6],[18,-98],[10,-20],[-64,-17],[0,-19],[112,-28],[24,-17],[19,-45],[40,-3],[71,67],[38,-11],[3,-38],[62,-51],[13,-61],[37,55],[58,-15],[-29,-94],[43,-64],[50,-53],[-13,-26],[-59,-54],[-39,-116],[-46,-92],[93,88],[55,30],[122,16],[29,24],[45,11],[27,-29],[3,-50],[36,-16],[38,16],[34,-14],[-21,-32],[-110,-131],[-3,-39],[138,118],[73,100],[75,-11],[38,-24],[18,-66],[30,-71],[45,-80],[121,-38],[44,-6],[75,27],[12,37],[59,11],[42,-4],[14,-72],[88,-69],[42,-16],[62,-7],[34,-49],[-35,-37],[-34,-54],[-58,-37],[-82,-2],[-113,-23],[-29,-45],[-93,-40],[-53,-88],[-32,-37],[-90,-3],[-59,-24],[-26,-33],[-70,-24],[-127,-66],[-141,0],[-82,-50],[-29,-42],[-8,-47],[-19,-26],[-97,7],[90,-54],[26,-29],[-82,-67],[8,-52],[-25,-35],[78,28],[70,60],[45,61],[23,17],[89,22],[53,27],[76,48],[83,69],[90,92],[116,71],[140,52],[102,26],[10,26],[-48,3],[-60,-12],[-19,28],[22,33],[51,19],[248,-26],[86,-20],[93,-166],[22,-53],[-4,-64],[-37,-28],[-106,-58],[-16,-23],[61,-27],[23,-64],[48,41],[90,101],[74,46],[62,13],[99,5],[9,-32],[39,-66],[36,-17],[69,-8],[62,-81],[46,-89],[2,-40],[25,-52],[-5,-54],[-36,-93],[27,-85],[-18,-100],[30,-64],[-20,-14],[-137,-34],[-27,-27],[76,1],[92,-20],[40,-23],[17,-33],[-4,-25],[-26,-19],[-98,4],[73,-42],[62,-48],[8,-35],[-10,-37],[-139,-145],[-114,-92],[-115,-81],[-184,-155],[-51,-11],[-88,25],[-70,-6],[-132,-30],[-37,-19],[-72,-54],[-107,-18],[-74,7],[-29,-8],[-45,-40],[-10,-46],[-180,-203],[-48,-69],[-91,-73],[-101,-128],[-87,-51],[-31,-71],[-84,-43],[-154,-11],[-73,-12],[-86,20],[-64,-31],[-97,-10],[-46,7],[-188,-68],[-47,65],[-37,25],[-106,4],[-84,27],[-77,5],[-76,12],[-100,-7],[-80,1],[-45,-35],[-150,10],[-63,33],[-52,7],[-70,-8],[-66,-24],[-146,28],[-155,-23],[-134,15],[-38,16],[-213,-43],[-83,24],[-73,-64],[-50,13],[-55,-9],[-18,12],[-37,-9],[-23,-35],[-31,-4],[-51,-63],[-87,-50],[-126,-273],[-12,-104],[-47,-72],[-76,-11],[-219,-53],[-97,-41],[26,-33],[-31,-25],[-52,-10],[-56,-30],[-36,-35],[-18,-47],[-112,-77],[-130,-177],[-62,-131],[-75,-94],[-53,-36],[-38,-6],[-39,12],[-64,44],[-48,5],[-117,61],[-273,62],[41,-23],[36,-38],[72,-10],[73,1],[153,-77],[75,-27],[46,-23],[39,-52],[-28,-101],[-28,-84],[-39,-64],[-131,-165],[-64,-55],[-111,-198],[-115,-92],[-61,-57],[-66,-90],[-154,-68],[-57,-17],[-52,9],[-65,-55],[-75,-34],[-23,-52],[-182,-137],[-70,-18],[-60,-36],[-17,-63],[-54,-37],[-59,-116],[-83,-113],[-102,-18],[-37,-40],[-42,-63],[-61,-43],[-119,20],[29,-26],[106,-42],[12,-61],[-54,-15],[-112,-82],[-151,-141]],[[35841,113447],[-69,-7],[-65,49],[11,92],[89,41],[113,-80],[-31,-78],[-48,-17]],[[28201,113207],[77,-1],[166,42],[114,15],[49,-14],[34,29],[4,89],[18,29],[104,82],[58,10],[137,-7],[130,-34],[174,-34],[256,-85],[80,-36],[8,-32],[-45,-67],[-110,-95],[-123,-55],[95,-39],[98,74],[59,33],[18,-63],[55,1],[78,46],[77,71],[116,46],[31,24],[101,19],[3,68],[-153,71],[-59,58],[13,45],[281,-18],[171,-75],[61,-47],[150,-57],[66,-50],[-11,-40],[84,-20],[43,-48],[57,-126],[42,-125],[83,-166],[28,-104],[28,-32],[95,-46],[60,-6],[42,60],[147,72],[-13,46],[31,6],[-102,91],[-66,87],[-42,106],[-13,98],[-47,54],[-1,47],[-27,45],[-104,316],[15,53],[96,17],[-47,67],[26,32],[133,-14],[97,-28],[165,-67],[70,58],[52,-7],[150,-49],[172,-86],[116,-43],[81,-58],[90,-97],[2,-55],[38,-51],[38,-153],[153,-303],[48,-79],[107,-117],[57,-85],[16,-100],[-15,-67],[-44,-62],[-36,-100],[24,-28],[150,-95],[92,-115],[158,-92],[125,-40],[82,-44],[45,22],[-35,54],[14,25],[129,-93],[164,-75],[163,-89],[111,0],[46,-26],[3,-53],[24,-26],[179,9],[45,-26],[30,-56],[28,-112],[-11,-107],[-47,-33],[-74,8],[-80,48],[-24,59],[-82,-94],[-92,28],[-138,75],[-72,-23],[-76,-38],[-31,-28],[27,-68],[-38,-48],[-128,9],[-60,21],[-129,63],[-46,-28],[139,-103],[34,-9],[10,-81],[-31,-92],[98,73],[146,65],[43,29],[127,8],[45,-16],[30,-40],[-33,-32],[-5,-55],[31,-32],[73,-13],[15,-59],[-30,-76],[-53,-24],[-163,-46],[-55,-24],[-108,-16],[-68,-29],[-115,4],[-131,-15],[-152,28],[-106,12],[-123,44],[-95,-39],[-230,33],[-27,25],[64,67],[0,20],[-104,9],[-117,28],[-117,13],[-87,-3],[-57,10],[-87,43],[-8,109],[-77,43],[-52,-2],[-84,-64],[-77,-116],[-38,-20],[-100,-84],[-37,-21],[-182,-33],[-216,-14],[-81,-26],[-77,-48],[-93,-47],[-226,-58],[-210,-33],[-219,-14],[-164,-22],[-47,11],[-73,-4],[-79,-32],[-89,-6],[-339,-12],[-156,-22],[-85,-5],[-114,12],[-90,72],[-94,118],[-26,49],[10,85],[-7,49],[-37,115],[-163,39],[-107,12],[-162,3],[-199,-6],[-197,13],[-105,14],[-103,24],[-178,60],[-85,106],[-121,100],[-48,59],[-19,58],[-21,116],[26,32],[251,52],[441,57],[404,39],[183,-4],[108,-18],[108,-8],[196,-4],[246,-27],[160,20],[33,15],[175,-2],[65,25],[-40,30],[-167,66],[-444,118],[-264,52],[-90,4],[-157,-15],[-219,-37],[-203,-14],[-293,-11],[-145,26],[-286,-14],[-256,18],[-292,181],[-48,55],[46,46],[144,70],[52,17],[215,37],[215,45],[170,43],[83,14],[80,2],[65,14],[-66,29],[28,32],[106,11],[113,-13],[56,4],[1,27],[-107,25],[-514,-71],[-240,-7],[-166,-31],[-91,1],[-109,31],[-17,22],[34,40],[116,25],[59,68],[-63,2],[-208,-15],[-91,6],[-123,26],[-52,54],[2,104],[17,51],[153,126],[95,27],[67,40],[-14,33],[-101,81],[46,74],[104,69],[250,138],[127,58],[123,32],[171,66],[440,110],[394,111],[145,-29],[41,-23],[34,-47],[32,-111],[-1,-78],[-23,-68],[-74,-85],[-94,-79],[-10,-23]],[[32177,113435],[-62,13],[-158,108],[-116,72],[-47,75],[-149,76],[-171,46],[-12,21],[51,62],[94,67],[108,16],[366,33],[84,1],[88,-16],[120,-67],[80,-23],[40,-51],[-11,-131],[-90,-129],[-77,-55],[-45,-64],[-93,-54]],[[43268,113947],[74,-10],[465,17],[96,-12],[294,-77],[75,-26],[87,-100],[106,-32],[44,-39],[38,-66],[120,-55],[-8,-58],[94,-81],[-40,-26],[-94,-16],[-264,16],[-354,37],[-206,-10],[-103,-17],[-250,-60],[-158,-11],[-138,49],[-50,26],[-49,79],[-57,172],[-47,15],[-140,17],[-47,25],[-42,52],[11,63],[-26,84],[5,90],[37,25],[151,6],[125,-41],[100,-4],[151,-32]],[[40231,112106],[17,-16],[182,42],[131,54],[77,18],[237,0],[40,-10],[-28,-41],[85,-53],[34,63],[50,241],[6,102],[-17,32],[-60,19],[-83,-3],[-94,14],[-63,37],[-86,97],[-136,83],[21,25],[137,55],[60,79],[36,13],[131,-11],[176,-61],[111,-54],[2,29],[-128,67],[-85,82],[85,30],[9,18],[-97,20],[-133,-16],[-79,27],[-68,62],[-60,85],[-3,99],[30,57],[52,48],[83,20],[117,-24],[316,-86],[-8,28],[-353,116],[-125,29],[-30,42],[188,160],[173,38],[86,47],[141,2],[135,-22],[-60,56],[80,47],[137,39],[168,31],[77,27],[79,10],[196,5],[111,-5],[147,-24],[86,-42],[72,-108],[37,-116],[55,-47],[87,-27],[94,-60],[-6,-86],[11,-49],[70,-77],[67,-49],[-173,-130],[-139,-93],[-99,-79],[202,101],[67,-22],[-94,-115],[-51,-35],[107,-74],[-99,-22],[-11,-109],[63,9],[179,153],[116,46],[100,-26],[-89,86],[21,65],[114,31],[53,-74],[98,3],[45,38],[55,-25],[84,-58],[-8,-58],[4,-102],[100,-78],[28,29],[-65,90],[18,114],[52,60],[117,-50],[134,1],[169,-70],[90,-2],[-8,29],[-69,14],[-100,38],[-155,46],[-72,53],[-11,51],[56,63],[150,61],[107,26],[80,9],[134,-1],[156,-11],[84,-17],[97,-43],[123,-43],[94,-7],[114,7],[177,-64],[47,-32],[62,-115],[-5,-30],[-147,-130],[106,16],[105,27],[165,-11],[110,-33],[23,-69],[-45,-67],[-248,-82],[-135,-11],[106,-29],[111,6],[-55,-73],[-17,-46],[12,-69],[-84,-122],[17,-9],[102,84],[28,91],[41,81],[84,61],[114,6],[64,47],[76,15],[44,-35],[-67,-84],[-142,-136],[58,15],[151,112],[39,-43],[61,-32],[36,-74],[93,-63],[-5,47],[-51,93],[14,38],[162,97],[139,-49],[93,3],[107,-13],[103,-22],[101,-31],[78,-37],[88,-71],[30,-58],[-14,-27],[-119,-94],[-42,-13],[-113,13],[-73,-27],[-118,-88],[-144,-76],[138,2],[38,26],[32,49],[61,51],[115,23],[160,-50],[79,2],[61,50],[68,34],[41,3],[51,-35],[16,-32],[-8,-95],[-46,-54],[-112,-83],[-73,-30],[-170,-45],[-62,-54],[-69,-39],[51,-27],[38,17],[51,61],[82,30],[43,-34],[-2,-52],[-65,-207],[51,57],[115,215],[28,44],[56,43],[124,66],[97,35],[167,39],[66,-7],[43,-34],[129,3],[98,-18],[120,-54],[170,-53],[41,-32],[16,-58],[-51,-46],[-69,-22],[-65,-41],[-123,-25],[-95,-8],[-172,-61],[-156,-83],[64,-29],[50,13],[69,57],[66,21],[243,33],[60,-2],[24,-41],[-123,-116],[114,-26],[38,19],[72,67],[79,16],[41,28],[-47,23],[16,47],[34,37],[62,25],[88,-25],[60,-43],[152,-129],[72,-121],[10,-43],[-38,-54],[-33,0],[-202,39],[-133,-16],[-111,-77],[-128,0],[-196,-48],[-54,-44],[76,5],[124,32],[118,9],[195,-71],[65,-11],[79,13],[157,-4],[132,-36],[122,-59],[41,-54],[-2,-47],[-53,-27],[-174,13],[-54,9],[-65,-12],[-121,23],[-75,34],[-112,-32],[-90,20],[-91,-18],[-182,-75],[21,-13],[249,65],[48,-4],[203,-70],[34,-19],[1,-73],[-57,-105],[-57,8],[-133,34],[-94,-1],[-79,-22],[-212,43],[-44,-11],[193,-67],[143,-8],[89,-11],[78,-36],[2,-46],[47,-45],[70,-19],[95,19],[86,-37],[148,-25],[111,7],[39,-33],[-101,-35],[-15,-33],[87,-77],[-32,-82],[76,21],[53,-13],[-11,70],[43,28],[137,21],[-23,-110],[-3,-57],[-60,-95],[-50,-31],[37,-18],[43,13],[51,74],[103,76],[18,-26],[-13,-51],[47,-24],[70,44],[57,-3],[34,-32],[-26,-95],[5,-24],[60,-63],[-18,110],[12,32],[49,42],[102,61],[37,12],[61,-37],[-82,-69],[-19,-47],[21,-25],[83,-3],[83,39],[47,-19],[160,-132],[59,22],[73,-62],[-98,-49],[30,-103],[-127,4],[-72,-8],[40,-28],[9,-31],[224,5],[5,36],[100,43],[119,-29],[119,-70],[-53,-42],[-41,-105],[-21,-21],[-170,-119],[28,-2],[72,29],[140,44],[78,17],[84,-12],[25,15],[46,-17],[96,-17],[110,99],[67,-20],[62,-60],[134,-107],[92,-90],[-3,-28],[-95,-35],[-85,55],[-77,28],[-48,-3],[-32,-33],[188,-86],[35,-90],[-125,-42],[-41,-3],[-87,20],[-51,38],[-42,13],[-77,-3],[64,-63],[-55,-62],[125,-55],[94,-56],[14,-22],[-109,-21],[-96,8],[-13,-30],[38,-48],[12,-50],[-45,-20],[-53,-56],[-21,-59],[-68,6],[-66,-18],[-86,24],[-127,124],[23,-55],[-4,-33],[-100,-24],[62,-26],[74,-14],[-12,-51],[0,-218],[-16,-78],[-36,-68],[-52,-64],[-57,42],[-22,43],[-46,41],[-71,9],[-39,-39],[-84,74],[16,106],[-69,-50],[-37,-95],[-47,36],[-79,91],[-112,115],[-29,72],[-46,76],[-51,61],[10,40],[83,82],[66,34],[77,19],[35,44],[42,79],[73,93],[-65,-27],[-46,-39],[-54,-65],[-50,-42],[-130,-48],[-103,-15],[-121,7],[-28,16],[14,46],[43,59],[-78,-30],[-54,3],[-62,52],[-116,51],[-101,126],[-32,66],[-86,50],[8,-56],[-47,-15],[-104,-4],[55,-61],[0,-77],[-52,-13],[-107,68],[-133,62],[-6,-16],[77,-138],[67,-57],[108,-67],[49,-39],[-38,-55],[-55,-24],[-65,0],[-119,31],[-57,34],[-81,80],[-135,84],[-29,-1],[-95,-34],[121,-18],[108,-66],[8,-28],[-27,-31],[2,-39],[61,-77],[107,-38],[-38,-104],[21,-42],[81,43],[64,13],[73,-39],[41,-73],[80,-30],[-7,-14],[-82,-44],[64,-37],[48,-41],[29,-50],[12,-61],[47,4],[26,-50],[29,-111],[42,98],[51,-20],[126,-82],[7,-18],[-40,-35],[37,-39],[27,9],[53,78],[39,27],[74,-22],[110,-103],[35,14],[67,-66],[-102,-73],[10,-12],[134,0],[36,-17],[8,-34],[-59,-92],[-127,10],[-31,-17],[100,-43],[85,-101],[-9,-41],[69,-13],[43,12],[100,1],[-3,-47],[47,-44],[34,-75],[37,-58],[-65,-19],[5,-74],[22,-77],[-6,-138],[-32,-15],[-46,18],[-82,195],[-45,66],[-87,84],[44,-110],[36,-190],[-27,-48],[75,-96],[55,-94],[41,-48],[-35,-24],[-73,1],[-91,44],[-13,-14],[50,-161],[-1,-38],[-56,2],[-37,46],[-132,107],[-72,44],[-54,-8],[-49,56],[-106,74],[10,-70],[-39,-7],[-53,21],[-35,49],[-45,85],[-25,11],[10,-108],[-27,-7],[-32,64],[-25,27],[-62,38],[-19,43],[-69,-8],[-35,24],[-101,98],[-92,107],[-49,0],[43,-147],[-50,18],[-174,131],[-108,61],[-157,19],[-23,-34],[53,-75],[51,-57],[127,-113],[101,-125],[97,-41],[103,-14],[-26,-58],[116,-43],[110,-73],[100,-99],[114,-48],[30,-21],[80,-97],[44,-77],[33,-34],[129,-66],[-20,-50],[-45,-24],[33,-94],[-2,-37],[-85,-32],[-29,2],[-98,38],[-108,61],[-163,42],[-61,22],[-50,32],[-405,59],[-67,14],[-82,44],[-154,60],[-122,116],[-77,120],[-26,16],[-84,16],[-116,-23],[-72,4],[-144,74],[-99,29],[-127,76],[45,69],[-113,-53],[-107,58],[-49,43],[-154,168],[119,1],[36,9],[68,48],[32,47],[-57,5],[-49,53],[-42,30],[-48,13],[-166,-11],[-29,33],[56,93],[-29,1],[-96,-51],[-21,4],[-38,53],[-23,62],[-118,89],[-112,115],[-87,68],[-29,30],[71,96],[-150,29],[-44,-24],[-78,7],[-17,-78],[-33,-30],[-31,14],[-14,115],[-32,14],[-91,4],[-41,25],[-53,107],[-36,1],[-87,-42],[42,-33],[79,-112],[-24,-42],[-86,-21],[-74,-7],[-113,24],[-68,35],[-98,-11],[-23,-93],[-114,-2],[-37,-9],[-124,-50],[-67,-2],[-70,-41],[-57,-3],[-72,23],[-111,7],[-52,13],[-97,45],[-71,2],[-109,92],[-56,83],[-6,93],[19,39],[21,91],[44,58],[51,35],[185,62],[36,41],[-43,75],[59,87],[32,7],[68,-22],[135,-12],[128,-31],[179,-59],[103,-40],[77,-60],[56,-59],[8,-30],[-38,-75],[59,-45],[16,68],[25,49],[-64,88],[-115,85],[-11,28],[38,13],[169,-29],[65,6],[25,33],[54,35],[57,6],[80,-16],[73,3],[45,19],[66,60],[43,13],[112,11],[87,-24],[54,1],[-4,40],[-80,156],[-124,76],[-105,95],[-68,88],[26,48],[190,104],[150,104],[66,53],[65,64],[107,37],[20,26],[17,82],[68,103],[52,27],[79,20],[52,24],[62,84],[-57,61],[-97,221],[-64,106],[-77,93],[-68,113],[-114,111],[9,71],[-118,-49],[-28,-2],[-75,47],[-26,46],[42,104],[-7,56],[-23,30],[-95,9],[-19,-9],[65,-86],[-10,-21],[-121,-5],[-66,27],[-97,89],[-14,58],[-99,23],[68,48],[-71,63],[87,43],[-60,15],[-107,-88],[-47,-21],[-65,27],[-68,3],[-44,-45],[-94,-34],[-169,-78],[-73,-24],[-78,4],[-15,16],[19,87],[-5,89],[13,24],[76,30],[126,-18],[58,3],[82,50],[41,39],[9,38],[-60,74],[-112,47],[-156,38],[-48,52],[2,52],[22,20],[100,24],[-83,23],[-71,-21],[-66,-58],[-119,30],[-47,25],[112,65],[4,21],[-45,34],[-116,21],[-113,-13],[-42,7],[-18,38],[-38,188],[-22,47],[-30,6],[-135,-19],[-54,7],[-90,60],[-56,26],[-120,108],[-34,51],[-38,15],[-80,-48],[-62,-68],[21,-45],[142,-33],[36,-21],[54,-81],[14,-91],[-49,-49],[-87,-36],[-91,-21],[-134,0],[-236,70],[-96,10],[-123,29],[-66,3],[-118,25],[-199,13],[-39,-11],[53,-33],[86,-16],[57,-29],[117,-92],[36,-55],[-35,-28],[-277,147],[-247,-71],[-67,-3],[-83,21],[-260,96],[-25,3],[-165,-30],[-141,-2],[-285,30],[-105,19],[-62,31],[-62,0],[-164,24],[-149,-52],[-180,47],[-54,28],[-69,100],[-7,43],[29,66],[-83,-31],[-80,-9],[-134,17],[-15,-24],[40,-37],[-75,-10],[-114,11],[-72,-11],[-52,-36],[-48,-5],[-119,82],[-97,51],[-112,20],[-80,36],[-155,165],[-21,35],[-49,130],[3,49],[146,-16],[142,1],[77,-10],[90,-33],[116,-23],[83,-4],[134,8],[152,22],[18,16],[-98,29],[-88,38],[-129,71],[-81,13],[-228,9],[-211,33],[-146,45],[-119,49],[-65,48],[-38,174],[-40,144],[41,70],[115,76],[-68,34],[-22,73],[5,69],[69,109],[148,164],[41,185],[64,79],[59,49],[93,41],[24,64],[230,133],[105,55],[89,34],[107,26],[303,52],[156,14],[196,-3],[362,-29],[44,-21],[15,-58],[-99,-64],[-125,-53],[-81,-46],[-137,-104],[-37,-36],[-170,-209],[-64,-62],[-17,-75],[32,-71],[92,-95],[25,-45],[-11,-138],[3,-97],[53,-156],[78,-89],[124,-90],[91,-60],[91,-44],[107,-65],[24,-32],[-50,-34],[-115,-54],[-151,-23],[-81,-21],[-101,-47],[-177,-59]],[[34455,114149],[363,-149],[161,20],[114,22],[158,19],[138,42],[108,6],[154,-31],[48,-37],[48,-86],[-67,-52],[-103,-19],[-82,-65],[102,7],[51,-42],[-18,-24],[-225,-71],[-164,-118],[-86,-49],[-26,-31],[30,-46],[80,41],[104,30],[92,0],[108,-31],[63,-37],[-21,-51],[60,-19],[67,-52],[4,-32],[-37,-52],[46,-4],[79,35],[85,18],[56,-10],[41,-102],[3,-45],[-35,-66],[-51,-35],[-68,-20],[55,-30],[33,-46],[-11,-41],[-64,-69],[61,-55],[5,-93],[-144,-29],[-118,-83],[-103,-27],[-52,-3],[-258,23],[-45,37],[-8,80],[-67,-40],[16,-40],[82,-110],[14,-82],[-92,-64],[-108,-32],[-52,8],[-87,39],[-78,-2],[-47,40],[-55,92],[-76,66],[-66,74],[-168,107],[-87,64],[-116,104],[-48,23],[-119,17],[-47,48],[-50,26],[-125,-27],[-97,26],[-47,66],[-61,53],[-184,76],[-110,86],[-24,45],[36,89],[54,66],[72,40],[57,10],[121,-14],[73,-80],[91,-42],[83,-95],[33,-17],[80,-6],[82,9],[178,33],[18,23],[20,119],[72,-55],[43,6],[14,39],[-80,110],[-108,12],[-2,42],[42,39],[92,0],[68,-30],[27,20],[-109,70],[-46,13],[-57,-30],[-111,-26],[-58,-2],[-242,108],[-31,38],[26,34],[60,26],[150,19],[52,-19],[77,-54],[60,11],[-30,45],[-76,27],[-73,54],[-14,52],[30,28],[186,26],[130,-29],[82,-5],[34,37],[-104,-2],[-31,31],[97,39]],[[35200,114096],[-124,-15],[-57,6],[-54,-27],[-68,-4],[-177,47],[17,32],[147,28],[43,29],[138,19],[225,49],[157,3],[17,-26],[-42,-46],[-169,-81],[-53,-14]],[[37397,114299],[169,-33],[123,-36],[116,-62],[150,28],[105,10],[234,-12],[198,-41],[118,-57],[-12,-31],[-79,-96],[-86,-74],[-73,-37],[-58,-78],[-99,-91],[-110,-34],[55,-28],[-14,-35],[-70,-83],[-122,-123],[-92,-67],[-118,-24],[-409,58],[-102,-1],[-273,-30],[190,-62],[86,-76],[16,-42],[-9,-54],[-136,-118],[-72,-155],[-45,-20],[-153,30],[-220,-22],[-79,11],[11,106],[-11,115],[-25,109],[-128,195],[-28,111],[10,162],[-24,267],[5,96],[28,23],[79,19],[245,-65],[-105,99],[-38,71],[1,37],[46,45],[134,43],[106,19],[234,13],[66,-9],[102,33],[59,9],[104,-13]],[[25955,114266],[114,61],[114,-2],[25,-21],[7,-97],[46,11],[121,103],[87,36],[148,16],[101,-1],[194,-24],[136,-42],[205,-100],[329,-194],[140,-58],[53,-32],[51,-82],[-24,-44],[-234,-80],[-212,-49],[-251,-101],[-171,-49],[-224,-94],[-421,-152],[-73,-53],[-119,-172],[-46,-41],[-109,-41],[-139,-10],[-39,-11],[-6,-60],[-74,-166],[-33,-179],[-33,-52],[-43,-36],[-134,-41],[-99,-22],[-135,-18],[-64,41],[-55,-2],[-175,-125],[-170,-50],[-73,-45],[-93,-28],[-69,4],[-49,20],[-79,67],[-87,142],[-178,177],[-324,110],[-231,96],[-202,-9],[-10,45],[12,78],[77,32],[-28,37],[58,50],[56,81],[93,68],[78,46],[-19,40],[13,117],[30,35],[150,43],[-3,56],[-63,12],[-44,37],[14,34],[91,82],[73,122],[134,76],[36,81],[100,87],[-33,41],[-92,20],[-75,68],[-187,275],[529,61],[364,19],[377,54],[105,3],[81,-11],[187,-76],[141,-47],[263,-69],[164,-15],[-66,-55],[-9,-28]],[[35594,114554],[-129,-43],[-41,32],[144,80],[54,-35],[-28,-34]],[[36477,114539],[-58,0],[-145,32],[-32,22],[82,38],[65,-1],[100,-67],[-12,-24]],[[32681,114909],[-81,-4],[-141,21],[-109,60],[103,141],[75,44],[55,12],[117,-4],[117,-55],[25,-65],[45,-62],[-74,-58],[-132,-30]],[[37236,114903],[28,-53],[7,-67],[-36,-115],[-35,-21],[-154,-11],[-237,-6],[-70,4],[-112,40],[-141,66],[-72,2],[-178,23],[-98,71],[-76,-8],[-50,55],[-75,-6],[-3,75],[79,79],[87,20],[24,82],[74,59],[122,59],[267,65],[173,1],[95,-20],[224,-119],[68,-52],[109,-147],[-20,-76]],[[36144,115239],[-68,-25],[-97,13],[-112,-79],[-58,-8],[-70,69],[16,29],[198,52],[67,49],[95,-28],[80,-42],[-51,-30]],[[25378,115402],[-62,23],[83,48],[-6,39],[70,3],[-33,-82],[-52,-31]],[[36813,115405],[-97,14],[-65,112],[157,46],[104,-145],[-99,-27]],[[26562,115287],[-124,-45],[-87,5],[-116,33],[-95,11],[-38,22],[32,32],[299,169],[211,62],[165,82],[110,-25],[-55,-77],[-259,-247],[-43,-22]],[[43473,115528],[-27,-39],[-99,-27],[-82,-4],[-66,40],[63,53],[234,130],[71,-27],[-44,-57],[-48,-28],[-2,-41]],[[33496,115590],[90,-43],[-12,-18],[-162,-40],[-68,-62],[-156,-12],[-160,0],[30,41],[87,67],[-69,28],[-244,-46],[-93,28],[79,72],[-190,7],[-70,43],[24,52],[145,28],[190,24],[204,38],[159,-4],[62,-17],[41,-130],[113,-56]],[[32723,115986],[129,12],[59,-43],[230,-62],[-13,-31],[-99,-40],[-69,-13],[-344,-2],[-59,27],[-73,122],[-4,46],[164,41],[92,-6],[-13,-51]],[[35446,115904],[-16,-72],[13,-41],[76,-85],[0,-50],[-36,-40],[-16,-78],[21,-62],[-112,-79],[196,-45],[-1,-84],[32,-92],[-137,61],[-97,-64],[11,-108],[64,-49],[13,-44],[-54,-7],[-126,41],[60,-81],[-72,-19],[-193,-16],[-253,4],[-114,20],[-89,-42],[-262,17],[-52,41],[-55,85],[10,21],[133,11],[-91,38],[-159,40],[9,41],[186,38],[135,75],[161,61],[165,9],[6,21],[-310,-12],[-425,-43],[-131,-21],[-110,13],[-465,-66],[-69,21],[-42,39],[30,27],[137,52],[68,45],[-8,24],[55,44],[87,6],[147,-36],[80,9],[-39,51],[32,51],[-123,11],[-67,53],[43,46],[105,47],[-12,13],[-152,-1],[-98,35],[14,32],[106,75],[78,9],[145,-29],[87,-45],[36,-69],[67,-27],[379,-186],[66,-11],[76,25],[-124,48],[-58,61],[127,35],[-78,20],[-79,1],[-100,32],[24,19],[136,14],[28,15],[-85,33],[-205,25],[-103,56],[26,33],[190,63],[138,15],[172,-8],[146,-71],[69,-47],[120,8],[-57,104],[135,55],[78,-19],[126,-64],[184,-39],[47,-37]],[[33927,115983],[-111,-3],[-11,37],[149,26],[87,48],[147,13],[151,-13],[-205,-59],[-207,-49]],[[30884,115619],[189,1],[56,-44],[-14,-38],[-92,-70],[237,47],[122,-20],[71,-73],[120,25],[-55,44],[-18,40],[80,65],[120,25],[212,-35],[130,-55],[53,-128],[-17,-79],[-68,-92],[-11,-61],[-69,-154],[-99,-71],[-213,-52],[-161,-52],[-83,-9],[-132,17],[-155,33],[-87,-9],[-143,-31],[-103,12],[-68,23],[51,22],[-85,29],[-74,-38],[-216,-89],[-289,-30],[-91,-18],[-103,-43],[-53,-45],[-83,-34],[-149,-37],[-190,-58],[-341,-60],[-214,-10],[-214,20],[-139,41],[-186,80],[-47,46],[28,31],[78,36],[116,32],[232,44],[210,69],[74,13],[203,11],[102,-6],[123,13],[178,75],[96,69],[-63,24],[-126,-49],[-227,-33],[-110,-7],[-96,47],[-51,8],[-87,-51],[-66,-22],[-327,-27],[-58,30],[-17,69],[55,77],[110,53],[-37,10],[-125,-25],[-75,29],[-50,-124],[-112,29],[-32,-16],[63,-60],[-41,-58],[-175,-62],[-70,-16],[-46,23],[-65,64],[-86,2],[-56,-66],[-52,-29],[-178,51],[-144,91],[-157,-14],[-71,3],[-214,33],[-42,48],[10,29],[82,75],[100,36],[406,7],[58,7],[320,87],[91,61],[-393,-69],[-168,-15],[-258,11],[-60,30],[82,71],[74,18],[177,25],[238,23],[156,0],[209,38],[-263,-1],[-317,-9],[-137,33],[46,61],[-26,40],[67,48],[105,36],[65,5],[125,-12],[357,-13],[-37,32],[-275,20],[-72,39],[22,48],[86,50],[251,42],[199,3],[147,-35],[58,-105],[102,-65],[281,35],[83,-9],[121,-30],[156,-90],[202,-93],[-1,-20],[-77,-30],[-4,-23],[149,-1],[85,-15],[102,-138],[96,-45],[256,5],[591,-34],[60,25],[20,57],[-19,52],[-367,114],[-32,46],[179,64],[17,36],[-31,50],[-96,48],[-85,7],[-126,46],[-49,56],[19,33],[175,73],[226,166],[104,36],[115,6],[157,-58],[-70,-105],[50,-103],[137,-76],[31,-67],[-112,-82],[39,-41]],[[38880,115933],[-141,-9],[-103,59],[-113,108],[13,37],[168,34],[80,0],[109,-66],[-54,-77],[41,-86]],[[28615,116097],[-66,-23],[-447,34],[-36,25],[81,39],[98,17],[227,14],[162,-49],[-19,-57]],[[36912,116215],[209,1],[87,-28],[171,-83],[5,-59],[-50,-67],[-47,-32],[1,-37],[184,102],[120,-13],[181,10],[219,41],[208,4],[78,-13],[166,-57],[85,-59],[-34,-22],[-277,25],[-30,-37],[206,-7],[676,-94],[29,-31],[-81,-48],[-390,-21],[-222,19],[-187,31],[-63,-7],[55,-42],[112,-13],[133,-45],[198,-16],[94,-58],[103,-32],[42,-49],[80,2],[132,-66],[-68,-81],[-113,-43],[148,-14],[157,-77],[48,34],[-26,60],[35,41],[93,-1],[158,-93],[203,44],[82,-63],[75,74],[47,18],[190,-88],[116,-19],[133,-40],[123,-8],[20,33],[-71,42],[42,18],[168,36],[90,-5],[166,50],[165,6],[205,76],[85,40],[80,-5],[219,-43],[62,4],[232,43],[173,9],[218,-25],[214,-41],[-19,-36],[83,-29],[204,-1],[88,-9],[71,-33],[14,-27],[-69,-36],[80,-16],[190,-13],[65,-107],[0,-25],[-54,-42],[-148,-56],[-164,-47],[42,-34],[96,-8],[131,21],[90,-22],[53,-50],[-46,-26],[-188,-32],[-111,42],[-48,-13],[71,-56],[-27,-32],[-4,-64],[-24,-53],[-409,-10],[-251,-63],[-112,4],[-149,37],[-138,-4],[-84,25],[-55,45],[-25,44],[6,86],[-51,8],[-80,39],[-35,-35],[63,-49],[-22,-65],[-60,-59],[-39,-14],[-106,-1],[-162,-34],[-78,-5],[-169,23],[-83,44],[-33,-53],[-108,10],[-45,40],[-43,-46],[-114,-24],[-64,-1],[-66,29],[-100,-18],[-135,29],[-5,-46],[-141,-6],[-159,15],[-99,-22],[-178,13],[-180,3],[-57,33],[8,47],[85,123],[-84,32],[-63,-20],[-41,-61],[-46,-3],[-75,25],[-69,-10],[10,-66],[-29,-20],[-128,-38],[-123,-4],[-73,9],[-149,34],[-83,2],[-99,58],[-149,28],[-2,-60],[-89,12],[-72,-12],[-157,65],[-39,34],[-91,180],[42,50],[-117,74],[-34,82],[41,92],[95,92],[18,32],[-50,132],[-124,97],[-177,159],[-89,97],[-94,4],[-153,-60],[-81,-3],[-381,17],[-112,-25],[-119,5],[-75,68],[-170,37],[-85,50],[11,18],[97,17],[-366,115],[-89,16],[71,28],[99,6],[8,25],[-99,31],[-65,41],[24,40],[164,23],[136,32],[182,9],[220,-32],[358,-73]],[[27758,116529],[32,-27],[-64,-41],[-254,-61],[-50,-29],[19,-24],[185,-93],[-24,-42],[-85,7],[-54,-31],[125,-96],[-17,-34],[-102,-53],[-106,-24],[-229,-31],[-20,-111],[-47,-52],[-145,-17],[-151,50],[-77,71],[24,88],[79,147],[-43,14],[-181,-47],[-46,-52],[-26,-80],[-113,-15],[-39,-28],[77,-48],[0,-57],[-90,-54],[-61,-78],[-75,-13],[-86,66],[-52,69],[-69,-28],[4,-86],[-37,-40],[75,-33],[-25,-47],[-54,-48],[-77,-40],[-107,-4],[-107,-19],[-66,128],[-32,17],[-58,92],[-55,-2],[-51,-99],[-84,-26],[-93,-2],[-114,28],[-92,10],[-65,-12],[-147,-51],[-57,4],[-47,41],[41,50],[-34,60],[-120,-23],[56,65],[109,88],[67,33],[323,28],[23,8],[154,118],[89,48],[220,71],[55,65],[68,31],[159,99],[319,161],[117,20],[351,33],[252,-44],[60,-3],[56,33],[132,-15],[60,28],[-140,37],[-5,23],[89,44],[203,10],[350,-125]],[[38834,116462],[-113,-40],[-57,2],[-330,81],[-66,41],[-15,118],[14,35],[132,33],[181,-19],[108,-23],[195,-106],[3,-92],[-52,-30]],[[32492,116375],[-66,-13],[-217,41],[-147,118],[-82,121],[-43,26],[-15,44],[-79,69],[87,20],[119,-13],[128,-65],[122,-94],[22,-62],[80,-3],[98,-53],[38,-62],[-45,-74]],[[36400,116827],[108,-26],[118,14],[126,1],[281,-11],[186,8],[122,-22],[74,-55],[-91,-22],[-78,-108],[-136,-15],[-247,15],[-679,7],[-120,77],[11,54],[42,29],[197,48],[86,6]],[[33726,116761],[-166,-3],[-129,25],[-34,29],[4,77],[228,13],[120,-5],[137,-26],[84,-29],[54,-54],[-171,-4],[-127,-23]],[[28498,116801],[-118,-23],[-78,0],[-138,34],[-161,101],[-21,37],[104,17],[78,33],[119,26],[22,-51],[83,-18],[82,-44],[56,-8],[64,-63],[-92,-41]],[[29951,117044],[345,-17],[16,-15],[-65,-69],[-185,-37],[-237,-33],[-49,-16],[63,-37],[184,3],[60,-16],[15,-96],[-35,-70],[-209,-55],[-91,-13],[-143,1],[-312,-58],[-181,13],[-117,56],[-122,22],[-102,38],[-19,35],[37,36],[-65,102],[25,87],[177,27],[215,45],[473,57],[143,-6],[179,16]],[[33162,117074],[-107,-6],[-4,32],[65,43],[94,18],[44,-37],[-92,-50]],[[30228,117425],[75,-41],[59,-6],[61,-63],[11,-58],[-23,-50],[-137,-23],[-135,13],[-171,-19],[-145,11],[-178,52],[-115,-69],[-139,-3],[-160,58],[-184,-17],[-265,-40],[-52,35],[62,52],[219,63],[184,34],[217,18],[275,93],[195,35],[91,-1],[255,-74]],[[36090,117342],[102,-18],[175,8],[228,-60],[62,-59],[-164,-58],[-26,-26],[98,-33],[71,-50],[-65,-79],[-48,-17],[-109,-3],[-94,-27],[-147,-26],[-200,-11],[-154,-42],[-67,-4],[-45,89],[-143,34],[-84,47],[-16,28],[266,19],[6,28],[-128,32],[-213,19],[-100,66],[-8,42],[-80,30],[-26,61],[110,29],[-99,93],[-19,57],[52,21],[266,-6],[92,-9],[192,-43],[150,-23],[139,-64],[26,-45]],[[32980,117888],[101,-14],[119,-45],[113,-94],[-34,-88],[132,-25],[14,54],[224,54],[73,-7],[174,-67],[66,-6],[48,-41],[-49,-63],[99,-29],[208,26],[181,-64],[100,-75],[75,-26],[-31,-62],[-72,-39],[32,-31],[9,-63],[82,-16],[185,-113],[57,-84],[-72,-97],[-340,-44],[-137,27],[-134,41],[-83,72],[-20,64],[-107,74],[-97,4],[-229,45],[-98,11],[-236,-22],[-77,57],[23,29],[-407,-36],[-116,-42],[-163,7],[-189,57],[-96,81],[-4,35],[115,43],[221,-28],[194,-14],[84,14],[37,38],[-45,20],[-186,8],[39,20],[158,20],[82,31],[-63,23],[-211,-4],[-63,35],[120,62],[-119,60],[-104,-23],[-147,-91],[-101,22],[101,93],[-72,42],[-273,-13],[-15,92],[79,111],[233,-9],[380,26],[111,3],[121,-26]],[[34976,118352],[10,-91],[-31,-79],[-45,-9],[-154,41],[-13,39],[-79,33],[-209,-2],[-39,24],[-13,78],[29,44],[139,35],[249,-14],[111,-29],[45,-70]],[[37950,119153],[56,-58],[208,-138],[94,-51],[160,-62],[17,-66],[337,-66],[81,22],[148,1],[70,-36],[9,-83],[-22,-68],[77,-45],[207,-47],[147,-4],[-79,70],[-100,21],[-14,91],[95,29],[129,1],[194,-40],[21,-129],[-128,-62],[310,-38],[97,-104],[-72,-161],[-65,-58],[187,13],[92,33],[134,-7],[67,-21],[100,-83],[62,60],[68,27],[63,-56],[188,-141],[10,-30],[-107,-53],[-345,-76],[-155,-43],[-116,-44],[-102,0],[-26,-53],[-199,-126],[-60,-29],[-105,21],[-26,31],[-16,99],[62,100],[-124,-44],[-37,-74],[10,-85],[-27,-64],[83,-18],[23,-63],[-25,-30],[-105,2],[-127,73],[-70,-12],[51,-85],[7,-49],[-79,-139],[-131,12],[-241,160],[-117,93],[-65,-16],[138,-125],[108,-116],[-62,-7],[-96,31],[-66,37],[-117,26],[-153,-15],[79,-27],[62,-58],[-124,-24],[-343,26],[-211,34],[-194,53],[-141,53],[-73,50],[52,18],[185,24],[156,28],[-336,30],[-238,3],[-158,99],[128,40],[-243,44],[-92,40],[-21,45],[92,30],[283,72],[194,11],[68,21],[59,67],[293,24],[226,31],[-390,8],[-102,46],[-145,8],[-479,-111],[-76,17],[73,49],[-73,11],[-127,-8],[-301,-70],[-92,45],[-146,25],[-33,20],[30,76],[493,97],[-27,41],[-169,-34],[-139,-17],[-242,15],[-61,21],[-199,100],[-55,48],[-21,75],[-58,77],[427,-48],[167,-9],[322,-3],[28,64],[137,37],[-141,5],[-259,-47],[-92,1],[-104,67],[-111,-12],[-134,22],[-66,33],[15,41],[139,21],[114,-12],[57,22],[-231,109],[8,96],[180,24],[90,-24],[121,-4],[86,-27],[57,-53],[175,-9],[241,1],[-119,35],[-169,22],[-83,77],[-313,60],[106,114],[124,34],[199,-13],[298,52],[208,-15],[47,31],[-74,56],[-210,2],[-129,20],[-17,51],[75,24],[313,11],[128,-13],[268,-47],[179,-65],[48,-37]],[[47596,120465],[352,-12],[113,4],[130,-31],[653,-11],[72,-27],[-177,-61],[-656,-99],[80,-21],[334,15],[338,52],[381,70],[185,-30],[80,62],[145,-9],[117,-68],[159,31],[213,-7],[72,-29],[-51,-54],[218,-89],[-69,-80],[332,48],[335,-22],[131,-32],[80,-70],[-29,-43],[-147,-66],[-152,-52],[-89,-47],[-138,-25],[-472,-112],[-231,-36],[-192,-42],[-281,7],[-116,-53],[-219,-27],[-268,-9],[-124,-91],[-764,-134],[63,-31],[97,9],[1112,162],[213,11],[198,-12],[-22,-38],[-281,-107],[-357,-96],[-178,-74],[-451,-126],[-369,-126],[-142,-64],[-190,-114],[-143,-39],[-177,22],[-226,75],[196,-159],[-22,-31],[-360,-32],[-159,-29],[-197,-4],[-9,-37],[143,-11],[318,36],[133,-20],[-81,-67],[-258,-60],[106,-44],[-120,-60],[-248,-42],[-203,-5],[-436,92],[-300,37],[-108,-4],[-114,-27],[262,-40],[250,-15],[104,-78],[-4,-64],[-98,-40],[-172,5],[-233,-34],[-168,4],[-199,-26],[-105,-5],[-117,12],[-126,29],[-358,27],[260,-69],[77,-60],[73,-11],[148,-50],[219,-25],[158,22],[106,-4],[-22,-123],[-47,-12],[-255,0],[-121,18],[-171,39],[-202,-9],[-438,-33],[-143,0],[-105,14],[-262,-1],[301,-93],[160,25],[296,28],[129,4],[116,-12],[130,-33],[68,-48],[170,-6],[130,-16],[287,-94],[-49,-72],[-143,-52],[-223,-16],[-245,5],[-176,-6],[381,-82],[127,-53],[-154,-74],[-135,-147],[-91,-16],[-120,3],[-152,-37],[-115,-7],[-207,13],[-240,0],[-31,-70],[16,-161],[-12,-67],[-90,-73],[-90,-31],[-162,-26],[-115,-1],[-332,-22],[-287,11],[-130,31],[-277,105],[-58,-8],[65,-48],[97,-45],[-106,-38],[-234,-19],[98,-48],[131,0],[180,39],[192,-18],[171,-65],[151,30],[184,1],[67,-26],[29,-92],[-20,-32],[43,-31],[104,-30],[81,-6],[144,58],[72,8],[125,-88],[7,-68],[-59,-77],[-71,-51],[-280,-83],[-151,-67],[-97,-31],[-191,-41],[-100,-8],[-217,-44],[-118,5],[-14,21],[70,108],[1,27],[-62,43],[-84,30],[-181,-20],[-100,25],[-91,76],[-139,4],[64,-85],[-11,-33],[-497,-19],[-214,10],[-44,29],[-102,126],[-22,-222],[-373,-36],[-232,31],[-188,59],[-78,40],[-67,65],[-47,-48],[-51,-97],[-290,50],[-59,96],[-3,-139],[-261,18],[-126,-5],[-37,122],[-6,134],[-51,-85],[22,-72],[8,-88],[-112,25],[-243,12],[-87,12],[31,233],[314,116],[92,55],[68,22],[246,23],[201,0],[210,44],[-98,75],[-142,28],[-68,33],[-83,68],[-135,158],[33,45],[224,61],[207,14],[272,-58],[92,-44],[190,-165],[61,-33],[275,-60],[91,-10],[330,21],[157,36],[57,50],[97,49],[150,103],[83,81],[36,61],[-33,18],[-259,-201],[-53,-37],[-152,-61],[-167,-7],[-137,27],[-161,-43],[-98,11],[-87,30],[-1,143],[-110,114],[222,93],[179,93],[29,39],[-156,-8],[55,201],[-104,-150],[-170,-119],[-72,-23],[-272,-19],[67,73],[-4,68],[-153,-61],[-209,-49],[-184,5],[-91,30],[26,75],[0,93],[141,97],[91,74],[62,77],[244,35],[237,14],[199,40],[97,7],[93,-19],[379,-32],[274,-47],[121,51],[237,-3],[125,17],[159,60],[-106,8],[-177,-41],[-267,25],[-310,4],[-232,21],[-77,37],[-15,51],[118,15],[186,-45],[70,22],[-231,94],[-140,106],[-135,82],[-109,82],[-158,54],[-248,22],[-49,15],[-118,71],[-32,120],[-52,74],[50,94],[83,42],[494,-33],[208,5],[267,-12],[143,-23],[164,-57],[146,-64],[141,-43],[129,-59],[225,-129],[169,-48],[183,-28],[242,-5],[152,44],[-254,3],[-128,13],[-150,66],[-216,118],[-203,76],[-151,75],[-120,72],[-11,31],[194,37],[670,49],[400,58],[182,83],[535,95],[379,35],[145,6],[138,24],[-232,19],[-265,0],[-236,11],[-71,21],[38,64],[147,87],[323,107],[218,45],[63,31],[-469,-70],[-163,-50],[-165,-75],[-85,-22],[-115,-1],[-87,-56],[-88,-108],[-227,-82],[-377,-76],[-586,-65],[-222,11],[50,37],[186,68],[-70,24],[-121,-19],[-268,-15],[-106,-28],[-184,-82],[-148,-21],[-383,0],[-180,38],[-226,-10],[-121,27],[-31,41],[151,87],[264,94],[170,45],[244,37],[573,43],[26,31],[-580,-35],[-494,-44],[-195,-59],[-364,-156],[-108,-39],[-164,-9],[-224,33],[-297,71],[-96,33],[-51,42],[41,19],[325,41],[441,-8],[198,8],[195,25],[287,61],[313,86],[-53,33],[-288,-37],[-322,-83],[-281,-29],[-694,-15],[-221,-23],[-96,5],[-155,64],[15,33],[165,38],[153,16],[-184,36],[-16,19],[106,41],[230,60],[117,19],[213,12],[11,28],[-163,4],[-215,-16],[-570,-98],[-132,20],[24,24],[305,103],[-337,31],[-205,-45],[-129,-9],[-121,40],[16,33],[184,72],[314,63],[141,11],[228,1],[109,15],[218,71],[132,30],[217,24],[183,-8],[181,-59],[95,-5],[160,41],[202,-18],[221,-50],[104,20],[154,0],[-114,43],[-547,100],[-15,21],[354,51],[223,79],[163,31],[228,-52],[335,-33],[250,-129],[162,-45],[132,11],[-142,45],[-22,49],[74,13],[410,-88],[445,-81],[171,-18],[202,-64],[24,32],[-216,67],[-576,114],[-228,60],[-194,81],[-2,23],[185,46],[147,17],[-190,58],[2,19],[232,10],[168,-34],[163,-5],[-145,89],[59,45],[152,-7],[251,-44],[448,-22],[-74,40],[-270,59],[-133,54],[110,31],[304,-4],[282,-29],[240,10],[211,-16],[456,-148],[118,-84],[59,-10],[191,51],[-33,24],[-192,56],[-139,64],[-214,72],[-94,62],[595,27],[573,-23],[93,-17],[213,-96],[186,-56],[214,-11],[-198,62],[-89,42],[47,66],[224,57],[357,14],[241,-56],[238,54],[388,12],[207,-69]],[[81628,95576],[-19,-68],[2,-77],[40,-3]],[[82026,95294],[-20,-91],[-3,-48],[17,-32],[-3,-48],[-68,10],[-33,39],[-47,-15],[-21,-81],[19,-43],[27,-117],[-45,-11],[-44,87],[-23,4],[-42,-15],[-64,-35],[-48,7],[-20,29],[-23,93],[-53,10],[-19,-15],[-4,-131],[-21,-47]],[[81488,94844],[-78,-117],[-10,-47],[21,-75],[-10,-21],[-30,-11],[-21,23],[-9,39],[-46,54],[21,45]],[[81326,94734],[-3,11]],[[81323,94745],[-77,24],[-79,94],[-8,26],[2,83],[-9,30],[-22,0],[-31,-29],[-29,-44],[-65,-59],[19,-66],[-48,-76],[-9,-25],[-88,-66],[-84,35],[-24,4],[-90,-45]],[[80681,94631],[-86,-23],[-47,32],[-29,64],[-24,24],[-54,79],[19,76],[-14,27],[-11,71],[-77,15],[-65,-5],[-46,-25],[-37,-43],[16,-56],[-31,-41],[-49,-32],[-50,3],[0,44],[54,45],[12,69],[-27,35],[3,21],[40,106],[107,101],[8,53]],[[80293,95271],[12,81],[73,39],[141,183],[21,38],[-34,27],[-10,23],[30,41],[36,26],[36,0],[29,-40],[60,0],[33,16],[33,64],[51,32],[36,-16],[99,-5],[71,9],[45,21],[56,0],[38,-12],[62,24],[-3,25],[-43,-5],[-21,25],[14,30],[59,31]],[[81217,95928],[19,-7],[48,-46],[28,12],[38,-42],[129,10],[147,-102]],[[48420,23749],[-110,17],[-1,26],[31,8],[94,-6],[-14,-45]],[[48544,23828],[-117,36],[6,29],[84,49],[38,-91],[-11,-23]],[[48896,24209],[-35,-30],[-36,26],[16,29],[33,19],[37,-17],[-15,-27]],[[48634,24262],[-40,-62],[-37,-28],[-35,-7],[-26,14],[-27,63],[-53,-7],[-46,-36],[-33,-11],[-130,27],[-28,33],[-17,71],[-54,63],[83,36],[101,0],[193,-28],[78,-6],[59,-60],[12,-62]],[[47504,24425],[346,-69],[106,42],[84,-1],[25,-58],[-85,-60],[5,-34],[88,-10],[43,-44],[-18,-37],[8,-34],[66,-56],[40,-56],[5,-87],[-47,6],[-31,23],[-28,56],[-75,22],[-54,27],[-83,10],[-35,-10],[-28,56],[19,74],[-11,17],[-41,-11],[-61,50],[-63,12],[-27,-94],[77,-121],[-26,-1],[-74,22],[-41,51],[-44,22],[-20,29],[-10,55],[-62,-12],[-27,43],[-40,19],[25,60],[16,125],[78,-26]],[[46949,24461],[27,-53],[53,-17],[82,15],[35,17],[50,9],[58,-109],[-6,-34],[-46,-36],[-60,3],[-3,35],[-20,20],[-49,-17],[-99,32],[-22,49],[-91,68],[-30,4],[-50,-33],[-21,32],[12,34],[92,-3],[46,-16],[42,0]],[[46777,25042],[96,-56],[63,1],[7,-94],[-59,-89],[-70,43],[-72,57],[-37,-10],[-48,14],[-39,-3],[-25,-33],[-56,-17],[-10,66],[-52,61],[-51,50],[28,75],[64,38],[126,-27],[65,-23],[70,-53]],[[46117,25426],[18,-68],[84,15],[88,-21],[47,-70],[72,-83],[-43,-38],[-26,-55],[-1,-28],[-84,-64],[-49,-4],[-83,-33],[-38,42],[33,17],[43,60],[8,63],[-47,11],[-48,-8],[-24,19],[-20,-58],[6,-43],[-21,-22],[-79,46],[5,75],[-9,74],[-68,-4],[-47,56],[-26,59],[-88,17],[68,83],[103,12],[35,-42],[115,-29],[-5,60],[16,20],[45,-18],[20,-41]],[[45487,25815],[48,-16],[90,-14],[80,-32],[42,-31],[55,-9],[45,-39],[43,-13],[64,-81],[68,-56],[-35,-12],[-79,26],[-75,14],[-15,49],[-76,76],[-86,31],[-62,-10],[-57,6],[-62,61],[-62,51],[-27,60],[-39,47],[18,23],[42,-26],[64,-61],[16,-44]],[[47956,24471],[-65,0],[-17,-17],[-102,-23],[-175,36],[-43,32],[-59,70],[-21,-19],[-111,-53],[-46,-3],[-62,47],[-93,-40],[-103,41],[-81,25],[-131,15],[-92,51],[-168,-4],[-30,17],[-11,51],[9,23],[36,15],[10,28],[36,-7],[47,-37],[46,36],[62,35],[85,-39],[83,22],[29,57],[44,7],[42,-15],[-1,-95],[55,-13],[67,1],[46,-18],[6,30],[-74,78],[-30,49],[-42,28],[-53,15],[-45,91],[3,80],[-5,78],[97,42],[-23,67],[34,50],[37,19],[38,-185],[28,-65],[-35,-13],[-73,0],[41,-91],[66,-31],[58,-67],[1,-49],[32,-22],[77,-2],[53,10],[25,33],[29,10],[52,-41],[87,-30],[41,-56],[5,-58],[26,10],[54,69],[36,36],[-65,36],[-342,171],[-42,68],[-28,86],[1,88],[25,28],[61,35],[112,49],[129,70],[16,14],[-2,44],[-16,30],[-51,22],[-54,6],[-102,-12],[-93,-47],[-53,3],[-50,25],[-37,51],[-19,69],[7,84],[23,41],[30,18],[53,7],[29,33],[-14,30],[-42,30],[-52,73],[20,12],[62,8],[85,-68],[25,0],[74,62],[43,59],[39,68],[32,40],[36,4],[107,-126],[37,-5],[125,68],[69,-53]],[[45592,26505],[-13,-7],[-72,30],[-36,37],[-22,83],[48,-17],[37,-42],[62,-42],[-4,-42]],[[45299,26715],[18,-136],[14,-18],[43,-10],[48,-69],[2,-19],[-58,-117],[-12,-83],[-68,6],[-28,82],[-43,80],[-14,93],[-24,80],[42,46],[40,-10],[3,61],[37,14]],[[45413,26961],[-1,-59],[-26,-24],[-47,20],[-53,-47],[-36,4],[-48,21],[-42,-87],[-62,-71],[-5,48],[27,72],[36,122],[49,-28],[69,27],[62,50],[54,0],[23,-48]],[[45093,27376],[-13,-64],[-35,6],[-28,76],[25,87],[-4,34],[117,-11],[18,-9],[-38,-49],[-38,-12],[-4,-58]],[[45199,27644],[-84,-56],[-25,23],[-61,0],[53,231],[50,-24],[38,-7],[51,-23],[55,-15],[16,-60],[-54,-28],[-39,-41]],[[45177,28660],[-4,-55],[-64,-107],[-104,-112],[-32,0],[-27,24],[67,79],[-12,51],[-53,46],[8,40],[36,33],[19,-9],[84,28],[26,22],[51,4],[5,-44]],[[45448,28443],[4,-102],[-7,-102],[-17,-127],[3,-25],[25,-22],[-16,-117],[-43,-103],[-72,-3],[-21,57],[-5,81],[-25,61],[9,64],[21,20],[3,62],[33,44],[-7,21],[-93,-77],[-13,-50],[-2,-102],[-16,-59],[-15,-11],[-101,3],[-65,54],[-42,-15],[-9,66],[21,52],[79,-4],[14,93],[-25,22],[-45,72],[15,26],[46,37],[24,4],[23,-21],[57,16],[-4,59],[-50,26],[11,45],[64,43],[37,43],[2,49],[-15,49],[36,60],[45,20],[61,-32],[36,-3],[16,-40],[23,-234]],[[45003,28711],[-49,-1],[-12,124],[57,180],[4,68],[-19,51],[-3,60],[73,36],[23,-38],[27,-101],[52,-144],[-2,-137],[-28,-34],[-90,-35],[-33,-29]],[[45409,28830],[-8,-16],[-53,10],[-92,-18],[-39,63],[-17,101],[-34,78],[-35,96],[-15,80],[21,36],[96,36],[35,58],[29,-7],[-8,-119],[18,-40],[32,-33],[28,-121],[21,-30],[-1,-58],[22,-116]],[[45174,29355],[-35,14],[-29,38],[25,25],[49,26],[37,-3],[33,-20],[5,-23],[-58,-31],[-27,-26]],[[45519,30850],[-24,-31],[-42,-15],[-42,24],[-50,-11],[-5,53],[19,44],[38,51],[27,70],[-3,98],[23,22],[12,35],[48,21],[10,-73],[-13,-130],[33,-77],[-2,-55],[-29,-26]],[[45204,31408],[-24,-8],[-19,60],[27,14],[14,-20],[2,-46]],[[45812,31456],[-27,-7],[-17,55],[-29,47],[-7,49],[16,38],[40,9],[20,-45],[10,-99],[-6,-47]],[[46090,31484],[-104,-55],[-53,18],[-20,41],[-21,93],[56,77],[21,63],[3,63],[23,10],[77,-34],[80,-51],[28,-36],[6,-28],[-58,-113],[-38,-48]],[[45767,31753],[-21,-30],[-33,-5],[-52,-35],[-9,-67],[36,-44],[39,-129],[16,-74],[2,-61],[26,-60],[2,-26],[-13,-76],[-33,-12],[-9,-40],[-72,-3],[-35,14],[4,90],[-46,35],[-31,60],[-35,103],[-30,32],[-35,82],[-51,69],[59,45],[-9,77],[87,54],[38,-22],[34,8],[15,18],[-4,79],[11,63],[38,32],[40,4],[36,-70],[49,-27],[0,-36],[-14,-48]],[[45735,32148],[9,-34],[-49,0],[-23,-32],[-69,24],[-10,46],[74,3],[48,23],[20,-30]],[[45365,32301],[-61,-13],[-14,21],[11,32],[31,10],[21,-12],[12,-38]],[[45751,32483],[-63,-18],[-30,11],[-54,-1],[-53,27],[-51,38],[-14,23],[7,31],[36,74],[34,140],[23,201],[-18,76],[15,108],[1,76],[38,77],[7,72],[16,78],[-19,47],[12,19],[131,-56],[88,-14],[4,-59],[17,-46],[10,-82],[14,-19],[-7,-59],[-40,-26],[3,-54],[23,-52],[-70,-29],[-67,-54],[10,-25],[40,-57],[45,-40],[57,-122],[-45,-96],[-47,-37],[-43,-22],[5,-92],[-15,-38]],[[43584,39236],[-77,-14],[2,16],[39,47],[45,-23],[-9,-26]],[[30459,43766],[-67,-21],[2,38],[17,34],[49,-20],[-1,-31]],[[48047,26209],[-243,66],[-55,35],[-46,4],[-89,-44],[-49,-106],[-25,-30],[-62,-29],[-62,-5],[-208,-103],[-74,-8],[-51,-28],[-49,-39],[-19,-84],[7,-51],[-56,-184],[-14,-102],[0,-52],[16,-85],[-21,-145],[-37,-32],[-93,-41],[-63,30],[-107,26],[-77,56],[-99,40],[-31,23],[-88,112],[-15,84],[46,67],[97,3],[60,11],[38,-36],[11,-78],[-32,-68],[48,8],[21,175],[147,88],[48,51],[47,78],[11,53],[-31,24],[-70,32],[-219,-165],[-100,-44],[-64,-47],[-78,-85],[-31,-82],[-8,-62],[-76,29],[-117,90],[-24,33],[24,46],[35,38],[3,129],[9,46],[24,36],[45,40],[41,-8],[3,-31],[74,2],[145,115],[60,3],[78,-26],[89,15],[34,39],[-66,31],[-63,17],[-179,11],[-38,-13],[-53,-60],[-29,45],[-60,22],[-29,-4],[-28,-30],[5,-45],[-16,-49],[-56,-48],[-38,-77],[-1,-90],[-43,-36],[-93,13],[-52,63],[-21,42],[-59,47],[129,57],[45,33],[72,120],[-21,33],[-26,0],[2,-52],[-28,-43],[-60,20],[-87,-63],[-54,17],[-88,-19],[-43,34],[-9,43],[15,46],[-16,76],[-49,14],[-37,126],[-25,58],[43,-1],[27,-24],[40,-3],[89,-53],[56,25],[8,84],[15,0],[51,-52],[32,5],[56,-14],[82,25],[83,58],[44,59],[20,9],[43,-25],[0,-42],[46,-70],[2,-76],[-47,-53],[7,-37],[47,35],[15,36],[4,78],[-39,93],[-4,63],[44,38],[12,31],[2,58],[-23,40],[-94,93],[-158,92],[-30,-26],[176,-95],[36,-44],[52,-42],[-7,-43],[-141,-42],[-112,-91],[-84,-55],[-58,20],[-57,129],[-44,42],[-45,4],[-16,22],[-34,-19],[-75,51],[-21,22],[54,71],[61,-28],[14,200],[-19,45],[-78,50],[-38,-7],[-53,7],[-35,23],[-74,22],[-45,30],[-54,17],[-72,126],[-31,67],[-17,73],[111,1],[65,12],[16,30],[-23,58],[-32,46],[23,43],[34,33],[34,-15],[86,-74],[15,-50],[60,-152],[22,-27],[126,-86],[18,2],[-8,71],[36,97],[55,48],[-59,61],[-61,-169],[-37,-31],[-95,151],[5,87],[102,-18],[-35,29],[-118,50],[-52,33],[-39,59],[-49,50],[84,90],[44,63],[135,-34],[26,20],[-23,46],[-26,-14],[-42,28],[-66,87],[14,125],[26,17],[55,17],[63,-27],[28,-21],[24,10],[-24,60],[-42,22],[-45,43],[4,47],[26,82],[8,60],[-4,47],[34,49],[-40,-4],[-20,-113],[-28,-43],[-35,-174],[-35,25],[-28,44],[4,35],[-9,211],[-1,177],[17,138],[71,70],[52,-6],[20,20],[-70,33],[-42,-19],[-31,-26],[-57,19],[-11,71],[-33,61],[-6,79],[3,113],[79,-10],[64,-22],[171,2],[141,-109],[61,15],[-2,22],[-48,27],[-29,61],[-18,18],[-11,79],[-34,156],[-14,-4],[-43,-143],[-40,-43],[-123,-28],[-54,17],[-12,37],[1,43],[-23,21],[-77,29],[-20,39],[52,93],[57,-22],[34,-46],[35,-9],[39,36],[8,25],[-82,42],[-69,70],[35,72],[80,82],[25,19],[-21,69],[24,76],[-25,62],[-45,67],[-60,15],[-13,-20],[7,-48],[-19,-14],[-77,14],[-52,45],[-84,41],[-20,79],[29,80],[-14,2],[-55,-63],[-83,-33],[-60,-10],[-38,-46],[52,-16],[25,-78],[-19,-50],[-28,-4],[-60,54],[-31,61],[0,49],[22,66],[94,89],[27,37],[55,42],[74,94],[65,52],[-31,43],[-33,65],[3,90],[131,36],[57,-15],[72,3],[40,22],[91,29],[27,35],[6,50],[-18,104],[37,54],[51,7],[41,-27],[-25,-85],[-34,-185],[-16,-42],[-27,-36],[18,-76],[-27,-53],[-118,-56],[-7,-23],[69,4],[53,12],[52,48],[17,72],[22,142],[28,20],[33,4],[18,-33],[-6,-147],[-44,-214],[-54,-86],[-3,-49],[42,4],[32,46],[24,59],[23,82],[-3,59],[7,37],[10,120],[16,61],[-1,85],[-29,32],[-41,20],[-10,52],[21,103],[78,-3],[74,71],[48,25],[28,-5],[96,-68],[16,24],[-52,40],[-70,73],[-95,11],[36,181],[122,41],[146,129],[26,98],[7,110],[-71,28],[-74,72],[-61,38],[-53,48],[10,72],[7,117],[67,25],[31,160],[-44,123],[10,91],[59,79],[27,113],[51,6],[-3,92],[-34,69],[-2,97],[32,114],[62,-3],[-37,69],[-29,76],[5,31],[28,26],[33,14],[35,-39],[51,-124],[8,32],[-20,126],[-17,157],[-54,-20],[-49,11],[-37,60],[34,75],[37,40],[74,15],[54,50],[19,105],[-18,-10],[-30,-92],[-49,-32],[-55,22],[-58,80],[-32,19],[-32,2],[-26,-20],[-69,-141],[-29,-24],[-121,-12],[-92,38],[21,72],[27,19],[0,22],[-37,5],[-43,39],[-19,50],[-9,88],[-39,140],[-8,100],[28,72],[58,280],[18,144],[32,125],[-1,83],[81,76],[31,45],[69,256],[10,138],[-109,418],[-17,79],[-5,100],[26,165],[3,62],[-23,90],[-62,148],[-1,75],[26,78],[-25,96],[26,106],[98,-25],[44,12],[24,28],[19,79],[9,124],[14,130],[48,32],[17,73],[40,103],[41,287],[41,70],[42,82],[-16,121],[51,97],[22,74],[29,70],[70,100],[18,123],[55,211],[10,136],[17,92],[-5,86],[33,104],[32,88],[10,49],[71,116],[12,93],[-25,63],[-1,97],[-20,135],[47,51],[18,37],[61,216],[-4,84],[17,105],[-40,125],[-5,280],[-22,215],[-37,228],[4,127],[-23,159],[-1,91],[17,207],[116,131],[22,146],[14,197],[-4,144],[-12,65],[-57,106],[-14,189],[11,49],[47,54],[33,74],[17,114],[35,91],[14,218],[29,174],[15,61],[54,96],[7,58],[-2,138],[7,84],[37,165],[4,76],[41,170],[9,122],[18,64],[-7,72],[11,162],[-27,92],[-6,54],[34,166],[62,118],[16,86],[3,55],[-49,275],[-6,93],[12,218],[17,141],[-6,112],[14,130],[34,88],[7,62],[-12,26],[-39,32],[-33,80],[-2,78],[10,57],[3,81],[48,16],[26,45],[25,85],[31,203],[14,253],[18,152],[13,75],[11,158],[18,102],[4,95],[-4,72],[-47,368],[2,135],[20,210],[-1,296],[-4,69],[-17,64],[-6,88],[-28,153],[-25,306],[-1,162],[-11,137],[-24,37],[18,8],[83,6],[54,29],[57,54],[37,78],[16,72],[0,63],[-17,80],[-4,57],[20,27],[52,10],[75,100],[7,-79],[59,-106],[19,-119],[13,-15],[81,-60],[2,-14],[-24,-51],[23,-96],[23,-187],[5,-73],[21,-110],[4,-107],[16,-40],[32,-48],[43,-48],[59,-93],[56,-60],[12,-35],[-48,-89],[-53,-112],[1,-14],[50,-80],[9,-32],[-1,-45],[-17,-54],[-55,-18],[-14,-31]],[[47910,48658],[13,-23],[-2,-54],[20,-59],[-31,-47],[7,-56],[105,-107],[6,-20],[-33,-55],[-3,-91],[16,-51],[42,-17],[103,-245],[-1,-103],[5,-119],[32,-94],[5,-75],[10,-85],[38,-51],[15,-103],[2,-90],[29,-111],[4,-96],[-7,-68],[4,-66],[37,-39],[92,-8],[94,25],[72,23]],[[125283,76583],[22,-31],[14,-45],[18,-158],[-43,-49],[-39,-19],[-78,-186],[-17,-58],[-13,-25],[-3,-51],[-20,-89],[-18,-110],[-11,-45],[-22,-35],[-64,-29],[-41,-60],[-47,-45],[9,-40],[-21,-22],[-22,4],[-66,-18],[-24,-33],[-24,-62],[-49,-23],[-30,-6],[-52,44],[-25,13],[-68,18],[-66,29],[-47,34],[-95,83],[-11,150],[-16,80],[-1,29],[6,249],[19,51],[42,56],[48,44],[69,92],[50,42],[42,60],[-43,5],[18,52],[41,43],[45,-11],[41,11],[31,46],[28,10],[110,-15],[76,21],[38,42],[75,-10],[21,-44],[10,55],[74,-55],[4,85],[35,27],[28,-54],[28,-31],[34,-16]],[[125066,77350],[16,-24],[43,17],[8,-45],[-15,-36],[-36,28],[-60,-4],[-7,16],[19,35],[32,13]],[[126039,77730],[-42,-14],[6,39],[38,24],[-2,-49]],[[126102,77704],[-20,11],[-13,56],[30,52],[34,-14],[-26,-40],[-5,-65]],[[126432,78541],[-56,38],[-9,31],[26,1],[39,-70]],[[128425,79719],[-14,-42],[-26,7],[-6,39],[12,35],[34,-39]],[[129130,80388],[-32,-32],[-20,15],[0,43],[10,39],[-11,28],[11,34],[24,10],[22,-32],[4,-33],[-13,-36],[5,-36]],[[129746,82219],[-51,-17],[1,51],[31,48],[19,-41],[0,-41]],[[130143,83328],[-38,32],[-9,33],[24,7],[23,-72]],[[130243,83476],[-16,-27],[-15,57],[30,11],[1,-41]],[[130196,83526],[-6,-14],[-53,40],[-58,9],[-20,35],[-3,55],[60,-2],[75,-50],[17,-26],[-12,-47]],[[130010,84590],[-36,-19],[-112,59],[-79,66],[-47,79],[-7,33],[55,-5],[54,-29],[12,-43],[37,-40],[99,-59],[24,-42]],[[133741,92279],[-71,67],[-49,79],[-3,102],[-38,19],[-30,39],[-26,-8],[-53,25],[-16,-23],[-9,-50],[-27,-82],[-2,-49],[-23,-161],[-10,-18],[-40,-9],[-16,-30],[-19,-6],[-43,36],[-25,2],[-22,-17],[-41,-71],[-10,-65],[-117,-126],[-75,2],[-53,-14],[-86,-7],[-51,10],[-64,-9],[-49,-17],[-6,-62],[22,-40],[42,-98],[33,-31],[14,-65],[-39,-90],[-22,-32],[-16,1],[-42,42],[-41,8],[-99,-14],[-50,10],[-24,19],[-42,1],[-64,25],[-39,8],[-19,16],[-3,37],[-53,94],[-44,27],[-50,-44],[-19,5],[-61,-58],[-48,-197],[-34,-26],[-68,-128],[-47,-41],[-34,-73],[-33,-48],[-112,-27],[-36,-61],[-22,0],[-76,-83],[-45,-10],[-124,-84],[-12,-41],[-47,-4],[-50,-53],[-26,-45],[-100,-96],[-40,-53],[-11,-70]],[[131086,90517],[-41,-56],[-69,-58],[-149,-13],[-47,42],[-30,-67],[-39,-13],[-61,-3],[-35,-25],[-18,-28],[-84,-9],[-30,-38],[-52,-13],[-218,-163],[-47,-69],[-45,-80],[-60,-69],[-25,-12],[-26,-28],[-51,9],[-29,-4],[-19,-34],[16,-44],[-9,-18],[-57,-24],[-85,-16],[-67,-53],[-18,57],[-7,75],[68,27],[179,103],[-22,78],[15,34],[41,55],[11,37],[-117,-18],[-102,7],[10,47],[-14,64],[60,53],[48,13],[-1,32],[-18,48],[19,63],[122,74],[29,66],[49,63],[90,154],[32,99],[4,29],[-41,43],[-17,59],[-121,107],[-10,92],[-12,-4],[-18,-64],[-16,-21],[-56,-2],[-26,25],[-157,16],[-38,-42],[-36,-64],[-34,-46],[-35,-24],[-31,-42],[-125,-249],[-48,-19],[-223,-151],[-112,-59],[-86,-104],[-29,-64],[-27,-70],[-15,-106],[-80,-129],[-27,-28],[-28,-11],[-37,4],[-32,-9],[-54,12],[-67,-41],[-75,-36],[-64,90],[-46,22],[-76,-25],[-35,-40],[-72,-196],[-27,-112],[2,-46],[42,-140],[48,-79],[107,-89],[227,-61],[53,21],[58,1],[60,-59],[38,-96],[4,-89],[22,-53],[-42,-41],[-16,-103],[-1,-113],[20,-38],[49,-53],[76,-44],[70,-9],[133,21],[55,69],[-2,67],[118,101],[67,89],[-24,39],[49,15],[164,93],[128,-76],[74,-87],[72,-15],[51,-44],[58,-38],[76,-3],[64,-8],[39,58],[23,-4],[26,-46],[72,-36],[67,2],[47,13],[28,-16],[-40,-59],[6,-96],[-31,-30],[-30,-48],[33,-46],[-1,-39],[-27,-22],[-50,-58],[-29,2],[-23,31],[-8,34],[-17,21],[-49,9],[-50,-8],[-113,-86],[-111,-68],[-116,-54],[-39,-34],[-27,-10],[-48,26],[-29,-1],[-6,-18],[37,-48],[9,-37],[-4,-29],[-21,-12],[-30,21],[-28,-30],[-13,-51],[0,-120],[-19,-27],[-51,-14],[-54,-39],[-27,40],[5,55],[-6,27],[-63,-18],[-38,-58],[38,-71],[36,-7],[8,-16],[-28,-34],[-71,-52],[-12,-43],[-21,-41],[-48,-67],[-63,-38],[-48,-83],[-35,-78],[-42,-39],[-33,-131],[-59,-71],[-22,-114],[15,-69],[65,0],[33,-24],[67,-92],[80,-60],[84,-34],[102,-85],[28,-36],[24,-73],[45,-211],[32,-104],[2,-55],[48,-102],[51,-177],[59,-153],[11,-121],[-19,-55],[0,-72],[59,-65],[131,-77],[46,-59],[1,-116],[37,-59],[80,-49],[33,-40],[35,-65],[10,-58],[4,-79],[-44,-2],[-36,8],[-141,103],[-37,2],[-52,-14],[-74,19],[-79,113],[-56,34],[-60,18],[-145,-98],[-37,7],[-27,-27],[67,-21],[67,32],[65,47],[94,-25],[15,-43],[16,-72],[64,-48],[51,-21],[64,-64],[63,-99],[134,-116],[54,-109],[21,-70],[18,-101],[-46,-33],[-105,-20],[-46,-36],[-47,-62],[-135,-99],[-43,-115],[-33,-27],[-82,25],[-78,-2],[-88,-72],[7,-15],[39,-10],[61,38],[60,-118],[117,19],[110,98],[42,2],[36,-15],[40,-39],[105,-172],[58,-19],[57,-40],[60,-17],[-77,-63],[-98,-136],[-44,-33],[-30,-37],[80,19],[56,65],[29,16],[23,-15],[11,-80],[-22,-248],[-27,-4],[-27,67],[-32,22],[-26,-15],[-53,1],[-37,-73],[32,-9],[62,-76],[6,-40],[-17,-25],[-43,11],[53,-56],[-14,-59],[-18,-23],[-30,-14],[-19,-51],[27,-83],[27,-108],[4,-52],[-43,23],[-67,-66],[-36,-6],[-23,87],[-31,-14],[-20,-25],[-28,-93],[-33,-83],[-28,-23],[-62,4],[6,-23],[30,-28],[0,-32],[-63,-102],[-11,-40],[2,-33],[-33,-41],[17,-69],[-9,-48],[-29,-66],[-31,-43],[-36,-70],[-45,-41],[-61,-147],[-18,-73],[-4,-76],[-51,-59],[-37,16],[-1,51],[-16,4],[-12,76],[-45,-48],[-53,39],[1,-38],[21,-76],[37,-8],[26,-44],[41,-148],[-36,-24],[-45,-44],[-54,-76],[-45,-51],[-64,6],[-35,29],[-40,12],[53,-102],[30,-18],[37,3],[36,39],[50,-4],[13,-59],[-14,-67],[-27,-87],[-6,-74],[34,-107],[2,-33],[-13,-16],[-40,29],[-34,35],[-33,-9],[-35,15],[-36,-13],[-14,-25],[10,-40],[32,-34],[18,-52],[-22,-19],[-91,13],[-20,-10],[-27,-58],[18,-85],[-20,-52],[-38,-13],[-49,-43],[-31,-10],[36,-62],[-27,-87],[-42,-28],[-63,14],[-51,-19],[-43,36],[-46,1],[-32,-46],[-3,-55],[-71,-5],[16,-55],[63,-11],[11,-36],[2,-57],[-65,-97],[-28,-66],[-42,2],[-32,-53],[-17,-71],[-21,14],[-49,-11],[-14,-34],[12,-39],[-19,-80],[-21,-23],[-16,84],[-17,4],[-29,-47],[-33,-34],[-28,-14],[-21,32],[-53,16],[-21,-135],[-77,-88],[7,-34],[-13,-35],[-36,-7],[-20,-26],[-8,-121],[-22,-42],[-53,-4],[-41,28],[-19,-43],[-21,-22],[-41,-6],[-91,-54],[-91,36],[-34,-20],[-27,-73],[-50,0],[-40,39],[-41,29],[-45,-25],[-34,-50],[-42,-17],[-8,-32],[-18,-15],[-44,6],[-17,79],[-26,11],[-25,-40],[-21,-54],[4,-64],[-25,-1],[-33,39],[-34,7],[-32,-36]],[[126738,78358],[-34,17],[-28,0],[-31,-16],[-15,-21]],[[126630,78338],[-36,13],[-45,53],[-31,88],[-41,47],[-17,42],[-15,110],[3,40],[12,35],[-43,-17],[-33,-33],[7,-42],[-8,-38],[-48,-20],[6,-33],[38,-52],[7,-44],[45,-92],[-1,-132],[16,-38],[-17,-87],[-24,11],[-6,-32],[-65,-35],[-27,-39],[-50,-10],[-26,93],[-35,-62],[-10,-126],[-35,-39],[-41,44],[-63,-60],[-33,-57],[-39,29],[-32,43],[8,33],[-18,37],[-16,-2],[8,-42],[5,-81],[-37,-42],[-48,15],[-33,30],[-39,26],[-35,5],[-8,-52],[-23,-41],[-42,2],[-40,-77],[-34,-35],[-91,-16],[-31,-35],[-43,6],[-51,-7],[-36,19],[-9,-56],[-51,-24],[-46,-7],[-52,-75],[-36,-45],[-27,-5],[-20,16],[-10,68],[-26,-108],[-19,-29],[-59,-65],[-17,-65],[11,-60],[80,-14],[10,-33],[-27,-49],[-6,-34],[86,-106],[2,-41],[-29,-73],[-45,-42],[-95,-22],[-80,22],[-24,48],[1,34],[43,-7],[-17,50],[-36,28],[-30,75],[6,62],[-34,89],[-28,54],[18,95],[-10,55],[34,67],[9,76],[61,27],[4,73],[-44,2],[-30,53],[-7,-22],[-24,-3],[-40,103],[-32,15],[10,-109],[-47,-40],[-38,-18],[-54,-7],[-31,-13],[-29,10],[22,72],[-13,33],[-31,25],[-111,3],[-68,97],[-11,32],[11,37],[-9,22],[-49,3],[5,-115],[15,-48],[-11,-26],[-24,-18],[-27,50],[-25,10],[-10,-50],[-24,-44],[-43,4],[-34,-27],[-41,-12]],[[124027,77639],[-73,95],[-18,7],[-51,-29],[-73,-10],[-17,30],[-35,-23],[-34,71],[-41,4],[-50,54],[-18,28],[-6,41],[-15,21],[-20,-2],[-22,21],[-62,34],[-28,-14],[-4,182],[-8,33],[-36,37],[-7,38],[6,73],[14,50],[21,9],[30,36],[34,99],[-67,66],[-36,24],[-88,-32],[-38,5],[-28,59],[-15,11],[-64,3],[-16,-26],[-52,-10],[-65,74],[-62,30],[-23,75],[-62,89],[-32,26],[-37,-45],[-140,-101],[-17,-25],[-13,-131],[-47,-62],[-47,-2],[-22,-11],[-66,-70],[-32,6],[-37,68],[-30,-7],[-38,-33],[-18,-60],[-18,-81],[-24,-8],[-127,170],[-21,-33],[-20,-86],[-23,-10],[-50,110],[-24,6],[-15,-35],[-55,-84],[-1,-35],[-56,-62],[-30,9],[-26,41],[-19,43],[-47,43],[-88,64],[-20,7],[-19,-13],[-22,-60],[-60,-125],[-47,-61]],[[121510,78245],[-16,23],[-28,19],[-34,0],[-45,-35],[-35,71],[-38,-20],[-23,-94],[-41,-51],[16,-64],[6,-74],[12,-46],[42,-75],[16,-39],[4,-153],[-10,-147],[0,-56],[34,-55],[-8,-22],[-34,-38],[-52,38],[-18,21],[-43,-2],[-69,-33],[-25,28],[-5,38],[3,44],[-19,46],[9,79],[-25,32]],[[121084,77680],[4,10],[-12,114],[-17,7],[-26,-13],[-80,-57],[-68,-104],[-31,-24],[-31,-9],[-78,30],[-59,-27],[-29,13],[-25,53],[7,42],[-4,30],[-51,28],[-16,40],[-6,43],[9,117],[-13,28],[-40,15],[-100,27],[-88,15],[-36,-7],[-48,18],[-9,46],[31,124],[40,89],[1,133],[20,95],[35,71],[17,22],[-18,61],[-53,34],[-52,5],[-71,19],[-83,43],[10,81],[-2,50],[-10,42],[-26,56],[15,72],[-19,79],[-46,73],[-2,44],[10,41],[57,88],[1,21],[-31,-3],[-77,-33],[-9,21],[-28,11],[-57,3],[-66,-6],[-84,-32],[-78,-55],[-65,-61],[-24,-8],[-28,17],[1,54],[53,99],[8,68],[-17,58],[-1,47],[-19,30],[-26,15],[-14,33],[0,97],[23,100],[60,47],[6,19],[-11,70],[2,45],[22,86],[23,65],[42,-11],[40,40],[23,39],[15,46],[19,109],[13,16],[53,-18],[16,13],[29,63],[28,77],[40,24],[29,3],[13,25],[-1,38],[-27,60],[-12,48],[4,29],[39,17],[10,35],[-6,76],[16,91],[9,107],[3,141],[-9,181],[-18,101],[3,38],[-2,123],[-11,105],[-63,52],[-23,7],[-19,-12],[-7,-37],[-18,-34],[-22,9],[-25,78],[-48,212],[-13,122],[-33,48],[-38,71],[-30,35],[-41,-5],[-32,79],[-41,33],[-27,-5],[-46,-109],[-47,-94]],[[119440,82311],[-76,85],[-30,20],[-41,-22],[-88,20],[-53,58]],[[119152,82472],[-22,7],[-75,-38],[-17,-26]],[[119038,82415],[-29,13],[-18,29],[22,48]],[[119013,82505],[-1,20],[29,56],[80,110]],[[119121,82691],[-45,136],[-4,44],[-13,19],[-39,-16],[-79,-82],[-9,38]],[[118932,82830],[-8,82],[25,25]],[[118949,82937],[38,30],[30,34],[-1,36],[-44,-11]],[[118972,83026],[-17,19],[-29,76],[-40,45],[-65,-39],[-75,-53],[-84,-75],[-9,-49]],[[118653,82950],[-32,-57],[-29,-13],[-32,10]],[[118560,82890],[-57,38],[-63,31]],[[118440,82959],[-14,-4],[-85,23],[-16,52],[-24,32],[-23,11],[-67,-67]],[[118211,83006],[-75,-50],[-43,-59],[-35,-59],[-41,-11],[-2,-36]],[[118015,82791],[-48,-73],[-61,-51]],[[117906,82667],[-41,-28],[-131,-25]],[[117734,82614],[-47,-17],[-19,-27],[-38,-131],[-36,-52],[-66,-69],[-78,-57]],[[117450,82261],[-21,-37]],[[117429,82224],[-4,-22],[19,-25],[-10,-54],[-79,-71],[-28,-15]],[[117327,82037],[-63,4],[-72,-16],[-53,-54],[-30,0],[-85,21],[-34,0]],[[116990,81992],[4,113],[-16,20],[-102,49],[-41,39],[-20,-5],[-64,-67],[-25,-3],[-49,39],[-82,32],[-37,5],[-66,-6],[-53,7],[-8,27],[12,68],[-6,19],[-105,40],[-53,6],[-36,-11],[-35,-27],[-29,-47],[-42,-21],[-50,-35],[-24,-33],[-36,-71],[-102,-172],[-25,-83],[-33,-52],[-34,-37],[-24,-103],[-54,79],[-7,64],[35,171],[8,70],[-19,97]],[[115772,82164],[-21,22],[-58,37],[-19,1]],[[115674,82224],[-20,-25],[-45,-32],[-65,-30],[-58,-14],[-14,-11],[1,-43],[-76,14],[-32,-4],[-76,-45],[-26,-4],[-68,6],[-75,-1],[-64,11],[-53,63],[-37,28],[-79,37],[-26,51],[-32,6],[-26,-13],[-16,-85],[-14,-16],[-33,-8],[-34,22],[-48,43],[-19,49],[-16,15],[-25,-21],[-6,-104],[-30,-17],[-18,13],[-49,144],[-35,59],[-35,40],[-115,-1],[-85,12],[-39,16],[-15,39],[31,153],[-39,12],[-92,-39],[-25,5],[-36,24],[-27,45],[-80,65],[-23,36],[-79,75],[-55,214],[-71,42],[-114,-64],[-38,-3],[-54,85],[-44,93],[-52,80],[-34,41],[-61,3],[-69,46],[-158,180],[-115,85],[-26,36],[-26,90],[-24,57],[-81,25],[-92,17],[-97,-35],[-70,-170],[-33,-37],[-29,-2],[-43,89],[-11,50]],[[112404,83716],[-48,38]],[[112356,83754],[-55,48],[-27,38],[-32,24],[-29,10],[-121,68],[-30,5]],[[112062,83947],[7,80]],[[112069,84027],[-5,53],[-20,21],[-29,-5],[-68,74]],[[111947,84170],[-56,56],[-56,-3]],[[111835,84223],[-42,-11],[-77,80],[-21,29],[-100,207],[-27,16],[-14,-8],[-16,-60],[-32,2],[-47,-26],[-20,21]],[[111439,84473],[6,79],[-14,24],[13,55]],[[111444,84631],[20,47],[-47,85]],[[111417,84763],[-3,45],[21,107],[-103,179]],[[111332,85094],[-17,59]],[[111315,85153],[-6,68],[-11,48]],[[111298,85269],[-12,37]],[[111286,85306],[10,26],[94,15],[30,13],[16,-27]],[[111436,85333],[7,-42]],[[111443,85291],[8,-21],[63,-77],[34,5],[30,16],[26,61],[18,15]],[[111622,85290],[22,3],[-2,44],[8,96],[-12,74],[-2,96],[-24,38]],[[111612,85641],[-19,36],[14,83],[-9,38]],[[111598,85798],[-20,16],[-51,67]],[[111527,85881],[-36,59]],[[111491,85940],[-27,48],[-8,215]],[[111456,86203],[-25,143]],[[111431,86346],[12,51],[77,71],[16,27],[0,52],[-14,34]],[[111522,86581],[-31,27]],[[111491,86608],[-84,89],[-148,62]],[[111259,86759],[-19,33],[-53,203]],[[111187,86995],[-36,132]],[[111151,87127],[-27,80],[-2,39],[17,100],[-16,28],[-50,-29],[-41,33]],[[111032,87378],[-32,-11],[-66,-6],[-54,3],[-153,53],[-91,43],[-66,45],[-70,66],[-6,79],[-71,-34],[-58,-19],[-44,13],[-19,84],[-14,23],[-55,24],[-17,50],[28,56],[2,148],[-18,97],[-40,89],[-29,32],[-45,33],[-41,12],[-48,-24],[-16,9],[-20,101],[-13,21],[-87,42],[-39,9],[-71,-24],[-53,42],[-32,16],[-40,1],[-25,-10],[-71,80],[-2,14],[80,55],[73,38],[17,-29],[32,-17],[22,4]],[[109780,88586],[50,44],[48,64],[-10,45],[-78,85],[-9,20],[19,119],[-17,42],[-4,65],[-20,78],[-23,46],[-8,119],[28,90],[-10,39],[-29,35],[-100,62],[-102,42],[-63,1],[-28,-37],[-17,-48],[-24,-4],[-44,20],[-29,31],[-20,64],[-25,108],[14,42],[28,19],[1,42],[-46,72],[-35,86],[12,117],[-2,36]],[[109237,90130],[82,28],[22,31],[18,51],[-14,75],[-20,60],[44,124],[23,45],[40,22],[68,12],[73,32],[116,120],[69,24],[-17,58],[28,46],[59,-31],[46,3],[56,18],[121,103],[27,-16],[14,-61],[17,-131],[9,-16],[84,-2],[57,48],[25,11],[41,-8],[43,38],[26,-55],[34,26],[36,42],[42,89],[19,59],[8,56],[29,53],[50,114],[36,29],[34,11],[84,-20],[44,2],[128,-15],[101,44],[61,-3],[72,17],[96,143],[7,63],[163,131],[175,111],[63,44],[26,-1],[177,82],[32,68],[30,13],[132,12],[13,19],[-16,91]],[[112070,92039],[21,31],[-23,115],[-18,157],[1,28],[37,92],[74,40],[50,13],[2,26],[-40,17],[-29,27],[3,48],[98,59],[57,-18],[15,41],[-24,79],[-27,25],[-1,30],[17,51],[-23,96],[-67,228],[-27,41],[-16,67],[-17,35],[4,88],[-12,149],[8,79],[19,87],[24,5],[0,44],[-86,43],[-111,-8],[-53,44],[-1,16],[33,42],[47,44],[73,19],[81,29],[40,20],[54,15],[63,7],[31,-5],[81,28],[242,99],[39,27],[28,-27],[14,-59],[33,-31],[53,-14],[57,23],[62,17],[25,-9],[66,-58],[35,23],[27,95],[2,57],[-19,48],[-56,20],[-54,33],[-5,53],[14,53],[35,98],[36,135],[18,106],[59,159],[47,165],[75,238],[13,47],[11,106],[26,17],[44,-16],[190,-100],[86,-32],[78,-19],[86,17],[54,1],[83,-14],[58,-2],[22,-23],[12,-53],[17,-23],[31,9],[67,46],[95,88],[108,19],[19,26],[21,61],[34,46],[6,58],[-36,109],[1,45],[-12,131],[-15,117],[15,95],[28,106],[53,126],[35,16],[97,11],[90,22],[123,51],[72,118],[17,113],[-12,55],[10,49],[58,56],[70,14],[78,-3],[40,-14]],[[115134,96840],[40,-6],[43,32],[106,30],[22,-3]],[[115345,96893],[1,-57],[24,-55],[-5,-25],[-45,-32],[-5,-26],[28,-32],[10,-31],[84,-39],[10,-42],[-34,-50],[4,-33],[142,-58],[45,-48],[44,-13],[21,-47],[4,-68],[113,-82],[35,-9],[56,-60],[64,-15],[57,30],[64,3],[36,-17],[33,-66],[60,-57],[57,12],[21,29],[30,-6],[32,-92],[38,-30],[53,-18],[14,-55],[34,-65],[18,-67],[12,-86],[95,-195],[66,-35],[50,-143],[8,-107],[13,-46],[-27,-98],[-23,-45],[-3,-37],[16,-65],[21,-50],[2,-48],[-64,-105],[-24,-22],[-38,-86],[-16,-94],[-4,-49],[38,-74],[5,-34],[39,-75],[11,-46],[32,14],[42,1],[38,-17],[36,-34],[39,-18],[55,4],[62,-33],[66,-6],[126,0],[61,-23],[109,-18],[66,1],[90,17],[219,-36],[95,-27],[61,-31],[42,-48],[49,-75],[38,-34],[104,-21],[72,-87],[55,-33],[94,-85],[67,-33],[79,-30],[129,13],[7,-12],[-18,-109],[0,-46],[14,-23],[49,-14],[24,-22],[28,-70],[41,-132],[67,-195],[7,-75],[23,-48],[72,-77],[38,-57],[57,-60],[18,-55],[5,-71],[14,-19],[103,16],[250,32],[221,-37],[228,-36],[301,-47],[224,-34],[223,76],[44,-4],[186,-38],[247,-46],[95,-9],[79,1],[71,-27],[23,-24],[71,-121],[40,-53],[80,-40],[180,-46],[214,-60],[275,-178],[339,88],[0,-152],[119,-12],[37,2],[52,-34],[30,14],[63,85],[51,23],[238,155],[193,102],[87,50],[108,54],[59,14],[80,8],[86,20],[197,36],[135,18],[47,14],[162,-13],[60,-9],[192,17],[89,-1],[45,12],[110,68],[69,37],[86,37],[99,58],[48,21],[13,28],[85,123],[35,58],[128,187],[78,35],[136,70],[19,2],[96,118],[46,10],[24,22],[0,72],[-41,84],[-66,74],[-71,105],[-14,55],[-36,67],[3,36],[34,64],[25,113],[32,107],[56,99],[63,66],[58,12],[35,-13],[128,-3],[38,-33],[42,-65],[47,-24],[148,-51],[108,-13],[123,-32],[29,13],[96,92],[66,32],[59,75],[49,43],[60,63],[29,49],[13,64],[55,34],[41,5],[77,-29],[105,8],[119,21],[104,26],[109,117],[46,36],[30,6],[38,37],[18,40],[-12,63],[63,146],[68,78],[20,56],[54,23],[43,38],[31,8],[51,-18],[125,-7],[28,7],[31,145],[61,12],[53,-46],[31,-3],[31,14],[42,57],[69,33],[102,35],[117,-18],[61,0],[30,39],[23,9],[48,-18],[31,-29],[58,-38],[73,-17],[61,9],[63,-16],[37,2],[69,46],[13,42],[-5,41],[6,46],[-48,84],[-12,34],[-1,44],[-20,41],[-48,51],[-31,23],[-65,87],[-22,20],[-15,44],[-55,37],[-17,23],[-18,66],[-28,22],[-111,50],[-82,130],[-30,28],[-112,11],[-40,20],[-72,-20],[-60,0],[-31,-8],[-91,-128],[-44,-44],[-44,-62],[-28,10],[-39,51],[-55,46],[-72,33],[-61,11],[-46,-3],[-60,-18],[-122,13],[-67,-47],[-35,-55],[-41,-17],[-80,78],[-41,53],[-26,49],[-14,129],[112,82],[5,68],[-2,76],[12,85],[58,78],[31,65],[4,40],[90,230],[189,455]],[[127779,97354],[89,-60],[153,-79],[100,-10],[95,-51],[76,-16],[249,230],[131,83],[96,11],[72,24],[49,37],[28,62],[9,86],[-19,52],[-48,18],[28,73],[11,53],[27,51],[44,48],[24,53],[4,59],[27,58],[48,58],[26,54],[5,50],[24,61],[66,108],[43,124],[74,85],[117,88],[74,86],[29,86],[-2,76],[-34,66],[-6,67],[21,68],[-19,51],[-58,33],[-69,9],[-81,-17],[-45,21],[-10,59],[21,48],[53,37],[88,89],[122,142],[121,79],[181,22],[294,94],[107,23],[19,-15],[58,-4],[99,8],[91,20],[85,33],[67,7],[49,-17],[59,-3],[20,14],[58,-25],[109,-73],[69,-33],[28,8],[31,-20],[33,-49],[42,-29],[75,-13],[74,-53],[30,-3],[11,30],[27,17],[45,4],[65,-26],[85,-57],[53,-25],[44,-4],[19,-27],[-5,-51],[21,-28],[61,-13],[30,-49],[46,-43],[6,-33],[-19,-57],[12,-26],[48,-18],[35,-71],[32,-31],[5,-48],[26,-31],[5,-79],[26,-33],[5,-66],[19,-73],[61,-101],[20,-55],[-5,-64],[9,-31],[28,-15],[14,-27],[-2,-40],[20,-52],[-6,-41],[23,-59],[16,-90],[41,-80],[77,-109],[47,-84],[17,-61],[0,-49],[-18,-68],[20,-41],[-6,-31],[25,-35],[84,-63],[-34,-95],[-9,-68],[5,-70],[21,-50],[37,-29],[32,-62],[44,-34],[80,-38],[102,-6],[125,24],[76,4],[28,-16],[10,-24],[-9,-33],[21,-22],[51,-10],[35,-21],[20,-31],[23,-8],[56,11],[26,-17],[32,25],[49,-1],[16,-45],[24,-26],[35,-6],[52,-55],[105,-158],[69,-56],[68,-18],[86,-3],[27,-61],[-22,-65],[-6,-54],[20,-20],[26,-63],[38,-37],[25,-62],[-8,-61],[-32,-88],[9,-75],[50,-63],[29,-60],[7,-58],[30,-48],[52,5],[85,21],[62,-4],[40,-28],[98,-1],[157,26],[100,8],[41,-10],[37,37],[32,85],[30,39],[29,-5],[45,28],[61,59],[54,29],[139,-6],[45,25],[43,52],[73,46],[157,60],[38,9],[70,-12],[46,-24],[44,-47],[1,-70],[-44,-91],[36,-103],[44,-111],[-24,-63],[-43,-70],[-49,-54],[-43,-6],[-40,-17],[-53,-78],[-2,-30],[17,-91],[-28,-41],[-28,-82],[-14,-65],[-7,-101],[-28,-69],[-39,-80],[15,-92],[-18,-83],[-47,-43],[-22,-32],[5,-49],[-11,-42],[-34,-62],[-41,-29],[-27,-121],[7,-37],[-13,-33],[-73,-41],[-34,-35],[-32,-121],[-7,-70],[7,-63],[-76,-70],[-42,22],[-50,13],[-321,114],[-29,21],[-25,37],[-25,-15],[-22,-44],[-38,-26],[-33,-84],[-56,-70],[-95,-44],[-62,-7],[-44,-46],[-6,-31],[40,-98],[84,-409],[-18,-48],[-17,-207],[4,-139],[26,-26],[8,-25],[-10,-66],[-27,-136],[-39,-73],[-7,-94],[-54,-35],[-33,8],[-125,-36],[-36,-23],[-30,-36],[7,-29],[35,-8],[24,-36],[3,-38],[-25,-23]],[[76195,66234],[-12,-28],[-57,18],[14,23],[55,-13]],[[75258,69849],[38,-19],[32,-36],[22,-79],[24,-57],[10,-81],[38,-42],[29,-20],[40,-59],[41,-29],[43,6],[20,-30],[32,-22],[32,-2],[28,68],[37,27]],[[75724,69474],[130,79],[38,15],[90,5],[84,-16],[42,-13],[28,9],[27,-32],[28,-68],[46,-45],[38,-106],[36,-76],[22,-1],[21,23],[14,-18],[-9,-56]],[[76359,69174],[2,-34],[12,-13],[-7,-45],[-24,-76],[-1,-45],[25,-14],[18,-47],[10,-82],[11,-27],[18,-214],[22,-198],[-14,-26],[-31,-17],[4,-45],[-5,-25],[-24,-17],[-52,-63],[-17,-79],[-29,-93],[-27,-160]],[[76250,67854],[-11,-174],[-23,-70],[-56,-114],[-29,-93],[4,-40]],[[76135,67363],[1,-41],[-9,-29],[2,-79],[17,-131],[41,-182],[21,-111],[25,-150],[16,-48],[60,-16],[12,-14],[17,-116]],[[76338,66446],[-3,-53],[-12,-20],[-2,-100],[-9,-22]],[[76312,66251],[-34,-3],[-23,-21],[-31,9],[-64,50],[7,101],[-21,4],[-16,-13],[-32,-121],[-15,-21],[-226,62],[-48,51],[-59,11],[-102,-5],[-84,-15],[-25,-31],[213,18],[23,-4],[11,-18],[-269,-40],[-103,-24],[-30,7],[-23,38],[-112,5],[-22,-13],[-14,-28],[44,6],[69,2],[18,-22],[-216,-29],[-151,-55],[-273,-173],[-128,-63],[-33,-23],[-58,-65],[-75,-41],[-84,-77],[-51,-17]],[[74275,65693],[-12,24],[-1,130]],[[74262,65847],[-7,173],[3,67]],[[74258,66087],[6,62],[1,52],[25,19],[7,22],[4,67],[24,62],[0,106],[12,51]],[[74337,66528],[-10,70],[-13,132],[-26,1],[-52,46]],[[74236,66777],[-41,8]],[[74195,66785],[-28,39],[-2,44]],[[74165,66868],[-14,26],[-24,110],[-40,36],[-38,9],[-58,-6],[-61,42],[-45,78],[-17,-4],[-42,23]],[[73826,67182],[-7,12],[87,138],[30,67],[3,83]],[[73939,67482],[10,42],[2,65],[-48,235]],[[73903,67824],[-12,73],[-22,29],[25,30]],[[73894,67956],[33,-8],[52,-23],[11,23],[39,119],[-5,74],[23,82],[28,65],[-3,46],[-32,14],[-55,38],[-16,24],[8,141],[12,19],[69,8],[41,-12]],[[74099,68566],[56,-7]],[[74155,68559],[36,-64],[19,0],[6,24],[-4,106],[-12,56],[-28,54],[-72,46]],[[74100,68781],[-2,65],[8,70],[15,26],[54,44],[-27,49],[-34,26],[8,84],[2,74],[-58,-12],[-25,23],[-21,45],[-4,125],[0,144],[-4,63],[8,34],[53,72],[10,26],[46,16],[30,36],[28,73],[38,60],[43,-5],[27,13],[36,-68],[13,-1]],[[74344,69863],[9,-56],[78,-24],[33,-15],[29,-41],[30,22],[-10,52],[18,63]],[[74531,69864],[50,11],[61,-6],[10,30],[-10,83],[7,85],[10,16],[38,-49],[35,-17]],[[74732,70017],[33,8],[-8,69],[71,36],[13,-88],[-4,-27],[21,-110],[-1,-22],[-21,-63],[20,-32],[34,-21],[35,-5],[55,78],[5,33],[23,24],[64,31],[59,4],[15,-9],[26,-47],[34,-31],[52,4]],[[84495,64244],[-3,-46],[-27,-25],[-15,-43],[-4,-59],[7,-72],[21,-85],[0,-50],[-33,-34],[-36,59],[-40,39],[-61,69],[-61,24],[-78,5],[-34,-9],[-58,56],[-19,8],[-26,-24],[-40,8],[-45,-1],[-12,48],[-48,-4],[-15,33],[-26,7],[-38,46],[-41,-30],[-85,4],[-222,-3],[-206,3]],[[83250,64168],[-10,44],[-22,22],[-38,2],[-114,-8],[-86,7],[-59,17],[-73,10],[-89,-8],[-92,0],[-164,12],[-91,-1],[2,-27],[-10,-66]],[[82404,64172],[-232,1],[-208,0],[-141,0],[-48,31],[-29,64],[9,163],[19,137],[8,126],[27,113],[-14,112],[-17,49],[-88,158],[41,60],[-54,-8],[-11,59],[-26,71],[16,11],[15,39],[48,-12],[-1,19],[-42,59],[4,30],[17,34],[-8,14],[-30,-35],[-21,1],[-29,26],[7,-45],[-16,-41],[-16,-14],[-49,13],[-6,23],[-21,17],[-58,30],[-49,35],[-10,97],[-20,41],[-12,101],[7,83],[-27,18],[-41,0],[-23,46],[-21,18],[13,-84],[-14,-24],[-36,7],[-17,55],[22,158],[56,149],[37,105],[25,186],[33,220],[27,96]],[[81400,66784],[27,63],[135,216],[50,69]],[[81612,67132],[73,79],[52,159],[40,30],[116,135],[27,-73],[38,-11],[51,1],[30,9],[16,28],[16,74],[22,18],[56,-52],[93,-147]],[[82242,67382],[24,-26],[10,-29],[20,-134],[12,-33],[20,-14],[36,9],[38,23],[33,35],[33,44],[32,69]],[[82500,67326],[5,110],[7,24],[121,158],[-40,109]],[[82593,67727],[18,50]],[[82611,67777],[89,171],[4,96],[56,149],[32,199],[1,38],[74,218],[77,20],[29,30]],[[82973,68698],[35,55],[22,50],[10,48],[8,92],[13,106],[9,92],[23,86],[39,43],[67,35],[10,17],[10,57],[12,219],[9,53],[62,94],[28,148],[24,154],[71,187],[83,186],[38,50],[33,23],[37,2],[25,14],[90,93],[37,31],[27,32],[10,69],[-9,96],[15,70],[9,109],[4,85],[-3,30],[-17,49],[-26,53],[-45,32],[-61,9]],[[83672,71267],[-33,19],[-5,44]],[[83634,71330],[-11,115],[-41,324]],[[83582,71769],[78,0],[93,-39],[24,-29],[12,-111],[34,-63],[59,-52],[37,-107],[14,-162],[41,-112],[46,-183],[3,-84],[-5,-57],[19,-71],[-28,-120],[-9,-74],[-2,-104],[16,-182],[28,-141],[29,-115],[33,-88],[53,-98],[57,-89],[53,-57],[-49,-33],[-95,-4],[-55,19],[-26,1],[-26,-12],[-102,-17],[-102,8],[-95,23],[-58,-4],[-45,-54],[-36,-82],[-34,-65],[12,-71],[75,-127],[44,-85],[22,-57],[88,-124],[85,-111],[55,-46],[46,-64],[64,-104],[59,-164],[82,-328],[18,-27],[28,-17],[1,-86],[-9,-42],[-22,-56]],[[89327,66221],[38,-99],[74,-85],[24,-47],[30,-93],[23,-32],[60,-46],[42,-75],[49,-52],[51,-8],[24,-14],[26,4],[42,34],[49,57],[38,35],[91,-12],[51,-29],[41,-40],[31,2],[69,74],[37,79],[35,17],[54,-34],[44,-74],[39,-107],[65,-104],[75,-136],[97,-68],[38,-34],[12,-34],[10,-93],[12,-20],[49,14],[24,-14],[17,-36],[18,-57]],[[90806,65094],[25,-19],[5,-38],[-34,-88],[-21,-83],[-11,-85],[29,-51],[13,-52],[-2,-32],[-33,-118],[-17,-103],[-1,-52],[44,-38],[57,2],[51,-81],[41,-12],[6,-26],[36,-60],[-9,-71],[-41,-85],[-93,-167],[-200,-309],[-67,-37],[-35,-58],[-25,-90],[-58,-76],[-45,-31],[-5,-19],[-4,-82],[5,-122],[-21,-56],[-31,-108],[-15,-68],[-26,-47],[-9,-111],[-6,-37],[-22,-228],[7,-65],[-17,-109],[-1,-64],[-7,-72],[-12,-63],[0,-100],[7,-164],[-1,-22]],[[90263,61697],[-75,-83],[-22,-7],[-67,-141],[-29,-98],[8,-189],[-18,-71],[-50,-55],[-49,-61],[-8,-32],[15,-76],[1,-55],[12,-33],[40,-27]],[[90188,59565],[1,-33],[-16,-119],[-18,-117],[-1,-44],[8,-58],[58,-232],[50,-233],[6,-50],[-5,-37],[-45,-132],[-5,-42],[12,-102],[14,-99],[22,-56],[51,-155],[38,-52],[71,-77],[62,-78],[46,-86],[43,-115],[27,-94],[13,-85],[66,-224],[70,-225],[13,-62]],[[90769,56958],[-183,-45],[-241,-59],[-342,-85],[-32,-14],[15,-73],[-7,-77],[-21,-59],[-32,-73],[-49,-86],[-28,-40],[-93,-107],[0,-35],[61,-163],[27,-118],[11,-106],[-5,-335],[-5,-59],[17,-106],[-3,-83],[-41,-93],[-11,-91],[-49,-293],[-20,-90],[32,-150],[22,-79],[39,-67],[84,-100],[35,-48],[53,-95],[39,-64],[55,-15],[66,-24],[36,-18],[25,9],[8,22],[-6,83],[7,27],[23,18],[57,3],[44,30],[0,-468],[0,-394],[-9,-31],[-22,-11],[-31,27],[-9,81],[-14,26],[-19,9],[-31,-14],[-43,-38],[-78,-53],[-38,3],[-42,18],[-31,43],[-9,64],[-64,162],[-43,84],[-53,18],[-17,65],[-16,83],[-26,73],[-24,25],[-216,138],[-91,12],[-48,50],[-20,81],[-27,94],[-80,112],[-18,124],[-16,18],[-49,-25],[-42,-197],[-25,-32],[-29,-15],[-40,-7],[-58,3],[-110,29],[-105,18],[-30,10],[-74,48],[-102,53],[-46,-6],[-22,37],[-48,54],[-12,48],[-16,103],[3,56],[12,61],[-31,17],[-27,-21],[-132,-39],[-90,-37],[-65,-60],[-22,-6],[-38,21],[-19,32],[19,36],[8,45],[-13,87],[-20,40],[-57,30],[-22,2],[-9,49],[-16,45],[-48,14]],[[87847,55094],[-17,-14],[-11,-64],[-29,-21],[-60,4],[-58,20],[-42,7],[-27,-5],[-105,-69],[-35,-9],[-112,5],[-64,15],[-46,2],[-32,-21],[-40,-51],[-34,-27],[-15,3],[-23,50]],[[87097,54919],[-4,77],[-17,83],[11,44]],[[87087,55123],[34,32],[11,64],[-10,98],[-1,68],[9,39],[-12,96],[-33,152],[-47,124],[-60,96],[-40,91],[-19,88],[7,209],[33,330],[-4,246],[-41,159],[-9,172],[23,184],[3,125],[-15,65],[-23,16],[-242,14],[-251,5],[-21,23],[-10,43],[1,43],[26,130],[-4,10],[-46,3],[-126,-21],[-83,-21],[-52,-7],[-93,-35],[-57,-75],[-19,-94],[2,-78],[-4,-56],[-26,-60],[-20,-68],[-14,-217],[-85,-24],[-105,2],[-106,44],[-39,0]],[[85519,57138],[-33,-23],[-127,-38],[-62,-54],[-16,-5],[-41,28],[-58,-3],[-59,-13]],[[85096,57024],[-19,16],[-125,315],[-39,113],[-39,69],[-34,73],[-14,70],[6,66],[-20,89],[-46,113],[-30,107],[-15,102],[-4,88],[8,73],[-9,53],[-25,35],[-14,44],[-30,60],[-46,45],[-50,24],[-253,1],[-275,-7],[-146,-4],[-39,-6],[-112,-3],[-181,25]],[[83545,58585],[-92,2],[-50,-5],[-130,-1]],[[83273,58581],[-19,-13],[-51,18],[-50,-6],[-28,20],[-61,-13],[-30,-16],[-48,-58],[-72,-30],[-44,12],[-42,64],[-32,61],[-11,34],[18,8],[99,20],[8,16],[6,188],[2,192],[-30,41],[-1,13],[53,52],[43,64],[67,117],[98,60],[7,11]],[[83155,59436],[6,23],[21,-2],[36,-70],[67,-86],[17,-6],[59,56],[47,25],[11,23],[6,49],[7,114],[27,14],[45,-35],[25,0],[45,47],[38,12],[40,29],[38,38],[19,3],[36,-84],[3,-21],[-36,-94],[16,-67],[3,-105],[22,-23],[41,6],[33,-20],[32,2],[31,25],[57,98],[84,170],[69,107],[55,44],[37,51],[19,58],[32,40],[67,31],[51,36],[50,117],[68,210],[30,302],[-6,394],[-5,129],[10,71],[26,48],[68,103],[46,84],[36,98],[68,225],[43,105],[40,60],[58,52],[73,45],[114,157],[90,157],[-12,189],[21,157],[50,199],[16,211],[-17,223],[7,182],[47,211],[20,79],[6,128],[0,205],[60,280],[120,354],[57,265],[-5,121]],[[83155,59436],[-44,58],[-39,74],[-35,10],[-34,-27],[-34,-43],[-60,-39],[-51,-22],[-16,-73],[-17,-29],[-44,-9],[-55,-121],[-25,-36],[-54,96],[-31,77],[-18,55],[-1,77],[-47,92],[-118,163],[-13,48],[-101,150]],[[82318,59937],[26,107],[19,50],[23,34],[93,84],[14,-3],[64,-109],[21,-9],[50,-2],[15,50],[-19,32],[-3,33],[21,78],[20,48],[2,23],[-64,62],[-30,36],[-11,35],[8,45],[24,36],[-1,19],[-53,89],[-43,13],[24,116],[4,52],[-12,138],[13,38],[52,-36],[71,30],[25,5],[21,-27],[29,-20],[164,57],[3,59],[11,93],[-15,45],[-5,82],[68,71],[16,-2],[37,-27],[35,-44],[30,-91],[21,-79],[34,-95],[72,-39],[85,-25],[47,6],[66,82],[37,63],[13,34],[21,-17],[25,-84],[16,-32],[4,-31],[-11,-39],[10,-24],[47,-18],[40,17],[48,78],[0,37],[-16,25],[0,33],[17,27],[16,71],[5,53],[16,33],[31,23],[11,21],[16,125],[-8,45],[0,37],[19,47],[3,78],[-19,307],[30,247],[-3,31],[-47,73],[-68,29],[-25,45],[-20,49],[-14,15],[-74,19],[-16,28],[13,194],[-3,80],[14,65],[14,49],[33,51],[27,76],[62,10],[40,51],[7,34],[40,96],[-2,63],[-18,72],[-23,59],[-13,22],[-28,140],[-25,33],[-49,18],[-93,16],[-56,-25],[-85,-47],[-107,-52],[-25,6],[13,82],[-11,61],[-16,56],[-9,79],[4,98],[16,91],[34,120],[2,48]],[[8726,47868],[-43,8],[3,26],[28,8],[12,-42]],[[43882,64433],[-12,-15],[-22,27],[-8,35],[14,26],[25,-30],[3,-43]],[[46808,70922],[-35,-26],[-58,-35],[-182,-75],[-24,-45],[-101,-282],[-85,-57],[-31,-42],[-24,-54],[-51,-98],[-21,-76],[-56,-164],[-30,-206],[-29,-283],[-25,-84],[-69,-156],[-56,-151],[8,-41],[62,18],[58,45],[21,-13],[21,-73],[24,-9],[23,9],[24,-18],[56,-336],[107,-171],[12,-66],[14,-139],[-38,-84],[-10,-145],[-5,-101],[3,-62],[13,-48],[21,-28],[80,-31],[53,-190],[34,-45],[49,-30],[117,30],[71,-4],[103,-29],[88,6],[87,58],[32,9],[35,-5],[51,-30],[64,-47],[52,-17],[59,4],[15,-11],[154,-309],[129,-250],[35,9],[20,-7],[18,-27],[32,11],[45,48],[66,10],[86,-29],[114,0],[142,28],[88,31],[34,34],[57,-4],[68,-30],[38,-43],[18,-107],[-15,-67],[-44,-67],[-24,-86],[-4,-105],[-23,-78],[-40,-50],[-16,-73],[9,-96],[-5,-141],[-17,-184],[0,-111],[17,-36],[9,-52],[-2,-67],[7,-60],[22,-77],[30,-155],[26,-67],[44,-54],[65,-158],[16,-33],[-18,-65],[-70,-94],[-137,-206],[-12,-26],[1,-43],[40,28],[73,-44],[13,-56],[35,-32],[40,-58],[35,-62],[43,-57],[6,-39],[-8,-40],[22,-93],[22,-64],[-7,-35],[18,-42],[43,-181],[3,-55],[10,-26],[12,-74],[20,-69],[-5,-48],[9,-46]],[[47391,59714],[-22,51],[-34,49],[-31,29]],[[47304,59843],[-13,39],[-18,78],[-43,48],[-63,-39],[-19,2],[-89,59],[137,344],[148,374],[4,34],[-13,30],[-64,36],[-22,38],[-30,16],[-23,27],[-42,26],[-26,25],[-31,8],[-25,45],[-90,86],[-23,8],[-62,-27],[-36,-47],[-45,-15],[-42,0],[-21,28],[-21,10],[-28,39],[-83,49],[-21,-9],[-56,-85],[-23,-27],[-29,2],[-36,-39],[-35,-14],[-77,-20],[-99,54],[-38,-28],[-74,-12],[-24,10],[-21,38],[-71,43],[-7,49],[20,88],[-31,175],[-11,30],[-19,10],[-36,-8],[-39,33],[-24,30],[-12,38],[13,71],[-12,61],[-23,34],[-15,59],[-23,47],[-31,24],[-31,-3],[-24,15],[-27,50],[-26,19],[-29,48],[-55,22],[-28,19],[-38,83],[3,29],[-11,30],[-28,129],[-20,44],[-65,103],[-60,49],[-20,69],[-62,8],[-26,23],[-57,73],[-37,6],[-26,-45]],[[45100,62589],[-77,48],[-66,70],[-69,18],[-44,43],[-41,68],[-22,45],[-18,23],[-88,65],[-17,7],[-44,-49],[-6,-82],[-29,-18],[-47,4],[-32,19],[-22,3],[-17,-21],[-65,18],[-36,20],[-48,41],[-22,-6],[-55,9],[-44,24],[-12,21],[-19,148],[-58,36],[-20,24],[-23,80],[-55,-9],[-89,51],[-62,49],[-57,54],[-86,106],[-73,59],[-24,52],[-53,68]],[[43560,63677],[-12,47],[-59,70],[29,89],[71,68],[93,-53],[11,105],[-33,92],[5,174],[11,35],[24,47],[51,41],[32,-15],[20,34],[76,-15],[23,14],[34,42],[24,42],[25,67],[26,-6],[16,49],[46,64],[-1,28],[-13,61],[3,23],[58,25],[17,59],[21,51],[24,75],[26,5],[14,88],[35,77],[71,228],[-21,-5],[-18,-31],[-41,22],[6,103],[-13,12],[-34,-79],[-30,80],[-2,50],[12,48],[-2,33],[-48,-24],[2,30],[30,31],[14,32],[26,36],[11,53],[6,83],[12,89],[-23,81],[-12,166],[4,96],[-7,76],[-12,64],[-57,85],[90,96],[33,73],[-41,150],[-54,126],[-1,76],[32,-8],[16,160],[-4,50],[-30,80],[-37,2],[-33,100],[-19,22],[-15,64],[-53,123],[-42,64]],[[43973,67697],[31,149],[28,28],[9,37],[-11,91],[16,30],[32,-53],[17,-49],[14,-15],[20,16],[81,98],[-5,30],[7,61],[27,50],[29,16],[9,28],[-7,43],[-30,107],[-28,57],[-17,57],[-9,53],[-31,50],[13,46],[32,65]],[[44200,68692],[13,-15],[36,-100],[56,-65],[60,-104],[24,-72],[36,-40],[-26,-39],[-5,-42],[25,-39],[34,10],[19,49],[-13,215],[-20,107],[-44,76],[14,32],[37,15],[49,37],[178,205],[61,193],[46,69],[53,46],[64,-11],[50,24],[16,62],[-14,83],[-19,50],[18,73],[19,110],[-1,93],[25,55],[-9,22],[-36,-45],[-12,17],[50,91],[26,139],[21,58],[71,81],[14,39],[54,61],[86,130],[34,37],[168,-84],[-17,-38],[-10,-50],[24,-53],[26,-15],[21,34],[22,96],[35,107],[8,111],[25,39],[36,13],[64,-22],[49,-23],[51,-3],[157,17],[255,290],[118,62],[74,61],[48,119],[12,90],[35,35],[37,-1],[16,22],[6,28],[88,77],[50,10],[45,-1],[100,-68],[46,-119],[7,-82],[-63,-89],[-15,-40]],[[96384,54094],[30,-42],[-84,17],[-13,39],[-1,28],[32,-6],[36,-36]],[[96680,54251],[22,-96],[0,-72],[-10,-23],[-19,15],[-36,57],[-67,57],[68,4],[15,50],[27,8]],[[96245,54377],[-8,-9],[-40,39],[-22,10],[-33,64],[13,222],[18,41],[18,4],[22,-28],[-5,-143],[29,-97],[19,-76],[-11,-27]],[[67055,73007],[-33,-26],[-24,11],[-22,28],[-11,39],[9,35],[45,40],[27,-13],[15,-63],[-6,-51]],[[67540,73203],[-12,-3],[-18,31],[2,55],[16,47],[31,-4],[8,-35],[2,-71],[-29,-20]],[[67427,73113],[-26,-64],[-57,5],[-29,26],[-35,81],[2,62],[12,54],[-2,47],[22,4],[3,-32],[52,-77],[19,-15],[39,-91]],[[67654,73969],[36,-13],[37,2],[24,-37],[5,-39],[-13,-48],[-47,-40],[-27,5],[-33,36],[19,72],[-1,62]],[[67150,74237],[24,-35],[-27,-8],[-64,27],[-17,-16],[-17,-58],[-33,87],[10,42],[45,-23],[79,-16]],[[67667,74262],[-14,-35],[-26,65],[-4,75],[37,24],[0,-78],[7,-51]],[[66806,74373],[-36,-16],[-21,2],[-32,24],[10,27],[34,29],[24,7],[21,-73]],[[66684,74463],[-42,-15],[-18,7],[-12,108],[96,72],[34,-12],[24,-57],[-16,-32],[-66,-71]],[[41501,70265],[23,-72],[5,-55],[55,-188],[44,-104],[95,-191],[42,-35],[70,-153],[24,-26],[14,-45],[72,-37],[20,-28],[-20,-40],[-15,-9],[-67,60],[-19,-15],[-7,-41],[-34,-44],[-1,-139],[1,-131],[25,-3],[61,-73],[0,-37],[-61,-65],[-15,-45],[26,-73],[6,-50],[-1,-52],[-7,-25],[-59,-59],[-13,-21]],[[41765,68469],[2,-16],[32,-41],[1,-52],[-41,74],[-35,45],[-3,106],[-14,58],[-53,53],[-45,37],[-34,-7],[20,-61],[54,-79],[3,-70],[-37,6],[-33,17],[-39,5],[-26,24],[-56,93],[40,80],[12,52],[-1,109],[-9,52],[-43,80],[-69,88],[-95,72],[-45,58],[-112,44],[-43,29],[-33,55],[-5,39],[11,60],[-31,77],[-133,151],[-75,55],[-28,43],[12,-104],[32,-63],[86,-58],[23,-34],[10,-45],[-50,-84],[-25,-22],[-7,-46],[-17,-14],[-17,26],[-69,133],[-133,64],[-25,39],[-49,121],[-23,111],[8,74],[55,115],[17,50],[-2,77],[-20,31],[-51,42],[-32,33],[9,16],[58,45],[3,54]],[[40595,70366],[18,13],[35,72],[36,-13],[271,-154],[89,75],[29,-5],[63,-38],[37,-12],[23,4],[40,-55],[38,-84],[31,-3],[76,-28],[47,6],[42,29],[23,36],[8,56]],[[41966,77683],[-40,-37],[-86,-52],[-46,-2],[-46,20],[-32,43],[-18,43],[55,-31],[35,30],[-46,139],[2,29],[37,76],[101,-23],[18,-13],[14,-48],[23,-38],[26,-101],[3,-35]],[[44073,77948],[-18,-22],[-19,31],[-29,16],[-33,34],[-8,36],[62,-4],[60,-20],[-15,-71]],[[43982,78070],[-14,-2],[-43,29],[-12,24],[15,33],[48,-23],[22,-46],[-16,-15]],[[43919,78180],[-66,25],[-40,71],[31,10],[22,-4],[24,-31],[14,-57],[15,-14]],[[43659,78366],[59,-15],[40,11],[21,-6],[29,-58],[-45,-7],[-15,11],[-53,2],[-55,31],[19,31]],[[43349,78443],[1,-18],[-75,51],[-33,54],[8,13],[99,-100]],[[42278,78791],[113,-32],[91,9],[39,-1],[41,-48],[14,-3],[59,24],[154,9],[16,-13],[27,-47],[80,-51],[43,-6],[42,10],[40,-5],[49,-45],[16,-6],[45,13],[-14,-42],[75,-58],[55,-116],[40,-47],[78,-71],[40,-14],[121,6],[29,-4],[25,-16],[39,0],[234,-180],[74,-95],[46,-50],[98,-72],[39,-16],[17,26],[-29,40],[33,2],[67,-81],[18,-30],[67,-48],[-16,-32],[-27,-3],[-52,13],[41,-52],[7,-37],[20,-4],[47,77],[73,-90],[40,-42],[-14,-48],[44,22],[33,-15],[18,-39],[41,-9],[42,1],[84,-32],[80,-65],[75,-14],[76,-2],[39,-34],[16,-47],[-29,-67],[28,-42],[-61,-18],[-9,-25],[16,-43],[35,13],[51,-11],[80,-11],[54,9],[109,-29],[33,-15],[65,-54],[30,-36],[64,-96],[56,-37],[48,-9],[17,6],[28,-24],[13,-42],[-7,-44],[-43,-62],[-68,-3],[-96,-12],[-93,-39],[-66,-51],[-49,-19],[-2,37],[-24,3],[-18,-25],[-30,-21],[-113,-1],[-45,28],[-47,20],[-169,21],[-41,-2],[-113,-21],[-114,-12],[-95,-33],[-91,1],[-108,-23],[-109,-4],[70,158],[146,152],[28,32],[20,42],[-2,59],[-35,48],[-18,58],[-50,20],[-52,12],[-54,0],[-114,17],[-60,1],[-52,32],[-85,115],[-39,33],[-37,55],[-20,170],[-17,81],[-26,71],[-39,54],[-41,18],[-158,-46],[-36,7],[-274,125],[-98,60],[-40,30],[-35,43],[-35,70],[-40,62],[-6,-42],[-199,-7],[-52,31],[-15,26],[-10,50],[-19,43],[-16,-87],[-27,-24],[-31,-3],[-37,55],[-161,12],[-67,63],[-46,67],[45,24],[93,31],[32,48],[-8,39],[-19,29],[-40,27],[-28,5],[-359,7],[-53,-65],[-64,-57],[-42,-58],[-16,-31],[-64,-58],[-37,-56],[-46,-25],[-25,16],[-25,0],[-37,-21],[-92,-6],[-14,-15],[-13,-40],[-15,-78],[-14,-25],[-46,-10],[-44,-22],[-90,-74],[-23,-11],[5,55],[-5,53],[-25,2],[-53,-24],[-44,-40],[-23,-10],[-21,21],[5,25],[148,96],[17,7],[52,-4],[20,27],[-25,126],[10,86],[34,66],[69,101],[33,33],[339,210],[35,11],[220,42],[34,14],[102,63],[107,25],[114,-19]],[[47914,71060],[-23,-10],[-82,67],[-68,109],[-3,57],[36,-26],[27,-77],[80,-51],[33,-69]],[[42479,76135],[14,-13],[23,23],[66,-11],[10,-29],[-50,-1],[-34,-22],[-44,4],[-6,67],[21,-18]],[[92170,87078],[-17,-6],[-43,26],[-31,-32],[-51,-21],[-64,15],[-27,-24],[-3,67],[-31,43],[-59,-4],[-24,11],[-49,-19],[-68,-40],[-22,1],[-64,39],[-3,18]],[[91614,87152],[25,-8],[47,14],[20,68],[6,79],[78,-23],[80,-12],[65,-3],[64,12],[196,84],[56,50],[34,17],[60,41],[63,23],[-40,-48],[-225,-210],[-15,-62],[10,-44],[32,-52]],[[92170,87078],[20,-53],[-49,-12],[-102,-1],[-80,-114],[-43,-39],[-51,-23],[-78,-15],[-39,-41],[-7,-47],[-29,4],[-12,42],[-20,18],[-75,-8],[-105,55],[-15,34],[-42,122],[-7,90],[39,-23],[36,28],[35,46],[42,19],[26,-8]],[[83903,98075],[37,1],[38,18],[4,89],[57,-15],[57,-24],[8,-53],[34,-49],[47,-13],[77,-31],[38,-6],[70,-44],[23,-5],[26,-40],[25,12],[93,18],[59,-57],[-27,-51],[-32,-12],[-31,-41],[9,-21],[44,-19],[67,-82],[47,-88],[35,-17],[70,62],[64,35],[1,16],[-53,107],[48,1],[74,-26],[113,-86],[60,7],[71,24],[7,-48],[-11,-26],[-52,-25],[40,-39],[47,-66],[36,-24],[47,19],[19,25],[31,-29],[45,-20],[43,-35],[19,11],[72,-19],[20,-16],[14,-85],[91,-100],[11,-72]],[[85635,97136],[-35,-12],[-66,-1],[-78,-70],[-22,-38],[-88,-55],[-22,-54],[-10,-80],[-15,-20],[-48,-17],[-47,-58],[-31,-28],[-57,-33],[-62,-9],[-80,10],[-47,13],[-22,-14],[-31,-42],[-34,-73],[-14,-54]],[[83474,96618],[-19,34],[-96,100],[-46,-3],[-17,16],[-26,58],[-86,68],[-50,71],[-46,49],[-45,-1],[-57,59],[-21,33],[-57,124],[-47,69],[53,96]],[[82914,97391],[-24,55],[-78,60],[-30,39],[-14,54],[-37,65],[20,29],[73,-73]],[[82824,97620],[23,47],[41,53],[41,31],[68,11],[25,15],[87,-11],[22,52]],[[83131,97818],[71,14]],[[83202,97832],[24,46],[29,7],[30,25],[42,-4],[23,53],[76,17],[84,31],[44,27],[87,42],[72,26],[-49,72],[28,25],[81,-19],[50,-66],[-5,-42],[48,-28],[37,31]],[[83640,100205],[-12,-31],[-53,-8],[-53,12],[-10,41],[8,40],[-40,44],[0,47],[165,-123],[-5,-22]],[[82384,100553],[-66,-2],[-51,35],[32,47],[64,-22],[21,-58]],[[83429,100528],[11,-47],[-12,-23],[-48,39],[-49,0],[-29,-61],[-22,-3],[-75,55],[-14,50],[9,103],[23,27],[4,38],[42,41],[37,2],[29,-59],[62,-26],[15,-29],[-39,-50],[10,-27],[46,-30]],[[81223,100758],[-17,-17],[-41,2],[-15,33],[40,15],[33,-33]],[[81719,100837],[3,-13],[63,-19],[56,-74],[3,-65],[-69,-75],[118,11],[30,-56],[64,21],[159,-85],[97,41],[25,3],[22,-69],[-24,-69],[-85,-74],[18,-45],[28,-11],[80,10],[127,-45],[27,14],[103,104],[41,22],[136,16],[24,40],[55,40],[36,44],[85,84],[195,-39],[51,-89],[129,-99],[119,8],[43,-93],[18,-115],[69,-60],[97,-25],[21,-122],[50,-190],[-2,-59],[-18,-65],[-33,-55],[-42,-31],[-24,-34],[-4,-38],[53,-67],[113,-95],[45,-82],[-21,-68],[-7,-49],[26,-57],[28,-20],[11,-29],[0,-68],[20,-20],[-33,-123],[-32,-50],[10,-43],[49,-100],[-6,-72],[78,-42],[48,-147],[-23,-110]],[[83969,98239],[-20,-60],[-65,-133],[-18,-2],[-48,28],[5,42],[-50,66],[-81,19],[-28,-25],[49,-72],[-72,-26],[-87,-42],[-44,-27],[-84,-31],[-76,-17],[-23,-53],[-42,4],[-30,-25],[-29,-7],[-24,-46]],[[83131,97818],[-22,-52],[-87,11],[-25,-15],[-68,-11],[-41,-31],[-41,-53],[-23,-47]],[[82824,97620],[-73,73],[-20,-29],[37,-65],[14,-54],[30,-39],[78,-60],[24,-55]],[[82914,97391],[-53,-96],[47,-69],[57,-124],[21,-33],[57,-59],[45,1],[46,-49],[50,-71],[86,-68],[26,-58],[17,-16],[46,3],[96,-100],[14,-47],[-7,-112],[-48,-45],[-81,41],[-11,-12],[-22,-118],[-37,-44],[-47,-21]],[[83216,96294],[-57,-18],[-80,-50],[-36,-30],[-23,-59],[83,-129],[1,-58],[-25,-59],[59,-17],[9,-30],[-3,-53],[-14,-70],[-59,20],[-41,40],[-5,52],[-37,21],[-87,-22],[-52,35],[-71,15],[-5,-63],[-202,-25],[-62,-23],[-78,-44],[-41,-43],[-46,0],[-64,-22],[-26,3],[-38,50],[-9,35],[-56,3],[-36,16],[-98,-4],[-12,-87],[-39,-72],[-56,-24],[8,59],[-45,11],[-27,66],[-27,22],[-96,49],[-42,-35],[-55,-1],[-147,102],[-129,-10],[-38,42],[-28,-12],[-48,46],[-19,7]],[[81217,95928],[-59,-31],[-14,-30],[21,-25],[43,5],[3,-25],[-62,-24],[-38,12],[-56,0],[-45,-21],[-71,-9],[-99,5],[-36,16]],[[80804,95801],[-21,9],[-16,47],[4,70],[24,91],[6,68],[-10,43],[14,64],[38,86],[26,91],[13,95],[18,62],[37,44],[93,130],[-2,61],[-57,26],[-87,22],[-82,13],[-36,18],[-33,45],[-108,-26],[-35,9],[-41,-3],[-9,40],[-48,19],[-49,-37],[-18,4],[-69,111],[-17,52],[-33,34],[-49,7]],[[80257,97096],[2,41],[25,92],[33,44],[2,63]],[[80319,97336],[-71,28],[-29,24],[-51,71],[-12,42],[3,60]],[[80106,97999],[24,108],[-18,31],[-49,24],[-11,43],[30,-4],[83,75],[-21,22],[-3,31],[51,130],[0,54],[-44,77],[-17,41],[-45,73],[1,28],[25,22],[68,32],[82,-39],[30,24],[40,-3],[96,39],[26,48],[-37,39],[14,44],[46,26],[53,48],[18,42],[6,80],[-28,44],[-59,-1],[-36,15],[-24,46],[24,73],[114,-1],[16,78],[29,99],[31,78],[3,197]],[[80624,99762],[-19,31],[-43,34],[23,126],[43,68],[34,19],[148,11],[164,-5],[68,-102],[-25,-53],[40,-24],[19,9],[24,96],[14,16],[50,-38],[38,3],[-14,80],[10,76],[39,66],[120,-28],[132,14],[50,-29],[114,-148],[38,-25],[-156,205],[-41,22],[-63,7],[-40,17],[-32,52],[2,181],[-24,27],[-31,10],[-58,-13],[-8,41],[9,31],[79,20],[52,28],[2,50],[-33,38],[-39,71],[-46,67],[-5,78]],[[81259,100891],[100,-5],[122,-36],[30,-26],[37,-1],[118,34],[53,-20]],[[81103,100810],[-6,84],[144,-11],[-12,-19],[-109,-12],[-17,-42]],[[96150,70670],[-139,-348]],[[96011,70322],[-60,7],[-18,23],[-37,25],[-42,1],[-40,-23],[-68,-29],[-61,-10],[-90,-35],[-68,28],[-15,301],[1,122],[11,68],[10,26],[58,94],[20,38],[165,385]],[[95777,71343],[30,39],[13,-6],[82,-95],[15,2],[27,30],[25,102],[25,36],[53,29],[48,32],[6,-34],[72,-136],[23,-68],[25,-123],[-13,-69],[-19,-45],[-28,-40],[-96,-97],[-107,-63],[-69,-125],[-51,9],[8,-48],[49,4],[59,36],[52,18],[57,1],[51,-16],[36,-46]],[[51131,73281],[-40,-15],[-18,120],[-28,87],[10,75],[59,-33],[19,-41],[11,-107],[-13,-86]],[[82418,100883],[76,-44],[52,3],[35,-18],[11,-89],[-37,-18],[-41,6],[-55,-23],[-182,100],[10,117],[86,7],[45,-41]],[[82040,100852],[-29,-7],[-33,15],[-54,57],[22,5],[35,-29],[29,-7],[30,-34]],[[82929,100934],[-16,-10],[-66,7],[-75,-48],[-28,15],[18,42],[64,47],[46,-7],[57,-46]],[[81858,100879],[-45,-10],[-65,24],[-15,107],[25,-1],[73,-50],[27,-70]],[[82148,100784],[-20,-3],[-29,74],[50,77],[51,62],[28,7],[-80,-217]],[[84023,100973],[-16,-12],[-71,20],[-87,48],[13,95],[22,41],[158,-106],[2,-40],[-21,-46]],[[82109,101383],[18,-37],[22,-77],[35,-87],[-14,-36],[10,-47],[-10,-48],[-70,-56],[-78,-3],[-81,27],[-114,53],[-26,45],[-30,90],[0,110],[58,14],[126,52],[59,-35],[35,-1],[60,36]],[[82980,101373],[-41,-29],[-22,42],[34,46],[29,-59]],[[82093,101503],[-35,1],[-2,45],[10,40],[-12,36],[13,24],[49,-80],[-23,-66]],[[82938,101505],[1,-70],[-28,-34],[-80,-34],[-33,-34],[-13,-50],[26,-37],[48,-19],[12,-70],[-39,-34],[-100,-34],[-11,-82],[3,-65],[-9,-113],[-82,-29],[-52,99],[0,40],[-37,149],[-77,17],[-82,-5],[-49,87],[8,95],[-27,48],[-3,46],[-48,31],[-13,53],[30,13],[76,-6],[42,15],[61,88],[5,45],[65,9],[30,-34],[-6,-54],[4,-70],[55,-22],[28,77],[16,14],[6,47],[-30,50],[75,59],[77,46],[45,2],[45,-11],[65,-29],[13,-22],[-36,-79],[19,-93]],[[82285,102526],[-18,-16],[-59,23],[26,32],[65,15],[38,-5],[-52,-49]],[[81259,100891],[-14,99],[-28,62],[42,14],[-9,121],[-15,62],[-116,64],[-92,63],[21,209],[9,57],[-35,110],[4,126],[15,199],[50,7],[83,-36],[34,-4],[51,-45],[20,34],[8,58],[66,75],[77,41],[55,-64],[6,74],[20,142],[-63,22],[-50,-19],[-51,-90],[-44,-113],[-73,-10],[-58,-32],[-86,62],[6,69],[62,92],[82,88],[84,-1],[60,28],[36,4],[113,-6],[58,19],[52,40],[113,172],[63,71],[128,25],[118,83],[33,1],[-55,-62],[-16,-60],[40,-79],[-9,-48],[3,-95],[-37,-49],[-43,-106],[-18,-15],[-4,-123],[4,-29],[-6,-112],[44,-45],[46,-24],[153,1],[34,-55],[-30,-103],[-44,-37],[-57,-28],[-35,-1],[-49,53],[-46,-44],[-40,-145],[-19,-98],[-71,8],[-49,-23],[52,-57],[-54,-37],[-54,-70],[-48,-35],[-31,-45],[35,-157],[-12,-43],[-60,-62],[-22,-53],[51,0],[32,-12],[37,-38],[-12,-28],[15,-71]],[[46667,76029],[-43,62],[-3,27],[20,68],[-2,45],[-20,141],[39,111],[47,33],[50,-1],[69,-33],[20,1],[66,29],[55,17],[52,-19],[64,-65],[21,-13],[86,-3],[57,-66],[48,-26],[27,-2],[50,26],[25,-1],[28,-57],[5,-81],[24,-74],[36,-47],[179,20],[40,-39],[-14,-32],[-25,-18],[-85,8],[-37,-4],[-8,-62],[50,-7],[49,-15],[49,-23],[51,-17],[56,-10],[56,-18],[94,-58],[103,-132],[27,-31],[18,-41],[-8,-51],[-37,-84],[-21,-27],[-30,-16],[-21,-35],[-20,-58],[-27,-3],[-25,33],[-17,51],[-50,48],[-59,-6],[-87,28],[-53,-13],[-53,-3],[-54,14],[-54,5],[-54,-18],[-53,-31],[-71,-85],[-128,-24],[-36,35],[-35,48],[-49,7],[-71,-37],[-45,-14],[-23,-34],[0,-66],[-10,-41],[-70,-154],[-39,-108],[-16,-33],[-19,-8],[-34,63],[-22,22],[-27,12],[-11,33],[0,47],[-7,45],[-16,36],[-25,23],[2,115],[12,47],[-11,49],[-47,52],[-55,126],[5,9],[52,3],[18,22],[35,60],[7,49],[-3,37],[-22,45],[-9,46],[64,100],[5,46]],[[81059,88090],[1,-16],[40,-28],[20,-61],[-18,-125],[-26,-221],[0,-48],[31,-102]],[[81107,87489],[5,-51],[-6,-125],[34,-138],[-36,-83],[-15,-74],[-13,-170],[-23,-62],[-30,-57],[-33,-36],[-90,-71],[-38,-108],[-84,-91],[-17,-31],[-8,-72],[2,-100],[14,-80],[41,-118],[35,-130],[9,-65],[14,-25],[49,-42]],[[80917,85760],[86,-58],[15,-23],[43,-90],[40,-160],[13,-107],[150,-162],[145,-143],[11,-23],[50,-314]],[[81470,84680],[27,-172]],[[81497,84508],[60,-377],[67,-420]],[[81624,83711],[-90,-79],[35,-85],[67,-138],[40,-111],[14,-48],[32,-138],[32,-177],[10,-103],[-12,-283],[18,-360],[25,-179],[-39,-162],[-33,-155],[2,-78],[18,-121],[18,-90],[25,-47],[-5,-152],[-10,-54],[-75,-80],[-84,-72],[-23,-62],[-6,-68],[11,-56],[143,-308],[95,-204],[8,-51],[4,-144],[39,-182],[43,-79],[16,-60],[60,-73],[18,-4],[107,50],[182,-82],[172,-83],[12,-17],[99,-277],[87,-261]],[[82679,79038],[-223,-213],[-223,-212],[-223,-213],[-223,-212],[-223,-213],[-223,-212],[-223,-213],[-223,-212],[-148,-141],[-212,-281],[-199,-277],[-171,-237],[-127,-176],[-38,-31],[-168,-52],[-296,-92],[-191,-59]],[[79345,75992],[-136,-41],[-220,-67],[-33,0],[-29,18],[-59,62],[-6,33],[31,82],[6,31],[27,42],[1,27],[-24,104],[1,159],[-31,42],[-60,47],[-54,27],[-86,26],[-83,29],[-29,20],[-54,102],[-27,26],[-125,18],[-41,16],[-34,25],[-30,32],[-16,56],[-5,46],[-11,21],[-138,111],[-35,37],[-18,35],[3,114],[-12,84],[-204,216],[-141,149],[-282,298],[-141,149],[-282,298],[-141,149],[-282,298],[-142,150],[-282,298],[-282,298],[-260,275],[-132,133]],[[75447,80067],[-299,298],[-148,142],[-162,154],[-243,231],[-243,231],[-162,154],[-162,154],[-243,231]],[[73785,81662],[0,258]],[[73785,81920],[0,169]],[[73785,82089],[0,502],[10,68],[43,34],[127,149],[114,105],[24,30],[112,121],[26,18],[59,12]],[[74300,83128],[25,23],[34,49],[49,55],[40,31],[21,4],[103,-16],[95,-23],[30,25],[19,39],[9,103],[9,8],[52,-8],[62,2],[90,14],[99,26],[141,61],[67,71],[48,75],[51,112],[41,96],[81,61],[69,36],[39,15],[89,51],[75,77]],[[75738,84115],[70,72],[122,22],[32,39],[1,45],[-20,32],[-70,60],[8,78],[12,37],[-4,52],[-17,52]],[[75872,84604],[-4,75],[8,29],[26,20],[29,7],[41,-9],[71,12],[182,90],[12,28],[25,117],[29,23],[147,35],[32,3],[272,-17],[233,-11],[22,13],[0,39],[-16,75],[9,46],[34,43]],[[77024,85222],[42,48],[-20,58],[-33,40],[-71,66],[-42,56],[-26,65],[-17,136],[-32,77],[-24,94],[21,173],[-31,104],[-5,99],[9,92],[-6,129],[-36,134],[25,69],[-3,20],[-33,42],[-14,35],[25,81],[-2,20],[-145,152],[-25,41],[-12,52],[86,-13],[45,6],[104,62],[81,84],[64,42],[56,92],[51,58],[73,62],[212,135],[32,1],[70,-31],[61,10],[41,47],[45,113],[69,69],[87,69],[119,66],[78,61],[123,53],[309,33],[159,30],[107,-7],[109,96],[55,32],[236,8],[111,70],[422,0],[51,-24],[51,-37],[86,-92],[43,-20],[56,19],[129,87],[147,45],[79,51],[34,75],[68,28],[39,-58],[151,-58],[93,17],[41,17],[-15,87],[99,-24],[75,-41],[79,-83],[51,-17],[94,38],[193,18],[11,-71],[-68,-51],[-32,-90],[-60,-60],[-10,-19]],[[43012,60593],[-8,-27],[-41,3],[-11,8],[10,128],[11,41],[33,40],[28,19],[36,-3],[38,-36],[-45,-66],[-34,-18],[-17,-89]],[[38580,61730],[-18,-1],[-24,30],[19,54],[34,-29],[8,-20],[-19,-34]],[[39013,62029],[-51,-29],[-29,27],[-2,18],[28,43],[27,23],[25,49],[45,30],[25,-34],[-15,-40],[-27,-28],[-26,-59]],[[38618,62126],[-22,-1],[-67,67],[4,66],[27,45],[86,23],[36,-42],[-3,-79],[-29,-58],[-32,-21]],[[38148,62342],[-43,-12],[-36,24],[-16,37],[0,74],[80,20],[27,-46],[-1,-69],[-11,-28]],[[38515,62431],[-20,-21],[-81,24],[-25,40],[20,56],[17,22],[49,-21],[49,-62],[-9,-38]],[[38214,62681],[27,-45],[15,-128],[86,-135],[11,-75],[-4,-49],[42,-53],[27,-56],[-46,-132],[-97,-55],[-103,2],[-21,14],[-28,51],[-5,44],[16,43],[54,65],[81,58],[10,44],[-32,43],[-23,86],[-51,60],[-26,184],[-17,9],[-35,-25],[-20,34],[37,42],[8,30],[56,14],[24,-24],[14,-46]],[[43539,63536],[-24,-6],[-12,34],[40,46],[-4,-74]],[[45100,62589],[-24,-25],[-58,-10],[-47,24],[-21,-24],[61,-64],[29,-111],[43,-68],[26,-34],[2,-25],[-11,-81],[15,-170],[-10,-11],[-32,0],[-26,30],[-5,-27],[-65,-396],[-31,-53],[-193,-366],[-116,-138],[-138,-161],[-293,-172],[-215,-120]],[[43991,60587],[-34,-45],[-105,-211],[-5,-21],[15,-59],[-15,-15],[-20,9]],[[43827,60245],[-19,52],[-26,1],[-1,-24],[-22,-114],[-1,-55],[-9,-22],[1,-49],[-22,-46],[-17,-76],[-18,-25],[-22,-118],[-20,-64]],[[43651,59705],[-13,-54],[-3,-40],[14,-52],[-14,-72],[-76,-72],[-19,-34],[-8,-39],[3,-61],[-25,-11],[-24,-67],[-19,-14],[-48,22],[-35,0],[-27,21],[-53,113],[-20,66],[-6,92],[-53,59],[-69,-15],[-71,59],[-43,44],[-33,22],[-25,-10],[-41,-74]],[[42943,59588],[-39,-33],[-18,2],[-23,22],[-4,25],[58,129],[-43,2],[-15,28],[-9,67],[8,41],[23,22],[34,-17],[24,-1],[15,39],[32,30],[6,19],[-17,63],[-1,122],[-10,25],[-13,106],[-12,35],[61,35],[58,67],[27,49],[18,47],[43,218],[40,138],[-7,65],[-33,90],[-8,131],[-1,70],[-22,-55],[6,-193],[-20,-87],[-27,-21],[-18,15],[10,141],[-20,-25],[-32,-96],[-52,-71],[-15,-53],[-41,27],[-31,29],[-101,159],[-66,34],[-40,55],[-14,56],[41,33],[42,45],[5,99],[-2,78],[-30,133],[14,173],[-8,68],[-35,144],[26,73],[94,53],[30,35],[21,114],[21,69],[42,-28],[-48,132],[-6,47],[70,141],[36,37],[45,74],[37,112],[9,178],[-15,127],[-12,134],[23,34],[57,18],[46,43],[24,41],[55,-7],[63,62],[102,31],[142,71],[31,63],[-14,111]],[[92274,84393],[36,-149],[31,-116],[38,-161],[17,-105],[56,-177],[33,-146],[58,-291],[14,-61]],[[92557,83187],[-24,-31],[-48,-113],[-51,-356],[-74,-279],[-8,-175],[-12,-63],[-35,-89],[-42,-86],[-76,45],[-122,152],[-72,145],[-76,93],[-73,124],[-20,89],[1,57],[-32,140],[-23,66],[-88,148],[-26,80],[-39,84],[-32,193],[-35,122],[-40,-34],[7,-51],[-34,-71],[-21,-83],[16,-67],[72,-103],[15,-45],[16,-97],[-2,-132],[11,-45],[54,-98],[32,-109],[17,-46],[54,-85],[77,-163],[74,-110],[52,-53],[23,-53],[5,-137],[-4,-66],[46,-123],[18,-62],[45,-51],[20,-58],[19,-94],[28,-279],[39,-68],[121,-367],[101,-232],[50,-173],[74,-211],[147,-462],[88,-143],[35,-80],[63,-62],[68,-90],[-65,9],[-39,-21],[-16,-98],[8,-234],[18,-120],[57,-226],[43,-68],[21,-44],[29,-32],[136,-77],[80,-163],[179,-207],[18,-70]],[[93405,77979],[-142,0],[-282,0],[-283,0],[-283,0],[-282,0],[-283,0],[-282,-1],[-283,0],[-222,0],[22,106],[-9,31],[-28,7],[-18,-9],[-42,-130],[-22,-5],[-215,0],[-164,0],[-329,0],[-329,0],[-329,0],[-329,0],[-165,0],[-329,0],[-329,0],[-165,0]],[[88283,77978],[0,313],[0,313],[0,312],[0,470],[0,312],[0,469],[0,313],[0,313],[0,312],[0,470],[0,312],[0,313],[0,469],[0,313],[-27,135],[-22,135],[-24,166],[-3,54],[-39,171],[-4,48],[10,35],[65,144],[20,70],[16,84],[6,68],[-20,104],[-22,94],[-8,96],[-3,95],[34,64],[40,60],[14,38],[41,61]],[[88357,84704],[32,-85],[67,-14],[221,75],[242,-76],[135,-29],[206,-64],[126,-115],[34,-15],[91,2],[59,-68],[236,-32],[125,-75],[72,-60],[43,-19],[37,3],[52,23],[64,42],[70,59],[146,150],[52,26],[74,-4],[17,40],[22,28],[35,70],[76,11],[152,65],[-17,-31],[-138,-73],[59,-9],[61,25],[69,16],[12,31],[9,58],[14,9],[47,-11],[143,-90],[35,-2],[122,60],[32,-28],[74,-112],[-26,2],[-79,97],[-7,-48],[-45,-85],[56,-36],[46,-14],[40,-89],[46,18],[32,57],[-28,65],[15,1],[31,-27],[90,-108],[30,-23],[35,4],[74,31],[20,-5],[98,40],[28,-59],[79,33],[124,-1],[102,36],[118,85],[9,13],[21,-79]],[[94813,73592],[18,-37],[22,16],[7,26],[68,-52],[-4,-34],[-41,-2],[-47,15],[-43,-5],[-52,15],[-11,58],[32,-28],[21,14],[-24,40],[-33,8],[3,31],[23,27],[-18,43],[37,-10],[38,-56],[4,-69]],[[94785,73861],[15,-67],[-42,25],[11,41],[16,1]],[[95156,72399],[-51,90]],[[95105,72489],[-21,23],[-106,56],[-74,78],[-56,65],[-35,18],[-34,2],[-72,-13],[-60,41],[-25,0],[-71,26]],[[94551,72785],[-113,-46],[-31,6],[-27,71],[-27,32],[-21,0],[-12,-28],[-79,-73],[-133,-40],[-31,2]],[[94077,72709],[-24,30],[-67,124],[-19,21],[-46,16],[-29,24],[-26,51],[-25,29],[-135,-489],[-27,5],[-67,150],[-41,57],[-31,-5],[-23,-28],[-14,-50],[-32,-44],[-36,6],[-56,24],[-57,-5],[-67,-35],[-23,334],[-19,275],[41,82],[19,78]],[[93273,73359],[49,254],[19,51],[39,135],[5,40],[38,171],[-4,114],[-7,115]],[[93412,74239],[39,122],[-1,46],[8,107],[6,27],[23,2],[46,-14],[34,10],[70,4],[18,33],[25,124],[16,26],[47,30],[54,63],[35,8],[37,33],[33,14],[31,-8],[67,41],[6,22],[46,70],[21,75],[43,79],[37,47],[130,-403],[53,-238],[47,-248],[34,-373],[33,-189],[53,-94],[37,-177],[31,-7],[22,-49],[39,-166],[28,-62],[14,53],[-12,82],[10,66],[21,40],[50,-54],[27,-41],[7,-82],[11,-45],[52,-96],[44,-28],[56,-7],[47,-21],[38,-35],[71,-98],[163,-85],[130,-262],[77,-182],[253,-275],[44,-132],[23,-129],[53,6],[91,-141],[26,-108],[75,-39],[13,64],[36,-52],[15,-81],[-48,-32],[-53,-29],[-25,-36],[-25,-102],[-27,-30],[-15,-2],[-82,95],[-13,6],[-30,-39],[-39,73],[-28,63],[-39,77],[-78,77],[-40,100],[-41,110],[-60,90],[-113,130],[-103,164],[-80,172]],[[69820,82026],[-41,-113],[-53,42],[-23,38],[50,4],[52,57],[15,-28]],[[70892,82261],[-3,-53],[10,-54],[-2,-82],[-21,-45],[-53,-44],[-41,8],[-24,17],[-42,73],[-1,74],[39,48],[16,63],[99,-12],[23,7]],[[70123,82174],[-17,-6],[-21,17],[-22,56],[28,59],[19,-2],[37,-31],[12,-50],[-36,-43]],[[70489,82423],[-36,-159],[-33,-62],[-20,-21],[-50,-17],[-59,99],[-31,100],[-16,32],[26,26],[40,-5],[101,30],[85,101],[84,13],[2,-33],[-93,-104]],[[71410,82277],[-58,-79],[-59,18],[49,33],[53,60],[34,133],[54,147],[10,62],[22,24],[41,-2],[13,-33],[0,-74],[-15,-122],[-28,-109],[-116,-58]],[[69843,82502],[-10,-5],[-10,55],[-51,135],[31,60],[56,1],[23,-42],[8,-43],[-11,-25],[3,-50],[-6,-33],[-33,-53]],[[71617,82793],[-29,-46],[-33,17],[16,100],[15,30],[60,44],[49,18],[15,46],[16,18],[17,-27],[-13,-33],[-10,-100],[-33,-33],[-70,-34]],[[78211,89589],[-81,0],[-2,28],[15,39],[26,-39],[41,-7],[1,-21]],[[78147,89761],[-16,-43],[-65,16],[-15,17],[15,48],[18,6],[1,34],[20,35],[93,28],[21,-23],[5,-34],[-56,-74],[-21,-10]],[[78879,90368],[41,-23],[44,21],[46,-18],[5,-44],[-20,-50],[-52,-104],[-21,-63],[-39,-37],[-35,-22],[-74,46],[-44,12],[-13,17],[-10,70],[-19,22],[-29,10],[-58,-55],[-18,37],[-27,7],[-10,51],[178,168],[52,37],[109,43],[17,-56],[-23,-69]],[[79374,90404],[-8,-8],[-133,80],[-53,22],[4,60],[89,8],[72,-29],[38,-81],[-9,-52]],[[76752,92886],[17,-57],[55,-30],[67,-10],[26,-19],[-5,-63],[-25,-55],[22,-24],[25,1],[22,41],[15,-26],[47,-26],[104,-50],[74,-7],[10,-21],[66,-77],[81,6],[43,12],[68,-53],[43,-42],[104,21],[24,-18],[52,5],[60,-10],[50,3],[8,77],[20,31],[29,-5],[106,-41],[85,-46],[61,-16],[34,-66]],[[78140,92321],[-6,-33],[6,-60],[25,-19],[43,15],[51,33]],[[78259,92257],[66,-32],[30,-22],[25,-47],[20,-3],[72,47],[75,-22],[84,-31],[36,-3],[7,36],[96,44],[34,8],[78,-25],[26,0]],[[78908,92207],[12,-44],[21,-17],[8,-38],[-61,-23],[-7,-65],[38,-56],[4,-96],[-43,-58],[-61,-65],[-299,-210],[-71,-101],[-28,-24],[-222,-64],[-155,-68],[-75,-25],[-93,-118],[-44,-48],[35,-13],[41,-57],[-13,-25],[-86,-51],[-28,1],[-100,-206],[-88,-148],[-50,-64],[-51,-96],[-108,-248],[-1,-72],[53,-247],[31,-65],[43,-54],[81,-46],[20,-46],[-28,-43],[-81,-78],[-142,-104],[-60,-83],[-13,-79],[-41,-36],[-16,-111],[-30,-99],[-26,-56],[-4,-40],[44,-56],[-44,-35],[-50,-7],[-167,-7],[-135,-121],[-68,-108],[-61,-199],[-74,-118],[-33,-22],[-50,52],[-64,8],[-61,-18],[-33,-41],[-50,-22],[-49,19],[-107,11],[-47,-2],[-74,-33],[-64,22],[-107,11],[-232,-26],[-30,-12],[-29,-50],[-74,-85],[-112,-3],[-102,-55],[-25,-35],[-43,-96],[-13,-70],[-36,11],[-8,-54],[-38,-24],[-32,-9],[-79,43],[-66,65],[-34,5],[-56,101],[-24,65],[-17,70],[-1,48],[-50,28],[-12,64],[36,83],[-29,-11],[-42,86],[-169,166],[11,39],[-49,-36],[-87,8],[-99,-21]],[[74335,88550],[-42,283],[25,99],[28,41],[38,83],[46,70],[70,27],[18,53],[3,51],[-57,-9],[-102,192],[16,76],[10,103],[27,39],[41,39],[34,56],[17,54],[4,50],[-20,35],[-56,20],[-57,141],[-13,89],[-47,49],[-39,87],[35,14],[145,0],[35,23],[26,59],[28,96],[6,59],[-8,25],[-48,59],[5,46],[67,64],[21,30],[-16,47],[8,145],[5,24],[-17,157],[-31,91],[20,37],[46,31],[37,75],[54,62],[70,50],[49,55],[33,54],[-13,48],[-28,28],[-36,17],[-65,5],[-7,21],[0,119],[-26,47],[-37,-5],[-56,21],[-13,-14],[-71,4],[-51,21],[-20,-18],[-7,-41],[-25,-22],[-58,-21],[-47,1],[-78,37],[-87,-13],[-11,10],[-75,-49],[-25,-1],[-31,58],[5,22],[36,63],[-36,81],[-140,-45],[-62,-43],[-41,-46]],[[73744,91866],[-32,-10],[-11,14],[-4,110],[84,117],[-53,8],[2,34],[35,54],[-36,41],[0,118],[-75,-38],[-20,6],[-1,48],[42,72],[5,23],[-50,10],[-37,36],[-46,78],[0,41],[25,96],[66,45],[65,67],[89,-13],[56,14],[49,34],[29,8],[46,30],[-2,40],[-15,30],[13,28],[109,79],[65,9],[67,40],[45,-26],[39,9],[45,-31],[59,-70],[86,-28],[69,22],[122,4],[61,-9],[109,17],[62,-6],[100,35],[78,-44],[151,-20],[91,-36],[250,-60],[91,0],[128,33],[54,26],[50,-15],[73,29],[35,-6],[45,-42],[161,-55],[42,47],[31,10],[116,-29],[116,-59],[60,-4],[89,16],[85,43]],[[87266,103479],[30,-16],[57,17],[62,-11],[142,-86],[13,-22],[-85,-11],[-39,-44],[-24,-6],[-96,-72],[-12,-21],[-100,4],[-54,-13],[-44,-39],[-18,-76],[-33,-59],[-32,-22],[-35,-3],[-5,44],[73,84],[15,27],[-36,12],[-30,29],[-66,34],[44,87],[-53,77],[61,9],[34,-22],[37,26],[43,-5],[26,50],[94,33],[31,-5]],[[87578,103430],[-35,-7],[-85,49],[44,47],[72,-21],[4,-68]],[[87398,103623],[-36,-35],[-32,30],[-45,-77],[-52,-14],[-30,16],[3,29],[-29,76],[-45,22],[-63,2],[-45,32],[175,21],[54,75],[49,-5],[10,-41],[80,-17],[31,-50],[11,-60],[-36,-4]],[[89589,104080],[60,-76],[-39,-22],[-19,-29],[-51,-17],[-61,-157],[-58,-74],[-68,-72],[-16,-76],[45,-207],[-1,-38],[-18,-77],[7,-34],[29,-58],[32,-86],[12,-56],[41,-35],[-7,-30],[-90,-29],[-22,-52],[-40,-40],[-20,-97]],[[89305,102718],[-71,7],[-124,49],[-158,-54],[-101,49]],[[88851,102769],[-115,129],[-17,36],[-85,21],[-32,32],[-26,4]],[[88576,102991],[-38,16],[-100,67],[-48,-30],[-50,47],[-86,-41],[-59,-13],[-136,-54],[-42,-29],[-13,30],[57,137],[10,108],[27,30],[-9,34],[-59,23],[-24,-4],[-43,-64],[-52,-16],[-45,28],[-105,38],[-26,50],[-7,51],[-55,49],[-23,57],[9,41],[50,26],[-49,19],[-44,97],[36,55],[-20,22],[21,53],[-10,61],[124,56],[130,11],[-13,56],[53,3],[88,67],[87,-12],[127,47],[244,-1],[33,27],[-5,55],[46,-8],[77,5],[287,-56],[71,0],[97,-57],[53,-15],[156,0],[240,-26],[51,49]],[[94077,72709],[31,-2],[133,40],[79,73],[12,28],[21,0],[27,-32],[27,-71],[31,-6],[113,46]],[[94551,72785],[71,-26],[25,0],[60,-41],[72,13],[34,-2],[35,-18],[56,-65],[74,-78],[106,-56],[21,-23]],[[95156,72399],[80,-172],[103,-164],[113,-130],[60,-90],[41,-110],[40,-100],[78,-77],[39,-77],[28,-63],[39,-73]],[[96011,70322],[-7,-27],[-62,-121],[-44,-115],[4,-38],[24,-53],[25,-85],[25,-116],[31,-43],[44,-89],[23,-60],[48,-33],[16,-76],[37,-112],[39,-90],[38,-70],[42,-27],[17,-2],[157,-229],[17,-16],[122,-65],[253,-134],[285,-151],[319,-173],[268,-145],[26,-21],[284,0],[146,0]],[[98188,68231],[-226,-352],[-207,-324],[-237,-368],[-210,-348],[-214,-377],[-214,-379],[-12,-8],[-234,22],[-147,14],[-60,-15],[-26,-13],[-125,-50],[-88,-62],[-90,-74],[-47,-56],[-36,-83],[-16,-58],[-17,-26],[-28,-22],[-187,-56],[-55,-7],[-88,-45],[-47,-74],[-13,-37]],[[95564,65433],[-63,1],[-111,-11],[-47,-12],[-65,-2],[-35,14],[-23,20],[-28,45]],[[95192,65488],[-64,93],[-46,58],[-102,-67],[-222,-160],[-74,-67],[-22,-68],[-57,-123],[-51,-75],[-20,-9],[-115,15],[-42,16],[-69,14],[-93,26],[-62,29],[-68,3],[-97,10],[-60,21],[-61,68],[-242,254],[-98,100]],[[93527,65626],[-108,109]],[[93419,65735],[-35,13],[-319,14],[-26,12],[-19,25],[-25,81],[-68,131],[-3,99],[10,108],[9,36],[-3,85],[-20,45],[-119,52],[-20,-4],[-42,-33]],[[92739,66399],[-26,33],[1,55]],[[92714,66487],[-44,62],[-36,64],[-42,129],[-11,130],[-26,80],[-26,98],[-38,186],[-17,65],[-64,83],[-33,82],[-89,73],[-92,155],[-15,50],[-4,49],[-18,47],[-33,52],[-102,112],[-64,26],[-54,11],[-71,26],[-63,44],[-28,31],[-7,21],[6,37],[22,62],[73,247],[20,29],[56,7],[101,-10],[60,-1],[73,8],[29,34],[32,63],[3,118],[-11,466],[1,28]],[[92202,69251],[0,36],[18,151],[28,131],[46,144],[10,88],[-17,193],[29,91],[38,90],[60,64],[45,-53],[41,-40],[20,9],[49,73],[-3,68],[19,139],[-3,80],[20,100],[22,140],[10,88],[13,48],[60,98],[52,138],[33,101],[63,165],[32,60],[26,26],[39,16],[124,29],[12,55],[0,74],[10,127],[23,124],[26,93],[32,84],[19,70],[24,150],[-1,102],[34,187]],[[93255,72590],[67,35],[57,5],[56,-24],[36,-6],[32,44],[14,50],[23,28],[31,5],[41,-57],[67,-150],[27,-5],[135,489],[25,-29],[26,-51],[29,-24],[46,-16],[19,-21],[67,-124],[24,-30]],[[86840,104514],[-38,-6],[-24,20],[36,31],[28,-2],[-2,-43]],[[86928,104537],[-43,-24],[-12,46],[25,19],[43,2],[-13,-43]],[[87075,104698],[78,-11],[26,-36],[-45,-24],[-3,-28],[24,-44],[-44,0],[-30,49],[-48,35],[21,48],[21,11]],[[86763,104808],[-6,-32],[-59,-3],[-24,33],[-13,54],[38,-6],[64,-46]],[[86663,106696],[30,-9],[58,12],[-49,-58],[-24,-7],[-45,33],[-28,54],[66,1],[-8,-26]],[[88226,107914],[-64,-23],[-52,15],[-1,45],[33,21],[58,9],[79,-22],[-53,-45]],[[90000,110721],[-172,-65],[-66,-17],[17,-22],[109,-5],[29,-18],[-9,-47],[-118,-163],[-3,-34],[38,-96],[54,-112],[284,-89],[77,-93],[128,-122],[68,-45],[-16,-99],[-159,-155],[-142,-159],[-67,-87],[-9,-55],[12,-30],[86,-107],[74,-113],[54,-123],[35,-56],[100,-129],[79,-212],[3,-73],[-91,-12],[-72,-27],[44,-39],[-39,-67],[-6,-95],[-42,-50],[6,-28],[78,-14],[0,-67],[-81,-48],[-8,-49],[42,-86],[35,-29],[125,-27],[16,-23],[4,-61],[-58,-60],[0,-24],[53,-110],[121,-58],[42,-32],[18,-66],[-11,-84],[-126,-152],[-89,-39],[22,-40],[157,-129],[239,-142],[89,-64],[67,-97],[74,-79],[11,-49],[-42,-76],[-65,-145],[-43,-60],[-108,-110],[-159,-136],[-112,-114],[-127,-144],[-138,-147],[-85,-71],[-104,-109],[-221,-159],[-33,-39],[-110,-74],[-262,-251]],[[89497,104813],[-56,-26],[-62,-6],[-27,-18],[-95,51],[-71,-9],[-54,-37],[-99,-12],[-80,-29],[-7,41],[14,52],[-24,4],[-17,-60],[-34,-29],[-74,-13],[-73,48],[-34,0],[36,-72],[-140,-72],[-25,45],[-87,-50],[-81,-9],[-48,-37],[-85,-26],[-47,1],[-107,-31],[-36,-47],[-31,-18],[-44,15],[-137,-23],[-131,-31],[-111,15],[-59,-42],[-62,-57],[-69,-20],[-5,37],[45,31],[32,41],[4,35],[-51,17],[-37,36],[-36,77],[-29,-16],[-22,-76],[-63,-34],[-79,1],[-10,42],[13,78],[41,2],[10,35],[-33,18],[28,54],[-24,13],[-113,17],[-140,69],[-34,3],[-21,62],[-34,-8],[-49,-36],[-76,46],[-11,28],[-3,91],[-19,139],[8,64],[43,77],[15,77],[3,91],[-6,51],[20,17],[-23,30],[46,28],[-26,77],[-69,148],[-56,52],[42,163],[-13,82],[-68,50],[-26,146],[17,81],[22,35],[113,111],[7,58],[76,5],[-35,51],[-10,63],[110,24],[41,-19],[97,23],[85,46],[-33,89],[67,37],[56,62],[2,47],[96,25],[112,96],[101,52],[105,96],[45,5],[24,65],[89,86],[28,11],[42,78],[110,90],[70,115],[38,41],[12,43],[43,4],[39,32],[84,22],[149,-17],[-3,39],[-23,25],[62,40],[-14,62],[-36,31],[18,70],[4,76],[18,88],[-46,47],[-173,79],[-71,8],[-40,60],[18,52],[-95,-36],[-72,22],[-35,-5]],[[87928,108481],[-46,129],[-61,110],[-67,30],[-22,43],[-11,89],[11,70],[71,66],[13,91],[40,72],[-20,47],[-114,133],[-23,80],[14,59],[51,42],[-18,66],[-114,19],[-1,47],[31,50],[-16,74],[1,125],[59,55],[-71,44],[-67,78],[-59,5],[-36,84],[-136,93],[-181,51],[-72,9],[-85,30],[-230,118],[-18,24],[-103,73],[-114,54],[-10,51],[-118,39]],[[86406,110731],[23,23],[92,2],[76,-21],[27,27],[-32,74],[39,42],[53,18],[153,-2],[158,-160],[134,-129],[48,-94],[38,0],[246,-32],[32,-22],[77,4],[165,46],[63,64],[62,-6],[144,-60],[160,-41],[43,-32],[60,-9],[62,32],[37,87],[80,68],[94,17],[74,72],[9,60],[-9,108],[44,94],[48,155],[21,44],[128,90],[94,93],[92,12],[84,-3],[75,-16],[42,9],[166,86],[67,16],[61,-2],[68,-63],[96,-69],[61,-34],[168,-64],[147,-42],[82,-138],[-41,-55],[-92,-74],[-77,-77],[-6,-40],[58,-68]],[[154398,49452],[0,-30],[-56,-20],[-30,30],[-33,-44],[-22,-38],[-60,-21],[-27,21],[40,42],[22,-4],[45,67],[55,25],[66,-28]],[[154769,50059],[-42,50],[8,42],[15,18],[14,-31],[10,-53],[-5,-26]],[[436,50147],[-33,3],[7,36],[26,-39]],[[753,50163],[-24,-7],[-21,30],[13,31],[20,-7],[12,-47]],[[154544,50319],[-22,-12],[-12,42],[17,43],[19,4],[9,-44],[-11,-33]],[[154308,50568],[0,-31],[25,-16],[32,-58],[48,-51],[29,-39],[2,-33],[-9,-35],[13,-63],[6,-65],[21,-103],[-30,-19],[-48,-3],[-67,-16],[-37,-34],[-36,-46],[-42,0],[-47,-9],[-46,6],[-33,25],[-58,26],[-77,23],[-32,19],[-27,31],[-25,75],[1,74],[41,30],[3,23],[24,34],[-10,74],[45,64],[49,55],[86,50],[53,-4],[81,39],[25,18],[26,-11],[14,-30]],[[154800,50571],[-14,-18],[-7,95],[26,-10],[6,-24],[-11,-43]],[[449,50637],[-6,42],[-19,21],[5,23],[36,-41],[-16,-45]],[[153858,50724],[-22,-11],[11,55],[34,25],[-5,-39],[-18,-30]],[[155049,50852],[-32,-25],[-12,25],[14,61],[30,63],[0,-124]],[[11,50879],[-11,-26],[0,38],[0,58],[0,27],[46,59],[14,9],[17,-54],[-20,-59],[-46,-52]],[[30,51173],[-30,-26],[0,36],[24,33],[6,-43]],[[155049,51406],[-65,-93],[-43,-101],[-56,-56],[-24,-76],[2,-77],[56,80],[62,66],[38,12],[-17,-102],[16,-54],[-46,5],[-46,-5],[-54,-30],[-73,-14],[-32,26],[-9,36],[-53,4],[-63,-70],[-21,-61],[-24,-2],[-29,12],[-35,-46],[-41,-17],[-18,39],[-26,84],[-46,8],[7,43],[23,44],[7,29],[44,-30],[25,21],[26,2],[26,64],[41,40],[57,31],[115,41],[50,59],[33,31],[70,29],[32,-9],[26,5],[65,43],[0,-11]],[[51820,26296],[-28,-13],[-16,32],[13,44],[31,-27],[0,-36]],[[52355,26450],[3,-62],[-34,20],[-13,30],[44,12]],[[51244,26607],[62,-6],[-31,-106],[-36,2],[-49,72],[40,18],[14,20]],[[51560,26832],[62,-13],[57,49],[40,15],[32,-10],[23,-30],[33,5],[94,30],[46,25],[51,-47],[-11,-35],[-26,-23],[-36,-57],[-33,-24],[-86,-126],[-89,-112],[-91,-17],[-49,5],[-18,-61],[-28,-46],[-56,-21],[-11,-17],[-77,4],[-54,29],[-64,63],[86,77],[73,-4],[61,52],[50,26],[41,47],[-16,39],[-96,-28],[-36,30],[50,11],[80,29],[15,12],[-24,41],[-49,24],[-39,42],[-5,40],[-22,49],[23,2],[30,-31],[69,-44]],[[51635,26878],[-59,0],[-12,23],[0,57],[45,5],[44,-24],[-18,-61]],[[52178,26966],[66,-41],[82,14],[35,-11],[20,-34],[-12,-32],[-48,-3],[4,-42],[15,-18],[87,-45],[14,16],[-21,65],[35,37],[99,14],[24,-13],[49,-80],[-46,-11],[-20,-34],[73,-37],[-20,-51],[-135,-39],[-28,-40],[-51,-29],[-150,-50],[20,-61],[-7,-53],[-206,64],[-28,-7],[55,-108],[-40,-20],[-41,13],[-36,-9],[-24,-78],[-59,50],[-50,71],[0,40],[49,74],[-15,31],[113,101],[20,30],[87,36],[-17,67],[1,69],[91,92],[-14,60],[29,2]],[[101556,47805],[-61,-20],[-42,7],[-84,59],[-23,39],[-33,111],[7,39],[27,68],[60,28],[62,-10],[29,-19],[33,-80],[43,-82],[-7,-97],[-11,-43]],[[96983,53628],[-27,-6],[-13,19],[-7,44],[10,76],[-22,59],[21,33],[19,-39],[38,-30],[-7,-66],[-12,-51],[0,-39]],[[54002,64283],[34,12],[22,51],[36,31],[89,248],[11,123],[-14,100],[6,29],[54,121],[23,66],[2,58],[6,41],[-19,27]],[[54252,65190],[-33,98],[-37,45],[-25,47],[-41,106],[4,60],[-24,43],[0,27],[-22,170],[10,68],[-6,76],[-14,40],[-3,61],[2,54],[12,31],[-3,38],[52,121],[40,70],[66,86],[42,184],[30,65],[31,9],[169,-152],[79,-14],[160,-82],[58,-106],[134,-175],[70,-56],[1,-46],[-15,-73],[45,64],[70,-101],[19,-50],[22,-91],[-8,-59],[23,4],[3,61],[17,77],[23,1],[18,-45],[37,-198],[14,-40],[6,-117]],[[51327,72755],[-4,-39],[-11,-8],[-16,33],[-71,-5],[-12,44],[34,50],[-40,14],[-15,21],[-34,106],[2,31],[37,18],[44,-34],[46,-63],[-6,-34],[27,-51],[19,-83]],[[51153,73727],[-35,3],[-3,42],[30,36],[20,-59],[-12,-22]],[[50998,73808],[-34,-31],[-18,10],[-21,60],[-15,166],[20,38],[46,-20],[38,-39],[-9,-30],[4,-125],[-11,-29]],[[51111,73964],[-50,-8],[-34,6],[-7,50],[17,42],[-12,52],[7,30],[17,20],[28,-26],[5,-39],[17,-35],[79,-74],[-67,-18]],[[81608,92467],[-12,-102],[31,-74],[13,-272],[-2,-22],[-65,-142],[-2,-136],[-28,-72],[-33,-116],[-29,-53],[-79,64],[-46,28],[-38,50],[31,56],[3,22],[-73,42],[1,30],[17,46],[-8,38],[-51,4],[-3,20],[38,59],[-1,36],[-49,46],[-9,40],[18,27],[29,18],[-21,42],[-26,10],[32,48],[31,85],[44,41],[99,37],[40,50],[26,-3],[39,-24],[21,51],[-6,32],[3,91],[14,51],[23,3],[20,-28],[8,-123]],[[77017,94625],[-15,-61],[-29,56],[-38,49],[-9,58],[45,-34],[46,-68]],[[80018,97155],[15,-23],[33,-11],[25,-24],[50,0],[19,21],[53,7],[44,-29]],[[80804,95801],[-51,-32],[-33,-64],[-33,-16],[-60,0],[-29,40],[-36,0],[-36,-26],[-30,-41],[10,-23],[34,-27],[-21,-38],[-141,-183],[-73,-39],[-12,-81]],[[80293,95271],[-8,-53],[-107,-101],[-40,-106],[-3,-21],[27,-35],[-12,-69],[-54,-45],[0,-44],[50,-3],[49,32],[31,41],[-16,56],[37,43],[46,25],[65,5],[77,-15],[11,-71],[14,-27],[-19,-76],[54,-79],[24,-24],[29,-64]],[[80548,94640],[-34,-40],[-59,-38],[-6,-24],[7,-48],[32,-28],[35,-62],[22,-56],[60,-69],[-15,-37],[-17,-76],[-42,-17],[-60,-55],[-64,6],[-28,-19],[3,-34],[24,-32],[21,-70],[27,-27],[59,-17],[23,-22],[17,-77],[-31,-27],[-50,-116],[22,-58],[-9,-25],[11,-39],[29,-39],[79,-54],[73,-45],[22,-7],[99,28],[16,-2],[17,-57],[-11,-34],[-73,-118],[5,-68]],[[80752,93137],[-100,-50],[-35,-25],[-136,-154],[-64,-45],[-25,-78],[-38,-44],[-33,-20],[-81,-22],[-81,-46],[-37,20],[-95,-2],[-60,56],[-114,35],[-37,81],[-86,3],[-21,12],[-5,54],[-64,-12],[-53,-33],[-33,-4],[-36,9],[-109,49],[-65,16],[-27,16],[-21,42],[-26,21],[-61,-21],[-54,-71],[-227,-187],[-41,-78],[-48,-115],[-4,-54],[21,-172],[46,-90],[6,-21]],[[78259,92257],[15,37],[-13,33],[-90,27],[-31,-33]],[[76752,92886],[70,22],[63,87],[60,318],[43,376],[32,71],[41,19],[-33,52],[-40,-68],[24,345],[18,126],[29,132],[60,-52],[50,-54],[25,-46],[33,-154],[21,-2],[-39,205],[-25,58],[-39,49],[-124,103],[-18,59],[42,-2],[20,26],[-16,84],[-18,268],[-72,11],[-34,16],[-170,115],[-58,118],[-59,88],[-15,38],[1,39],[31,81],[-27,52],[-50,35],[38,70],[35,7],[23,26],[-163,-22],[-65,23],[-11,49],[23,21],[21,41],[-24,28],[-31,11],[-93,-9],[-11,16],[27,45],[-23,16],[-76,-17],[-43,15],[-41,51],[-46,-7],[-27,20],[-50,-2],[-27,29],[-170,59],[-73,7],[-67,-26],[-37,9],[-27,38],[-23,64],[-108,49],[22,32],[50,8],[58,22],[21,28],[-45,34],[-34,8],[-28,42],[20,14],[55,-12],[70,8],[-26,30],[-40,14],[-56,3],[-26,-10],[-58,4],[-19,61],[18,62],[82,56],[203,61],[88,-9],[61,11],[72,38],[32,33],[104,20],[98,-35],[91,-132],[43,-45],[106,78],[158,-3],[33,-44],[13,37],[29,44],[35,-47],[166,8],[-55,114],[-7,276],[-47,77],[-53,124],[-24,73],[6,62],[65,-2],[50,-10],[96,28],[46,-19],[-2,-57],[14,-72],[40,-75],[77,4],[84,-23],[105,-4],[154,-40],[66,23],[63,50],[121,33],[-60,10],[-64,31],[-8,35],[33,101],[185,111],[133,33],[138,61],[70,63],[46,81],[33,33],[-17,29],[12,310],[13,56],[27,46],[41,35],[62,38],[230,53],[34,22]],[[74639,105445],[-31,6],[-50,57],[-18,47],[69,-12],[28,-62],[2,-36]],[[74672,105697],[-20,-26],[-73,50],[21,38],[55,-23],[17,-39]],[[74429,105929],[53,-46],[-23,-19],[-59,0],[-54,20],[-18,46],[80,7],[21,-8]],[[74669,105991],[-11,-94],[-72,32],[-6,-31],[49,-73],[-37,-9],[-88,81],[-68,134],[91,21],[67,-35],[75,-26]],[[74765,106012],[-20,-50],[-46,26],[2,92],[64,-68]],[[145709,67407],[-25,-15],[-31,7],[-10,57],[-14,15],[3,28],[22,23],[47,-19],[17,-40],[-11,-27],[2,-29]],[[137021,69278],[-34,-38],[23,73],[30,30],[12,-32],[-13,-28],[-18,-5]],[[82318,59937],[-42,62],[-37,115],[-42,70],[-90,113],[-23,84],[-103,184],[-147,185],[-106,160],[2,31],[102,-80],[26,27],[-87,75],[-39,20],[-40,-2],[-22,34],[-22,96],[-18,46],[-56,95],[-14,36],[-31,50],[19,7],[61,-48],[0,47],[-61,46],[-33,3],[-7,31],[4,37],[-43,139],[-46,103],[-7,49],[122,-225],[38,-2],[50,25],[-9,30],[-23,33],[-22,-15],[-29,-3],[-22,36],[29,110],[-21,-25],[-40,-15],[-60,58],[-81,246],[-14,22],[-61,225],[23,-17],[28,-65],[54,14],[21,37],[37,8],[24,35],[69,155],[18,204],[-6,121],[-10,120],[23,39],[24,-100],[24,-28],[46,-8],[71,-45],[25,-28],[7,57],[81,48],[-25,17],[-72,-19],[-99,72],[-33,46],[-31,87],[-31,46],[2,41],[71,37],[19,-4],[7,-45],[27,-12],[3,38],[0,103],[-21,148],[6,28],[37,30],[36,0],[19,-53],[44,-27],[32,26],[21,4],[123,0],[234,-2],[206,-1],[-2,368]],[[82405,63727],[-1,445]],[[77066,97957],[-37,-24],[-20,-39],[-47,-8],[-90,57],[0,23],[56,21],[31,28],[73,-27],[34,-31]],[[75717,99789],[48,-39],[-124,-91],[-20,30],[-23,-1],[-35,59],[-6,88],[46,22],[63,-1],[51,-67]],[[74846,100324],[-36,4],[-43,-24],[-107,-1],[2,73],[-52,22],[-39,51],[-8,42],[-26,31],[-49,24],[-66,-74],[21,-43],[-86,-83],[-24,11],[-85,5],[-31,30],[-76,20],[-12,47],[-101,91],[-11,28],[43,41],[108,40],[20,32],[-60,35],[6,36],[58,-6],[81,40],[42,76],[22,88],[10,17],[68,45]],[[74415,101022],[18,-24],[33,-6],[30,22],[36,71],[107,8],[97,33],[43,0],[60,-17],[46,0],[40,-50],[21,-80],[51,-79],[65,-69],[3,-42],[-73,-51],[1,-30],[60,22],[67,-6],[24,-31],[24,-83],[-23,-28],[-19,37],[-44,26],[11,-51],[-4,-66],[42,-8],[-21,-68],[-44,-19],[-51,-7],[-48,-102],[-35,-27],[-43,6],[-43,21]],[[75326,101271],[-55,-1],[-43,23],[-26,96],[32,63],[29,5],[39,-35],[24,-64],[0,-87]],[[74885,101606],[32,-164],[-15,-26],[-71,-35],[-23,8],[16,36],[-27,72],[-51,-49],[-19,5],[22,85],[30,27],[27,-11],[79,52]],[[74953,101525],[-31,-5],[-13,60],[14,23],[55,34],[-25,12],[14,37],[60,44],[32,7],[-31,-79],[-75,-133]],[[75036,101894],[-172,-39],[-59,4],[7,31],[49,13],[20,93],[-74,43],[10,41],[45,22],[34,2],[32,-25],[35,-53],[48,-8],[32,-22],[-7,-102]],[[74679,102062],[-27,6],[43,47],[17,-24],[-33,-29]],[[74330,102326],[-38,-9],[-8,38],[29,9],[17,-38]],[[74820,102326],[-29,-7],[-37,44],[48,23],[19,-14],[-1,-46]],[[74402,102431],[-57,11],[-17,68],[5,106],[62,-7],[7,-178]],[[74878,102702],[-8,-67],[12,-66],[29,-21],[81,-14],[75,4],[16,-29],[-121,-127],[-28,5],[-8,104],[-56,-14],[-69,15],[-51,87],[-101,24],[-36,56],[24,37],[26,-9],[26,26],[-14,29],[102,29],[9,44],[48,-11],[35,-46],[9,-56]],[[74421,102826],[49,-39],[-39,-65],[-59,0],[-84,48],[7,24],[98,14],[28,18]],[[74855,103300],[-55,-122],[-21,-3],[-27,-64],[5,-49],[-66,-56],[-45,-21],[-49,-58],[-24,-1],[-45,-53],[-24,8],[-30,36],[55,36],[39,47],[-83,49],[31,33],[-39,20],[-4,72],[31,32],[55,-32],[69,10],[-27,60],[20,27],[85,43],[106,72],[26,11],[19,-47],[-2,-50]],[[76185,103406],[4,-57],[-15,-39],[-33,-40],[-86,-56],[-156,-131],[-93,-65],[-20,-74],[56,-9],[8,-37],[-82,-76],[-24,-69],[63,2],[52,14],[103,43],[97,32],[47,1],[90,-26],[98,14],[264,-8],[73,15],[49,-18],[40,-45],[39,-83],[-25,-51],[-43,-47],[-37,-65],[-29,-109],[-74,-167],[-72,-92],[-32,-65],[-39,-53],[-79,-54],[-117,-24],[-72,-45],[142,9],[100,-55],[-9,-45],[-40,-36],[-92,-6],[-85,-79],[-80,-36],[-50,3],[-55,-12],[240,-44],[92,52],[102,0],[195,-86],[136,-161],[76,-71],[19,-50],[38,-166],[43,-163],[56,-175],[26,-49],[33,-35],[170,-78],[38,-26],[130,-157],[59,-62],[64,-50],[-31,-26],[-21,-41],[16,-56],[77,-138],[11,-72],[-47,3],[-85,64],[-10,-30],[182,-156],[61,-93],[37,-122],[-25,-55],[-39,-36],[-70,-86],[101,-68],[44,12],[76,98],[63,8],[105,-17],[46,4],[93,-24],[48,-22],[118,-97],[26,-53],[11,-69],[2,-76],[-43,-133],[-14,-81],[-24,-52],[-63,-64],[-41,-27],[-39,-5],[20,-33],[0,-39],[-37,-30],[-37,-12],[-63,15],[-88,-54],[63,-28],[13,-30],[-16,-52],[-39,-24],[-89,-12],[3,-36],[20,-44],[17,-13],[88,-19],[54,0],[104,11],[68,-8],[-8,-126],[-13,-19],[-139,-75],[-36,-85],[-81,6],[-38,-34],[-65,-22],[-100,-54],[-41,-9],[-176,36],[-107,-3],[-144,-31],[-37,5],[-55,30],[-57,20],[-66,9],[-21,-26],[-79,-51],[-150,-22],[-71,7],[29,-68],[-31,-17],[-136,23],[-36,-26],[-49,12],[-48,37],[-51,25],[-53,12],[-42,-4],[-175,-59],[-35,-59],[-17,-83],[-25,-74],[-41,-57],[-49,-8],[-46,40],[-88,43],[-30,30],[-53,-22],[-90,-13],[-96,-35],[-38,-24],[-100,-85],[-30,-67],[-46,-11],[-42,42],[-48,15],[-50,-14],[-31,-23],[-14,18],[-1,39],[37,45],[99,34],[86,89],[80,104],[27,7],[14,34],[120,135],[10,31],[15,109],[98,35],[47,112],[13,9],[136,21],[101,-2],[100,-22],[103,6],[40,30],[70,109],[39,49],[86,93],[22,60],[-88,-79],[-101,-30],[-44,-30],[-77,-68],[-15,-5],[-116,16],[-86,88],[-55,36],[-23,4],[-74,-22],[-51,2],[26,41],[36,22],[-80,16],[-48,41],[-62,5],[-30,-7],[-50,-38],[-80,-40],[-96,55],[-18,25],[0,47],[-14,37],[-27,13],[34,48],[41,32],[90,32],[137,76],[77,33],[71,55],[29,34],[43,104],[30,46],[-29,11],[-13,35],[17,67],[-34,81],[7,67],[-110,-13],[-98,-57],[-42,-6],[19,59],[48,46],[52,39],[33,64],[94,79],[130,58],[70,-3],[50,9],[44,21],[44,4],[98,-60],[-29,93],[44,23],[63,-85],[23,-9],[30,27],[-51,13],[-25,27],[-40,87],[2,51],[58,102],[-46,28],[-6,49],[8,43],[55,38],[16,58],[7,64],[-10,29],[-54,-5],[-50,-30],[-24,1],[-67,70],[-38,54],[-69,112],[-10,68],[55,145],[85,93],[81,39],[-153,1],[-50,-12],[-46,-38],[-54,-16],[-75,-61],[-76,-2],[-32,41],[-41,-1],[-46,-34],[-46,-20],[-56,21],[-74,40],[-30,-52],[-10,-57],[-52,50],[-44,67],[-15,42],[-1,47],[24,19],[26,-17],[39,112],[78,146],[27,43],[19,56],[-20,68],[-72,70],[8,122],[28,46],[59,19],[-75,58],[-54,-30],[-53,-15],[-18,-37],[-48,-3],[10,95],[60,92],[-86,-75],[-55,-66],[-3,-30],[19,-87],[-5,-40],[-74,-265],[-38,-43],[-37,5],[-16,20],[7,56],[31,125],[32,68],[14,49],[-21,15],[6,169],[23,55],[9,81],[20,69],[23,50],[18,65],[27,28],[7,44],[31,48],[10,44],[-149,-129],[-38,-23],[-91,21],[-31,30],[-14,59],[-39,1],[-32,18],[42,32],[68,11],[63,51],[-56,35],[54,40],[62,99],[13,91],[-41,70],[-59,31],[-10,40],[26,44],[75,33],[-41,18],[-29,67],[22,76],[37,72],[112,-2],[25,18],[49,2],[-94,95],[-8,18],[27,52],[5,66],[30,9],[90,-1],[22,9],[-31,57],[-4,28],[10,94],[22,32],[39,15],[50,-10],[41,-44],[96,41],[25,-39],[105,31],[142,14],[85,20],[90,7],[84,23],[89,-10],[-2,-32],[-23,-51]],[[76263,103563],[-46,57],[60,3],[-14,-60]],[[76161,103600],[-49,-9],[-52,70],[18,26],[37,-10],[26,-64],[20,-13]],[[76208,103764],[27,-17],[76,-17],[24,-18],[-13,-34],[-31,-11],[-56,34],[-74,-14],[-29,25],[-49,22],[0,54],[16,46],[66,4],[45,-26],[-2,-48]],[[76427,103904],[-49,-1],[25,42],[29,10],[46,-23],[-51,-28]],[[76349,103873],[-53,-3],[-4,45],[-65,31],[16,39],[49,-41],[20,-33],[36,-10],[1,-28]],[[76961,104814],[65,-84],[45,19],[-5,-44],[-49,-186],[-9,-75],[-20,-25],[-16,-58],[-31,16],[34,142],[-20,52],[-69,-11],[-15,40],[-53,4],[-10,32],[73,7],[51,28],[-32,95],[-43,8],[58,82],[49,6],[-3,-48]],[[77075,104797],[-52,63],[31,81],[37,-3],[3,-40],[-21,-8],[2,-93]],[[77191,105005],[-22,-67],[-36,-20],[-8,76],[45,25],[21,-14]],[[97468,91564],[34,-34],[53,-37],[48,-43],[23,-40],[-20,-89],[-40,-49],[-44,-8]],[[97522,91264],[-65,54],[-47,30],[-36,-10]],[[97374,91338],[-24,-11],[-47,13],[-56,27],[-42,45],[9,33],[-127,61],[-60,17],[-28,-18],[-104,-102],[-71,-12],[13,-34],[-119,-2],[-39,-12],[-106,16],[-65,-22]],[[96508,91337],[-72,-16],[-50,-19],[-64,-10],[-88,-7],[-3,34]],[[96231,91319],[-32,24],[-34,-4],[-32,10],[-23,26],[-2,49],[-39,32],[-65,79],[-37,18],[-14,50],[-46,15],[-49,-18],[-26,-62],[-18,-21],[-110,32],[-122,6],[-44,-44],[-53,28],[-82,32],[82,130],[25,78],[1,107],[-42,123],[-76,357],[-29,54],[-126,63],[-29,72],[-97,92],[-134,40],[-27,17],[-117,116],[-91,75],[19,45]],[[94762,92940],[27,48],[28,12],[159,-41],[55,16],[66,-38],[61,-43],[61,-30],[118,-29],[96,-80],[202,-20],[99,27],[60,-3],[63,-48],[84,10],[56,-26],[44,-28],[3,-30],[39,-42],[111,-64],[90,-36],[29,-26],[68,-42],[6,-31],[-25,-60],[38,-32],[57,-3],[20,20],[42,15],[98,60],[76,32],[59,-10],[21,-17],[34,-65],[34,91],[9,6],[145,-75],[59,-83],[94,5],[40,-13],[31,-30],[-17,-82],[-23,-85],[2,-21],[89,-66],[47,-52],[40,-18],[71,-13]],[[97428,91900],[93,-69],[-35,-71],[-19,-23],[-44,-14],[-8,-55],[9,-31],[22,-7],[22,-66]],[[76442,97125],[-15,-46],[-42,27],[45,27],[12,-8]],[[77495,70403],[27,-42],[7,-24],[-10,-90],[-21,-64],[-12,-59],[14,-59],[63,-77],[55,-90],[49,-58],[22,-11],[-8,-38],[-5,-217],[-12,-166],[-23,-13],[2,-68],[-10,-24],[4,-28],[-12,-23],[24,-22],[35,38],[33,-4],[34,-57],[1,-28],[-27,-169],[-2,-98],[14,-55],[-2,-31],[-15,-26],[-35,-38],[18,-74],[30,-54],[57,-67],[30,-86],[1,-36],[-38,-66],[-7,-44],[9,-291],[-45,-126],[4,-78],[12,-25],[23,-7],[19,-25],[-7,-88],[-17,-155],[-18,-17],[-6,-28],[1,-62],[30,-75],[33,-105],[13,-8],[2,-43],[13,-46],[75,-86],[32,-6],[7,-36],[36,-66],[43,-20],[1,-39]],[[78036,66903],[-35,-26],[-24,-40],[-43,-128],[-87,-35],[-211,-2],[-166,-132],[-96,-47],[-59,-74],[-79,-53],[-55,-63],[-115,-31],[-188,-101],[-59,-40],[-60,-70],[-97,-82],[-38,1],[-76,77],[-57,38],[-139,59],[-104,23],[-65,29],[12,28],[60,-7],[23,21],[34,3]],[[76312,66251],[9,22],[2,100],[12,20],[3,53]],[[76338,66446],[-17,116],[-12,14],[-60,16],[-16,48],[-25,150],[-21,111],[-41,182],[-17,131],[-2,79],[9,29],[-1,41]],[[76135,67363],[-4,40],[29,93],[56,114],[23,70],[11,174]],[[76250,67854],[27,160],[29,93],[17,79],[52,63],[24,17],[5,25],[-4,45],[31,17],[14,26],[-22,198],[-18,214],[-11,27],[-10,82],[-18,47],[-25,14],[1,45],[24,76],[7,45],[-12,13],[-2,34]],[[76359,69174],[9,56],[-5,35]],[[72619,71300],[-12,-19],[-36,-124],[4,-22],[80,-106],[20,-8],[22,15],[34,49],[28,52],[26,26],[31,-2],[24,-37],[58,-156],[28,-20],[25,30],[13,34],[53,103],[82,52],[47,-25],[149,-94],[29,-9],[16,9],[25,70],[74,60],[55,18],[11,48],[-4,29],[-22,53],[12,26],[28,8],[36,-5],[41,-23],[34,-33],[19,-40],[20,-83],[16,-82],[42,-129],[-2,-174],[48,-39],[20,-71],[18,-21],[23,-5],[42,-46],[27,-18],[3,-32],[-10,-25],[-41,-47],[-62,-140],[8,-31],[35,4],[39,36],[30,-13],[29,-27],[13,-66],[-8,-102],[10,-92],[15,-92],[15,-33],[97,-81],[14,-64],[-7,-47]],[[74083,69739],[-10,-26],[-53,-72],[-8,-34],[4,-63],[0,-144],[4,-125],[21,-45],[25,-23],[58,12],[-2,-74],[-8,-84],[34,-26],[27,-49],[-54,-44],[-15,-26],[-8,-70],[2,-65]],[[74100,68781],[72,-46],[28,-54],[12,-56],[4,-106],[-6,-24],[-19,0],[-36,64]],[[74099,68566],[-41,12],[-69,-8],[-12,-19],[-8,-141],[16,-24],[55,-38],[32,-14],[3,-46],[-28,-65],[-23,-82],[5,-74],[-39,-119],[-11,-23],[-52,23],[-33,8]],[[73894,67956],[-25,-30]],[[73869,67926],[-33,46],[-6,37],[-35,7],[-21,-20],[-9,-37],[-5,-77],[-38,-72],[-26,-90],[-31,8],[-39,-34],[-28,-6],[-63,112],[-40,22],[-34,-7],[-11,30],[21,47],[18,90],[0,45],[-11,63],[-18,51],[-2,70],[-18,132],[-11,13],[-6,58],[2,60],[-40,40],[-23,49],[-16,6],[-15,-19],[-14,56],[-127,-73],[-14,53],[-22,9],[-37,-21],[-21,-3]],[[73096,68571],[-33,7],[-15,-10],[-44,-82],[-27,-33],[-66,14],[15,45]],[[72926,68512],[21,90],[54,91],[1,19],[-22,53],[-23,73],[0,77],[-5,56],[-47,16],[-10,28],[26,97],[-1,37],[-29,49]],[[72891,69198],[-46,91],[-79,188],[-29,40],[-28,57],[-11,36],[-29,14],[-275,-3],[-5,-49],[-94,-33]],[[72295,69539],[-58,38],[-65,-22],[-32,-25],[-24,-109]],[[72116,69421],[-14,-24],[-26,-76],[-15,-54],[-30,-77],[-33,-50],[-55,-27]],[[71943,69113],[-17,-81],[-13,-30],[-43,-39],[-45,16],[-26,-15],[-4,20],[14,64],[-11,34],[-43,67],[-17,73],[-57,86],[-53,-5],[14,72],[0,95],[-18,52],[-5,50],[-18,-36],[-29,11],[-58,57],[-29,55],[-10,65],[-17,-9],[-37,1],[-110,83],[-79,210],[-1,47],[11,82],[-3,22],[-36,-54],[-7,36],[-27,84],[-8,49],[-27,21],[-21,4],[-16,-16],[-22,-99],[-33,22],[4,74],[42,92],[71,232],[26,53],[16,18],[33,2],[66,32],[80,72],[62,-6],[73,9]],[[71515,70785],[95,50],[1,156],[-3,34],[-34,31],[-37,62],[-20,25],[1,25],[42,34],[38,-1]],[[71598,71201],[23,35],[11,56],[3,60],[-25,79],[1,57]],[[71611,71488],[140,-8],[76,-16],[63,-4],[10,-13],[-9,-55],[8,-32],[21,-9],[35,38],[19,-8],[39,-48],[36,-13],[40,-26],[37,-14],[33,2],[25,-27],[47,-8],[60,34],[47,15],[66,3],[35,-11],[101,27],[79,-15]],[[70305,71759],[-3,59],[-24,134],[32,59],[35,35],[24,-28],[7,-55],[18,-37],[61,-23],[61,16],[38,-7],[-1,30],[12,40],[74,17],[79,12],[80,24],[63,-1],[14,17],[-56,12],[-121,-28],[-123,-8],[-93,-73],[-38,7],[-39,73],[-14,90]],[[70391,72124],[109,6],[345,-7],[35,98],[68,43],[69,16],[37,-4],[38,-14],[73,-81],[84,-37],[27,-39],[44,-39],[35,-11],[77,33],[73,5],[53,-45],[11,-49],[-9,-51],[-72,-27],[-99,-42],[-83,23],[-101,58],[-119,84],[-32,28],[-55,30],[-17,-15],[-23,-73],[-18,-23],[-160,-28],[-68,-22],[-8,-117],[-170,2],[-181,-4],[-49,-63]],[[70678,70380],[-4,-20],[-25,3],[7,84],[17,-12],[5,-55]],[[70584,70364],[-34,-11],[-18,48],[26,12],[13,25],[33,22],[7,-56],[-27,-40]],[[70752,70472],[-24,-14],[11,51],[16,23],[20,-3],[2,-27],[-25,-30]],[[70676,70647],[-20,-22],[-33,29],[2,35],[24,50],[21,-7],[6,-85]],[[70826,70696],[-29,-2],[36,58],[23,11],[-1,-46],[-29,-21]],[[70639,70936],[-22,-85],[-28,10],[-21,72],[71,3]],[[71598,71201],[-38,1],[-42,-34],[-1,-25],[20,-25],[37,-62],[34,-31],[3,-34],[-1,-156],[-95,-50]],[[71515,70785],[-73,-9],[-62,6],[-80,-72],[-66,-32],[-33,-2],[-16,-18],[-26,-53],[-71,-232],[-42,-92],[-22,49],[17,91],[-19,-1],[-36,-74],[-18,-2],[3,87],[-44,-3],[-32,46],[-1,81],[20,31],[-22,16],[-21,-8],[-13,14],[21,62],[76,51],[78,17],[-22,45],[-46,17],[-37,-12],[-19,-32],[-23,-5],[-38,75],[1,38],[14,45],[22,20],[88,0],[47,30],[-4,39],[-33,-30],[-106,11],[-34,-18],[-59,-69],[-73,-38],[-52,16],[16,93],[-24,27],[-77,-29],[-59,42],[-23,51],[4,65],[28,43],[4,22],[-29,4],[-54,-27],[-118,105],[23,6],[59,-11],[45,14],[75,52],[42,10],[132,-14],[114,37],[163,132],[210,-1],[154,-2],[267,-1],[-1,-57],[25,-79],[-3,-60],[-11,-56],[-23,-35]],[[82405,63727],[2,-368],[-206,1],[-234,2],[-123,0],[-21,-4],[-32,-26],[-44,27],[-19,53],[-36,0],[-17,-20],[-16,5],[-39,43],[-53,17],[21,109],[26,97],[38,73],[21,17],[7,37],[30,119],[38,96],[-11,98],[9,165],[29,-64],[48,-31],[141,0],[208,0],[232,-1],[1,-445]],[[81287,65280],[75,0],[17,-37],[-1,-54],[-67,-158],[-12,-67],[-26,-56],[-22,-5],[-76,33],[-18,48],[13,82],[49,22],[19,68],[7,62],[16,47],[26,15]],[[87797,87405],[30,-5],[49,5],[25,41],[32,1],[13,-40],[-31,-19],[23,-35],[33,6],[8,-58],[17,-15],[57,2],[78,30],[41,10],[121,-10],[44,-44],[83,-5],[77,-23],[40,15],[69,14],[11,-15],[-9,-99],[5,-29],[39,-7],[25,32],[58,26],[60,-1],[50,66],[6,-28],[-8,-76],[-15,-80],[-34,-18],[-51,-3],[-94,7],[-94,-12],[-175,-34],[-174,-17],[-24,11],[-4,75],[-12,22],[-54,18],[-51,31],[-202,43],[-48,17],[-106,-8],[-33,42],[-6,84],[10,83],[44,-15],[19,26],[-1,38],[24,20],[10,-54],[25,-15]],[[89229,87357],[-16,-39],[-17,32],[7,39],[-19,60],[36,89],[1,44],[28,22],[-7,-74],[-21,-59],[22,-49],[11,-56],[-25,-9]],[[87454,87861],[-5,-30],[-45,21],[-12,31],[-2,69],[19,44],[20,-39],[43,-56],[-18,-40]],[[89516,87680],[-42,-13],[-13,32],[18,78],[-17,71],[25,30],[17,44],[43,47],[111,57],[26,5],[-1,-44],[-37,-112],[-33,-56],[9,-45],[-53,-12],[-53,-82]],[[88500,88002],[-20,-36],[-29,13],[42,53],[7,-30]],[[88921,88137],[-34,-17],[-22,-35],[-26,25],[0,34],[29,-11],[36,31],[17,-27]],[[89524,88115],[-32,37],[33,23],[-1,-60]],[[88092,88261],[-2,-56],[-89,-20],[14,62],[29,-22],[15,24],[33,12]],[[88456,88198],[-7,-11],[-45,70],[15,21],[48,-50],[-11,-30]],[[89131,88235],[3,33],[46,46],[66,41],[22,4],[37,-25],[-69,-42],[-18,-22],[-50,-4],[-37,-31]],[[88662,88279],[-38,-5],[35,45],[38,27],[26,36],[27,-25],[-34,-16],[-54,-62]],[[88172,88371],[-20,26],[3,43],[15,2],[20,-52],[-18,-19]],[[89162,88397],[-43,-10],[7,55],[13,19],[31,-35],[-8,-29]],[[88412,88473],[-34,-54],[-29,6],[-12,25],[18,50],[38,29],[17,-8],[2,-48]],[[88527,88403],[-38,-27],[-27,38],[-14,60],[70,88],[27,-31],[-2,-78],[-16,-50]],[[88087,88512],[-16,-10],[-27,15],[7,38],[18,17],[20,-13],[-2,-47]],[[88049,88665],[-29,52],[27,39],[21,-47],[-19,-44]],[[88267,88769],[-2,-72],[-18,11],[5,72],[15,-11]],[[88465,88717],[-41,-4],[2,53],[16,14],[49,-27],[-26,-36]],[[88735,88794],[-14,25],[39,48],[54,3],[49,24],[-13,-37],[-39,-36],[-76,-27]],[[88402,88843],[-16,-45],[-27,7],[-45,48],[17,23],[58,-12],[13,-21]],[[88014,88827],[-28,-34],[-5,51],[18,53],[25,4],[10,-24],[-20,-50]],[[89078,88990],[53,-23],[39,-6],[7,-42],[-33,-6],[-58,-39],[-24,9],[-29,33],[-60,13],[25,40],[45,20],[35,1]],[[86521,88986],[45,-68],[-36,17],[-39,-47],[-50,55],[-36,78],[31,51],[29,-53],[35,-8],[21,-25]],[[88288,88954],[-12,-47],[-34,55],[-37,37],[-14,32],[-22,20],[-6,44],[39,20],[27,-54],[44,-6],[-3,-33],[18,-68]],[[87668,89070],[-17,-17],[-33,7],[11,48],[32,-7],[7,-31]],[[86402,89388],[5,-80],[31,-15],[40,-73],[-12,-49],[-67,34],[-35,-9],[-11,54],[-20,35],[-26,-32],[-17,23],[24,80],[32,-13],[16,10],[12,43],[28,-8]],[[86465,89351],[-21,-8],[-27,67],[-10,46],[33,-20],[5,-37],[20,-48]],[[88763,89273],[-41,-39],[-46,57],[-8,18],[34,23],[17,36],[-14,43],[-47,64],[-2,46],[72,19],[42,-39],[22,-3],[-5,-50],[3,-116],[-20,-16],[-7,-43]],[[86434,89545],[-44,-5],[-11,42],[15,69],[18,40],[25,18],[11,-31],[-2,-112],[-12,-21]],[[88152,89685],[-46,-17],[-1,33],[-45,39],[10,64],[34,-26],[7,-45],[41,-48]],[[87609,89789],[25,-76],[23,-25],[47,-30],[23,-4],[82,-54],[95,-11],[48,-116],[-10,-29],[14,-87],[24,-82],[36,-40],[45,-12],[43,1],[11,-16],[-5,-72],[-33,-35],[-37,32],[-24,1],[-18,29],[-46,40],[-9,61],[-20,27],[-18,51],[-17,14],[-10,37],[-121,8],[-46,29],[-15,76],[-48,42],[-61,85],[-48,46],[-47,31],[-49,20],[-40,-24],[-28,22],[50,31],[68,61],[72,22],[44,-53]],[[87766,89897],[-19,-23],[-30,10],[-31,79],[80,-66]],[[88899,90047],[-7,-41],[59,-69],[21,-43],[7,-42],[-28,11],[-12,-23],[19,-26],[-34,-15],[-33,1],[-99,36],[-23,38],[59,58],[-30,21],[-44,-69],[-72,31],[-27,42],[29,61],[50,-2],[59,33],[1,29],[78,6],[27,-37]],[[86172,90119],[9,-39],[-53,24],[-40,35],[-32,86],[-69,98],[-1,29],[26,21],[57,16],[37,-33],[5,-18],[-39,-55],[25,-34],[10,-79],[12,-25],[53,-26]],[[88480,90502],[-28,-64],[-6,-58],[-41,11],[-17,48],[-16,-43],[-26,-3],[-27,18],[-2,103],[76,4],[22,-34],[38,41],[32,13],[-5,-36]],[[88587,90811],[-49,-18],[-53,57],[52,23],[41,-36],[9,-26]],[[88195,90942],[-56,-25],[-56,48],[1,27],[29,57],[17,17],[41,-5],[29,-57],[-5,-62]],[[88739,91020],[-12,30],[-67,52],[-154,30],[-74,39],[-32,-7],[-63,43],[-43,-19],[-91,-77],[-50,8],[-52,46],[-34,9],[-41,-24],[-64,-89],[-65,-43],[-59,17],[-79,0],[-8,-50],[15,-34],[43,-58],[-20,-44],[15,-44],[28,-8],[42,2],[79,-57],[34,-60],[22,-65],[-48,47],[-32,45],[-44,16],[-61,39],[-39,6],[-41,-26],[-3,-31],[44,-56],[62,-63],[14,-63],[-23,-41],[-48,40],[-73,140],[-103,28],[-17,-29],[20,-75],[15,-29],[89,-80],[-20,-24],[-100,46],[-29,70],[-7,88],[-92,61],[-87,66],[-20,64],[18,23],[13,46],[-48,-8],[-30,-29],[-48,-29],[-2,-47],[8,-43],[-17,-63],[-15,-109],[10,-57],[105,-165],[36,-119],[25,-46],[54,-50],[56,-93],[24,-48],[17,-79],[-48,-50],[-27,-2],[-15,22],[21,54],[-3,33],[-73,51],[-30,-17],[-36,-33],[20,-62],[23,-41],[12,-56],[43,5],[-59,-63],[-55,-32],[-88,-7],[76,-63],[106,-41],[51,-51],[49,-5],[50,-95],[87,-25],[49,-95],[65,-19],[57,-35],[16,-34],[9,-60],[3,-129],[13,-95],[-3,-76],[-36,-23],[-41,71],[-62,74],[-66,88],[-33,17],[-36,-30],[-97,-23],[-68,-56],[48,-58],[0,-55],[21,-67],[29,-17],[36,1],[21,-12],[5,-27],[36,-54],[-1,-16],[-102,-44],[-39,-30],[-27,20],[-1,54],[-67,53],[-39,11],[-32,37],[-22,-30],[17,-104],[37,-71],[62,-192],[28,-113],[6,-54],[-14,-91],[31,-68],[20,-69],[-23,3],[-53,53],[-65,110],[-22,69],[-27,6],[-47,-10],[-52,-147],[1,-85],[-50,47],[1,131],[-63,125],[-28,15],[-37,87],[-53,-27],[-10,-129],[-18,-47],[-66,88],[-67,152],[-2,83],[49,76],[-6,54],[-46,107],[-67,69],[-37,20],[-18,73],[-36,38],[-29,18],[3,45],[71,76],[41,117],[20,6],[42,-28],[48,7],[38,69],[33,38],[56,-5],[125,-92],[134,-53],[67,-46],[38,-46],[52,-16],[-12,65],[27,16],[72,0],[26,42],[-14,29],[-67,28],[-27,-10],[-42,23],[-35,38],[-73,39],[-70,65],[-15,-37],[-28,-20],[-41,-3],[-112,42],[-69,-32],[-67,-9],[-76,-23],[-36,60],[-15,47],[-22,-70],[-52,-20],[-30,27],[-52,188],[-52,85],[-41,22],[0,84],[50,9],[78,-39],[34,25],[-15,76],[-84,4],[-62,-19],[-28,18],[-10,23],[-51,56],[-45,74],[-72,50],[-47,153],[-40,66],[14,14],[32,-5],[29,33],[14,66],[33,5]],[[86303,90377],[0,27],[-31,76],[0,20],[63,60]],[[86335,90560],[64,12],[22,24],[18,90],[46,138],[33,16]],[[86518,90840],[30,18],[22,48],[12,67],[-32,81]],[[86550,91054],[4,52],[79,9],[75,3],[35,28],[24,-3],[50,-24],[88,57],[64,109],[28,16],[105,17],[70,-22],[40,-3],[48,15],[52,27],[13,93],[12,13],[57,3],[104,-9],[36,43],[83,10],[87,-8],[55,18],[51,30],[40,-3],[25,12],[10,40],[75,3],[68,-5],[56,20],[34,-76],[76,-61],[32,27],[63,-21],[60,-34],[51,-50],[56,14],[63,25],[85,11],[26,10],[59,-13],[62,27],[30,25],[8,34],[-5,60],[-14,61],[-19,45],[18,37],[40,12],[52,-19]],[[88861,91709],[38,-14],[37,-44],[37,-22],[12,-62],[7,-77],[-10,-33],[-28,-8],[-89,-72],[1,-122],[9,-47],[-10,-29],[-65,-90],[-30,-53],[-31,-16]],[[50944,71027],[-17,23],[2,44],[15,53],[24,37],[23,-10],[-9,-118],[-38,-29]],[[57598,104983],[-50,-84],[-49,18],[-25,38],[-102,27],[171,90],[81,24],[-26,-113]],[[61575,108291],[-67,0],[-22,54],[7,60],[75,19],[41,-41],[-34,-92]],[[55553,111090],[-67,-24],[-28,24],[-45,125],[9,51],[-14,35],[61,41],[49,7],[67,-11],[112,-41],[-32,-36],[-68,-28],[-24,-65],[-1,-56],[-19,-22]],[[54814,111364],[143,-57],[152,-39],[29,-59],[-13,-25],[47,-57],[-92,-81],[-283,-87],[-101,-15],[-247,-60],[-93,6],[-111,51],[-57,46],[11,17],[116,6],[99,20],[-53,28],[-151,41],[-157,9],[-132,37],[-50,58],[34,131],[23,33],[53,11],[130,-29],[17,13],[-142,48],[-52,29],[-25,75],[54,66],[144,43],[157,-15],[272,-52],[118,-56],[160,-136]],[[55268,111998],[-57,-2],[-134,12],[6,68],[59,6],[145,-59],[-19,-25]],[[66571,112044],[13,-77],[-28,-22],[52,-60],[-24,-29],[-172,-37],[-47,-18],[-60,-44],[-72,-39],[-53,40],[-114,29],[-215,-15],[-252,-37],[-90,-17],[-45,9],[-15,33],[42,70],[58,19],[39,49],[-13,54],[15,75],[40,11],[99,-26],[177,-9],[153,9],[122,30],[224,87],[39,-1],[49,-46],[78,-38]],[[54467,112127],[-40,-5],[-116,36],[-21,49],[106,88],[50,10],[62,-77],[2,-49],[-43,-52]],[[53829,113345],[-218,-155],[-111,34],[-67,36],[-88,0],[-32,35],[96,44],[140,8],[103,-3],[96,37],[74,-15],[7,-21]],[[69772,115167],[49,-141],[53,-43],[114,6],[46,-80],[-84,-31],[-330,13],[-137,-6],[-95,49],[15,172],[95,49],[80,-43],[194,55]],[[69521,115609],[-49,-18],[-167,288],[11,185],[76,6],[65,-43],[30,-166],[34,-252]],[[46658,116502],[-153,-6],[-152,27],[-51,21],[25,44],[149,13],[283,-50],[-15,-29],[-86,-20]],[[69792,116723],[-84,0],[-11,50],[117,104],[95,-3],[18,-53],[-38,-53],[-97,-45]],[[69343,116954],[-57,-25],[-73,172],[-7,111],[87,55],[76,0],[-7,-147],[30,-68],[-49,-98]],[[69939,118243],[-182,-79],[-270,6],[-160,37],[-45,55],[61,61],[193,49],[243,31],[221,-18],[30,-62],[-91,-80]],[[69486,119650],[-158,-13],[-243,114],[-7,61],[128,31],[216,-121],[64,-72]],[[58202,119815],[-88,-12],[-182,74],[-289,74],[-254,49],[-239,129],[15,86],[209,6],[167,18],[425,-80],[213,-67],[72,-55],[-11,-111],[-38,-111]],[[64624,120847],[414,-42],[219,-49],[342,-17],[282,-23],[468,-61],[66,-20],[-167,-27],[-598,-20],[-1086,-25],[-621,-48],[-197,-2],[-18,-71],[223,6],[486,71],[182,11],[340,-5],[441,-27],[178,9],[317,-7],[371,21],[438,44],[120,-99],[161,-98],[238,6],[96,-46],[124,7],[380,-28],[359,-75],[74,-60],[-41,-33],[-163,-60],[-206,-54],[-278,-42],[-321,-26],[-2462,-88],[-83,-20],[-50,-54],[33,-69],[115,-11],[269,39],[465,37],[342,-1],[817,-32],[241,-82],[128,-127],[282,28],[105,60],[62,84],[63,44],[233,29],[425,15],[102,-4],[90,-94],[-7,-166],[-36,-65],[-118,-114],[-95,-63],[-298,-147],[-67,-27],[-216,-119],[-53,-55],[96,-10],[64,55],[385,96],[207,89],[133,33],[166,60],[319,176],[166,53],[175,0],[30,-89],[300,-10],[210,-40],[221,-30],[99,23],[125,79],[129,57],[120,72],[102,33],[244,39],[141,-8],[425,-5],[231,-18],[322,-48],[225,-26],[104,-23],[331,-117],[-45,-40],[-302,-80],[-99,-53],[-287,-101],[-140,-35],[-321,-16],[-126,-29],[112,-71],[-5,-27],[-113,-48],[-298,-29],[-150,-49],[-195,-6],[-139,5],[-190,-53],[74,-43],[280,-59],[2,-22],[-239,-100],[-164,-37],[-210,2],[-158,-18],[-150,-2],[-267,24],[-221,38],[-96,-3],[-189,-79],[-122,-92],[-20,-52],[25,-93],[66,-33],[256,-4],[46,-47],[-50,-136],[-6,-97],[113,-16],[78,-79],[-45,-41],[-279,-61],[-71,-108],[-70,-48],[-149,-9],[-94,-17],[-224,-101],[81,-44],[-4,-28],[-103,-122],[-50,-144],[-37,-70],[-151,-197],[8,-57],[65,-40],[85,33],[107,104],[116,45],[234,-35],[256,-66],[101,-34],[83,-68],[1,-25],[-98,-9],[-185,66],[-90,16],[-224,-49],[94,-120],[100,-55],[182,-25],[95,-26],[124,-50],[73,7],[98,33],[137,2],[106,-47],[20,-58],[-19,-147],[-75,-100],[-41,-10],[-112,15],[-125,36],[-152,17],[-153,37],[-86,9],[-182,-4],[-196,-24],[-8,-31],[-282,-107],[-58,1],[-188,73],[-64,-1],[-95,-45],[-22,-33],[134,-56],[180,-19],[51,-120],[82,-75],[65,-21],[100,3],[128,25],[140,-44],[198,-15],[104,-68],[-41,-87],[65,-69],[128,-97],[62,-259],[-26,-109],[-43,-34],[-65,-22],[-53,6],[-40,33],[-132,72],[-123,4],[-181,-109],[-147,-17],[-70,-48],[-104,-28],[-193,30],[135,-66],[81,0],[196,67],[67,4],[54,-57],[32,-70],[-4,-60],[-105,-105],[77,-13],[107,64],[84,172],[87,31],[99,-31],[80,-86],[113,-158],[108,-54],[26,-47],[-20,-95],[-42,-41],[-119,-18],[-173,17],[-90,0],[11,-54],[-182,-47],[-205,-19],[-194,37],[-161,56],[53,79],[30,87],[-78,58],[10,-88],[-23,-34],[-150,-61],[45,-40],[-1,-56],[-50,-71],[86,-51],[64,-13],[297,-6],[118,-15],[282,-65],[13,-19],[-48,-116],[-26,-112],[-55,-20],[-296,-5],[-96,-18],[-140,-51],[-134,-61],[-70,-1],[-276,54],[-106,36],[-227,101],[-171,154],[-126,-95],[-98,-18],[-98,35],[-192,112],[-33,-13],[223,-149],[51,-48],[-101,-18],[-123,-38],[-60,-28],[-92,-68],[-171,-28],[-46,4],[-103,38],[-154,24],[-218,62],[44,-44],[244,-66],[26,-21],[-80,-54],[-231,4],[-128,-27],[34,-34],[58,-15],[68,45],[188,-8],[138,35],[174,19],[271,54],[57,60],[91,24],[202,18],[296,-17],[82,-57],[109,-40],[91,-46],[107,-15],[62,-61],[173,-68],[111,-15],[68,-32],[12,-197],[-29,-164],[-88,-38],[17,-87],[-23,-70],[-88,26],[-90,46],[-216,72],[-201,46],[-78,42],[-92,32],[-125,131],[-116,244],[-69,5],[-164,-45],[-37,-39],[-261,-54],[-94,-37],[-54,1],[-195,-55],[115,-30],[303,87],[142,9],[161,55],[74,8],[18,-23],[52,-199],[-22,-53],[-184,-61],[-33,-18],[37,-32],[118,30],[77,33],[40,-12],[67,-50],[267,-103],[91,-42],[127,-41],[182,-77],[160,-39],[55,-101],[45,-11],[132,-6],[-23,-39],[-129,-87],[-82,-44],[10,-82],[26,-94],[51,128],[146,53],[90,-21],[23,-98],[12,-91],[-8,-79],[6,-165],[22,-36],[22,-149],[22,-45],[-44,-40],[-137,-17],[-55,20],[-135,-7],[-17,130],[-6,147],[-38,-37],[-36,-218],[-35,-39],[-109,9],[-107,-6],[-59,6],[-199,73],[-78,65],[-68,99],[-43,92],[-16,86],[-47,69],[-80,54],[-94,43],[-109,34],[-96,43],[-82,52],[-90,41],[-99,30],[-141,12],[-205,-5],[-139,33],[-65,-19],[24,-49],[159,-22],[123,-5],[163,3],[99,-12],[37,-28],[25,-50],[14,-72],[-32,-57],[-179,-93],[-181,-56],[-61,-13],[-150,-4],[-116,5],[-152,29],[-264,9],[5,-40],[128,-38],[6,-38],[-39,-98],[-33,-30],[-165,-76],[-218,-60],[35,-10],[178,21],[227,-52],[180,3],[366,48],[54,-8],[49,-47],[-30,-27],[-83,-27],[-130,-26],[-110,-45],[-101,-64],[-29,-67],[105,-26],[48,32],[56,72],[50,42],[119,29],[144,-15],[112,17],[229,71],[41,4],[336,-41],[305,-79],[161,-29],[213,-17],[383,8],[33,-13],[-34,-52],[-64,-33],[-281,-71],[31,-55],[-95,-9],[-136,-36],[-112,3],[-2,-18],[46,-64],[-13,-26],[-88,-22],[-131,23],[12,-78],[-32,-27],[-67,-23],[-125,-62],[-54,-17],[-139,-23],[47,-47],[-6,-19],[-77,-51],[-117,-32],[-35,-82],[-31,-27],[-111,-50],[-79,-26],[-88,-55],[-60,-18],[-144,-15],[-114,-36],[-80,-13],[-252,-63],[-118,-10],[-103,-23],[-211,-60],[-100,-19],[-70,-23],[-76,-7],[-124,15],[-67,0],[-78,-27],[-62,-51],[-53,-4],[-173,40],[49,-61],[-2,-31],[-103,-32],[-56,-8],[-81,13],[-109,34],[-139,71],[-170,108],[-82,36],[25,-68],[32,-33],[-12,-39],[-62,-16],[91,-105],[-4,-50],[-47,-47],[-75,-36],[-202,-119],[-56,-15],[-47,-36],[-83,-129],[-72,-61],[-5,-67],[-34,-58],[-118,-162],[-95,-151],[-72,-70],[-66,4],[-44,-75],[-47,-61],[-190,-109],[-49,-20],[-44,13],[-52,-5],[-108,57],[-40,-14],[54,-128],[-81,-56],[-97,-50],[-106,-85],[-39,-24],[-4,90],[-59,33],[-5,-46],[-43,-90],[-80,-28],[-47,8],[-56,61],[-74,-58],[-35,2],[-6,-49],[-35,-44],[-45,-20],[-64,2],[-39,-26],[-86,28],[-20,53],[87,102],[-12,37],[17,48],[130,150],[89,77],[-5,14],[-121,16],[-105,26],[-102,9],[-45,-9],[72,-43],[102,-43],[-94,-84],[-44,-117],[-29,-48],[-111,55],[-19,-43],[97,-58],[6,-88],[-187,-61],[-195,-9],[-140,-17],[-235,-21],[-92,0],[-8,-23],[231,-107],[34,-20],[-33,-37],[-47,-23],[-75,-79],[-39,-27],[-97,-37],[-179,41],[-91,-18],[-88,13],[-2,-46],[26,-33],[27,-83],[59,7],[75,26],[57,-63],[38,-106],[67,-54],[41,-80],[-41,-39],[-86,-56],[-95,-10],[5,-44],[-41,-31],[-87,9],[-83,32],[-174,12],[175,-84],[62,-39],[28,23],[60,6],[90,-22],[-15,-142],[44,-141],[-95,-69],[-2,-64],[-57,-18],[-61,4],[-3,-71],[-41,-44],[19,-52],[-72,-100],[-49,-48],[-197,6],[-75,62],[-67,35],[35,-65],[70,-44],[128,-56],[-4,-39],[-34,-18],[-80,-107],[-65,-30],[-110,9],[-47,11],[-137,-7],[-46,10],[-3,-35],[167,-55],[136,-20],[-5,-39],[-34,-33],[19,-48],[-53,-170],[37,-65],[40,-32],[-5,-42],[19,-67],[-60,-59],[-50,2],[-71,-13],[-24,-27],[113,-25],[-10,-44],[-31,-56],[-32,-122],[-66,-208],[-30,-206],[-141,-170],[-63,-11],[-68,8],[-108,39],[-83,13],[-57,1],[-7,-20],[47,-31],[71,-13],[57,-21],[102,-20],[60,-78],[-3,-48],[18,-141],[-85,-93],[-128,6],[-22,16],[-124,46],[8,-22],[89,-63],[31,-31],[-56,-9],[-51,-21],[-90,11],[22,65],[-88,-22],[-49,4],[-30,80],[21,33],[74,83],[24,45],[-21,20],[-53,-48],[-55,-76],[-25,-46],[-34,-9],[-86,23],[-244,107],[5,118],[71,7],[98,52],[52,52],[48,86],[-6,6],[-140,-110],[-87,-36],[-42,-7],[-90,52],[-148,42],[-48,25],[-41,112],[53,136],[36,39],[23,46],[14,61],[-55,-4],[-15,-55],[-123,-52],[-123,-42],[-58,-40],[-68,-61],[-108,-4],[-43,-20],[-62,13],[-41,29],[-49,3],[-94,-13],[29,-69],[-123,-5],[-72,33],[-26,26],[16,34],[129,63],[58,36],[-38,13],[-124,-12],[-20,10],[-83,-6],[3,93],[-50,60],[-44,16],[-140,21],[-28,105],[-27,66],[-67,18],[-36,28],[29,30],[12,37],[-31,17],[-42,89],[-7,36],[29,34],[79,38],[39,32],[90,28],[-77,20],[-84,-6],[-63,-62],[-118,-8],[-17,13],[-9,52],[7,41],[49,57],[-57,28],[-52,9],[-113,55],[-108,75],[26,73],[2,71],[-19,30],[96,126],[122,98],[-129,-47],[-106,-103],[-22,-5],[-48,86],[-44,38],[-60,36],[-116,144],[-76,124],[-121,143],[-30,81],[38,102],[-42,71],[116,32],[164,37],[86,30],[154,15],[-63,27],[2,66],[-103,-56],[-151,-45],[-179,-39],[-42,0],[-53,71],[75,76],[56,104],[75,68],[52,8],[118,-9],[-6,59],[71,24],[83,10],[59,-7],[37,-48],[48,-87],[64,-29],[-3,42],[-33,54],[-12,82],[-77,53],[-94,-9],[-56,61],[-15,51],[-56,87],[-17,-20],[56,-157],[-25,-36],[-90,-57],[-100,-25],[35,110],[-50,-20],[-46,-39],[-16,-55],[-30,-49],[-89,-122],[-35,-68],[-33,-33],[-38,-9],[-33,26],[-41,111],[2,185],[-15,79],[-48,185],[-10,66],[-81,35],[-39,86],[33,23],[121,55],[90,62],[108,97],[44,30],[157,23],[-60,23],[-142,-39],[-135,-107],[-134,-75],[-88,0],[-90,90],[-101,-17],[-88,19],[-15,123],[55,144],[-59,1],[-44,39],[-5,27],[146,68],[218,133],[196,101],[71,81],[162,76],[111,76],[-10,34],[-52,-26],[-106,-69],[-75,-39],[-258,-175],[-110,-64],[-106,-79],[-100,-44],[-111,-13],[-54,-14],[-33,11],[-14,82],[11,50],[-6,48],[28,69],[65,95],[131,73],[33,51],[188,18],[48,-2],[45,21],[-75,20],[-149,-2],[-231,13],[-105,43],[-85,104],[34,133],[3,63],[108,56],[58,19],[82,42],[109,71],[130,43],[67,8],[55,-6],[205,-62],[105,-12],[92,15],[116,-22],[205,-88],[28,34],[-228,94],[1,28],[58,8],[63,27],[-35,16],[-152,-14],[-44,-22],[-147,-12],[-146,28],[-104,41],[-273,-55],[-190,-128],[-79,-26],[-57,9],[51,115],[17,85],[97,93],[61,102],[26,63],[47,7],[261,-50],[162,-49],[120,-13],[79,-1],[34,15],[37,46],[8,38],[89,89],[16,42],[-17,24],[-106,-19],[-76,-83],[-74,-15],[-170,-22],[-77,-1],[-138,30],[-35,33],[-260,-8],[20,38],[53,42],[75,138],[63,35],[124,33],[130,-5],[225,-107],[68,-9],[62,8],[149,36],[81,59],[62,75],[-99,-24],[-94,-11],[40,138],[16,106],[15,26],[126,-8],[172,14],[40,34],[-69,14],[-33,29],[-136,-29],[-97,3],[8,45],[72,95],[35,131],[3,44],[36,44],[159,49],[3,20],[-67,77],[70,41],[-43,31],[-158,-25],[-130,38],[-37,-4],[-98,-43],[-360,48],[-35,13],[-101,66],[-195,90],[-144,36],[-177,25],[-106,23],[-52,32],[-158,131],[-12,30],[80,63],[77,21],[132,-7],[149,-30],[182,2],[198,-28],[97,-30],[268,-128],[111,-44],[49,-5],[200,-48],[114,23],[-19,29],[-89,11],[-103,52],[-65,42],[-7,69],[36,115],[-214,97],[44,19],[165,-30],[59,-3],[48,20],[-68,30],[-86,52],[-179,8],[-116,-6],[-153,47],[-51,8],[-103,-19],[-100,5],[-48,92],[50,40],[47,61],[62,30],[337,68],[24,49],[-123,-27],[-198,29],[-220,-95],[-51,3],[-67,27],[-15,43],[74,32],[71,62],[-84,10],[-17,102],[-20,44],[-118,112],[-43,-18],[121,-110],[22,-58],[-7,-30],[-102,-64],[-28,-55],[-49,-26],[-54,11],[46,-92],[-22,-46],[-58,-28],[-95,-24],[-160,-12],[-157,29],[-121,12],[-111,89],[-32,51],[-1,45],[52,53],[42,132],[59,107],[148,109],[42,40],[-10,48],[-182,-135],[-113,-15],[-34,31],[31,66],[91,-5],[35,30],[-57,46],[-75,23],[63,35],[144,-3],[85,51],[58,48],[26,76],[-4,85],[-55,66],[-89,33],[-26,-38],[-67,-19],[-163,52],[-11,73],[104,35],[66,69],[-15,95],[-49,43],[-126,-53],[-21,53],[-38,31],[-98,37],[-2,23],[60,118],[56,0],[-39,94],[-159,187],[-84,13],[-69,-17],[-231,-28],[34,29],[75,25],[100,17],[29,41],[-7,69],[-27,36],[26,20],[132,23],[41,25],[-115,61],[-120,40],[-168,154],[-75,36],[-193,66],[-66,46],[-124,121],[-134,51],[-17,23],[139,60],[14,24],[-115,127],[-157,29],[-86,24],[-157,65],[-117,26],[-196,68],[-303,72],[-135,43],[-186,19],[-205,39],[-172,13],[-141,1],[-79,40],[-123,23],[-63,-9],[-174,-85],[-51,-6],[-113,66],[-71,0],[-67,-35],[-159,-56],[-234,-30],[-214,78],[-78,-15],[-143,-56],[-176,54],[-88,-16],[11,-30],[163,-121],[-65,-6],[-570,68],[-72,17],[-192,67],[-149,65],[-114,36],[-48,47],[37,25],[230,88],[267,38],[56,24],[-47,18],[-234,-6],[-209,12],[-181,35],[-93,63],[7,35],[77,79],[-229,-94],[-93,-33],[-74,10],[-77,33],[25,41],[-121,39],[-55,31],[-5,31],[125,71],[112,13],[408,24],[292,-23],[100,78],[67,24],[196,26],[302,4],[214,-15],[100,-18],[136,-40],[-27,79],[80,85],[-17,34],[-166,81],[-57,4],[-139,-36],[-158,-64],[-200,-17],[-135,18],[-142,40],[-152,-76],[-97,-21],[-66,3],[-269,56],[-61,25],[-3,38],[-83,37],[-105,18],[193,87],[-129,1],[-86,-30],[-164,-6],[-171,28],[-112,47],[-178,26],[-225,104],[-88,48],[-12,27],[102,60],[-57,57],[15,26],[122,73],[161,34],[160,49],[110,14],[211,-3],[212,60],[189,37],[423,55],[30,17],[-46,43],[281,66],[288,29],[97,26],[387,14],[147,-14],[119,11],[61,28],[175,116],[130,174],[140,286],[141,50],[123,19],[-157,26],[-189,-38],[-178,-3],[-179,-38],[-207,34],[-238,3],[-128,63],[-22,79],[85,92],[268,119],[314,71],[251,105],[158,90],[77,24],[269,39],[194,-29],[165,-90],[-76,138],[9,42],[95,44],[138,5],[268,-29],[179,-39],[86,12],[118,103],[26,80],[-44,244],[155,76],[177,45],[228,9],[267,-34],[140,-41],[227,-95],[151,-47],[248,-57],[276,-110],[88,9],[-219,96],[-295,90],[-163,64],[-252,116],[-195,43],[3,17],[234,60],[431,52],[486,41],[162,-4],[286,17],[27,26],[328,48],[193,-18],[125,-32],[136,-81],[38,-71],[-4,-268],[70,8],[122,78],[45,49],[50,117],[-76,56],[-4,92],[38,49],[106,0],[440,-169],[174,-37],[197,-91],[230,10],[212,-11],[141,17],[-66,38],[-302,103],[-137,82],[-96,101],[-23,54],[73,9],[337,-1],[506,-46],[648,-162],[319,-53],[571,-187],[242,-34],[85,48],[-45,178],[38,108],[133,76],[-38,72],[-108,49],[-420,127],[83,32],[126,10],[1041,-31],[180,-11],[154,-31],[223,17],[-33,51],[-1208,55],[-225,18],[-233,-12],[-359,-5],[-147,65],[133,78],[112,-2],[213,-30],[126,42],[200,35],[198,13],[432,75],[180,3],[223,-19],[189,-59],[224,-32],[263,121],[143,40],[203,-23],[245,-67],[166,-19],[281,-123],[104,33],[44,79],[-260,68],[-90,52],[89,57],[152,-8],[155,58],[147,9],[157,-21],[187,8],[35,39],[498,2],[337,22],[231,-29],[127,1],[367,48],[983,-4],[323,-20]],[[39093,73726],[51,8],[95,-7],[41,-19],[38,-39],[46,-30],[29,60],[-27,54],[2,16],[157,-154],[-58,-79],[-138,-178],[-126,-151],[-71,-49],[-12,-23],[-23,-121],[13,-54],[13,-83],[-4,-43],[-50,-54],[-32,-79]],[[39037,72701],[-24,10],[-53,-15],[-14,-13],[-2,-30],[13,-74],[-53,-41],[-34,-73],[-19,-19],[-34,-3],[-30,-34],[-45,-65],[-25,-48],[4,-68]],[[38721,72228],[-165,114],[-55,20],[-232,-3],[-100,45],[-113,87],[-77,79],[-179,221],[11,18],[21,83],[-11,89],[13,58],[5,70],[19,17],[11,33],[-56,114],[7,58],[99,266],[95,255],[131,1]],[[38145,73853],[195,0],[230,1],[-6,63],[4,69],[15,62],[0,28],[-24,34],[-45,19],[-25,30],[0,38],[-11,46],[-22,54],[-45,55],[-69,56]],[[38342,74408],[-59,75],[-48,95],[-41,61],[-39,39],[180,-2],[1,392],[347,0],[196,0],[244,-1],[-9,-364],[-13,-532],[-10,-441],[2,-4]],[[139864,71895],[-19,-1],[-21,39],[0,80],[60,69],[20,66],[32,-16],[13,-20],[-69,-111],[-16,-106]],[[52891,66527],[-23,-44],[-4,-28],[-26,-77],[17,-62],[31,-22],[-44,-76],[1,-39],[-10,-20],[-35,-11],[-69,0],[-60,-10],[-18,-25],[-40,-22],[-31,-71],[31,-106],[-34,-150],[-11,-72],[-45,-124],[0,-49],[10,-69],[53,-101],[18,-49],[14,-77],[49,-61],[30,-50],[2,-85],[41,-29],[48,6],[6,10],[52,1],[6,-17],[5,-131],[20,-39],[3,-74],[8,-27],[-1,-56],[45,-80],[19,-72],[14,-19],[13,-74],[23,-52],[6,-43],[39,-82],[34,-113],[24,-55],[61,-22],[35,-43]],[[53198,64016],[-35,-25],[-23,11],[-31,-6],[-64,-23],[-57,25]],[[52959,64012],[-24,48],[-11,6],[-31,-23],[-37,-16],[-18,3],[-41,-38],[-37,-94],[-20,-33],[-21,-15],[-87,-3],[-33,-23],[-47,-13],[-6,-52],[-17,-37],[-46,-2],[-13,21],[-72,28],[-24,-74],[-33,-11],[-15,-19],[9,-63],[-11,-44],[-74,-3],[-45,-50],[-32,-4],[-46,71],[-113,49],[-37,62],[-9,30],[-17,14],[-68,120],[-56,32],[-1,67],[-31,22],[-7,19],[5,154],[-5,106],[-40,37],[-17,25],[-46,227],[0,53],[10,156],[11,68],[32,136],[18,46],[-1,79],[-9,87]],[[51746,65161],[75,78],[4,37],[28,47],[23,79],[-29,63],[-31,95],[-20,46],[16,89]],[[51812,65695],[-1,19],[-56,66],[-32,3],[-24,15],[-64,6],[-16,16],[10,45],[24,48],[16,51],[7,116],[11,122],[-38,43],[-27,66],[-43,13],[-40,-41],[-32,8],[-22,-15],[-50,3],[-33,20],[-39,-14],[-91,164],[-182,327],[-6,22],[38,77],[33,56],[29,31],[13,28],[-10,119],[0,43],[-22,99],[25,74],[17,11],[72,15],[28,38],[22,1],[45,-14],[57,62],[82,61],[18,40],[13,62],[-1,29],[-29,22],[-31,1],[-25,-16],[-26,9],[-22,38],[-1,32],[13,45],[-8,29],[-41,94],[0,26],[30,43],[17,36],[23,86],[19,28],[57,10],[44,64],[43,52],[63,42],[18,75],[11,21],[50,40],[8,39],[-81,170],[16,-12],[62,-110],[35,-24],[7,28],[32,-12],[81,-76],[119,-125],[168,-236],[47,-89],[33,-43],[49,-103],[15,-50],[-2,-200],[-44,-136],[-10,-102],[-3,-135],[-25,-78],[34,42],[10,123],[29,74],[38,82],[50,19],[54,-35],[43,-6],[39,-24],[82,-130],[79,-103],[29,-83],[85,-42],[50,-65],[16,-56],[10,-148],[-16,-223],[4,-11]],[[126723,78128],[-10,-11],[-30,51],[21,20],[26,-23],[-7,-37]],[[126622,78128],[-51,0],[-17,21],[18,27],[70,37],[-17,-39],[-3,-46]],[[126738,78358],[11,-29],[-3,-29],[17,-14],[5,-29],[-20,-16],[-9,-54],[-56,37],[-46,19],[-41,-8],[-17,44],[47,39],[4,20]],[[109270,25666],[-52,-33],[-53,0],[-22,26],[-33,81],[-22,6],[8,39],[36,-24],[85,-19],[63,-44],[-10,-32]],[[41503,73021],[-16,5],[-33,-19],[-50,-43],[-46,-16],[-40,10],[-21,-38],[-33,-3],[-21,15],[-11,-35],[-32,6],[-23,-10],[-26,-34],[-36,-7],[-47,19],[-36,37],[-25,53],[-31,14],[-54,-40],[-22,-47],[0,-54],[-35,-26],[-19,-31],[-13,-55],[-2,-42],[7,-30],[-12,-22],[-33,-14],[-38,-47],[-45,-80],[-44,-56],[-44,-32],[-21,-35],[-1,-51],[-23,-10],[-85,84],[-24,59],[-21,-9],[-27,-30],[-38,-66],[-40,-90],[-19,-10],[-101,13],[-53,-8],[-16,-45],[18,-203],[8,-65],[-8,-20],[-62,-13],[-19,-30],[-7,-73],[-11,-45],[-22,-32],[-21,-11],[-120,-9],[2,74],[-34,30],[-37,102],[4,55],[-49,22],[-46,-18],[-45,28],[33,36],[2,22],[-21,27]],[[39718,72078],[10,89],[18,114],[-7,19],[-30,34],[-39,4],[-42,-11],[-21,18],[-18,39],[-30,18],[-54,-31],[-75,-64],[-14,3],[-13,86],[-66,26],[-35,39],[-43,37],[-9,27],[-57,62],[-25,53],[-27,29],[-21,-7],[-83,39],[32,79],[50,54],[4,43],[-13,83],[-13,54],[23,121],[12,23],[71,49],[126,151],[138,178],[58,79],[42,-20],[33,45],[19,15],[58,65],[75,21],[36,0],[32,-54],[25,-29],[47,25],[39,5],[163,-50],[65,22],[119,5],[53,-12],[76,71],[48,14],[57,33],[-7,34],[73,1],[129,-72],[138,13],[50,38],[32,12],[141,-74],[37,-57],[29,-6],[23,13],[-34,42],[111,-35],[209,-268],[4,-22],[-89,79],[-47,-6],[-13,-13],[7,-64],[36,10],[37,-14],[54,-73],[18,-48],[19,-1],[19,29],[35,3],[17,20],[-41,52],[119,-90],[34,-112],[57,-59],[-111,10],[-52,-22],[-23,-48],[-20,-22]],[[40304,74067],[-69,-54],[10,43],[51,36],[44,17],[35,-7],[-71,-35]],[[40541,74125],[-33,-40],[-6,18],[16,37],[23,-15]],[[85108,92442],[59,-48],[-173,63],[38,7],[76,-22]],[[84696,92600],[79,-19],[59,9],[53,-12],[-2,-34],[-48,9],[-55,-23],[-48,12],[-31,33],[-7,25]],[[85465,92296],[1,-25],[34,-63],[-80,66],[-74,74],[-145,114],[-103,27],[-141,92],[-91,32],[75,8],[217,-122],[-24,32]],[[84930,92690],[-30,-7],[-192,6],[-56,14],[-74,49],[62,10],[58,-10],[18,-27],[157,-22],[57,-13]],[[84754,92791],[-68,-2],[-59,13],[-29,22],[11,48],[66,-3],[100,-22],[24,-25],[-45,-31]],[[84066,93245],[-23,-10],[-105,151],[26,-5],[102,-136]],[[84066,93533],[-11,-19],[-108,123],[-24,93],[18,-6],[47,-53],[46,-69],[54,-59],[-22,-10]],[[83912,93828],[-66,7],[-7,21],[13,34],[27,-3],[33,-59]],[[83764,93759],[-29,7],[-13,61],[-33,99],[-5,28],[18,27],[-1,28],[-24,87],[31,16],[5,-60],[11,-35],[31,-42],[-6,-71],[7,-100],[8,-45]],[[83903,93979],[-53,-15],[-32,49],[-43,7],[-32,44],[37,34],[20,54],[26,-33],[30,-61],[17,-17],[30,-62]],[[85667,94644],[-5,-46],[-24,-21],[24,-48],[23,-77],[-13,-38],[16,-30],[43,-22],[-20,-42],[-1,-46],[38,-44],[77,-41],[25,-7],[30,-39],[-5,-27],[-79,-4],[-61,-21],[16,-114],[-7,-33],[-32,-5],[-1,-35]],[[85098,92560],[-20,17],[-90,106],[-86,67],[-97,126],[-131,50],[-89,55],[-113,-26],[-63,10],[-18,34],[-1,61],[-52,55],[-71,53],[-67,68],[-135,183],[-27,59],[69,22],[37,0],[5,28],[-48,38],[-124,153],[-37,72],[-5,78],[10,106],[-23,77],[-96,99],[-35,52],[-71,31],[-31,-3],[-19,-39],[-14,-85],[-63,-113],[-54,-113],[-45,1],[-51,107],[-48,82],[-12,85],[-37,175],[26,24],[16,-28],[114,-33]],[[83502,94294],[24,15],[25,41],[40,-22],[33,5],[90,-2],[24,16],[46,98],[25,4],[7,-29],[54,-71],[49,-28],[46,22]],[[83965,94343],[67,-34],[57,-6],[42,18],[-21,51],[0,50],[27,33],[-33,50],[76,46],[74,25],[19,49],[-1,100],[-30,43],[17,63],[64,24],[93,49],[28,46],[17,8]],[[84461,94958],[53,-7],[11,12],[-7,65],[36,36],[46,-7],[61,-28],[77,-47],[53,-54],[29,-60],[40,-46],[51,-33],[40,-44],[29,-56],[41,-31],[53,-7],[34,-19],[14,-32],[29,-29],[43,-25],[67,-14],[141,-4],[29,-8],[34,10],[55,32],[44,65],[24,-5],[79,22]],[[46168,75738],[-7,-50],[-111,59],[-89,73],[4,40],[46,10],[43,-25],[65,-49],[49,-58]],[[46667,76029],[-5,-46],[-64,-100],[9,-46],[22,-45],[3,-37],[-7,-49],[-35,-60],[-18,-22],[-52,-3],[-5,-9],[55,-126],[47,-52],[11,-49],[-12,-47],[-2,-115],[-36,56],[-40,47],[-49,29],[-191,-6],[-56,-30],[-53,-14],[-52,-3],[-122,37],[-48,20],[-49,12],[-56,-4],[-55,-11],[-45,-27],[-33,-48],[-6,-44],[-20,-12],[-45,71],[-41,50],[-48,38],[-96,53],[-18,33],[-8,39],[39,122],[45,22],[24,5],[55,-15],[54,-28],[49,-18],[75,-7],[41,-30],[291,-47],[55,-14],[40,23],[34,58],[86,5],[18,11],[12,34],[0,36],[-51,48],[-79,105],[-70,123],[30,42],[-11,76],[11,70],[17,69],[-69,60],[-82,59],[-113,18],[-35,15],[-18,44],[17,60],[36,32],[85,35],[104,17],[103,-19],[90,-61],[90,-48],[114,-16],[52,-17],[24,14],[9,-20],[20,-141],[2,-45],[-20,-68],[3,-27],[43,-62]],[[46229,76615],[11,-36],[-44,12],[-45,22],[-24,-2],[-3,37],[50,5],[55,-38]],[[87056,96366],[53,2]],[[87109,96368],[27,-84],[15,-22],[73,-35],[27,-50]],[[87251,96177],[40,-20],[40,3],[29,-34],[17,-79]],[[87377,96047],[-86,-103],[-49,-27],[-31,9],[-86,-31],[-77,-109],[-48,-46],[-2,-77],[-55,-63],[-36,-116],[-53,-66],[-4,-55],[-29,-60],[-39,-62],[1,-59],[-37,-39],[-39,-28],[-29,-85],[5,-51],[-31,-15],[-18,-60],[-48,-44],[-87,12],[-33,-9],[-12,-36],[-51,-42],[-46,23],[-98,-24],[-17,-17]],[[86242,94767],[-34,23],[-98,14],[-39,-11],[-99,16]],[[85972,94809],[-36,-9],[-47,-64]],[[85889,94736],[-62,-42],[-56,-11],[-26,20],[-31,-39],[-78,-34],[-48,-8],[-24,5],[-44,-65],[-55,-32],[-34,-10],[-29,8],[-141,4],[-67,14],[-43,25],[-29,29],[-14,32],[-34,19],[-53,7],[-41,31],[-29,56],[-40,44],[-51,33],[-40,46],[-29,60],[-53,54],[-100,58]],[[84638,95040],[-58,96],[1,30],[-21,28],[-12,74],[-10,21],[-82,4]],[[84910,96088],[56,-1],[17,-9],[70,-72],[67,-54],[54,-28],[166,-5],[249,17],[23,46],[-12,60],[18,42],[53,36],[151,15],[87,26],[13,36],[29,35],[26,7],[80,-47],[38,-16],[187,114],[67,161],[66,16],[97,-3],[86,-28],[56,4],[80,30],[29,-1],[49,-40],[29,-53],[39,-51],[19,-5],[149,38],[8,8]],[[130478,55068],[-53,7],[-4,61],[12,34],[93,44],[36,41],[52,85],[45,30],[6,-65],[15,-58],[-47,-33],[-41,-75],[-90,-49],[-24,-22]],[[130018,55290],[-21,-9],[-46,21],[-9,12],[39,33],[31,48],[35,4],[21,-10],[-7,-56],[-43,-43]],[[130679,55490],[-39,-24],[0,51],[30,64],[27,22],[17,-37],[-40,-24],[5,-52]],[[129213,56136],[19,-31],[71,-61],[11,-25],[5,-42],[14,-31],[32,-5],[34,6],[25,-19],[23,-32],[33,-61],[29,-67],[36,-37],[21,-56],[-12,-50],[-46,-68],[-25,-15],[-34,-5],[-52,-41],[-20,21],[-59,15],[-48,29],[-40,54],[-23,58],[-29,51],[-51,34],[-91,100],[-57,9],[-46,-7],[-119,45],[-19,26],[-28,67],[-8,37],[31,55],[67,39],[47,12],[55,-2],[83,13],[77,-20],[24,15],[40,40],[30,-51]],[[131390,56040],[-30,-37],[-15,-70],[-52,-65],[-58,-108],[-46,-54],[-40,-65],[-35,-44],[-43,-15],[-65,-9],[-88,-78],[-49,-34],[-48,-2],[-44,25],[-17,29],[4,38],[33,60],[11,35],[-50,44],[-5,34],[20,89],[13,93],[19,63],[72,112],[43,56],[26,22]],[[130946,56159],[23,-52],[83,-8],[16,10],[40,69],[14,86]],[[131122,56264],[56,25],[30,27],[27,38],[78,65],[14,18]],[[131327,56437],[-3,-62],[25,-23],[55,42],[21,-27],[0,-56],[-21,-46],[-53,-4],[-7,-13],[3,-56],[28,-61],[15,-91]],[[127317,56557],[-12,-24],[-44,62],[35,32],[22,-30],[-1,-40]],[[130490,56714],[-14,-41],[-25,11],[7,40],[13,23],[33,34],[34,6],[28,-25],[-53,-13],[-23,-35]],[[128977,56577],[-34,4],[7,62],[-10,42],[18,33],[4,58],[50,-19],[4,-49],[-8,-25],[-40,-58],[9,-48]],[[130636,56846],[-8,-30],[-118,2],[4,40],[43,58],[36,13],[51,-23],[-8,-60]],[[127761,56666],[-55,-144],[31,-46],[-90,-30],[-37,16],[-22,-4],[-92,27],[-65,33],[-8,27],[5,31],[20,-11],[50,-5],[20,15],[0,93],[-7,121],[68,99],[37,39],[42,24],[105,-55],[31,-37],[7,-35],[-40,-158]],[[131054,56864],[-26,-43],[-18,-75],[-17,-23],[-34,-14],[-21,75],[-39,-3],[19,66],[18,24],[24,1],[18,-32],[55,112],[28,-18],[-7,-70]],[[130898,56903],[-61,-18],[-37,-87],[-29,1],[-17,-39],[-5,-46],[-11,-15],[-28,24],[-34,-38],[-34,35],[-43,4],[41,63],[55,60],[10,22],[-35,15],[-2,14],[60,11],[30,-19],[76,71],[52,-34],[12,-24]],[[137345,56823],[-21,-10],[-108,22],[-13,43],[24,28],[24,48],[52,18],[44,-114],[-2,-35]],[[128155,56837],[-28,13],[6,29],[-10,48],[4,38],[24,22],[51,3],[2,-29],[-49,-124]],[[128809,56927],[-19,-1],[3,57],[26,13],[16,-40],[-26,-29]],[[131178,56995],[11,-42],[33,23],[32,6],[74,-4],[55,-10],[32,-17],[3,-85],[-15,-18],[-281,-64],[-28,20],[-11,20],[31,63],[-14,30],[16,49],[33,33],[29,-4]],[[132577,57024],[75,-28],[44,3],[8,-25],[-41,-59],[-87,46],[-15,48],[16,15]],[[130406,56667],[-61,-24],[-38,-24],[-36,-31],[-64,-9],[-58,6],[-40,-10],[-110,-81],[-43,-7],[-37,-20],[-29,55],[-73,4],[-37,-71],[-60,15],[-67,-28],[-23,5],[-86,55],[-99,33],[-100,-13],[-85,30],[-47,-23],[-45,-33],[-29,66],[-14,45],[4,89],[13,33],[12,72],[18,-18],[20,7],[58,40],[57,61],[53,23],[31,6],[26,-12],[53,18],[43,-47],[18,-10],[58,-3],[53,-27],[47,-41],[68,-38],[41,-50],[32,-19],[44,2],[27,34],[32,14],[77,8],[44,27],[44,-29],[84,-89],[26,-2],[48,19],[14,24],[20,67],[39,47],[63,34],[43,34],[30,58],[-69,25],[14,41],[23,23],[31,-8],[26,-33],[12,-123],[-22,-17],[-23,-44],[-39,-45],[16,-56],[-28,-35]],[[133886,56871],[-38,-21],[25,55],[81,125],[29,-24],[38,-4],[-57,-56],[-58,-24],[-20,-51]],[[128451,56872],[21,-28],[20,3],[41,42],[24,15],[53,-6],[25,-30],[19,-64],[14,59],[42,26],[35,-3],[27,-28],[24,-83],[-1,-72],[9,-27],[29,-48],[-22,-43],[-31,-14],[-45,33],[-35,-7],[-33,-16],[5,-26],[26,-12],[-4,-33],[-34,22],[-24,-4],[-84,-31],[-22,1],[-13,29],[1,76],[-9,20],[-62,-92],[-19,-23],[-25,-11],[-26,4],[-91,-56],[-55,8],[-97,-61],[-52,-17],[-52,4],[-24,-6],[-21,-24],[-43,-21],[-45,16],[-73,48],[-9,36],[2,42],[15,59],[-10,101],[8,47],[14,45],[22,17],[29,4],[48,41],[43,54],[26,-6],[57,-37],[34,-5],[57,6],[23,-23],[10,-53],[29,-32],[41,-90],[37,5],[33,-17],[58,54],[44,-1],[12,42],[-26,45],[-32,36],[-52,12],[-71,81],[-20,44],[-13,52],[8,38],[48,34],[23,8],[85,-23],[14,-19],[22,-82],[18,-35]],[[127247,56985],[44,-37],[61,-108],[5,-30],[-18,-29],[-44,-46],[-97,-71],[-17,-33],[-25,-93],[-18,-27],[-22,-9],[-23,14],[21,42],[1,50],[-15,47],[-22,39],[-45,54],[-47,47],[-48,24],[-51,11],[-18,23],[-30,59],[-14,65],[3,33],[62,-6],[92,-38],[46,-3],[25,9],[67,75],[16,-1],[111,-61]],[[133445,57125],[-25,-64],[-29,4],[-52,86],[7,79],[20,6],[68,-17],[13,-49],[-2,-45]],[[132137,57324],[5,-48],[-52,-11],[-50,-38],[-25,-43],[-20,-56],[-69,22],[-61,4],[-27,20],[-29,-1],[-38,-18],[-54,-47],[-12,-4],[4,72],[15,45],[57,107],[47,-24],[56,-7],[62,21],[45,48],[63,25],[50,-63],[33,-4]],[[132403,57356],[-28,-17],[9,52],[-2,41],[45,-12],[-5,-46],[-19,-18]],[[137191,56903],[-103,-92],[-135,16],[-48,2],[-80,-22],[-16,17],[15,87],[64,229],[75,203],[32,52],[45,50],[47,39],[107,41],[98,-7],[55,-85],[28,-53],[11,-75],[-41,-130],[-47,-123],[-75,-97],[-32,-52]],[[134085,57094],[-7,-8],[-84,9],[4,53],[-16,39],[22,58],[0,68],[23,9],[3,38],[27,102],[16,22],[23,9],[26,60],[15,17],[16,45],[23,21],[-2,38],[13,21],[35,16],[25,-19],[15,-40],[-40,-48],[21,-120],[-29,-131],[-19,-39],[-35,-33],[-11,-32],[-41,-65],[-23,-90]],[[134368,57649],[-5,-35],[-19,19],[-18,40],[-46,16],[-12,19],[74,9],[26,-68]],[[126801,57696],[-6,-27],[-22,7],[-21,46],[22,16],[15,-5],[12,-37]],[[132942,57662],[-20,-18],[-41,52],[21,36],[21,10],[20,-31],[-1,-49]],[[129541,57707],[-44,-4],[-14,6],[-3,68],[49,-29],[15,-2],[-3,-39]],[[126556,57716],[-8,-10],[-73,6],[-47,-57],[-33,-18],[-117,0],[-31,-4],[-37,9],[-119,50],[-16,47],[18,50],[43,70],[86,14],[390,5],[43,-61],[4,-20],[-85,-42],[-18,-39]],[[127216,57810],[-35,-12],[-32,24],[9,64],[48,16],[27,-1],[47,-43],[9,-26],[-52,-1],[-21,-21]],[[135528,57964],[-20,25],[30,61],[12,-30],[-22,-56]],[[122856,58040],[-27,-16],[-30,34],[31,48],[29,15],[8,-26],[-11,-55]],[[135546,58103],[-24,-6],[-12,56],[20,15],[21,-35],[-5,-30]],[[135590,58183],[-10,29],[24,48],[15,0],[-29,-77]],[[135468,58178],[-14,-104],[-39,-62],[-25,-94],[-14,-23],[-53,-42],[-47,52],[-13,45],[20,207],[8,32],[-6,119],[2,45],[23,10],[28,-35],[36,-62],[42,-50],[52,-38]],[[123770,58480],[43,-79],[38,-43],[45,-23],[47,-2],[46,-10],[54,-30],[55,-14],[68,22],[15,-14],[39,-68],[41,-61],[10,-32],[28,-148],[32,-43],[44,-12],[52,0],[51,-6],[119,-35],[47,5],[41,35],[38,-23],[100,-42],[50,-9],[56,12],[57,2],[53,-30],[45,-6],[41,35],[27,64],[22,80],[17,84],[27,68],[42,33],[59,-8],[13,-20],[66,-142],[11,-12],[70,-9],[19,4],[42,29],[24,2],[44,-35],[41,-52],[109,-22],[42,-61],[21,-8],[75,7],[53,-6],[45,-16],[21,-87],[17,-89],[9,-30],[45,-30],[18,-28],[-5,-88],[5,-84],[95,-73],[101,-43],[107,-4],[108,15],[55,18],[69,31],[15,0],[134,-96],[12,-15],[15,-72],[-1,-76],[-25,-180],[1,-99],[27,-107],[14,-31],[49,-57],[-5,-59],[-54,21],[-33,24],[-19,40],[-26,23],[-51,-8],[-94,40],[-107,63],[-189,134],[-52,-2],[-49,-17],[-52,-33],[-55,-25],[-40,-9],[-40,7],[-101,32],[-101,21],[-261,13],[-74,30],[-122,15],[-97,27],[-96,36],[-245,180],[-80,44],[-246,86],[-38,7],[-89,-7],[-56,25],[-50,1],[-73,-28],[-23,-20],[-28,-42],[-100,10],[-130,40],[-49,25],[-47,37],[-42,48],[-22,17],[-113,49],[-92,17],[-189,22],[-76,33],[-19,39],[2,51],[45,129],[-139,88],[-109,48],[-47,9],[-48,0],[-53,-10],[-53,4],[-50,19],[-46,-6],[-5,40],[13,34],[27,38],[15,7],[7,-60],[31,-25],[10,4],[42,77],[12,37],[20,103],[22,-20],[35,29],[35,237],[29,69],[40,57],[20,14],[39,-35],[79,-13],[48,-24],[47,-3],[46,-11],[64,-42],[46,18],[35,45],[14,72],[50,-36],[73,-15],[19,-21]],[[130952,58504],[-34,24],[2,41],[20,-15],[12,-50]],[[129435,58278],[-18,-116],[-8,41],[-3,106],[-11,51],[7,60],[-2,152],[13,70],[25,-89],[6,-46],[-9,-229]],[[126072,58617],[-9,-24],[-42,2],[-7,27],[27,51],[18,3],[16,-18],[-3,-41]],[[134723,58590],[-26,-67],[-28,24],[-6,39],[6,82],[-22,91],[29,-1],[18,-37],[28,-88],[1,-43]],[[135559,58690],[-4,-77],[7,-46],[-18,-46],[17,-70],[2,-84],[-18,-87],[-33,-49],[-85,22],[-36,44],[-33,49],[-7,20],[-47,76],[-1,30],[64,7],[-1,27],[19,96],[-50,62],[-9,26],[18,17],[40,-21],[50,108],[14,22],[7,61],[28,7],[20,-7],[17,-70],[-5,-30],[24,-15],[20,-72]],[[134775,58554],[-35,-60],[33,141],[7,72],[30,42],[46,217],[25,-26],[-23,-159],[-64,-111],[-19,-116]],[[121613,58849],[-35,-4],[-65,86],[-10,26],[18,26],[20,-2],[74,-54],[15,-27],[-17,-51]],[[130770,58993],[-2,-71],[-17,4],[-15,25],[-3,42],[8,15],[29,-15]],[[130087,58877],[-27,-19],[-52,80],[-22,66],[6,37],[23,40],[-4,34],[21,17],[22,-3],[15,-45],[18,-13],[9,-43],[-9,-151]],[[130347,58994],[-11,-46],[-24,-36],[-39,5],[-35,31],[-9,-33],[-28,2],[-10,43],[20,126],[29,47],[-3,50],[-24,106],[15,55],[67,42],[76,62],[16,-40],[9,-180],[-63,-143],[14,-91]],[[130577,59494],[10,-149],[-3,-40],[-33,70],[-28,-18],[-16,-58],[-1,-55],[-12,-36],[-7,-122],[4,-33],[31,20],[42,-47],[23,-34],[-7,-42],[-28,-42],[-34,-18],[-25,18],[-33,-58],[3,-30],[-28,-82],[-16,-23],[-34,25],[-21,-22],[-17,2],[-26,83],[0,39],[24,43],[1,32],[11,35],[42,84],[16,146],[20,117],[1,149],[41,122],[39,33],[61,-109]],[[135052,59707],[-29,-8],[-73,61],[-5,41],[61,-62],[46,-32]],[[130604,59800],[-42,-84],[-30,4],[-35,55],[-11,82],[24,35],[81,-12],[15,-30],[-2,-50]],[[132895,60167],[-73,-37],[16,68],[10,18],[36,-18],[11,-31]],[[132772,60105],[-11,-26],[-25,-16],[-21,1],[1,39],[-40,-26],[-32,-39],[-19,19],[-3,44],[38,55],[44,9],[63,53],[28,-3],[-22,-81],[-1,-29]],[[132964,60194],[-4,-39],[-40,10],[-15,53],[4,12],[43,-21],[12,-15]],[[127667,60251],[-15,-120],[-27,68],[30,81],[12,-29]],[[132483,60355],[10,-31],[-42,20],[-19,30],[29,23],[22,-42]],[[127615,59970],[-90,-129],[-15,32],[8,132],[-25,82],[1,61],[18,108],[23,82],[53,55],[13,7],[-3,-100],[14,-70],[-6,-28],[10,-128],[6,-31],[-13,-40],[6,-33]],[[132163,60513],[70,-54],[29,-78],[58,-79],[8,-55],[-7,-113],[-62,-27],[-62,-65],[-63,-17],[-47,-24],[-60,36],[-58,43],[-85,73],[-16,18],[-13,40],[-39,70],[-10,46],[-3,129],[27,45],[56,-30],[38,32],[107,26],[109,-3],[23,-13]],[[132648,60619],[-22,-58],[-38,2],[38,45],[22,11]],[[123560,60571],[-31,-7],[-29,38],[-2,19],[23,24],[49,-25],[-10,-49]],[[123812,60644],[-17,-17],[-13,36],[7,24],[35,-5],[-12,-38]],[[133409,60668],[99,-77],[51,-12],[86,10],[33,-7],[82,-99],[24,-67],[7,-59],[12,-55],[45,-19],[37,-106],[-24,-200],[-97,76],[-93,86],[-40,32],[-108,73],[-29,58],[-47,45],[-93,7],[-50,-8],[4,-73],[-23,-14],[-58,31],[-52,11],[-45,30],[-60,16],[-4,60],[-41,4],[-48,-46],[-49,-92],[-52,-11],[-42,23],[-60,122],[-43,48],[-21,10],[-22,-19],[-11,-38],[-11,-71],[-26,-72],[-21,-43],[-8,7],[11,69],[0,39],[-22,83],[102,200],[37,48],[159,16],[96,-10],[51,5],[35,15],[29,-7],[7,-39],[18,-30],[25,3],[45,31],[40,47],[24,21],[50,1],[91,-53]],[[120777,60447],[17,-101],[-51,69],[1,49],[-7,32],[-31,39],[-24,49],[-11,116],[8,24],[20,1],[90,-152],[7,-26],[-2,-54],[-17,-46]],[[124128,60576],[-6,-73],[-11,-28],[-36,-36],[-12,-22],[-34,3],[-15,64],[-36,30],[-16,-51],[-69,-32],[-20,-2],[10,59],[-18,46],[-5,82],[-9,14],[18,40],[-3,44],[19,47],[10,115],[74,26],[16,-21],[86,-26],[61,-69],[32,-93],[-36,-117]],[[120682,60755],[-31,-56],[-51,1],[-10,35],[2,84],[-12,27],[8,59],[11,11],[82,-118],[1,-43]],[[135398,61185],[-17,19],[7,41],[30,-10],[-20,-50]],[[120526,61032],[2,-19],[-70,62],[-34,16],[-30,67],[10,32],[5,63],[22,6],[28,-32],[20,-80],[35,-74],[12,-41]],[[131815,60957],[-7,-13],[-26,38],[-17,106],[-15,28],[-17,101],[4,29],[21,42],[18,0],[12,-25],[-7,-109],[39,-138],[-5,-59]],[[130865,61302],[-19,-27],[-12,52],[31,-25]],[[131802,61417],[133,-23],[-19,-25],[-143,-40],[-51,7],[-155,-23],[-20,1],[-3,39],[-16,27],[24,24],[33,5],[86,-9],[131,17]],[[130565,61399],[-31,-58],[-4,31],[15,47],[20,-20]],[[133667,61486],[5,-41],[25,-38],[-8,-60],[-11,-8],[17,-48],[-20,-15],[-15,7],[-23,-19],[-16,-26],[-49,-12],[-17,25],[-89,29],[-57,64],[-8,19],[111,76],[48,19],[40,-1],[51,28],[16,1]],[[131348,61476],[40,-25],[14,0],[22,34],[18,-14],[4,-47],[26,6],[27,-27],[-3,-47],[-77,-8],[-55,-38],[-74,34],[-84,-58],[-52,-20],[-44,1],[-38,102],[22,119],[16,20],[28,10],[78,6],[132,-48]],[[135872,61555],[170,-35],[46,5],[97,-14],[81,-46],[142,-9],[42,-14],[33,-32],[-79,-26],[-38,-25],[-69,-12],[-58,13],[-42,-15],[-15,24],[-62,24],[-79,50],[-163,59],[-6,53]],[[124450,61536],[-50,-30],[-15,66],[32,19],[34,-17],[-1,-38]],[[123198,61501],[14,-48],[35,-90],[21,-224],[67,-192],[195,-75],[-32,-31],[-28,-60],[-29,-134],[3,-28],[17,-45],[4,-49],[-52,11],[-64,62],[-24,12],[-39,38],[-54,27],[-55,21],[-26,57],[-13,70],[14,104],[-33,55],[-24,75],[-9,88],[-35,33],[-46,21],[-20,17],[-90,-32],[-22,7],[-19,25],[-49,25],[1,49],[23,39],[54,39],[26,33],[5,43],[-10,32],[4,33],[37,58],[54,33],[24,-58],[26,-84],[23,50],[-15,87],[42,20],[40,0],[31,-23],[20,-38],[8,-53]],[[130757,61477],[-30,-5],[-20,21],[2,102],[27,18],[14,-57],[15,-26],[-8,-53]],[[132719,61507],[-40,-36],[-63,19],[-75,-4],[-77,-26],[-45,22],[-28,36],[1,38],[27,95],[58,72],[24,13],[41,-20],[70,-55],[55,-64],[50,-50],[2,-40]],[[130591,61848],[9,-44],[-15,-37],[17,-71],[43,94],[42,12],[39,-34],[9,-36],[-15,-76],[-27,-36],[-35,-6],[-17,45],[-23,4],[-16,-98],[-28,-27],[-21,42],[25,44],[-14,131],[-19,-25],[-52,-118],[-41,-54],[-13,27],[-21,81],[9,104],[33,70],[28,-5],[80,22],[23,-9]],[[124776,61841],[-86,-71],[-20,4],[-16,25],[10,137],[11,41],[60,5],[36,-20],[19,-22],[7,-46],[-4,-28],[-17,-25]],[[135653,61886],[-21,-12],[-24,14],[-22,53],[8,41],[26,28],[22,-28],[7,-36],[17,-3],[-13,-57]],[[120234,61425],[-40,-3],[-85,83],[-20,37],[-5,50],[-82,193],[-11,44],[32,159],[84,38],[27,-27],[10,-71],[47,-129],[32,-123],[-4,-17],[35,-81],[24,-48],[2,-77],[-46,-28]],[[133946,61747],[-15,-19],[-53,18],[-27,43],[-30,105],[-3,38],[-16,46],[2,17],[97,49],[18,-18],[40,-2],[18,-35],[-12,-153],[-19,-89]],[[133904,62122],[-11,-35],[-20,-24],[-185,-43],[35,64],[18,-4],[47,18],[38,-7],[39,6],[-3,34],[42,-9]],[[135833,62210],[91,-27],[34,1],[32,-31],[40,15],[23,-10],[75,-106],[37,-70],[55,-60],[40,-20],[-30,-56],[-60,-28],[-24,-2],[-46,33],[-38,-6],[-33,41],[-6,63],[-33,143],[-44,-41],[-53,66],[-17,-9],[-22,22],[-19,45],[-2,37]],[[132352,62120],[-5,-15],[-57,29],[22,98],[22,-3],[18,-94],[0,-15]],[[133784,62295],[-24,-1],[-45,31],[26,26],[39,22],[29,-36],[-25,-42]],[[130010,62380],[19,-31],[-11,-36],[-15,9],[-54,-3],[-21,11],[33,50],[21,-7],[28,7]],[[138241,60846],[0,-135],[0,-283],[0,-424],[0,-283],[0,-425],[0,-283],[0,-283],[0,-485],[-13,-74],[-30,-111],[-5,-90],[24,-69],[24,-46],[0,-399],[1,-283],[0,-283],[0,-283],[0,-293]],[[138242,56314],[-22,24],[-60,77],[-54,89],[-34,82],[-40,75],[-167,223],[-42,73],[-5,39],[19,39],[-1,42],[-43,-54],[-62,-4],[-61,-13],[-56,-33],[-57,-11],[-29,16],[-17,41],[-13,86],[-24,-72],[-48,-39],[-64,-84],[-18,18],[-15,64],[21,72],[13,90],[29,52],[18,102],[19,73],[-17,41],[-29,14],[-19,24],[-23,70],[-59,84],[22,25],[52,9],[42,-16],[14,18],[-88,45],[-54,46],[-51,93],[-1,18],[36,16],[78,20],[-24,47],[-35,42],[-12,73],[-24,45],[-52,75],[-36,77],[-30,156],[-31,118],[7,43],[26,31],[-39,3],[-36,22],[23,83],[-37,-17],[-35,2],[-9,23],[5,91],[-7,56],[-33,26],[-42,55],[-20,-1],[-19,27],[-16,39],[-195,168],[-11,48],[-36,-31],[-46,46],[-26,-3],[-48,23],[-26,1],[-103,52],[-97,82],[-79,35],[-48,46],[-51,38],[-113,36],[-115,25],[-42,1],[-34,-8],[-34,1],[-190,178],[-32,81],[12,104],[-45,-32],[-24,-2],[-67,48],[-54,-25],[-28,41],[-9,43],[-14,20],[-48,-18],[-27,3],[-30,68],[-78,99],[-19,69],[2,118],[6,43],[36,69],[26,65],[-32,8],[-29,-30],[-17,-69],[-3,-124],[-23,-36],[-35,3],[10,-73],[-14,-69],[-41,-81],[-3,-37],[6,-40],[-9,-39],[-65,-114],[-71,-5],[-50,-18],[-23,27],[-34,75],[-20,84],[-15,87],[49,106],[-17,96],[-34,82],[-85,115],[-88,108],[-40,22],[-66,10],[-21,10],[-20,41],[-16,47],[42,20],[70,55],[40,-3],[109,-30],[64,-43],[74,91],[59,119],[37,26],[31,9],[32,-12],[63,-41],[49,-19],[36,-4],[18,-37],[21,-17],[5,56],[18,65],[53,25],[12,17],[-2,60],[-47,7],[25,52],[23,25],[8,57],[-91,-61],[-95,-25],[-57,7],[-57,0],[-113,-40],[-42,2],[-100,16],[-56,20],[-42,-16],[-42,-1],[-43,46],[-37,58],[-18,42],[-24,30],[-11,40],[-27,151],[-2,108],[-44,3],[-42,10],[-188,103],[-23,-25],[-53,-18],[-53,21],[3,29],[19,69],[46,46],[16,37],[28,110],[1,106],[17,15],[71,36],[148,54],[37,33],[31,52],[36,31],[35,58],[114,69],[50,5],[50,-8],[100,-40],[95,-66],[82,-86],[88,-63],[108,-11],[55,7],[53,-9],[22,-18],[37,-53],[-10,-35],[-7,-73],[19,-70],[31,-70],[26,-75],[5,-37],[-18,-115],[-31,-64],[-17,-70],[11,-86],[6,-86],[-1,-80],[5,-78],[17,-79],[72,-218],[42,-147],[14,82],[-4,92],[15,33],[21,17],[26,-18],[8,-37],[2,-81],[23,-158],[29,-8],[31,25],[6,-49],[-2,-89],[15,-72],[13,-27],[52,-58],[24,-11],[68,-14],[52,-5],[49,21],[61,111],[100,133],[29,63],[28,98],[9,21],[99,105],[26,109],[21,70],[17,36],[95,35],[100,18],[98,65],[43,55],[2,36],[-22,64],[-1,29],[23,27],[88,81],[102,83],[82,58],[45,-1],[41,-50],[45,-42],[232,-122],[37,-38],[32,-50],[47,-35],[52,-17],[47,-32],[44,-42],[99,-79],[133,-95],[34,-5],[123,4],[41,-43],[19,-6],[141,-18],[43,-43],[11,-69],[98,-2]],[[122521,62430],[40,-67],[10,-25],[-20,-37],[-26,-64],[-30,20],[-22,-52],[-15,83],[-31,53],[20,54],[26,-12],[48,47]],[[132467,62441],[49,-104],[-33,-99],[23,-55],[63,-3],[25,-46],[7,-34],[-16,-27],[-35,-25],[-40,36],[-19,46],[-69,-28],[-11,47],[13,67],[-38,30],[-34,69],[-2,28],[14,48],[-2,38],[20,3],[36,-52],[16,49],[15,21],[18,-9]],[[132330,62318],[-27,-18],[-29,1],[-7,74],[10,94],[27,16],[43,-20],[-16,-24],[12,-50],[-13,-73]],[[122203,62421],[-56,-24],[-63,17],[8,42],[30,49],[27,-2],[49,-32],[17,-29],[-12,-21]],[[133865,62660],[74,-29],[17,5],[108,-77],[18,-38],[-7,-26],[16,-34],[-35,-52],[-17,-6],[-17,19],[-35,11],[-40,-21],[-25,16],[-21,48],[-38,30],[-54,101],[-27,-4],[7,-39],[23,-26],[30,-78],[36,-4],[24,-33],[-2,-49],[-62,-20],[-22,37],[-5,66],[-35,-22],[-24,-27],[-24,69],[-67,4],[-45,36],[22,39],[3,37],[30,20],[29,-18],[30,26],[21,-6],[15,17],[60,11],[39,17]],[[119930,62294],[-26,-32],[-38,31],[13,45],[6,61],[23,49],[8,58],[-45,157],[23,5],[17,-17],[30,-104],[26,-63],[-11,-85],[-26,-105]],[[122652,62541],[12,-12],[16,36],[45,-74],[1,-26],[-16,-27],[-91,80],[-59,-26],[-40,24],[-11,16],[22,43],[19,101],[40,-26],[8,-40],[26,-18],[28,-51]],[[133320,62533],[-18,-2],[-16,41],[-43,45],[-26,78],[100,-129],[3,-33]],[[132418,62659],[-25,16],[10,75],[13,-39],[2,-52]],[[122613,62705],[-37,25],[-45,95],[20,-6],[50,-84],[12,-30]],[[122008,63041],[-48,-4],[-14,9],[6,65],[14,40],[22,-1],[25,-59],[-5,-50]],[[132403,63110],[-20,-5],[-4,28],[8,48],[26,-7],[1,-35],[-11,-29]],[[132383,63214],[-15,-23],[-22,38],[14,35],[15,-11],[8,-39]],[[122080,63126],[-9,-9],[-37,88],[18,64],[36,-64],[12,-38],[-20,-41]],[[122243,63221],[-38,20],[5,43],[23,-31],[10,-32]],[[122420,63244],[-27,-20],[-34,63],[10,34],[21,-33],[24,-12],[6,-32]],[[121898,63183],[-25,-7],[-84,30],[-28,3],[-73,33],[-37,41],[16,67],[6,71],[19,29],[36,-53],[63,-66],[71,-46],[25,-23],[11,-79]],[[122068,63393],[3,-38],[-29,9],[-20,45],[27,44],[19,-60]],[[121957,63269],[-12,-20],[-22,5],[-86,103],[-80,40],[11,73],[27,5],[90,-68],[30,-37],[42,-101]],[[122327,63485],[27,-30],[23,20],[-6,-51],[-26,-72],[-44,17],[-14,40],[10,46],[19,0],[11,30]],[[122569,63510],[2,-52],[25,-26],[6,-38],[-4,-62],[-34,-89],[-30,14],[-15,42],[-18,30],[15,27],[-10,39],[-63,-24],[-18,-1],[-1,61],[48,55],[29,10],[31,-11],[37,25]],[[121639,63353],[-20,-21],[-24,32],[-20,48],[-10,50],[-9,81],[-2,59],[20,33],[35,-35],[24,-59],[13,-18],[2,-55],[-8,-62],[-1,-53]],[[119509,63683],[93,-195],[38,-27],[51,-89],[12,-31],[-13,-62],[-11,-178],[-24,-45],[-59,22],[0,32],[-34,134],[-62,75],[-24,4],[-16,76],[-31,91],[-93,166],[71,-1],[34,40],[14,40],[54,-52]],[[121667,63679],[3,-89],[-32,23],[-25,36],[-40,26],[-48,9],[-36,23],[-25,41],[9,47],[184,-80],[10,-36]],[[131313,63356],[-82,-118],[-47,-118],[-32,-69],[-38,-60],[-64,-50],[-26,-13],[-50,-4],[-150,-48],[-49,-6],[-49,2],[-93,12],[-19,7],[-37,62],[-42,49],[-37,5],[-37,-5],[-271,-4],[-95,-9],[-94,-22],[-52,10],[-50,25],[-39,8],[-38,-2],[-178,-37],[-45,3],[-90,48],[-52,9],[-51,-12],[-48,-43],[-18,-28],[-50,-98],[-28,-71],[-39,-178],[-10,-74],[0,-78],[8,-86],[14,-87],[14,-65],[62,-152],[13,-22],[67,-43],[39,-54],[38,-153],[27,-78],[56,5],[51,-10],[51,-20],[49,47],[28,88],[27,66],[67,125],[38,58],[24,18],[25,-8],[45,-59],[50,-14],[50,8],[53,41],[35,57],[45,25],[108,0],[56,-9],[99,11],[-2,23],[-24,44],[82,41],[65,20],[48,-15],[42,-39],[16,-41],[8,-50],[-17,-127],[-8,-30],[-33,-15],[-32,17],[-32,66],[-44,24],[-63,-20],[-41,-45],[-36,-69],[-30,-77],[-64,-120],[-74,-105],[-36,-40],[-40,-26],[-129,-70],[-34,-51],[-26,-67],[-29,-22],[-34,-8],[-77,51],[-17,-31],[-3,-48],[26,-16],[40,-53],[32,-73],[65,-40],[19,-23],[34,-63],[53,-147],[18,-79],[29,-65],[91,-110],[5,-31],[-6,-36],[7,-33],[32,-64],[8,-40],[-35,-52],[-2,-75],[-22,-101],[-4,-64],[33,-52],[45,-32],[41,-78],[21,-21],[14,-28],[-2,-43],[19,-25],[17,-45],[26,-10],[21,32],[21,-8],[13,-31],[9,-83],[-1,-84],[-10,-30],[-24,2],[-42,34],[1,-49],[-108,-8],[-114,-51],[-40,-31],[-26,-56],[-2,-38],[10,-81],[-15,-28],[-52,-11],[-73,22],[-68,39],[-32,55],[-12,70],[23,207],[31,88],[2,45],[-34,54],[-53,21],[-44,45],[-172,254],[-9,24],[6,81],[57,139],[7,26],[6,109],[-1,90],[-6,90],[-27,57],[-48,17],[-49,3],[-48,-18],[-47,-45],[-87,-96],[-35,-55],[-3,-72],[20,-71],[26,-64],[13,-71],[20,-250],[-1,-28],[-23,-73],[-8,-162],[9,-230],[15,-141],[-6,-76],[-41,-164],[-12,-91],[-1,-37],[48,-171],[11,-68],[6,-71],[-51,35],[-101,-24],[-54,-1],[-19,-13],[-39,-46],[-43,-22],[-69,58],[-41,62],[-37,67],[-7,77],[13,79],[19,85],[37,140],[-2,95],[13,77],[21,75],[7,69],[5,271],[-5,24],[-51,161],[-6,71],[7,79],[-32,55],[-25,11],[-53,-11],[-106,-44],[-31,38],[-23,59],[-15,82],[-9,86],[4,81],[16,78],[-13,55],[-19,59],[-1,31],[31,49],[45,37],[58,80],[18,70],[1,86],[15,82],[30,76],[34,71],[12,72],[-17,116],[6,52],[-6,62],[0,61],[22,115],[64,234],[62,124],[25,33],[33,-58],[24,-68],[1,62],[-7,60],[-25,142],[-21,275],[6,26],[22,-4],[22,24],[12,43],[-24,102],[-1,36],[45,144],[37,53],[16,32],[9,88],[19,33],[24,23],[31,61],[18,76],[22,9],[19,-67],[22,-27],[43,-21],[37,25],[24,62],[42,64],[21,80],[27,72],[19,25],[49,25],[24,2],[55,-46],[32,-8],[32,3],[36,-28],[31,-76],[34,-26],[119,14],[103,-40],[142,-9],[48,-23],[47,-31],[57,-54],[21,-12],[23,3],[29,51],[46,13],[91,-9],[245,-63],[36,8],[148,120],[59,113],[53,32],[18,51],[11,62],[19,16],[44,18],[18,18],[31,76],[37,67],[18,20],[53,-11],[23,-29],[30,-99],[-6,-16],[-44,-70],[-39,-138],[-26,-68],[-34,-61]],[[121329,64110],[24,-57],[5,-37],[-17,-42],[-7,-65],[-50,-51],[-44,12],[-14,18],[-28,99],[3,84],[17,32],[41,-5],[41,46],[29,-34]],[[132538,63254],[31,-16],[33,5],[16,31],[4,40],[17,75],[38,51],[26,8],[19,21],[-1,111],[28,59],[87,81],[49,29],[65,9],[7,-31],[-8,-45],[13,-67],[-6,-181],[-15,-26],[-66,-63],[-73,-50],[-20,-21],[-18,-50],[1,-50],[59,-66],[92,-62],[19,-29],[13,-48],[3,-55],[22,-26],[31,-12],[21,-26],[15,-36],[-154,85],[-41,37],[-49,4],[-48,12],[-49,32],[-53,8],[-26,-24],[-15,-97],[11,-64],[-1,-39],[-10,-70],[38,-208],[49,-165],[70,-171],[35,-59],[39,-53],[-63,16],[-19,57],[-81,57],[-15,34],[-53,162],[-15,31],[-49,55],[-21,41],[-7,55],[5,58],[-2,80],[2,79],[10,97],[-40,66],[-26,74],[-8,85],[2,48],[25,81],[3,36],[-38,53],[-39,150],[-4,78],[51,150],[-1,73],[15,89],[26,100],[43,85],[73,119],[28,26],[31,17],[-3,-55],[-53,-121],[-7,-27],[-2,-51],[26,-31],[28,-61],[5,-82],[1,-87],[-6,-88],[-10,-30],[-44,-88],[-100,-104],[-8,-54],[18,-34],[24,-27]],[[119446,64109],[-3,-16],[-44,73],[-51,41],[21,11],[58,-22],[16,-37],[3,-50]],[[132849,64092],[-69,-12],[-15,33],[-18,150],[48,120],[61,70],[56,19],[38,-86],[-29,-174],[-32,-89],[-40,-31]],[[131536,64510],[-20,66],[13,41],[24,-30],[-18,-39],[1,-38]],[[119071,64307],[-27,-7],[-26,15],[-22,40],[-116,116],[-36,2],[-25,29],[-31,10],[-32,78],[-7,41],[24,20],[14,43],[39,-19],[44,-75],[45,-28],[33,-56],[103,-101],[18,-70],[2,-38]],[[124421,64686],[-21,-36],[-22,22],[35,74],[8,-60]],[[123075,64657],[-24,18],[-6,121],[30,-35],[32,-25],[-11,-51],[-21,-28]],[[123301,64862],[-1,-48],[-30,28],[-6,53],[10,17],[21,-9],[6,-41]],[[128199,64947],[-5,-22],[-37,56],[-10,40],[4,32],[39,3],[19,-20],[-10,-89]],[[131644,65056],[-10,-22],[-53,39],[3,62],[-27,93],[6,35],[32,-44],[18,-69],[31,-94]],[[132159,65287],[-7,-8],[-25,39],[11,31],[23,-31],[-2,-31]],[[132101,65361],[-25,38],[-10,79],[21,-29],[23,-58],[-9,-30]],[[128296,65578],[17,-92],[-80,-35],[-48,82],[10,33]],[[128195,65566],[41,-1],[60,13]],[[124175,65232],[-58,-25],[-35,36],[62,73],[-67,29],[-19,26],[-18,65],[1,42],[85,110],[20,12],[3,-46],[59,-115],[1,-105],[-34,-102]],[[128163,65567],[-33,-26],[-14,-40],[40,-61],[3,-40],[32,-37],[38,-56],[21,-75],[-27,-31],[-36,-6],[-52,66],[-6,-45],[-20,-26],[-70,7],[-50,0],[-2,-33],[78,-115],[16,-42],[-27,-85],[13,-35],[30,-20],[37,-42],[26,-4],[18,-24],[1,-41],[11,-63],[26,-19],[-25,-44],[47,-34],[16,-20],[8,-54],[35,-89],[64,-114],[14,-42],[0,-38],[-11,-33],[-36,-39],[-30,-51],[-3,-18],[-40,-23],[33,-41],[27,-71],[66,-115],[33,-43],[135,-155],[72,-68],[92,-156],[48,-36],[9,-43],[-40,-66],[-58,-33],[-96,-18],[-96,23],[-49,19],[-44,38],[-34,77],[-45,41],[17,-46],[11,-48],[-5,-51],[-18,-41],[-77,-71],[-82,-270],[-14,-73],[-25,-304],[0,-86],[37,-161],[3,-84],[8,-36],[-5,-30],[-18,-18],[-71,-49],[-50,-41],[-40,-58],[-33,-72],[-29,-53],[-39,-25],[-27,4],[-23,24],[-16,46],[-13,-23],[13,-39],[5,-42],[-8,-42],[-16,-34],[-45,-36],[-24,-32],[-4,-55],[-29,-56],[-63,-55],[-25,-50],[64,0],[3,-56],[9,-41],[-12,-90],[-47,-61],[45,-32],[47,-15],[16,-64],[-15,-147],[-34,-19],[-42,12],[-16,-21],[-4,-36],[29,17],[-1,-89],[-8,-88],[-10,-48],[-18,-40],[-27,-12],[-26,29],[-5,-34],[8,-29],[37,-70],[-39,-40],[-8,-35],[-39,-80],[-18,-59],[-8,-63],[-18,-50],[-301,-217],[-243,-183],[-18,13],[-11,27],[-9,285],[-30,145],[-4,82],[-35,-73],[-43,26],[-17,24],[-6,72],[-24,-38],[-25,5],[-22,19],[-19,33],[-53,-80],[-71,-43],[-39,1],[-30,24],[-2,121],[-9,35],[-36,8],[-79,-43],[-133,218],[-27,-177],[-92,-94],[-67,-54],[-68,20],[-68,35],[-68,-42],[-74,-103],[-21,-16],[-37,14],[6,78],[0,78],[-5,175],[-6,34],[-21,48],[-29,34],[-29,-59],[-57,1],[-54,28],[-47,-16],[-93,-69],[-49,-11],[-26,16],[-17,37],[10,34],[-18,5],[-47,-57],[-15,11],[-40,79],[-85,-29],[-32,-36],[-20,13],[-10,29],[-4,164],[-43,317],[-12,162],[-9,38],[-50,58],[2,84],[26,70],[5,81],[-7,88],[-16,87],[-19,65],[-28,56],[-37,62],[-45,47],[-99,52],[-51,-4],[-33,47],[6,53],[17,36],[24,9],[2,20],[-49,42],[-42,58],[-13,34],[-4,38],[0,88],[19,85],[13,93],[27,28],[-33,60],[-46,94],[-56,72],[-9,123],[-8,182],[5,83],[18,154],[31,49],[-9,24],[20,139],[9,40],[39,77],[46,69],[19,80],[26,71],[108,73]],[[124741,64075],[-39,-91],[14,-63],[28,-21],[8,-112],[70,-123],[55,-70],[41,-71],[32,-32],[86,-135],[36,-40],[27,-40],[19,-14],[47,12],[140,97],[70,23],[80,-5],[84,-33],[28,-1],[26,19],[70,-16],[17,9],[49,70],[67,21],[38,136],[8,70],[28,29],[97,55],[201,5],[20,-13],[7,-79],[27,-2],[125,-73],[43,-17],[24,4],[47,-50],[25,17],[34,35],[61,86],[42,15],[55,-2],[64,12],[48,21],[54,-34],[14,11],[38,104],[12,48],[11,93],[7,22],[42,30],[13,60],[-18,50],[-13,77],[12,61],[22,13],[57,57],[90,120],[1,31],[-22,31],[-21,15],[-1,63],[6,23],[-3,58],[14,38],[55,91],[28,-22],[62,28],[16,65],[-1,56],[13,107],[20,58],[2,40],[-11,91],[7,70],[3,143],[12,25],[13,74],[22,78],[45,42],[23,55],[26,11],[54,-40],[49,45],[43,5],[37,-6],[40,-32],[43,44],[32,-23],[47,12],[63,-11],[111,-2],[76,-26],[75,-74],[53,-16]],[[132143,65472],[-17,-15],[-28,5],[-3,36],[28,63],[19,67],[-20,17],[-19,43],[-1,50],[16,92],[24,-8],[22,-40],[10,-74],[14,-57],[-31,-77],[-14,-102]],[[119083,66304],[53,-6],[98,38],[54,-4],[51,-27],[45,-16],[112,20],[41,-21],[69,-115],[87,-112],[25,-71],[14,-81],[9,-18],[98,-154],[11,-64],[-14,-89],[29,-71],[95,-66],[56,-49],[20,-65],[31,-52],[39,-34],[122,-90],[160,-188],[90,-89],[75,-136],[28,-65],[22,-70],[45,-102],[78,-126],[20,-39],[45,-107],[28,-47],[35,-37],[35,-12],[56,-91],[31,-28],[-5,71],[-26,62],[5,72],[21,28],[26,8],[47,-26],[77,-108],[33,-63],[24,-87],[21,-90],[31,-45],[42,-16],[47,-6],[43,-28],[102,-125],[33,-58],[26,-69],[17,-82],[11,-85],[7,-20],[65,-103],[34,-44],[42,-21],[122,-24],[43,-35],[35,-60],[15,-60],[-25,-54],[-95,-81],[-102,-57],[99,20],[50,23],[46,37],[46,48],[72,66],[27,13],[31,-5],[29,-18],[43,-65],[40,-69],[31,-79],[19,-89],[-35,-46],[-50,-35],[-70,-85],[-7,-34],[14,-22],[-17,-63],[39,-39],[6,-33],[-34,-47],[4,-29],[40,-125],[19,-29],[62,-63],[95,-64],[52,-30],[59,-23],[70,11],[9,-25],[19,-122],[9,-78],[13,-166],[18,-68],[-1,-84],[22,-72],[47,-45],[49,-38],[23,-36],[0,-55],[-8,-43],[-16,-34],[-52,-72],[-9,-31],[-7,-79],[9,-36],[20,-2],[16,19],[62,106],[16,19],[47,24],[113,1],[47,-17],[42,-34],[38,-44],[136,-275],[63,-152],[6,-78],[-11,-30],[-57,-104],[-24,-142],[3,-81],[34,-71],[-1,-34],[-38,-168],[-4,-28],[24,-272],[2,-74],[-5,-93],[3,-151],[-30,-464],[-30,-99],[-30,1],[-25,12],[-18,27],[-24,62],[-74,85],[-20,-14],[-76,-106],[-20,-16],[-65,45],[-125,112],[-8,-36],[-1,-49],[25,-121],[3,-54],[-35,-8],[-52,71],[-48,78],[-55,106],[-40,50],[-36,56],[-101,214],[-26,32],[-158,151],[-31,35],[-40,63],[-44,55],[-94,88],[-164,221],[-72,128],[-79,205],[-26,52],[-133,154],[-73,94],[-30,53],[-71,187],[-21,63],[-26,55],[-43,45],[-38,54],[-75,168],[-23,68],[-18,73],[3,146],[-159,442],[-40,138],[-37,191],[-94,190],[-31,55],[-37,52],[-31,60],[-59,195],[-23,55],[-31,40],[-113,74],[-42,41],[-33,58],[-21,75],[-22,158],[-54,241],[-60,322],[-40,144],[-60,140],[-205,204],[-36,30],[-37,18],[-53,13],[-41,52],[-16,95],[-9,127],[-11,75],[-11,43],[-86,90],[-34,71],[-53,138],[-95,209],[-32,54],[-40,38],[-119,41],[-35,34],[-57,119],[-35,60],[-104,133],[-177,277],[-36,70],[-27,72],[-22,77],[-75,214],[18,89],[-10,74],[1,33],[23,19],[50,25],[52,-2],[48,-11],[47,-21],[45,-45],[80,-114],[45,-39],[51,-19],[104,-27]],[[118596,66710],[-8,-19],[-26,10],[-28,63],[10,12],[51,-21],[1,-45]],[[75624,100391],[-87,-88],[-35,15],[-21,26],[20,74],[36,30],[46,76],[36,21],[20,-10],[17,-86],[-32,-58]],[[117962,67420],[-26,-58],[-52,176],[-22,10],[0,84],[11,33],[60,37],[16,-21],[30,-162],[-17,-99]],[[117895,67785],[-41,-65],[-18,39],[7,28],[34,36],[18,-38]],[[117769,68148],[-33,0],[-24,60],[11,30],[18,8],[25,-48],[3,-50]],[[117810,68273],[-25,-23],[-10,103],[17,37],[16,-8],[-9,-37],[11,-72]],[[117639,68407],[-11,-21],[-21,39],[14,52],[18,-70]],[[117487,69025],[-19,-4],[-13,51],[32,25],[10,-47],[-10,-25]],[[117365,70012],[-13,-23],[-45,18],[4,72],[-11,70],[8,29],[33,51],[27,22],[19,-68],[8,-67],[-30,-104]],[[117447,70588],[-21,-14],[-21,17],[16,28],[3,58],[21,-32],[2,-57]],[[117586,71044],[20,-96],[-35,42],[-11,30],[26,24]],[[117457,71621],[-14,-45],[-2,97],[22,6],[-6,-58]],[[117459,70696],[-23,1],[-40,125],[-7,81],[-11,27],[14,40],[18,13],[10,45],[4,69],[23,71],[41,8],[-5,53],[-25,38],[1,128],[4,52],[12,37],[-8,77],[5,29],[24,40],[10,87],[-9,25],[22,133],[-2,89],[29,89],[45,40],[15,2],[6,-101],[-26,-45],[25,-59],[-14,-67],[-16,-46],[-23,-19],[-28,-83],[34,-64],[11,-218],[-25,-59],[-30,-12],[7,-145],[-5,-32],[-30,-71],[-5,-31],[-17,-30],[7,-36],[14,-16],[1,-30],[-14,-76],[-1,-88],[-18,-71]],[[111428,84866],[-14,-58],[3,-45]],[[111417,84763],[47,-85],[-20,-47]],[[111444,84631],[-13,-55],[14,-24],[-6,-79]],[[111439,84473],[20,-21],[47,26],[32,-2],[16,60],[14,8],[27,-16],[100,-207],[21,-29],[77,-80],[42,11]],[[111835,84223],[56,3],[56,-56]],[[111947,84170],[68,-74],[29,5],[20,-21],[5,-53]],[[112062,83947],[30,-5],[121,-68],[29,-10],[32,-24],[27,-38],[55,-48]],[[112404,83716],[-8,-39],[-25,-6],[-38,-37],[-59,-87],[-30,-26],[-28,-39],[-63,-118],[-37,-111],[-26,-103],[0,-74],[-10,-85],[-27,-49],[-17,-17],[-20,-74],[-14,-86],[8,-28],[67,-75],[83,-77],[26,-5],[17,42],[30,-11],[70,-76],[180,-143],[30,-65],[31,-45],[76,-80],[117,-103],[41,-33],[58,33],[53,-34],[76,-76],[71,-59],[77,11],[20,-10],[24,-107],[86,-36],[56,-16],[65,-29],[33,-22],[34,27],[6,24],[27,15],[46,-7],[84,-42],[35,-12],[29,39],[55,19],[29,21],[60,-45],[108,-55],[55,-35],[20,-66],[-1,-78],[14,-35],[108,-79],[36,-34],[57,-22],[17,-56],[43,-18],[119,69],[35,-8],[22,-32],[3,-49],[13,-50],[24,-25],[27,-3],[65,34],[53,-26],[102,-26],[76,-54],[68,-43],[26,5],[110,79],[9,-10],[22,-75],[34,-27],[51,-24],[55,44],[43,-13],[51,-4],[50,21],[43,5],[63,-37],[26,33],[46,205],[-2,57],[-20,85],[-51,109],[-3,34],[17,191],[19,111],[34,126],[1,66],[-17,19],[-1,43],[14,11],[58,14],[65,30],[45,32],[20,25]],[[115674,82224],[19,-1],[58,-37],[21,-22]],[[115772,82164],[19,-97],[-8,-70],[-35,-171],[7,-64],[54,-79],[-4,-13],[-52,-56],[-9,-29],[41,-77],[10,-72],[79,-67],[46,-34],[79,22],[61,-31],[31,-5],[27,-24],[1,-30],[66,-12],[77,15],[78,22],[35,64],[61,30],[92,-65],[26,-11],[51,-6],[50,4],[120,18],[66,-10],[60,54],[13,0],[26,-42],[67,-3],[73,35],[67,2],[23,13],[10,28],[-3,42],[-32,87],[17,80],[22,53],[-40,111],[-17,6],[-43,-14],[-47,3],[-36,35],[-27,45],[-7,37],[23,104]],[[116990,81992],[34,0],[85,-21],[30,0],[53,54],[72,16],[63,-4]],[[117327,82037],[28,15],[79,71],[10,54],[-19,25],[4,22]],[[117450,82261],[78,57],[66,69],[36,52],[38,131],[19,27],[47,17]],[[117906,82667],[61,51],[48,73]],[[118015,82791],[2,36],[41,11],[35,59],[43,59],[75,50]],[[118211,83006],[67,67],[23,-11],[24,-32],[16,-52],[85,-23],[14,4]],[[118440,82959],[63,-31],[57,-38]],[[118653,82950],[9,49],[84,75],[75,53],[65,39],[40,-45],[29,-76],[17,-19]],[[118972,83026],[44,11],[1,-36],[-30,-34],[-38,-30]],[[118932,82830],[9,-38],[79,82],[39,16],[13,-19],[4,-44],[45,-136]],[[119121,82691],[-80,-110],[-29,-56],[1,-20]],[[119013,82505],[-22,-48],[18,-29],[29,-13]],[[119038,82415],[17,26],[75,38],[22,-7]],[[119152,82472],[53,-58],[88,-20],[41,22],[30,-20],[76,-85],[-8,-92]],[[119432,82219],[16,-39],[2,-34]],[[119450,82146],[-17,-52],[-34,-12],[-76,-90]],[[119323,81992],[-37,-43]],[[119286,81949],[-28,-38],[-9,-40],[10,-102],[87,-193],[0,-33],[-28,-9],[-36,21],[-32,31],[-35,83]],[[119215,81669],[-29,24],[-28,6],[-169,-43],[-36,-12]],[[118953,81644],[-56,-30],[-39,-62],[-28,-57],[-72,-67],[-118,-135],[-68,-59],[-45,-21]],[[118527,81213],[-31,-31],[-30,-86],[-4,-88],[8,-109],[27,-104],[-17,-38],[-33,-51],[-10,-100]],[[118437,80606],[-20,-48],[-37,-72],[-32,-54],[-51,-42]],[[118297,80390],[-19,-35],[-30,-115],[6,-37],[46,-37],[13,-28]],[[118313,80138],[1,-34],[-19,-82],[-34,-114],[-39,-90]],[[118222,79818],[-50,-114]],[[118172,79704],[-36,-106],[-53,-243],[-19,-67],[-22,-3]],[[118042,79285],[-28,21],[-67,29],[-74,43]],[[117873,79378],[-21,-1],[-61,-22],[-17,10]],[[117774,79365],[-42,60],[-13,-7]],[[117719,79418],[-8,-29],[28,-173],[19,-64],[-3,-107],[-8,-131],[-11,-144]],[[117736,78770],[-7,-33]],[[117729,78737],[-18,-38],[-23,-11],[-21,15]],[[117667,78703],[-23,-27],[5,-63],[-36,-132],[11,-119],[25,-130]],[[117649,78232],[-5,-90],[-13,-18],[-22,3]],[[117609,78127],[-21,-44],[-24,-99],[-24,-11],[-24,15],[-36,66]],[[117480,78054],[-35,18],[-25,-83],[-24,-23],[-6,49]],[[117390,78015],[-13,252],[-9,80],[-8,111]],[[117348,78493],[-31,113],[-13,22]],[[117304,78628],[-9,98],[-3,120]],[[117292,78846],[0,57],[-19,117],[-19,133],[-25,-5],[-26,31],[-36,-30]],[[117167,79149],[-49,6],[3,-126],[-8,-24],[-55,-76],[-16,-51],[9,-127],[-10,-36]],[[117041,78715],[-24,-34],[-33,-18],[-28,9],[-18,29],[-18,75],[-15,41]],[[116905,78817],[-28,-2],[-5,-90]],[[116872,78725],[-19,25],[-26,188],[-38,144],[-2,55],[30,181],[45,69],[6,29]],[[116868,79416],[19,27],[57,-6],[20,11],[17,32],[24,26],[25,11]],[[117030,79517],[20,3],[32,-24],[13,14],[10,45],[22,67],[49,12]],[[117176,79634],[16,24],[7,60]],[[117199,79718],[34,133],[13,60]],[[117246,79911],[0,76],[10,10],[58,-32]],[[117314,79965],[25,0],[18,38],[-7,28],[-41,50],[-73,66],[-66,41],[-124,-6],[-122,-13],[-36,7],[-44,18],[-110,-3],[-133,-10],[-50,6]],[[116551,80187],[-75,-7],[-81,19],[-57,24]],[[116338,80223],[-50,27],[-59,24]],[[116201,80304],[-2,28],[12,128]],[[116211,80460],[-11,195],[10,70],[-48,160],[-17,30],[-22,1],[-15,-20],[-5,-38]],[[116103,80858],[8,-41],[-18,-47],[-36,-15],[-42,16],[-34,21],[-45,48],[-33,67],[-3,74],[-15,48],[-21,23]],[[115835,81053],[-12,-26],[25,-62],[-5,-24]],[[115831,80937],[-20,11],[-29,-6],[-28,19],[-35,8]],[[115719,80969],[0,43],[-27,54],[-43,61],[-44,37],[-20,-5],[-8,-57]],[[115592,81095],[21,-24],[2,-47]],[[115569,80946],[-42,-56],[-37,-63],[-23,-91],[-5,-48],[9,-32]],[[115489,80635],[45,-15],[48,-64],[38,-86],[22,-26],[39,-29],[76,-3]],[[115757,80412],[11,-24],[11,-63],[15,-23]],[[115826,80225],[-17,-20],[-62,-17],[-74,13]],[[115673,80201],[-51,0],[-36,-158],[-26,-55],[-14,0],[-39,27],[-17,-4],[-45,-141],[-10,-59],[24,-54],[29,-45]],[[115522,79694],[27,14],[22,-18]],[[115571,79690],[25,-45],[44,-30]],[[115640,79615],[62,-14],[35,-36],[4,-30],[-14,-159],[-34,-123],[-23,-106],[12,-50],[44,-76]],[[115726,79021],[18,-40],[-15,-100],[8,-26]],[[115737,78855],[75,-31],[13,-17],[-33,-101],[7,-71],[14,-66]],[[115813,78569],[12,-121],[-3,-27]],[[115878,78172],[0,-126],[-10,-109],[-34,1],[31,-73],[9,-52],[4,-73],[-36,-9],[-26,9],[-21,63],[-10,-58],[-39,-53],[-21,54],[-2,50],[21,189],[-14,35],[-21,8],[-7,38],[-33,-202],[15,-82],[-7,-38],[-60,-31],[-60,76],[-11,-19],[-11,-52],[-57,10],[-28,40],[18,69],[35,167],[7,74],[-47,55],[-40,33],[7,-37],[31,-21],[33,-42],[-24,-52],[-23,-32],[-44,-122],[-54,-69],[-62,-51],[-206,-76],[-43,-30],[-63,-95],[-41,-89],[-7,-91],[23,-98],[19,-154],[15,-31],[-22,-56],[-38,-59],[-32,-81],[3,-44],[-8,-29],[-108,-99],[-23,-57],[-30,-58],[-36,33],[8,-46],[-14,-47],[-27,-17],[-156,-72],[-120,-69],[-34,3],[27,39],[-2,79],[-41,20],[-91,-96],[-37,-95],[29,-14],[61,54],[28,-15],[2,-21],[-93,-83],[-195,-266],[-9,-53],[-26,-59],[-35,-56],[-63,-136],[-121,-201],[-34,-75],[-193,-155],[-36,-46],[-79,-151],[-82,-124],[-95,-103],[-165,-130],[-101,-124],[-31,-82],[-2,-30],[11,-40],[18,-37],[4,-29],[-14,-83],[-29,-73],[-51,-51],[-163,-109],[-155,25],[-50,-20],[-21,-51],[-46,-210],[-44,-56],[-22,-86],[-26,1],[-23,16],[-16,-11],[-19,70],[-59,20],[-112,-72],[-40,-57],[-83,-269],[-20,-174],[19,-192],[29,-154],[6,-69],[-4,-90],[-25,-95],[14,-107],[34,-140],[9,-59],[1,-61],[26,-139],[-18,25],[-14,59],[-33,75],[-40,-75],[22,-54],[76,-64],[22,-53],[-48,-467],[-38,-166],[-45,-109],[-24,-42],[-53,-171],[-38,-208],[-7,-80],[17,-90],[-19,-53],[-24,-40],[45,18],[16,-49],[6,-50],[0,-298],[-5,-310],[-35,-13],[-38,-3],[-59,21],[-61,-17],[-32,-34],[-27,-57],[2,-97],[-112,-246],[-25,-81],[-9,-79],[15,-41],[29,-42],[37,-17],[73,-17],[35,-23],[23,-41],[-85,44],[-101,9],[-240,-114],[-63,-80],[-36,-69],[-24,-159],[-4,-106],[-29,-88],[-124,-135],[-79,-42],[-30,-36],[-93,47],[-102,118],[-42,64],[-151,306],[-28,39],[-30,131],[-5,49],[-29,53],[-34,150],[-14,156],[-22,174],[19,-12],[25,-57],[12,-84],[2,-116],[19,-14],[17,11],[-49,269],[-42,67],[-11,4],[-12,43],[3,80],[-34,88],[-12,52],[-74,266],[-34,190],[-52,212],[-33,74],[-53,164],[-44,76],[-46,102],[-51,69],[-108,353],[-33,195],[-29,92],[-13,70],[-38,299],[-5,112],[-27,126],[-48,137],[-13,86],[0,33],[-30,133],[-7,61],[-44,107],[-24,42],[-58,134],[-21,33],[-39,87],[-28,162],[-36,63],[56,0],[-69,122],[27,60],[-43,-1],[-23,36],[-31,113],[-57,127],[-10,68],[-50,215],[-42,514],[-39,229],[3,66],[-47,198],[-23,133],[-9,113],[-12,74],[-12,146],[-18,47],[-2,28],[12,66],[34,104],[12,65],[-14,92],[-31,-97],[-28,-27],[-14,73],[0,97],[4,56],[75,-15],[-85,59],[-14,61],[19,48],[-32,41],[-12,125],[-13,51],[18,172],[74,338],[5,76],[-6,109],[-17,86],[-11,115],[-27,8],[-25,34],[-30,135],[27,44],[-32,18],[45,63],[40,48],[73,59],[-60,-13],[-128,7],[21,126],[23,42],[-12,17],[-41,10],[13,128],[33,27],[35,5],[43,19],[-46,21],[-49,10],[-57,-21],[-53,15],[-39,-17],[27,-39],[-26,-113],[-36,-29],[-29,-46],[-8,-39],[-17,-28],[58,-34],[37,-79],[-1,-90],[-77,-214],[-26,-48],[-191,-129],[-76,-70],[-160,-91],[-62,-17],[-69,18],[-101,70],[-154,177],[-40,58],[-123,228],[-89,120],[-68,112],[-83,106],[-79,143],[-17,65],[6,67],[29,36],[35,-15],[27,-56],[35,-35],[118,86],[45,-4],[32,43],[39,-9],[80,67],[74,17],[65,169],[49,108],[31,22],[-10,61],[-24,-9],[-41,-95],[-38,21],[-57,-16],[-116,-63],[-47,-57],[-33,-11],[-184,62],[-181,143],[-76,95],[-48,121],[-48,144],[16,41],[75,87],[64,68],[-58,-31],[-62,-42],[-31,-29],[-36,-62],[-46,-14],[-19,92],[-11,89],[50,50],[89,27],[101,-2],[2,210],[5,18],[26,12],[12,-31],[31,19],[37,-13],[28,9],[30,-12],[139,4],[50,-1],[68,-70],[38,-5],[55,4],[38,14],[33,67],[82,48],[87,39],[24,4],[8,-23],[-4,-38],[10,-36],[35,-23],[24,-6],[39,17],[35,57],[41,12],[27,27],[-31,61],[1,92],[31,48],[-11,48],[-31,94],[-31,119],[-33,99],[-43,88],[-21,63],[2,142],[-4,28],[-34,28],[-27,-15],[-78,0],[-26,15],[-71,142],[-9,55],[-1,57],[24,100],[7,92]],[[107737,81008],[3,87],[-18,53],[-24,21],[-63,5],[-76,29],[-98,80],[-16,43]],[[107445,81326],[10,105],[19,117],[13,36],[40,63],[27,33],[74,112],[66,154],[41,108],[43,59],[69,63],[36,-1],[35,-27],[26,-33],[8,-71],[19,-46],[20,-28],[26,-13],[33,3],[133,82],[46,16],[108,10],[75,32],[66,33],[8,59],[26,90],[78,118],[21,52],[49,192],[22,38],[122,101],[119,92],[20,42],[77,191],[45,130],[64,268],[37,26],[82,42],[65,42],[34,48],[20,42],[-4,41],[-18,50],[7,57],[48,59],[89,174],[53,86],[18,0],[55,47],[53,52],[-9,54],[-31,14],[-9,37],[32,195],[-5,40],[-31,132],[20,74],[34,49],[45,41],[143,98],[79,36],[30,52],[4,44],[-43,65],[-106,63],[-86,-3],[-44,25],[-12,17],[-6,62],[8,104],[-32,-3],[-45,13],[-56,-2],[-21,29],[11,35],[-12,91],[-35,20],[-41,39],[-53,79],[-4,37],[53,99],[14,85]],[[109460,85993],[-8,27],[-55,60],[-11,25],[0,37],[10,47],[33,35],[60,33],[15,42],[-2,31],[-128,19],[-20,40],[0,23],[33,58],[-3,31],[-21,36],[-49,26],[-7,37],[8,30],[64,161],[41,19],[105,59],[127,-34],[154,-49],[101,-5],[33,-26],[81,-45],[66,-24],[45,1],[66,39],[77,77],[56,-2],[123,62],[59,-14],[44,35],[37,79],[47,27],[47,37],[21,82],[161,134],[162,135]],[[111032,87378],[41,-33],[50,29],[16,-28],[-17,-100],[2,-39],[27,-80]],[[111187,86995],[53,-203],[19,-33]],[[111259,86759],[148,-62],[84,-89]],[[111522,86581],[14,-34],[0,-52],[-16,-27],[-77,-71],[-12,-51]],[[111456,86203],[8,-215],[27,-48]],[[111527,85881],[51,-67],[20,-16]],[[111612,85641],[24,-38],[2,-96],[12,-74],[-8,-96],[2,-44],[-22,-3]],[[111622,85290],[-18,-15],[-26,-61],[-30,-16],[-34,-5],[-63,77],[-8,21]],[[111436,85333],[-16,27],[-30,-13],[-94,-15],[-10,-26]],[[111298,85269],[11,-48],[6,-68]],[[111332,85094],[103,-179],[-7,-49]],[[123060,55357],[-13,-49],[-22,27],[-26,9],[5,37],[47,20],[9,-44]],[[73240,100201],[-34,5],[-15,28],[-88,12],[37,27],[79,-9],[17,-11],[4,-52]],[[74846,100324],[27,-50],[-65,-5],[-16,-16],[10,-73],[22,-29],[32,-139],[23,-44],[6,-130],[-3,-63],[39,-146],[8,-114],[-45,-84],[-29,-100],[-8,-84],[-55,-98],[-51,-39],[59,-69],[-48,-31],[-53,-9],[-59,17],[-37,-2],[-57,-29],[-22,56],[-16,-58],[-34,-19],[-57,4],[-97,-15],[-37,-17],[-27,-56],[-33,-27],[-89,-31],[-35,-48],[-45,-28],[-37,-9],[-63,54],[-35,-10],[15,-58],[-5,-37],[-56,-23],[-47,-39],[-63,-10],[-34,-36],[-208,-60],[-72,21],[-31,-4],[-87,-34],[-43,6],[54,84],[73,43],[-16,17],[-138,-30],[-48,-25],[-47,-7],[22,38],[61,53],[53,34],[23,31],[-144,-37],[-55,9],[-13,20],[-42,-10],[-17,49],[64,73],[37,32],[86,42],[-4,39],[-127,-7],[-60,6],[14,50],[63,45],[64,3],[54,-26],[71,8],[-30,29],[-5,59],[-23,19],[62,44],[56,56],[20,9],[110,13],[118,30],[118,40],[-61,23],[-29,30],[-46,-60],[-33,-24],[-95,-12],[-71,26],[-26,-22],[-62,-30],[-65,-7],[76,55],[96,92],[53,80],[-30,36],[70,104],[25,19],[45,3],[60,23],[29,32],[-90,30],[-142,-11],[-48,26],[-9,35],[-42,8],[-54,-9],[-22,15],[35,36],[-45,9],[-45,-7],[-38,11],[16,46],[-27,48],[50,9],[53,21],[10,29],[-24,17],[4,49],[67,38],[72,16],[0,52],[-73,8],[-71,-19],[24,98],[0,63],[-33,-14],[-19,78],[-49,-22],[1,42],[40,42],[74,-5],[46,22],[67,6],[106,-7],[73,-62],[62,54],[110,-17],[69,-22],[18,7],[-10,43],[-23,30],[29,40],[60,40],[80,32],[16,51],[25,42],[-139,-22],[-132,50],[21,35],[76,36],[69,74],[-14,53],[8,38],[29,25],[22,63],[59,9],[56,25],[88,3],[17,34],[41,6],[42,-60],[6,-34],[-34,-47],[22,-42],[46,37],[-23,102],[6,38],[25,23],[68,12],[-28,43],[51,-5],[40,-33],[83,-47],[-41,-42],[-50,-29],[-20,-31]],[[101724,81408],[-40,-84],[-60,-70],[-26,22],[-20,-1],[-44,-27],[-31,-4],[-57,-48],[-51,-24],[-48,7],[-7,45],[22,-7],[80,44],[99,71],[9,31],[-11,63],[64,-26],[72,51],[60,14],[29,-36],[-40,-21]],[[98572,89425],[14,-204],[10,-89],[15,-87],[24,-79],[28,-76],[39,-47],[87,-56],[42,-16],[110,-11],[110,-25],[64,-26],[36,-47],[54,-133],[84,-94],[170,-142],[82,-47],[277,-89],[184,5],[510,172],[170,43],[63,0],[-37,-35],[-64,-19],[38,-24],[87,0],[20,22],[0,71],[-28,160],[-16,112]],[[100745,88664],[119,-7],[47,14],[120,61],[26,3],[46,40],[44,153],[23,39],[75,87],[64,54],[68,49],[85,34],[113,-4],[90,-12],[77,-2],[29,15],[12,67],[50,40],[99,5],[45,-4],[57,-26],[74,-2],[49,4],[29,-25],[31,-63],[2,-70],[37,-29],[42,-13],[82,-16],[76,-31],[95,-55],[66,-81],[54,-21],[21,2],[50,34],[43,-25],[71,22],[52,-23],[131,-90],[26,-7],[19,-46],[10,-77],[37,-57],[46,-51],[54,-28],[113,-68],[49,-55],[111,-215],[9,-11],[158,4],[177,-1],[22,-49],[-4,-97],[6,-99],[16,-69],[0,-64],[-25,-85],[22,-23],[20,-53],[3,-74],[-10,-39],[12,-60]],[[103910,87464],[7,-74],[-15,-27],[-24,-113],[-38,-28],[3,-43],[18,-81],[-34,-120],[4,-46],[-52,-101],[-3,-39],[-64,-69],[-33,-26],[70,-138],[-106,-9],[-31,-61],[-37,-87],[18,-176],[-18,-90]],[[103575,86136],[11,-51],[27,-35],[35,-20],[65,-1],[44,-14],[4,-23],[-86,-127],[-68,-129],[7,-99],[58,-275],[51,-244],[-1,-57],[-16,-126],[-1,-77],[7,-99],[-5,-51],[12,-116],[15,-8],[347,-70],[41,-68],[25,-148],[-1,-111],[-12,-56],[-96,-162],[-196,-328],[-113,-188],[133,-220]],[[103862,83233],[72,-118],[9,-29],[-1,-46],[74,-181],[26,-94],[23,-55],[115,-171],[62,-38],[42,-9],[95,-44],[35,-36],[57,-89],[65,12],[18,-7],[2,-29],[-10,-139],[18,-140]],[[104564,82020],[13,-211],[-20,-98],[-5,-64]],[[104552,81647],[25,-25],[45,-7],[108,23],[38,-31],[22,-58],[-28,-32],[-4,-56],[8,-83],[-28,-29],[-8,-119],[-32,-23],[-132,8],[-65,-35],[-84,-23],[-24,-13],[-31,-36]],[[104362,81108],[-23,-44],[-9,-49],[-48,8],[-16,-35],[-95,-53],[-25,-54],[-24,-224],[-37,-52],[1,-53],[-14,-75],[-10,-208],[-12,-58],[-24,-5],[-52,-65],[-73,28],[-58,29],[-191,69],[-21,33],[-12,58],[-33,16],[-48,-87],[-161,50],[-55,-15],[-34,27],[-87,2],[-69,54],[-99,-37],[-78,-7],[-107,95],[-115,26],[-93,-8],[-48,8],[-78,34],[-37,36],[-60,-27],[-28,50],[-171,46],[-32,89],[-24,82],[-1,85],[-42,148],[-14,215],[-16,84],[-23,73],[-31,62],[-42,66],[-36,26],[-160,51],[-31,-7],[-72,-33],[-76,-73],[-125,-42],[-26,-32],[-31,-71],[-41,-41],[-56,10],[-60,-42],[-111,-117],[-59,-36],[-49,3],[-53,55],[-119,75],[-76,25],[-107,-17],[-50,12],[-85,88],[-23,64],[-49,43],[-154,95],[-126,127],[-23,47],[-15,71],[-55,86],[-122,70],[-69,75],[-82,16],[-75,-2],[-34,13],[-30,32],[-103,154],[-1,61],[-64,151],[-15,53],[-14,149],[-17,39],[-67,62],[-10,40],[14,53],[0,41],[-34,38],[-52,20],[-13,46],[10,89],[-8,56],[-46,89],[-67,91],[-68,135],[-26,34],[-17,88],[-25,105],[-38,7],[-185,-125],[-53,70],[-162,123],[-23,47],[41,23],[40,-22],[25,26],[-10,41],[-40,26],[-56,-2],[15,-39],[-51,-37],[-11,-49],[12,-143],[-38,-60],[-69,-5],[-33,-37],[-21,-9],[-48,53],[-16,50],[2,54],[-31,68],[-22,21],[-23,4],[-19,24],[-15,43],[-35,28],[-22,6],[-2,365],[-142,8],[0,278],[64,274],[-102,204],[-35,44],[-60,190],[-37,35],[-71,-5],[-237,256],[-83,66],[-34,14],[-80,6],[-9,12],[-5,77],[26,62],[2,38],[-71,167],[-46,16],[9,37],[-7,45],[-24,10],[-36,-15],[-28,58],[-87,167],[-32,31],[56,127],[6,43],[-6,49],[-39,90],[26,83],[1,33],[59,-5],[11,27],[-1,95],[8,34],[104,161],[92,69],[9,48],[-18,87],[-44,71],[-15,37],[-2,33],[10,58],[18,45],[62,27],[35,23],[5,20],[-46,33],[-97,10],[-71,-9],[-23,10],[-34,64],[-69,56],[-53,5],[-52,237],[-14,28],[-41,9],[-25,43],[-10,38],[1,93],[-22,55],[-44,42],[-35,185],[-15,54]],[[96804,88524],[-2,52],[15,51],[-34,47],[-61,54],[2,87],[-14,68],[19,37],[-12,24],[-71,59],[-26,29],[-49,6],[-5,19],[24,92],[27,49],[22,101],[30,44],[-8,27],[-48,12],[-13,32],[3,96],[-17,99],[6,95],[-44,68],[-11,42],[12,43],[3,62],[-43,51],[-9,64],[-15,47],[43,19],[91,-7],[24,19],[28,170],[26,45],[31,26],[84,-82],[15,0]],[[97831,83552],[-15,-28],[-30,-96],[-29,-104],[-31,-95],[-58,-132],[-33,-61],[-70,-114],[-75,-23],[-175,23],[-194,25],[-337,43],[-12,6],[-254,290],[-284,324],[-251,286],[-128,155],[-209,253],[-211,173],[-135,111],[-200,165],[-142,117],[-47,31],[-147,39],[-139,33],[-241,58]],[[94384,85031],[64,83],[-20,74],[-89,-31],[-25,116],[32,14],[-61,308],[-61,304]],[[94224,85899],[213,173],[128,103],[240,195],[244,198],[106,38],[22,29],[90,237],[2,180],[7,181],[14,97],[23,86],[22,63],[0,118],[-46,183],[7,139],[14,77],[25,56],[27,35],[160,58],[128,159],[114,163],[4,34]],[[95768,88501],[42,14],[77,84],[46,78],[14,7],[41,-26],[29,-7],[67,30],[74,-35],[18,-2],[90,-49],[69,-12],[69,-2],[77,63],[43,-9],[34,-36],[7,-33],[-3,-105],[19,-47],[15,-4],[52,56],[88,82],[54,-8],[15,-21],[14,-49],[35,-185],[44,-42],[22,-55],[-1,-93],[10,-38],[25,-43],[41,-9],[14,-28],[52,-237],[53,-5],[69,-56],[34,-64],[23,-10],[71,9],[97,-10],[46,-33],[-5,-20],[-35,-23],[-62,-27],[-18,-45],[-10,-58],[2,-33],[15,-37],[44,-71],[18,-87],[-9,-48],[-92,-69],[-104,-161],[-8,-34],[1,-95],[-11,-27],[-59,5],[-1,-33],[-26,-83],[39,-90],[6,-49],[-6,-43],[-56,-127],[32,-31],[87,-167],[28,-58],[36,15],[24,-10],[7,-45],[-9,-37],[46,-16],[71,-167],[-2,-38],[-26,-62],[5,-77],[9,-12],[80,-6],[34,-14],[83,-66],[237,-256],[71,5],[37,-35],[60,-190],[35,-44],[102,-204],[-64,-274],[0,-278],[142,-8],[2,-365],[22,-6],[35,-28],[15,-43],[19,-24],[23,-4],[22,-21],[31,-68],[-2,-54],[16,-50],[48,-53],[-40,-16],[-43,12],[-91,59],[-30,1],[-39,-22],[-1,-20],[-97,66],[-35,13],[-68,1],[-79,-12],[-47,-27],[-32,-28]],[[70830,108776],[50,-3],[114,40],[83,54],[49,16],[113,-6],[-84,-29],[-53,-33],[-88,-127],[96,-45],[66,9],[28,-42],[-6,-65],[-65,-81],[36,-17],[142,24],[23,-14],[31,-99],[58,10],[100,-18],[40,-21],[24,-37],[50,11],[23,-43],[-22,-62],[-59,-30],[67,-82],[-46,-31],[75,-35],[5,-52],[-35,-36],[-54,-2],[-22,-39],[-11,-66],[-42,-55],[-79,-48],[-70,7],[-73,-62],[21,-37],[-6,-31],[-50,-64],[-104,-46],[-100,-59],[-101,1],[-103,-27],[-146,-57],[-98,-45],[-75,-52],[-100,-84],[-74,-35],[-126,-17],[-70,-23],[-232,-43],[-79,-23],[-42,-54],[15,-32],[-29,-38],[-57,-27],[-28,0],[-68,-30],[-151,-33],[-257,25],[-102,25],[-126,41],[-75,11],[-106,2],[-87,57],[-40,35],[1,31],[55,23],[-22,28],[-77,-49],[-57,21],[-2,20],[-64,7],[-111,58],[-7,40],[-40,-7],[-87,-53],[-499,-15],[-37,22],[-22,105],[40,40],[61,-60],[138,34],[57,22],[96,93],[48,81],[50,32],[-18,21],[-131,-58],[-44,0],[35,56],[-13,40],[23,44],[106,58],[12,34],[-107,-59],[-78,-20],[-77,37],[-16,42],[38,47],[-101,56],[-109,-4],[-270,24],[-56,-10],[-92,-37],[-81,-4],[-63,79],[8,23],[62,19],[73,-8],[90,23],[73,8],[50,31],[39,-25],[90,26],[48,30],[45,-14],[161,13],[180,3],[39,39],[9,57],[-112,-43],[-155,24],[-47,26],[15,21],[140,81],[104,39],[27,33],[-69,32],[-132,-9],[-34,38],[-109,23],[-73,-14],[-38,23],[-95,-32],[-208,-46],[-127,-43],[-51,27],[-89,29],[-99,9],[-9,17],[58,53],[80,5],[76,-37],[-17,95],[-40,48],[34,15],[53,-11],[126,-60],[62,10],[68,47],[-110,1],[-58,13],[-55,47],[39,25],[93,-4],[-104,82],[13,50],[107,-30],[-45,47],[28,49],[33,12],[65,-10],[103,-56],[18,-72],[88,0],[40,39],[44,-27],[30,-66],[47,2],[8,63],[-10,50],[-155,57],[-61,42],[37,27],[152,4],[-59,31],[-17,25],[-123,-9],[-64,23],[99,58],[72,-6],[70,9],[58,-11],[110,-85],[87,-35],[148,-117],[94,-44],[-39,-49],[47,-12],[36,-43],[-30,-94],[-36,-30],[-66,-12],[62,-32],[44,-40],[-29,-72],[51,-11],[36,-26],[29,-81],[24,-3],[26,89],[21,11],[25,84],[86,65],[39,-3],[44,-52],[40,-6],[42,103],[5,76],[-12,84],[7,59],[28,36],[36,11],[78,-36],[66,-83],[121,-105],[44,-8],[24,33],[-9,118],[31,64],[81,15],[87,44],[64,16],[29,-11],[79,-67],[60,-75],[77,-55],[49,-103],[19,9],[8,56],[-21,52],[-72,131],[8,45],[51,2],[117,-12],[38,-21],[102,-99],[50,20],[135,141],[39,-4],[59,-37],[76,-8],[114,44],[24,58],[-48,117],[20,24],[105,29],[114,-6],[117,-108],[4,-51],[69,-40]],[[92938,85456],[-23,-5],[-53,-32],[-17,-29],[-9,-171]],[[92836,85219],[-29,5],[-35,34],[-7,29],[-35,14]],[[92730,85301],[-48,15],[-55,-52],[-24,-85],[-23,-123],[6,-51],[8,-122],[-15,-50],[12,-17],[31,15],[31,-15],[31,-28],[-19,-29],[-51,-43],[-36,-49],[-34,-143],[3,-20]],[[92547,84504],[12,-12],[83,11],[76,39],[57,42],[18,-3]],[[92793,84581],[-22,-173],[17,-68],[-24,-105],[-27,-85],[-63,-234],[-15,-72],[4,-25],[-7,-132],[4,-37],[-32,-114],[-41,-294]],[[92587,83242],[-30,-55]],[[92274,84393],[44,59],[1,48],[75,114],[-18,46],[84,211],[54,210],[51,290],[36,148],[31,98],[13,81]],[[92645,85698],[50,6],[81,-11],[35,30],[17,92],[41,17],[46,40],[58,69]],[[92973,85941],[-14,-71],[0,-36],[22,-60],[8,-39],[-16,-33],[6,-63],[13,-34],[-48,-116],[-6,-33]],[[82715,88256],[-21,-8],[-27,24],[3,44],[33,-15],[12,-45]],[[84233,89275],[-43,-110],[-104,-193],[-19,-94],[-39,-133],[7,-87],[49,-63],[-24,-24],[49,-78],[3,-59],[-47,-54],[-19,-30],[-16,-74],[3,-68],[-47,4],[-49,21],[-49,-9],[-118,61],[-58,121],[-46,52],[-50,39],[-103,-2],[-45,25],[-92,82],[-97,66],[-82,91],[-56,19],[-50,44],[-97,1],[-25,16],[-49,52],[-31,73],[-9,32],[22,83],[27,79],[50,39],[30,52],[50,-83],[23,-20],[22,4],[41,30],[3,33],[44,41],[57,1],[26,-8],[14,-37],[46,-17],[82,-71],[46,-14],[64,30],[49,12],[102,-17],[55,18],[39,2],[56,28],[44,45],[47,15],[58,-3],[59,-10],[25,10],[20,30],[24,14],[27,-9],[68,51],[30,4],[28,-20],[-25,-33]],[[81176,89865],[-24,-69],[-27,49],[3,53],[48,-33]],[[83528,91005],[-37,13],[8,26],[39,-15],[-10,-24]],[[81093,91238],[-14,-32],[-20,3],[26,70],[33,2],[-25,-43]],[[81673,91128],[21,-44],[49,-183],[5,-39],[-22,-69],[-48,-92],[7,-76],[18,-47],[2,-52],[-9,-65],[-30,-397],[-23,-131],[-33,-18],[-42,19],[-54,35],[-49,-14],[-40,29],[-15,-136],[-24,-56],[-36,-35],[-35,-2],[-66,12],[-23,26],[-18,46],[-58,122],[-8,192],[21,57],[6,59],[-5,51],[39,7],[3,75],[-22,41],[-38,13],[0,84],[20,28],[7,37],[0,113],[-27,41],[-10,63],[-14,41],[-70,105],[-4,83],[10,69],[18,26],[28,-35],[68,-16],[44,11],[55,31],[53,38],[76,112],[47,23],[24,29],[8,40],[20,10],[24,-38],[29,-4],[45,-32],[36,-67],[33,-26],[-27,-59],[34,-35]],[[82002,92504],[14,-27],[-8,-34],[-87,-23],[-33,3],[-2,48],[100,8],[16,25]],[[83305,94839],[12,8],[79,-32],[-7,-31],[-56,-65],[10,-46],[45,-8],[-19,-89],[40,-29]],[[83409,94547],[72,-78]],[[83481,94469],[19,-46],[-42,-22],[3,31],[-67,100],[-30,0],[-40,-42],[-112,42],[-75,-93],[-55,-18],[-61,-47],[-114,-57],[-28,4],[26,55],[-60,-38],[-34,-32],[-21,-142],[26,-24],[46,-117],[56,-50],[-26,-85],[-34,-33],[-45,24],[-13,-77],[24,-204],[39,-143],[39,-62],[88,-98],[93,-51],[168,-163],[91,-52],[24,-28],[56,-127],[48,-146],[52,-229],[37,-112],[74,-128],[154,-182],[140,-134],[131,-82],[101,-15],[241,18],[42,-7],[44,-23],[11,-57],[-16,-39],[-51,-40],[-52,-55],[-5,-76],[48,-54],[232,-141],[238,-118],[74,-61],[86,-94],[207,-129],[35,-63],[125,-135],[57,-104],[11,-81],[-27,-82],[-13,-58],[-21,-57],[-54,21],[-60,59],[-92,239],[-168,24],[-94,59],[-18,61],[-15,11],[-64,8],[-45,-39],[-52,-92],[-59,-131],[-60,-194],[-4,-78],[33,-75],[98,-43],[75,-67],[50,-70],[3,-170],[22,-97],[-32,-54],[-64,14],[-84,-35],[-60,-62],[-25,-60],[7,-154],[-12,-59],[-114,-111],[-59,-113],[-38,-101],[-143,-2],[-34,66],[-1,99],[24,60],[53,28],[36,126],[-12,91],[41,69],[96,32],[6,127],[-44,57],[-16,81],[-20,149],[-73,190],[-39,170],[-31,83],[-46,44],[-84,-1],[-41,13],[-148,117],[-10,50],[25,47],[-34,124],[-29,52],[-32,26],[-67,-16],[-23,-13],[-42,5],[-51,-24],[52,90],[-14,22],[-52,37],[-89,10],[-25,-10],[2,40],[-81,181],[-55,73],[-27,13],[-50,-15],[-83,32],[-49,7],[-68,-31],[-28,40],[-75,75],[-94,42],[-184,239],[-56,89],[-115,99],[-73,143],[-60,52],[-87,42],[-67,-23],[-16,19],[35,27],[-8,55],[-99,142],[-58,46],[-40,91],[-28,15],[-56,7],[8,120],[-5,45],[-32,116],[-55,99],[-32,236],[-25,67],[-60,50],[-136,57],[-191,151],[-40,3],[-114,59],[-71,10],[-92,-53],[-112,-146],[-91,-151],[-33,-30],[-117,-51],[-103,-25]],[[80548,94640],[47,-32],[86,23]],[[80681,94631],[90,45],[24,-4],[84,-35],[88,66],[9,25],[48,76],[-19,66],[65,59],[29,44],[31,29],[22,0],[9,-30],[-2,-83],[8,-26],[79,-94],[77,-24]],[[81326,94734],[-21,-45],[46,-54],[9,-39],[21,-23],[30,11],[10,21],[-21,75],[10,47],[78,117]],[[81488,94844],[21,47],[4,131],[19,15],[53,-10],[23,-93],[20,-29],[48,-7],[64,35],[42,15],[23,-4],[44,-87],[45,11],[-27,117],[-19,43],[21,81],[47,15],[33,-39],[68,-10],[3,48],[-17,32],[3,48],[20,91],[12,-7],[90,-6],[31,-37],[72,-17],[42,20],[47,96],[47,28],[82,5],[40,10],[107,-8]],[[82596,95378],[84,38],[86,29],[13,-15],[-30,-53],[10,-34],[49,-69],[52,-93],[39,-21],[95,-18],[46,-15],[156,-37],[79,-10],[60,-2],[90,-24],[-9,-40],[-50,-33],[-70,-68],[-10,-39],[19,-35]],[[82910,93292],[-27,-5],[-19,-33],[12,-29],[26,5],[12,36],[-4,26]],[[44249,75515],[52,-25],[100,-22],[49,-60],[40,-33],[151,-73],[51,-127],[9,-39],[-39,-24],[-96,-9],[-43,24],[-19,19],[-46,9],[-8,25],[-26,-2],[-39,-87],[-39,4],[-15,32],[-38,-39],[-20,-90],[-32,45],[-35,37],[-45,16],[-89,2],[-42,13],[-48,98],[-36,20],[-35,88],[-12,12],[-95,19],[-20,48],[6,44],[32,53],[15,15],[53,-2],[50,16],[45,38],[182,-39],[82,-6]],[[76655,96941],[4,-35],[-35,5],[-62,-8],[6,63],[60,-8],[27,-17]],[[94384,85031],[-64,-82],[-15,-9],[-252,-102],[-260,-106],[-351,-142],[224,-337],[216,-354],[-133,-105],[-16,-25],[-62,-210],[-9,-11],[-307,-90],[-22,-24],[-99,-234],[-175,-205],[-23,-7],[-181,45],[-277,68]],[[92578,83101],[13,91],[-4,50]],[[92793,84581],[21,135],[25,65],[-11,152],[1,83],[16,94],[-9,109]],[[92938,85456],[46,-15],[27,-33],[44,-92],[69,-27],[28,-27],[38,-49],[46,-18],[146,-30],[215,190],[318,282],[309,262]],[[130882,79569],[-27,-10],[-62,15],[-1,21],[32,21],[8,46],[70,-36],[-3,-27],[-17,-30]],[[131057,79733],[-26,-110],[-21,-16],[-21,9],[-22,61],[15,24],[39,-8],[39,90],[10,-15],[-13,-35]],[[131552,79891],[-36,-18],[-39,11],[6,97],[22,-47],[47,-43]],[[138764,81196],[-8,-1],[-27,74],[23,-8],[18,-43],[-6,-22]],[[132764,81221],[-41,-32],[-15,-38],[-39,-13],[-37,-54],[-36,-10],[1,-43],[15,-36],[-24,-7],[-25,-44],[5,-72],[-32,-38],[-32,-2],[0,73],[31,76],[1,87],[29,11],[56,74],[9,27],[-24,26],[7,43],[38,-10],[22,-25],[22,17],[10,31],[41,59],[17,59],[33,-48],[-9,-64],[-23,-47]],[[133083,81964],[-18,-12],[-24,17],[-8,80],[11,39],[19,8],[28,-97],[-8,-35]],[[133223,82232],[-39,-3],[-17,64],[28,-12],[28,-49]],[[133279,82304],[-37,-56],[-40,51],[-47,34],[35,23],[2,21],[31,32],[61,25],[19,2],[38,54],[40,29],[9,-59],[-30,-15],[-55,-78],[-32,-31],[6,-32]],[[133783,83734],[-50,-15],[-27,17],[-24,86],[47,53],[75,-68],[-21,-73]],[[133928,83828],[-38,-8],[-1,41],[30,91],[3,67],[28,84],[21,25],[10,-26],[-11,-103],[-28,-79],[-14,-92]],[[133393,84705],[-5,43],[35,48],[3,-31],[-33,-60]],[[133679,85239],[-39,-3],[-21,30],[53,45],[41,-8],[-34,-64]],[[133550,85104],[-34,-25],[-19,35],[25,33],[-16,38],[18,85],[-5,37],[68,14],[12,-35],[1,-105],[-50,-77]],[[132940,85490],[16,-19],[44,13],[14,-9],[24,-77],[-45,-11],[-17,-35],[-40,29],[-3,24],[7,85]],[[137753,85679],[-28,16],[14,35],[28,-25],[-14,-26]],[[133117,85529],[-11,-8],[-14,63],[39,148],[19,-90],[0,-39],[-18,-12],[-15,-62]],[[133296,85795],[-31,-32],[-2,38],[20,70],[46,21],[-26,-54],[-7,-43]],[[133426,86162],[-29,-29],[-23,22],[19,83],[25,-21],[8,-55]],[[134020,86060],[58,-21],[47,8],[71,47],[26,-10],[23,-24],[12,-34],[-6,-36],[-41,-77],[-33,-82],[77,-15],[77,1],[-18,-50],[-3,-45],[44,-49],[-17,-51],[43,-38],[-14,-53],[-106,-174],[-30,-89],[-22,-97],[-20,-72],[-25,-154],[-20,-82],[7,-73],[-7,-75],[-53,-186],[-37,4],[-48,22],[-29,-3],[-16,-41],[28,-85],[-85,-100],[-93,-68],[-1,31],[32,67],[14,79],[-7,79],[-28,100],[-2,36],[32,18],[8,47],[-9,24],[-52,9],[-43,-108],[-12,-72],[16,-75],[34,-59],[-24,-62],[-120,61],[-47,18],[-23,81],[63,29],[12,105],[-23,66],[-35,51],[10,56],[-6,70],[-1,98],[9,17],[45,20],[33,52],[28,60],[43,105],[34,114],[-33,5],[-28,21],[31,54],[-10,68],[-46,83],[-25,99],[-62,59],[-48,-51],[20,-64],[1,-112],[45,10],[20,-9],[15,-68],[-9,-37],[-18,-19],[-23,1],[-40,50],[-42,16],[-45,-35],[-42,-69],[-19,16],[8,56],[-18,39],[-41,65],[-12,84],[7,45],[43,-52],[21,-65],[32,-28],[39,0],[-41,119],[-42,42],[-58,72],[-36,35],[13,74],[21,15],[79,-30],[6,37],[-14,43],[41,33],[65,26],[42,54],[46,-1],[39,26],[32,69],[19,70],[80,57],[20,8],[53,-7],[49,-32],[45,-138],[50,-49]],[[134490,86298],[21,-25],[50,10],[-8,-30],[-22,-23],[-40,17],[-25,1],[-1,52],[25,-2]],[[134625,86417],[-13,-28],[-38,8],[27,54],[24,-34]],[[133204,86422],[-28,-28],[-12,43],[12,123],[53,-25],[-1,-38],[-24,-75]],[[135391,86515],[60,-29],[61,8],[-1,-127],[8,-43],[18,-38],[-9,-56],[27,-19],[-81,-63],[-74,-84],[-58,-118],[-16,-64],[-11,-70],[-24,28],[-72,112],[-45,31],[-72,17],[-23,-4],[-149,-105],[-20,-77],[-41,-116],[-19,-38],[-37,-31],[-16,-99],[-47,-61],[-28,-2],[-48,17],[-22,-9],[29,97],[-46,12],[-46,-2],[-1,63],[-28,36],[21,47],[0,38],[12,21],[3,57],[-46,27],[4,69],[-57,-10],[-84,-53],[12,38],[75,52],[33,30],[74,84],[46,40],[24,70],[7,43],[16,37],[14,60],[23,20],[42,52],[23,-5],[27,-64],[35,-48],[26,4],[67,30],[53,-3],[47,31],[19,37],[8,45],[-18,76],[45,-4],[51,48],[53,29],[55,7],[62,-27],[59,-44]],[[135389,86673],[-43,-42],[-6,31],[-24,36],[62,10],[11,-35]],[[135639,86537],[-47,-59],[-40,4],[-20,26],[-7,33],[38,52],[33,73],[55,50],[19,-1],[-43,-101],[12,-77]],[[133250,86583],[-9,-34],[-42,45],[27,106],[-2,59],[54,55],[13,-25],[-3,-76],[-40,-87],[2,-43]],[[137587,86842],[-4,-32],[-34,28],[1,38],[24,1],[13,-35]],[[134966,87871],[-20,-26],[-36,8],[-22,38],[7,42],[39,33],[37,-66],[-5,-29]],[[137108,88998],[-26,22],[16,95],[-32,3],[2,58],[24,58],[67,90],[21,-22],[-25,-128],[53,-7],[-34,-112],[-66,-57]],[[138351,91470],[17,-13],[80,35],[-15,-107],[-9,-108],[6,-179],[7,-80],[14,-78],[35,-56],[44,-40],[65,-127],[35,-156],[25,-76],[18,-79],[6,-73],[-5,-50],[6,-40],[-7,-127],[-29,-146],[-4,-75],[-25,-15],[-16,-34],[-27,-29],[-36,-17],[-16,-76],[-33,-71],[-12,-91],[-4,-94],[-18,-65],[-42,-17],[-49,1],[-63,-30],[-14,-18],[-49,-114],[-15,-67],[0,-72],[14,-88],[18,-86],[15,-161],[-15,-246],[-15,-78],[-31,-53],[-45,-55],[-26,-80],[-44,-160],[-4,-82],[-20,-107],[8,-62],[13,-58],[59,-148],[50,-85],[-101,-44],[-79,-105],[-19,-80],[2,-89],[-10,-32],[-34,-46],[-67,-41],[-43,-41],[-60,-96],[-33,10],[-19,30],[19,37],[-6,43],[9,111],[-10,45],[34,34],[16,54],[62,82],[4,31],[-47,58],[-66,-7],[-21,-32],[-8,-82],[-50,-59],[6,-63],[34,-47],[-30,-71],[-16,-5],[-31,70],[-39,39],[-48,-1],[-49,-14],[-37,-47],[-20,-79],[2,-98],[-15,-81],[-45,-98],[-37,-49],[-25,-6],[-33,55],[18,123],[0,69],[43,35],[-35,49],[-44,20],[-61,-26],[-30,-69],[-69,-97],[-41,-80],[-28,-95],[-90,31],[-50,7],[-49,-3],[-89,12],[-97,-20],[-110,-37],[6,27],[91,57],[-5,48],[-77,-9],[-28,5],[-11,33],[-31,1],[4,-65],[-31,8],[6,51],[-13,74],[-1,46],[19,39],[-20,17],[-46,-25],[-23,-27],[-49,-136],[-19,-77],[36,-62],[97,-87],[17,-22],[0,-37],[-12,-39],[-26,-17],[-107,-29],[-92,-56],[-27,-58],[-84,-220],[-68,-151],[-95,-52],[-104,46],[-25,53],[-21,65],[-39,59],[-35,63],[-20,76],[3,123],[-15,73],[14,20],[57,45],[52,83],[11,32],[2,49],[-26,26],[-68,-1],[-67,-15],[-48,21],[-82,72],[-67,4],[-48,-11],[-48,-22],[-49,-7],[-17,-11],[-58,-73],[-45,-45],[-40,-23],[-86,-6],[-87,-39],[-13,2],[-47,-33],[-54,-29],[-29,-29],[-53,19],[-106,-52],[-50,-6],[-53,28],[-49,46],[-47,-19],[-32,-69],[-15,-135],[-19,-61],[-5,-74],[-24,12],[-141,132],[-10,5],[-114,-23],[-29,-11],[-37,-27],[-39,-12],[-35,19],[-34,32],[-32,-10],[-34,-21],[-13,199],[7,26],[43,65],[55,10],[56,-10],[40,14],[33,40],[36,55],[40,46],[107,77],[46,58],[44,63],[40,46],[44,39],[66,94],[88,104],[34,78],[21,21],[76,44],[101,33],[48,-2],[47,-68],[51,27],[52,10],[53,-11],[52,-1],[152,31],[53,27],[52,35],[183,24],[126,59],[39,-18],[2,-43],[-16,-47],[15,-29],[26,-17],[118,-6],[34,-10],[49,32],[47,40],[49,53],[34,59],[-32,74],[-7,81],[27,88],[38,74],[45,45],[42,52],[85,146],[61,119],[22,145],[-13,172],[54,128],[51,22],[102,59],[53,17],[7,-59],[-80,-108],[-46,-44],[-52,-33],[-11,-38],[41,-63],[10,-47],[-1,-85],[47,-44],[52,-15],[42,12],[74,126],[172,79],[84,60],[47,16],[44,31],[98,121],[36,56],[33,62],[27,71],[21,78],[28,48],[156,115],[50,62],[16,31],[20,88],[13,91],[19,71],[26,67],[34,69],[38,63],[23,65],[33,156],[15,86],[42,90],[16,74],[7,112],[-4,86],[-26,74],[-21,21],[-58,-5],[-30,30],[6,26],[30,5],[36,39],[27,80],[17,86],[2,38],[-22,69],[-17,84],[-1,45],[19,51],[27,42],[50,13],[46,40],[12,26],[27,111],[-12,108],[31,48],[23,-14],[53,2],[28,-12],[5,-27],[17,-183],[30,-44],[22,3],[33,66],[25,8],[79,-41],[28,29],[18,45],[16,80],[-8,71],[-19,27],[-56,-35],[-116,-38],[1,80],[25,120],[13,37],[20,18],[73,-34],[53,-58]],[[137598,91963],[-20,2],[-10,53],[8,27],[55,25],[-23,-96],[-10,-11]],[[138379,94078],[-30,-5],[-34,30],[-5,36],[25,29],[25,-11],[34,-57],[-15,-22]],[[138283,94227],[-16,-44],[-23,66],[-4,70],[36,-11],[7,-81]],[[139468,93381],[78,-1],[42,-10],[164,-106],[49,-13],[51,-2],[36,8],[32,30],[99,128],[103,117],[12,-5],[-8,-68],[-46,-107],[-51,-144],[-11,-73],[17,-71],[32,-59],[25,-80],[30,-112],[63,-15],[41,33],[39,43],[33,5],[-11,-37],[-43,-36],[-38,-69],[-14,-13],[-68,2],[-94,-61],[-43,-40],[-46,-22],[-49,-5],[-76,-32],[-50,-2],[-92,28],[-45,-8],[-98,-64],[-89,-93],[-78,-104],[-66,-125],[-26,-65],[-16,-73],[-7,-95],[-34,-58],[-53,15],[-89,67],[-171,97],[-181,149],[-102,75],[-192,-23],[-181,-142],[-16,12],[-69,98],[-34,38],[-40,11],[-59,-8],[-41,-50],[-15,-37],[-15,-70],[5,-28],[39,-65],[48,-48],[21,-9],[67,-1],[77,-97],[84,-90],[19,-30],[-31,-32],[-34,-15],[-79,16],[-67,38],[-29,-33],[-45,-67],[-25,-73],[-20,-33],[-49,-44],[-53,-23],[-27,8],[-21,27],[-18,72],[12,83],[27,75],[10,76],[-22,107],[-70,86],[-26,61],[-6,76],[17,136],[13,47],[54,24],[90,77],[45,50],[44,61],[24,67],[-38,81],[-8,49],[5,46],[41,24],[42,-18],[85,-67],[154,-25],[68,14],[33,56],[17,70],[-6,92],[-1,90],[21,74],[67,119],[19,70],[7,170],[43,152],[9,163],[-27,156],[-59,150],[5,70],[25,64],[7,37],[47,12],[69,63],[34,-50],[67,-78],[105,-140],[124,-213],[78,-103],[82,-94],[92,-97],[96,-83],[61,-39],[45,-62],[28,-10]],[[110709,87109],[-122,384]],[[110587,87493],[49,-33],[91,-43],[153,-53],[54,-3],[66,6],[32,11],[-162,-135],[-161,-134]],[[99139,93894],[-39,-17],[-43,74],[19,9],[25,-47],[38,-19]],[[99193,93976],[-24,35],[17,37],[24,5],[-17,-77]],[[100214,94282],[-36,11],[-19,32],[24,38],[22,-7],[14,-40],[-5,-34]],[[112070,92039],[-59,79],[-65,76],[-51,18],[-88,12],[-47,1],[-26,18],[-26,45],[-71,82],[-17,65],[-93,5],[-68,17],[-115,52],[-64,4],[-152,-9],[-95,26],[-125,3],[-119,9],[-77,40],[-48,1],[-128,-30],[-60,-7],[-248,7],[-62,3],[-46,-71]],[[110120,92485],[-20,-11],[-116,15],[-137,47],[-99,52],[-84,54],[-112,86],[-66,42],[-10,-24],[-43,-12],[-59,5],[-27,-44]],[[109347,92695],[-73,-31],[-45,-28],[-24,-31],[-46,-209],[-12,-76],[30,-129],[-35,8],[-41,33],[-14,26],[-40,15],[-144,24],[-44,54],[-91,27],[-115,56],[-49,2],[-149,43],[-35,-2],[-58,-28],[-37,-8],[-40,11],[-71,-35],[-38,-46],[-32,-56],[-31,-36],[-9,-53],[-21,-27],[-26,-56],[0,-32],[24,-31]],[[108081,92080],[-38,-29],[-41,-9],[-21,-18],[-44,-79],[-31,-11],[-22,28],[-32,-1],[-37,-35],[-45,-57],[-56,-87],[-58,-47],[-74,-39],[-54,-18],[-42,-30],[-71,-60],[-14,-36],[-93,-46],[-38,-40],[-9,-72],[-24,-41],[-59,-57],[-49,-57],[-66,-115],[-11,-33],[-1,-44],[16,-38],[3,-35],[-12,-26],[-33,-10],[-35,7],[-53,26],[-56,46],[-49,60],[28,153],[-40,47],[-36,70],[-56,-23],[-31,17],[-396,-32],[-45,26],[-18,64],[-29,155],[-27,172],[-17,177],[-211,7],[3,216],[15,110],[21,360],[-128,-79],[-132,302],[-97,75],[-43,53],[-72,108],[-42,45],[-41,-14],[-158,-99],[-329,33],[-204,20],[-322,-64],[-167,-32],[-35,1],[-260,350],[-97,121],[-28,56],[-13,70],[-25,31],[-174,135],[-179,137],[-178,137],[-179,138],[-297,229],[-49,33],[-46,-9],[-210,-72],[-208,-71],[-296,-109],[-351,-129],[0,-480],[0,-319],[0,-320],[0,-479],[0,-320],[0,-320],[1,-319]],[[101634,91435],[-60,-8],[-69,-23],[-58,-11],[-47,24],[-50,78],[-30,34],[-64,126],[-64,119],[-21,76],[-21,32],[-76,79],[-175,140],[-65,39],[-84,-4],[-104,-23],[-187,-63],[-84,-41],[-80,-60],[-74,-81],[-88,-114]],[[100133,91754],[-11,73],[-3,150],[24,95],[44,133],[8,88],[-18,143],[-20,31],[-49,14],[-70,-18],[-38,48],[-47,8],[-49,-20],[-27,13],[-24,28],[-25,66],[-37,69],[-36,38],[-44,9],[-94,2],[-1,39],[9,87],[-5,89],[-27,65],[-43,51],[-32,70],[-54,145],[-47,163],[-21,25],[-42,26],[-92,20],[-60,22],[-24,20],[-10,36],[5,84],[14,38],[48,30],[105,6],[90,-3],[81,-69],[55,-20],[86,28],[72,-7],[-22,32],[-27,17],[-52,12],[-39,63],[-69,71],[-16,30],[-5,47],[13,41],[49,41],[41,57],[19,75],[53,90],[53,-11],[83,39],[136,-7],[163,11],[45,-4],[104,-38],[60,-17],[72,-9],[52,17],[-49,53],[-107,62],[-27,53],[49,144],[66,131],[40,156],[-11,155],[-19,43],[6,50],[39,84],[-43,131],[-15,25],[-51,43],[-103,2],[-83,23],[-28,-18],[-34,-48],[-65,-39],[-45,0],[-32,44],[-28,-5],[-87,27],[-40,58],[-155,56],[-49,9],[-111,-49],[-80,-62],[-23,-9],[-42,-39],[-70,-2],[-49,-59],[-88,-68],[-44,-44],[-49,-27],[-54,-16],[-56,-3],[-20,-16],[-63,-5],[-39,-13],[6,-76],[-32,19],[-35,-36],[11,-34]],[[98728,94926],[-20,8],[-97,65],[-151,87],[-29,27],[-14,31],[4,59],[37,22],[74,-39],[46,-3],[29,14],[4,34],[-55,126],[-51,101],[-69,153],[-120,188],[-46,82],[-25,26],[-219,31],[-51,10],[-82,-44],[-39,36],[-31,58],[-16,50],[11,125],[-23,73],[-26,36],[-65,27],[-83,62],[-22,113],[40,161],[65,114],[47,48],[22,42],[2,71],[-28,36],[-43,36],[-22,44],[9,94],[28,136],[45,108],[59,60],[51,43],[20,40],[0,111],[14,39],[44,59],[32,31],[41,8],[46,-25],[62,-67],[91,-131],[71,-113],[47,-51],[43,-21],[140,70],[36,59],[-11,60],[-30,90],[-21,87],[-19,185],[66,-13],[45,30],[63,57],[114,88],[43,122],[32,39],[72,13],[68,21],[47,45],[74,40],[61,25],[116,150],[104,118],[16,38],[38,-7],[121,-50],[46,-37],[13,-68],[19,-15],[114,6],[72,49],[100,82],[91,26],[48,-20],[71,-117],[32,-22],[68,12],[40,-3],[35,-19],[59,-2],[81,15],[48,-2],[47,-27],[37,-31],[67,-103],[38,-26],[77,-37],[37,-32],[110,-140],[53,-93],[22,-137],[20,-30],[34,7],[17,29],[6,47],[-5,85],[-14,68],[-26,46],[12,31],[29,15],[37,-9],[61,-40],[63,-50],[78,-87],[71,-55],[78,-44],[62,-13],[48,13],[57,36],[52,41],[40,92],[150,122],[55,-27],[99,45],[70,13],[72,-20],[58,-62],[55,-40],[50,4],[42,21],[47,85],[32,31],[89,-16],[62,9],[73,-13],[81,-64],[115,-163],[30,-30],[124,-32],[121,-19],[31,-27],[-11,-49],[11,-13],[98,35],[26,27],[62,151],[21,28],[46,-4],[32,-44],[44,-46],[95,-24],[56,-4],[131,22],[122,55],[70,60],[33,90],[20,102],[32,65],[-13,66],[-83,82],[-150,35],[-18,31],[-219,79],[-33,85],[-46,43],[-92,39],[-16,30],[15,30],[73,33],[82,71],[32,14],[74,3],[115,91],[24,39],[-6,40],[-68,122],[-20,74],[12,48],[61,80],[44,78],[69,12],[83,5],[58,-12],[80,-7],[109,-18],[47,43],[-1,36],[-28,36],[-107,46],[-46,38],[-36,-5],[-60,12],[-54,25],[-49,8],[-15,35],[10,48],[18,28],[36,14],[38,-7],[42,20],[16,27],[-26,40],[-28,4],[-70,-25],[-64,22],[-51,27],[2,25],[55,67],[0,90],[14,57],[37,38],[44,21],[114,-38],[143,-34],[24,6],[24,34],[197,7],[58,39],[190,25],[50,46],[96,8],[133,43],[54,-6],[67,22],[26,25],[59,31],[112,25],[28,-15],[54,-7],[68,11],[51,20],[70,-39],[29,16],[35,106],[60,34],[43,41],[99,-3],[89,51],[18,-23],[115,5],[143,34],[86,16],[148,35],[69,28],[187,30],[59,50],[105,11],[59,30],[15,35],[-17,75],[42,18],[96,13],[81,72],[56,35],[57,21],[223,-22],[106,-35],[104,-75],[86,-26],[82,35],[49,49],[109,16],[74,-124],[35,-123],[84,-245],[-12,-42],[-3,-122],[-43,-72],[18,-33],[105,-38],[146,14],[91,30],[50,-11],[27,18],[17,54],[34,11],[36,-37],[51,-104],[-2,-48],[9,-62],[19,-16],[60,38],[-10,66],[25,30],[126,-19],[88,-88],[48,-16],[65,4],[54,25],[48,48],[41,-18],[1,-32],[-16,-46],[-53,-43],[-67,-40],[-40,-72],[-9,-76],[33,-64],[4,-36],[42,10],[75,75],[38,18],[55,12],[90,-6],[61,-24],[61,-62],[22,12],[21,99],[165,124],[94,1],[72,47],[68,53],[9,68],[17,15],[94,12],[97,43],[112,63],[54,37],[99,16],[113,71],[34,4],[-21,-84],[-37,-97],[-21,-26],[-100,4],[0,-26],[39,-84],[27,-35],[240,-190],[246,-203],[67,-76],[146,-236],[119,-203],[106,-196],[184,-341],[138,-261],[107,-232],[116,-268],[34,-11],[9,57],[58,50],[54,5],[33,19],[13,35],[-14,97],[12,33],[68,28],[19,37],[37,11],[61,-8],[24,-27],[14,-37],[69,1],[6,-31],[-27,-92],[-3,-32],[23,-15],[84,14],[30,-7],[27,-93],[-9,-36],[15,-22],[73,-1],[50,18],[79,1],[70,-38],[99,21],[72,-10],[51,31],[35,38],[29,47],[111,2],[32,45],[29,19],[85,4],[96,-41],[59,-34],[98,-78],[25,-68],[41,-50],[33,-59],[8,-58],[28,-104],[28,-34],[33,0],[89,-25],[100,-78],[37,-2],[28,-19],[4,-35],[-10,-41],[11,-40],[32,-51],[58,-109],[9,-34],[26,-11],[34,17],[242,-51],[18,-36],[89,0],[48,61],[54,36],[83,91],[28,6],[23,-20],[1,-37],[-50,-60],[5,-33],[38,-3],[42,-49],[60,-115],[51,-47],[70,-27],[28,-48],[11,-43]],[[95180,61160],[-7,34],[47,51],[19,-11],[-5,-33],[-54,-41]],[[92739,66399],[42,33],[20,4],[119,-52],[20,-45],[3,-85],[-9,-36],[-10,-108],[3,-99],[68,-131],[25,-81],[19,-25],[26,-12],[319,-14],[35,-13]],[[93527,65626],[98,-100],[242,-254],[61,-68],[60,-21],[97,-10],[68,-3],[62,-29],[93,-26],[69,-14],[42,-16],[115,-15],[20,9],[51,75],[57,123],[22,68],[74,67],[222,160],[102,67],[46,-58],[64,-93]],[[95192,65488],[28,-45],[23,-20],[35,-14],[65,2],[47,12],[111,11],[63,-1],[-117,-270],[-117,-270],[-156,-251],[-6,-19],[1,-413],[1,-587],[1,-587],[2,-587],[1,-392],[116,-243],[118,-245],[6,-29],[-2,-57],[-63,-120],[-51,-54],[-69,-26],[-48,22],[-19,-73],[-27,22],[14,-118],[-10,-53],[-34,-46],[-3,-39],[-72,-103],[-104,-11],[-54,-51],[-24,-42],[-18,-90],[6,-140],[-29,-107],[-5,-54],[-53,-70],[-24,-64],[-18,-65],[-15,-28],[-18,-146],[-37,-144],[-41,-111],[-63,-227],[-49,-102],[-39,12],[-25,-40],[-3,-19]],[[94417,59396],[-14,11],[-230,268],[-132,154],[-238,276],[-17,27],[-13,53],[-24,30],[-21,3],[-6,36],[7,37],[25,71],[2,41],[-12,123],[-7,17],[-135,122],[-184,166],[-183,166],[-276,248],[-183,166],[-184,166],[-184,165],[-218,197],[-31,27],[-33,0]],[[92126,61966],[-1,118],[10,302],[-1,265],[10,133],[40,84],[19,62],[13,85],[21,70],[48,56],[9,31],[51,95],[30,122],[24,41],[49,59],[59,31],[7,30],[-8,75],[49,122],[29,61],[5,53],[0,99],[-6,139],[-21,117],[-14,131],[10,43],[-17,76],[-22,21],[-31,138],[-8,17],[-58,58],[-29,136],[-32,30],[-21,173],[18,135],[-1,31],[-20,29],[-54,29],[-44,55],[9,40],[-23,13],[-67,231],[174,279],[214,340],[168,266],[-1,-55],[26,-33]],[[108810,90086],[-122,-34],[-55,-90],[-35,37],[-45,64],[-23,-1],[-79,-52],[-35,21],[3,81]],[[108419,90112],[-26,17],[-54,4],[-19,18],[6,52],[-20,35],[-28,-4],[-57,-44],[-67,-15],[-22,-14],[-26,-56],[-89,-12],[-28,13],[-54,105],[-46,16],[-47,-4],[-64,-27],[-31,28],[-15,-18],[-78,-3],[-79,2],[-75,12],[-58,-29],[-72,-5],[-7,98],[-22,67],[21,109],[13,35],[53,-41],[19,7],[-2,49]],[[107445,90507],[-1,21],[27,54],[101,42],[87,31],[45,-21],[163,-86],[28,-69],[36,17]],[[107931,90496],[11,17],[8,59],[41,33],[90,40],[5,35],[58,23],[91,11],[31,-8],[62,-46],[47,5],[27,-45]],[[108402,90620],[66,57],[47,17],[25,57],[51,68],[44,11],[9,-21],[44,-15],[14,18]],[[108702,90812],[7,24],[-15,40],[13,41],[72,-38],[48,22],[30,37],[11,29],[146,94],[8,30]],[[109022,91091],[-61,22],[-53,-12],[-16,13],[-74,6],[-16,9],[-50,69],[-61,43]],[[108691,91241],[-76,-13],[-10,103],[-21,9],[-27,-15],[-75,21],[-9,81],[-28,71],[-40,28],[-1,43],[-14,18],[-27,-26],[7,-48],[-5,-47]],[[108365,91466],[-26,-41],[-20,-1],[-34,24],[-5,-143],[-48,11],[-32,-8],[-49,9],[-36,23],[-71,27],[-34,26],[-21,96],[-19,34],[-19,8],[-75,-33],[-78,58],[-39,12],[-8,40],[118,107],[46,74],[30,31],[74,33],[17,67],[81,41],[85,59],[-7,30],[-76,55],[-38,-25],[-24,31],[0,32],[26,56],[21,27],[9,53],[31,36],[32,56],[38,46],[71,35],[40,-11],[37,8],[58,28],[35,2],[149,-43],[49,-2],[115,-56],[91,-27],[44,-54],[144,-24],[40,-15],[14,-26],[41,-33],[35,-8],[-30,129],[12,76],[46,209],[24,31],[45,28],[73,31]],[[109347,92695],[27,44],[59,-5],[43,12],[10,24],[66,-42],[112,-86],[84,-54],[99,-52],[137,-47],[116,-15],[20,11]],[[110120,92485],[46,71],[62,-3],[248,-7],[60,7],[128,30],[48,-1],[77,-40],[119,-9],[125,-3],[95,-26],[152,9],[64,-4],[115,-52],[68,-17],[93,-5],[17,-65],[71,-82],[26,-45],[26,-18],[47,-1],[88,-12],[51,-18],[65,-76],[59,-79],[16,-91],[-13,-19],[-132,-12],[-30,-13],[-32,-68],[-177,-82],[-26,1],[-63,-44],[-175,-111],[-163,-131],[-7,-63],[-96,-143],[-72,-17],[-61,3],[-101,-44],[-128,15],[-44,-2],[-84,20],[-34,-11],[-36,-29],[-50,-114],[-29,-53],[-8,-56],[-19,-59],[-42,-89],[-36,-42],[-34,-26],[-26,55],[-43,-38],[-41,8],[-25,-11],[-57,-48],[-84,2],[-9,16],[-17,131],[-14,61],[-27,16],[-121,-103],[-56,-18],[-46,-3],[-59,31],[-28,-46],[17,-58],[-69,-24],[-116,-120],[-73,-32],[-68,-12],[-40,-22],[-23,-45],[-44,-124],[20,-60],[14,-75],[-18,-51],[-22,-31],[-82,-28],[-69,8],[-36,-12],[-66,-47],[-54,-9],[-102,-1],[-100,17]],[[107959,90413],[-72,19],[-3,-13],[30,-51],[23,-2],[38,26],[-16,21]],[[108439,90479],[5,32],[-47,-19],[11,-35],[20,-8],[11,30]],[[108192,90439],[-11,61],[21,48],[-42,8],[-22,14],[-24,48],[-21,-11],[0,-66],[29,-43],[-13,-57],[62,-8],[21,6]],[[122023,70126],[-16,-27],[-25,56],[41,-29]],[[121905,70521],[-22,3],[6,65],[13,5],[3,-73]],[[122500,69912],[-71,91],[-140,31],[-15,40],[-13,8],[-13,-52],[-77,-50],[-32,30],[-24,37],[4,45],[22,36],[38,26],[18,92],[-29,117],[-53,61],[-28,-43],[-24,-75],[-25,-38],[-35,-9],[-51,3],[-20,112],[-7,95],[7,109],[8,65],[-50,89],[-2,85],[-24,44],[-7,-47]],[[121857,70814],[-85,267],[-13,116],[22,118],[-55,100],[-56,70],[-4,110],[-12,130],[-43,124],[-13,66],[-5,176],[7,14],[91,18],[8,28],[-9,23],[32,40],[47,87],[62,148],[16,57],[52,81],[73,56],[100,32],[49,27],[23,2],[61,-32],[33,-9],[71,-3],[31,4],[75,22],[79,-18],[70,15],[88,26],[43,-17],[39,-26],[6,-53],[22,-44],[17,0],[47,83]],[[122826,72652],[10,-60],[17,-41],[45,-64],[18,-1],[60,34],[90,-50],[39,-75],[32,-36],[70,-3],[25,89],[-13,55],[-39,94],[-11,56],[12,10],[68,10],[11,11],[15,62],[56,-15],[39,42],[24,44],[27,-51],[75,-82],[35,-51],[51,9],[40,68],[34,-6],[42,57],[23,51],[14,15],[37,-26],[15,5],[22,71],[23,28]],[[123832,72902],[7,-38],[-37,-139],[-37,-57],[-14,-169],[13,-74],[12,-19],[60,-236],[28,-92],[5,-58],[-26,-148],[-30,-136],[3,-68],[27,-158],[5,-115],[-8,-76],[-13,-47],[-26,-48],[-23,-24],[-27,41],[-22,1],[-52,-31],[-47,-70],[-51,-69],[-72,-17],[-28,-51],[-29,-7],[-57,-2],[-37,-12],[-1,-147],[-5,-35],[-26,-4],[-102,48],[-42,5],[-34,-73],[-32,-13],[-7,-52],[8,-51],[3,-79],[-2,-55],[15,-34],[90,-116],[26,-29],[3,-17],[-16,-63],[14,-89],[-28,2],[-69,61],[-36,-15],[-43,88],[-24,3],[-53,-17],[-81,-20],[-31,-67],[-67,37],[-49,10],[-10,-18],[16,-106],[-6,-22],[-27,-28],[-57,-89],[-15,-9],[-55,1],[-54,-5],[-41,-65],[-18,-8]],[[10786,59817],[-25,28],[27,12],[-2,-40]],[[152684,62105],[-13,20],[-11,88],[9,3],[15,-111]],[[9759,63955],[71,-80],[-30,-6],[-75,39],[-68,80],[20,17],[10,-29],[31,-26],[19,56],[12,12],[-33,55],[51,-39],[-8,-79]],[[8898,65395],[35,-59],[-20,0],[-29,29],[14,30]],[[50592,74585],[-21,-15],[-19,20],[5,49],[17,1],[18,-22],[0,-33]],[[50550,74667],[-11,-11],[-20,43],[-31,12],[-28,25],[5,33],[14,11],[35,-34],[36,-79]],[[131932,85796],[-19,-16],[-18,10],[-32,67],[15,39],[59,65],[154,62],[28,2],[61,-26],[13,-50],[-25,-71],[-71,-49],[-55,-23],[-110,-10]],[[132116,86576],[7,-33],[-35,6],[-18,32],[2,27],[21,4],[23,-36]],[[131892,86594],[-27,-10],[-27,30],[7,32],[44,61],[9,22],[42,-13],[15,-33],[-19,-50],[-44,-39]],[[131866,86845],[-25,-11],[-27,86],[-19,20],[30,33],[39,-59],[2,-69]],[[132681,86898],[-4,-69],[-31,-3],[-18,44],[-29,-22],[-16,55],[-2,42],[36,33],[52,-30],[12,-50]],[[132972,86892],[-40,-43],[-55,58],[-13,32],[41,47],[36,53],[23,3],[8,-150]],[[131971,88072],[-5,-45],[-29,30],[-8,98],[29,-28],[13,-55]],[[133909,88758],[-20,-20],[-23,20],[9,41],[29,12],[13,-17],[-8,-36]],[[132016,88938],[-2,-92],[-40,13],[-23,104],[18,35],[35,-28],[12,-32]],[[132814,89556],[106,-312],[100,-201],[86,-146],[122,-281],[36,-150],[3,-93],[21,-127],[-18,-74],[5,-115],[-7,-60],[-15,-43],[-1,-84],[6,-105],[23,-32],[49,31],[-4,-72],[-33,-181],[-29,-132],[-39,-115],[-49,-105],[-59,-41],[-42,-15],[-79,-5],[-66,18],[-57,-13],[-23,-22],[-17,-37],[13,-59],[-2,-43],[-24,4],[-48,25],[-53,3],[-25,12],[-25,62],[-26,-2],[-45,-37],[-68,-8],[-24,-20],[-8,-25],[10,-32],[34,-43],[-12,-43],[-35,-21],[-29,53],[-18,51],[-52,-11],[-6,-56],[39,-82],[-34,-51],[-9,-36],[-24,-26],[-65,58],[9,41],[29,39],[3,41],[-9,24],[-93,-103],[-58,-117],[-30,8],[-31,43],[-62,-76],[-12,-60],[-22,-2],[-10,26],[-1,54],[-11,45],[-64,67],[-29,58],[15,33],[54,-18],[43,2],[-9,28],[38,60],[-19,9],[-30,-18],[-25,9],[-10,76],[-30,78],[-16,76],[30,44],[15,68],[28,98],[14,32],[38,23],[14,25],[-55,25],[1,28],[49,47],[50,38],[15,72],[-45,35],[19,64],[-66,106],[8,48],[-6,74],[2,95],[-18,75],[-8,75],[-43,-30],[-68,27],[-21,1],[-9,56],[24,69],[58,61],[33,8],[25,26],[39,9],[47,-41],[43,-9],[23,-71],[51,42],[1,36],[-39,12],[-35,89],[-18,63],[19,71],[-41,80],[-19,26],[3,72],[-33,71],[-8,44],[31,46]],[[132065,88970],[13,13],[1,81],[38,43],[110,182],[34,30],[34,15],[54,6],[103,-6],[91,10],[69,-13],[58,5],[56,36],[23,40],[24,74],[26,59],[15,11]],[[86811,92079],[-74,-19],[-25,-23],[-20,-61],[-13,0],[-49,52],[-35,-2],[-122,-70],[-11,-37],[-3,-79],[-21,-35],[-56,14]],[[86166,92288],[11,58],[-26,70],[11,20],[59,-4],[10,31],[56,20]],[[86287,92483],[53,21],[3,66],[64,57],[15,45],[-21,55],[6,14],[60,42],[26,-15],[9,-44],[53,-40],[39,-17],[71,-95],[6,-30],[72,-56],[-6,-56],[117,-49],[39,-8],[-9,-52],[-48,-120],[-4,-25],[-35,-26]],[[86797,92150],[-4,-15],[18,-56]],[[98316,83290],[-24,-16],[-17,7],[-16,37],[-26,93],[25,68],[8,44],[30,-16],[52,-107],[-4,-61],[-28,-49]],[[98388,82537],[-332,-7],[-38,66],[-26,146],[-38,106],[-195,39],[-194,35]],[[97565,82922],[70,114],[33,61],[58,132],[31,95],[29,104],[30,96],[15,28]],[[97831,83552],[32,28],[47,27],[79,12],[68,-1],[35,-13],[97,-66],[-3,-25],[14,-77],[56,-152],[-20,-27],[-51,26],[-66,-90],[-40,-49],[-1,-16],[53,-19],[39,0],[27,14],[23,-21],[57,-262],[30,-55],[37,-96],[22,-91],[22,-62]],[[121510,78245],[24,-66],[51,-74],[61,-105],[19,-48],[41,-37],[12,-37],[13,-98],[24,-34],[32,33],[12,62],[20,-44],[31,-16],[14,-22],[0,-77],[-17,-45],[-10,-46],[-15,-121],[14,-44],[95,-217],[46,-35],[108,-42],[74,-58],[34,14],[33,64],[40,36],[73,56],[21,3],[41,-22],[66,-65],[101,-121],[-4,-32],[-18,-32],[-54,-48],[-7,-43],[45,-7],[53,-28],[16,-32],[9,-72],[9,-13],[49,8],[33,-34],[18,-60],[-1,-45],[-35,-49],[-13,-30],[-6,-47],[-25,-57],[-67,-95],[-18,-5],[-124,52],[-98,-8],[-8,-19],[17,-58],[5,-57],[-16,-43],[-56,-56],[9,-50],[82,-50],[145,-148],[73,-86],[44,-39],[119,-53],[53,-34],[13,-43],[-14,-31],[-11,-53],[-1,-32],[33,-78],[48,-72],[26,-32],[53,-24],[57,-119],[4,-46],[12,-58],[28,-67],[38,-65],[53,-81],[45,-79],[113,-138],[27,-51],[40,-98],[33,-34],[10,-54],[9,-157],[39,-79],[9,-31],[17,-24],[18,-4],[40,51],[8,-7],[18,-83],[17,-31],[60,-51],[63,-99],[34,-37],[43,-28],[6,-32],[-21,-53],[-74,-58],[-10,-25],[10,-38],[39,-90],[25,-40],[98,-118],[38,-95],[-9,-45],[-33,-93],[-26,-25],[-7,-29],[19,-75],[-4,-38],[2,-78],[-23,-28],[-22,-71],[-15,-5],[-37,26],[-14,-15],[-23,-51],[-42,-57],[-34,6],[-40,-68],[-51,-9],[-35,51],[-75,82],[-27,51],[-24,-44],[-39,-42],[-56,15],[-15,-62],[-11,-11],[-68,-10],[-12,-10],[11,-56],[39,-94],[13,-55],[-25,-89],[-70,3],[-32,36],[-39,75],[-90,50],[-60,-34],[-18,1],[-45,64],[-17,41],[-10,60],[69,49],[34,38],[23,41],[9,42],[2,49],[9,127],[11,62],[-6,76],[-19,60],[0,90],[10,73],[26,36],[18,52],[10,68],[1,49],[-8,31],[-26,28],[-43,28],[-27,34],[-11,42],[1,36],[13,32],[-32,35],[-79,39],[-44,46],[-9,54],[-32,71],[-57,88],[-29,126],[-3,165],[6,135],[25,155],[-33,112],[-36,60],[-50,43],[-48,63],[-46,81],[-54,120],[-64,159],[-42,71],[-22,-16],[-46,15],[-70,46],[-61,24],[-52,4],[-34,-11],[-16,-24],[5,-66],[-27,-13],[-22,-26],[-25,-59],[-17,-76],[-26,-29],[-40,-7],[-39,-22],[-39,-37],[-24,-52],[-19,11],[-9,25],[1,40],[-20,27],[-40,13],[-46,43],[-52,72],[-36,38],[-20,5],[-29,-29],[-38,-61],[-31,-25],[-24,13],[-19,-22],[-13,-56],[-25,-44],[-53,-48],[-64,-71],[-50,-65],[-57,-88],[-26,-13],[-65,43],[-20,29],[39,149],[49,164],[13,76],[2,56],[-4,45],[-38,84],[4,50],[46,97],[23,121],[29,128],[-3,78],[-23,86],[-13,81],[10,110],[-3,43],[-25,22],[-81,22],[-47,-18],[-22,-30],[-27,-19],[-51,-11],[-48,38],[-40,63],[-10,78],[50,167],[13,64],[-11,63],[-12,4],[-25,39],[-26,70],[-23,31],[-23,-6],[-20,-26],[-19,-46],[-26,-11],[7,80],[23,151],[28,98],[33,46],[35,19],[37,-7],[31,8],[25,24],[-32,17],[-11,27],[6,49],[13,32],[20,14],[20,50],[18,84],[24,43],[27,1],[46,36],[66,71],[25,69],[25,-32],[-9,-79],[19,-46],[-3,-44],[5,-38],[25,-28],[69,33],[43,2],[18,-21],[52,-38],[34,38],[8,22],[-34,55],[0,56],[10,147],[-4,153],[-16,39],[-42,75],[-12,46],[-6,74],[-16,64],[41,51],[23,94],[38,20],[35,-71],[45,35],[34,0],[28,-19],[16,-23]],[[92645,85698],[41,122],[21,94],[36,77],[76,262],[43,106],[16,150],[67,132],[51,39],[24,38],[-1,57]],[[93019,86775],[124,2],[14,32],[38,-15],[21,-30],[-46,-70],[56,-33],[21,-24],[34,-147],[-21,-60],[-34,-54],[-44,-32],[-24,-36],[-7,-45],[35,-27],[-6,-20],[-86,9],[-25,-6],[-31,-33],[-22,-36],[-11,-45],[12,-31],[24,-18],[-2,-24],[-41,-44],[-25,-47]],[[73869,67926],[22,-29],[12,-73]],[[73903,67824],[48,-235],[-2,-65],[-10,-42]],[[73939,67482],[-3,-83],[-30,-67],[-87,-138],[7,-12]],[[73826,67182],[42,-23],[17,4],[45,-78],[61,-42],[58,6],[38,-9],[40,-36],[24,-110],[14,-26]],[[74165,66868],[2,-44],[28,-39]],[[74236,66777],[52,-46],[26,-1],[13,-132],[10,-70]],[[74337,66528],[-12,-51],[0,-106],[-24,-62],[-4,-67],[-7,-22],[-25,-19],[-1,-52],[-6,-62]],[[74258,66087],[-3,-67],[7,-173]],[[74262,65847],[1,-130],[12,-24]],[[74275,65693],[-50,11],[-145,99],[-113,56],[-376,324],[-104,129],[-121,194],[-267,389],[-62,62],[-77,31],[-47,33],[-34,36],[-27,108],[-67,64],[-124,91],[-93,152],[23,31],[34,100],[47,96]],[[72672,67699],[43,57],[35,59],[37,45],[52,52]],[[72839,67912],[81,138],[19,16],[13,95],[20,122],[23,38],[55,22],[13,21],[19,86],[14,121]],[[88283,77978],[0,-347],[0,-347],[0,-347],[0,-347],[-5,-4],[-213,0],[-212,0],[0,-348]],[[87853,76238],[-207,165],[-206,165],[-206,164],[-207,165],[-206,165],[-206,165],[-207,164],[-206,165],[-206,165],[-207,164],[-206,165],[-206,165],[-207,165],[-206,164],[-206,165],[-207,165],[-142,113],[-274,-198],[-159,-114]],[[83976,78675],[-182,-149],[-140,-114],[-13,3],[-260,346],[-50,42],[-215,77],[-213,77],[-224,81]],[[81624,83711],[52,37],[72,42],[38,31],[71,134],[68,142],[17,57],[-6,116],[-30,152],[-25,149],[19,57],[50,97]],[[81950,84725],[13,13],[73,22],[30,46],[28,89],[70,64],[23,41],[148,123],[145,109],[13,41],[-1,36],[-34,82],[0,97],[5,128],[16,151],[66,-44],[67,-18],[201,-163],[64,-21],[140,-19],[166,67],[63,12],[108,-63],[48,-18],[81,-5],[138,-57],[35,-20],[81,-91],[38,-27],[286,-84],[39,-55],[40,-106],[1,-131],[22,-96],[36,-123],[42,-88],[48,-72],[54,-46],[126,-67],[141,-26],[142,-9],[245,-93],[207,-107],[51,-53],[104,-51],[206,-252],[115,-87],[81,-17],[72,15],[129,87],[53,52],[129,218],[42,113],[17,80],[-4,82],[-16,73],[-36,77],[-25,101],[-15,182],[20,126],[25,76],[39,77],[107,148],[108,104],[190,136],[110,1],[46,15],[91,96],[37,4],[51,-23],[149,6],[66,-26],[79,-60],[100,-38],[70,-37],[74,-47],[17,-119],[-10,-81],[78,-82],[220,-39],[43,-22],[61,-62],[39,-20],[151,-9],[88,14],[83,-22],[32,-21],[32,-49],[54,-159]],[[51297,72287],[-24,-73],[-47,46],[-5,57],[4,35],[51,110],[16,14],[9,-57],[-4,-132]],[[111926,68965],[12,-53],[-59,66],[41,-3],[6,-10]],[[111967,69369],[-27,-8],[-27,66],[19,19],[10,-43],[25,-34]],[[111972,69496],[86,-2],[31,-10],[53,-107],[144,-192],[79,-195],[18,-80],[34,-27],[79,-189],[9,-37],[3,-72],[46,-23],[17,-28],[21,-151],[6,-67],[99,-234],[8,-68],[19,-42],[30,-111],[15,-26],[18,-97],[1,-187],[-6,-83],[-19,-101],[-22,-98],[-24,-72],[-32,-60],[-111,-128],[-32,-26],[-144,-81],[-106,-76],[-99,-20],[-98,42],[-74,100],[-38,147],[-26,153],[-38,170],[-29,527],[-14,147],[-22,187],[2,81],[16,78],[0,-171],[26,1],[9,177],[9,75],[39,195],[-6,145],[59,136],[15,80],[8,81],[-3,88],[-11,87],[47,-28],[53,-50],[47,11],[-18,47],[-55,43],[-91,27],[-29,35],[-11,30],[12,49]],[[89639,41410],[-31,-74]],[[89608,41336],[-16,-8],[-114,30],[-38,40],[-50,91],[-25,33],[-45,33],[-10,26]],[[89310,41581],[-6,22],[2,62],[-50,100],[-19,51]],[[89237,41816],[-28,71],[-34,122],[19,45],[86,56],[27,45],[43,106],[30,46],[90,206],[97,47],[53,65],[64,55],[103,59],[66,24],[12,-11],[30,-63],[40,-50],[18,-12],[42,-73],[96,-108],[53,-37]],[[90144,42409],[39,-125],[-2,-35],[-16,-85],[-24,-87],[-19,-36],[-46,-58],[-19,-151],[-30,-34],[-55,-49],[-71,-45],[-44,-18],[-58,0],[-46,-13],[-33,-50],[-60,-133],[-16,-28],[-5,-52]],[[86551,101152],[-25,6]],[[86526,101158],[88,140],[-31,-96],[-32,-50]],[[88539,100359],[-33,25],[13,28],[-29,54],[-39,-29],[-37,0],[-45,-26],[-29,-41],[-28,-16],[-76,9],[-19,-18],[-25,-101],[-64,4],[-61,-34],[-69,-27],[-55,40],[-78,-13],[-59,3],[-60,-16],[-75,5],[-32,14],[-1,97],[-12,45],[-36,39],[-86,57],[-55,16],[-12,30],[-52,30],[-31,3],[-24,-27]],[[87330,100510],[-37,95],[12,97],[53,144],[-3,22],[-38,40],[-47,30],[-26,61],[-213,3],[-86,26],[-137,66],[-46,27],[-25,29],[-66,-8]],[[86671,101142],[-15,55],[15,78],[-28,113],[-47,136],[-7,179],[116,82],[145,88],[34,8],[152,56],[216,-22],[81,2],[44,13],[40,-11],[32,-39],[33,5],[33,25],[179,-23],[86,-3],[85,-24],[48,-22],[176,23],[73,59],[61,21],[27,-9]],[[88250,101932],[18,-51],[54,-87],[222,-49],[33,-18],[92,-77],[90,-68],[85,-101],[51,-33],[83,-25],[-11,-84],[-47,-143],[16,-17],[80,-8],[41,-23],[-55,-48],[-21,-51],[-133,6],[-18,-10],[-32,-85],[-35,-28],[-56,-11],[-45,-19],[-34,-60],[-25,-80],[1,-107],[-45,-73],[-31,-89],[66,-27],[27,-50],[-7,-45],[-75,-12]],[[80319,97336],[-2,-63],[-33,-44],[-25,-92],[-2,-41],[-44,29],[-53,-7],[-19,-21],[-50,0],[-25,24],[-33,11],[-15,23],[39,74],[-40,80],[-27,34],[8,78],[19,29],[34,84],[47,59],[49,-9],[12,-23],[-3,-60],[12,-42],[51,-71],[29,-24],[71,-28]],[[88978,101423],[-83,25],[-51,33],[-85,101],[-90,68],[-92,77],[-33,18],[-222,49],[-54,87],[-18,51]],[[88250,101932],[-27,9],[-61,-21],[-73,-59],[-176,-23],[-48,22],[-85,24],[-86,3],[-179,23],[-33,-25],[-33,-5],[-32,39],[-40,11],[-44,-13],[-81,-2],[-216,22],[-152,-56],[-34,-8],[-145,-88],[-116,-82],[-14,132],[8,263],[17,130],[80,76],[40,59],[23,79],[8,73],[16,60],[116,173],[92,19],[124,48],[140,40],[40,-90],[168,-141],[42,-48],[65,-163],[155,-83],[122,26],[151,115],[44,54],[9,52],[-18,223],[-26,97],[9,60],[195,80],[59,13],[86,41],[50,-47],[48,30],[100,-67],[38,-16]],[[88576,102991],[26,-4],[32,-32],[85,-21],[17,-36],[115,-129]],[[88851,102769],[101,-49],[158,54],[124,-49],[121,-10],[18,-11],[12,-54],[111,-79],[18,-48],[-10,-56],[-22,-22],[-20,-56],[-3,-54],[-30,-92],[71,15],[33,-30],[4,-58],[43,-66],[7,-32],[41,-38],[29,-110],[14,-88],[-23,-82]],[[50386,75244],[-48,0]],[[50338,75244],[26,32],[23,-7],[-1,-25]],[[77024,85222],[-34,-43],[-9,-46],[16,-75],[0,-39],[-22,-13],[-233,11],[-272,17],[-32,-3],[-147,-35],[-29,-23],[-25,-117],[-12,-28],[-182,-90],[-71,-12],[-41,9],[-29,-7],[-26,-20],[-8,-29],[4,-75]],[[75872,84604],[17,-52],[4,-52],[-12,-37],[-8,-78],[70,-60],[20,-32],[-1,-45],[-32,-39],[-122,-22],[-70,-72]],[[75738,84115],[-75,-77],[-89,-51],[-39,-15],[-69,-36],[-81,-61],[-41,-96],[-51,-112],[-48,-75],[-67,-71],[-141,-61],[-99,-26],[-90,-14],[-62,-2],[-52,8],[-9,-8],[-9,-103],[-19,-39],[-30,-25],[-95,23],[-103,16],[-21,-4],[-40,-31],[-49,-55],[-34,-49],[-25,-23]],[[74300,83128],[-59,-12],[-26,-18],[-112,-121],[-24,-30],[-114,-105],[-127,-149],[-43,-34],[-10,-68],[0,-502]],[[73785,82089],[0,-169],[-58,0],[18,-137],[-12,-69],[3,-37],[18,-81],[0,-28],[-17,-21],[-90,-21],[-89,6],[-62,-1],[-26,-7],[-32,-26],[-106,-132],[-71,-8],[-58,42],[-14,-1],[-53,-33],[-27,0],[-44,28],[-85,62],[-89,21],[-71,-7],[-53,-28],[-94,-42],[-55,-19],[13,-62],[19,-34],[0,-42],[-9,-36],[-57,-79],[-35,-83],[-37,-73],[-20,-57],[-14,-76],[-16,-12],[-54,-11],[-65,-28],[-13,-28],[-9,-84],[-38,-160],[-61,-369],[-21,-98],[-30,-97],[-31,-42],[-90,-97],[-121,-112],[-30,-48],[-26,-70],[-47,-146],[-34,-76],[-35,-28],[-82,-49],[-34,-28],[-48,-28],[-30,-28],[-21,-41],[-39,-119],[-17,-77],[-35,-216],[-8,-97],[-22,-139],[-8,-119],[0,-97],[-13,-98],[-39,-83],[-30,-49],[-26,-28],[-9,-28],[-26,-34]],[[71270,77975],[-47,-91],[9,-76],[-26,-105],[-35,-70],[-38,-34],[-56,-7],[-78,0],[-60,7],[-73,0],[-125,28],[-73,6],[-52,0],[-65,-13],[-168,0],[-64,-8],[-118,-34],[32,334],[59,180],[47,80],[73,41],[67,182],[23,167],[44,77],[14,61],[-17,46],[41,90],[51,138],[23,88],[59,137],[7,31],[-5,34],[-23,-29],[-25,-51],[-17,9],[23,72],[52,76],[83,83],[171,283],[64,49],[58,119],[21,106],[6,242],[20,128],[38,100],[45,182],[35,81],[22,166],[25,63],[43,30],[62,83],[93,51],[111,107],[52,64],[34,96],[37,191],[66,200],[35,154],[58,80],[40,100],[66,45],[140,21],[208,84],[187,126],[53,50],[56,100],[94,131],[175,157],[81,87],[123,220],[82,182],[68,117],[47,103],[33,105],[19,170],[-13,66],[-52,108],[-34,29],[-10,51],[19,90],[-1,155],[11,247],[58,200],[141,261],[26,107],[16,171],[1,60],[177,243],[103,185],[36,46],[91,85],[318,185],[180,132],[105,97],[63,114],[173,448],[171,630],[14,73],[76,21],[54,9],[43,23],[54,47],[51,-19],[-25,-32],[0,-77],[36,-91],[64,-103],[115,-129],[90,-53],[129,-31],[149,57],[84,1],[41,25],[44,-36],[84,-12],[82,19],[61,55],[39,62],[8,-64],[12,-19],[37,-111],[47,5],[41,-16],[92,8],[88,-14],[12,-52],[25,-41],[145,-152],[2,-20],[-25,-81],[14,-35],[33,-42],[3,-20],[-25,-69],[36,-134],[6,-129],[-9,-92],[5,-99],[31,-104],[-21,-173],[24,-94],[32,-77],[17,-136],[26,-65],[42,-56],[71,-66],[33,-40],[20,-58],[-42,-48]],[[89675,94309],[-59,103],[37,34],[-2,46],[-17,78],[-7,103],[8,115],[54,218],[-9,39],[7,93],[-39,105],[-33,130],[-94,95],[-37,78],[-66,79],[-71,148],[-49,60],[-25,55],[-20,86],[-34,82],[-74,136],[-34,39],[-49,31],[-73,3]],[[88989,96265],[9,24],[89,65],[23,-11],[142,0],[46,42],[29,-11],[63,43],[71,-20],[45,-23],[31,-36],[63,-30],[22,-45],[30,-13],[57,0],[24,-18],[-2,-47]],[[89731,96185],[35,1],[17,-39],[29,42],[105,-22],[40,-86],[46,-43],[52,29],[14,-8],[29,-57],[7,-105],[-37,-140],[15,-52],[75,-56],[22,-33],[31,-24]],[[90211,95592],[23,-2],[17,-30],[-15,-109],[21,-30],[4,-58],[11,-18],[53,-39],[68,-37],[27,-73],[-7,-129],[89,-81],[-24,-31],[-103,-19],[-37,60],[-19,8],[-40,-35],[-25,7],[-42,32]],[[90212,95008],[-28,-12],[-38,20],[-22,-51],[-21,-9],[-2,87],[-23,15],[-81,-47],[-14,-24],[7,-95],[27,-78],[-25,-88],[-42,-49],[-48,-29],[-4,-59],[-27,-41],[-45,-40],[-30,-49],[9,-65],[-18,-46],[-69,-6],[-43,-33]],[[99032,50894],[-49,-127],[14,106],[56,154],[16,12],[-37,-145]],[[98345,53358],[1,-25],[-57,11],[-9,87],[28,3],[6,35],[17,5],[18,-78],[-4,-38]],[[98860,54007],[43,-142],[72,-169],[31,-65],[26,-69],[13,-138],[46,-215],[43,-321],[13,-331],[13,-151],[34,-143],[55,-148],[18,-164],[-34,-170],[-48,-159],[-36,-71],[-10,1],[-39,42],[-32,67],[-41,159],[-14,81],[-17,12],[-47,-7],[-34,-50],[-7,-31],[8,-90],[13,-81],[5,-81],[1,-103],[32,-58],[19,-67],[4,-161],[-12,-81],[-33,-69],[1,-39],[13,-40],[-12,-23],[-44,-31],[-18,-26],[-24,-71],[-39,-145],[-5,-74],[24,-224],[-7,-160],[-49,-305],[-29,-144],[-40,-173],[-62,-228],[-61,-286],[-52,-294],[-38,-177],[-44,-175],[-59,-308],[-51,-312],[-76,-344],[-104,-384],[-11,-50],[-21,-196],[-24,-170],[-28,-168],[-58,-279],[-6,-85],[-14,-83],[-56,-174],[-24,-65],[-16,-69],[-10,-88],[-16,-84],[-42,-155],[-61,-134],[-42,-48],[-90,-71],[-46,-14],[-101,-2],[-98,-40],[-103,-77],[-98,-89],[-38,-41],[-42,-24],[-130,-6],[-39,20],[-130,145],[-50,24],[-96,20],[-55,31],[-39,76],[-76,64],[-19,21],[-19,92],[-20,53],[-15,102],[-25,71],[-71,126],[-7,40],[-6,133],[2,90],[-6,166],[8,77],[24,70],[-10,76],[-26,80],[-10,82],[-19,75],[-74,135],[-18,67],[-12,69],[-28,214],[-3,75],[4,158],[10,81],[18,57],[5,42],[41,100],[27,203],[35,44],[52,26],[42,53],[24,71],[24,147],[65,146],[23,77],[53,116],[47,163],[24,155],[12,173],[9,86],[-2,85],[-27,87],[-63,159],[-2,30],[5,117],[-6,86],[-23,85],[-30,80],[-30,150],[-14,247],[3,90],[-9,79],[-21,76],[15,132],[190,480],[7,56],[-8,147],[4,85],[21,50],[33,9],[154,21],[58,55],[52,78],[25,23],[20,-9],[31,-52],[62,36],[48,-5],[12,33],[16,74],[16,18],[80,9],[51,13],[66,30],[14,-6],[54,-110],[36,-13],[19,20],[-44,57],[-4,69],[23,79],[39,61],[86,91],[89,106],[26,8],[22,-17],[17,-125],[12,-23],[17,15],[14,50],[1,42],[-12,41],[-6,65],[45,74],[36,70],[16,84],[15,39],[37,44],[11,-7],[14,-73],[-24,-74],[-5,-50],[21,-9],[20,12],[29,89],[53,128],[25,30],[42,-6],[40,-19],[-65,89],[-17,122],[78,211],[1,44],[17,30],[-41,71],[-7,36],[5,53],[37,81],[25,13],[20,-19],[43,-58],[30,-9],[35,56],[29,70],[44,48],[49,30],[76,111],[49,231],[4,67],[-11,82],[-18,77],[-29,97],[8,22],[41,-13],[14,13],[45,86],[74,165],[24,-1],[21,-30],[8,-45],[14,-33],[50,-78],[25,-59]],[[38037,75668],[-48,-16],[-9,15],[98,71],[22,-13],[-50,-33],[-13,-24]],[[29755,75712],[-26,-14],[-39,42],[11,34],[21,23],[21,-43],[12,-42]],[[40080,76800],[-22,-22],[-12,77],[18,75],[21,43],[43,5],[32,-5],[-23,-58],[-57,-115]],[[31655,77710],[-13,-57],[-32,23],[-12,36],[-2,59],[18,10],[26,-25],[15,-46]],[[30232,79479],[-31,34],[-10,91],[5,10],[41,-113],[-5,-22]],[[29417,79648],[-6,-33],[-130,130],[32,12],[36,-9],[68,-100]],[[29904,80072],[12,-78],[-22,12],[-29,42],[-20,54],[6,29],[41,-32],[12,-27]],[[29262,79754],[-8,-8],[-37,81],[-6,55],[-15,23],[-37,19],[32,112],[27,233],[12,-43],[-28,-236],[1,-31],[28,-77],[2,-53],[25,-49],[4,-26]],[[29675,80781],[-16,-15],[-29,-104],[9,133],[40,24],[-4,-38]],[[27921,82207],[-5,-22],[-73,46],[40,81],[-6,85],[17,18],[16,-28],[21,-108],[-10,-72]],[[26598,82815],[-18,-27],[-49,145],[-1,35],[14,18],[24,-4],[0,-36],[28,-61],[2,-70]],[[29200,82859],[-33,-165],[-33,3],[-68,52],[-8,32],[27,191],[20,25],[59,25],[10,-23],[6,-56],[20,-84]],[[28789,82891],[-47,31],[-99,147],[-37,74],[-6,34],[3,77],[35,-9],[39,-52],[17,-47],[1,-55],[74,-26],[11,-118],[9,-56]],[[28127,84739],[-15,-3],[-26,32],[8,33],[26,-26],[7,-36]],[[35684,80739],[-7,-143],[-26,-118],[-86,-246],[-36,-152],[-69,-435],[-21,-285],[-5,-173],[-16,-296],[8,-254],[-5,-39],[-25,-76],[-18,-106],[7,-79],[25,-161],[9,-121],[77,-207],[43,-72],[53,-63],[20,-35],[-10,-88],[-22,-45],[-20,-12],[5,76],[17,41],[0,30],[-31,31],[-58,104],[-70,185],[50,-295],[17,-47],[36,-40],[6,-56],[62,-205],[69,-211],[4,-58],[28,-71],[178,-297],[109,-222],[37,-211],[23,-65],[11,-90],[72,-101],[21,-65],[39,-36],[31,-109],[44,-65],[-51,32],[3,-21],[43,-45],[84,-45],[-30,59],[58,-39],[163,-13],[72,-91],[94,-39],[50,-115],[58,-121],[67,-6],[87,20],[136,76],[47,37],[91,51],[140,9],[43,-14],[105,31],[50,39],[25,61],[116,44],[98,7],[47,14],[56,8],[40,-55],[0,-26],[-26,-26],[12,-24],[48,-40],[87,-17],[29,7],[40,59],[71,58],[-2,67],[-12,37],[-26,22],[15,50],[-4,16],[-44,-47],[3,40],[130,103],[33,42],[45,37],[93,140],[20,263],[18,46],[62,80],[10,80],[-1,138],[3,108],[-2,123],[11,110],[10,30],[35,175],[73,78],[128,92],[29,15],[405,97],[57,24],[70,63],[51,21],[93,-1],[28,8],[23,26],[54,-8],[100,-38],[37,-10],[89,-44],[99,-18],[28,21],[10,26],[-11,22],[-46,-15],[-39,19],[8,15],[65,6],[38,28],[40,-21],[53,-90],[38,-28],[3,-131],[20,-58],[-19,-101],[-21,-84],[-27,-69],[-57,-108],[-70,-86],[-86,-192],[-20,-90],[1,-72],[14,-70],[-14,-52],[-18,3],[-34,-34],[-44,-99],[-1,-30],[19,-28],[25,13],[70,8],[-4,-57],[-21,-41],[-36,-19],[-39,-44],[1,-66],[14,-5],[31,49],[22,-23],[-40,-168],[-26,-173],[-35,-100],[-12,-145],[-39,-124],[-13,4],[-33,116],[-34,30],[-8,28],[20,141],[-9,78],[-18,-3],[-23,-43],[-30,-37],[1,-53],[-44,-119]],[[39123,75067],[-244,1],[-196,0],[-347,0],[-1,-392],[-180,2],[39,-39],[41,-61],[48,-95],[59,-75]],[[38342,74408],[69,-56],[45,-55],[22,-54],[11,-46],[0,-38],[25,-30],[45,-19],[24,-34],[0,-28],[-15,-62],[-4,-69],[6,-63],[-230,-1],[-195,0]],[[38145,73853],[-131,-1],[-95,-255],[-99,-266],[-7,-58],[56,-114],[-11,-33],[-19,-17],[-5,-70],[-13,-58],[11,-89],[-21,-83],[-24,-3],[-115,190],[-120,208],[-47,68],[-45,51],[-62,96],[-161,211],[-83,96],[-78,115],[-71,64],[-69,41],[-58,56],[-15,2],[-7,-43],[53,-40],[47,-16],[71,-58],[12,-30],[-202,117],[-82,10],[-9,19],[41,60],[-28,26],[-44,-43],[-16,-2],[-1,53],[-28,39],[-18,-2],[-53,-77],[1,-20],[75,-22],[20,-25],[-64,0],[-80,-23],[-142,-141],[-133,-61],[-190,-135],[-84,-7],[-44,-22],[-128,52],[-162,127],[-246,41],[-165,166],[-164,69],[-105,160],[-62,7],[-41,25],[-149,58],[-147,39],[-144,140],[-94,44],[-82,55],[-179,95],[-66,53],[-63,82],[-102,84],[-44,70],[-49,26],[-70,132],[-36,56],[-31,26],[-33,9],[-95,-11],[-143,59],[-65,15],[-138,86],[-182,97],[-60,110],[-51,104],[-92,136],[-57,58],[-100,69],[-55,56],[-85,43],[-145,109],[-46,93],[-26,83],[-77,100],[-85,188],[-21,69],[-17,106],[-19,62],[-23,48],[11,35],[43,43],[71,10],[51,47],[3,62],[-32,59],[-40,16],[-31,0],[-8,23],[23,24],[27,57],[40,70],[28,65],[5,91],[-4,91],[11,77],[-96,88],[-41,140],[-53,118],[2,236],[-63,209],[-65,104],[-34,36],[-92,162],[-72,94],[-71,176],[-70,113],[-89,188],[-64,94],[-293,317],[17,0],[85,-78],[15,7],[2,38],[-10,45],[-16,11],[-23,-10],[-46,24],[-46,10],[-58,53],[-25,55],[-3,62],[-83,133],[7,39],[49,-8],[18,12],[-24,40],[-121,70],[-40,50],[-99,82],[-24,28],[-15,80],[-25,3],[-21,-22],[-58,-21],[-17,49],[41,26],[38,75],[-22,-4],[-31,-34],[-33,-19],[-49,-15],[-46,28],[-35,65],[-17,213],[31,74],[36,73],[30,43],[-18,69],[-1,32],[-14,58],[-89,123],[-83,-10],[-34,5],[-32,46],[-27,79],[-22,137],[-144,57],[-43,50],[-43,62],[-36,89],[-14,66],[-10,76],[16,99],[21,47],[-98,36],[-39,1],[-31,-20],[-28,26],[-59,29],[-69,103],[-81,187],[-90,60],[-29,65],[-37,59],[-32,73],[-14,49],[-45,51],[-51,85],[-13,69],[-13,106],[-34,37],[-33,17],[-4,78],[-12,54],[-68,127],[-34,105],[-37,80],[-9,98],[-28,121],[-55,146],[-45,99],[-23,99],[10,100],[-9,97],[28,7],[-2,64],[-16,20],[-63,34],[-108,26],[-61,36],[-4,85],[-55,63],[-81,50],[-24,-73],[-63,-12],[-49,33],[-123,124],[-26,20],[-38,11],[-19,20],[-82,66],[40,-71],[21,-106],[-25,-76],[-14,-265],[16,-53],[36,-85],[25,-135],[7,-100],[23,-80],[-7,-187],[8,-57],[35,-93],[63,-88],[13,-46],[83,-67],[51,-87],[100,-118],[32,-50],[90,-185],[3,-55],[17,-67],[51,14],[23,-51],[3,-42],[27,4],[23,-14],[48,-200],[26,-27],[70,-34],[1,-92],[31,-59],[-5,-80],[25,-68],[-4,-65],[11,-52],[78,-118],[96,-93],[20,-123],[40,-111],[40,-29],[40,-46],[-2,-78],[54,-89],[9,-112],[47,-74],[23,6],[-34,74],[-16,48],[-2,76],[11,10],[97,-120],[11,-89],[32,-51],[3,-68],[19,-41],[6,-59],[32,-97],[0,-136],[17,-98],[61,-151],[50,-32],[9,-74],[51,-193],[60,-104],[30,-88],[4,-55],[-23,-82],[-2,-57],[32,-173],[49,-88],[54,-22],[5,-36],[18,-21],[21,27],[10,38],[-13,78],[27,27],[104,-119],[17,-45],[38,-53],[36,-66],[15,-51],[28,-43],[15,-99],[72,-44],[38,-82],[2,-52],[-18,-133],[-16,-38],[-58,-57],[-43,-67],[-40,-42],[-44,-25],[-35,6],[-35,77],[-40,234],[-28,50],[-19,73],[-32,61],[-115,92],[-58,97],[-56,65],[-61,94],[-165,156],[-68,79],[-45,79],[-52,-10],[-10,63],[-10,26],[-96,119],[-20,65],[-4,76],[21,196],[10,114],[-6,59],[-19,40],[-3,94],[-23,102],[-87,210],[-65,42],[-57,30],[-156,185],[-42,93],[-10,53],[-6,107],[-21,-62],[-29,-46],[-66,3],[-74,-52],[-45,49],[-24,56],[-36,66],[-67,15],[-49,82],[-39,26],[-57,11],[-48,41],[-15,46],[-8,64],[-18,39],[-76,75],[-61,84],[-58,53],[-17,44],[-2,30],[92,-9],[109,-32],[52,9],[64,53],[-1,-67],[30,-40],[42,-33],[0,38],[-17,73],[7,62],[-40,-8],[-6,18],[35,55],[40,145],[19,143],[-42,124],[-71,87],[-152,254],[-92,130],[-26,49],[-24,23],[-75,30],[-62,72],[-110,104],[-46,53],[-32,125],[-26,17],[8,86],[-11,153],[-19,39],[-59,38],[-14,104],[-3,99],[-12,68],[-100,116],[-6,109],[-10,53],[-54,110],[-65,96],[-23,46],[-3,93],[20,41],[1,65],[-98,102],[-28,140],[-52,74],[-13,27],[-28,132]],[[27078,85315],[370,45],[370,45],[246,30],[50,7],[-28,-105],[-20,-39],[204,-103],[204,-103],[204,-103],[205,-103],[204,-103],[204,-104],[204,-103],[205,-103],[152,1],[304,1],[305,1],[152,0],[304,1],[2,313],[284,-2],[284,-3],[189,-1],[46,-64],[39,-93],[46,-65],[54,-37],[91,-110],[128,-181],[103,-121],[77,-60],[51,-52],[26,-43],[36,-95],[66,-218],[0,-100],[26,-95],[50,-123],[45,-72],[38,-22],[42,-44],[45,-65],[52,-44],[59,-22],[81,-59],[104,-95],[71,-48],[39,-2],[34,30],[28,63],[29,41],[28,18],[11,29],[-5,40],[19,89],[43,139],[51,76],[60,12],[39,26],[18,40],[32,5],[46,-32],[74,-21],[103,-9],[60,3],[19,16],[25,-26],[30,3],[26,-24],[33,-75],[114,-121],[10,-42],[39,-60],[73,-92],[42,-79],[9,-67],[38,-105],[65,-145],[28,-77],[-1,-52],[17,-70],[32,-59],[47,-49],[48,-87],[48,-126],[58,-95],[69,-66],[38,-61],[9,-56],[0,-48],[-11,-41],[5,-38],[19,-36],[6,-44],[-7,-62],[6,-31],[61,-106],[31,-85],[25,-138],[28,-82],[39,-33],[62,-12],[46,-29],[32,-44],[40,-27],[48,-9],[47,-30],[44,-49],[83,-33],[121,-15],[92,-41],[64,-65],[35,-14],[9,28],[24,22],[58,13]],[[150585,66723],[-4,18],[11,62],[9,-7],[-16,-73]],[[87394,91444],[-57,-3],[-12,-13],[-13,-93],[-52,-27],[-48,-15],[-40,3],[-70,22],[-105,-17],[-28,-16],[-64,-109],[-88,-57],[-50,24],[-24,3],[-35,-28],[-75,-3],[-79,-9]],[[86811,92079],[24,-4],[52,18],[33,25],[38,13],[64,-12],[81,37],[45,-31]],[[79345,75992],[1,-305],[1,-394],[0,-215],[1,-377],[0,-204],[-13,-23],[-9,-265],[-26,-156],[-46,-115],[-17,-110],[-13,-62],[-17,-34],[-13,-99],[-26,-56],[-46,-23],[-81,-110],[-7,-89],[-192,50],[-21,-13],[-4,-47],[-250,-15],[-242,-13],[-241,-20],[-77,-102],[-69,-97],[-104,-22],[-123,17],[-63,1],[-25,-12],[-5,-36]],[[75146,69923],[-15,9],[-59,-4],[-64,-31],[-23,-24],[-5,-33],[-55,-78],[-35,5],[-34,21],[-20,32],[21,63],[1,22],[-21,110],[4,27],[-13,88],[-71,-36],[8,-69],[-33,-8]],[[74732,70017],[-35,17],[-38,49],[-10,-16],[-7,-85],[10,-83],[-10,-30],[-61,6],[-50,-11]],[[74531,69864],[-18,-63],[10,-52],[-30,-22],[-29,41],[-33,15],[-78,24],[-9,56]],[[74344,69863],[-13,1],[-36,68],[-27,-13],[-43,5],[-38,-60],[-28,-73],[-30,-36],[-46,-16]],[[72619,71300],[3,52],[-28,37],[2,66],[12,103],[-1,40],[12,76],[-23,60],[-45,99],[-14,84],[-24,55],[-53,17],[-19,-46],[-12,-8],[-20,34],[-7,55],[-27,47],[-42,85],[4,70],[26,38],[10,60],[-25,69],[3,68],[-3,94],[-40,81],[-27,37],[-23,57],[18,132],[-41,112]],[[72235,72974],[76,-44],[36,42],[35,57],[29,75],[13,93],[6,81],[13,68],[16,58],[37,60],[74,87],[21,-8]],[[72591,73543],[38,-62],[85,-124],[70,-94],[25,-50],[23,-1],[35,91],[35,79],[16,20]],[[72918,73402],[47,8],[75,2],[65,-15],[57,-23],[81,-6],[80,19],[133,39],[-1,82],[27,64],[15,7],[7,-106],[18,-16]],[[73522,73457],[50,-4],[170,0],[263,0],[264,0],[175,0],[176,0],[176,0],[354,0],[25,204],[41,344]],[[75216,74001],[-116,199],[-24,340],[-24,347],[-37,519],[-25,346],[-24,347],[-25,346],[-37,519],[-24,347],[-25,346],[-36,519],[-25,347],[-24,346]],[[74770,78869],[-37,519],[-25,347],[-24,331],[274,1],[339,0],[150,0]],[[83798,87626],[-14,-22],[-42,1],[-36,35],[-1,74],[42,-15],[51,-73]],[[83689,87748],[-26,-11],[-31,34],[36,11],[21,-34]],[[119811,69580],[-28,-39],[10,67],[34,49],[31,5],[-4,-31],[-22,-37],[-21,-14]],[[119823,70289],[36,-120],[-18,-25],[-15,65],[-27,42],[-32,-8],[37,66],[19,-20]],[[119966,70295],[-28,13],[21,75],[7,-88]],[[119828,70655],[-15,-4],[6,66],[16,54],[17,79],[13,-24],[-19,-139],[-18,-32]],[[119971,70841],[-11,-144],[-40,20],[-17,81],[-9,75],[64,10],[13,-42]],[[119765,70804],[-24,3],[-4,114],[21,-72],[7,-45]],[[119955,70952],[-18,-4],[-9,113],[31,-39],[36,-34],[-14,-22],[-26,-14]],[[119791,71123],[-26,10],[-17,47],[9,34],[20,5],[11,-19],[-4,-48],[7,-29]],[[119761,71290],[-3,-25],[-25,-52],[-27,47],[22,33],[33,-3]],[[119911,71435],[23,-19],[-4,-68],[-34,-83],[-29,-13],[8,123],[-12,69],[4,47],[36,-22],[8,-34]],[[119868,71784],[-3,-115],[-21,56],[-2,121],[19,-26],[7,-36]],[[118356,73678],[-9,-18],[-22,20],[41,77],[5,-29],[-15,-50]],[[118215,73766],[-28,-68],[-10,102],[45,56],[23,54],[23,37],[8,-45],[-23,-85],[-38,-51]],[[119549,73980],[-16,-9],[-25,45],[-4,109],[31,30],[16,-13],[9,-39],[-11,-123]],[[117876,75673],[-7,-6],[-45,58],[-35,75],[56,15],[55,-16],[0,-40],[-12,-65],[-12,-21]],[[117887,76281],[49,-58],[20,4],[30,-36],[-5,-44],[-14,-23],[-37,-24],[-26,19],[-10,63],[-30,30],[-8,25],[31,44]],[[117791,76514],[9,-96],[-30,36],[-10,49],[-3,51],[34,-40]],[[117583,76536],[6,-66],[-21,27],[-27,92],[1,60],[19,-28],[22,-85]],[[121084,77680],[-25,-69],[-66,-71],[-46,-36],[-27,-1],[-24,-43],[-18,-84],[-20,-50],[-20,-14],[-13,-32],[-6,-49],[11,-27],[32,-17],[-25,-24],[-31,-8],[-37,7],[-35,-19],[-33,-46],[-28,-98],[-23,-151],[-4,-39]],[[120646,76809],[-51,44],[-21,25],[-28,6],[-50,-58],[-58,-14],[-77,29],[18,-122],[-22,-48],[-48,-27],[-24,1],[-37,24],[-29,1],[-24,-12],[-23,-40],[-14,-126],[-13,-39],[-18,-22],[-67,-2],[-115,-48],[-86,-10],[-24,2],[-55,50],[-27,5],[-14,-14],[-11,-66],[-32,-43],[-43,-92],[-10,-135],[5,-95],[-39,-93],[-3,-45],[20,-217],[-11,-34],[-24,-7],[-81,-47],[-37,16],[-7,-16],[30,-93],[31,-45],[33,5],[22,-90],[30,-95],[8,-71],[-18,-71],[41,-106],[59,-103],[105,-204],[36,-64],[78,-120],[14,-56],[3,-114],[50,-151],[29,-128],[12,-18],[63,78],[23,-45],[0,-38],[-10,-42],[-20,-40],[-98,-90],[-7,-78],[-7,-119],[-2,-145],[5,-109],[-12,-37],[-37,5],[-53,-55],[-18,-5],[-41,-47],[-6,-39],[10,-119],[19,-113],[107,-238],[33,-78],[65,-87],[91,-129],[35,-72],[31,-86],[22,-74],[15,-153],[2,-184],[-30,-90],[7,-51],[22,-48],[0,-55],[20,-99],[33,-61],[32,-41],[14,-32],[-4,-52],[29,-197],[26,-70],[40,-215],[-18,-65],[-41,-52],[-51,-156],[-73,-197],[-71,-129],[-60,-92],[-43,-56],[-13,-33],[8,-72],[-3,-88],[-21,-115],[-7,-52]],[[120035,69759],[-19,-8],[-41,-101],[-18,51],[-11,52],[12,119],[-25,225],[30,45],[27,86],[33,85],[3,102],[27,75],[-6,62],[1,73],[6,60],[-2,49],[21,51],[37,38],[-31,42],[-48,-43],[-25,14],[-5,44],[9,76],[19,32],[-1,63],[-10,56],[14,68],[-28,1],[-13,13],[8,38],[26,34],[-24,64],[18,69],[-1,86],[-12,75],[1,54],[-18,96],[-9,123],[-38,91],[-28,133],[-76,174],[1,74],[-4,65],[-16,32],[-22,-231],[-17,45],[-5,129],[-11,62],[11,122],[-43,121],[-10,87],[-29,134],[9,29],[38,-30],[-35,78],[-29,-18],[-25,84],[-5,227],[-24,85],[13,86],[-27,310],[-55,100],[11,87],[14,76],[-3,142],[13,44],[-20,12],[-49,-9],[-56,-1],[-19,103],[-27,50],[-24,104],[-15,118],[10,23],[-43,48],[-11,30],[-45,77],[-51,58],[25,-67],[-26,-71],[25,-120],[-22,-76],[-20,-99],[-19,-48],[-62,-102],[-50,-34],[-32,-7],[-29,11],[-36,53],[-8,44],[-6,73],[-26,3],[21,-96],[0,-44],[38,-86],[-14,-24],[-68,-47],[-40,-2],[-13,-60],[-107,-59],[-22,-66],[-14,-68],[-53,-96],[-72,-80],[-38,23],[3,86],[24,73],[-13,34],[-47,-109],[-21,-36],[-42,10],[-59,-15],[-22,112],[-4,76],[-36,-82],[-59,-46],[-4,112],[13,47],[-2,76],[19,109],[-18,19],[-6,-62],[-33,-33],[-40,-72],[-23,-64],[-62,-60],[-32,6],[-4,77],[24,272],[25,38],[11,47],[20,159],[22,60],[9,126],[40,121],[10,181],[-12,91],[-29,87],[-27,263],[-71,212],[-6,71],[-35,86],[32,6],[-66,75],[-9,31],[-21,262],[-9,-61],[-26,-25],[12,-105],[-17,-66],[-56,42],[-40,46],[-47,113],[-45,126],[16,19],[21,3],[64,-94],[42,-20],[59,64],[16,77],[-16,29],[-32,15],[-21,21],[-30,53],[-13,61],[-30,24],[-25,31],[41,95],[-54,-2],[-94,103],[-49,8],[-40,-20],[19,-99],[-4,-33],[-26,5],[-55,151],[40,74],[-35,3],[23,134],[-14,19],[-19,-82],[-47,-94],[-39,41],[43,90],[-17,52],[-28,37],[-22,65],[-12,1],[11,-77],[-5,-110],[-49,122],[-99,172],[-23,52]],[[117396,77966],[24,23],[25,83],[35,-18]],[[117480,78054],[36,-66],[24,-15],[24,11],[24,99],[21,44]],[[117609,78127],[22,-3],[13,18],[5,90]],[[117649,78232],[-25,130],[-11,119],[36,132],[-5,63],[23,27]],[[117667,78703],[21,-15],[23,11],[18,38]],[[117736,78770],[11,144],[8,131],[3,107],[-19,64],[-28,173],[8,29]],[[117719,79418],[13,7],[42,-60]],[[117774,79365],[17,-10],[61,22],[21,1]],[[117873,79378],[74,-43],[67,-29],[28,-21]],[[118042,79285],[22,3],[19,67],[53,243],[36,106]],[[118222,79818],[39,90],[34,114],[19,82],[-1,34]],[[118313,80138],[-13,28],[-46,37],[-6,37],[30,115],[19,35]],[[118297,80390],[51,42],[32,54],[37,72],[20,48]],[[118437,80606],[10,100],[33,51],[17,38],[-27,104],[-8,109],[4,88],[30,86],[31,31]],[[118527,81213],[45,21],[68,59],[118,135],[72,67],[28,57],[39,62],[56,30]],[[118953,81644],[36,12],[169,43],[28,-6],[29,-24]],[[119215,81669],[35,-83],[32,-31],[36,-21],[28,9],[0,33],[-87,193],[-10,102],[9,40],[28,38]],[[119323,81992],[76,90],[34,12],[17,52]],[[119450,82146],[-2,34],[-16,39]],[[119432,82219],[8,92]],[[85997,92717],[47,-38],[70,-19],[97,-79],[43,-23],[31,-30],[2,-45]],[[85855,91815],[-67,56],[-28,78],[-98,131],[-112,90],[5,45],[-55,-7],[-34,63],[-1,25]],[[85465,92296],[42,42],[4,38],[-33,72]],[[85478,92448],[-10,133],[19,30],[59,11],[-1,68],[22,74],[77,80],[36,-5],[18,-37],[21,4],[4,46],[-41,97],[15,31],[45,-17],[49,11],[11,-58],[34,-25],[50,-49],[59,-91],[27,-27],[25,-7]],[[127779,97354],[-189,-455],[-90,-230],[-4,-40],[-31,-65],[-58,-78],[-12,-85],[2,-76],[-5,-68],[-112,-82],[14,-129],[26,-49],[41,-53],[80,-78],[41,17],[35,55],[67,47],[122,-13],[60,18],[46,3],[61,-11],[72,-33],[55,-46],[39,-51],[28,-10],[44,62],[44,44],[91,128],[31,8],[60,0],[72,20],[40,-20],[112,-11],[30,-28],[82,-130],[111,-50],[28,-22],[18,-66],[17,-23],[55,-37],[15,-44],[22,-20],[65,-87],[31,-23],[48,-51],[20,-41],[1,-44],[12,-34],[48,-84],[-6,-46],[5,-41],[-13,-42],[-69,-46],[-37,-2],[-63,16],[-61,-9],[-73,17],[-58,38],[-31,29],[-48,18],[-23,-9],[-30,-39],[-61,0],[-117,18],[-102,-35],[-69,-33],[-42,-57],[-31,-14],[-31,3],[-53,46],[-61,-12],[-31,-145],[-28,-7],[-125,7],[-51,18],[-31,-8],[-43,-38],[-54,-23],[-20,-56],[-68,-78],[-63,-146],[12,-63],[-18,-40],[-38,-37],[-30,-6],[-46,-36],[-109,-117],[-104,-26],[-119,-21],[-105,-8],[-77,29],[-41,-5],[-55,-34],[-13,-64],[-29,-49],[-60,-63],[-49,-43],[-59,-75],[-66,-32],[-96,-92],[-29,-13],[-123,32],[-108,13],[-148,51],[-47,24],[-42,65],[-38,33],[-128,3],[-35,13],[-58,-12],[-63,-66],[-56,-99],[-32,-107],[-25,-113],[-34,-64],[-3,-36],[36,-67],[14,-55],[71,-105],[66,-74],[41,-84],[0,-72],[-24,-22],[-46,-10],[-96,-118],[-19,-2],[-136,-70],[-78,-35],[-128,-187],[-35,-58],[-85,-123],[-13,-28],[-48,-21],[-99,-58],[-86,-37],[-69,-37],[-110,-68],[-45,-12],[-89,1],[-192,-17],[-60,9],[-162,13],[-47,-14],[-135,-18],[-197,-36],[-86,-20],[-80,-8],[-59,-14],[-108,-54],[-87,-50],[-193,-102],[-238,-155],[-51,-23],[-63,-85],[-30,-14],[-52,34],[-37,-2],[-119,12],[0,152],[-339,-88],[-275,178],[-214,60],[-180,46],[-80,40],[-40,53],[-71,121],[-23,24],[-71,27],[-79,-1],[-95,9],[-247,46],[-186,38],[-44,4],[-223,-76],[-224,34],[-301,47],[-228,36],[-221,37],[-250,-32],[-103,-16],[-14,19],[-5,71],[-18,55],[-57,60],[-38,57],[-72,77],[-23,48],[-7,75],[-67,195],[-41,132],[-28,70],[-24,22],[-49,14],[-14,23],[0,46],[18,109],[-7,12],[-129,-13],[-79,30],[-67,33],[-94,85],[-55,33],[-72,87],[-104,21],[-38,34],[-49,75],[-42,48],[-61,31],[-95,27],[-219,36],[-90,-17],[-66,-1],[-109,18],[-61,23],[-126,0],[-66,6],[-62,33],[-55,-4],[-39,18],[-36,34],[-38,17],[-42,-1],[-32,-14],[-11,46],[-39,75],[-5,34],[-38,74],[4,49],[16,94],[38,86],[24,22],[64,105],[-2,48],[-21,50],[-16,65],[3,37],[23,45],[27,98],[-13,46],[-8,107],[-50,143],[-66,35],[-95,195],[-12,86],[-18,67],[-34,65],[-14,55],[-53,18],[-38,30],[-32,92],[-30,6],[-21,-29],[-57,-12],[-60,57],[-33,66],[-36,17],[-64,-3],[-57,-30],[-64,15],[-56,60],[-35,9],[-113,82],[-4,68],[-21,47],[-44,13],[-45,48],[-142,58],[-4,33],[34,50],[-10,42],[-84,39],[-10,31],[-28,32],[5,26],[45,32],[5,25],[-24,55],[-1,57],[52,2],[78,64],[9,87],[24,49],[87,22],[25,-7],[78,9],[49,-28],[37,2],[13,55],[16,8],[47,-46],[74,41],[9,44],[18,22],[65,-11],[35,34],[77,40],[6,23],[-15,51],[4,55],[44,32],[57,3],[43,22],[12,59],[21,17],[73,16],[38,24],[88,43],[60,7],[45,58],[34,12],[79,64],[137,38],[32,-1],[14,37],[32,28],[33,9],[47,63],[42,20],[129,-2],[38,6],[31,52],[14,52],[25,10],[57,-69],[60,-53],[48,16],[18,47],[33,7],[37,-7],[29,-87],[40,-35],[72,8],[153,-21],[157,-11],[37,3],[76,-12],[15,-31],[26,-145],[3,-57],[20,-29],[25,-10],[46,-54],[21,-45],[45,14],[91,0],[36,-25],[13,-32],[29,-18],[24,6],[94,-2],[24,-18],[35,-3],[19,23],[61,15],[35,32],[27,1],[36,-37],[36,27],[20,0],[71,-31],[37,-37],[28,-4],[54,16],[40,-28],[48,23],[118,-20],[49,-54],[17,-30],[30,-22],[66,8],[78,70],[20,48],[57,23],[57,2],[36,34],[29,13],[43,44],[63,156],[18,129],[-5,32],[-58,25],[-50,53],[-29,86],[-4,60],[-55,91],[5,46],[32,79],[5,80],[10,48],[39,70],[29,24],[50,15],[8,51],[28,66],[21,31],[124,58],[52,72],[18,37],[20,78],[19,33],[28,-11],[33,-46],[24,-1],[37,-25],[99,-52],[135,-36],[87,-81],[49,-13],[187,-8],[29,-8],[158,-76],[138,-64],[68,-42],[35,13],[46,-3],[108,-32],[125,-47],[19,-28],[-6,-68],[4,-75],[19,-40],[13,-104],[-4,-50],[43,-77],[-13,-58],[1,-35],[21,-28],[57,-13],[33,-45],[59,-52],[76,-37],[78,-23],[52,-7],[31,-18],[31,-45],[50,-9],[91,-34],[73,26],[68,-13],[51,-2],[44,11],[75,73],[48,22],[56,8],[39,17],[125,28],[51,5],[74,49],[50,10],[133,-42],[79,-6],[89,-51],[59,-19],[153,17],[59,-12],[62,-44],[37,-36],[43,-77],[83,-68],[171,-4],[123,-25],[14,-16],[-6,-52],[1,-110],[31,-31],[11,-37],[77,-48],[83,-90],[50,-38],[40,-13],[51,9],[217,0],[93,-27],[33,-19],[200,-44],[89,-25],[52,32],[46,3],[44,-23],[43,-35],[85,20],[219,132],[40,-9],[63,24],[69,14],[148,19],[128,63],[51,12],[87,-17],[47,11],[108,65],[15,53],[31,72],[177,147],[68,38],[64,27],[82,72],[97,49],[39,-13],[72,-10],[52,3],[29,-9],[112,-66],[41,-55],[76,-77],[67,-36],[124,-11],[90,49],[90,41],[35,-1],[144,-62],[35,-30],[22,-37]],[[140089,72521],[-21,-32],[-25,17],[-3,19],[35,18],[14,-22]],[[140260,73087],[-18,-36],[-15,78],[27,20],[6,-62]],[[140299,73200],[-29,-6],[12,63],[31,29],[-1,-57],[-13,-29]],[[140310,75251],[5,53],[20,-13],[-25,-40]],[[140280,75727],[-24,-7],[-3,38],[19,-4],[8,-27]],[[91355,43976],[-3,222],[-25,121],[-3,46],[8,46],[4,73],[-3,64],[-49,42]],[[91284,44590],[-8,50],[-4,78],[28,99],[-2,189],[3,67],[-2,435],[2,124],[-16,91],[-18,65],[-21,137],[-26,103],[-32,68],[-21,84],[-31,84],[-25,49],[-7,40],[1,102],[-48,316],[-52,241],[-5,54]],[[91000,47066],[61,71],[133,220],[120,199],[152,253],[26,26],[-33,112],[53,129],[3,85],[-3,81],[7,37],[16,32],[61,68],[47,107],[38,101],[53,162],[6,77],[-14,54],[-36,89],[-26,77],[-22,118],[23,102],[8,96],[-11,31],[-47,40],[-7,42],[0,51],[10,28],[57,45],[19,52],[1,39],[18,97],[21,93],[2,33],[-14,81],[-4,79],[0,221],[11,228],[-5,130],[-36,148],[-4,108],[27,75],[4,44],[-59,10],[-30,14],[-46,62],[-79,51],[-90,47],[-130,13],[-109,150],[-85,24],[-28,19],[-81,90],[-261,17],[-83,2],[-12,12],[-5,124],[-1,110]],[[90616,51772],[-7,95],[-13,109],[-19,42],[-23,74],[-12,81],[3,53],[92,58],[40,28],[58,33],[197,87],[176,82],[82,56],[109,57],[31,19],[94,45],[259,139],[141,76]],[[91824,52906],[18,-20],[63,-172],[50,-101],[56,-93],[26,26],[118,30],[34,2],[23,25],[46,18],[53,10],[19,-11],[56,-121],[19,-226],[2,-152],[-6,-109]],[[92401,52012],[-46,-125],[-8,-62],[-25,-97],[-32,-47],[-16,-39],[1,-41],[55,-94],[12,-40],[-4,-83],[20,-52],[37,-31],[37,-78],[63,-95],[75,-134]],[[92570,50994],[35,-42],[28,-10],[14,-45]],[[92647,50897],[-8,-52],[-21,-30],[9,-43],[25,-34],[33,-2],[31,8],[8,15],[-4,202],[-22,117],[-27,55],[32,129]],[[92703,51262],[21,89],[29,60],[104,24],[47,21],[20,26],[15,70],[13,194],[4,182],[-10,106],[14,161],[23,100],[-11,19],[-8,134],[-155,328],[-104,211],[-100,177],[-46,64],[-25,25],[-81,20],[-22,34],[-20,54],[-8,100]],[[92403,53461],[-1,75]],[[92402,53536],[-9,128],[-17,180],[-7,53],[-46,265],[7,62],[64,163],[13,37],[22,100]],[[92429,54524],[5,49],[18,22],[72,9],[153,0],[102,-6],[37,-15],[54,16],[32,35],[35,55],[54,-1],[74,-58],[40,-50],[7,-43],[49,-24],[92,-7],[67,22],[42,51],[43,28],[46,3],[35,-18],[23,-38],[45,-28],[67,-16],[72,24],[79,66],[45,69],[11,71],[13,44],[15,15],[42,9],[69,2],[60,-22],[76,-71],[130,128],[83,43],[79,0],[65,31],[51,61],[53,39],[57,17],[52,29],[74,64],[205,248],[23,-71],[41,-66],[-54,-72],[47,-46],[-35,-69],[-4,-48],[17,-46],[-23,-79],[-31,-61],[-7,-46],[26,-82],[-13,-144],[26,-131],[16,-111],[-13,-80],[3,-135],[6,-55],[-15,-70],[26,-24],[14,-75],[-3,-86],[-9,-46],[-45,-56],[-5,-54],[57,-1],[-2,-91],[2,-76],[-7,-49],[13,-56],[-16,-61],[6,-110],[14,-157],[2,-193],[3,-31],[20,-22],[28,-11],[-1,-53],[-31,-69],[2,-103],[35,82],[21,-1],[19,-32],[-3,-47],[6,-24],[-2,-46],[10,-58],[-4,-51],[-26,-35],[-32,-61],[-6,-57],[3,-37],[-22,-12],[-11,-23],[15,-54],[0,-47],[-40,-148],[-106,-203],[-45,-71],[-43,-79],[-4,-59],[-50,-112],[-53,-18],[-30,-30],[23,-98],[-34,-23],[-60,-77],[-165,-149],[-26,-34],[-42,-91],[-55,-22],[-31,-26],[-55,-10],[-38,4],[-15,-20],[-109,-64],[-102,-50],[-25,-23],[-16,-32],[-90,-50],[-141,-124],[-116,-117],[-83,-118],[-22,-18],[-26,-41],[-17,-94],[-62,-124],[-93,-147],[-55,-122],[-4,-53],[-33,-17],[-27,51],[-12,-98],[-23,-7],[-25,20],[-62,-49],[-55,-56],[-87,-119],[-123,-230],[-180,-222],[-41,-5],[-56,77],[-31,6],[46,-84],[-5,-75],[2,-112],[-22,-219],[3,-47],[25,-62],[49,-76],[45,-94],[58,-271],[5,-140],[60,-178],[2,-77],[25,-192],[-2,-155],[-4,-95],[29,-40],[10,36],[-3,60],[8,97],[16,43],[16,-6],[16,-86],[5,-90],[-22,-196],[7,-79],[30,-133],[-35,-155],[-51,-364],[-3,-63],[12,-27],[28,-9],[10,46],[24,-28],[-22,-168],[-23,-73],[-79,-181],[-42,-77],[-71,-76],[-165,-119],[-333,-172],[-210,-134],[-166,-160],[-73,-107],[-30,-123],[-29,-56],[-28,-71],[49,-108],[62,-76],[29,126],[17,2],[-9,-117],[-21,-416],[-229,-9],[-66,20],[-38,-4]],[[92444,54299],[-21,29],[-22,-33],[17,-33],[18,0],[8,37]],[[92478,54231],[11,16],[5,40],[-18,19],[-15,-4],[-8,-64],[25,-7]],[[70473,76384],[-28,-67],[-12,25],[-5,45],[36,97],[21,12],[-12,-112]],[[75216,74001],[-41,-344],[-25,-204],[-354,0],[-176,0],[-176,0],[-175,0],[-264,0],[-263,0],[-170,0],[-50,4]],[[73522,73457],[-18,16],[-7,106],[-15,-7],[-27,-64],[1,-82],[-133,-39],[-80,-19],[-81,6],[-57,23],[-65,15],[-75,-2],[-47,-8]],[[72918,73402],[-16,-20],[-35,-79],[-35,-91],[-23,1],[-25,50],[-70,94],[-85,124],[-38,62]],[[72591,73543],[-21,8],[-74,-87],[-37,-60],[-16,-58],[-13,-68],[-6,-81],[-13,-93],[-29,-75],[-35,-57],[-36,-42],[-85,50],[-46,50]],[[72180,73030],[-22,60],[-36,44],[-50,30],[-32,35],[-16,38],[-38,39],[-1,68],[-30,79],[-27,36],[-37,4],[-11,42]],[[71880,73505],[-16,22],[-27,10],[-23,58],[-16,107],[-22,83],[-27,60],[-33,26],[-9,27],[-21,6],[-29,-18],[-26,6],[-13,29],[-18,3]],[[71600,73924],[-23,-24],[-26,7],[-27,38],[-15,38],[-3,37],[-48,75],[-92,113],[-101,52],[-109,-7],[-61,6],[-27,16],[-13,-21],[-39,-1],[-4,-29],[-39,-15],[-73,0],[-58,-18],[-45,-35],[-64,-15]],[[70733,74141],[-82,5],[-49,13],[-17,21],[-24,5],[-31,-11],[-27,-56],[-24,-101],[-20,-57],[-16,-14],[-16,-75],[-10,-125],[-14,-55],[0,312],[23,117],[8,102],[50,227],[60,185],[55,246],[21,238],[-7,233],[-16,208],[-28,137],[-27,199],[-40,104],[-74,92],[-16,53],[17,20],[45,14],[28,71],[-60,-27],[69,218],[22,149],[-3,98],[13,60],[-53,131],[-42,165],[-43,40],[-2,-39],[-12,-35],[-26,21],[-45,120],[-64,195],[-22,20],[-31,-52],[-21,-163],[-7,64]],[[70175,77214],[43,300],[253,1],[197,0],[297,1]],[[70965,77516],[296,0],[296,1],[198,0],[164,0],[-16,363],[-18,447],[-6,45],[-21,89],[-4,45],[5,46],[14,45],[39,81],[177,188],[26,14],[81,19]],[[72196,78899],[124,82],[26,22],[3,76],[0,274]],[[72349,79353],[0,284],[0,380],[0,284],[0,284]],[[72349,80585],[0,178],[305,0],[321,0],[321,0],[241,0],[248,0],[0,350],[0,295],[0,254],[243,-231],[162,-154],[162,-154],[243,-231],[243,-231],[162,-154],[148,-142],[299,-298],[-150,0],[-339,0],[-274,-1],[24,-331],[25,-347],[37,-519]],[[74770,78869],[24,-346],[25,-347],[36,-519],[25,-346],[24,-347],[37,-519],[25,-346],[24,-347],[25,-346],[37,-519],[24,-347],[24,-340],[116,-199]],[[50758,74319],[-3,-41],[-29,13],[0,36],[20,40],[12,-48]],[[102354,48400],[-54,-19],[-61,6],[-28,53],[20,15],[-1,48],[10,76],[13,31],[30,28],[13,61],[26,41],[35,5],[34,-76],[24,-79],[-5,-80],[-24,-29],[-8,-46],[-24,-35]],[[92478,54231],[-25,7],[8,64],[15,4],[18,-19],[-5,-40],[-11,-16]],[[92444,54299],[-8,-37],[-18,0],[-17,33],[22,33],[21,-29]],[[92581,54602],[-57,2],[-72,-9],[-18,-22],[-5,-49]],[[92429,54524],[-22,-100],[-13,-37],[-64,-163],[-7,-62],[46,-265],[7,-53],[17,-180],[9,-128]],[[92403,53461],[8,-100],[20,-54],[22,-34],[81,-20],[25,-25],[46,-64],[100,-177],[104,-211],[155,-328],[8,-134],[11,-19],[-23,-100],[-14,-161],[10,-106],[-4,-182],[-13,-194],[-15,-70],[-20,-26],[-47,-21],[-104,-24],[-29,-60],[-21,-89]],[[92703,51262],[-32,-129],[27,-55],[22,-117],[4,-202],[-8,-15],[-31,-8],[-33,2],[-25,34],[-9,43],[21,30],[8,52]],[[92647,50897],[-14,45],[-28,10],[-35,42]],[[92570,50994],[-75,134],[-63,95],[-37,78],[-37,31],[-20,52],[4,83],[-12,40],[-55,94],[-1,41],[16,39],[32,47],[25,97],[8,62],[46,125]],[[92401,52012],[6,109],[-2,152],[-19,226],[-56,121],[-19,11],[-53,-10],[-46,-18],[-23,-25],[-34,-2],[-118,-30],[-26,-26],[-56,93],[-50,101],[-63,172],[-18,20],[-23,51]],[[91801,52957],[-19,-13],[-26,-35],[-22,-9],[-31,96],[-23,47],[-44,39],[18,35],[-4,15]],[[91650,53132],[-11,23],[-43,32],[-1,14],[38,28],[41,65],[37,139],[12,22],[5,46],[-3,52],[12,129],[-23,66],[13,72],[20,49],[95,52],[67,46],[36,60],[13,39],[-9,12],[-52,1],[-13,14],[-38,137],[21,156],[1,137],[-7,56],[-26,53],[3,82],[15,9],[33,108],[15,63],[-18,51],[-33,134],[36,56],[51,20],[84,134],[1,27],[-15,44],[-31,68],[-7,28],[-4,81],[-12,25],[-46,54],[-36,58],[12,59],[5,64],[-43,71],[-23,93],[-21,16]],[[91801,55977],[-19,0],[-13,-24],[-33,10],[-7,72],[-25,60],[-1,18]],[[91703,56113],[23,9],[68,-70],[40,-4],[46,-13],[39,-61],[20,-9],[26,9],[73,6],[29,-8],[38,-37],[39,-6],[7,31],[-5,43],[20,49],[40,-30],[100,-134],[3,-18],[64,-134],[21,-56],[0,-30],[19,-117],[5,-55],[-4,-75],[5,-68],[23,-70],[11,-59],[2,-57],[-6,-56],[-20,-82],[-4,-33],[18,-62],[22,-35],[36,-115],[33,-7],[38,-77],[9,-80]],[[125499,64345],[-13,-9],[-21,25],[-4,211],[23,16],[10,-38],[1,-175],[4,-30]],[[122412,64565],[-32,-2],[-8,27],[24,73],[17,-68],[-1,-30]],[[121162,64744],[-22,-12],[2,43],[24,10],[-4,-41]],[[128195,65566],[6,57],[19,8],[23,-7],[53,-46]],[[120718,66350],[-11,-19],[-31,11],[5,114],[18,14],[41,-40],[-22,-80]],[[120528,67165],[31,-74],[-23,-43],[-18,11],[-18,-29],[-17,-6],[-17,52],[-20,21],[-5,35],[28,6],[17,-12],[42,39]],[[121499,67010],[74,-27],[29,-22],[83,-216],[110,-151],[47,-57],[36,-27],[50,-81],[43,-102],[94,-287],[16,-125],[7,-193],[-21,-290],[-25,-144],[5,-69],[34,-104],[-10,-99],[6,-82],[-2,-228],[20,-68],[22,-43],[119,-135],[8,-50],[59,-172],[108,-375],[30,-169],[-4,-45],[-13,-19],[-32,-16],[-26,33],[-6,53],[-11,28],[-26,35],[-10,-20],[0,-67],[-33,-5],[-42,20],[-53,-18],[-62,-82],[-30,-2],[-35,117],[-19,34],[-198,171],[-73,44],[-77,130],[-173,144],[-110,140],[-47,86],[-113,77],[-48,90],[-24,18],[-24,32],[25,88],[-10,91],[-13,77],[-80,153],[-39,106],[-75,106],[-30,61],[-28,71],[34,40],[-15,51],[-43,90],[-20,102],[0,195],[-60,272],[-52,379],[9,132],[-13,144],[-35,138],[-45,99],[-17,82]],[[120645,67149],[8,32],[10,107],[7,21],[36,7],[36,-92],[95,-58],[28,-13],[37,23],[34,-38],[9,-66],[25,-60],[50,8],[27,-10],[10,-53],[5,-93],[-5,-53],[-36,-77],[-5,-52],[57,-94],[33,22],[29,84],[63,44],[66,39],[19,-22],[21,-56],[30,-18],[31,6],[36,32],[18,60],[9,48],[51,81],[5,62],[15,40]],[[124741,64075],[28,-97],[11,-21],[62,-65],[52,-33],[56,-13],[56,-3],[45,18],[22,-14],[118,-106],[46,-19],[49,8],[19,-10],[69,-81],[20,-10],[33,6],[-71,63],[-12,50],[7,53],[28,35],[19,38],[7,114],[12,57],[22,55],[8,53],[-26,40],[-6,70],[6,57],[15,39],[47,-49],[39,12],[0,176],[30,75],[48,52],[45,25],[168,43],[267,108],[78,42],[29,22],[25,30],[41,96],[78,152],[54,125],[114,181],[92,169],[12,31],[15,92],[-1,87],[34,33]],[[127114,66075],[102,23],[62,81],[15,31],[12,70],[-50,42],[-19,53],[-1,57],[59,107],[20,26],[9,-38],[26,-10],[48,1],[35,54],[18,77],[60,110],[22,84],[12,88],[154,273],[19,43],[91,274],[11,9],[25,-26],[7,-87],[-4,-39],[-14,-56],[2,-58],[43,36],[45,96],[26,83],[22,37],[43,-21],[10,-14],[-3,-60],[21,-109],[37,-45],[51,-28],[48,-41],[16,-27],[20,-86],[1,-54],[-34,-53],[14,-86],[-2,-50],[-12,-42],[-50,-39],[137,38],[33,23],[47,56],[25,-49],[23,-84],[-19,-21],[-59,-31],[17,-57],[25,4],[48,30],[45,46],[45,-10],[45,-30],[46,-55],[13,-64],[51,-23],[105,-91],[40,-9],[56,11],[19,-13],[14,-33],[5,-40],[-8,-76],[-13,-27],[-37,-41],[-95,-54],[-103,-41],[-52,2],[-73,36],[-53,-21],[-32,-112],[60,-111],[102,-116],[14,-29],[-3,-35],[-38,-33],[-116,-33],[-48,-19],[-47,-26],[-49,8],[-66,52],[-20,4],[-20,-27],[-20,-72],[-12,-21]],[[127976,67654],[-26,-37],[-9,45],[2,57],[36,53],[50,10],[7,-42],[-6,-49],[-11,-25],[-43,-12]],[[87594,50381],[181,56],[204,55],[198,-26],[86,-18],[30,-17],[38,-46],[72,-111]],[[86130,45412],[0,-292],[0,-310],[0,-310],[0,-309],[0,-310],[0,-310],[0,-310],[0,-309]],[[86130,42952],[0,-98],[-44,1],[-89,-38],[-57,-49],[-24,-61],[-33,-37],[-41,-13],[-18,-31],[5,-49],[-15,-37],[-37,-26],[-58,8],[-81,41],[-102,9],[-125,-21]],[[85411,42551],[-90,10],[-54,42],[-58,24],[-62,6],[-108,49],[-22,94],[-21,43],[-2,34],[16,27],[2,42],[-11,58],[-20,29],[-29,-2],[-18,22],[-7,47]],[[84927,43076],[-16,35],[-41,35],[-52,-27],[-25,-40],[-15,-64],[-14,-31],[-9,-91],[-14,-40],[-56,-25],[-60,-59],[-17,-31],[-48,56],[-141,212],[-50,56],[-74,130],[-163,403],[-23,78],[-31,194],[-36,145],[-4,83],[17,47],[-10,65],[-19,57],[-55,75],[-16,250],[-37,162],[8,134],[-18,122],[-1,78],[8,149],[-30,170],[-60,167],[-55,241],[-8,106],[6,284],[-10,115],[0,136],[-21,141],[-9,77],[15,61],[25,-28],[10,81],[3,71],[-27,177],[-61,180],[-150,294],[-37,112],[-21,93],[-167,388],[-72,273],[-50,236],[-54,109],[-252,767],[-56,123],[-100,146],[-23,49],[-39,139],[-76,187],[-18,175],[-5,198],[9,151],[69,16],[48,40],[43,3],[43,-31],[63,2],[81,-4],[102,72],[32,32],[45,33],[59,33],[34,-3],[96,-25],[31,-22],[37,-71],[58,-64],[42,-38],[62,-70],[35,-14],[171,15],[252,-1],[330,-1],[329,0],[330,-1],[232,-1],[242,-4],[39,-31],[43,-88],[56,-93],[47,-44],[55,-26],[53,-10],[48,7],[81,-12],[113,-30],[117,-9],[122,12],[86,-16],[49,-45],[51,-31],[51,-16],[71,9],[88,35],[75,-5],[35,-25],[21,-1],[234,67],[285,86],[326,98]],[[149684,46911],[-13,-26],[-39,30],[9,53],[37,-26],[6,-31]],[[149885,47742],[21,-13],[35,3],[-8,-119],[-50,-19],[-17,1],[-11,25],[-28,16],[2,41],[-28,91],[73,16],[11,-42]],[[149623,47930],[-24,-6],[-31,50],[-60,25],[-27,45],[-17,52],[34,12],[34,71],[-23,26],[-40,4],[5,28],[64,32],[28,-19],[12,-22],[-2,-111],[29,-35],[30,-79],[-12,-73]],[[149255,48251],[-23,-6],[28,63],[0,39],[11,77],[17,23],[20,-22],[-23,-20],[-7,-33],[9,-49],[-14,-46],[-18,-26]],[[148245,48567],[49,-44],[52,18],[65,-68],[167,-209],[59,-44],[34,-17],[26,-35],[24,-48],[32,-34],[13,-31],[4,-43],[11,-26],[58,-70],[35,-60],[48,-31],[21,-37],[27,-17],[28,-37],[46,-29],[106,-107],[82,-101],[40,-63],[44,-56],[57,-44],[52,-51],[27,-120],[-15,-42],[-30,-22],[-28,-1],[-26,-14],[-88,77],[-21,11],[-23,-5],[-22,42],[-54,28],[-50,46],[-34,93],[-71,33],[-47,38],[-34,53],[-53,37],[-83,76],[-43,25],[-37,38],[-100,138],[-36,26],[-31,61],[-86,146],[-41,60],[-45,54],[-35,62],[-26,74],[-62,107],[-8,45],[3,47],[-15,30],[-25,18],[-12,31],[10,64],[61,-72]],[[146414,49217],[-10,96],[14,41],[6,-86],[-10,-51]],[[83976,78675],[47,-403],[36,-345],[4,-278],[15,-39],[33,-39],[135,-318],[-28,-55],[20,-99],[35,-42],[112,-190],[15,-37],[-6,-30],[-79,-223],[-14,-55],[-15,-285],[-27,-476],[-18,-330],[-14,-279],[-20,-368],[-18,-348],[-113,-191],[-200,-339],[-163,-276],[-82,-185],[-160,-361],[-71,-234],[-55,-122],[-28,-52],[68,-471]],[[83385,72205],[-78,-2],[-44,-21],[-56,-68],[-63,-27],[-76,-60],[-48,-47],[-45,-38],[-62,-92],[-21,-70]],[[82892,71780],[-62,-14],[-86,12],[-55,70],[-128,74],[-83,30],[-38,9],[-196,12],[-208,-28],[-125,-42],[-60,-45],[-50,-49],[-135,-226],[-178,7],[-106,26],[-89,35],[-127,105],[-155,162],[-60,22],[-54,12],[-18,-2]],[[80879,71950],[-186,-161],[-35,4],[-44,-18],[-50,-60],[-52,6],[-28,24],[-29,45]],[[80455,71790],[-76,178],[-49,85],[-55,82],[-37,38],[-23,10],[-27,-6],[-149,71],[-149,75],[-56,-26],[-52,-55]],[[79782,72242],[-61,-10],[-77,4],[-42,8],[-68,-19],[-46,-22],[-59,-37],[-77,-102],[-41,-31],[-26,-280],[-21,-84],[-39,-111]],[[79225,71558],[-77,-106],[-53,-64],[-5,-229],[-1,-98],[3,-63],[-12,-58],[3,-41],[20,-46],[-5,-21],[-25,-25]],[[149855,42459],[22,-17],[-5,-23],[-26,-5],[9,45]],[[80669,65740],[-42,-22],[-27,5],[37,93],[19,-20],[25,-8],[-12,-48]],[[80455,71790],[29,-45],[28,-24],[52,-6],[50,60],[44,18],[35,-4],[186,161]],[[80879,71950],[18,2],[54,-12],[60,-22],[155,-162],[127,-105],[89,-35],[106,-26],[178,-7],[135,226],[50,49],[60,45],[125,42],[208,28],[196,-12],[38,-9],[83,-30],[128,-74],[55,-70],[86,-12],[62,14]],[[82892,71780],[21,70],[62,92],[45,38],[48,47],[76,60],[63,27],[56,68],[44,21],[78,2],[140,-310]],[[83525,71895],[57,-126],[41,-324],[11,-115]],[[83634,71330],[5,-44],[33,-19]],[[83672,71267],[61,-9],[45,-32],[26,-53],[17,-49],[3,-30],[-4,-85],[-9,-109],[-15,-70],[9,-96],[-10,-69],[-27,-32],[-37,-31],[-90,-93],[-25,-14],[-37,-2],[-33,-23],[-38,-50],[-83,-186],[-71,-187],[-24,-154],[-28,-148],[-62,-94],[-9,-53],[-12,-219],[-10,-57],[-10,-17],[-67,-35],[-39,-43],[-23,-86],[-9,-92],[-13,-106],[-8,-92],[-10,-48],[-22,-50],[-35,-55]],[[82973,68698],[-29,-30],[-77,-20],[-74,-218],[-1,-38],[-32,-199],[-56,-149],[-4,-96],[-89,-171]],[[82593,67727],[40,-109],[-121,-158],[-7,-24],[-5,-110]],[[82500,67326],[-32,-69],[-33,-44],[-33,-35],[-38,-23],[-36,-9],[-20,14],[-12,33],[-20,134],[-10,29],[-24,26]],[[82242,67382],[-93,147],[-56,52],[-22,-18],[-16,-74],[-16,-28],[-30,-9],[-51,-1],[-38,11],[-27,73],[-116,-135],[-40,-30],[-52,-159],[-73,-79]],[[81612,67132],[-50,-69],[-135,-216],[-27,-63]],[[81400,66784],[-27,-96],[-33,-220],[-25,-186],[-37,-105],[-56,-149],[-13,-54],[-17,-21],[-36,15],[-16,47],[-23,8],[-38,69],[-8,-12],[40,-175],[-15,-68],[-114,-2],[-98,-23],[-67,2],[-34,25],[-15,66],[-9,-42],[-22,-28],[-75,-5],[-34,45],[-27,50],[-24,1],[33,-49],[-4,-70],[-61,-82],[-39,-5],[-24,36],[-12,57],[-6,85],[-16,55],[-9,0],[11,-92],[0,-86],[29,-67],[-44,-20],[-54,-3],[-13,80],[-10,15],[-10,-94],[-40,-6],[-70,-20],[-19,21],[8,26],[-2,42],[-24,-32],[-4,-65],[-14,-10],[-41,9],[-46,33],[-74,82],[-91,133],[-15,60],[-26,73],[-19,75],[-28,127],[30,-1],[10,19],[-38,14],[-8,14],[-1,100],[58,28],[21,67],[-71,-51],[-66,58],[-14,34],[7,27],[77,2],[10,35],[-29,-1],[-20,49],[-12,-37],[-45,-27],[-26,27],[-8,88],[-22,21],[-78,159],[-98,133],[-87,92],[-132,43],[-275,-1],[2,33],[24,14],[88,74],[-15,10],[-92,-46],[-31,-5],[-41,-89],[-242,-14],[-29,-5],[1,41],[12,117],[17,80],[-19,99],[-4,88],[15,61],[-3,53],[0,175],[15,57],[-28,97],[0,75],[-5,72],[-10,33],[7,122],[4,156],[-3,68]],[[78689,68492],[9,49],[4,120],[0,117],[18,186],[116,24],[28,73],[16,92],[-5,91],[38,80],[45,70],[-1,78],[34,42],[31,9],[35,38],[19,68],[19,109],[-30,75],[12,57],[18,41]],[[79095,69911],[15,13],[33,-11],[11,16],[22,120]],[[79176,70049],[-2,32],[-31,80]],[[79143,70161],[-10,142],[-8,75]],[[79125,70378],[-9,28],[-24,39],[-65,153],[1,72],[27,92],[18,45],[25,25],[5,21],[-20,46],[-3,41],[12,58],[-3,63],[1,98],[5,229],[53,64],[77,106]],[[79225,71558],[39,111],[21,84],[26,280],[41,31],[77,102],[59,37],[46,22],[68,19],[42,-8],[77,-4],[61,10]],[[79782,72242],[52,55],[56,26],[149,-75],[149,-71],[27,6],[23,-10],[37,-38],[55,-82],[49,-85],[76,-178]],[[40595,70366],[0,18],[-36,77],[-57,92],[-219,283],[-80,170],[-43,122],[-41,63],[-119,130],[-27,51],[-117,174],[-89,102],[-1,43],[36,54],[18,-3],[20,-38],[32,-44],[37,20],[0,20],[120,9],[21,11],[22,32],[11,45],[7,73],[19,30],[62,13],[8,20],[-8,65],[-18,203],[16,45],[53,8],[101,-13],[19,10],[40,90],[38,66],[27,30],[21,9],[24,-59],[85,-84],[23,10],[1,51],[21,35],[44,32],[44,56],[45,80],[38,47],[33,14],[12,22],[-7,30],[2,42],[13,55],[19,31],[35,26],[0,54],[22,47],[54,40],[31,-14],[25,-53],[36,-37],[47,-19],[36,7],[26,34],[23,10],[32,-6],[11,35],[21,-15],[33,3],[21,38],[40,-10],[46,16],[50,43],[33,19],[16,-5]],[[41503,73021],[20,22],[23,48],[52,22],[111,-10],[-25,-43],[-27,-83],[-12,54],[-16,8],[-19,-22],[-11,-31],[17,-42],[32,-11],[48,-285],[-10,-51],[-58,-146],[-28,-42],[-36,-180],[-31,-291],[23,-262],[-12,-242],[10,-58],[3,-71],[-37,-10],[-13,43],[1,39],[14,45],[-14,23],[-40,-42],[-16,-35],[17,-66],[21,-49],[7,-35],[-8,-41],[-5,-142],[-15,24],[-22,1],[-1,-89],[-26,-49],[33,-28],[21,2],[17,-70],[5,-57],[-40,-52],[-36,-97],[-17,-89],[16,-118],[27,-84],[24,-53],[31,-11]],[[4392,49376],[-44,-38],[-19,46],[17,57],[32,17],[18,-53],[-4,-29]],[[48149,71119],[-21,-78],[-12,35],[-2,62],[-9,24],[-27,36],[0,31],[65,-49],[6,-61]],[[78967,98436],[33,11],[70,4],[55,-21],[72,-10],[55,29],[43,-25],[50,18]],[[79225,98688],[42,-38],[13,-25],[-54,-15],[-57,46],[-37,-11],[-15,36],[39,12],[69,-5]],[[79629,99615],[-43,-50],[-33,26],[13,38],[63,64],[0,-78]],[[79345,98442],[-95,40],[-79,-24],[-56,28],[-46,3],[-59,60],[43,34],[84,5],[61,-15],[110,-83],[57,11],[-15,23],[-68,33],[-33,31],[77,10],[-21,43],[-81,96],[60,128],[53,45],[72,96],[46,78],[34,93],[50,256],[39,92],[52,-23],[74,36],[128,95],[38,82],[37,38],[147,74],[81,22],[126,6],[90,13],[109,5],[66,-80],[38,-18],[60,-13]],[[80106,97999],[-85,3],[-44,14]],[[80078,99885],[-85,-11],[-10,21],[72,1],[23,-11]],[[79715,104654],[1,-83],[-39,6],[-23,52],[-6,97],[26,28],[26,-44],[15,-56]],[[79660,105195],[-69,-2],[11,67],[40,14],[24,-35],[-6,-44]],[[81014,106763],[-92,10],[-36,43],[116,40],[27,-28],[2,-45],[-17,-20]],[[81173,106993],[-50,-2],[-29,16],[70,31],[111,29],[44,-2],[-10,-47],[-136,-25]],[[82362,107827],[-23,-19],[-50,15],[-99,-12],[-40,19],[32,37],[89,39],[48,-2],[49,-47],[-6,-30]],[[82679,108357],[-28,-22],[-54,7],[10,55],[32,15],[55,-18],[-15,-37]],[[82912,108549],[-34,26],[51,43],[86,7],[-13,-33],[-90,-43]],[[82874,108647],[-34,26],[33,29],[18,44],[29,18],[40,-23],[1,-39],[-20,-35],[-67,-20]],[[83111,109922],[-63,-37],[57,135],[48,39],[23,-15],[-10,-65],[-55,-57]],[[83499,110194],[93,-8],[-25,-46],[-61,-13],[-47,-44],[-84,-8],[-83,-51],[-70,-18],[-13,64],[44,51],[55,2],[47,60],[65,17],[79,-6]],[[84074,110666],[82,-111],[-21,-77],[-54,-39],[-143,-4],[-64,46],[-96,-31],[-50,21],[-13,34],[78,75],[107,-20],[30,86],[71,-14],[0,74],[59,-13],[14,-27]],[[84312,110400],[64,62],[65,21],[29,46],[10,67],[77,24],[65,-51],[29,-61],[-12,-58],[-78,-45],[-62,-21],[-121,-103],[-64,13],[-35,-37],[-106,-30],[-41,9],[-27,34],[-39,-44],[-65,-20],[-48,17],[-128,-75],[-120,-14],[-40,8],[0,46],[141,100],[220,29],[137,121],[33,132],[32,48],[-52,32],[-2,41],[19,45],[111,88],[65,75],[67,17],[35,-20],[-6,-40],[-53,-72],[-78,-61],[10,-45],[31,-36],[10,-122],[-60,-81],[-13,-39]],[[85063,111121],[52,-40],[69,17],[62,-39],[33,-2],[31,-76],[-58,-46],[-9,-38],[13,-53],[-77,-18],[-88,-9],[-35,26],[-70,-47],[-70,-72],[-87,30],[-64,1],[13,29],[56,18],[11,36],[-10,66],[12,54],[35,25],[120,-12],[5,40],[-62,27],[10,19],[87,18],[21,46]],[[90426,111261],[-91,-4],[40,79],[33,-2],[61,-44],[-43,-29]],[[86474,111465],[-59,-23],[-77,13],[-22,55],[35,34],[69,19],[71,-18],[-17,-80]],[[85818,111448],[38,-38],[67,25],[46,-20],[-6,-34],[-65,-43],[-46,-61],[-88,-7],[-53,-35],[-87,-84],[-9,-42],[-220,-30],[-62,15],[-20,48],[62,6],[2,29],[50,63],[71,1],[80,39],[-5,46],[121,106],[46,30],[-6,56],[31,54],[34,2],[16,-48],[3,-78]],[[86038,111553],[62,-10],[76,-70],[-35,-18],[-97,1],[-30,61],[24,36]],[[87695,111785],[11,-60],[-40,-39],[-167,-87],[-22,53],[-82,18],[10,42],[35,29],[59,20],[38,-7],[129,78],[29,-47]],[[87869,111797],[-82,-28],[-68,49],[8,87],[39,17],[129,-67],[-26,-58]],[[87620,111970],[-23,-43],[-137,-111],[-103,-37],[-75,12],[-42,-30],[-86,-1],[-82,33],[-75,67],[154,0],[30,31],[65,-4],[123,22],[46,-12],[104,73],[82,19],[19,-19]],[[90820,111251],[23,-91],[-27,-79],[-106,-4],[-101,36],[-66,34],[-41,-118],[-59,-50],[-70,-22],[-191,-44],[-77,-140],[-39,-32],[-66,-20]],[[86406,110731],[-217,-11],[95,-84],[-8,-101],[-74,-103],[-77,-45],[117,-45],[-117,-84],[-43,4],[-263,71],[-89,20],[-121,5],[-169,43],[-93,-24],[-7,-42],[13,-186],[-22,-47],[-90,-117],[-255,97],[-66,-52],[-167,-94],[-85,-185],[-56,-54],[-113,-32],[-29,-55],[101,-121],[32,-68],[-14,-69],[-71,-55],[-152,-145],[-141,-151],[-58,-43],[26,-128],[-47,-38],[-95,-42],[-101,-26],[-162,-17],[40,-198],[-1,-36],[-36,-102],[-30,-240],[-55,-91],[-102,-157],[-200,-254],[96,-47],[88,-34],[18,-54],[12,-88],[-3,-61],[-78,-111],[-284,43],[-135,-17],[-84,-36],[-56,-41],[-155,-188],[-55,-52],[16,-72],[-91,-140],[60,-141],[34,-61],[-47,-57],[13,-138],[-11,-90],[82,-213],[-5,-83],[-59,-311],[142,-102],[48,-22],[69,-67],[53,-65],[-22,-91],[-63,-122],[-93,-3],[-75,-28],[9,-76],[57,-141],[46,-101],[15,-66],[-31,-101],[-13,-138],[-83,-97],[-53,-38],[-78,-15],[-24,-20],[-43,-115],[-66,-74],[2,-25],[49,-185],[-37,-189],[-30,-64],[-43,-23],[-31,11],[-36,89]],[[82429,103769],[-9,47],[-158,42],[-71,13],[-40,78],[-42,65],[-6,27],[2,122],[-13,54],[-31,11],[16,-76],[-33,-32],[-41,-15],[21,-53],[3,-46],[-10,-68],[-81,-152],[-27,-36],[-42,13],[-53,-42],[-50,-7],[-19,48],[-71,63],[-33,-3],[60,-72],[-34,-44],[-133,-63],[37,-35],[-31,-41],[-36,-6],[-27,-44],[-107,-73],[-175,-188],[-91,-53],[-62,-55],[-56,1],[-70,-46],[-176,-42],[-117,19],[-82,-16],[-43,32],[4,50],[-48,8],[-30,-60],[-61,21],[-15,18],[22,37],[37,33],[-14,27],[-117,3],[-144,75],[-33,40],[-117,63],[-52,68],[-29,74],[2,67],[14,106],[25,26],[104,-37],[105,-62],[17,3],[33,49],[64,39],[-18,11],[-96,-45],[-90,75],[34,88],[-13,33],[6,45],[42,48],[64,49],[46,47],[-11,20],[-52,-31],[-61,-52],[-74,-43],[-121,-43],[-42,-61],[-45,-26],[-81,-3],[-18,45],[23,158],[24,77],[27,55],[43,9],[29,40],[47,-19],[83,-18],[40,51],[54,8],[97,51],[-2,9],[-163,-26],[-30,10],[-14,38],[22,35],[92,82],[50,70],[12,71],[90,83],[73,38],[24,-33],[-21,-102],[58,107],[55,61],[8,32],[-198,-57],[-83,-51],[-23,-39],[-85,-97],[-12,-56],[-32,-30],[-44,-12],[-61,-71],[-27,-57],[-112,-93],[-21,-35],[-32,18],[3,116],[30,51],[14,50],[-20,46],[14,30],[73,-15],[51,2],[84,37],[-14,22],[-103,0],[-57,36],[-44,71],[-20,96],[13,27],[163,97],[-42,-5],[-88,-33],[-55,46],[-29,50],[-16,105],[6,54],[-7,71],[37,23],[83,-17],[94,7],[206,42],[133,-25],[54,2],[82,37],[73,4],[54,-28],[61,-61],[-2,53],[217,60],[26,23],[-87,8],[-24,55],[-31,-12],[10,-49],[-10,-22],[-44,-11],[-99,-4],[-123,32],[-49,27],[-22,-63],[-47,-14],[-130,23],[-187,-14],[-85,-31],[-54,4],[-94,55],[-37,44],[-13,89],[5,39],[73,16],[37,-1],[35,21],[-74,40],[-29,53],[-44,18],[-30,45],[-8,69],[9,48],[24,16],[56,-11],[150,8],[142,-48],[95,-28],[195,14],[113,43],[-20,12],[-124,-25],[-114,1],[-201,49],[-82,16],[-89,-7],[-46,15],[-27,48],[20,93],[42,20],[50,-25],[55,60],[21,50],[79,48],[82,26],[31,-7],[45,-40],[54,3],[159,37],[49,43],[-101,-14],[-85,-22],[-54,-6],[-7,27],[51,51],[15,44],[35,19],[114,7],[54,12],[233,-25],[89,-41],[70,15],[-54,32],[4,43],[115,34],[125,7],[-21,28],[-275,-42],[-71,29],[-57,-1],[-37,-16],[-105,-19],[-20,14],[20,48],[98,117],[164,45],[79,53],[124,10],[103,-15],[48,-67],[43,-21],[134,-83],[-6,24],[-116,113],[-45,27],[-33,56],[11,52],[38,35],[133,18],[24,21],[2,34],[-20,24],[-49,-2],[-40,15],[-12,38],[17,25],[76,46],[115,31],[126,-36],[10,-20],[-36,-45],[35,-29],[72,77],[85,11],[76,27],[58,-70],[45,-31],[18,-59],[44,26],[112,26],[108,-15],[73,9],[-37,68],[22,46],[98,51],[71,15],[109,60],[-27,49],[-57,16],[121,73],[-65,31],[-100,-42],[-69,-47],[57,-52],[-48,-53],[-257,-138],[-122,-41],[-56,6],[-68,124],[-86,5],[20,62],[41,48],[67,37],[32,45],[31,70],[97,68],[142,166],[116,53],[42,58],[68,25],[58,46],[46,4],[83,41],[16,51],[-114,-44],[3,52],[20,53],[60,49],[289,141],[63,-64],[87,9],[99,80],[-10,36],[-88,-49],[-63,-2],[-13,33],[-58,4],[-29,23],[-5,58],[65,143],[31,43],[122,123],[26,67],[56,35],[71,-8],[22,11],[-25,43],[-78,35],[-5,22],[260,57],[124,-2],[37,29],[67,18],[51,35],[-26,16],[-126,-33],[-142,-25],[-100,-4],[-22,139],[16,76],[37,-2],[9,72],[43,43],[59,9],[74,55],[72,-8],[55,25],[-91,23],[-23,39],[68,37],[31,3],[61,75],[37,32],[42,-5],[58,33],[57,-11],[55,21],[75,15],[276,5],[8,31],[-58,7],[-205,8],[-148,-9],[-14,30],[132,140],[89,52],[69,-13],[72,-50],[124,-28],[50,54],[-13,15],[-75,-19],[-58,20],[-45,40],[-13,38],[55,55],[-18,21],[-114,-58],[-80,-13],[-31,8],[17,52],[-10,42],[108,102],[37,11],[60,-8],[55,-28],[95,19],[-7,28],[-107,11],[-18,45],[74,24],[73,43],[84,12],[67,33],[24,-20],[25,-120],[60,-98],[-1,79],[49,43],[-49,57],[-36,95],[12,25],[80,51],[99,11],[106,-35],[99,9],[205,55],[-62,24],[-97,-16],[-266,5],[-30,46],[59,65],[101,42],[106,5],[112,74],[42,55],[25,86],[68,68],[171,40],[-10,117],[47,75],[45,30],[82,-77],[70,-30],[92,-5],[24,14],[-71,30],[-54,39],[-4,39],[25,21],[90,2],[47,26],[20,70],[69,60],[211,40],[15,-16],[-12,-117],[-24,-76],[42,0],[55,152],[41,71],[47,41],[110,43],[27,-54],[-23,-133],[2,-42],[-26,-56],[-101,-126],[66,11],[125,119],[110,-5],[-77,68],[-13,42],[5,110],[33,44],[151,2],[26,-20],[56,1],[39,79],[77,7],[68,-52],[166,-72],[-36,118],[-38,43],[-84,22],[-90,54],[-19,41],[79,16],[104,-19],[93,44],[25,-12],[71,23],[71,-22],[16,42],[114,26],[110,-49],[45,-141],[91,-76],[62,19],[-49,59],[18,71],[22,28],[121,106],[102,55],[61,5],[106,123],[58,28],[-7,30],[-58,19],[-2,37],[76,46],[93,76],[75,-16],[91,-34],[96,-60],[74,48],[57,-8],[86,-33],[5,-25],[-50,-28],[-168,-156],[-28,-44],[-27,-115],[-66,-74],[-5,-52],[27,-24],[72,19],[89,69],[22,73],[223,198],[105,110],[119,91],[66,18],[32,-60],[-26,-78],[-50,-50],[37,-23],[-26,-127],[35,-22],[140,62],[68,118],[15,44],[54,42],[103,0],[3,16],[-123,58],[-15,26],[42,34],[114,66],[94,-22],[141,-12],[108,-47],[-4,-74],[-48,-49],[-138,-56],[20,-37],[94,27],[24,-25],[-30,-63],[-16,-202],[62,109],[55,40],[21,82],[53,98],[61,57],[35,16],[117,-3],[50,-21],[77,-67],[104,-20],[68,-44],[70,37],[45,5],[75,-56],[-11,-55],[90,3],[75,-16],[142,-86],[15,-40],[-7,-48],[-205,-53],[-88,-51],[-146,-20],[-493,34],[10,-37],[344,-80],[19,-23],[-11,-49],[6,-65],[68,-36],[156,12],[11,66],[72,-4],[59,-28],[166,-8]],[[88544,112197],[115,-26],[40,0],[81,-76],[-161,-29],[-77,5],[-43,41],[-72,10],[47,44],[70,31]],[[73668,111986],[-62,11],[58,43],[191,80],[76,76],[147,26],[0,-95],[-129,-42],[-144,-28],[-137,-71]],[[85802,114459],[-52,-27],[-78,41],[-52,52],[28,20],[138,3],[40,-43],[-24,-46]],[[86831,117387],[59,-17],[128,4],[71,-118],[40,-125],[64,-9],[233,26],[56,-10],[143,-62],[-129,-42],[-15,-68],[92,-23],[152,-58],[86,-7],[153,24],[286,-99],[-333,-69],[-124,-112],[-145,-67],[-54,-14],[-120,3],[-129,-76],[-107,-6],[-54,34],[25,31],[-19,48],[102,49],[23,27],[-122,23],[-169,-49],[-433,-42],[-53,13],[-24,74],[142,37],[21,64],[154,143],[-171,62],[-76,37],[-82,75],[-25,60],[-111,51],[14,65],[-81,-5],[-62,46],[58,26],[294,29],[176,28],[66,-1]],[[89100,117424],[-63,-2],[-117,52],[-22,44],[77,19],[87,-61],[94,-18],[-56,-34]],[[82370,117397],[5,-48],[70,5],[83,-51],[90,-27],[99,-91],[26,-51],[-65,-5],[-90,72],[-165,77],[-109,17],[-143,155],[-69,47],[-30,104],[92,-11],[81,-29],[83,-84],[-32,-27],[74,-53]],[[90035,117607],[280,-5],[-167,-37],[-185,20],[-166,5],[-197,-41],[-64,16],[100,40],[109,13],[17,24],[186,6],[87,-41]],[[84754,118300],[78,36],[109,-13],[154,-39],[111,-59],[52,-66],[-116,-119],[12,-72],[63,5],[177,114],[133,-21],[72,-58],[36,-72],[-25,-86],[136,-72],[173,13],[112,-20],[61,-63],[95,14],[21,48],[128,-12],[133,-48],[-115,-55],[95,-52],[159,-37],[95,-40],[33,-38],[-126,-45],[-159,-3],[-146,-20],[-266,-14],[-167,-100],[-140,-112],[-43,-95],[17,-70],[-75,-28],[-107,5],[-58,-16],[0,-58],[-33,-181],[-58,-111],[-164,-18],[-96,-68],[-78,-121],[-125,-123],[42,-56],[-118,-109],[37,-107],[-55,-36],[-101,-19],[-102,21],[-97,64],[-298,129],[-182,138],[-326,104],[-95,71],[-61,76],[-4,44],[33,39],[132,10],[137,-38],[97,115],[553,65],[178,11],[179,-1],[-78,80],[-342,-45],[-100,0],[-104,15],[-104,-8],[-106,-34],[-213,-29],[-221,3],[-129,57],[-33,46],[-14,76],[61,39],[183,-9],[322,55],[149,49],[154,5],[-18,49],[94,28],[118,10],[270,-2],[98,13],[-202,56],[-37,38],[144,111],[-109,-5],[-161,-82],[-92,-32],[-113,-15],[-113,2],[-60,56],[-6,38],[55,78],[-72,8],[-38,-47],[-106,-18],[-87,57],[-96,-32],[21,-66],[-36,-61],[89,-54],[-118,-38],[-109,-62],[-196,-18],[-218,-5],[-209,102],[-99,68],[-76,78],[-128,33],[-81,52],[-8,66],[46,14],[-214,83],[79,23],[313,-55],[56,34],[-154,21],[-52,65],[-14,53],[82,80],[-46,17],[-171,-6],[16,-55],[-41,-37],[-135,-15],[-44,72],[-56,50],[-38,77],[-65,73],[32,84],[-54,64],[77,44],[138,-53],[28,45],[195,25],[172,-58],[76,55],[139,-30],[65,2],[153,39],[252,20],[95,-31],[-3,-45],[-56,-26],[-318,-21],[-208,-80],[284,13],[51,-9],[22,-66],[143,-36],[104,-62],[42,30],[-19,69],[12,72],[60,23],[87,75],[92,51],[102,-23],[95,-63],[169,-187],[93,-120],[273,-177],[-17,92],[-98,160],[-65,123],[-26,113],[61,107],[62,34],[-3,86],[65,29],[120,-20],[113,-79]],[[91533,118448],[-408,-27],[-41,19],[819,93],[74,-30],[-444,-55]],[[85596,118574],[-93,-38],[-156,29],[56,49],[98,-7],[95,-33]],[[86525,118539],[281,-5],[63,-58],[87,-19],[126,-51],[80,21],[28,70],[4,148],[95,7],[145,43],[132,-34],[-86,-166],[103,-6],[144,20],[114,68],[256,-7],[398,-43],[157,-40],[259,0],[182,-11],[124,-70],[22,-106],[-51,-29],[-370,-131],[-93,-42],[-157,-149],[-214,-45],[-170,18],[-158,-44],[-108,-60],[-79,-14],[-450,25],[-90,69],[73,57],[-410,-21],[-453,11],[-43,31],[-272,33],[-196,71],[63,30],[290,-1],[31,40],[94,41],[-139,18],[-146,3],[-96,-24],[-215,-13],[-197,7],[-94,17],[-172,69],[-30,48],[146,27],[113,48],[-221,16],[-184,58],[74,20],[298,15],[243,-53],[83,32],[-79,16],[-70,54],[59,42],[103,-51],[79,-16],[26,69],[-85,95],[102,6],[219,-49],[232,-105]],[[115473,82069],[17,-19],[-1,-66],[-34,-126],[-19,-111],[-17,-191],[3,-34],[51,-109],[20,-85],[2,-57],[-46,-205],[-26,-33],[-63,37],[-43,-5],[-50,-21],[-51,4],[-43,13],[-55,-44],[-51,24],[-34,27],[-22,75],[-9,10],[-110,-79],[-26,-5],[-68,43],[-76,54],[-102,26],[-53,26],[-65,-34],[-27,3],[-24,25],[-13,50],[-3,49],[-22,32],[-35,8],[-119,-69],[-43,18],[-17,56],[-57,22],[-36,34],[-108,79],[-14,35],[1,78],[-20,66],[-55,35],[-108,55],[-60,45],[-29,-21],[-55,-19],[-29,-39],[-35,12],[-84,42],[-46,7],[-27,-15],[-6,-24],[-34,-27],[-33,22],[-65,29],[-56,16],[-86,36],[-24,107],[-20,10],[-77,-11],[-71,59],[-76,76],[-53,34],[-58,-33],[-41,33],[-117,103],[-76,80],[-31,45],[-30,65],[-180,143],[-70,76],[-30,11],[-17,-42],[-26,5],[-83,77],[-67,75],[-8,28],[14,86],[20,74],[17,17],[27,49],[10,85],[0,74],[26,103],[37,111],[63,118],[28,39],[30,26],[59,87],[38,37],[44,-5],[43,-89],[29,2],[33,37],[70,170],[97,35],[92,-17],[81,-25],[24,-57],[26,-90],[26,-36],[115,-85],[158,-180],[69,-46],[61,-3],[34,-41],[52,-80],[44,-93],[54,-85],[38,3],[114,64],[71,-42],[55,-214],[79,-75],[23,-36],[80,-65],[27,-45],[36,-24],[25,-5],[92,39],[39,-12],[-31,-153],[15,-39],[39,-16],[85,-12],[115,1],[35,-40],[35,-59],[49,-144],[18,-13],[30,17],[6,104],[25,21],[16,-15],[19,-49],[48,-43],[34,-22],[33,8],[14,16],[16,85],[26,13],[32,-6],[26,-51],[79,-37],[37,-28],[53,-63],[64,-11],[75,1],[68,-6],[26,4],[76,45],[32,4],[76,-14]],[[150388,26111],[24,-35],[-46,-16],[-37,29],[38,31],[21,-9]],[[149115,27320],[9,-59],[-73,16],[-26,31],[-18,-29],[-35,9],[11,31],[68,58],[12,98],[53,5],[19,-19],[-25,-37],[4,-57],[-17,-15],[18,-32]],[[149943,30035],[0,-28],[-45,10],[1,-31],[36,-17],[13,-22],[37,6],[8,-33],[-9,-30],[-24,-22],[-73,-11],[-47,-43],[-52,2],[-47,-46],[-66,-11],[7,41],[39,40],[11,68],[37,21],[1,40],[25,35],[-15,76],[8,68],[74,4],[81,-117]],[[149341,30875],[-8,-52],[-37,4],[-48,17],[16,39],[51,20],[26,-28]],[[149441,31206],[19,-83],[-40,16],[-16,25],[37,42]],[[1647,31804],[-19,-7],[-4,66],[32,8],[14,-30],[-23,-37]],[[1646,32208],[-42,-17],[-46,-71],[3,53],[-14,21],[-39,-5],[25,-33],[-26,-31],[27,-66],[23,2],[22,-67],[-51,-20],[-27,-28],[-36,7],[-14,70],[29,37],[17,36],[-13,35],[-35,22],[-74,-10],[-17,7],[37,46],[40,-5],[44,33],[167,-16]],[[152428,34211],[-58,-40],[14,89],[26,31],[40,25],[-3,-51],[-19,-54]],[[152084,33922],[50,-4],[46,51],[47,42],[49,34],[76,79],[114,50],[-21,-47],[-28,-16],[11,-43],[-23,-38],[1,-47],[-28,-56],[43,23],[15,36],[-8,20],[19,41],[28,19],[-10,55],[35,-9],[56,14],[5,-27],[34,4],[-44,-98],[-42,-40],[15,-21],[63,53],[37,47],[-1,-59],[-56,-86],[-29,-10],[-29,-27],[-14,-45],[10,-52],[29,-40],[-33,-76],[37,10],[20,-15],[29,-43],[-29,-77],[-73,-106],[-31,-54],[-37,-35],[0,-56],[-21,-42],[-108,-141],[-19,-31],[-85,-224],[-55,-95],[-64,-58],[-79,-45],[-35,-51],[-38,-42],[-41,-10],[48,-57],[-15,-31],[-29,-20],[46,-28],[12,-65],[17,-42],[60,-26],[55,-12],[10,-19],[9,-66],[-23,-53],[-62,-12],[-44,15],[-30,40],[-118,-14],[47,41],[-45,33],[-36,-36],[-5,-36],[-38,-26],[-65,72],[-40,17],[55,-109],[-43,-35],[-82,-42],[-99,-77],[-61,-1],[-33,-12],[-10,-51],[-45,-65],[-36,-152],[-14,-172],[-22,-101],[-53,-17],[48,-28],[-9,-43],[-53,-78],[-22,-45],[-22,-110],[-32,-101],[-49,-115],[-1,-21],[39,-54],[-6,-55],[-44,-17],[-109,-32],[-36,-35],[-30,-64],[-35,-54],[-115,-121],[-100,-151],[-148,-48],[-105,-7],[-57,12],[-86,33],[-58,-15],[-26,-16],[-45,16],[-37,-12],[-24,41],[7,39],[-10,30],[-56,59],[-48,6],[-101,-9],[-69,121],[-62,31],[-21,-5],[-33,-51],[-19,-9],[-116,-6],[-116,17],[-43,19],[-8,45],[62,106],[-54,-50],[-35,8],[33,55],[-3,51],[-46,-46],[-51,-6],[-7,43],[15,63],[139,26],[51,17],[21,26],[-83,10],[-5,37],[31,66],[-59,5],[4,52],[16,41],[61,1],[-20,28],[15,42],[61,-53],[26,21],[7,61],[-41,30],[-3,69],[44,51],[33,2],[-14,35],[10,24],[93,94],[20,-7],[12,46],[40,22],[52,69],[38,32],[31,-20],[-1,86],[70,99],[76,94],[74,98],[39,36],[83,41],[67,-14],[79,71],[33,19],[48,-35],[-18,65],[14,30],[67,52],[82,55],[63,22],[47,37],[23,29],[15,49],[69,54],[37,58],[37,30],[22,41],[25,13],[2,26],[95,69],[61,33],[25,-10],[7,33],[43,55],[56,91],[33,-58],[-8,73],[69,137],[29,24],[-2,44],[19,69],[12,79],[16,76],[26,75],[28,124],[22,26],[58,9],[69,62],[50,81],[27,66],[36,169],[20,177],[57,131],[84,95],[74,73],[31,15],[51,4],[49,-20],[-91,-17],[-12,-86],[27,-74],[44,-33],[51,-19],[23,-73],[12,-162],[20,-65]],[[153129,37403],[4,-38],[-33,14],[-13,28],[-42,39],[-4,58],[31,44],[44,-74],[13,-71]],[[152150,38339],[7,-32],[24,23],[46,72],[-4,-58],[15,-13],[95,-41],[20,-34],[20,-10],[25,30],[34,-22],[78,-60],[2,-51],[15,-58],[25,-6],[35,38],[16,5],[42,-114],[20,-30],[34,-89],[-15,-60],[31,-82],[-20,-6],[-62,14],[2,-16],[36,-61],[30,-85],[24,-51],[85,-160],[-12,-56],[2,-38],[-11,-32],[29,-85],[-18,-26],[-12,-86],[-12,-47],[34,-8],[39,-39],[26,39],[41,-41],[109,-57],[11,-33],[9,-80],[17,-36],[32,-6],[35,10],[11,29],[-7,79],[-25,126],[3,82],[-6,41],[-26,68],[-17,24],[6,39],[26,17],[29,-72],[66,-116],[39,8],[4,-49],[26,-49],[15,-57],[19,-172],[30,-162],[54,-70],[-27,-17],[-6,-27],[30,-31],[79,-24],[139,-105],[67,-41],[169,-67],[75,-3],[50,23],[45,42],[39,62],[34,71],[37,35],[42,27],[43,43],[113,-8],[38,-36],[76,-51],[-9,-46],[-30,-67],[-23,-74],[-20,-168],[-14,-169],[-20,-75],[-38,-57],[-41,-42],[-47,-20],[-19,-96],[-9,-112],[24,-84],[-25,-68],[-14,10],[-20,56],[-18,24],[-57,17],[-57,8],[-50,-5],[-47,-24],[-73,-49],[-42,-56],[-33,-70],[-8,-86],[2,-45],[12,-34],[61,-48],[-61,-165],[-54,-172],[-66,-95],[-33,-103],[-59,-89],[-39,-68],[-31,-71],[-26,-75],[-58,-106],[-25,-70],[-33,-58],[-62,-75],[-65,-63],[-163,-139],[-38,25],[-24,110],[-48,18],[-64,-29],[-13,20],[0,88],[-51,-33],[-38,-1],[-15,26],[22,50],[70,110],[73,147],[63,158],[16,81],[23,150],[-42,122],[-63,113],[-85,64],[-54,9],[-52,24],[-48,54],[-45,64],[-87,52],[-92,41],[-53,58],[-21,75],[8,75],[27,50],[98,75],[103,42],[37,6],[73,84],[13,40],[9,125],[15,123],[27,141],[40,88],[14,53],[-17,89],[15,32],[40,31],[-36,83],[-41,126],[-9,39],[16,76],[-25,10],[-15,36],[-38,122],[32,7],[32,-88],[5,45],[25,28],[54,17],[-63,99],[-78,-30],[-54,31],[-41,150],[-83,163],[25,5],[67,-81],[23,63],[-4,42],[-16,31],[-24,21],[0,37],[18,34],[-1,24],[-38,48],[-23,-18],[1,-37],[-93,88],[-29,71],[-23,2],[37,-89],[60,-100],[11,-26],[-9,-35],[-21,-10],[-19,22],[-27,86],[-20,42],[-229,441],[29,58],[45,49],[18,49],[-37,-8],[-37,-48],[-34,-70],[-37,64],[-7,47],[-20,6],[-48,88],[31,57],[1,75],[-31,78],[-38,72],[-73,117],[-66,123],[72,16],[73,2],[-34,-73],[15,-43],[24,-36],[50,-111],[4,-32],[38,-57]],[[102816,76741],[-35,-6],[0,89],[63,110],[42,129],[28,-115],[-50,-64],[-27,-110],[-21,-33]],[[101810,80056],[44,-183],[65,-172],[58,-94],[59,-129],[91,-118],[42,-40],[168,-83],[92,-31],[127,-30],[88,-64],[30,-4],[46,19],[34,-2],[84,-87],[24,-84],[35,-44],[31,-69],[20,-73],[71,-110],[50,-124],[51,-93],[46,-57],[69,-23],[55,-25],[6,-62],[-6,-80],[-10,-60],[-51,-115],[-13,-72],[-58,-117],[-63,-198],[-29,-44],[-101,-102],[-75,-123],[-88,-212],[-67,-211],[-26,-68],[-54,-14],[-36,6],[-24,20],[15,122],[-61,-20],[-67,-158],[-37,-69],[-8,-88],[-18,-114],[-26,-104],[-11,-88],[0,-50],[20,-122],[1,-124],[11,-75],[9,-90],[-58,-41],[-107,-10],[-108,-28],[-94,-52],[-57,-52],[-74,-116],[-45,-293],[-72,-124],[-48,-26],[-118,-11],[-165,-34],[-58,-30],[-96,-179],[-8,-57],[19,-40],[6,-45],[-9,-43],[-44,-113],[-47,-83],[-126,-52],[-46,31],[-42,16],[-82,1],[-133,-19],[-49,-61],[-77,-44],[-71,-66],[-135,-26],[-91,-52]],[[100388,74255],[-123,431],[-30,23],[-114,416],[-134,487],[-76,278]],[[99911,75890],[209,112],[148,80],[222,120],[148,80],[223,119],[148,80],[194,105],[82,401],[47,231],[63,308],[94,456],[-64,160],[-132,329]],[[101678,80810],[36,100],[61,20],[31,84],[22,-20],[-5,-152],[-19,-212],[-28,-66],[-4,-41]],[[110709,87109],[-21,-82],[-47,-37],[-47,-27],[-37,-79],[-44,-35],[-59,14],[-123,-62],[-56,2],[-77,-77],[-66,-39],[-45,-1],[-66,24],[-81,45],[-33,26],[-101,5],[-154,49],[-127,34],[-105,-59],[-41,-19],[-64,-161],[-8,-30],[7,-37],[49,-26],[21,-36],[3,-31],[-33,-58],[0,-23],[20,-40],[128,-19],[2,-31],[-15,-42],[-60,-33],[-33,-35],[-10,-47],[0,-37],[11,-25],[55,-60],[8,-27]],[[109460,85993],[-14,-85],[-53,-99],[4,-37],[53,-79],[41,-39],[35,-20],[12,-91],[-11,-35],[21,-29],[56,2],[45,-13],[32,3],[-8,-104],[6,-62],[12,-17],[44,-25],[86,3],[106,-63],[43,-65],[-4,-44],[-30,-52],[-79,-36],[-143,-98],[-45,-41],[-34,-49],[-20,-74],[31,-132],[5,-40],[-32,-195],[9,-37],[31,-14],[9,-54],[-53,-52],[-55,-47],[-18,0],[-53,-86],[-89,-174],[-48,-59],[-7,-57],[18,-50],[4,-41],[-20,-42],[-34,-48],[-65,-42],[-82,-42],[-37,-26],[-64,-268],[-45,-130],[-77,-191],[-20,-42],[-119,-92],[-122,-101],[-22,-38],[-49,-192],[-21,-52],[-78,-118],[-26,-90],[-8,-59],[-66,-33],[-75,-32],[-108,-10],[-46,-16],[-133,-82],[-33,-3],[-26,13],[-20,28],[-19,46],[-8,71],[-26,33],[-35,27],[-36,1],[-69,-63],[-43,-59],[-41,-108],[-66,-154],[-74,-112],[-27,-33],[-40,-63],[-13,-36],[-19,-117],[-10,-105]],[[107445,81326],[16,-43],[98,-80],[76,-29],[63,-5],[24,-21],[18,-53],[-3,-87]],[[107737,81008],[-7,-92],[-24,-100],[1,-57],[9,-55],[71,-142],[26,-15],[78,0],[27,15],[34,-28],[4,-28],[-2,-142],[21,-63],[43,-88],[33,-99],[31,-119],[31,-94],[11,-48],[-31,-48],[-1,-92],[31,-61],[-27,-27],[-41,-12],[-35,-57],[-39,-17],[-24,6],[-35,23],[-10,36],[4,38],[-8,23],[-24,-4],[-87,-39],[-82,-48],[-33,-67],[-38,-14],[-55,-4],[-38,5],[-68,70],[-50,1],[-139,-4],[-30,12],[-28,-9],[-37,13],[-31,-19],[-12,31],[-26,-12],[-5,-18],[-2,-210],[-101,2],[-89,-27],[-50,-50],[-7,-41],[-15,-31],[-34,66],[-37,-14],[-39,52],[-17,-52],[-65,-12],[-10,76],[-36,-27],[-25,41],[-12,54],[-21,33],[-27,19],[-24,57],[-9,135],[-50,270],[-31,25],[-171,48],[-9,47],[12,128],[-5,80],[-55,106],[-16,73],[-45,64],[-45,18],[-46,-8],[-24,-25],[-13,-43],[97,10],[21,-15],[-1,-27],[-32,13],[-41,-1],[-151,-31],[-88,-45],[-118,14],[-148,-44],[-123,-3],[-50,-86],[-50,37],[-169,67],[-11,28],[-29,21],[-31,-36],[-22,-7],[-92,31],[-71,-23],[-26,-39],[-2,-60],[-89,11],[-50,19],[-66,-21],[-151,28],[-40,-7],[-55,-40],[-23,-31],[-33,-12],[-28,43],[-22,20],[-20,-13],[-27,-36],[-78,-17],[-71,5],[-76,34],[9,11],[12,58],[10,208],[14,75],[-1,53],[37,52],[24,224],[25,54],[95,53],[16,35],[48,-8],[9,49],[23,44]],[[104362,81108],[31,36],[24,13],[84,23],[65,35],[132,-8],[32,23],[8,119],[28,29],[-8,83],[4,56],[28,32],[-22,58],[-38,31],[-108,-23],[-45,7],[-25,25]],[[104552,81647],[5,64],[20,98],[-13,211]],[[104564,82020],[-18,140],[10,139],[-2,29],[-18,7],[-65,-12],[-57,89],[-35,36],[-95,44],[-42,9],[-62,38],[-115,171],[-23,55],[-26,94],[-74,181],[1,46],[-9,29],[-72,118]],[[103862,83233],[-133,220]],[[109629,88441],[25,10],[40,-1],[32,-16],[53,-42],[71,24],[39,-9],[87,-42],[13,-21],[20,-101],[16,-9],[48,24],[41,-12],[45,-33],[29,-32],[40,-89],[18,-97],[-2,-148],[-28,-56],[17,-50],[55,-24],[14,-23],[19,-84],[44,-13],[58,19],[71,34],[6,-79],[87,-78]],[[42379,67769],[-24,-4],[-48,30],[-35,58],[-3,38],[20,59],[36,20],[24,-68],[-17,-27],[7,-42],[35,-31],[5,-33]],[[43472,68410],[-20,-30],[-7,29],[13,30],[14,-29]],[[43544,68424],[-9,-29],[-20,66],[2,76],[19,16],[26,-7],[7,-70],[-6,-32],[-19,-20]],[[42107,69195],[-4,-33],[-34,59],[27,8],[11,-34]],[[43973,67697],[-12,19],[-104,200],[-89,248],[-19,112],[46,4],[26,50],[-12,76],[44,57],[16,39],[13,-4],[28,-66],[41,-38],[51,-55],[-8,45],[-69,76],[-19,50],[-18,69],[-54,-69],[-14,39],[-40,5],[-9,-39],[-17,-34],[-26,63],[-19,127],[-46,59],[-38,28],[-26,40],[-34,22],[-46,63],[-56,45],[-69,16],[-84,-10],[-29,-25],[-28,-47],[-49,-36],[-31,-97],[-25,-50],[29,-31],[-162,-171],[-32,-25],[-73,-17],[-39,-53],[1,-95],[40,-55],[45,-102],[80,-128],[15,-47],[12,-70],[-42,-46],[-77,-5],[-26,-28],[-10,-43],[-29,-34],[-98,-35],[-77,-4],[-24,40],[-6,112],[-52,190],[-12,132],[-40,-32],[-10,-33],[-7,-96],[-10,-33],[-21,3],[-44,34],[-58,32],[-74,206],[-22,84],[-57,20],[-49,34],[-53,6],[-27,-20],[-28,25],[-5,56],[-55,-25],[-72,9],[-64,24],[-44,-13],[-36,-40],[-8,-81],[-28,88],[-32,41],[-2,16]],[[41765,68469],[13,21],[59,59],[7,25],[1,52],[-6,50],[-26,73],[15,45],[61,65],[0,37],[-61,73],[-25,3],[-1,131],[1,139],[34,44],[7,41],[19,15],[67,-60],[15,9],[20,40],[83,-103],[-2,-63],[15,-90],[29,-13],[30,18],[7,-17],[-21,-35],[-3,-76],[47,-36],[24,-32],[79,15],[30,-8],[19,9],[-22,61],[-29,46],[25,5],[17,-31],[39,-38],[71,-134],[83,-32],[65,4],[60,18],[97,52],[70,94],[56,42],[180,89],[65,93],[53,24],[56,70],[31,55],[32,28],[96,-20],[62,-26],[43,3],[41,-18],[18,-40],[18,-17],[101,4],[83,-19],[182,-119],[108,-117],[58,-124],[139,-161]],[[22271,45676],[-13,-1],[-13,41],[20,5],[6,-45]],[[46025,58161],[-17,-41],[-28,-27],[-36,-7],[-75,-73],[-84,-108],[-28,-50]],[[45757,57855],[-20,-121],[5,-39]],[[45742,57695],[15,-26],[15,-63],[2,-32],[-13,-18],[-45,-10],[-16,-16],[-31,-4],[2,-89],[-19,-35],[9,-20],[38,-48],[31,-59],[44,-30],[-5,-65],[-18,-14],[-1,-29],[40,-58],[31,-87],[0,-32],[27,-75],[0,-33],[81,-93],[1,-61],[24,-60],[43,-46],[57,-113],[41,-77],[2,-89],[-103,-203],[84,3],[86,-2],[90,-29],[97,-40],[27,-33],[22,-91],[3,-60],[37,-49],[-4,-111],[248,-2],[115,13],[44,15],[53,79]],[[46896,55803],[31,24],[31,37],[37,67],[30,31],[24,37],[37,37],[16,28],[41,28],[-22,-73],[-3,-54]],[[47118,55965],[14,-59],[-12,-43],[-18,-40],[-2,-530],[-1,-296],[47,44],[36,-54],[25,-23],[44,-4],[30,11],[67,46],[45,36],[52,-2],[71,-15],[42,2]],[[47587,50474],[-75,-100],[-52,-10],[-20,-27],[4,-57],[17,-80],[0,-63],[-16,-72],[-37,-78],[-57,-54],[-54,-29],[-83,-6],[-18,-8],[-32,47],[-140,157],[-53,84],[-50,39],[-121,135],[-12,43],[-15,138],[-15,39],[-42,50],[-104,66],[-41,34],[-42,60],[-62,43],[-68,88],[-40,70],[-46,47],[-140,65],[-71,65],[-132,92],[-58,59],[-141,72],[-42,34],[-139,167],[-97,55],[-79,94],[-236,200],[-37,63],[-37,99],[-52,59],[-59,135],[-88,80],[-85,105],[-31,96],[-56,123],[-17,65],[-49,65],[-3,128],[-34,60],[24,29],[26,13],[33,200],[-17,100],[-88,182],[-32,88],[-23,112],[-35,66],[-53,140],[-31,124],[-70,90],[-19,33],[-11,46],[-39,32],[-2,95],[-27,181],[-38,92],[-139,170],[-3,66],[-11,119],[-31,129],[-155,401],[-38,120],[-39,194],[-35,110],[-38,196],[-58,149],[-37,129],[-38,161],[-4,86],[-70,147],[-37,136],[-66,113],[-64,87],[-28,61],[-91,290],[-12,86],[-62,159],[-62,115],[-39,92],[-49,83],[-302,256],[-107,107],[-36,50],[-16,80],[7,47],[31,43],[43,-33],[26,14],[21,57],[0,86],[-26,111],[-97,215],[8,45],[18,52],[-38,103],[-40,83],[-21,63],[24,242],[22,61],[146,246],[40,105],[63,64],[64,99],[77,75],[22,-25],[13,-106],[10,-25],[1,-122],[17,-63],[-6,-19],[-32,-30],[-15,-39],[-24,1],[-34,17],[-23,-22],[-8,-41],[9,-67],[15,-28],[43,-2],[-58,-129],[4,-25],[23,-22],[18,-2],[39,33]],[[42943,59588],[41,74],[25,10],[33,-22],[43,-44],[71,-59],[69,15],[53,-59],[6,-92],[20,-66],[53,-113],[27,-21],[35,0],[48,-22],[19,14],[24,67],[25,11],[-3,61],[8,39],[19,34],[76,72],[14,72],[-14,52],[3,40],[13,54]],[[43651,59705],[20,64],[22,118],[18,25],[17,76],[22,46],[-1,49],[9,22],[1,55],[22,114],[1,24],[26,-1],[19,-52]],[[43827,60245],[20,-9],[15,15],[-15,59],[5,21],[105,211],[34,45]],[[43991,60587],[215,120],[293,172],[138,161],[116,138],[193,366],[31,53],[65,396],[5,27],[26,-30],[32,0],[10,11],[-15,170],[11,81],[-2,25],[-26,34],[-43,68],[-29,111],[-61,64],[21,24],[47,-24],[58,10],[24,25],[26,45],[37,-6],[57,-73],[26,-23],[62,-8],[20,-69],[60,-49],[65,-103],[20,-44],[28,-129],[11,-30],[-3,-29],[38,-83],[28,-19],[55,-22],[29,-48],[26,-19],[27,-50],[24,-15],[31,3],[31,-24],[23,-47],[15,-59],[23,-34],[12,-61],[-13,-71],[12,-38],[24,-30],[39,-33],[36,8],[19,-10],[11,-30],[31,-175],[-20,-88],[7,-49],[71,-43],[21,-38],[24,-10],[74,12],[38,28],[99,-54],[77,20],[35,14],[36,39],[29,-2],[23,27],[56,85],[21,9],[83,-49],[28,-39],[21,-10],[21,-28],[42,0],[45,15],[36,47],[62,27],[23,-8],[90,-86],[25,-45],[31,-8],[26,-25],[42,-26],[23,-27],[30,-16],[22,-38],[64,-36],[13,-30],[-4,-34],[-148,-374],[-137,-344],[89,-59],[19,-2],[63,39],[43,-48],[18,-78],[13,-39]],[[47304,59843],[31,-29],[34,-49],[22,-51],[-3,-45],[-35,-23],[-32,33],[-48,-10],[-33,37],[-12,37],[-26,31],[-54,-12],[-45,-1],[-38,7],[-33,-10],[-29,-40],[-21,-45],[-25,-39],[-74,-25],[-39,-1],[-35,-25],[-52,-9],[-36,-23],[-139,-24],[-60,-49],[-43,-47],[-75,-74],[-41,-26],[-50,-80],[-60,-76],[-39,-40],[-58,-18],[-23,-20],[-9,-25],[5,-28],[-27,-207],[-9,-97],[-38,-108],[-41,-100],[-31,-115],[12,-40],[31,-131],[4,-39],[-5,-46]],[[129315,66323],[-11,-42],[-14,-19],[-32,33],[-7,-33],[-38,-12],[-24,-50],[-34,-13],[-24,6],[2,44],[67,67],[42,24],[37,48],[18,5],[18,-58]],[[129707,66894],[23,-51],[30,13],[47,-14],[8,-43],[-50,-49],[-33,51],[-58,-35],[-28,21],[-38,-18],[-23,39],[9,38],[60,62],[53,-14]],[[130109,67139],[-58,-9],[-34,71],[-3,32],[-28,35],[11,35],[35,9],[62,45],[99,-71],[15,-26],[-31,-15],[-22,-68],[-46,-38]],[[131699,67511],[-7,-39],[-26,93],[-11,23],[14,78],[29,-38],[1,-117]],[[130472,67822],[3,-33],[-45,-33],[-15,1],[-3,54],[11,25],[21,-22],[19,25],[9,-17]],[[127950,68152],[-22,-53],[-26,61],[3,85],[8,24],[36,13],[1,-130]],[[128068,68383],[-29,-17],[-6,44],[3,43],[32,-18],[0,-52]],[[131278,69029],[-13,-41],[-48,34],[-11,30],[6,35],[36,12],[23,-37],[7,-33]],[[130800,69095],[4,-72],[-40,-21],[-32,18],[-20,43],[70,61],[18,-29]],[[131779,69343],[-21,19],[11,82],[20,-38],[-10,-63]],[[131794,69153],[35,-42],[46,11],[-1,-105],[8,-31],[41,-90],[6,-74],[-24,-71],[-52,-81],[13,-47],[47,-14],[36,-39],[6,-109],[34,-86],[-1,-38],[-13,-154],[4,-66],[26,-53],[21,-22],[11,-33],[10,-91],[-2,-154],[-3,-54],[-15,-50],[-46,-114],[-63,-91],[-33,6],[-11,-26],[21,-83],[-8,-175],[-14,-120],[-20,61],[-14,64],[-13,170],[-16,76],[-25,70],[-10,62],[-26,59],[-33,150],[-22,-7],[-36,-42],[-21,-110],[-43,-61],[-33,-74],[-27,-80],[-9,-74],[22,-57],[24,-24],[43,-75],[36,-167],[-1,-172],[-26,-75],[-66,-144],[-47,-45],[-25,23],[-20,87],[-4,35],[14,82],[2,75],[-16,25],[-25,-15],[-42,-98],[-18,-25],[-46,3],[-126,86],[-102,84],[-80,79],[-58,120],[-12,89],[-1,93],[-26,137],[-1,91],[26,84],[31,42],[31,64],[10,45],[-3,45],[-10,28],[-49,99],[-43,60],[-88,54],[-43,53],[-48,10],[-26,-17],[-7,-36],[0,-64],[-37,-179],[-47,39],[-45,46],[-17,70],[-18,49],[-20,-60],[-26,-47],[-31,-11],[-32,-1],[-10,20],[-12,114],[-34,36],[-42,-7],[-51,-63],[-21,-78],[-55,-154],[-30,-118],[-32,-116],[-15,-38],[-19,-25],[-30,10],[-28,28],[-25,75],[8,86],[29,55],[24,59],[29,207],[8,105],[48,93],[40,58],[21,12],[88,33],[36,28],[56,1],[46,15],[37,45],[1,94],[8,30],[34,57],[22,25],[63,17],[21,21],[40,92],[55,-39],[50,-18],[45,-51],[28,-80],[5,-40],[7,-130],[-10,-31],[-43,-60],[20,-6],[57,55],[28,21],[70,30],[29,48],[24,80],[18,85],[35,64],[20,5],[73,-59],[47,28],[13,89],[11,128],[8,35],[28,33],[32,-10],[44,-46],[41,-16],[15,37],[14,74],[17,-1],[55,-24],[53,16],[15,88],[-10,94],[-42,274],[25,61],[21,1],[53,-73],[101,-98],[33,-60],[22,-74]],[[131817,69463],[-29,51],[3,61],[32,92],[24,-80],[-3,-55],[22,-45],[-15,-23],[-34,-1]],[[131482,69614],[3,-35],[-56,91],[-11,64],[19,-3],[23,-24],[22,-93]],[[131186,69478],[-4,-26],[-46,-2],[-32,-65],[-19,-16],[-102,-22],[-80,17],[-28,36],[-18,60],[-5,39],[39,71],[65,56],[15,43],[34,51],[70,17],[30,-23],[35,-42],[39,-27],[-10,-103],[17,-64]],[[131658,69566],[-43,59],[-24,64],[-17,20],[12,50],[1,83],[35,48],[18,40],[16,-31],[-17,-102],[25,-121],[-8,-76],[2,-34]],[[129171,69964],[-53,-21],[-12,67],[38,62],[42,-25],[25,-24],[-40,-59]],[[131066,70048],[8,70],[21,-19],[0,-33],[-29,-18]],[[130349,69955],[-23,-8],[-25,-25],[-10,47],[9,80],[59,91],[24,-22],[3,-36],[-24,-109],[-13,-18]],[[130556,68974],[-29,-7],[-30,4],[-20,34],[-35,147],[-40,36],[-47,27],[-44,51],[-65,147],[-5,90],[11,51],[20,45],[22,13],[82,7],[61,68],[5,26],[0,111],[-6,77],[-15,76],[38,69],[23,66],[5,96],[5,35],[18,18],[85,53],[15,4],[110,-49],[22,-75],[2,-24],[-32,-139],[-37,-85],[-27,-93],[-21,-140],[-13,-46],[-34,-87],[-11,-49],[1,-104],[-6,-75],[68,-174],[6,-58],[-40,-106],[-16,-23],[-26,-17]],[[130659,69243],[-17,-19],[-6,46],[4,62],[33,217],[-7,54],[55,121],[34,113],[51,119],[6,61],[46,118],[42,162],[-2,54],[11,26],[7,75],[31,61],[8,-39],[-9,-77],[7,-55],[0,-71],[-11,-110],[10,-127],[-20,-129],[-22,-59],[-34,-41],[-37,-25],[-38,-65],[-24,-75],[-4,-69],[-61,-231],[-53,-97]],[[130826,70520],[25,-93],[-34,1],[-13,67],[22,25]],[[128049,68540],[-39,-51],[4,62],[12,59],[40,120],[29,37],[49,95],[27,46],[65,90],[60,99],[43,9],[17,12],[40,53],[98,178],[82,133],[83,168],[51,67],[77,155],[51,39],[35,47],[27,68],[11,78],[-22,110],[19,90],[16,41],[53,182],[16,36],[22,-22],[3,-33],[-11,-77],[-1,-38],[13,-39],[-15,-64],[38,-171],[30,-109],[1,-36],[-40,-64],[-23,-20],[-51,-17],[-23,-19],[-37,-53],[-40,-132],[-104,-48],[-49,-30],[-23,-23],[-12,-38],[8,-66],[-88,-240],[-28,-63],[-30,-53],[-36,-38],[-52,-23],[-41,-47],[-28,-82],[-34,-74],[-44,-55],[-47,-48],[-43,-36],[-46,-25],[-24,-72],[-45,-29],[-44,-39]],[[129148,70688],[9,-37],[-12,-55],[-54,27],[14,29],[43,36]],[[131178,70561],[30,-24],[34,10],[42,55],[47,-20],[41,-112],[8,-54],[-2,-127],[-11,-116],[9,-24],[40,-46],[26,-70],[4,-89],[27,-75],[-3,-59],[-45,6],[-3,-58],[-16,20],[-26,73],[-24,31],[7,-119],[8,-57],[1,-57],[-42,44],[-50,27],[-13,23],[3,111],[-22,78],[26,169],[-5,69],[-21,69],[-32,57],[-20,0],[-49,-40],[-25,13],[-14,158],[-20,153],[-25,81],[10,34],[18,-14],[27,-40],[48,-44],[12,-36]],[[131192,70665],[-53,-4],[-24,31],[-30,94],[34,20],[31,-5],[24,-33],[24,-63],[-6,-40]],[[131298,70736],[-8,-35],[-23,26],[-16,54],[19,17],[28,-62]],[[130283,70751],[50,-36],[49,31],[48,-9],[40,-46],[-13,-29],[-3,-32],[90,69],[24,-4],[-1,-65],[-16,-108],[-19,-63],[-25,-56],[-34,-40],[-39,-25],[-19,-23],[-5,-76],[-10,-39],[-41,-16],[-65,-76],[-140,-48],[-38,-33],[-52,-82],[-15,-10],[-9,35],[20,101],[-13,82],[7,80],[24,75],[13,82],[4,159],[18,221],[0,26],[-15,30],[-55,24],[-21,23],[11,44],[20,30],[28,-1],[25,-28],[88,-58],[47,-49],[42,-60]],[[129224,70812],[-32,-24],[-8,15],[-5,58],[-31,125],[23,20],[52,-45],[15,-40],[1,-53],[-15,-56]],[[129251,71135],[23,-10],[17,10],[15,37],[14,-55],[35,-45],[-12,-45],[-31,-5],[-30,10],[-31,-18],[-39,10],[-23,43],[-26,76],[-13,14],[13,80],[78,-81],[10,-21]],[[130351,71234],[-22,-17],[-78,118],[21,26],[57,0],[30,-47],[4,-29],[-12,-51]],[[131464,71386],[31,-57],[7,-41],[-3,-45],[14,-21],[24,-5],[31,-23],[24,-42],[-14,-39],[4,-56],[-24,-72],[3,-126],[14,-40],[-2,-83],[6,-35],[37,-115],[7,-39],[-15,-59],[23,-3],[33,-48],[20,-64],[-6,-16],[-27,49],[-20,8],[-84,-13],[-52,20],[-34,2],[-33,85],[-29,14],[-23,38],[-39,96],[-12,55],[27,56],[8,44],[-1,44],[-26,-7],[-22,14],[-38,84],[-20,26],[-31,61],[-64,41],[-36,51],[-26,63],[-25,112],[-14,115],[117,-30],[118,6],[134,26],[38,-31]],[[130808,71219],[83,-83],[57,-141],[6,-108],[-4,-41],[-27,46],[-58,66],[-53,27],[5,35],[-30,47],[-24,14],[-35,74],[-24,14],[-24,-15],[-54,-110],[-58,-77],[-1,29],[23,97],[15,154],[10,47],[-12,69],[-2,62],[98,-57],[41,-40],[7,-26],[61,-83]],[[130203,71387],[-22,-18],[-5,37],[17,23],[10,-42]],[[130109,71266],[-34,-174],[-23,60],[9,37],[-20,32],[-5,28],[7,38],[21,35],[6,113],[44,37],[11,-27],[1,-52],[-17,-127]],[[130834,71335],[-15,-39],[-52,120],[-15,43],[15,29],[38,-44],[29,-109]],[[130621,71613],[-3,-34],[-47,49],[-48,82],[-45,46],[3,33],[37,5],[70,-145],[33,-36]],[[129511,72049],[22,-6],[69,21],[28,-11],[19,-40],[42,-33],[35,36],[35,-41],[31,-75],[37,-54],[34,-40],[7,-29],[-21,-49],[-6,-61],[2,-66],[26,-138],[-9,-38],[-27,-53],[-19,-59],[-8,-85],[-31,2],[-37,-59],[-51,24],[-4,35],[-63,99],[-17,46],[-1,48],[-9,45],[-19,40],[-26,31],[-11,65],[-3,90],[-36,112],[-12,27],[-34,27],[-28,36],[-22,93],[-51,13],[6,42],[21,31],[29,4],[80,-18],[22,-12]],[[130032,72091],[35,4],[51,-58],[4,-68],[-51,-111],[-56,53],[-20,33],[-6,66],[22,99],[21,-18]],[[129324,72237],[1,-47],[-73,70],[7,52],[40,-26],[25,-49]],[[131083,72155],[-12,-45],[-34,13],[-31,-38],[-51,51],[-8,41],[37,88],[-1,132],[27,56],[17,12],[36,-91],[47,-53],[-9,-84],[3,-49],[-21,-33]],[[130144,72445],[-1,-28],[-93,103],[1,50],[93,-125]],[[130083,73111],[-27,-78],[22,-93],[-14,-68],[-34,3],[11,49],[-5,44],[-15,28],[-11,54],[-19,32],[9,52],[57,6],[26,-29]],[[129682,75625],[66,-37],[146,-130],[53,-32],[55,-24],[44,-7],[39,29],[17,31],[30,80],[32,10],[34,-68],[7,-58],[-10,-60],[-30,-53],[-19,-65],[-12,-214],[0,-65],[10,-61],[27,-98],[14,-28],[40,-35],[11,-27],[8,-89],[48,-37],[-22,-94],[-18,-117],[-86,-269],[-5,-59],[-34,-116],[-69,-18],[-80,-56],[-45,-44],[-38,-57],[-15,-74],[21,-70],[-1,-39],[-51,-112],[-16,-65],[-17,-29],[-9,-35],[3,-40],[16,-35],[46,-151],[51,-146],[15,-37],[-30,-38],[1,-70],[9,-70],[44,-172],[6,-46],[15,-38],[48,-65],[72,-51],[57,-12],[7,35],[26,11],[-6,34],[-31,47],[-1,25],[36,30],[43,51],[46,41],[59,-4],[58,-23],[41,-23],[33,-44],[35,-75],[24,-84],[-6,-80],[1,-39],[18,-27],[56,-2],[28,62],[4,70],[-20,27],[9,34],[18,26],[24,-23],[24,-43],[86,-48],[40,-9],[39,-33],[18,-26],[-22,-55],[-86,-12],[-25,-41],[25,-82],[42,-67],[49,-113],[-1,-54],[-13,-56],[37,4],[36,-12],[49,-47],[32,3],[-3,-171],[-33,-156],[-42,20],[-36,66],[7,80],[23,78],[-13,16],[-50,-24],[-28,-6],[-47,10],[-97,85],[-40,7],[-8,39],[2,81],[-39,96],[-18,61],[-115,105],[-14,18],[-36,83],[-80,119],[-47,15],[-8,-30],[16,-86],[2,-74],[38,-66],[31,-116],[3,-99],[-33,-41],[-36,46],[-8,72],[-39,90],[-87,108],[-57,98],[-127,104],[-15,5],[-43,-20],[-61,-52],[-22,-36],[-2,-55],[-44,-43],[-60,-6],[-47,27],[-38,55],[-32,2],[-39,86],[-48,11],[-40,-67],[-9,133],[0,134],[11,39],[20,33],[101,140],[12,46],[-4,60],[-23,49],[-36,30],[-42,13],[-30,27],[-23,46],[-16,-81],[15,-119],[3,-78],[-14,-29],[-51,9],[-18,28],[-13,80],[-35,53],[-14,75],[-16,11],[-33,-6],[-24,36],[-16,88],[-4,95],[-13,80],[-20,77],[-11,63],[-18,284],[-14,47],[-22,32],[-17,39],[-3,33],[5,139],[7,34],[18,16],[43,-61],[44,-38],[39,-82],[15,-13],[48,2],[29,11],[22,66],[0,42],[-28,124],[-8,90],[0,81],[7,81],[38,135],[4,94],[-3,125],[6,74],[-1,43],[-22,67],[-6,72],[63,365],[20,71],[14,73],[7,97],[47,26],[45,40],[48,-12],[54,19],[22,2]],[[130035,75819],[-27,-50],[-14,14],[27,104],[23,13],[20,-38],[-29,-43]],[[129747,75950],[-3,-47],[-21,25],[-5,35],[12,57],[14,-28],[3,-42]],[[129863,76144],[4,-63],[-25,2],[-39,38],[4,49],[56,-26]],[[130052,76843],[-20,-4],[12,66],[21,18],[17,-8],[-30,-72]],[[130016,77133],[-21,-57],[-14,33],[22,65],[13,-41]],[[135494,67803],[-27,-15],[-12,54],[4,61],[18,48],[44,48],[-11,-113],[-15,-44],[-1,-39]],[[143651,54673],[72,-37],[25,-40],[-26,-18],[-63,-13],[-15,25],[-60,25],[-10,45],[-53,52],[-13,67],[44,-23],[99,-83]],[[143972,54753],[-6,-38],[-16,13],[-47,-20],[-24,4],[-18,50],[41,-12],[-7,38],[58,-20],[19,-15]],[[142515,55307],[-6,-54],[-35,16],[-1,46],[42,-8]],[[142594,55687],[18,0],[31,52],[26,15],[18,-23],[-29,-166],[-23,25],[-94,46],[-3,66],[-24,21],[-15,64],[-31,71],[12,27],[20,-47],[81,-95],[-3,-31],[16,-25]],[[142356,56156],[60,-57],[34,16],[18,-9],[39,-66],[6,-108],[-36,9],[-57,-1],[-44,17],[-60,5],[31,62],[-32,70],[2,52],[39,10]],[[142277,56053],[-6,-17],[-25,13],[-70,96],[10,71],[32,37],[48,-40],[21,-92],[-10,-68]],[[143261,56425],[25,-10],[53,5],[17,-40],[44,-32],[18,-26],[-4,-30],[-27,-36],[-24,-15],[-63,40],[-5,28],[-31,47],[-53,34],[27,28],[23,7]],[[139368,56652],[7,-30],[-62,42],[-60,69],[-13,31],[64,-32],[64,-80]],[[142605,56582],[-26,4],[15,60],[1,51],[-34,31],[18,51],[31,23],[-1,-72],[10,-32],[-14,-116]],[[139366,56758],[-19,-2],[-76,47],[-19,34],[89,-7],[23,-9],[2,-63]],[[141278,58607],[-17,-6],[-8,32],[-40,27],[-40,85],[0,73],[5,21],[23,1],[89,-84],[10,-27],[-7,-79],[-15,-43]],[[144694,58008],[-10,-66],[-18,13],[-38,-23],[-36,-47],[-44,5],[-42,18],[-40,33],[-36,42],[-36,67],[-22,69],[11,80],[-14,73],[-68,51],[-15,17],[-30,72],[-30,31],[-38,63],[-10,28],[-16,79],[-6,49],[14,140],[-5,71],[19,-7],[42,-47],[54,-13],[42,-56],[40,-109],[5,-36],[13,-25],[62,-76],[41,-119],[22,-26],[52,-27],[41,-52],[38,-59],[26,-62],[19,-67],[13,-84]],[[140912,58881],[-24,-4],[-49,91],[4,35],[50,46],[32,-42],[7,-91],[-20,-35]],[[144130,58881],[-9,-6],[-19,88],[-9,113],[-9,29],[39,67],[22,-28],[3,-61],[16,-53],[-12,-115],[-22,-34]],[[140414,59373],[-29,-21],[-21,16],[-9,46],[7,44],[42,45],[18,-24],[6,-46],[-14,-60]],[[142953,59672],[23,-14],[64,72],[35,-50],[44,-25],[45,-14],[-18,-104],[17,-97],[-1,-71],[-21,-63],[-40,-92],[-40,-27],[-66,-8],[-12,-49],[4,-52],[36,-68],[28,-77],[-28,-70],[-47,-49],[-44,-25],[-74,15],[-77,-7],[-15,-26],[0,-45],[-25,-64],[-39,-64],[-44,-57],[-80,-66],[-54,-8],[-47,-31],[-45,-54],[-50,-27],[-50,-53],[-19,-9],[-103,-9],[-146,-2],[-43,-6],[-42,7],[-24,21],[-49,95],[-44,32],[-47,-1],[-63,-33],[-12,7],[-125,140],[-38,34],[-41,26],[-50,17],[-46,28],[-28,67],[3,87],[38,50],[57,-25],[44,15],[50,-17],[93,19],[54,-27],[52,-35],[49,-8],[50,8],[68,40],[21,-6],[65,0],[56,53],[21,215],[15,73],[33,11],[21,-36],[-27,-46],[-12,-35],[-4,-86],[15,-83],[33,-66],[50,-8],[45,44],[50,9],[46,-43],[47,8],[21,27],[50,17],[23,16],[30,72],[20,81],[29,63],[82,107],[48,20],[58,-5],[42,38],[3,85],[-6,87],[-48,203],[-4,32],[21,68],[48,1],[50,-12],[41,-55]],[[143704,59809],[-29,2],[21,36],[8,-38]],[[143278,60482],[-10,-61],[-26,35],[-18,52],[11,23],[30,14],[13,-63]],[[143032,60611],[-18,-33],[-44,87],[9,17],[43,-51],[10,-20]],[[142971,60693],[-10,0],[-2,55],[8,29],[23,-20],[5,-50],[-24,-14]],[[138241,60846],[56,-1],[35,-11],[216,-152],[64,-60],[22,-14],[43,-8],[97,-84],[145,-84],[154,-81],[47,-17],[49,-7],[107,-28],[57,-25],[82,-99],[42,-30],[39,-56],[55,-60],[46,-22],[54,-2],[54,11],[45,-16],[20,-21],[10,-40],[34,-56],[48,-25],[45,-50],[41,-61],[30,-61],[35,-51],[51,-22],[55,-3],[186,-305],[9,-47],[2,-200],[-20,-156],[46,-48],[63,-18],[89,-34],[85,-49],[272,-211],[37,-18],[55,-7],[55,3],[20,-11],[62,-63],[37,-68],[34,-74],[31,-38],[9,-40],[13,-124],[-4,-77],[-15,-29],[-43,-14],[-153,-13],[-102,14],[-71,-78],[3,-66],[62,-166],[37,-147],[30,-60],[46,-48],[40,-58],[37,-66],[77,-115],[42,-42],[49,-27],[82,-89],[11,-39],[24,-125],[17,-150],[72,-76],[16,-21],[32,-170],[25,-79],[42,-28],[48,2],[132,50],[43,-10],[21,-28],[7,-76],[-20,-80],[-6,-77],[26,-64],[91,-63],[121,-15],[47,-14],[47,-21],[16,-19],[-11,-34],[-97,-48],[1,-44],[25,-46],[23,-54],[40,-34],[52,-19],[51,-26],[68,-44],[75,-12],[56,-35],[78,14],[-68,-57],[-23,-14],[-83,22],[-15,-23],[34,-60],[50,-40],[18,-24],[-13,-28],[-58,-55],[-70,-12],[-76,23],[-55,31],[-29,66],[-49,58],[-35,32],[-44,11],[-46,-1],[-83,34],[-179,24],[-42,15],[-54,46],[-25,7],[-28,-15],[-69,-9],[-20,5],[-49,39],[-51,15],[-43,-15],[-69,29],[-53,12],[-43,40],[-50,70],[-24,85],[-38,80],[-47,66],[-101,107],[-20,27],[-40,98],[2,65],[-7,43],[-25,3],[-69,43],[-28,52],[-46,140],[-29,74],[-69,131],[-20,78],[-28,68],[-33,54],[-13,38],[-19,26],[-96,58],[-35,28],[-72,6],[-41,10],[-77,48],[-41,14],[-48,9],[-46,18],[-23,18],[-16,30],[-9,71],[-39,-8],[-38,12],[-37,25],[-38,15],[-26,-21],[-8,-57],[-34,9],[-36,-33],[-19,-35],[-35,5],[-73,36],[-33,22],[-51,86],[-16,1],[86,-275],[-44,2],[21,-53],[-47,-7],[-49,22],[-49,8],[-4,-31],[31,-119],[-71,-28],[-72,-17],[-81,-33],[-81,-2],[-42,19],[-43,11],[-40,-11],[-40,-24],[-33,4],[-43,104],[-9,-22],[28,-80],[36,-39],[44,23],[95,-6],[93,-69],[43,-21],[47,-68],[37,-62],[30,-71],[6,-27],[-2,-74],[-9,-37],[-60,-52],[-64,-39],[-94,-77],[-92,-87],[-48,17],[-43,46],[-61,38],[-27,9],[-108,-20],[-109,-10],[-45,1],[-45,15],[-48,27],[-49,-12],[-33,-32],[-36,-5],[-67,71]],[[143406,59352],[-32,-53],[-20,49],[-46,88],[-25,95],[-1,48],[8,103],[-13,104],[-30,96],[-104,227],[-33,60],[-38,53],[-24,13],[-70,24],[-40,37],[-37,43],[-93,129],[-49,36],[-26,45],[-145,145],[-43,34],[-52,0],[-43,28],[34,18],[7,49],[-7,49],[73,-80],[77,-71],[22,-56],[39,-4],[69,-46],[47,-43],[45,-48],[51,-70],[97,-55],[63,-110],[65,-77],[21,-43],[275,-364],[46,-102],[3,-70],[-38,-86],[1,-70],[-10,-63],[-24,-62]],[[142316,60810],[-85,-10],[-31,11],[-28,40],[-25,63],[-35,27],[60,48],[54,14],[87,-60],[9,-30],[-6,-103]],[[141214,61074],[-14,-37],[-33,3],[29,59],[18,-25]],[[140865,61299],[144,-46],[16,-23],[-44,-5],[-56,-81],[-28,11],[-33,-14],[-60,-2],[-76,28],[-21,-23],[-28,6],[-38,-24],[-6,57],[32,16],[-5,60],[26,30],[45,-3],[42,21],[90,-8]],[[142027,61582],[-1,-25],[-39,9],[-54,73],[1,44],[14,38],[22,-6],[40,-48],[17,-85]],[[87691,98534],[32,-86],[-6,-59]],[[87717,98389],[85,-128],[32,-93],[21,-37],[47,-47],[5,-19],[-47,-25],[-8,-16],[29,-44],[21,-74],[-2,-60],[-16,-15],[-35,-69],[-112,-23],[-89,-102],[-42,-39],[-62,-71],[-98,-121],[-142,-204],[-25,-46],[5,-39],[26,-90],[5,-41],[-11,-86],[61,-63],[-17,-42],[-46,13],[-52,26],[-18,-3]],[[87232,96831],[-29,6],[-116,50],[-79,39],[-22,63],[-34,31],[-76,26],[-31,21],[-125,12],[-117,-7],[-33,-55],[-24,-16],[-63,8],[-31,29],[-48,15],[-35,-7],[-74,3],[-86,-48],[-24,-32],[-22,-62],[-61,28],[-49,-21],[-19,9],[13,45],[-6,72],[-47,16],[-31,36],[-49,90],[-16,15],[-60,-51],[-23,-9],[-43,-78],[-78,-3],[-13,71],[-46,9]],[[83903,98075],[46,104],[20,60]],[[83969,98239],[23,110],[-48,147],[-78,42],[6,72],[-49,100],[-10,43],[32,50],[33,123],[-20,20],[0,68],[-11,29],[-28,20],[-26,57],[7,49],[21,68],[-45,82],[-113,95],[-53,67],[4,38],[24,34],[42,31],[33,55],[18,65],[2,59],[-50,190],[-17,121],[98,-41],[28,25],[3,81],[-90,24],[-59,9],[-6,33],[22,9],[58,-5],[142,66],[247,84],[263,80],[124,25],[45,50],[36,52],[80,81],[140,30],[52,39],[110,54],[250,60],[105,14],[102,1],[91,-48],[97,-59],[-35,-13],[-76,53],[-28,2],[65,-161],[35,-57],[72,-43],[60,-14],[186,26],[66,33],[36,9],[243,-18],[402,-20],[442,-23],[243,-6],[39,31],[31,-3],[52,-30],[12,-30],[55,-16],[86,-57],[36,-39],[12,-45],[1,-97]],[[48292,75238],[-25,19],[5,23],[25,1],[-5,-43]],[[49346,75270],[-56,1],[-7,21],[41,19],[48,-3],[31,-19],[-57,-19]],[[49043,75506],[26,-12],[0,29],[82,-18],[53,-29],[55,-14],[3,-97],[-42,-39],[-27,-40],[-23,-50],[-59,-58],[-71,-17],[-64,0],[-17,10],[-36,-9],[-44,25],[-38,-6],[-75,6],[-28,-22],[-27,-5],[-49,14],[-55,-1],[-24,19],[10,110],[1,50],[-40,98],[40,50],[6,44],[42,16],[107,-21],[269,-12],[25,-21]],[[133741,92279],[12,-42],[42,-71],[15,-49]],[[133810,92117],[-21,-19],[-78,19],[-61,-61],[-34,-22],[-24,-60],[-48,-36],[-26,-38],[-34,-65],[-23,-64],[-52,-65],[-30,-81],[-1,-71],[33,-71],[3,-61],[-24,-126],[13,-133],[-14,-52],[-158,-91],[-42,-46],[-58,-118],[-71,-44],[-44,-48],[-61,-29],[-39,-83],[-43,-47],[-51,-29],[-38,-37],[-85,-2],[-60,-26],[-43,-69],[-129,-80],[-17,-60],[8,-92],[1,-71],[-11,-58],[-29,16],[-15,-19],[-16,-54],[4,-61],[81,-46],[50,-12],[38,-29],[80,-129],[119,-107],[35,-44],[19,-40]],[[132065,88970],[-27,10],[-87,57],[-72,-35],[-18,-45],[-19,-15],[-29,89],[-46,3],[-75,77],[-32,-15],[-8,-32],[-41,-71],[-57,-59],[-18,-8],[-18,20],[-23,67],[-90,26],[-49,35],[88,74],[-13,39],[-72,-11],[-38,24],[-55,-8],[-38,19],[79,73],[3,75],[40,97],[40,53],[104,76],[46,10],[60,4],[-29,29],[-27,14],[-54,-3],[-56,43],[-5,46],[108,291],[2,26],[-17,70],[-6,69],[-77,40],[-35,5],[-100,77],[-40,40],[-16,-12],[-2,-62],[-41,-26],[-13,71],[-22,51],[-66,52],[-24,29],[6,68]],[[70121,85549],[58,-37],[54,18],[67,-48],[35,-10],[-62,-77],[-78,10],[-66,41],[-24,32],[-6,28],[22,43]],[[66745,88397],[-57,-11],[-16,37],[15,15],[34,4],[24,-45]],[[66478,89011],[27,-5],[137,10],[37,-7],[-4,-52],[-26,-20],[-81,-14],[-127,33],[-43,44],[-5,48],[27,12],[58,-49]],[[65402,89437],[35,-28],[-54,-6],[-17,-14],[-44,20],[-53,-3],[-33,38],[-7,39],[16,24],[47,0],[110,-70]],[[65189,89487],[-44,-2],[-43,53],[63,28],[31,-36],[-7,-43]],[[65561,89508],[-21,-8],[-115,54],[-41,24],[-53,61],[150,-74],[80,-57]],[[65863,89569],[-8,-6],[-90,19],[-25,25],[-10,48],[15,16],[39,9],[57,-9],[37,-33],[0,-44],[-15,-25]],[[64114,90101],[-19,-33],[-44,24],[10,72],[26,16],[26,-28],[1,-51]],[[74335,88550],[-38,-8],[-147,-113],[-45,0],[-85,50],[-150,16],[-48,15],[-61,-33],[-47,1],[-38,-42],[-27,12],[31,93],[48,184],[-2,113],[12,97],[-13,97],[-25,61],[33,156],[-3,81],[-31,102],[92,-15],[-28,40],[-28,25],[-50,-4],[-78,-40],[-51,-5],[5,64],[-21,82],[32,21],[36,7],[31,35],[19,39],[-10,69],[27,66],[-7,13],[-59,-126],[-19,-64],[-50,-21],[-45,-11],[-51,23],[0,85],[18,75],[8,106],[26,95],[-9,62],[24,37],[29,24],[44,82],[63,193],[71,206],[-21,44],[6,55],[43,242],[18,31],[20,71],[5,114],[8,79],[-9,87],[-27,90],[-29,192],[-2,64],[24,33],[-40,4],[-17,42],[4,47],[43,76]],[[52476,48623],[15,-89],[52,-120],[-2,-39],[12,-95],[28,-23],[10,-39],[-7,-21],[10,-45],[-7,-22],[18,-32],[13,-55]],[[52618,48043],[1,-94],[-26,-92],[6,-63],[-31,-96],[12,-143],[-11,-69]],[[52569,47486],[-3,-37],[7,-41],[-20,-67],[-2,-28],[12,-44],[59,-23],[43,30],[34,-20],[31,-37],[76,-12],[27,-11],[39,14],[42,-14],[88,-39],[70,6]],[[53072,47163],[31,21],[30,-2],[23,37],[24,55],[33,18],[23,-11],[18,-60],[33,-34],[13,-26],[24,-11],[85,0],[38,-19],[24,0],[41,-71],[3,-72],[18,-55],[25,-21],[12,-34],[-4,-48],[-11,-49],[1,-53],[13,-48],[0,-48],[9,-49],[17,-41],[5,-67],[-3,-48],[16,-67],[-7,-32],[-1,-83],[8,-33],[26,-41],[7,-74],[0,-50],[11,-60],[22,-28],[74,-18],[91,30],[71,60],[83,52]],[[53998,46083],[41,-27],[39,-35],[29,-48],[56,-53],[-33,-56],[0,-51],[16,-73]],[[54146,45740],[-14,-155],[-43,-236],[-17,-138],[7,-39],[-16,-69],[-59,-148],[-9,-399],[-20,-211],[-33,-156],[-30,-83],[-28,-10],[-19,-25]],[[53865,44071],[-12,-39],[-22,-33],[-33,-27],[-17,-29],[-3,-31],[-31,-20],[-59,-9],[-35,-25],[-11,-41],[-19,-33],[-30,-24],[-14,-40],[2,-56],[-17,-49],[-35,-40],[-33,-1],[-30,38],[-39,25],[-50,13],[-42,-10],[-33,-31],[-30,-50],[-26,-69],[-29,-12],[-31,46],[-40,14],[-48,-18],[-39,7],[-29,30],[-44,4],[-59,-24],[-120,27],[-182,80],[-153,30],[-188,-29],[-16,83],[10,44],[30,34],[20,38],[7,42],[21,32],[35,23],[14,22],[3,43],[31,45],[2,38],[21,33],[-6,107],[1,66],[9,51],[28,58],[15,60],[60,60]],[[52569,44524],[22,32],[11,69],[36,86],[12,60],[56,69],[23,45],[4,42],[-11,48],[-24,53],[-77,134],[-59,60],[-76,51],[-50,16],[-25,-18],[-24,14],[-25,45],[-41,36],[-88,39],[-200,156],[-80,76],[-27,46],[-74,84],[-123,121],[-94,59],[-65,-4],[-105,35],[-144,74],[-83,71],[-22,69]],[[51216,46192],[-53,69],[-85,70],[-43,45],[-4,22],[-25,29],[-46,35],[-52,60],[-55,86],[-60,132],[-64,179],[-68,121],[-73,62],[-36,41],[-11,40]],[[92318,84452],[-44,-59],[-21,79],[82,112],[39,71],[20,-41],[-75,-114],[-1,-48]],[[92547,84504],[-3,20],[34,143],[36,49],[51,43],[19,29],[-31,28],[-31,15],[-31,-15],[-12,17],[15,50],[-8,122],[-6,51],[23,123],[24,85],[55,52],[48,-15]],[[92730,85301],[35,-14],[7,-29],[35,-34],[29,-5],[9,-109],[-16,-94],[-1,-83],[11,-152],[-25,-65],[-21,-135],[-18,3],[-57,-42],[-76,-39],[-83,-11],[-12,12]],[[13213,50346],[62,-32],[11,-53],[-13,-35],[-31,9],[-16,19],[-21,63],[-61,-14],[-42,12],[-23,82],[-1,37],[10,23],[45,24],[55,-18],[21,-46],[4,-71]],[[13001,50447],[-13,-18],[-18,13],[-11,36],[4,22],[40,-3],[11,-10],[-13,-40]],[[12314,50912],[-33,10],[4,71],[28,-9],[20,-63],[-19,-9]],[[12289,51065],[-16,8],[-1,50],[29,-34],[-12,-24]],[[17809,55342],[-16,-12],[-1,74],[28,-26],[-11,-36]],[[17633,55748],[-32,-54],[0,58],[32,-4]],[[17648,55913],[64,-36],[0,-32],[-64,-20],[-21,-17],[-26,11],[-14,42],[61,52]],[[17195,56100],[-9,-12],[-21,59],[32,21],[17,-11],[-19,-57]],[[17419,56439],[-28,-6],[-5,35],[21,26],[21,-10],[11,-28],[-20,-17]],[[17196,56459],[-42,-16],[-20,3],[-15,57],[12,46],[72,-14],[5,-50],[-12,-26]],[[99605,79797],[-75,-30],[-55,6],[-16,15],[-31,59],[-22,76],[18,69],[-30,202],[-10,154],[4,32],[45,117],[15,77],[43,179],[45,69],[67,51],[54,-99],[67,-76],[12,-84],[-19,-69],[-18,-110],[15,-94],[18,-73],[17,-95],[3,-66],[-9,-61],[-23,-52],[-46,-155],[-13,-16],[-56,-26]],[[89675,94309],[46,-72],[57,-38],[134,-41],[11,5]],[[89923,94163],[-9,32],[25,17],[30,-15],[57,22],[85,57],[77,12],[71,-34],[60,-78],[-31,-195],[-33,-95],[-220,-59],[14,28],[-14,89],[21,34],[-50,12],[-38,-51],[15,-76],[-33,-65],[-2,-55],[-17,-50],[35,6],[-15,-48],[-66,-91],[-23,-55],[6,-217],[-30,-130],[-2,-38]],[[87303,93465],[-7,7]],[[87296,93472],[-17,47],[-29,16],[-22,27],[-15,40],[3,38],[22,35],[29,16],[35,-5],[8,35],[-34,31],[-62,39],[-63,-21],[-65,-81],[-46,-13],[-29,55],[-50,32],[-73,10],[-45,21],[-17,31],[-32,24],[-70,26],[11,30],[58,7],[6,27],[-53,27],[-23,23],[27,29],[6,30],[25,32],[-26,49]],[[86755,94129],[-88,34],[-34,35],[-21,2],[-68,50],[-31,43],[-41,40],[5,36],[-9,42],[4,106],[-28,-10],[-25,31],[-30,63],[-21,21],[-75,53],[-51,92]],[[87377,96047],[77,42],[36,56],[28,-2],[88,-66],[95,4]],[[87701,96081],[161,-42],[25,7],[51,-27],[45,3],[42,19],[45,6],[40,-11],[31,-38],[81,-80],[24,-30],[78,19],[41,54],[127,61],[97,15],[94,25],[110,17],[49,84],[12,63],[59,18]],[[88913,96244],[76,21]],[[140713,93121],[-13,-19],[-32,16],[5,51],[88,33],[32,-39],[-80,-42]],[[140495,93646],[64,-51],[91,11],[-22,-46],[-35,1],[-60,-66],[-53,-9],[-26,-16],[-86,-99],[-11,-39],[-52,-74],[-77,-67],[-14,-125],[-50,50],[-6,51],[16,42],[88,89],[35,51],[11,40],[34,44],[16,39],[22,17],[74,158],[41,-1]],[[141525,94217],[-80,-50],[-65,-21],[-111,-102],[-39,-55],[-56,-22],[-55,12],[-15,-22],[-5,-41],[-20,-35],[-109,-110],[-44,-86],[-47,-16],[-87,-88],[16,75],[17,37],[72,68],[6,72],[39,62],[80,62],[54,82],[44,21],[48,68],[50,24],[-6,52],[22,58],[18,-4],[39,-80],[32,-3],[84,17],[124,141],[40,25],[46,-8],[5,-37],[-9,-30],[14,-35],[-20,-27],[-82,-4]],[[141994,94442],[-64,-35],[-40,1],[94,172],[57,25],[71,102],[149,124],[17,9],[88,-3],[-137,-137],[-17,-55],[-59,-58],[-45,-19],[-30,-27],[-84,-99]],[[142991,95316],[-81,-76],[-26,1],[-17,44],[64,12],[76,101],[54,67],[30,23],[23,-1],[-123,-171]],[[143464,95919],[-21,-39],[-29,15],[27,48],[23,-24]],[[143886,96634],[-16,-35],[-22,23],[43,42],[14,50],[32,0],[2,-33],[-53,-47]],[[144200,96998],[-41,-31],[-45,18],[1,60],[91,186],[32,-12],[-7,-44],[-34,-69],[11,-83],[-8,-25]],[[144678,97687],[-55,-70],[-80,-17],[-39,-22],[-51,-73],[-47,14],[-20,24],[0,82],[-20,36],[10,23],[46,-3],[47,53],[106,22],[40,57],[48,140],[50,51],[41,10],[11,-70],[-9,-78],[-24,-75],[-54,-104]],[[144887,97935],[-34,-13],[-56,44],[-12,20],[19,37],[71,54],[47,-13],[-2,-64],[-33,-65]],[[144559,98049],[-39,-8],[-30,41],[-7,31],[44,14],[30,-16],[2,-62]],[[139010,100536],[93,-176],[4,-39],[-25,-90],[-7,-54],[3,-59],[77,-212],[55,-134],[27,-113],[16,-119],[4,-183],[-4,-61],[-26,-94],[-27,-24],[-12,-66],[-8,-184],[16,-97],[25,-68],[19,-72],[2,-78],[9,-34],[42,-44],[17,-34],[7,-120],[26,-37],[87,-514],[35,-157],[100,-269],[40,-163],[25,-78],[31,-166],[30,-91],[39,-90],[75,-80],[34,-45],[9,-36],[4,-125],[-18,27],[-22,95],[-37,54],[-109,123],[-68,97],[-68,47],[-64,22],[-37,3],[-151,-15],[-63,-20],[-56,-44],[-34,-65],[-24,-131],[-138,-467],[-33,-122],[-12,-130],[5,-102],[9,-38],[39,-102],[33,-59],[51,-42],[33,-48],[28,-70],[36,-155],[38,-109],[17,-34],[44,9],[55,-11],[17,-28],[23,-123],[17,-149],[-31,-91],[-11,-80],[-22,-60],[-5,134],[-21,95],[-8,82],[-30,58],[-101,23],[-94,9],[-59,74],[-49,-7],[-43,-40],[-31,-62],[-44,-137],[-41,-188],[-26,-62],[-31,-57],[-50,67],[-13,52],[-6,58],[-37,195],[15,169],[62,234],[12,77],[-23,144],[-9,167],[48,154],[32,65],[14,77],[-20,193],[-46,130],[-57,124],[-13,66],[49,155],[17,74],[20,163],[33,179],[5,451],[-5,66],[-31,141],[-2,81],[15,101],[20,79],[26,76],[0,156],[-50,144],[-37,63],[-57,77],[-44,42],[-21,32],[37,36],[-37,41],[-23,60],[-3,236],[9,60],[52,137],[23,166],[7,171],[-15,69],[-6,140],[12,35],[48,46],[77,28],[76,-63],[45,3],[44,26],[25,62],[-32,36],[19,45],[54,15],[-15,43],[27,111],[-16,51],[-87,125],[-57,92],[93,-1],[28,17],[33,78],[29,-15]],[[149898,100655],[18,-36],[-174,129],[-82,67],[-20,43],[30,0],[35,-41],[51,-19],[74,-55],[68,-88]],[[136606,101028],[-53,-121],[-37,-2],[-29,26],[-59,-11],[13,45],[86,58],[79,5]],[[136934,101023],[39,-28],[61,5],[15,-19],[-47,-29],[-35,-63],[-11,-56],[-116,-109],[-26,-7],[-58,120],[-27,33],[-81,-57],[-18,-1],[18,70],[47,77],[22,10],[61,126],[143,-60],[13,-12]],[[87330,100510],[-15,-4],[-243,6],[-442,23],[-402,20],[-243,18],[-17,8],[66,60],[44,62],[36,81],[13,119],[58,25],[124,-4],[53,30],[69,75],[72,91],[23,38]],[[86551,101152],[-43,-66],[-113,-140],[77,-25],[49,-26],[46,-5],[83,23],[15,120],[6,109]],[[149299,100846],[-2,-101],[-53,51],[-25,41],[-60,27],[-88,115],[-23,74],[-32,38],[-104,72],[34,9],[44,31],[148,-28],[-20,-48],[8,-54],[67,-111],[33,-39],[42,-29],[31,-48]],[[142382,103756],[-34,-8],[-17,33],[52,30],[32,44],[27,-46],[-60,-53]],[[148001,103467],[-71,-66],[-19,49],[65,43],[64,110],[25,91],[-10,60],[190,56],[136,91],[24,-4],[24,-76],[14,-98],[-20,-60],[-145,-33],[-137,-65],[-140,-98]],[[92950,108047],[18,-72],[-7,-53],[-27,-18],[-42,57],[-53,25],[-12,40],[86,32],[37,-11]],[[107682,108967],[-76,-9],[-83,53],[-79,104],[15,25],[128,-10],[119,-29],[-8,-67],[22,-21],[-38,-46]],[[95921,109106],[-16,-10],[-86,33],[-4,35],[71,-2],[35,-56]],[[87,110664],[87,-23],[54,4],[82,-61],[175,-49],[80,-55],[-27,-11],[25,-79],[193,-56],[63,-29],[34,-71],[42,-25],[54,36],[-28,28],[-182,98],[15,15],[244,-124],[67,-48],[-48,-37],[21,-11],[79,14],[101,-49],[114,-39],[673,-307],[45,-109],[3,-52],[-61,-62],[95,6],[65,50],[37,-21],[29,-41],[-9,-56],[-26,-45],[-3,-77],[23,-65],[44,-58],[5,-92],[-43,-41],[-23,-71],[108,-14],[73,-45],[22,-76],[37,-56],[69,72],[53,14],[29,-63],[-21,-106],[31,11],[69,84],[25,48],[-63,60],[-78,13],[-40,28],[-16,36],[74,40],[24,62],[-35,114],[-29,28],[-56,13],[-25,27],[-92,16],[46,28],[243,2],[88,27],[80,-28],[145,-25],[-72,-79],[-10,-72],[74,9],[-22,72],[35,22],[38,-31],[41,-9],[139,-12],[24,37],[-180,39],[-2,21],[166,-26],[150,-43],[104,6],[102,-29],[97,-79],[90,-99],[91,-58],[96,-44],[195,-146],[98,-34],[23,-49],[-22,-22],[153,-4],[48,-14],[21,-60],[-45,-41],[-74,24],[-67,-17],[-104,-56],[-60,-44],[-10,-29],[10,-79],[-9,-37],[-45,-25],[-99,15],[-96,37],[-111,75],[-32,-6],[64,-67],[72,-49],[35,-54],[-22,-27],[-48,-6],[-108,21],[-189,-26],[-22,32],[-140,28],[-66,61],[-74,14],[-76,-6],[98,-48],[87,-81],[-27,-32],[79,4],[9,-21],[-25,-86],[-17,-18],[-152,-19],[39,-14],[83,-1],[40,-15],[27,-54],[5,-56],[-80,-58],[-84,-39],[-86,-18],[-89,-4],[-29,-21],[73,-14],[42,-25],[-5,-21],[-48,-39],[30,-66],[46,-5],[112,-41],[40,-48],[-3,-42],[-146,-2],[-22,61],[-68,6],[14,-96],[-40,-50],[-64,-13],[-51,7],[-43,46],[0,38],[29,23],[-8,67],[-64,-77],[-55,-44],[-54,-1],[-117,59],[-137,131],[-109,56],[-200,67],[-95,-14],[-60,6],[-54,45],[-143,100],[10,66],[-11,89],[-29,83],[-73,83],[-196,53],[-161,37],[-58,9],[-51,-8],[-135,-69],[-91,-9],[-263,-4],[-44,8],[-40,29],[-9,39],[10,102],[-76,38],[-86,99],[-26,67],[83,-14],[23,77],[46,52],[22,82],[-35,27],[-59,-82],[-70,-40],[-82,36],[0,80],[-37,-23],[-64,-18],[6,-87],[-41,-15],[-84,-9],[-29,39],[-43,-116],[-2,-81],[26,-68],[38,-32],[82,-48],[36,-35],[6,-85],[-72,-90],[-50,-99],[-30,-40],[-127,-83],[0,170],[0,170],[0,171],[0,170],[0,171],[0,170],[0,170],[0,171],[0,170],[0,171],[0,170],[0,171],[0,170],[0,170],[0,171],[0,170],[87,-30]],[[99173,110835],[8,-67],[-51,-36],[-30,61],[-75,-50],[-35,-55],[-92,-80],[-192,-57],[-116,-24],[-105,-7],[-98,50],[-53,96],[-16,68],[17,159],[41,53],[94,63],[92,41],[46,10],[117,2],[332,-141],[74,-36],[42,-50]],[[106529,111075],[-34,-61],[-72,3],[-31,25],[82,64],[48,-2],[7,-29]],[[147067,110637],[-3,66],[-41,34],[-79,26],[-19,20],[-5,60],[17,95],[-35,50],[12,45],[91,49],[78,69],[49,-33],[-4,-63],[-29,-45],[-72,-16],[-10,-31],[19,-183],[53,-95],[-22,-48]],[[150398,111110],[-123,-6],[-244,64],[-88,34],[-65,44],[-88,42],[32,45],[84,52],[59,23],[70,5],[438,-93],[25,-35],[-7,-37],[-51,-31],[-15,-73],[-27,-34]],[[103560,111357],[12,-99],[-16,-47],[-97,-26],[-82,20],[-92,-15],[-101,30],[2,36],[-34,53],[-155,39],[-82,-21],[-117,111],[-90,150],[21,36],[68,28],[50,51],[91,23],[131,-72],[140,-115],[138,-62],[93,-59],[120,-61]],[[106192,111779],[-49,14],[-17,38],[21,58],[45,-110]],[[146745,111975],[-92,-2],[-30,22],[5,57],[51,-7],[66,-70]],[[100310,112352],[73,-88],[51,-16],[6,-38],[-68,-90],[31,-34],[-42,-9],[-32,59],[-49,22],[-42,66],[-82,49],[-52,-8],[-76,32],[20,50],[93,19],[114,11],[55,-25]],[[154559,111977],[-30,-3],[-62,125],[-9,32],[24,41],[63,50],[26,37],[149,65],[134,86],[73,13],[73,40],[49,10],[0,-380],[-51,-12],[-101,-53],[-213,-13],[-125,-38]],[[136943,112452],[-107,-59],[-110,42],[-82,-19],[-81,32],[22,38],[66,16],[230,6],[62,-56]],[[484,112500],[225,-33],[128,-64],[35,-33],[191,-89],[4,-66],[-129,-70],[-104,-17],[-200,-19],[-271,-53],[-151,-11],[-97,34],[-115,14],[0,380],[133,28],[125,-8],[125,20],[101,-13]],[[110960,112997],[-210,-6],[-103,11],[-1,47],[106,51],[98,88],[87,46],[73,0],[229,-54],[37,-50],[-91,-45],[-63,-17],[-98,-59],[-64,-12]],[[111765,113297],[-30,-8],[-237,29],[-82,36],[-15,62],[219,141],[83,-39],[79,-84],[-1,-104],[-16,-33]],[[109680,113403],[-97,24],[-110,47],[-34,32],[42,61],[91,15],[136,-16],[102,-32],[-94,-20],[-42,-45],[22,-42],[-16,-24]],[[129320,113553],[-109,-31],[-93,0],[-65,55],[52,22],[136,1],[79,-47]],[[101350,113705],[202,-27],[151,-9],[125,-38],[-14,-43],[-89,-74],[-8,-129],[-38,-41],[-113,0],[-42,-16],[-10,-66],[-36,-50],[-75,-17],[-11,-51],[-26,-26],[18,-105],[52,-65],[-50,-79],[-12,-64],[-33,-55],[74,-46],[62,-125],[88,-127],[97,-113],[177,-166],[190,-126],[73,-35],[180,-58],[61,-45],[-76,-47],[-80,-17],[-50,-33],[-214,40],[-60,57],[-108,-9],[68,-35],[62,-50],[-55,-21],[-125,66],[-24,-27],[-63,21],[-62,-23],[-39,18],[-8,35],[-194,-18],[-160,8],[-95,45],[-19,-43],[-116,45],[-263,48],[-146,41],[99,29],[-11,96],[36,24],[80,-12],[-10,40],[38,7],[74,-22],[27,14],[-116,49],[-127,70],[13,25],[-91,5],[-39,41],[19,99],[-196,-32],[-99,7],[-112,22],[-103,-32],[-104,-11],[-54,11],[-96,56],[-34,54],[-31,89],[2,110],[60,95],[130,57],[79,-15],[79,-1],[67,47],[23,38],[69,34],[36,63],[19,64],[49,46],[-17,29],[40,54],[-100,10],[-67,38],[22,38],[100,58],[92,27],[98,-7],[50,9],[-52,39],[-25,91],[3,31],[69,53],[67,10],[104,38],[145,-12],[102,16],[205,62],[137,-22],[85,-34]],[[107963,113557],[-126,-33],[-113,6],[-85,20],[42,97],[-10,94],[66,59],[87,23],[254,26],[125,-46],[52,-53],[103,-62],[15,-76],[-116,-8],[-294,-47]],[[110583,113801],[-42,-4],[-183,25],[-65,33],[72,22],[218,-76]],[[110043,113809],[-55,14],[84,44],[155,23],[52,-17],[-96,-62],[-140,-2]],[[138762,114115],[196,-65],[303,-163],[52,-77],[12,-148],[-128,-17],[-152,16],[-215,6],[-93,20],[-228,20],[-178,55],[-224,44],[-117,-12],[-157,-52],[-104,-4],[-43,49],[202,22],[97,18],[92,57],[125,148],[87,62],[97,4],[160,22],[107,8],[109,-13]],[[131164,114083],[-76,17],[-13,37],[91,4],[45,-32],[-47,-26]],[[113508,114237],[-59,-22],[-109,25],[-147,11],[37,26],[106,16],[157,-21],[15,-35]],[[113147,114250],[-42,-24],[-99,30],[-23,22],[85,22],[79,-50]],[[136184,114127],[-63,11],[-145,91],[-35,43],[-100,56],[-6,36],[103,-24],[176,-90],[96,-73],[-26,-50]],[[138256,114187],[-216,-57],[-42,3],[-98,57],[-35,125],[40,37],[92,21],[190,5],[82,-22],[25,-52],[-38,-117]],[[114029,114507],[-20,-42],[-122,22],[-17,17],[125,40],[34,-37]],[[126359,114466],[-55,-89],[-29,-23],[-92,-30],[-84,-71],[-253,36],[-122,51],[-116,37],[-60,56],[58,15],[104,-8],[30,18],[25,96],[33,15],[374,-48],[144,-27],[43,-28]],[[114845,114870],[36,-12],[114,20],[53,-36],[-85,-76],[-101,12],[-130,2],[-57,29],[31,32],[139,29]],[[112915,115175],[22,-48],[-74,-6],[-170,-36],[-67,55],[91,58],[93,-29],[-6,61],[109,12],[2,-67]],[[140748,115142],[114,-5],[188,53],[403,-19],[33,-18],[-15,-80],[50,-25],[130,-6],[82,24],[242,-12],[198,-18],[184,-83],[69,39],[56,0],[-75,-147],[-136,-54],[-212,-50],[-104,-16],[-236,0],[-324,19],[-88,18],[-201,93],[-208,27],[-190,81],[-239,58],[47,137],[78,114],[43,16],[92,-49],[19,-97]],[[136076,115169],[-87,-20],[-126,6],[9,51],[51,79],[-13,42],[22,90],[75,22],[51,-72],[113,-62],[-80,-58],[16,-58],[-31,-20]],[[143371,115664],[-43,-25],[-98,41],[104,35],[37,-51]],[[137842,115461],[98,-5],[49,-19],[46,-73],[69,-39],[69,-2],[55,48],[-8,116],[46,85],[115,52],[80,51],[111,-20],[111,-45],[198,-97],[201,-54],[111,-9],[162,32],[54,3],[676,-194],[45,-38],[-145,-29],[-95,-51],[-33,-35],[68,-67],[-205,-116],[-83,-30],[-84,-11],[-170,28],[-99,-1],[-97,24],[-151,105],[-39,48],[-13,78],[15,67],[57,18],[58,62],[-26,37],[-168,5],[-200,-42],[28,-141],[49,-78],[151,-148],[135,-49],[86,-64],[-151,-72],[-132,-33],[-80,21],[-129,98],[-103,-6],[-188,-41],[-280,-29],[-169,-24],[-111,33],[-109,48],[-65,-13],[-76,-136],[-45,-44],[-98,-21],[-100,31],[-333,67],[-77,51],[-100,96],[-101,32],[-99,49],[-91,77],[-25,63],[15,28],[132,-12],[-32,143],[23,136],[39,23],[150,-16],[-89,105],[54,54],[151,28],[99,61],[96,10],[166,49],[45,-2],[82,-62],[180,-66],[93,-42],[131,-86]],[[119100,115773],[-78,-46],[-22,-63],[-82,24],[-114,3],[-72,23],[-158,15],[30,52],[92,-28],[83,31],[157,-15],[51,23],[113,-19]],[[119239,115718],[-49,41],[59,68],[75,-37],[-34,-46],[-51,-26]],[[125968,116012],[66,-47],[13,-31],[-56,-41],[-101,61],[-62,8],[-65,37],[4,21],[201,-8]],[[119555,115997],[-68,-6],[-52,69],[31,12],[89,-75]],[[141762,116039],[-323,-8],[138,68],[296,25],[-60,-24],[-51,-61]],[[106710,115745],[-274,-90],[-203,-43],[-161,-44],[-286,-55],[-180,-45],[-197,-36],[-207,-48],[-260,-35],[-148,-46],[-116,-19],[-422,-103],[-194,-75],[-112,-3],[-90,-65],[-91,-41],[-121,-75],[-77,-1],[-86,-32],[-15,-26],[92,-17],[20,-29],[-120,-75],[-104,-36],[-101,0],[3,-75],[-68,-17],[-153,56],[-25,-19],[-35,-111],[-75,-31],[-169,25],[12,-53],[44,-92],[-20,-44],[-76,-68],[-291,-80],[46,-114],[-50,-57],[-66,5],[-67,35],[-68,-8],[75,-48],[34,-61],[-36,-33],[-140,-74],[-74,-96],[-142,-43],[-87,-5],[-171,34],[-209,7],[-116,25],[-118,43],[-102,-3],[-87,-22],[-115,-47],[-72,91],[31,42],[-158,108],[-32,48],[177,84],[91,34],[111,17],[81,95],[82,63],[137,162],[33,12],[285,31],[-56,43],[-124,9],[-34,50],[143,117],[131,71],[121,41],[-68,40],[-148,-7],[-58,38],[-23,46],[98,49],[54,-6],[176,-62],[132,103],[-29,58],[120,39],[223,-30],[76,115],[134,60],[-15,49],[155,40],[101,39],[98,55],[388,63],[110,26],[35,58],[69,21],[195,5],[91,-23],[48,34],[-9,79],[73,34],[158,11],[94,-5],[194,-34],[100,-8],[134,10],[82,-6],[239,51],[403,48],[210,74],[106,11],[143,47],[98,8],[46,24],[86,92],[122,52],[208,72],[187,28],[117,30],[208,-12],[202,-39],[92,-44],[75,-57],[29,-57],[-36,-67],[18,-26],[-147,-86],[-169,-115],[-173,-33]],[[118994,116294],[-186,-36],[-75,33],[-136,-7],[24,31],[187,29],[290,75],[15,-53],[-119,-72]],[[116078,116407],[-93,-3],[-68,30],[60,52],[144,6],[22,-39],[-65,-46]],[[123787,116445],[-62,32],[41,40],[98,-11],[37,-43],[-114,-18]],[[127779,97354],[-22,37],[-35,30],[-144,62],[-35,1],[-90,-41],[-90,-49],[-124,11],[-67,36],[-76,77],[-41,55],[-112,66],[-29,9],[-52,-3],[-72,10],[-39,13],[-97,-49],[-82,-72],[-64,-27],[-68,-38],[-177,-147],[-31,-72],[-15,-53],[-108,-65],[-47,-11],[-87,17],[-51,-12],[-128,-63],[-148,-19],[-69,-14],[-63,-24],[-40,9],[-219,-132],[-85,-20],[-43,35],[-44,23],[-46,-3],[-52,-32],[-89,25],[-200,44],[-33,19],[-93,27],[-217,0],[-51,-9],[-40,13],[-50,38],[-83,90],[-77,48],[-11,37],[-31,31],[-1,110],[6,52],[-14,16],[-123,25],[-171,4],[-83,68],[-43,77],[-37,36],[-62,44],[-59,12],[-153,-17],[-59,19],[-89,51],[-79,6],[-133,42],[-50,-10],[-74,-49],[-51,-5],[-125,-28],[-39,-17],[-56,-8],[-48,-22],[-75,-73],[-44,-11],[-51,2],[-68,13],[-73,-26],[-91,34],[-50,9],[-31,45],[-31,18],[-52,7],[-78,23],[-76,37],[-59,52],[-33,45],[-57,13],[-21,28],[-1,35],[13,58],[-43,77],[4,50],[-13,104],[-19,40],[-4,75],[6,68],[-19,28],[-125,47],[-108,32],[-46,3],[-35,-13],[-68,42],[-138,64],[-158,76],[-29,8],[-187,8],[-49,13],[-87,81],[-135,36],[-99,52],[-37,25],[-24,1],[-33,46],[-28,11],[-19,-33],[-20,-78],[-18,-37],[-52,-72],[-124,-58],[-21,-31],[-28,-66],[-8,-51],[-50,-15],[-29,-24],[-39,-70],[-10,-48],[-5,-80],[-32,-79],[-5,-46],[55,-91],[4,-60],[29,-86],[50,-53],[58,-25],[5,-32],[-18,-129],[-63,-156],[-43,-44],[-29,-13],[-36,-34],[-57,-2],[-57,-23],[-20,-48],[-78,-70],[-66,-8],[-30,22],[-17,30],[-49,54],[-118,20],[-48,-23],[-40,28],[-54,-16],[-28,4],[-37,37],[-71,31],[-20,0],[-36,-27],[-36,37],[-27,-1],[-35,-32],[-61,-15],[-19,-23],[-35,3],[-24,18],[-94,2],[-24,-6],[-29,18],[-13,32],[-36,25],[-91,0],[-45,-14],[-21,45],[-46,54],[-25,10],[-20,29],[-3,57],[-26,145],[-15,31],[-76,12],[-37,-3],[-157,11],[-153,21],[-72,-8],[-40,35],[-29,87],[-37,7],[-33,-7],[-18,-47],[-48,-16],[-60,53],[-57,69],[-25,-10],[-14,-52],[-31,-52],[-38,-6],[-129,2],[-42,-20],[-47,-63],[-33,-9],[-32,-28],[-14,-37],[-32,1],[-137,-38],[-79,-64],[-34,-12],[-45,-58],[-60,-7],[-88,-43],[-38,-24],[-73,-16],[-21,-17],[-12,-59],[-43,-22],[-57,-3],[-44,-32],[-4,-55],[15,-51],[-6,-23],[-77,-40],[-35,-34],[-65,11],[-18,-22],[-9,-44],[-74,-41],[-47,46],[-16,-8],[-13,-55],[-37,-2],[-49,28],[-78,-9],[-25,7],[-87,-22],[-24,-49],[-9,-87],[-78,-64],[-52,-2]],[[98728,94926],[6,-31],[-52,-7],[-19,-65],[-116,-61],[-55,-10],[9,-77],[20,-39],[-26,-22],[-44,32],[-44,0],[-98,-109],[-43,-28],[-46,-12],[-95,-40],[-56,16],[-22,-20],[-7,-51],[-26,35],[-21,-23],[2,-49],[-18,-53],[-32,-23],[-10,-88],[-17,-54],[-23,-48],[-33,-87],[-46,-82],[-13,-62],[-35,41],[-19,-65],[-50,-45],[-37,-43],[-21,-106],[20,-58],[70,-23],[46,-31],[43,-57],[46,-48],[33,-62],[24,-77],[29,-148],[14,-157],[43,195],[36,35],[-8,-55],[-25,-84],[-26,-122],[-8,-89],[10,-114],[-22,-128],[29,-47],[45,-44],[32,-65],[8,-90],[41,-47],[111,-181],[64,-120],[67,-159],[81,-76]],[[97521,91831],[-93,69]],[[97428,91900],[-71,13],[-40,18],[-47,52],[-89,66],[-2,21],[23,85],[17,82],[-31,30],[-40,13],[-94,-5],[-59,83],[-145,75],[-9,-6],[-34,-91],[-34,65],[-21,17],[-59,10],[-76,-32],[-98,-60],[-42,-15],[-20,-20],[-57,3],[-38,32],[25,60],[-6,31],[-68,42],[-29,26],[-90,36],[-111,64],[-39,42],[-3,30],[-44,28],[-56,26],[-84,-10],[-63,48],[-60,3],[-99,-27],[-202,20],[-96,80],[-118,29],[-61,30],[-61,43],[-66,38],[-55,-16],[-159,41],[-28,-12],[-27,-48]],[[94762,92940],[-19,-45],[-45,37],[-154,178],[-81,118],[-263,272],[-35,21],[-140,39],[-56,31],[-142,195],[-63,-26],[-57,6],[-70,45],[-25,37],[-30,81],[-34,47],[-112,68],[-126,39],[-14,42],[109,46],[30,26],[-95,57],[62,39],[49,-31],[54,-56],[47,-21],[22,27],[165,46],[11,37],[-1,40],[-26,8],[1,46],[24,62],[74,101],[40,141],[35,32],[51,-31],[22,64],[55,0],[38,-11],[40,8],[-76,105],[-103,106],[-43,-8],[-27,17],[-45,87],[-19,73],[87,-13],[82,51],[31,7],[49,-16],[68,-10],[-6,47],[-21,57],[82,41],[74,24],[140,81],[62,15],[10,43],[-42,113],[-74,2],[-41,-67],[-112,-22],[-50,5],[39,43],[-29,18],[-39,-44],[-117,-58]],[[93983,95452],[-5,58],[27,43],[7,28],[-34,30],[23,62],[1,49],[13,55],[35,36],[61,8],[56,31],[33,33],[45,86],[34,12],[111,-12],[100,-3],[148,8],[19,30],[-1,53],[47,142],[32,49],[-1,21],[-39,14],[-7,30],[17,20],[-3,41],[-21,86],[-30,20],[-52,14],[26,103],[38,48],[48,-10],[34,9],[2,31],[-54,18],[-47,26],[-29,65],[32,20],[56,19],[77,95],[25,74],[0,43],[-30,44],[0,46],[16,31],[-28,38],[-66,-20],[-41,3],[-137,108],[-69,10],[-55,79],[-64,-26],[-47,5],[-61,41],[-55,48],[-85,8],[-83,61],[-35,-19],[-6,-49],[-50,-24],[-42,31],[-106,101],[-42,73],[-10,54],[-35,34],[-34,49],[-34,4],[-91,-46],[-62,-8],[-99,-33],[-60,-58],[-51,50],[-57,11],[-27,-11],[-27,22],[-23,39],[-31,28],[-98,20],[-40,-22],[-53,-41],[-36,15],[-19,50],[-25,14],[-33,55],[-9,50],[21,50],[0,31],[-24,50],[-32,131],[1,40],[-49,0],[-17,11],[-41,100],[-151,-22],[-96,45],[-110,5],[20,47],[-32,75],[-2,94],[-37,63],[2,24],[111,26],[8,44],[-122,139],[-42,123],[-41,66],[-44,45],[-36,20],[-52,-8],[-70,1],[-71,13],[-60,-9],[-107,-58],[-40,-3],[-129,39],[-31,-1],[-31,-24],[-35,-110],[-69,-45],[-64,-2],[-90,38]],[[91205,98940],[-32,83],[-48,64],[3,153]],[[91128,99240],[13,10],[-38,60],[-3,46],[19,23],[-13,46],[-39,44],[-80,108],[69,125],[108,3],[34,-11],[44,-55]],[[91242,99639],[89,-11],[37,1],[47,26],[75,57],[19,42],[47,29],[54,17],[-8,78],[-93,68],[-19,49],[11,25]],[[91501,100020],[0,28],[-108,61],[-90,11],[-74,-3],[-28,13],[30,87],[6,45],[-20,39],[-167,97],[-45,67],[-23,69],[-26,43],[-48,27],[35,83],[-15,26],[-59,33],[-80,61],[14,92],[63,94],[-8,61],[-62,98],[3,36],[34,47],[3,120],[-121,67]],[[90715,101422],[-73,84],[-96,41],[-82,-7],[-46,7],[-83,-53],[-26,0],[-87,-59],[-55,69],[19,67],[-10,41],[-124,57],[-60,-13],[-66,-42],[-23,9],[-45,74],[-31,21],[-74,-3],[-47,-22]],[[89706,101693],[-58,61],[23,82],[-14,88],[-29,110],[-41,38],[-7,32],[-43,66],[-4,58],[-33,30],[-71,-15],[30,92],[3,54],[20,56],[22,22],[10,56],[-18,48],[-111,79],[-12,54],[-68,14]],[[89589,104080],[22,49],[-21,119],[19,39],[31,4],[35,-43],[53,-23],[38,29],[13,56],[28,25],[37,-22],[62,-8],[86,15],[57,92],[29,27],[225,-31],[195,-57],[22,59],[-85,48],[-45,66],[-65,51],[-65,5],[-86,-18],[-130,11],[-110,97],[-73,31],[-52,75],[43,6],[12,83],[-59,46],[-144,-74],[-164,-24]],[[90820,111251],[77,-10],[174,-55],[92,22],[53,66],[104,13],[-27,55],[7,28],[175,-59],[75,-44],[162,-38],[29,-20],[-6,-67],[-34,-17],[-69,3],[-249,47],[-37,-29],[30,-25],[73,-29],[20,-53],[112,8],[165,-31],[-18,-54],[120,42],[85,0],[4,-35],[-22,-77],[-37,-80],[47,-15],[82,110],[25,15],[235,2],[53,-7],[220,-52],[134,1],[50,32],[244,-59],[328,-131],[479,-217],[270,-192],[31,-42],[98,-23],[75,2],[318,-177],[109,-9],[-33,72],[64,-33],[61,-69],[73,-51],[75,-77],[63,-29],[189,-53],[41,-187],[32,-41],[0,-83],[55,-34],[41,-6],[-2,-61],[-33,-144],[-38,-62],[-287,-264],[-180,-102],[-351,-117],[-274,-44],[-110,-3],[-214,22],[-117,23],[-144,67],[-134,33],[-92,14],[-171,6],[-370,66],[-65,22],[-232,127],[-92,-35],[-55,-7],[-37,44],[24,26],[-132,37],[-109,2],[-58,31],[-70,23],[-49,-14],[-143,56],[-64,44],[-66,79],[35,46],[-228,46],[-217,6],[37,-22],[94,-12],[129,-76],[-16,-61],[96,-60],[105,-88],[108,-17],[19,-53],[-3,-50],[81,-33],[108,-29],[-39,-85],[236,-66],[123,-68],[126,-123],[41,-60],[-4,-67],[-70,-180],[-31,-37],[-59,-43],[114,-158],[57,-127],[13,-129],[51,-31],[-40,-35],[5,-102],[71,-83],[107,-54],[64,-11],[92,22],[67,-30],[148,-102],[67,-108],[28,-22],[150,-40],[112,-25],[172,-64],[30,-3],[83,56],[143,39],[44,53],[-3,46],[-37,81],[-10,78],[-92,54],[-134,-16],[-60,3],[-46,21],[-61,56],[-117,137],[-63,45],[-41,67],[3,64],[51,-2],[57,36],[42,129],[111,15],[167,-60],[207,-160],[46,-17],[127,2],[56,-46],[31,-3],[190,-50],[221,-100],[82,4],[39,79],[90,56],[63,9],[88,-20],[16,17],[-30,81],[-41,71],[-59,46],[-106,133],[-43,66],[-21,69],[29,104],[220,107],[80,64],[77,84],[36,17],[130,23],[172,71],[131,95],[131,143],[54,38],[104,-26],[65,-42],[88,-8],[86,7],[98,-4],[137,-65],[44,-49],[-45,-54],[32,-19],[49,8],[46,-11],[112,-93],[18,72],[-21,86],[53,119],[41,52],[74,133],[-22,85],[-3,100],[-11,46],[-48,67],[-94,47],[-94,15],[-32,45],[6,53],[26,76],[78,161],[81,226],[0,111],[-24,120],[-330,196],[-30,45],[60,5],[248,-91],[54,-5],[389,25],[190,-22],[161,-47],[115,-131],[116,-120],[110,-103],[3,-85],[-113,-17],[-110,-4],[-278,-42],[-253,-195],[-17,-45],[17,-44],[85,-46],[183,-69],[82,-136],[57,-69],[43,-26],[135,-7],[64,-17],[105,5],[347,72],[68,32],[23,49],[26,160],[60,125],[-14,90],[174,46],[161,31],[78,-9],[19,34],[-79,100],[26,15],[86,-29],[86,11],[334,136],[131,77],[77,30],[123,69],[60,22],[104,9],[111,28],[120,51],[163,44],[58,-5],[67,-51],[-44,-59],[60,-24],[150,61],[23,40],[-33,15],[-42,60],[-88,11],[146,86],[314,126],[168,58],[165,5],[82,-27],[-216,-26],[-33,-30],[74,-28],[-34,-29],[-57,-117],[68,-68],[6,-70],[-44,-37],[-60,14],[-53,-25],[-96,-17],[-36,-52],[110,-6],[195,-22],[57,22],[127,11],[72,-1],[67,-62],[62,12],[26,120],[99,74],[115,61],[110,5],[108,43],[51,8],[100,-17],[148,-3],[125,-37],[94,-9],[136,61],[314,173],[28,-39],[50,57],[243,61],[60,2],[23,-76],[47,-33],[65,-77],[-64,-33],[-47,-52],[-6,-120],[218,-65],[52,0],[74,49],[19,62],[-33,66],[13,70],[114,-4],[142,20],[64,40],[76,76],[51,64],[-32,110],[-84,-24],[-141,241],[-72,93],[46,43],[122,28],[109,90],[88,21],[325,-62],[370,-14],[315,-47],[357,-98],[173,-69],[145,-77],[-14,-54],[58,16],[127,-48],[176,-48],[33,-39],[118,-28],[142,-62],[147,-38],[106,-13],[63,-84],[211,-121],[40,-46],[183,-76],[92,-63],[58,24],[140,153],[134,266],[-93,4],[-70,-27],[-95,35],[-81,70],[-102,117],[-19,129],[-29,41],[-100,35],[-64,38],[-241,76],[-44,-27],[-29,-71],[-40,74],[13,127],[40,120],[62,-6],[32,17],[41,54],[-40,78],[4,53],[39,142],[16,166],[-60,69],[-139,-28],[-51,15],[-16,57],[40,43],[38,71],[-67,-16],[-22,28],[55,41],[64,99],[154,46],[115,44],[180,95],[133,94],[87,118],[59,111],[96,264],[90,194],[152,199],[95,18],[42,-18],[-28,-40],[104,-11],[123,13],[208,-7],[364,16],[50,-8],[135,-58],[74,7],[149,-27],[157,-69],[-11,-145],[-14,-97],[-56,-184],[-21,-47],[-86,-133],[-41,-87],[-65,-61],[-94,-42],[-19,-63],[91,-105],[217,-108],[53,-131],[11,-98],[-13,-255],[-20,-37],[-80,-90],[26,-71],[30,-264],[7,-215],[-25,-74],[-13,-207],[22,-78],[43,-65],[58,-42],[163,-75],[154,-92],[19,-65],[-55,-36],[-85,-94],[-55,-79],[-4,-63],[19,-82],[-9,-75],[-37,-69],[-51,-49],[-153,-76],[-321,-403],[-78,-48],[-130,15],[80,-140],[-5,-53],[-85,2],[-119,-57],[-54,-39],[-93,-20],[-70,20],[-77,37],[26,46],[106,54],[-48,6],[-58,-40],[-69,-8],[-82,48],[-62,53],[-31,11],[-59,-22],[-225,10],[-60,-9],[-28,-19],[33,-45],[45,-101],[94,-47],[124,-19],[121,-58],[154,-41],[347,17],[92,-5],[89,-18],[152,-60],[64,4],[110,55],[41,159],[398,172],[74,38],[120,93],[39,62],[45,169],[38,61],[259,195],[40,50],[8,91],[-19,123],[-48,101],[-52,59],[-52,81],[39,166],[42,65],[235,76],[200,28],[223,52],[90,11],[62,-9],[63,-57],[56,-84],[162,-125],[54,-89],[10,-107],[-5,-261],[-32,-113],[174,-93],[42,-38],[41,-14],[92,-7],[404,20],[-36,30],[-121,5],[-171,28],[-247,51],[-29,110],[7,68],[55,127],[40,22],[102,26],[-38,155],[-52,103],[-58,190],[-79,2],[-60,37],[-294,110],[-278,82],[-189,12],[-61,-9],[-158,-85],[-102,-18],[-195,37],[-166,-20],[-61,19],[-26,39],[50,153],[-25,60],[-73,78],[-45,63],[8,67],[109,259],[46,68],[116,120],[59,93],[-14,52],[-250,289],[-97,136],[-153,85],[-28,41],[252,279],[116,48],[160,30],[212,83],[81,47],[42,83],[3,109],[-16,90],[-22,49],[-95,134],[66,29],[91,-1],[93,-39],[46,-77],[55,-73],[-5,-86],[65,-112],[-83,-88],[-67,-130],[-52,-17],[-11,-101],[110,-111],[-15,-84],[-81,-72],[22,-62],[173,-53],[163,-33],[272,-11],[80,-52],[29,37],[256,-9],[206,-126],[109,-39],[88,-13],[179,15],[61,48],[-84,-4],[-36,-16],[-93,14],[-87,65],[-75,125],[-131,40],[-87,-16],[-97,7],[-158,68],[-105,26],[-188,74],[-53,30],[-41,61],[-79,158],[168,67],[193,19],[82,-21],[211,-112],[98,-4],[176,49],[20,31],[-40,65],[-53,33],[-102,15],[-124,-29],[-35,25],[26,58],[113,26],[101,69],[111,34],[110,13],[405,-10],[229,-110],[224,-49],[124,-44],[41,-83],[282,-156],[64,-21],[181,-7],[201,36],[91,4],[98,-10],[107,-56],[-111,-151],[-25,-22],[-183,-89],[-74,-23],[-36,-182],[42,-133],[-28,-70],[-47,-75],[42,-38],[83,102],[60,139],[63,36],[57,9],[60,-42],[18,-55],[3,-84],[-12,-80],[-48,-120],[-76,-85],[-26,-47],[75,-79],[97,-8],[22,44],[-25,84],[94,31],[88,16],[70,51],[33,90],[-68,152],[-105,155],[-79,80],[49,120],[83,134],[32,32],[17,56],[-16,63],[-83,99],[-61,33],[-192,20],[-47,16],[-140,102],[-59,115],[-168,62],[-89,17],[-131,5],[-79,22],[-117,69],[-74,155],[9,33],[71,132],[-36,53],[-107,43],[-23,48],[-25,140],[26,40],[59,42],[-5,66],[381,50],[150,13],[745,5],[52,14],[323,25],[138,28],[147,-30],[159,10],[71,61],[158,24],[264,27],[130,-5],[58,-44],[-143,-75],[-142,-68],[-117,-28],[-116,-60],[-14,-38],[11,-78],[120,-37],[91,-54],[159,-62],[16,13],[-321,154],[-26,31],[13,46],[93,54],[95,24],[320,32],[108,98],[87,38],[-156,48],[-221,220],[-54,34],[-169,25],[-76,25],[78,75],[91,18],[116,-24],[101,-62],[143,26],[-145,60],[-83,51],[-119,44],[-133,30],[-140,11],[39,67],[76,-9],[62,61],[194,-93],[91,25],[77,42],[162,113],[21,51],[-141,41],[-87,-3],[-7,31],[36,40],[71,15],[216,-43],[358,112],[99,54],[249,71],[122,-9],[254,93],[353,41],[205,0],[158,51],[242,18],[84,21],[408,52],[226,41],[35,32],[-202,-26],[-49,24],[-72,-38],[-98,40],[-48,-32],[-76,-2],[-14,48],[49,67],[57,-34],[66,50],[44,2],[124,-33],[84,33],[112,16],[174,-11],[29,30],[200,-26],[138,18],[94,-2],[147,-17],[67,-21],[-38,-51],[-143,-81],[39,-14],[82,37],[247,56],[40,-11],[-45,-69],[165,28],[140,61],[63,10],[64,-37],[59,34],[14,34],[107,7],[44,32],[139,32],[137,44],[227,-46],[161,-47],[90,-56],[-73,-123],[108,54],[-12,143],[-89,73],[-68,24],[-158,76],[-124,67],[28,20],[304,-26],[155,13],[167,-8],[224,32],[94,-33],[107,1],[124,-28],[37,33],[-203,35],[-91,-4],[-32,18],[74,103],[-77,82],[-6,55],[36,62],[84,27],[46,51],[97,67],[471,216],[224,82],[86,10],[99,-6],[196,68],[73,1],[271,-55],[65,-40],[148,-32],[173,-16],[79,-26],[71,-68],[-140,-27],[-150,-79],[-204,-44],[-253,-30],[-52,-21],[481,-7],[140,6],[29,-69],[47,-3],[139,33],[84,2],[157,-24],[102,15],[146,-30],[65,-45],[-211,-137],[-130,-109],[-110,11],[13,-54],[116,2],[61,-24],[143,31],[201,-10],[120,41],[54,104],[66,13],[74,-12],[123,0],[315,20],[263,-26],[212,33],[277,-25],[119,-25],[90,-45],[80,-13],[132,-86],[-33,-42],[121,10],[139,-35],[28,-115],[49,-62],[-33,-37],[42,-13],[98,39],[44,42],[-70,46],[123,8],[67,-97],[59,-154],[126,21],[6,-46],[-53,-105],[-55,-78],[-99,59],[-114,15],[-214,95],[-76,-4],[119,-64],[98,-115],[88,33],[35,-6],[49,-54],[87,-22],[72,-36],[-48,-110],[-297,-193],[-315,-113],[-140,-79],[-245,-56],[-175,-77],[-224,-57],[-63,-61],[-166,-40],[30,-42],[-43,-64],[-129,-56],[-188,-39],[-377,-236],[-187,-48],[-213,-3],[-45,-22],[-160,-148],[-50,-32],[-211,-16],[-220,-243],[-123,-82],[5,-35],[131,32],[155,79],[61,77],[46,32],[70,23],[271,26],[112,-10],[165,7],[108,44],[122,21],[29,31],[96,6],[222,41],[103,76],[132,-23],[94,13],[247,109],[149,42],[40,29],[-62,34],[-144,-38],[-128,-12],[-146,10],[-37,54],[87,91],[93,44],[76,16],[284,-48],[59,-6],[32,79],[180,-17],[-138,-42],[30,-58],[44,-40],[173,-57],[148,-26],[109,2],[171,24],[62,63],[-45,88],[85,-34],[64,-53],[101,-132],[-22,-45],[-90,-86],[52,-48],[92,-31],[-7,-208],[-45,-74],[-104,-77],[25,-70],[54,-51],[152,-16],[-15,30],[-143,43],[-36,47],[87,88],[54,85],[17,61],[-10,63],[89,59],[52,20],[-75,22],[-74,39],[-13,49],[150,20],[87,36],[326,16],[224,66],[499,-18],[350,-54],[492,-7],[181,-36],[28,-39],[-78,-12],[-128,0],[-35,-67],[23,-85],[229,-90],[200,-37],[140,-59],[74,-5],[291,7],[172,-31],[154,24],[229,-7],[62,-45],[99,-11],[119,-2],[67,9],[17,28],[-99,27],[49,40],[165,-44],[70,-7],[60,33],[69,99],[70,34],[-103,108],[-26,58],[-8,71],[48,72],[32,21],[132,-28],[95,60],[159,29],[66,-2],[110,-28],[354,-133],[-8,-51],[84,15],[40,21],[95,13],[63,22],[39,-30],[-37,-60],[127,-59],[123,69],[50,66],[33,13],[305,-46],[93,-25],[30,-38],[110,-42],[-10,-44],[142,-3],[130,-51],[10,-55],[81,1],[-20,-47],[-196,-104],[180,-16],[91,-67],[10,-49],[-188,-83],[-78,-25],[-93,-11],[57,-27],[244,-7],[71,-34],[56,-85],[0,-104],[-55,-51],[-150,-9],[-198,116],[-120,44],[-170,87],[-33,-15],[50,-73],[79,-40],[144,-113],[238,-232],[55,19],[73,94],[108,-124],[-97,4],[-123,-26],[-46,-31],[34,-43],[92,-6],[38,-58],[72,-73],[160,-198],[114,-38],[110,-82],[110,-39],[56,-2],[39,51],[32,-18],[28,-92],[53,-40],[59,-3],[118,60],[56,50],[89,140],[60,70],[55,29],[-14,74],[97,204],[144,176],[39,21],[50,-89],[156,-133],[127,-81],[113,-39],[178,-39],[259,6],[48,51],[90,38],[145,20],[86,46],[140,14],[88,-7],[136,-34],[306,-108],[86,-39],[44,-42],[100,-64],[125,-52],[15,25],[-56,40],[72,24],[34,32],[96,13],[-170,41],[86,127],[86,25],[89,-28],[63,50],[47,-4],[97,-51],[88,-77],[48,0],[134,31],[152,2],[-20,46],[-105,99],[12,128],[-73,30],[-84,17],[121,32],[89,105],[72,9],[52,34],[-223,11],[-80,-44],[-109,0],[-16,116],[144,95],[55,21],[365,-2],[110,18],[161,47],[-41,30],[-5,61],[-138,87],[67,34],[216,-23],[90,-48],[234,-48],[627,-15],[71,-18],[268,-21],[114,-23],[272,-27],[123,-20],[98,-31],[159,-18],[73,-21],[-7,-64],[-331,9],[-110,21],[-135,2],[-53,-9],[-81,-54],[-97,-28],[-83,-4],[54,-46],[76,-13],[245,60],[669,29],[103,-5],[-11,-41],[-89,-78],[-86,-62],[-124,-63],[-46,1],[97,133],[-77,4],[-109,55],[-39,-11],[-19,-97],[40,-32],[0,-55],[-151,-36],[-58,3],[-63,23],[-34,-18],[12,-49],[-37,-54],[37,-32],[49,-8],[265,35],[116,43],[127,79],[227,192],[100,66],[58,25],[74,9],[417,-20],[242,-42],[232,-61],[114,-51],[84,-69],[24,-67],[-59,-37],[-259,-12],[-99,-21],[-54,-56],[19,-17],[116,-2],[112,-16],[155,-44],[87,-63],[233,6],[29,-45],[-122,-81],[-61,-50],[249,67],[63,12],[77,-4],[188,-61],[76,-48],[144,-135],[-143,-29],[322,-103],[124,1],[286,30],[143,1],[267,66],[265,41],[244,3],[129,40],[340,-1],[329,-14],[254,-24],[286,-73],[280,-100],[162,-99],[79,-100],[41,-136],[-10,-62],[-40,-43],[-25,-54],[3,-64],[-47,-83],[44,-60],[123,-38],[268,-52],[73,-34],[8,-103],[23,-86],[23,-165],[46,-41],[72,-40],[14,-53],[-92,-175],[-117,-81],[107,17],[54,64],[58,118],[56,18],[30,39],[0,110],[-36,96],[0,69],[24,55],[176,115],[95,47],[90,26],[245,23],[111,22],[128,-15],[89,6],[104,24],[92,-11],[152,-77],[537,-17],[95,-27],[362,-32],[27,0],[82,38],[239,129],[98,-8],[40,-20],[86,-85],[35,-91],[31,-122],[52,-22],[71,-8],[154,-46],[157,-58],[45,-111],[84,-93],[196,9],[204,18],[197,153],[0,63],[-48,89],[-73,87],[-57,136],[-182,30],[18,39],[68,48],[62,73],[9,57],[-16,118],[327,-22],[312,-53],[253,-22],[134,-34],[80,-38],[96,-29],[32,70],[37,16],[127,-39],[92,-12],[160,6],[201,-18],[220,3],[196,30],[73,-6],[81,-24],[130,-64],[221,-85],[203,-24],[232,-81],[219,-30],[175,-46],[44,-63],[139,-25],[256,-172],[57,-21],[0,-2726],[-74,-24],[-76,-78],[-88,-69],[-128,-28],[-195,-105],[-77,-20],[-100,49],[-232,31],[-72,42],[-105,107],[-37,15],[-31,43],[-128,47],[-111,-31],[-91,23],[17,-32],[83,-12],[127,6],[42,-12],[80,-96],[-32,-39],[-34,-13],[-103,44],[-118,-7],[-55,11],[-158,73],[-121,-81],[-166,-42],[-128,-5],[-237,-64],[65,-2],[171,45],[101,0],[150,25],[77,30],[86,55],[48,-14],[34,-29],[44,-96],[-90,-83],[158,68],[96,-41],[48,7],[89,59],[146,38],[34,-26],[-25,-114],[10,-89],[110,-97],[115,-58],[76,9],[14,52],[28,38],[66,-72],[41,-93],[-11,-81],[36,-25],[50,-7],[18,-85],[17,-122],[-126,-43],[11,-22],[81,-12],[23,-25],[-16,-57],[50,2],[3,68],[54,-97],[1,-39],[46,-43],[131,-64],[25,-30],[7,-49],[-63,-48],[18,-48],[34,-39],[56,-14],[26,-63],[0,-59],[-40,-52],[-81,-72],[-48,-28],[-19,-51],[-6,-53],[-474,158],[-153,25],[-135,3],[-24,40],[28,64],[-81,9],[-35,28],[-29,-9],[-26,-58],[19,-47],[79,-24],[-13,-22],[-109,-17],[-88,-21],[-115,-66],[-46,-45],[-308,-113],[-74,-39],[-75,-18],[-33,-47],[-170,-67],[-35,7],[-45,-56],[-42,-31],[-98,-4],[-63,-16],[-137,-80],[-85,25],[-101,-111],[-111,-104],[-33,-1],[-86,44],[-21,-23],[13,-42],[31,-44],[-18,-13],[-59,15],[-14,-46],[-49,-41],[-81,-16],[-14,-35],[13,-38],[-78,-45],[-63,-57],[-102,-55],[-43,4],[-103,-81],[-233,-142],[-65,-18],[-82,-43],[-8,-64],[-33,-58],[-39,-147],[-31,-58],[-85,15],[-73,56],[-37,56],[-5,49],[-31,33],[-84,120],[-148,83],[-21,27],[-189,-22],[-51,-1],[-89,21],[-140,-13],[-169,-45],[-51,-28],[-172,-44],[-113,-69],[-221,-251],[-52,-51],[-62,-16],[-22,90],[14,76],[26,63],[34,164],[19,49],[-74,-3],[-103,-86],[-154,-84],[-72,-22],[-57,-49],[-86,-25],[-5,-107],[-23,-59],[-71,-13],[-32,23],[-48,86],[-62,44],[-64,-2],[-54,-59],[-59,-53],[9,60],[-96,37],[-57,3],[-88,-88],[-71,-56],[-38,-90],[-23,-129],[2,-151],[-81,-119],[-32,11],[-31,-23],[28,-66],[-30,-39],[-38,-17],[-87,-97],[-82,-64],[-134,-182],[-40,-121],[-39,-137],[35,-110],[68,-62],[116,-44],[23,96],[57,31],[28,-2],[184,-75],[34,-33],[-5,-72],[-11,-35],[-34,-50],[-65,-61],[-77,-83],[-7,-80],[20,-98],[2,-55],[-10,-103],[5,-45],[21,-38],[31,-24],[53,13],[51,-11],[40,-26],[-6,-86],[22,-81],[18,-150],[-32,-41],[-92,-90],[-33,-7],[-57,22],[-91,116],[37,69],[77,47],[36,35],[27,51],[-41,-10],[-28,-22],[-89,10],[-79,-64],[17,-96],[-84,-51],[-81,-41],[-26,-27],[-69,-174],[-64,-129],[-22,-111],[2,-96],[24,-106],[17,-46],[74,-98],[36,-78],[11,-94],[-60,-44],[-104,-108],[-43,-12],[-142,3],[-71,54],[-84,-14],[-70,-25],[-110,-77],[-98,-100],[-93,-69],[-27,-40],[-39,-85],[-33,-157],[12,-77],[36,-84],[-24,-73],[-1,-46],[45,-74],[10,-101],[-33,-3],[-76,72],[-80,6],[-194,-84],[-79,-48],[-89,-97],[-27,19],[-19,55],[-32,24],[-40,-12],[-17,-52],[55,-25],[21,-33],[-32,-129],[-23,-43],[8,-116],[-3,-54],[-13,-54],[-56,-150],[-99,-195],[-120,-143],[-84,-49],[-42,-38],[-18,-49],[-124,-137],[-153,-143],[-43,-26],[-14,107],[-19,72],[-55,59],[-18,114],[-5,305],[-48,315],[-6,100],[-58,81],[-32,85],[-19,82],[-5,98],[-64,514],[-20,128],[-85,413],[-37,239],[-24,233],[-4,104],[38,310],[31,194],[115,433],[36,60],[199,167],[86,92],[52,96],[55,122],[-12,104],[-21,43],[-47,49],[35,39],[49,19],[99,-38],[101,16],[93,154],[133,-24],[101,27],[28,-11],[20,52],[55,55],[103,83],[150,99],[75,66],[42,64],[62,59],[60,75],[110,226],[217,185],[85,107],[71,38],[62,18],[156,152],[99,126],[131,87],[40,56],[68,131],[28,32],[85,49],[193,86],[112,85],[163,13],[49,34],[105,47],[-67,75],[28,60],[118,90],[48,72],[-14,53],[-72,29],[33,124],[59,49],[21,114],[3,119],[57,172],[35,38],[134,87],[31,2],[93,-29],[102,-15],[67,36],[59,-11],[-9,33],[-151,16],[-109,38],[-97,72],[-64,21],[-70,-6],[-398,-102],[-38,-66],[25,-57],[-59,-79],[-20,-75],[6,-71],[-49,-111],[-4,-69],[86,-39],[21,-25],[-74,-90],[-39,-18],[-31,37],[-29,75],[-44,4],[-23,-41],[-83,12],[-49,-5],[-88,-85],[-496,-402],[-53,-49],[-64,-97],[-122,-10],[-49,-21],[-35,-29],[-49,-20],[22,134],[66,135],[-83,16],[-78,-28],[-52,-45],[-40,9],[68,120],[-28,114],[20,22],[100,149],[36,77],[31,101],[-4,70],[-54,6],[-198,-100],[-74,-27],[-24,43],[-31,18],[-55,74],[-46,11],[-49,-5],[-108,-50],[-120,-28],[-91,11],[-79,-43],[-35,-8],[-117,29],[-142,3],[-42,-36],[-124,-50],[-83,-77],[-91,-59],[-21,-145],[-123,-81],[-124,-111],[-88,-153],[-59,-66],[-124,-92],[-197,-120],[-169,-196],[-59,-148],[-64,-35],[-11,-71],[1,-50],[-51,-91],[27,-31],[62,-2],[97,41],[167,-63],[85,-62],[-3,-119],[-62,4],[-83,-5],[-52,-33],[-106,53],[-35,-20],[-56,-55],[-101,-23],[-52,27],[-84,77],[-144,-7],[-38,-86],[-84,-7],[-84,-99],[-28,-9],[-104,19],[-76,50],[-35,4],[-66,-24],[-34,-60],[-165,-31],[-162,6],[-89,145],[165,56],[99,-12],[110,10],[117,44],[-39,38],[-28,8],[-70,-4],[-62,27],[-135,140],[-59,26],[-77,15],[-81,-8],[-51,-67],[-58,-4],[-81,39],[55,21],[-91,24],[-57,34],[-53,9],[-241,83],[-94,-7],[-57,-23],[-97,-68],[60,-99],[-121,-9],[-55,40],[-38,-59],[15,-52],[63,19],[32,-22],[-21,-60],[-81,-17],[-102,3],[-100,105],[-165,-18],[-81,-68],[-74,-15],[-205,68],[-101,5],[-115,58],[-40,-18],[-74,-146],[-96,-35],[-51,19],[-44,92],[-31,30],[-87,28],[-462,-26],[-155,22],[-109,3],[-149,-48],[-143,19],[-263,-91],[-108,-61],[-131,-106],[-117,-177],[-65,-67],[-110,-84],[-155,-78],[-85,-79],[-46,-63],[-81,-242],[-21,-36],[-192,-88],[-60,-96],[-25,-24],[-80,-41],[-48,-68],[-27,-20],[-113,-47],[-93,-121],[-131,-85],[-191,-235],[-33,-90],[-29,-46],[-165,-205],[-51,-19],[-81,-95],[-84,-58],[-77,-67],[-94,-71],[-143,-81],[-47,-47],[-76,-110],[-183,-133],[-90,-33],[-120,-118],[-22,-72],[20,-76],[77,-27],[179,-76],[166,21],[147,0],[94,5],[11,-41],[-1,-76],[-22,-69],[-17,-204],[-20,-90],[15,-89],[36,-15],[36,40],[57,6],[59,-18],[44,141],[-36,22],[-33,50],[19,38],[102,69],[63,7],[61,-6],[-66,-88],[-75,-39],[59,-51],[63,-40],[92,-16],[-21,-31],[-61,-26],[-55,-110],[-88,-53],[-39,-36],[14,-23],[32,-5],[176,15],[92,30],[130,85],[54,128],[50,35],[32,-9],[0,-89],[-70,-101],[-49,-57],[-19,-48],[87,9],[26,23],[65,122],[16,87],[10,121],[-8,73],[5,52],[-25,52],[17,16],[176,-72],[92,-17],[167,59],[38,-15],[27,-35],[138,-107],[27,-36],[46,-131],[146,-150],[137,-71],[5,-28],[87,-84],[67,-29],[12,-75],[-32,-61],[-63,-57],[-127,53],[-5,-36],[91,-99],[73,-40],[5,-130],[-9,-72],[-49,-79],[16,-47],[136,-132],[-43,-85],[-8,-95],[-47,-42],[-55,-92],[-85,-75],[-40,-144],[-65,-126],[-8,-126],[-11,-45],[-53,-130],[-19,-177],[25,-289],[38,-34],[-69,-119],[0,-60],[21,-44],[2,-116],[-37,-184],[-29,-77],[-24,-116],[11,-41],[19,-22],[-66,-133],[-23,-173],[-25,-71],[-49,-68],[-103,-100],[-36,-63],[-67,-80],[-64,-61],[-88,-176],[-72,-175],[-178,-227],[-25,-57],[-12,-60],[-47,-101],[-24,-140],[-55,-56],[-44,-148],[-145,-224],[-37,-77],[-112,-124],[-119,-172],[-148,-154],[-29,-64],[-57,-71],[-62,-109],[-90,-108],[-19,-73],[-28,-50],[-67,-35],[-48,-46],[-147,-280],[-19,-50],[-3,-45],[-96,-105],[-56,-110],[-92,-69],[-97,-95],[-230,-173],[-63,-66],[-130,-82],[-53,-1],[-111,-45],[-73,-46],[-43,18],[-27,59],[-57,-10],[-67,57],[-57,-3],[-41,27],[-76,-18],[13,247],[-11,52],[-33,-48],[-88,-87],[-35,-17],[-35,0],[14,53],[49,76],[-31,15],[-63,-32],[-31,-37],[-88,-144],[-54,-121],[-43,-35],[-20,-52],[-38,-50],[-57,14],[-34,-8],[-82,27],[-20,-11],[54,-93],[-45,-138],[-19,-16]],[[123908,117063],[-92,-51],[-59,29],[-148,-2],[-252,31],[72,19],[398,15],[81,-41]],[[123294,117116],[-106,9],[15,31],[126,6],[46,47],[79,-3],[33,-49],[-92,-3],[-101,-38]],[[121836,117845],[-60,-103],[-128,-159],[60,-4],[156,128],[108,11],[100,38],[104,17],[108,-19],[72,-76],[135,-26],[20,-67],[78,-31],[107,13],[114,-25],[47,-59],[38,-97],[-13,-66],[-207,-102],[-230,-13],[-249,-53],[-309,-2],[-89,-47],[-77,26],[-188,-14],[-421,-9],[-70,-34],[-215,-67],[-198,-50],[-102,-13],[-149,14],[-91,43],[65,32],[46,66],[204,111],[45,92],[57,72],[12,73],[57,52],[88,30],[110,-9],[-9,79],[20,58],[56,30],[9,69],[62,57],[149,35],[21,66],[100,14],[78,-74],[106,-5],[-30,81],[96,42],[166,-29],[133,-64],[-92,-32]],[[110364,118122],[94,-6],[385,-60],[98,-38],[-404,-6],[-6,36],[-208,23],[-44,46],[85,5]],[[120652,118096],[-95,-9],[18,62],[148,-14],[-71,-39]],[[117443,118146],[-229,-1],[-202,74],[-133,31],[-107,49],[-24,53],[68,34],[85,13],[322,-3],[180,-34],[383,-38],[139,-26],[-86,-61],[-292,-78],[-104,-13]],[[99666,118326],[-411,-14],[-157,39],[364,79],[137,-31],[-5,-40],[72,-33]],[[103232,118334],[-154,-23],[-177,43],[11,40],[258,53],[111,-25],[47,-61],[-96,-27]],[[119592,118475],[99,-44],[49,-50],[-90,-47],[-21,-42],[131,4],[124,-12],[63,48],[-11,39],[53,30],[301,-25],[104,-52],[82,-15],[95,-49],[49,-50],[-63,-27],[-57,-77],[-33,-115],[-11,-97],[-62,-33],[-159,21],[-54,-10],[119,-45],[86,-68],[128,-24],[49,-93],[-211,-89],[-267,-11],[-176,-21],[-153,23],[-65,-8],[-150,12],[-133,29],[-135,45],[-54,36],[-198,21],[-238,-10],[-40,8],[-74,60],[-171,-34],[-148,26],[-60,28],[-14,45],[-59,19],[-72,62],[-41,66],[-198,34],[-210,5],[-87,25],[144,95],[191,49],[176,89],[39,78],[160,49],[116,59],[126,-46],[94,52],[395,-1],[303,34],[239,4]],[[99081,118416],[-34,-9],[-179,68],[141,50],[158,-7],[30,-33],[-107,-44],[-9,-25]],[[101419,118555],[-122,-32],[-93,20],[112,48],[103,-36]],[[102108,118609],[19,-24],[-19,-154],[-40,-17],[-338,4],[-206,20],[124,69],[6,95],[271,-7],[23,23],[160,-9]],[[100576,118494],[-287,-9],[-221,28],[-56,35],[202,38],[74,59],[143,7],[130,-62],[157,-38],[-32,-28],[-110,-30]],[[102486,118451],[-67,-14],[-176,25],[-48,38],[-41,141],[-75,50],[27,18],[193,-13],[413,-8],[211,-34],[122,-50],[-369,-17],[-49,-15],[-12,-67],[-129,-54]],[[100961,118694],[-60,-36],[-200,38],[38,28],[-10,62],[228,-45],[4,-47]],[[97957,118959],[197,-28],[148,7],[88,-12],[103,-62],[-26,-61],[-250,27],[-115,61],[-77,-10],[-127,-94],[-126,-31],[-144,0],[-70,-60],[-161,-20],[-74,85],[-141,-22],[-212,43],[-11,37],[518,58],[203,14],[96,41],[181,27]],[[104300,118946],[25,-28],[-65,-124],[-170,-21],[-36,-36],[-134,-21],[-101,-60],[-142,11],[-191,42],[-163,-34],[-108,-10],[-149,63],[1,67],[35,66],[88,72],[217,23],[79,-33],[87,2],[359,40],[122,21],[218,-18],[28,-22]],[[99179,119010],[225,-9],[389,-158],[-240,-58],[-80,-44],[-293,-9],[-187,-21],[-23,-50],[-89,-34],[-297,-5],[-95,-48],[106,-17],[38,-48],[-92,-32],[-93,24],[-49,-60],[-129,16],[-98,-31],[-133,17],[149,70],[-36,18],[-194,-6],[-43,-29],[-152,-4],[-149,82],[327,100],[109,39],[321,48],[96,-42],[199,5],[42,30],[-16,107],[42,76],[113,30],[332,43]],[[111991,118955],[-399,-25],[-52,25],[103,78],[254,11],[267,-33],[-36,-42],[-137,-14]],[[103857,119026],[-135,-14],[-218,18],[-113,20],[39,23],[189,49],[375,11],[47,-37],[-41,-27],[-143,-43]],[[101091,119142],[324,-67],[302,6],[130,-21],[188,-60],[338,-84],[-49,-25],[-330,-64],[-215,-22],[-260,3],[-74,46],[-182,34],[-193,-9],[-59,31],[-200,21],[-10,41],[139,22],[21,58],[94,88],[36,2]],[[102773,119090],[120,-100],[-18,-83],[-247,-10],[-150,20],[-81,67],[-149,18],[-83,71],[86,21],[106,-11],[169,60],[247,-53]],[[99384,119094],[-102,-1],[-64,53],[66,25],[153,-5],[30,-30],[-83,-42]],[[104819,118852],[-160,9],[-208,76],[257,101],[319,10],[103,12],[92,123],[212,15],[160,-37],[90,-61],[24,-87],[-190,-78],[-193,-44],[-506,-39]],[[116962,119159],[-149,-54],[-537,35],[-32,40],[73,30],[447,-10],[159,-11],[39,-30]],[[119098,119114],[98,-82],[284,-81],[180,-30],[10,-70],[-273,-32],[-84,-81],[38,-28],[58,-93],[72,-27],[-104,-57],[-568,-45],[-385,-19],[-171,-17],[-102,-34],[-196,-46],[-94,-1],[-281,65],[-345,54],[-47,30],[-196,33],[-49,61],[161,83],[293,39],[107,59],[67,59],[121,62],[-211,-16],[-78,8],[74,79],[75,22],[55,44],[126,30],[120,5],[217,35],[203,18],[193,51],[43,58],[276,6],[79,-48],[87,-19],[147,-75]],[[103070,119273],[-93,-9],[-163,15],[-36,33],[190,26],[88,-22],[14,-43]],[[102423,119441],[89,-43],[180,-14],[55,-32],[-82,-22],[-221,-13],[67,-79],[-44,-40],[-199,-43],[-271,72],[-133,-44],[-138,34],[-205,-25],[-62,28],[-46,58],[136,12],[162,-18],[107,58],[135,26],[160,82],[310,3]],[[104938,119485],[-52,-9],[-277,9],[-259,68],[220,9],[394,-22],[-26,-55]],[[102632,119559],[-166,5],[32,52],[65,21],[485,19],[63,-20],[-22,-47],[-457,-30]],[[90665,61920],[-14,-11],[-3,-33],[16,-54],[53,-111],[34,-20],[23,-43],[21,-73],[7,-91],[-9,-109],[5,-82],[20,-53],[5,-69],[-10,-85],[-11,-51],[-28,-23],[-21,6],[-69,-26]],[[90263,61697],[14,1],[93,35],[9,-11],[15,-69],[21,-13],[26,16],[48,54],[77,133],[34,72],[23,8],[42,-3]],[[73785,81662],[0,-254],[0,-295],[0,-350],[-248,0],[-241,0],[-240,0],[-161,0],[-241,0],[-305,0],[0,-178]],[[72349,79353],[0,-274],[-3,-76],[-26,-22],[-124,-82]],[[72196,78899],[-81,-19],[-26,-14],[-177,-188],[-39,-81],[-14,-45],[-5,-46],[4,-45],[21,-89],[6,-45],[18,-447],[16,-363],[-164,0],[-198,0],[-296,-1],[-296,0]],[[70965,77516],[-297,-1],[-197,0],[-253,-1],[-43,-300]],[[70175,77214],[-15,-29],[41,393],[118,34],[64,8],[168,0],[65,13],[52,0],[73,-6],[125,-28],[73,0],[60,-7],[78,0],[56,7],[38,34],[35,70],[26,105],[-9,76],[47,91]],[[71270,77975],[26,34],[9,28],[26,28],[30,49],[39,83],[13,98],[0,97],[8,119],[22,139],[8,97],[35,216],[17,77],[39,119],[21,41],[30,28],[48,28],[34,28],[82,49],[35,28],[34,76],[47,146],[26,70],[30,48],[121,112],[90,97],[31,42],[30,97],[21,98],[61,369],[38,160],[9,84],[13,28],[65,28],[54,11],[16,12],[14,76],[20,57],[37,73],[35,83],[57,79],[9,36],[0,42],[-19,34],[-13,62],[55,19],[94,42],[53,28],[71,7],[89,-21],[85,-62],[44,-28],[27,0],[53,33],[14,1],[58,-42],[71,8],[106,132],[32,26],[26,7],[62,1],[89,-6],[90,21],[17,21],[0,28],[-18,81],[-3,37],[12,69],[-18,137],[58,0]],[[95608,74302],[31,61],[48,-66],[-1,-78],[-26,15],[-16,37],[-46,-12],[-29,21],[-41,66],[-11,47],[35,32],[12,38],[-11,39],[25,-7],[13,-39],[3,-91],[-3,-40],[17,-23]],[[93418,80337],[-12,0],[-66,105],[-82,47],[25,13],[68,-43],[77,-93],[-10,-29]],[[98388,82537],[24,-66],[11,-65],[44,-155],[64,-121],[15,-44],[10,-66],[-15,-53],[47,-66],[78,-57],[65,-38],[-27,-39],[46,-88],[53,-90],[57,-21],[77,-136],[116,-89],[71,-115],[-54,25],[-7,-14],[8,-106],[68,-85],[12,-67],[-25,-145],[-44,16],[-9,-8],[21,-105],[21,-80],[26,-63],[21,-92],[18,-40],[75,-98],[23,-82],[21,-154],[47,-85],[26,-66],[34,-56],[22,-76],[31,-59],[16,-15],[55,-6],[75,30],[31,-30],[31,4],[3,-28],[-21,-37],[-26,-95],[112,-38]],[[99911,75890],[-310,-68],[-237,-51],[-152,-33],[-264,-58],[-237,-51],[-65,-28],[-193,-153],[-181,-143],[-157,-303],[-98,-190],[-60,-234],[-31,-36],[-51,-46],[-46,-33],[-72,4],[-85,181],[-22,37],[-20,2],[-160,-26],[-334,49],[-55,13],[-73,60],[-39,14],[-172,3],[-87,-19],[-82,7],[-86,-11],[-30,-23],[-34,2],[-39,-30],[-22,17],[-26,-4],[-40,15],[-50,74],[-53,31],[-24,0],[-50,-41],[-48,-68],[-2,-24],[22,-41],[-6,-19],[-29,-23],[-12,-100],[-5,-84],[13,-66],[17,-24],[-9,-85],[-26,-18],[-30,-79],[-21,-29],[-80,-96]],[[95958,74062],[-4,56],[-26,82],[-2,58],[-11,59],[-23,45],[-40,46],[-4,64],[-30,63],[-39,50],[-22,94],[-17,124],[-104,163],[-130,151],[-40,84],[-65,173],[-32,137],[-87,157],[-4,61],[-13,74],[-32,147],[-87,284],[-29,45],[-24,63],[-14,76],[-62,47],[-57,119],[-173,190],[-85,19],[-67,67],[-49,89],[-53,153],[-93,165],[-78,234],[24,85],[-1,60],[-24,101],[-27,78],[-18,74],[15,105],[5,119],[16,63],[11,69],[-15,139],[-26,74],[3,49],[-30,25],[-24,53],[25,0],[-45,75],[-17,41],[-17,102],[-22,77],[-71,176],[-33,107],[-76,139],[-82,102],[-52,46],[-25,43],[-42,1],[-47,61],[-73,12],[-48,116],[-40,110],[-68,142],[37,97],[-21,133],[-30,98],[-98,243],[-26,36],[-42,41],[-26,106],[-12,94],[-67,46],[-116,341],[-67,119],[-27,81],[-77,132],[-39,131],[-78,121],[-68,209],[-105,210],[-44,36],[-108,15],[-45,16],[-42,-46],[-4,58],[29,81],[42,169],[8,148],[66,441]],[[92578,83101],[277,-68],[181,-45],[23,7],[175,205],[99,234],[22,24],[307,90],[9,11],[62,210],[16,25],[133,105],[-216,354],[-224,337],[351,142],[260,106],[252,102],[15,9],[64,82],[241,-58],[139,-33],[147,-39],[47,-31],[142,-117],[200,-165],[135,-111],[211,-173],[209,-253],[128,-155],[251,-286],[284,-324],[254,-290],[12,-6],[337,-43],[194,-25],[175,-23],[75,23]],[[93405,77979],[5,-159],[19,-127],[66,-181],[56,-98],[20,-53],[-17,-22],[-29,18],[-4,-85],[7,-60],[6,-114],[24,-122],[-17,-112],[2,-191],[30,-229],[-6,-146],[49,-342],[47,-189],[26,-46],[29,-25],[56,-16],[83,-97],[66,-102],[55,-111],[35,26],[21,-47],[104,-102],[15,-47],[-37,-47],[-43,-79],[-21,-75],[-46,-70],[-6,-22],[-67,-41],[-31,8],[-33,-14],[-37,-33],[-35,-8],[-54,-63],[-47,-30],[-16,-26],[-25,-124],[-18,-33],[-70,-4],[-34,-10],[-46,14],[-23,-2],[-6,-27],[-8,-107],[1,-46],[-39,-122]],[[93412,74239],[7,-115],[4,-114],[-38,-171],[-5,-40],[-39,-135],[-19,-51],[-49,-254]],[[93273,73359],[-19,-78],[-41,-82],[19,-275],[23,-334]],[[92202,69251],[-81,1],[-10,61],[12,116],[27,89],[-5,67],[4,79],[-27,101],[-187,245],[-42,74],[-95,56],[-1,24],[14,54],[-42,516],[21,71],[6,92],[-1,81],[25,135],[3,57],[-205,4],[-3,-59],[9,-90],[-286,-2],[113,-202],[6,-95],[-6,-112],[2,-73],[6,-47],[31,-92],[-9,-40],[-203,-275],[-34,-127],[-27,-67],[-59,-113],[-185,-294],[-31,-19],[-141,-11],[-24,-20],[-13,11],[-114,164],[-203,208],[-20,-19],[-115,-89],[-37,-40],[0,-100],[-20,-51],[-37,-55],[-99,-35],[-52,-31],[-53,-44],[-69,-106],[-4,-49],[7,-43],[-343,2],[-23,34],[-47,154],[-37,-8],[-313,18],[-45,-16],[-89,-64],[-45,-10],[-46,29],[-165,306],[-35,37],[-37,73],[-35,32],[-12,23],[-3,100],[-12,42],[-25,10],[-221,-71],[-32,8],[-46,-13],[-16,-12],[-19,-41],[-3,-84],[-6,-42],[-17,-46],[-63,-104],[-14,-45],[3,-114],[-4,-58],[-37,-71],[-14,-61],[-7,-111],[-34,-88],[-8,-32],[-8,-83],[-100,-51],[-37,-32],[-28,-71]],[[87370,70266],[34,190],[2,52],[-9,54],[-32,41],[-28,5],[-37,50],[-24,23],[-22,45],[-15,62],[11,224],[-7,29],[-32,9],[-24,186],[-19,105],[10,58],[-27,79],[-51,35],[-100,-27],[-31,5],[-22,14],[-23,64],[8,52],[28,94],[36,79],[72,71],[19,37],[11,42],[2,48],[-13,97],[-21,62],[-20,72],[0,49],[28,77],[72,82],[73,69],[13,24],[-5,29],[-34,56],[-10,109],[-19,76],[37,58],[28,21],[43,17],[17,24],[3,90],[16,33],[20,69],[17,32],[56,82],[13,53],[3,51],[-15,155],[32,64],[42,53],[59,-3],[93,11],[63,23],[44,-1],[103,-29],[11,13],[5,41],[0,413],[0,311],[-1,310],[0,311],[0,310],[0,311],[0,311],[0,310]],[[92714,66487],[-168,-266],[-214,-340],[-174,-279]],[[92158,65602],[-176,-285],[-34,-39],[-71,-1],[-73,15],[-68,73],[-68,-57],[-44,-18],[-87,-16],[-86,-30],[-39,-38],[-21,-31],[-17,-55],[-25,1],[-67,54],[-23,71],[-39,65],[-73,-70],[-35,-17],[-29,2],[-53,40],[-58,33],[-30,0],[-45,-42],[-51,-63],[-40,-100]],[[71611,71488],[-267,1],[-154,2],[-210,1],[-163,-132],[-114,-37],[-132,14],[-42,-10],[-75,-52],[-45,-14],[-59,11],[-23,-6],[-32,82],[11,37],[89,55],[45,-17],[-3,31],[-40,27],[-21,36],[-17,-21],[-15,-44],[-31,-26],[-15,59],[9,23],[-5,126],[5,67],[-2,58]],[[70391,72124],[-11,71],[-26,57],[-42,48],[-9,45],[14,39],[41,32],[-12,20],[-32,-21],[-22,-1],[-2,62],[-36,80],[-40,136],[-45,55],[-39,110],[-40,42],[-36,20],[-31,-4],[-12,-50],[-39,72],[53,26],[114,90],[131,259],[118,307],[29,127],[10,125],[16,75],[16,14],[20,57],[24,101],[27,56],[31,11],[24,-5],[17,-21],[49,-13],[82,-5]],[[70733,74141],[64,15],[45,35],[58,18],[73,0],[39,15],[4,29],[39,1],[13,21],[27,-16],[61,-6],[109,7],[101,-52],[92,-113],[48,-75],[3,-37],[15,-38],[27,-38],[26,-7],[23,24]],[[71600,73924],[18,-3],[13,-29],[26,-6],[29,18],[21,-6],[9,-27],[33,-26],[27,-60],[22,-83],[16,-107],[23,-58],[27,-10],[16,-22]],[[71880,73505],[11,-42],[37,-4],[27,-36],[30,-79],[1,-68],[38,-39],[16,-38],[32,-35],[50,-30],[36,-44],[22,-60]],[[72180,73030],[55,-56]],[[122303,63590],[-64,-46],[-73,42],[23,68],[49,17],[62,-38],[15,-19],[-12,-24]],[[66213,21977],[2,-40],[-67,37],[6,39],[42,1],[17,-37]],[[61544,25019],[42,-34],[34,23],[96,-18],[42,-57],[-17,-51],[46,10],[39,-42],[53,40],[39,-76],[27,-15],[24,-53],[19,-67],[47,-10],[30,10],[-12,-58],[4,-51],[49,-37],[-60,-49],[-63,-23],[-72,61],[-26,60],[-84,127],[-52,10],[-46,21],[-38,43],[-27,46],[-52,-1],[-65,48],[-146,80],[-58,-8],[-26,23],[1,40],[30,25],[-126,9],[-14,23],[176,1],[66,7],[6,-18],[59,-35],[55,-4]],[[75073,51525],[-39,-5],[3,33],[29,35],[20,-4],[1,-41],[-14,-18]],[[71338,57111],[-22,21],[14,43],[35,-37],[-27,-27]],[[149420,54541],[-54,-8],[-25,60],[19,14],[28,-6],[8,-35],[24,-25]],[[146683,54449],[-30,-24],[-48,30],[-17,54],[-36,33],[-52,14],[-27,35],[-36,10],[-11,29],[9,46],[33,-15],[160,-141],[55,-71]],[[149077,55173],[-35,-12],[-36,-3],[-28,-50],[-36,5],[-13,41],[20,17],[10,40],[21,20],[50,9],[59,-22],[-12,-45]],[[147174,55431],[54,-41],[32,7],[46,-28],[36,16],[22,-37],[56,-142],[1,-46],[36,-33],[-31,-6],[-43,17],[-33,-11],[-35,27],[-59,14],[-51,33],[-107,105],[0,53],[-17,25],[-5,65],[-39,21],[-45,3],[-3,31],[8,54],[34,0],[40,-23],[103,-104]],[[147102,55961],[2,-100],[-32,55],[-16,-20],[-14,26],[3,117],[-6,46],[-16,66],[18,-11],[61,-179]],[[146328,56207],[95,-112],[40,10],[125,-2],[73,-79],[44,-37],[24,-72],[30,-16],[18,-36],[11,-67],[-46,-35],[-27,-11],[-72,24],[-70,51],[-137,6],[-64,15],[-42,45],[-32,63],[-26,72],[-6,125],[8,29],[26,30],[28,-3]],[[146508,56400],[36,-8],[67,-93],[-16,-28],[-44,12],[-7,28],[-33,27],[-30,3],[-4,32],[31,27]],[[146086,56311],[-51,10],[-15,24],[18,34],[22,23],[20,-20],[23,-6],[2,-44],[-19,-21]],[[145421,56565],[-1,-25],[-25,8],[-55,37],[-2,17],[55,1],[28,-38]],[[145660,56521],[-19,25],[23,75],[19,-83],[-23,-17]],[[145620,56617],[-42,-55],[-31,18],[-25,48],[13,71],[25,15],[13,25],[46,-20],[12,-13],[-28,-35],[15,-28],[2,-26]],[[145311,56596],[-24,10],[-52,94],[9,31],[48,61],[15,8],[13,-38],[-12,-55],[-15,-15],[-7,-52],[25,-44]],[[146301,56740],[-21,-10],[-30,26],[-14,23],[7,36],[18,14],[20,-24],[2,-25],[18,-40]],[[146758,56875],[107,-208],[-4,-37],[-15,-23],[-4,-70],[13,-27],[30,-12],[49,-75],[20,-90],[2,-28],[20,-42],[1,-87],[47,-120],[4,-59],[-24,-11],[-56,137],[-64,59],[-8,26],[-65,80],[-43,134],[-47,239],[22,57],[-54,116],[3,31],[38,-6],[28,16]],[[145472,56925],[27,-57],[31,-127],[-6,-44],[-22,-3],[-6,-27],[-30,62],[-40,16],[-30,38],[-13,122],[-23,8],[-66,-11],[-21,-41],[-30,13],[-6,36],[5,36],[40,35],[8,45],[40,78],[24,13],[47,-28],[6,-111],[17,-36],[48,-17]],[[144972,56974],[-27,68],[5,71],[8,9],[18,-96],[-4,-52]],[[145217,57018],[-9,-11],[-47,4],[-36,72],[0,53],[28,49],[34,9],[19,-19],[17,-41],[6,-52],[-12,-64]],[[145009,57147],[-9,-10],[-24,50],[0,41],[-44,69],[-3,47],[25,46],[34,-27],[33,-58],[40,-19],[-8,-38],[-36,-69],[-8,-32]],[[146383,56721],[-57,42],[-44,71],[-125,78],[-27,40],[-22,5],[-65,64],[-63,44],[-38,56],[-10,23],[-23,14],[-40,62],[-38,41],[-14,75],[-37,52],[-9,22],[119,-41],[55,-83],[48,-46],[16,-34],[43,-46],[38,-4],[38,-46],[35,-13],[27,-24],[178,-207],[-22,-56],[24,-40],[13,-49]],[[144643,57722],[-43,-17],[-26,23],[11,53],[15,27],[54,-49],[-11,-37]],[[145353,57559],[13,-24],[-33,-42],[-44,23],[-10,36],[-31,-8],[-61,20],[-85,100],[-90,187],[-86,104],[-17,33],[-2,53],[12,21],[54,-23],[69,-85],[114,-89],[31,-46],[20,-109],[19,-32],[62,-84],[65,-35]],[[72130,67841],[-7,-18],[-28,45],[-149,67],[42,35],[103,11],[44,-38],[6,-33],[-11,-69]],[[72891,69198],[29,-49],[1,-37],[-26,-97],[10,-28],[47,-16],[5,-56],[0,-77],[23,-73],[22,-53],[-1,-19],[-54,-91],[-21,-90]],[[72926,68512],[-15,-45],[66,-14],[27,33],[44,82],[15,10],[33,-7],[-14,-121],[-19,-86],[-13,-21],[-55,-22],[-23,-38],[-20,-122],[-13,-95],[-19,-16],[-81,-138]],[[72839,67912],[-52,-52],[-37,-45],[-35,-59],[-43,-57]],[[72672,67699],[-47,-96],[-34,-100],[-23,-31],[-17,28],[-80,99],[-84,66],[-180,110],[-60,31],[2,39],[21,72],[-34,84],[13,61],[-13,0],[-25,-37],[-55,11],[-37,52],[-29,19],[-13,27],[-19,138],[-14,63],[-27,38],[-56,10],[-22,84],[-31,66],[5,40],[25,-2],[19,-30],[32,-12],[39,71],[35,38],[-17,24],[-58,7],[-15,-26],[-26,-8],[-20,83],[1,49],[8,53],[59,10],[5,17],[-41,11],[-50,63],[-10,43],[26,15],[45,-16],[43,39],[13,30],[17,81]],[[71943,69113],[55,27],[33,50],[30,77],[15,54],[26,76],[14,24]],[[72116,69421],[24,109],[32,25],[65,22],[58,-38]],[[72295,69539],[94,33],[5,49],[275,3],[29,-14],[11,-36],[28,-57],[29,-40],[79,-188],[46,-91]],[[39037,72701],[83,-39],[21,7],[27,-29],[25,-53],[57,-62],[9,-27],[43,-37],[35,-39],[66,-26],[13,-86],[14,-3],[75,64],[54,31],[30,-18],[18,-39],[21,-18],[42,11],[39,-4],[30,-34],[7,-19],[-18,-114],[-10,-89]],[[39718,72078],[21,-27],[-2,-22],[-44,-46],[8,-70],[-48,-72],[-39,-9],[-68,-3],[-102,34],[-75,47],[4,-25],[30,-42],[-153,69],[-177,136],[-105,21],[-121,36],[-72,85],[-54,38]],[[82910,93292],[4,-26],[-12,-36],[-26,-5],[-12,29],[19,33],[27,5]],[[98602,70502],[0,-379],[0,-515],[0,-364],[-139,-339],[-148,-363],[-127,-311]],[[96150,70670],[84,-107],[82,-216],[96,-175],[131,-163],[52,-54],[46,-29],[240,4],[170,148],[154,108],[52,22],[90,-29],[99,-9],[89,-33],[45,8],[176,125],[110,122],[75,51],[30,1],[103,-44],[132,19],[181,105],[57,21],[44,2],[99,-47],[15,2]],[[98602,70502],[53,9],[141,50],[109,75],[201,55],[154,138],[27,66],[46,84],[67,28],[172,-98],[28,-8],[-16,-121],[-36,-106],[-22,-118],[16,-180],[8,-293],[-4,-42],[-16,-75],[-18,-11],[5,-27],[54,32],[2,52],[44,-39],[32,-16],[6,-62],[-50,12],[-25,19],[-75,-32],[-45,-34],[-14,-58],[-11,-229],[-17,-149],[-4,-196],[-60,-130],[-20,-92],[-90,-184],[-47,-157],[-15,-77],[-79,-215],[-108,-166],[-39,-211],[-39,-132],[-43,-120],[-95,-213],[-49,-149],[-62,-257],[-18,-163],[-173,-473],[-179,-377],[-111,-318],[-200,-368],[-272,-475],[-357,-564],[-97,-115],[-390,-348],[-253,-292],[-129,-199],[-136,-172],[-107,-165],[-326,-555],[-65,-102],[-41,-94],[-28,-37],[-78,-159],[-49,-82],[-54,-81],[-23,-58],[-17,-66],[-18,-37],[-49,-157],[-43,-104],[-43,-81],[2,57],[-6,29],[-118,245],[-116,243],[-1,392],[-2,587],[-1,587],[-1,587],[-1,413],[6,19],[156,251],[117,270],[117,270]],[[53291,95275],[-38,-30],[-13,17],[23,67],[-24,106],[10,22],[33,-20],[4,-25],[-16,-56],[26,-65],[-5,-16]],[[86755,94129],[26,-49],[-25,-32],[-6,-30],[-27,-29],[23,-23],[53,-27],[-6,-27],[-58,-7],[-11,-30],[70,-26],[32,-24],[17,-31],[45,-21],[73,-10],[50,-32],[29,-55],[46,13],[65,81],[63,21],[62,-39],[34,-31],[-8,-35],[-35,5],[-29,-16],[-22,-35],[-3,-38],[15,-40],[22,-27],[29,-16],[17,-47]],[[87296,93472],[-26,-38],[-13,-82],[-76,-48],[-24,-101],[2,-56],[11,-52],[34,-73],[11,-58],[24,-45],[91,-70],[40,-70],[50,-45],[-14,-64],[-37,-54],[-25,-23]],[[87344,92593],[-40,-71],[-64,-4],[-39,-25],[-12,-35],[11,-29],[-12,-84],[15,-60],[22,-28],[0,-43],[-44,-78],[-33,-11],[-45,31],[-81,-37],[-64,12],[-38,-13],[-33,-25],[-52,-18],[-24,4],[-18,56],[4,15]],[[86797,92150],[35,26],[4,25],[48,120],[9,52],[-39,8],[-117,49],[6,56],[-72,56],[-6,30],[-71,95],[-39,17],[-53,40],[-9,44],[-26,15],[-60,-42],[-6,-14],[21,-55],[-15,-45],[-64,-57],[-3,-66],[-53,-21],[-2,45],[-31,30],[-43,23],[-97,79],[-70,19],[-47,38]],[[85997,92717],[-25,7],[-27,27],[-59,91],[-50,49],[-34,25],[-11,58]],[[85667,94644],[47,20],[31,39],[26,-20],[56,11],[62,42]],[[85889,94736],[47,64],[36,9]],[[85972,94809],[99,-16],[39,11],[98,-14],[34,-23],[51,-92],[75,-53],[21,-21],[30,-63],[25,-31],[28,10],[-4,-106],[9,-42],[-5,-36],[41,-40],[31,-43],[68,-50],[21,-2],[34,-35],[88,-34]],[[80393,62747],[-45,-51],[-16,13],[-22,113],[4,36],[20,42],[44,42],[26,3],[28,-55],[0,-57],[-39,-86]],[[80722,63755],[-16,-18],[-19,15],[-5,28],[36,66],[16,-47],[-12,-44]],[[54252,65190],[19,-27],[-6,-41],[-2,-58],[-23,-66],[-54,-121],[-6,-29],[14,-100],[-11,-123],[-89,-248],[-36,-31],[-22,-51],[-54,-11],[-15,22],[-11,57],[-19,9],[-37,-10],[-32,40],[-34,67],[-28,-31],[-50,-1],[-43,-33],[-25,-8],[-18,-33],[-117,-16],[-31,-8],[-89,77],[-24,-14],[-12,-73],[-47,-65],[-4,-28],[28,-15],[23,-55],[45,-83],[-6,-105],[-14,-22],[-25,-10],[-199,70]],[[52891,66527],[23,66],[2,65],[35,140],[37,38],[217,-38],[99,-37],[128,-62],[19,0],[-6,67],[35,48],[77,17],[116,-23],[100,28],[135,-3],[206,-55],[92,-37],[38,-34],[7,-61],[-4,-77],[-15,-75],[-32,-99],[-36,-50],[-40,-70],[-52,-121],[3,-38],[-12,-31],[-2,-54],[3,-61],[14,-40],[6,-76],[-10,-68],[22,-170],[0,-27],[24,-43],[-4,-60],[41,-106],[25,-47],[37,-45],[33,-98]],[[87232,96831],[-7,-29],[-58,-110],[-40,-130],[-66,-82],[-5,-114]],[[84638,95040],[-38,17],[-46,7],[-36,-36],[7,-65],[-11,-12],[-53,7]],[[84461,94958],[-17,-8],[-28,-46],[-93,-49],[-64,-24],[-17,-63],[30,-43],[1,-100],[-19,-49],[-74,-25],[-76,-46],[33,-50],[-27,-33],[0,-50],[21,-51],[-42,-18],[-57,6],[-67,34]],[[83965,94343],[-46,-22],[-49,28],[-54,71],[-7,29],[-25,-4],[-46,-98],[-24,-16],[-90,2],[-33,-5],[-40,22],[-25,-41],[-24,-15]],[[83502,94294],[-114,33],[-16,28],[62,49],[53,4],[13,15],[-19,46]],[[83409,94547],[-40,29],[19,89],[-45,8],[-10,46],[56,65],[7,31],[-79,32],[-12,-8]],[[83305,94839],[-19,35],[10,39],[70,68],[50,33],[9,40]],[[84643,101857],[-42,-33],[-13,47],[-3,120],[8,59],[94,215],[42,17],[59,132],[16,58],[53,119],[40,-18],[-29,-27],[1,-51],[-73,-155],[-19,-100],[-26,-25],[-108,-358]],[[85741,102933],[-36,-17],[-21,-49],[-57,-25],[-9,-155],[50,-59],[-53,-26],[-37,-82],[-69,-32],[-65,-76],[-21,-77],[-39,-32],[-44,-8],[26,63],[34,50],[-33,35],[-45,97],[20,47],[-10,76],[4,75],[63,69],[52,71],[57,51],[80,23],[36,-21],[15,46],[50,0],[52,-44]],[[85775,102993],[-8,-43],[-42,35],[41,49],[63,-3],[-54,-38]],[[85533,104071],[-10,38],[55,-1],[-45,-37]],[[87928,108481],[-114,-16],[-86,33],[-43,-17],[-74,0],[-85,-13],[-52,-35],[-78,35],[-75,59],[-54,-45],[-35,-8],[-32,40],[-43,-7],[-39,-82],[-9,-88],[-72,9],[26,-40],[-26,-16],[-72,1],[13,-43],[-30,-32],[-86,-14],[-49,3],[-19,-35],[39,-41],[-46,-37],[32,-59],[-3,-25],[-64,-78],[-99,-95],[-24,-48],[60,-58],[50,-126],[54,-56],[-24,-58],[-90,-56],[-102,-85],[-110,-216],[-37,-29],[-96,-36],[-36,-36],[-72,-42],[-125,-36],[-57,-50],[-25,-52],[-29,-4],[-66,36],[-3,-59],[-61,37],[-28,-34],[-23,-57],[-87,-76],[-79,-10],[-79,-33],[-26,1],[-32,-80],[-81,-21],[-13,-25],[81,-6],[-17,-64],[-92,-33],[-34,-42],[-41,1],[8,32],[-85,-4],[34,-76],[-31,-43],[58,-41],[-39,-15],[-48,-53],[-51,-1],[-30,-35],[-33,0],[-69,40],[-16,-57],[24,-64],[46,-50],[12,-35],[-23,-32],[-58,-209],[18,-88],[21,-39],[-57,5],[-59,23],[8,-47],[-36,-57],[14,-81],[-11,-54],[26,-48],[-8,-44],[14,-183],[-4,-24],[32,-97],[-12,-78],[47,-41],[84,1],[17,-11],[29,-64],[35,3],[92,35],[24,-55],[65,-72],[38,-32],[64,-17],[68,-58],[-9,-70],[28,-24],[80,-27],[63,-96],[25,-80],[-9,-49],[-108,-69],[-61,-64],[-156,-101],[-23,7],[-85,-50],[6,-21],[66,-9],[59,36],[54,1],[49,27],[22,-9],[25,-47],[-51,-25],[-37,-1],[-17,-77],[-38,-49],[-81,-33],[-53,-41],[-63,-34],[-27,8],[-41,-34],[-92,-40],[-47,-55],[-105,-48],[-54,-40],[-146,-2],[-139,9],[1,-25],[31,-18],[37,8],[134,-20],[58,-64],[-42,-23],[-75,-18],[51,-153],[-30,-37],[-2,-170],[-42,-3],[-18,-70],[13,-36],[-1,-83],[9,-51],[20,-47],[-9,-49],[-66,-115],[1,-54],[21,-83],[-52,-181],[-25,-69],[-57,-83],[-29,-62],[-66,-194],[-33,-38],[-40,-30],[-86,43],[-51,-2],[-78,-23],[-119,15],[-116,-7],[-29,-19],[17,-71],[-42,-9],[-42,20],[-68,-50],[-60,-62],[-20,-38],[-5,-72],[31,-65],[28,-76],[-72,-91],[-40,-3],[-118,25],[-209,-57],[-188,45],[24,49],[-1,36],[17,112],[-15,78],[-47,53],[-104,178],[-31,75],[-6,33],[86,-40],[41,20],[-62,123],[86,8],[27,44],[-16,71],[-71,32],[-63,112],[-65,57],[-116,224],[-42,153],[-40,-15],[-33,130],[-2,47],[-62,26],[-14,178],[-66,20],[-43,81],[-8,155],[-44,28],[-35,-8],[10,74],[-20,142],[-7,130],[-27,85],[21,63],[43,6],[40,-35]],[[91355,43976],[-38,20],[-13,-5],[-11,-100],[-10,-148],[6,-92],[-93,-3],[-118,10],[-84,40],[-91,88],[-54,137],[-23,86],[-33,5],[-6,14],[-3,105],[1,110],[6,29]],[[90791,44272],[99,220],[24,82],[51,95],[55,62],[35,6],[97,-84],[99,-80],[22,9]],[[91273,44582],[11,8]],[[50386,75244],[-5,-35],[-29,16],[-14,19]],[[101445,59396],[1,-65],[-20,22],[-6,41],[-28,31],[-14,29],[31,35],[36,-93]],[[93019,86775],[-33,155],[-5,67],[1,78],[23,114],[-11,52],[-7,85],[-59,105],[32,193],[23,47],[32,-5],[69,-54],[12,1],[20,72],[21,25],[42,21],[12,117],[44,35],[69,9],[2,20],[-45,135],[25,170],[14,53],[13,18],[51,-7],[71,-24],[19,-39],[35,-35],[52,3],[107,-9],[122,70],[81,35],[122,75],[50,-6],[59,-22],[58,-51],[47,-51],[34,-15],[60,1],[87,-10],[107,1],[62,14],[80,25],[142,61],[187,127],[110,62],[47,8],[62,0],[62,-16],[70,-12],[108,14],[98,26],[62,21]],[[95565,88534],[74,35],[47,57],[43,-8],[19,-33],[20,-84]],[[46371,77878],[50,-39],[12,-18],[-63,-8],[1,65]],[[46661,77818],[-26,17],[-47,0],[-8,37],[18,6],[60,-13],[13,-32],[-10,-15]],[[46566,77870],[-32,17],[-28,37],[4,23],[34,1],[22,-78]],[[83582,71769],[-57,126]],[[83525,71895],[-140,310]],[[78223,66992],[-134,-49],[-53,-40]],[[120449,67204],[-9,-4],[-16,56],[21,82],[20,-100],[-16,-34]],[[120197,67949],[11,-84],[-16,17],[-13,37],[18,30]],[[119987,68187],[-27,122],[33,-36],[-6,-86]],[[119908,68165],[-4,-51],[-18,1],[-26,-37],[-15,104],[17,146],[58,-35],[-16,-84],[4,-44]],[[119865,68966],[-25,-8],[10,62],[12,7],[3,-61]],[[120624,69338],[2,-40],[-9,-47],[-40,-28],[-13,38],[10,73],[50,4]],[[120626,69415],[-21,10],[-18,57],[25,-1],[13,-30],[1,-36]],[[121716,70793],[-7,-72],[-24,29],[15,54],[16,-11]],[[121639,71011],[-29,-10],[-25,4],[-12,97],[19,15],[26,-48],[21,-58]],[[120646,76809],[-3,-41],[26,11],[19,46],[20,26],[23,6],[23,-31],[26,-70],[25,-39],[12,-4],[11,-63],[-13,-64],[-50,-167],[10,-78],[40,-63],[48,-38],[51,11],[27,19],[22,30],[47,18],[81,-22],[25,-22],[3,-43],[-10,-110],[13,-81],[23,-86],[3,-78],[-29,-128],[-23,-121],[-46,-97],[-4,-50],[38,-84],[4,-45],[-2,-56],[-13,-76],[-49,-164],[-39,-149],[20,-29],[65,-43],[26,13],[57,88],[50,65],[64,71],[53,48],[25,44],[13,56],[19,22],[24,-13],[31,25],[38,61],[29,29],[20,-5],[36,-38],[52,-72],[46,-43],[40,-13],[20,-27],[-1,-40],[9,-25],[19,-11],[24,52],[39,37],[39,22],[40,7],[26,29],[17,76],[25,59],[22,26],[27,13],[-5,66],[16,24],[34,11],[52,-4],[61,-24],[70,-46],[46,-15],[22,16],[42,-71],[64,-159],[54,-120],[46,-81],[48,-63],[50,-43],[36,-60],[33,-112],[-25,-155],[-6,-135],[3,-165],[29,-126],[57,-88],[32,-71],[9,-54],[44,-46],[79,-39],[32,-35],[-13,-32],[-1,-36],[11,-42],[27,-34],[43,-28],[26,-28],[8,-31],[-1,-49],[-10,-68],[-18,-52],[-26,-36],[-10,-73],[0,-90],[19,-60],[6,-76],[-11,-62],[-9,-127],[-2,-49],[-9,-42],[-23,-41],[-34,-38],[-69,-49]],[[121857,70814],[-9,-2],[-12,48],[-40,81],[-12,86],[-47,95],[-26,38],[-23,-65],[-46,48],[-39,51],[-36,99],[-13,-44],[-41,78],[-43,62],[-63,43],[-23,32],[-48,35],[-120,-50],[-153,39],[-59,-37],[-24,23],[-15,42],[15,72],[3,151],[18,106],[-8,81],[15,90],[-24,21],[-108,41],[-23,32],[-28,-37],[-130,-21],[-49,-31],[-45,-60],[-11,-77],[26,-50],[16,-87],[-46,-191],[-8,-57],[18,-233],[-7,-129],[-25,-85],[-40,-78],[-17,-130],[-32,-61],[-42,-138],[-28,-173],[-20,-80],[-12,-147],[-87,-223],[-21,-126],[-31,-47],[11,-38],[2,-63],[-11,-168],[-4,-139],[13,-75],[42,-148],[-10,-43],[-5,-61],[35,-27],[26,-8],[142,69],[48,-17],[30,-123],[24,-307],[12,-57],[60,-112],[11,10],[4,45],[28,-58],[22,-109],[75,-575],[22,-73],[17,-77],[-45,38],[-12,127],[-14,54],[-41,7],[-2,23],[19,42],[-3,50],[-26,41],[-42,-33],[1,-90],[19,-68],[72,-154],[22,-64],[29,-18],[41,10],[50,-66],[39,-61],[97,-93],[59,10],[63,23],[43,-6],[42,-24],[50,-77],[80,-195],[130,-161]],[[120645,67149],[-108,214],[-74,88],[10,160],[-22,31],[-29,3],[-21,45],[19,95],[-29,-18],[-41,3],[-33,26],[-25,132],[-50,109],[-46,0],[-15,33],[4,85],[-33,53],[-44,42],[-36,25],[-37,137],[-53,61],[-34,-18],[-12,-50],[-22,-47],[-26,6],[-24,27],[-29,137],[-5,84],[6,156],[37,140],[19,224],[31,141],[22,48],[29,192],[61,246]],[[107959,90413],[16,-21],[-38,-26],[-23,2],[-30,51],[3,13],[72,-19]],[[107954,91166],[-36,32],[21,13],[15,-45]],[[108086,90680],[-5,-35],[-90,-40],[-41,-33],[-8,-59],[-11,-17]],[[107931,90496],[-36,-17],[-28,69],[-163,86],[-45,21],[-87,-31],[-101,-42],[-27,-54],[1,-21]],[[107445,90507],[2,-49],[-19,-7],[-53,41],[-13,-35],[-21,-109],[22,-67],[7,-98],[72,5],[58,29],[75,-12],[79,-2],[78,3],[15,18],[31,-28],[64,27],[47,4],[46,-16],[54,-105],[28,-13],[89,12],[26,56],[22,14],[67,15],[57,44],[28,4],[20,-35],[-6,-52],[19,-18],[54,-4],[26,-17]],[[108419,90112],[-3,-81],[35,-21],[79,52],[23,1],[45,-64],[35,-37],[55,90],[122,34]],[[108810,90086],[100,-17],[102,1],[54,9],[66,47],[36,12],[69,-8]],[[109780,88586],[-70,88],[-30,26],[-59,-9],[-75,26],[-38,-3],[-40,-59],[-39,-10],[-141,-58],[-42,5],[-2,36],[30,27],[1,62],[-103,37],[-42,-7],[-74,-37],[-136,-99],[-60,-66],[-43,-100],[-128,-32],[-89,-57],[-91,-93],[-60,-51],[-29,-7],[-30,9]],[[108390,88214],[-29,25],[-29,78]],[[108332,88317],[-42,197],[31,331],[18,134],[15,48],[-13,48],[-27,-1],[-43,-18],[-47,9],[1,62],[22,113],[-33,95],[-88,77],[-75,27],[-61,-23],[-52,-62],[-42,-99],[-43,-81]],[[107853,89174],[-45,-63],[-43,-42],[-6,-27],[24,-84],[-2,-70],[-27,-57],[-29,-27],[-59,15]],[[107666,88819],[-19,24],[-51,7],[-84,-11],[-58,-29],[-31,-46],[-9,-61],[13,-75],[-6,-58],[-26,-40],[-39,-29],[-36,34],[-56,76],[-39,41],[-45,-6],[-14,-32],[-18,-9],[-48,0],[-14,-24],[-39,-28],[-69,-32],[-37,-34],[-17,-53],[-21,6],[-62,-50],[-48,16],[-53,64],[-29,53],[-3,22]],[[106708,88545],[17,51],[7,168],[21,59],[63,104],[33,80],[37,65],[27,21],[25,51],[20,59],[6,37],[-9,47],[-81,101],[-25,63],[-13,81],[-4,55],[44,155],[-20,49],[-62,22],[-82,-8],[-40,19],[-4,70],[-22,28],[-93,33],[-22,31],[33,156],[50,64],[77,44],[154,-39],[138,-25],[28,5],[53,69],[23,142],[41,-2],[19,47],[23,-14],[16,17],[-34,73],[6,26],[65,15],[5,33],[-17,12],[-62,-6],[-62,1],[6,37],[128,28],[69,-10],[51,-14],[20,7],[-24,63],[32,6],[4,21],[-42,166],[46,48],[-2,62],[45,51],[37,-21],[56,-61],[36,-16],[26,19],[157,95],[67,50],[11,19],[23,76],[30,-3],[93,-128],[-8,-43],[48,-27],[-16,-49],[-142,-150],[-5,-49],[11,-15],[59,-26],[30,-77],[21,-9],[132,26]],[[100398,89681],[-27,65],[-12,108],[16,-10],[23,-163]],[[106175,88668],[-22,-3],[-156,49],[-148,107],[-35,-34],[-18,-36],[-15,-69],[-23,-82],[-200,-9],[-59,-31],[-59,-43],[-92,-402],[-16,-88],[-23,-61],[-66,-80],[-75,-53]],[[105168,87833],[-40,-26],[-35,-70],[-63,1],[-149,-70],[-93,-38],[-53,0],[-30,-27],[26,-98],[-22,-28],[-15,-49],[-12,-85],[-85,-67],[-58,-54],[-49,-27],[-63,13],[-33,-14],[-34,-42],[-16,12],[-8,43],[-17,28],[-53,62],[-46,45],[-19,3],[-94,-20],[-43,9],[-34,17],[-52,62],[-33,58],[-35,-7]],[[100745,88664],[-29,227],[-10,180],[1,83],[12,166],[-6,160],[14,158],[5,85],[-7,59],[-23,48],[-39,60],[-8,74],[-38,4],[-61,63],[-60,24],[-30,1],[-27,-18],[-20,-36],[-14,57],[0,60],[48,122],[30,-35],[36,-15],[46,-2],[46,10],[-9,42],[-47,42],[-10,56],[4,57],[12,55],[-36,35],[-50,-1],[-64,14],[-65,6],[-15,-64],[-24,12],[-40,99],[-26,115],[-5,125],[22,103],[29,96],[16,124],[24,122],[50,-103],[37,-46],[81,-29],[39,7],[41,27],[41,-9],[64,-106],[46,-12],[94,40],[45,10],[39,-19],[40,0],[-17,50],[-8,48],[24,26],[74,-28],[48,19],[23,22],[5,42],[-8,84],[-14,35],[-34,50],[-133,119],[-44,47],[-37,61],[-24,86],[-19,90],[-64,222],[-41,27],[-55,5],[-55,-12],[-91,-26],[-52,8],[-24,-17],[-60,-65],[-28,-56],[-39,-128],[30,-41],[-1,-27],[-22,-190],[-2,-77],[-34,94],[-59,114],[-50,175]],[[101634,91435],[342,-24],[106,-17],[43,60],[-43,70],[-15,152],[-9,131],[30,40],[35,30],[49,88],[27,28],[39,22],[131,6],[56,18],[18,28],[29,73],[9,59],[36,47],[20,-1],[68,-27],[41,-34],[30,-74],[25,0],[9,33],[-25,47],[-56,84],[-55,52],[-4,18],[46,42],[94,-18],[24,13],[24,68],[124,-152],[24,-14],[82,-12],[33,-29],[33,-87],[76,-40],[134,2],[41,-5],[64,-73],[-11,-41],[-8,-123],[62,-33],[37,-51],[-7,-36],[-29,7],[-14,-23],[0,-41],[20,-39],[6,-35],[-29,-82],[9,-54],[157,-123],[25,-4],[104,20],[48,2],[29,-13],[80,-13],[26,-14],[64,3],[26,40],[47,17],[63,-26],[67,-53],[45,-48],[21,-44],[28,-96],[33,-146],[41,-99],[47,-51],[33,-95],[29,-206],[17,-42],[73,-82],[175,-156],[193,-179],[93,-131],[99,-91],[91,-73],[63,17],[96,-112],[55,-56],[69,-44],[110,-93],[140,-133],[91,-76],[50,-9],[56,30],[49,-17],[87,-54],[70,-66],[23,-15],[80,-28],[23,-55],[-44,-102],[-7,-130],[0,-97],[5,-77]],[[130946,56159],[70,60],[106,45]],[[131327,56437],[46,58],[38,105],[27,42],[87,51],[182,57],[44,4],[115,-1],[154,12],[39,8],[49,26],[48,31],[52,43],[40,-22],[67,-17],[35,-36],[-78,-111],[-86,-92],[-53,-28],[-55,-18],[-41,-36],[-36,-55],[-45,-32],[-50,-10],[-44,-17],[-39,-32],[-55,-56],[-45,-5],[-45,-21],[-141,-80],[-85,-89],[-62,-76]],[[131639,56996],[-28,-120],[-32,26],[34,67],[26,27]],[[2191,47832],[-3,-104],[-21,48],[-2,22],[26,34]],[[2084,47924],[13,20],[20,-14],[-31,-72],[-20,28],[-57,46],[-12,35],[59,-8],[29,-19],[-1,-16]],[[2604,49685],[-24,-40],[-26,40],[29,48],[35,-12],[-14,-36]],[[51247,69720],[-70,-40],[-182,-9],[-75,14],[-58,-11],[105,85],[13,36],[45,7],[12,11],[15,188],[-15,70],[-58,42],[18,34],[55,11],[41,23],[84,4],[41,20],[70,6],[-50,-119],[6,-77],[-8,-53],[9,-67],[21,-44],[-14,-43],[-5,-88]],[[51357,70447],[-20,20],[41,48],[63,33],[7,-42],[-91,-59]],[[82244,86143],[-43,-24],[-59,36],[10,104],[77,3],[41,-49],[8,-26],[-34,-44]],[[82382,86861],[-67,-50],[13,44],[44,53],[10,-47]],[[81950,84725],[-50,-97],[-19,-57],[25,-149],[30,-152],[6,-116],[-17,-57],[-68,-142],[-71,-134],[-38,-31],[-72,-42],[-52,-37],[-67,420],[-60,377]],[[81470,84680],[-50,314],[-11,23],[-145,143],[-150,162],[-13,107],[-40,160],[-43,90],[-15,23],[-86,58]],[[80917,85760],[-49,42],[-14,25],[-9,65],[-35,130],[-41,118],[-14,80],[-2,100],[8,72],[17,31],[84,91],[38,108],[90,71],[33,36],[30,57],[23,62],[13,170],[15,74],[36,83],[-34,138],[6,125],[-5,51]],[[81107,87489],[-31,102],[0,48],[26,221],[18,125],[-20,61],[-40,28],[-1,16]],[[81059,88090],[10,19],[60,60],[32,90],[68,51],[-11,71],[107,43],[101,110],[36,27],[235,101],[65,-22],[-24,-68],[20,-53],[29,33],[-9,50],[91,-2],[47,-31],[-3,-120],[62,-118],[-17,-58],[51,-35],[46,42],[22,61],[84,36],[80,89],[44,10],[10,-74],[22,-64],[-31,-23],[-38,-69],[-73,-174],[-67,-51],[-50,-67],[-16,-48],[-5,-55],[12,-99],[37,-102],[42,-61],[41,-19],[95,-96],[-2,-57],[14,-68],[5,-83],[33,-66],[-71,-144],[-39,-104],[-75,-143],[-67,-93],[-144,-139],[-36,-46],[-23,-47],[-10,-50],[4,-58],[47,-144],[63,-85],[64,-46],[112,19],[-4,-55],[8,-67],[75,14],[26,64],[55,-44],[28,-135],[46,-42],[5,-15],[-29,-26],[59,-28],[27,11],[44,-30],[-16,-151],[-5,-128],[0,-97],[34,-82],[1,-36],[-13,-41],[-145,-109],[-148,-123],[-23,-41],[-70,-64],[-28,-89],[-30,-46],[-73,-22],[-13,-13]],[[88710,90609],[-99,-22],[-31,22],[31,42],[76,29],[26,-42],[-3,-29]],[[96231,91319],[3,-34]],[[96804,88524],[-14,16],[-54,8],[-88,-82],[-52,-56],[-15,4],[-19,47],[3,105],[-7,33],[-34,36],[-43,9],[-77,-63],[-69,2],[-69,12],[-90,49],[-18,2],[-74,35],[-67,-30],[-29,7],[-41,26],[-14,-7],[-46,-78],[-77,-84],[-42,-14],[-20,84],[-19,33],[-43,8],[-47,-57],[-74,-35]],[[95565,88534],[-62,-21],[-98,-26],[-108,-14],[-70,12],[-62,16],[-62,0],[-47,-8],[-110,-62],[-187,-127],[-142,-61],[-80,-25],[-62,-14],[-107,-1],[-87,10],[-60,-1],[-34,15],[-47,51],[-58,51],[-59,22],[-50,6],[-122,-75],[-81,-35],[-122,-70],[-107,9],[-52,-3],[-35,35],[-19,39],[-71,24],[-51,7],[-13,-18],[-14,-53],[-25,-170],[45,-135],[-2,-20],[-69,-9],[-44,-35],[-12,-117],[-42,-21],[-21,-25],[-20,-72],[-12,-1],[-69,54],[-32,5],[28,57],[-30,112],[-33,105],[31,67],[64,81],[68,95],[-4,103],[-57,72],[-62,-44],[-44,-48],[-29,-10],[-32,-28],[-15,-50],[-38,-38],[-62,-16],[-93,42],[-101,63],[-57,51],[-46,13],[-44,-23],[-130,-125],[-119,-184],[-29,-32],[-112,-78],[-75,-27],[-34,6],[-148,-34],[-73,-5],[-58,-42],[-112,45],[-68,58],[-40,58],[-66,127],[-47,60],[-105,54],[-183,131],[-48,14],[-125,19],[-132,12],[-27,-48],[-10,-189],[-23,-52],[-9,-98],[-17,-28],[-25,-19],[-67,45],[-64,-40],[-127,-57],[-43,-8],[-146,71],[-54,46],[-35,51],[-11,85],[-22,49],[-12,72],[-30,15],[-31,-29],[-34,1],[-43,18],[-101,72],[-77,5],[-47,-87],[-36,-28],[-40,-8],[-2,25],[30,56],[-121,-10],[-63,-43],[-50,6],[-37,20],[5,24],[38,8],[33,20],[131,15],[30,16],[34,62],[61,53],[7,22],[-47,1],[-200,-16],[-138,9],[-16,-26],[-21,-4],[-5,71],[21,34],[30,-4],[72,29],[-7,60],[-51,40],[-11,23],[-37,6],[-30,28],[-7,71],[-24,78],[-35,38],[5,21],[63,26],[13,110],[-10,67],[-31,5],[-93,53],[-28,-5],[-31,58],[-53,42],[-44,-35],[-25,9],[-41,37],[-41,19],[-18,24],[22,65],[32,-1],[6,50],[-25,85],[2,43],[28,12],[31,-8],[31,-51],[10,-48],[-6,-48],[20,-46],[23,37],[71,-23],[103,30],[19,25],[-75,-3],[-27,24],[-30,53],[-18,48],[-14,58],[12,18],[51,28],[45,77],[-40,33],[-23,-8],[-23,27],[-2,36],[17,30],[2,41],[-74,123],[13,33],[44,56],[42,68],[-5,22],[-31,10],[-148,-30],[-57,-25],[-103,-12],[-5,71],[23,61],[-2,150],[14,82],[56,24],[70,120],[113,142],[118,-3],[48,39],[70,2],[20,-55],[62,-39],[109,6],[52,37],[-51,69],[16,20],[46,2],[49,-16],[3,-16],[-29,-60],[15,-7],[140,23],[147,-19],[47,10],[116,-1],[20,24],[-35,30],[-34,11],[-46,36],[73,67],[42,13],[195,41],[145,21],[-19,15],[-187,34],[-46,27],[-62,63],[-30,49],[21,118],[23,30],[75,5],[258,-54],[183,32],[200,-78],[192,16],[39,35],[48,113],[271,188],[95,97],[101,54],[174,59],[146,79],[42,9],[349,-38],[240,-5],[110,75],[64,-25],[-17,-49],[3,-46],[38,-68],[38,-45],[112,-66],[156,55],[57,-21],[55,-179],[42,-63],[55,-43],[45,-8],[33,45],[26,18],[56,7],[93,-61],[32,-63],[157,-49],[144,-25],[62,-53],[203,-54],[76,8],[127,57],[247,61],[164,-86],[45,-11],[38,7],[55,-23],[59,12],[182,102],[57,58],[60,15],[54,34],[142,113],[42,66],[82,-32],[53,-28],[44,44],[122,-6],[110,-32],[18,21],[26,62],[49,18],[46,-15],[14,-50],[37,-18],[65,-79],[39,-32],[2,-49],[23,-26],[32,-10],[34,4],[32,-24]],[[88861,91709],[2,39],[15,20],[65,18],[16,49]],[[88959,91835],[29,47],[79,7],[37,12],[54,46],[78,13],[44,2],[78,-92],[26,-19],[54,29],[60,-4],[34,21],[58,-12],[-12,-79],[28,-88],[63,-122],[64,-61],[259,-152],[47,-13],[-26,-117],[-17,-37],[-76,-24],[-209,68],[-53,6],[-37,-13],[-69,-49],[-77,16],[-107,-28],[-30,-93],[-74,-106],[-122,-86],[-87,-46],[-131,-165],[-59,-96],[-55,-33],[25,88],[-3,78],[43,53],[40,38],[118,69],[31,57],[-93,-1],[-93,-13],[-59,8],[-51,-4],[-29,80]],[[128522,79737],[18,-46],[-8,-29],[-59,16],[49,59]],[[129642,78413],[-27,-82],[-21,-86],[-9,-81],[1,-84],[-6,-76],[-11,-75],[-42,22],[-22,53],[-5,88],[-42,137],[-44,60],[-40,30],[-26,40],[-23,59],[-17,63],[-36,179],[-29,83],[-4,39],[21,108],[9,65],[-7,89],[2,88],[12,39],[203,536],[55,114],[34,56],[28,63],[27,80],[33,73],[23,22],[117,66],[36,62],[29,20],[33,-1],[40,-66],[71,-53],[23,-34],[10,-57],[-31,-55],[-16,-49],[-2,-55],[5,-73],[1,-74],[-39,-174],[-42,-108],[-12,-54],[-13,-133],[-24,-134],[-21,-170],[-35,-175],[-19,-74],[-24,-70],[-58,-132],[-66,-109]],[[94628,57109],[-23,-9],[-24,38],[25,24],[24,48],[56,71],[22,1],[-31,-120],[-27,-7],[-22,-46]],[[94535,58364],[33,-148],[-4,-28],[-35,-18],[-15,23],[-10,51],[-18,-12],[-30,59],[-30,3],[-26,72],[10,62],[-6,106],[32,54],[19,91],[20,-62],[5,-97],[28,-115],[27,-41]],[[94694,59247],[-4,-68],[1,-105],[-2,-70],[-25,-97],[-20,-34],[-32,26],[-12,26],[23,178],[-11,130],[46,-13],[36,27]],[[94417,59396],[-9,-58],[-33,-142],[-2,-60],[-26,-115],[-35,-200],[-29,-75],[-39,-175],[-7,-134],[22,-94],[8,-88],[46,-86],[37,-31],[26,-39],[44,-90],[25,-91],[80,-44],[32,-101],[-12,-70],[-37,-58],[-34,-93],[-28,-123],[-1,-188],[19,29],[42,-46],[5,-139],[-43,-161],[-13,-75],[-3,-65],[32,-193],[48,-98],[-16,-56],[82,-174],[-7,-151],[31,-118],[13,-102],[20,-78],[4,-54],[-25,-60],[59,-15],[36,-49],[16,-46],[43,2],[24,-32],[33,-27],[75,-78],[32,-78],[-205,-248],[-74,-64],[-52,-29],[-57,-17],[-53,-39],[-51,-61],[-65,-31],[-79,0],[-83,-43],[-130,-128],[-76,71],[-60,22],[-69,-2],[-42,-9],[-15,-15],[-13,-44],[-11,-71],[-45,-69],[-79,-66],[-72,-24],[-67,16],[-45,28],[-23,38],[-35,18],[-46,-3],[-43,-28],[-42,-51],[-67,-22],[-92,7],[-49,24],[-7,43],[-40,50],[-74,58],[-54,1],[-35,-55],[-32,-35],[-54,-16],[-37,15],[-102,6],[-96,-2]],[[91703,56113],[-70,60]],[[91633,56173],[-64,36],[-53,40],[-23,39],[-49,15],[-42,6],[-39,37],[-81,13],[-9,24],[-1,54],[-44,28],[-62,-5],[-50,72],[-10,65],[-37,41],[-42,33],[-118,-4],[-19,10],[-28,33],[-33,53],[-26,62],[-23,83],[-24,112],[-70,225],[-66,224],[-13,85],[-27,94],[-43,115],[-46,86],[-62,78],[-71,77],[-38,52],[-51,155],[-22,56],[-14,99],[-12,102],[5,42],[45,132],[5,37],[-6,50],[-50,233],[-58,232],[-8,58],[1,44],[18,117],[16,119],[-1,33],[136,-4],[99,103],[86,155],[17,64],[35,99],[34,50],[14,34],[9,53]],[[90618,60119],[10,46],[45,67],[44,51],[-9,36],[31,40],[47,24],[9,52],[0,58]],[[90795,60493],[-14,92],[-30,5],[-45,30],[-39,12],[-35,30],[-4,35],[21,90],[-21,37],[47,150],[26,21],[52,23],[21,-6],[28,23],[11,51],[10,85],[-5,69],[-20,53],[-5,82],[9,109],[-7,91],[-21,73],[-23,43],[-34,20],[-53,111],[-16,54],[3,33],[18,15],[34,-5],[32,12],[30,31],[44,4],[275,0],[153,0],[230,0],[229,0],[230,0],[200,0]],[[92158,65602],[67,-231],[23,-13],[-9,-40],[44,-55],[54,-29],[20,-29],[1,-31],[-18,-135],[21,-173],[32,-30],[29,-136],[58,-58],[8,-17],[31,-138],[22,-21],[17,-76],[-10,-43],[14,-131],[21,-117],[6,-139],[0,-99],[-5,-53],[-29,-61],[-49,-122],[8,-75],[-7,-30],[-59,-31],[-49,-59],[-24,-41],[-30,-122],[-51,-95],[-9,-31],[-48,-56],[-21,-70],[-13,-85],[-19,-62],[-40,-84],[-10,-133],[1,-265],[-10,-302],[1,-118],[-200,0],[-230,0],[-229,0],[-230,0],[-153,0],[-275,0],[-44,-4],[-30,-31],[-32,-12],[-38,1]],[[91312,94834],[-1,-26],[-133,33],[-27,40],[161,-47]],[[93983,95452],[-15,-8],[-151,11],[-123,-15],[-88,-110],[-52,0],[-73,-28],[-50,-36],[-59,-77],[-46,35],[-56,-1],[-55,-21],[-65,-52],[-37,-9],[-73,15],[-85,-30],[-184,-169],[-62,-123],[-53,-55],[-51,-14],[88,88],[26,33],[5,64],[-26,48],[-72,-120],[-40,-18],[-52,-36],[-3,-81],[6,-60],[21,-76],[51,-124],[102,-176],[49,-65],[36,-26],[43,-4],[83,54],[36,9],[77,-21],[28,37],[40,20],[51,2],[59,-16],[64,-28],[-53,-112],[-25,-116],[-71,-28],[-75,4],[-80,-18],[-47,46],[-35,21],[-47,12],[-42,-14],[-49,-84],[-88,-57],[-29,-65],[-86,15],[-73,-12],[-107,-59],[-81,-128],[-89,-80],[-71,-25],[-66,8],[-43,24],[-89,84],[6,30],[29,58],[35,158],[-5,51],[-20,81],[-70,63],[-56,-12],[-32,17],[-116,107],[-63,7],[-69,-21],[-26,15],[-19,38],[138,131],[136,109],[59,11],[80,51],[86,76],[-12,59],[-19,45],[-71,-27],[-71,47],[-27,35],[-112,-36],[-62,5],[-138,-33],[-63,32],[-127,91],[-48,19],[-40,-4],[-22,30],[27,15],[64,12],[7,46],[-65,23],[-62,6],[-68,58],[69,0],[70,-23],[109,-9],[99,-24],[83,82],[-86,-19],[-98,22],[-35,32],[-30,46],[-13,53],[8,49],[-10,88],[-33,79],[-12,-6],[13,-58],[20,-54],[-5,-142],[-12,-50],[-40,-13],[-107,23],[14,79],[-29,-27],[-41,-77],[-35,-11],[-79,8],[-147,-50],[-10,-55],[-22,-74],[-28,-70],[-62,-112],[-126,-166],[-92,-48],[-45,-32],[-35,-14],[-58,16],[-36,-50],[-1,-58],[30,-41],[25,-138],[-9,-58],[-60,78],[-71,34],[-77,-12],[-85,-57],[-57,-22],[-30,15],[-25,-17],[9,-32]],[[89923,94163],[-11,-5],[-134,41],[-57,38],[-46,72],[43,33],[69,6],[18,46],[-9,65],[30,49],[45,40],[27,41],[4,59],[48,29],[42,49],[25,88],[-27,78],[-7,95],[14,24],[81,47],[23,-15],[2,-87],[21,9],[22,51],[38,-20],[28,12]],[[90212,95008],[42,-32],[25,-7],[40,35],[19,-8],[37,-60],[103,19],[24,31],[-89,81],[7,129],[-27,73],[-68,37],[-53,39],[-11,18],[-4,58],[-21,30],[15,109],[-17,30],[-23,2]],[[90211,95592],[-31,24],[-22,33],[-75,56],[-15,52],[37,140],[-7,105],[-29,57],[-14,8],[-52,-29],[-46,43],[-40,86],[-105,22],[-29,-42],[-17,39],[-35,-1]],[[89731,96185],[2,47],[-24,18],[-57,0],[-30,13],[-22,45],[-63,30],[-31,36],[-45,23],[-71,20],[-63,-43],[-29,11],[-46,-42],[-142,0],[-23,11],[-89,-65],[-9,-24],[-76,-21]],[[88913,96244],[-59,-18],[-12,-63],[-49,-84],[-110,-17],[-94,-25],[-97,-15],[-127,-61],[-41,-54],[-78,-19],[-24,30],[-81,80],[-31,38],[-40,11],[-45,-6],[-42,-19],[-45,-3],[-51,27],[-25,-7],[-161,42]],[[87701,96081],[-95,-4],[-88,66],[-28,2],[-36,-56],[-61,-30],[-25,-2],[1,48],[-38,55],[-40,-3],[-40,20]],[[87251,96177],[-27,50],[-73,35],[-15,22],[-27,84]],[[87109,96368],[-53,-2],[5,114],[66,82],[40,130],[19,42],[64,100],[52,-26],[46,-13],[17,42],[-61,63],[11,86],[-5,41],[-26,90],[-5,39],[25,46],[142,204],[98,121],[62,71],[42,39],[89,102],[112,23],[35,69],[16,15],[2,60],[-21,74],[-29,44],[8,16],[47,25],[-5,19],[-47,47],[-21,37],[-32,93],[-85,128]],[[87717,98389],[6,59],[-28,91]],[[87695,98539],[-2,59],[42,21],[68,-12],[37,-27],[76,56],[66,76],[35,65],[57,11],[160,11],[87,22],[86,5],[135,-9],[88,-1]],[[88630,98816],[60,-7],[148,-41],[54,-7],[26,-22],[138,-29],[77,-12],[81,-1],[56,-97],[33,-13],[45,8],[64,-3],[38,-20]],[[89450,98572],[-5,-58],[27,-5],[51,76],[65,-22],[30,3],[45,30],[104,-31],[46,0],[29,-14],[21,-60],[36,-16],[27,53],[24,21],[55,22],[36,37],[32,-5],[17,-26],[53,-116],[21,-22],[89,37],[66,3],[87,13],[67,17],[41,-3],[64,-55],[11,-51],[50,-36]],[[90639,98364],[41,-7],[14,38],[24,25],[-13,81],[-30,87],[58,152],[38,56],[97,105],[42,22],[60,-19],[55,39],[98,1],[82,-4]],[[52626,41177],[-3,103],[-24,84],[18,66],[51,78],[27,62],[2,47],[16,28],[24,-52],[73,-13],[73,-2],[12,13],[28,84],[38,24],[41,6],[45,-4],[48,-56],[135,-181]],[[53230,41464],[100,-126],[76,-146],[-8,-107],[6,-61],[56,7],[29,22],[43,63],[18,15],[16,47],[30,-13],[47,-61],[36,-57],[9,-33],[39,-92],[35,-38],[35,-24],[24,25],[60,-78],[133,-66],[24,-39],[23,-57],[47,-85],[64,-76],[52,-33],[77,-35],[19,-29],[50,-44],[46,-168],[23,-73],[48,-70],[55,-54],[56,-31],[32,-38],[14,-39],[-38,-59],[-78,-132],[-38,-40],[-21,-71],[0,-230],[-3,-85],[8,-38],[64,-45],[-21,-26],[-23,-49],[-26,-117],[-90,-162],[-18,-91],[-97,-95],[-68,-107],[-45,3],[-40,-46],[-231,-139],[-84,26],[-61,0],[-57,61],[-130,22],[-82,-24],[-110,-68],[-57,5],[-59,28],[-33,59],[-169,69],[-135,156],[-161,3],[-123,-20],[-19,21],[-38,98],[-106,137],[-83,137],[-16,135],[11,146],[25,173],[-4,55],[31,30],[30,7],[29,44],[26,68],[5,52],[-20,95],[-14,132],[-17,66],[33,105],[2,50],[-20,45],[-5,46],[9,47],[-2,45],[-12,44],[9,35],[31,29],[23,43],[15,59],[9,76],[-29,56],[9,55],[37,82],[23,72],[11,63],[-1,51],[-12,39],[5,27],[23,13],[10,41]],[[10517,75901],[-19,-34],[-24,3],[-86,71],[-11,39],[7,179],[-33,145],[-35,111],[26,56],[34,44],[38,84],[-31,106],[8,65],[18,11],[90,-79],[183,-117],[48,-83],[9,-89],[33,-11],[16,-61],[48,-53],[16,-30],[-20,-49],[-88,-94],[-110,-41],[-97,-106],[-20,-67]],[[9971,77127],[-26,-20],[-28,9],[-6,48],[-27,60],[47,12],[26,-17],[31,-52],[-17,-40]],[[10127,77238],[11,-12],[79,25],[56,-46],[19,-31],[37,-34],[12,-24],[-10,-30],[-41,-48],[-55,-12],[-32,-20],[-55,13],[-5,61],[-13,67],[-28,-8],[-30,22],[-32,55],[-4,33],[18,53],[30,7],[23,-29],[20,-42]],[[9814,77435],[91,-19],[21,8],[16,-16],[75,-9],[-3,-42],[-48,-33],[-69,29],[-116,10],[16,48],[17,24]],[[9562,77603],[33,1],[7,-56],[30,-49],[-24,-19],[-46,-8],[-22,15],[-22,35],[-25,-9],[-8,35],[-17,-7],[15,-36],[-55,2],[-12,41],[-44,78],[0,30],[-14,36],[64,11],[44,64],[25,6],[48,-103],[-1,-29],[24,-38]],[[8536,77871],[-8,-31],[-19,32],[10,38],[51,82],[23,-8],[-12,-32],[-2,-35],[-31,-20],[-12,-26]],[[8884,77934],[-38,-39],[-22,17],[-42,6],[-16,30],[-44,26],[-17,36],[27,69],[63,58],[98,-3],[20,-46],[2,-34],[-13,-38],[-6,-53],[-12,-29]],[[42494,79827],[-13,-15],[-24,72],[43,-33],[-6,-24]],[[42905,80169],[-76,-98],[44,103],[22,21],[21,38],[2,44],[40,35],[-53,-143]],[[35674,80877],[-6,-32],[-36,151],[-58,342],[-2,194],[9,67],[15,-275],[64,-349],[14,-98]],[[35595,81671],[-10,20],[35,136],[71,178],[30,30],[-82,-196],[-44,-168]],[[42989,81656],[-33,68],[-49,187],[9,24],[73,-279]],[[35741,82090],[16,78],[34,73],[18,10],[7,-30],[-35,-51],[-40,-80]],[[35849,82265],[4,35],[32,19],[69,72],[46,3],[-56,-43],[-95,-86]],[[36592,82957],[-22,-7],[94,107],[20,36],[25,-2],[-42,-60],[-75,-74]],[[37990,83204],[-16,-10],[-72,60],[-4,26],[35,23],[22,-2],[46,-39],[2,-32],[-13,-26]],[[42458,84228],[-19,-170],[-8,60],[-1,58],[28,52]],[[26552,85520],[-25,-6],[-28,14],[-24,67],[-26,53],[14,15],[21,-51],[68,-92]],[[26084,85791],[-46,6],[-14,37],[42,-3],[18,-40]],[[26553,85909],[22,-52],[-64,4],[-20,67],[-29,13],[2,31],[70,-43],[19,-20]],[[25823,86280],[-31,-10],[-22,9],[-37,67],[78,9],[37,-37],[-25,-38]],[[25709,86354],[-58,5],[32,28],[26,-33]],[[25892,86392],[88,-36],[47,17],[3,-32],[-106,-27],[-33,19],[-14,51],[15,8]],[[44575,86784],[29,79],[78,110],[-107,-189]],[[44988,87200],[24,167],[10,-22],[-19,-117],[-15,-28]],[[45079,89044],[-19,-12],[65,140],[10,0],[-56,-128]],[[45572,90878],[-20,-3],[20,67],[38,30],[14,-6],[-5,-44],[-47,-44]],[[46295,91201],[-30,-45],[27,-5],[99,76],[59,19],[21,-25],[85,32],[-187,-116],[-39,-13],[-55,-35],[-51,-25],[-38,-8],[-186,-86],[-30,6],[-153,-44],[-63,-5],[-24,44],[-23,-3],[-23,-37],[-37,-12],[-7,40],[29,60],[36,46],[102,63],[30,26],[37,1],[49,16],[41,-13],[40,3],[32,19],[122,11],[87,14],[36,24],[73,69],[43,19],[-66,-80],[-36,-36]],[[47386,91395],[-34,-11],[-76,26],[73,29],[9,48],[28,-92]],[[47156,91472],[-118,-34],[11,32],[37,53],[25,6],[39,-30],[6,-27]],[[46841,91553],[-21,-19],[-12,29],[17,79],[20,24],[-4,-113]],[[47969,93436],[-34,-10],[0,35],[20,7],[14,-32]],[[48157,93531],[-25,-14],[-28,6],[-2,-50],[-42,31],[1,49],[27,46],[21,18],[26,-13],[22,-73]],[[24810,95663],[-2,-16],[-47,-10],[10,91],[39,-65]],[[24766,95802],[-26,2],[-7,48],[28,11],[5,-61]],[[24733,96193],[31,-53],[58,-66],[0,-32],[-19,-15],[-35,44],[-28,8],[-20,43],[-1,52],[-36,31],[-25,46],[34,78],[17,23],[25,-17],[12,-46],[-64,-37],[41,-28],[10,-31]],[[24627,96384],[-30,3],[-18,35],[8,37],[42,-60],[-2,-15]],[[24544,96433],[-35,-8],[-20,13],[-13,55],[24,18],[39,-52],[5,-26]],[[24643,96553],[6,-16],[-53,-39],[-40,23],[3,36],[34,22],[50,-26]],[[36732,96685],[4,-38],[36,-46],[89,-27],[155,-31],[87,-36]],[[37103,96507],[21,-41],[41,-16],[62,8],[43,17],[37,38]],[[37359,96522],[89,-6],[92,-37]],[[37540,96479],[45,-25],[100,-67]],[[37751,96277],[21,36],[55,7],[72,-26]],[[37899,96294],[63,-72],[91,-65],[55,-32],[57,0]],[[38165,96125],[72,32],[76,62],[55,11],[32,-6],[19,-49]],[[38419,96175],[23,-18],[59,6],[123,-10],[99,13],[42,-71],[40,-14],[54,14],[138,-13],[78,16],[38,19],[247,151],[101,27],[93,-54],[180,-115]],[[40196,95831],[104,-67],[335,-223]],[[40969,95318],[42,-183],[49,-65]],[[41060,95070],[44,-60],[26,3],[27,25]],[[41157,95038],[107,36],[29,-32]],[[41293,95042],[-11,-41],[15,-51],[11,-101],[48,-98],[28,-9],[64,26],[64,5]],[[41812,94356],[158,-119],[29,-183]],[[41999,94054],[33,-237],[55,-384],[61,-433]],[[42126,92933],[-94,-280],[-4,-38],[-31,-194],[-24,-79]],[[41973,92342],[-86,-92],[-53,-75],[-88,-59],[-16,-35]],[[41911,91680],[108,0],[200,149]],[[42420,91979],[99,73],[107,27]],[[42626,92079],[337,82],[209,121],[253,146]],[[43425,92428],[59,37],[42,43],[10,32]],[[43489,92615],[-2,31],[-16,31]],[[43471,92677],[3,119],[-10,38],[-38,94],[194,110],[113,5],[250,-2],[347,-2],[109,2],[100,205],[53,93],[93,109],[27,20]],[[44712,93468],[15,43],[118,78],[25,36]],[[44870,93625],[12,20],[168,192]],[[45050,93837],[95,88],[79,50]],[[45224,93975],[60,23],[41,-3]],[[45325,93995],[43,3]],[[48614,94113],[20,-125],[-15,-31],[3,-42],[40,-12],[12,-28],[-88,-106],[-75,15],[-40,-28],[-42,-8],[-19,-47],[-23,-10],[-59,16],[-21,-7],[-29,-85],[-24,7],[-10,-30],[-31,-25],[-26,74],[-35,17],[-34,-6],[-41,-43],[-34,44],[-30,-89],[3,-53],[-8,-32],[-34,36],[-48,22],[-38,-2],[8,30],[36,42],[-37,9],[13,38],[-15,28],[-20,-45],[-50,-36],[3,-60],[-47,-122],[-2,-52],[-29,-42],[-39,-35],[-51,10],[-39,-31],[-19,-36],[-18,-5],[-15,59],[-14,-67],[-15,-4],[-12,79],[-20,-27],[-14,-72],[-31,10],[5,-43],[-35,10],[-44,-22],[4,47],[-42,-14],[-50,-48],[-39,-65],[29,-32],[-68,-102],[-69,-91],[-53,-150],[-39,-44],[-19,-91],[-22,-80],[21,-72],[19,-36],[48,1],[5,-34],[-21,-4],[-39,-32],[-34,-13],[-43,-84],[-50,-70],[22,-22],[77,-24],[34,-25],[52,-131],[-17,-37],[47,-34],[14,-94],[38,-32],[57,-20],[69,28],[57,40],[-2,32],[-36,74],[-8,69],[57,-81],[15,-107],[4,-68],[-7,-23],[-48,0],[-148,-35],[-33,-31],[-76,-34],[-4,123],[-15,3],[-118,-116],[-45,-7],[-38,-34],[-9,19],[-7,87],[12,71],[-40,-43],[-26,56],[-14,-41],[-27,-49],[-8,-125],[-34,-52],[-106,-33],[-69,7],[-62,-11],[-83,-24],[-45,15],[-47,-26],[-158,-7],[-34,14],[-42,-48],[-68,-28],[-173,-107],[-38,-39],[-78,-94],[-25,-11],[-17,16],[-33,-57],[-55,-58],[-31,-46],[-16,-55],[9,-50],[83,-19],[22,16],[18,-86],[-7,-55],[-24,-123],[-16,-56],[-22,-38],[-26,-147],[-34,-79],[-32,-54],[-33,9],[7,-43],[-16,-70],[-20,-31],[-18,3],[-37,-38],[-1,-31],[-18,-28],[-64,-143],[-55,-42],[-14,6],[25,136],[-34,30],[-32,16],[-37,-3],[-41,54],[-53,38],[-73,105],[0,78],[22,77],[22,54],[30,27],[85,29],[-8,17],[-64,-21],[-34,-23],[-27,-35],[-17,-45],[-36,-53],[8,-61],[-3,-53],[24,-52],[46,-84],[9,-132],[35,-88],[54,-102],[41,-29],[2,-38],[-19,-63],[24,-38],[16,-52],[-1,-54],[-22,0],[-19,-29],[-11,-90],[-28,-9],[-29,-79],[-27,-44],[-104,-302],[4,-51],[-48,-29],[-49,-64],[-18,-89],[-35,-101],[-21,42],[-6,36],[10,94],[37,153],[41,96],[32,45],[26,92],[-33,14],[-50,-1],[24,80],[-26,37],[-31,20],[28,64],[-11,66],[-34,-45],[-8,29],[-28,-37],[-69,57],[-36,93],[13,73],[28,13],[37,-12],[24,14],[-50,60],[-17,35],[-28,10],[-9,32],[57,24],[-10,44],[-22,19],[-38,-24],[7,70],[55,-13],[22,64],[-35,-13],[-9,89],[36,86],[34,38],[42,-2],[-11,31],[20,34],[-6,31],[5,56],[-45,-17],[-10,-23],[-5,-66],[-51,-37],[-26,-40],[-24,57],[-12,-55],[-20,-15],[-6,-55],[-66,21],[36,-67],[27,-23],[3,-36],[-23,-30],[-31,26],[22,-85],[-11,-33],[0,-77],[-7,-31],[15,-147],[37,-78],[-10,-41],[-58,52],[-30,13],[101,-130],[33,-89],[-4,-37],[-49,60],[-60,38],[-75,25],[-43,88],[-9,-68],[-43,71],[-5,36],[-33,-3],[-34,-31],[-33,7],[-4,61],[9,32],[37,76],[35,39],[-16,9],[-32,-29],[-41,-54],[-23,-141],[35,-40],[53,21],[27,-9],[61,-111],[112,-44],[41,-28],[34,-58],[50,-33],[39,-49],[1,-31],[-13,-38],[-6,-50],[-16,-32],[-40,-4],[-24,8],[-130,178],[-15,17],[-48,93],[-56,50],[-18,-1],[81,-93],[32,-64],[58,-91],[41,-38],[30,-60],[28,-28],[77,-40],[-26,-29],[42,-24],[6,-45],[-4,-51],[-59,20],[4,-60],[-27,-18],[-36,25],[-94,136],[8,-39],[55,-88],[49,-53],[41,-24],[32,-44],[19,-67],[-51,-43],[-86,106],[-13,55],[-31,-3],[-131,69],[-105,8],[24,-23],[83,-17],[33,-32],[69,-29],[41,-7],[16,-88],[56,-60],[7,-44],[38,-5],[67,43],[43,-15],[62,-13],[14,-35],[11,-67],[22,-76],[57,-297],[86,-244],[-9,-5],[-64,161],[-35,117],[-36,205],[-11,46],[-24,-22],[6,-20],[-14,-68],[6,-31],[23,-32],[25,-81],[20,-107],[-27,43],[-29,23],[-45,18],[-40,31],[-1,-93],[-52,31],[19,-51],[-40,15],[-27,-3],[-18,-46],[-23,-27],[-35,-9],[-51,41],[-18,-29],[-3,-53],[50,-9],[46,8],[63,-2],[40,10],[25,17],[59,-15],[4,-64],[-10,-131],[35,22],[10,121],[54,45],[18,-3],[17,-39],[12,-93],[-13,-83],[-82,-96],[-60,-90],[-30,-18],[-44,11],[-49,22],[-43,-3],[-18,78],[-34,14],[-10,-53],[-46,-15],[-63,22],[-66,45],[28,-48],[163,-90],[36,-41],[-41,-82],[-9,-55],[-65,-58],[-35,10],[-90,104],[41,-90],[33,-38],[66,-20],[124,33],[41,-37],[-33,-65],[-34,-45],[-82,-18],[-11,-31],[-136,-7],[-36,7],[-51,-64],[-19,-9],[-27,12],[-24,-19],[15,-46],[-60,-52],[-100,-116],[-48,-95],[-11,-69],[-17,16],[-11,67],[-8,-122],[-18,-57],[-169,4],[-74,-31],[-114,-104],[-34,-45],[-94,-176],[-24,-113],[-19,47],[-18,3],[22,-91],[-20,-35],[-62,-64],[-72,-29],[-12,-64],[-52,-59],[-30,-26],[-55,16],[17,-57],[-20,-43],[-35,-32],[-44,-22],[-46,-9],[-16,-27],[-41,-25],[-90,22],[-27,-15],[45,-25],[24,-37],[-5,-49],[-40,-45],[-13,4],[-17,72],[-26,-41],[-40,77],[2,-59],[14,-45],[27,-37],[3,-21],[-27,-51],[-40,-20],[-14,-31],[4,-28],[-22,-58],[-52,-37],[-29,-10],[20,-45],[-14,-42],[-27,-7],[-16,-27],[14,-41],[-2,-24],[-31,-26],[-7,-24],[36,-5],[-36,-67],[-16,-45],[-37,-12],[40,-63],[-33,-64],[-33,20],[-5,-78],[-20,-121],[-9,-28],[7,-99],[21,-64],[30,-258],[21,-89],[38,-242],[62,-235],[89,-283],[144,-344],[17,-49],[-18,-41],[-8,-108],[5,-63],[18,-77],[14,-95],[-48,169],[-5,100],[7,141],[-11,-4],[-14,-99],[-13,-21],[-16,82],[1,37],[18,44],[-34,37],[-2,70],[-29,17],[9,-85],[13,-52],[17,-125],[27,-76],[15,-63],[183,-678],[43,-87],[16,-62],[17,-129],[3,-167],[-29,-304],[-7,-208],[-14,32],[-26,-96],[-35,-85],[-12,-134],[-17,-66],[-51,-71],[-31,2],[-77,-53],[-54,14],[-65,-30],[-42,3],[-25,63],[14,57],[16,6],[57,-66],[11,28],[-17,33],[-57,39],[-49,150],[-51,104],[-9,69],[-87,42],[-64,64],[-41,113],[-24,201],[-40,38],[28,75],[-11,24],[-21,-55],[-30,0],[-17,106],[5,130],[23,49],[-35,1],[-37,-18],[0,-68],[-47,22],[-28,45],[-37,86],[-77,238],[-41,68],[34,18],[49,107],[39,64],[13,45],[-19,47],[-32,-17],[-26,56],[-24,16],[-17,-12],[18,-46],[16,-17],[-6,-67],[-22,-41],[-23,10],[-12,-17],[-28,47],[-16,49],[41,272],[38,173],[5,198],[-1,82],[-51,114],[-224,279],[-174,330],[-151,124],[-114,-28],[-20,-24],[-8,-33],[7,-37],[-10,-15],[-72,-7],[-108,-87],[-38,4],[-61,-40],[-67,-9],[-58,-19],[-24,10],[-17,51],[14,12],[20,-32],[13,41],[-21,54],[-64,69],[-74,102],[28,19],[-23,28],[26,68],[-31,-5],[-28,-25],[-7,-53],[-43,33],[-137,82],[-121,46],[93,21],[50,-16],[-18,41],[-40,20],[-50,-8],[-32,9],[-68,-49],[-32,-15],[-124,-21],[-100,-23],[33,40],[59,23],[9,50],[-14,47],[-15,-11],[-17,-37],[-20,27],[-22,-1],[-6,-59],[-29,-39],[-13,-40],[-84,-32],[14,49],[-30,3],[-47,-72],[-165,-24],[9,16],[35,4],[49,23],[-29,80],[-29,29],[1,78],[-11,46],[-27,47],[-9,-9],[-20,-80],[-25,-139],[-49,-3],[-43,7],[-147,-12],[-56,35],[-36,6],[-64,-32],[-73,-25],[-42,9],[-53,-85],[-63,-40],[-157,71],[-39,58],[-78,19],[-46,-70],[-35,-96],[56,-52],[47,-25],[78,21],[43,46],[35,-2],[32,34],[30,-19],[2,-19],[-49,-50],[-16,-27],[31,-54],[48,-18],[18,8],[11,61],[30,39],[40,-9],[-5,-24],[24,-63],[1,-70],[-43,-25],[-33,-8],[-26,-33],[-12,-36],[-18,7],[-26,-45],[20,-56],[41,-37],[29,-45],[115,-61],[28,2],[28,-61],[43,-32],[-2,-42],[-38,-30],[-20,-57],[-35,45],[-40,-58],[-20,-12],[10,62],[-16,24],[-23,62],[-34,39],[-42,37],[-74,21],[-11,58],[-26,29],[-121,55],[7,-40],[39,-34],[0,-65],[-10,-28],[-11,-80],[-15,-32],[-33,-22],[-15,18],[-24,87],[-33,28],[-53,3],[-36,-20],[-40,-84],[-31,-14],[-109,44],[-123,66],[22,30],[38,-10],[-2,23],[-39,74],[-14,74],[-23,-34],[-79,29],[-22,35],[-46,98],[-66,3],[-29,59],[-54,-25],[-27,-27],[-23,-43],[33,-57],[-11,-17],[-76,-25],[-177,28],[-52,26],[-69,55],[-96,45],[-47,8],[-45,-9],[-132,-5],[-57,-31],[-17,21],[-8,38],[33,28],[15,45],[-9,43],[-20,2],[-45,-114],[25,-65],[-1,-23],[-90,-13],[-205,-130],[-80,-69],[4,23],[97,91],[-34,13],[-55,-22],[-20,9],[24,74],[-8,66],[-39,2],[-25,-53],[-40,25],[-17,-7],[13,-119],[24,-49],[21,-63],[-56,-77],[-52,-64],[-6,-62],[-52,-80],[-165,-153],[-33,-23],[-52,-49],[-72,-38],[4,32],[-44,-7],[-69,23],[-43,1],[0,-18],[-32,-25],[-33,37],[-22,47],[-28,-5],[50,-153],[45,-22],[-61,-63],[-49,-18],[-42,56],[-14,-140],[-37,-43],[-32,22],[-21,-18],[-61,-14],[7,-58],[46,23],[-17,-75],[-42,-74],[-35,-18],[-53,11],[-24,-23],[61,-116],[-39,-174],[-26,-64],[-36,-10],[-68,57],[-38,43],[33,-119],[89,-34],[5,-83],[-34,-105],[12,-42],[14,-103],[12,-47],[13,-143],[14,-63],[81,-228],[28,-2],[1,-73]],[[27078,85315],[-4,81],[-20,27],[-25,-17],[-12,99],[6,47],[-3,46],[-24,112],[-64,136],[-138,169],[-70,57],[-56,71],[-35,20],[-44,5],[-13,-32],[-50,22],[8,80],[-49,111],[-40,12],[-100,-8],[-135,61],[-39,37],[-14,65],[-63,56],[-83,55],[-46,-12],[-60,8],[-86,40],[-51,5],[-97,-12],[-37,9],[-34,50],[-36,25],[8,62],[-5,56],[5,44],[-16,95],[13,89],[-32,56],[-65,37],[-12,45],[11,63],[-17,42],[-53,38],[-50,88],[-62,49],[-26,80],[-39,50],[-13,44],[-86,158],[-92,123],[-14,71],[-4,97],[36,60],[20,52],[-8,83],[-31,61],[-123,36],[-99,151],[-6,115],[-39,118],[0,77],[-6,83],[29,18],[27,-7],[-3,-33],[9,-59],[31,-45],[30,-19],[27,-43],[41,-17],[-23,46],[-15,57],[-28,74],[-31,40],[-16,74],[-23,45],[31,33],[42,23],[56,6],[159,-11],[-14,33],[-57,-4],[-64,33],[-53,-40],[-24,5],[-55,44],[-24,6],[-39,-25],[-5,-108],[12,-80],[-23,-8],[-27,33],[-42,19],[-34,31],[-49,56],[-25,20],[-16,29],[-8,125],[-25,20],[-33,100],[-72,61],[-59,97],[-119,161],[-7,142],[-44,179],[18,102],[-2,73],[-21,109],[-23,59],[-96,163],[-93,109],[-14,83],[-6,84],[38,153],[27,-10],[-1,55],[38,135],[-3,130],[31,159],[-1,52],[-20,113],[-20,68],[-35,48],[16,70],[-1,67],[-62,96],[-24,126],[-4,54],[6,141],[-16,60],[-42,100],[18,86],[19,52],[46,230],[31,18],[-5,29],[21,91],[23,77],[16,28],[7,254],[14,193],[22,64],[-7,66],[9,89],[-7,91],[48,433],[-6,53],[14,70],[-14,185],[7,207],[15,29],[102,1],[66,28],[24,-10],[27,-37],[35,-8],[10,19],[-46,34],[-26,35],[-80,-2],[-16,22],[-89,-22],[-28,23],[-49,-15],[12,65],[-2,82],[15,22],[30,-62],[14,70],[10,88],[-29,34],[-49,25],[-18,82],[116,70],[-61,15],[-24,32],[-30,3],[-23,-13],[-15,134],[-47,137],[-29,176],[-36,88],[-70,83],[-18,49],[-16,124],[9,93],[-13,66],[33,-4],[88,-51],[109,-41],[33,-30],[53,-22],[294,-34],[57,25],[16,-3],[43,-48],[22,-6],[48,12],[36,33],[17,-87],[35,-92],[-52,-99],[-19,38],[-98,-168],[-35,-79],[-2,-57],[45,3],[-15,27],[7,56],[29,55],[97,99],[17,43],[56,65],[-2,42],[26,2],[9,-72],[-6,-32],[-45,-54],[7,-53],[-27,-3],[39,-58],[14,-86],[-11,-78],[-30,-8],[-26,24],[-32,-63],[-13,72],[-46,-27],[-29,-82],[31,-29],[44,11],[48,-25],[42,39],[27,76],[52,25],[29,42],[-9,109],[2,52],[-18,34],[12,45],[-4,72],[32,79],[33,54],[-48,71],[-14,-16],[-47,28],[-15,48],[4,21],[48,45],[-34,56],[-78,63],[18,23],[36,-7],[20,12],[-8,35],[1,79],[-21,76],[-39,-10],[-30,62],[-29,98],[412,0],[367,0],[184,0],[367,0],[367,0],[368,0],[183,0],[367,0],[184,0],[367,0],[368,0],[367,0],[184,0],[367,0],[183,0],[368,0],[367,0],[367,0],[368,0],[367,0],[367,0],[184,0],[367,0],[184,0],[367,0],[367,0],[368,0],[183,0],[367,0],[184,0],[367,0],[368,0],[183,0]],[[36539,96775],[3,263],[93,-14],[37,-32]],[[36669,96960],[8,-97],[16,-81]],[[154813,98432],[-75,0],[-152,113],[-77,36],[-23,49],[93,-28],[118,-102],[48,-34],[52,-14],[16,-20]],[[1599,98724],[-27,-40],[-20,18],[-7,56],[15,15],[39,-49]],[[1719,98739],[-36,-16],[-48,31],[4,36],[80,-51]],[[913,98625],[-19,-22],[-58,38],[25,32],[6,32],[-72,59],[-17,23],[33,24],[70,1],[38,-40],[29,-14],[67,-10],[-55,-33],[-24,-64],[-23,-26]],[[1228,98672],[-35,-16],[-66,8],[-84,-8],[-33,-12],[-5,31],[143,38],[54,46],[18,47],[25,14],[20,-19],[-31,-66],[-6,-63]],[[1467,98776],[3,-23],[49,3],[15,-12],[0,-46],[-31,-6],[-20,-23],[-92,-57],[-29,32],[-53,-51],[37,130],[60,35],[-4,38],[20,63],[44,-2],[20,-27],[-19,-54]],[[154435,98811],[-27,-12],[-16,48],[15,19],[42,-29],[-14,-26]],[[154932,98803],[-36,-17],[-41,9],[-22,27],[2,33],[53,35],[66,-44],[-22,-43]],[[1713,98871],[-10,-21],[-42,22],[-18,36],[13,30],[53,-11],[24,-38],[-20,-18]],[[153936,98788],[-38,-29],[-33,43],[56,50],[42,11],[18,19],[19,64],[45,-5],[-31,-76],[-1,-32],[-77,-45]],[[2777,98964],[84,-28],[105,3],[-28,-26],[-23,4],[-99,-19],[-91,15],[-70,-10],[-66,38],[21,20],[63,-19],[59,27],[45,-5]],[[3245,99059],[-32,-11],[-34,11],[16,37],[48,43],[38,-10],[29,-30],[-65,-40]],[[2292,98894],[-231,-29],[-35,20],[77,17],[87,33],[107,28],[83,34],[72,23],[21,37],[-64,18],[-12,15],[55,42],[59,30],[54,-37],[11,-25],[-15,-59],[-47,-16],[-7,-16],[25,-46],[-96,-40],[-144,-29]],[[152345,99120],[-28,-2],[-17,24],[-93,9],[10,23],[40,10],[60,36],[51,-6],[-23,-94]],[[3991,99274],[-28,-22],[-12,35],[62,68],[32,-9],[9,-29],[-27,-35],[-36,-8]],[[4440,99459],[-14,-38],[-66,15],[-45,-6],[-1,32],[70,22],[28,0],[28,-25]],[[151953,99575],[74,-23],[51,10],[65,-36],[79,-64],[-38,-18],[-81,-10],[-34,2],[-63,-43],[-68,31],[-24,62],[-97,36],[78,49],[58,4]],[[5184,99806],[-132,-75],[-101,-135],[-242,-146],[-3,21],[71,60],[49,66],[15,90],[52,57],[29,6],[58,-6],[17,46],[1,60],[46,64],[93,39],[37,1],[68,-35],[10,-16],[-26,-68],[-42,-29]],[[5939,100069],[-17,31],[27,38],[36,7],[-46,-76]],[[5765,100193],[18,-33],[32,21],[54,80],[61,-46],[-38,-41],[-73,-62],[-26,-58],[71,13],[32,-16],[-58,-32],[-33,-29],[-78,-51],[-29,-42],[-35,-16],[-47,-4],[-83,-28],[-63,-39],[-35,-6],[-61,-46],[-63,-12],[-60,45],[42,33],[78,16],[46,30],[94,40],[29,22],[19,76],[33,44],[53,-1],[24,-34],[26,59],[-48,18],[-60,7],[-33,31],[-6,41],[35,49],[25,14],[106,27],[45,-4],[6,-66]],[[6098,100311],[-84,-16],[-29,46],[7,39],[52,29],[32,-3],[81,-61],[-14,-27],[-45,-7]],[[6219,100357],[-24,2],[-16,79],[44,22],[36,-72],[-40,-31]],[[7514,100541],[-38,-15],[-39,16],[-34,29],[-4,35],[75,-23],[40,-42]],[[7624,100852],[-40,18],[-18,40],[60,36],[26,-35],[-28,-59]],[[7117,100945],[42,-115],[18,-23],[64,-25],[45,-54],[-118,46],[-75,-68],[-22,-9],[-211,-3],[-43,-12],[-27,-22],[-48,-62],[-51,-39],[-54,-16],[-101,11],[-18,29],[-16,58],[7,44],[78,59],[76,131],[45,23],[65,-10],[56,39],[119,58],[26,7],[86,1],[24,-9],[33,-39]],[[8889,100939],[-26,4],[-16,39],[29,4],[13,-47]],[[8823,101064],[-3,-56],[-55,2],[22,36],[36,18]],[[20958,101014],[44,-91],[2,-32],[-75,-7],[-22,26],[11,46],[-70,65],[16,33],[-9,44],[5,44],[23,-1],[47,-34],[28,-93]],[[8669,101048],[-72,-59],[-56,-72],[7,81],[-8,46],[30,7],[27,41],[61,20],[25,-27],[-14,-37]],[[20302,100885],[39,22],[66,-24],[-12,-95],[-26,-50],[-43,18],[-87,101],[-49,80],[-36,80],[-20,63],[-72,25],[-15,34],[11,31],[57,15],[86,-78],[43,-72],[6,-54],[52,-96]],[[8472,101193],[-6,-55],[-59,35],[-5,30],[56,4],[14,-14]],[[8319,101177],[44,-5],[41,-85],[-52,-18],[-40,13],[-41,-23],[-13,20],[-9,96],[25,50],[28,15],[25,-32],[-8,-31]],[[20111,101337],[10,-32],[-62,-47],[-16,-38],[-36,-41],[-45,-33],[7,100],[-44,58],[44,29],[78,-11],[47,25],[17,-10]],[[10524,101530],[-17,-22],[-51,9],[-6,19],[50,58],[20,5],[4,-69]],[[21113,101299],[-15,-77],[-30,-78],[-45,-42],[-32,9],[-23,34],[-45,5],[-23,68],[-21,-23],[-51,-29],[-53,-93],[-20,40],[-16,135],[38,60],[48,58],[10,171],[153,86],[14,-4],[50,-65],[53,-89],[14,-41],[-6,-125]],[[19999,101890],[81,-14],[75,1],[43,-59],[12,-55],[-9,-46],[146,-66],[69,-70],[43,-67],[29,-78],[61,-89],[-3,-36],[-93,61],[-35,-91],[75,13],[63,-58],[24,-11],[25,-58],[-21,-53],[87,5],[12,-16],[-10,-121],[10,-45],[-8,-48],[6,-67],[-17,-55],[-49,-9],[-23,15],[-33,47],[-33,73],[-89,32],[-20,30],[3,39],[-33,66],[-16,-11],[8,-40],[-9,-30],[-34,13],[-56,97],[-64,79],[-18,41],[62,24],[-53,76],[21,60],[-24,16],[-66,-12],[-24,8],[-30,57],[-80,1],[-54,66],[41,35],[59,-27],[54,33],[6,29],[28,24],[-20,68],[-35,12],[-72,-25],[-63,-40],[-31,40],[97,102],[-28,49],[-1,69],[14,16]],[[20337,101826],[-48,9],[-62,57],[8,35],[50,43],[84,-3],[27,-10],[5,-32],[-16,-71],[-48,-28]],[[20625,101730],[-9,-115],[-33,7],[-34,-17],[-35,7],[-22,28],[6,34],[-19,20],[-90,15],[-17,83],[43,31],[26,57],[14,8],[55,114],[27,-8],[48,-70],[59,-100],[-19,-94]],[[10904,101958],[-41,3],[21,43],[45,41],[46,27],[31,-19],[-28,-36],[-74,-59]],[[11108,102013],[-53,17],[4,22],[46,26],[45,-4],[-2,-41],[-40,-20]],[[4412,102096],[57,-13],[32,9],[32,-24],[-48,-36],[-20,2],[-57,44],[4,18]],[[20352,102020],[-60,-9],[-20,8],[-2,58],[28,62],[12,69],[81,-77],[38,-76],[-77,-35]],[[19816,102243],[28,-49],[41,4],[22,-36],[17,-55],[-12,-35],[-38,-12],[-12,-68],[6,-67],[-6,-67],[-24,-69],[-5,-46],[-19,-18],[-31,22],[-24,-39],[-29,0],[-24,88],[22,146],[47,30],[-28,40],[-60,46],[5,26],[-46,74],[5,80],[43,56],[56,9],[40,-23],[26,-37]],[[20085,102353],[73,0],[54,-20],[50,-66],[-2,-141],[-33,-39],[-42,43],[-48,78],[-28,-6],[30,-42],[36,-80],[5,-58],[-29,-44],[-73,6],[-44,-15],[-51,8],[-20,37],[-17,135],[3,61],[-61,88],[-67,59],[7,24],[42,17],[68,-4],[147,-41]],[[11626,102437],[-65,-21],[-60,-65],[-34,36],[9,55],[30,37],[150,-12],[-30,-30]],[[4238,102479],[-45,-33],[-40,12],[-13,34],[117,27],[-19,-40]],[[19394,102595],[63,-135],[24,-72],[63,-234],[5,-80],[-20,-55],[11,-61],[0,-93],[-10,-52],[-41,9],[-42,58],[-44,92],[-14,44],[6,53],[40,52],[-62,-7],[-60,45],[-2,69],[-53,-16],[-19,15],[-4,50],[10,26],[50,67],[-61,37],[-15,75],[-34,42],[-20,-4],[-46,-120],[-23,-26],[-65,-17],[19,63],[-23,91],[15,60],[46,11],[43,40],[40,88],[61,12],[93,-71],[28,-10],[41,-46]],[[11525,102942],[-12,-19],[-107,83],[15,21],[58,-27],[46,-58]],[[11673,102924],[20,-33],[67,39],[79,13],[36,-18],[4,-30],[-29,-33],[32,-62],[75,-21],[9,-27],[-52,-66],[-32,-19],[-94,12],[-121,25],[-20,-33],[76,-5],[26,-29],[18,-46],[-47,-17],[-39,0],[-48,-27],[-27,-31],[-95,-8],[-99,-61],[-62,-76],[2,-48],[-49,-71],[-93,-59],[-43,33],[120,117],[-37,10],[-52,32],[-35,8],[24,33],[-17,18],[-77,6],[-35,-8],[50,-47],[11,-41],[-33,-65],[-34,6],[-69,81],[-30,118],[-59,90],[14,77],[59,79],[64,22],[46,33],[71,9],[37,-14],[10,-52],[26,-18],[61,-120],[21,6],[-18,53],[-9,106],[8,36],[46,11],[-80,66],[-11,43],[58,43],[46,-16],[60,-88],[30,11],[42,40],[45,-10],[22,21],[14,63],[-25,32],[29,10],[93,-25],[40,-27],[-20,-51]],[[19067,103217],[61,-68],[-12,-62],[-33,-13],[34,-33],[83,77],[32,15],[79,-19],[69,-32],[32,-68],[-18,-94],[-57,-17],[-55,16],[-47,-33],[39,-25],[116,-6],[36,-53],[10,-41],[-25,-75],[-66,20],[-59,44],[-119,62],[-48,-8],[-4,-119],[-32,-42],[-94,18],[-37,62],[-35,97],[-129,115],[-36,23],[-46,69],[24,87],[61,32],[21,53],[33,-43],[44,-2],[21,31],[63,5],[28,29],[41,15],[25,-17]],[[19677,103206],[-3,-17],[-59,2],[-59,25],[-23,48],[55,14],[52,-31],[37,-41]],[[19519,103159],[109,-16],[80,4],[74,-104],[71,-143],[35,-112],[-44,30],[-46,104],[-31,41],[-32,71],[-31,47],[-24,-10],[17,-105],[142,-210],[7,-63],[-23,-28],[28,-58],[-7,-22],[-75,-25],[-69,-107],[-76,-63],[-34,-10],[-33,35],[-12,72],[19,25],[37,131],[1,43],[-46,60],[-28,49],[-16,68],[-25,180],[-28,106],[-38,81],[-11,46],[41,-6],[68,-111]],[[11880,103298],[43,37],[51,-35],[31,7],[21,-43],[44,-1],[-3,-46],[-55,-58],[-33,16],[-35,47],[-29,-30],[11,-52],[-61,-3],[-37,-20],[-26,43],[-37,-69],[-42,-33],[-87,-13],[-139,46],[-33,17],[115,105],[60,41],[88,-13],[1,46],[-31,50],[72,24],[56,-16],[55,-47]],[[11850,103385],[-65,39],[75,53],[46,-16],[-16,-38],[-40,-38]],[[8218,103449],[-65,-6],[-26,69],[20,2],[42,46],[117,41],[-88,-152]],[[15261,104313],[11,42],[41,50],[39,32],[46,-10],[-67,-43],[-70,-71]],[[13773,104485],[-23,-21],[-85,12],[18,42],[65,27],[71,-41],[-46,-19]],[[13896,104309],[-48,-10],[-11,21],[25,51],[90,94],[60,42],[56,61],[56,88],[37,36],[43,-21],[27,-31],[-12,-24],[-143,-124],[-25,-59],[-31,-21],[-22,-49],[-102,-54]],[[5971,104706],[40,-34],[87,8],[48,-22],[17,-63],[-10,-35],[1,-72],[35,-29],[16,-80],[-76,-14],[-76,-2],[-66,-28],[-38,-53],[-67,42],[-123,21],[-154,83],[-66,17],[-67,61],[-61,77],[80,19],[178,-12],[23,56],[80,29],[53,31],[48,-13],[77,23],[21,-10]],[[15023,104674],[-14,-17],[-57,17],[67,45],[4,-45]],[[14474,104752],[9,-19],[83,5],[22,-25],[-32,-17],[-93,-30],[-86,-36],[-36,94],[61,50],[72,-22]],[[13929,104753],[-13,-36],[13,-32],[-31,-91],[-24,-31],[-36,36],[-9,49],[16,15],[26,97],[58,-7]],[[12050,104691],[27,99],[31,-22],[-58,-77]],[[3126,104758],[93,-46],[60,5],[47,-38],[-52,-9],[-102,-2],[-139,94],[-50,21],[11,52],[54,27],[27,-71],[51,-33]],[[13812,105015],[-55,-6],[-28,18],[9,50],[59,-11],[15,-51]],[[3677,106974],[6,-17],[108,-5],[70,-16],[69,6],[87,52],[105,21],[56,-13],[76,-44],[45,-87],[104,-31],[66,-12],[30,-40],[54,-17],[186,-1],[121,-26],[-20,-67],[-39,-30],[-110,10],[-110,-10],[-84,-78],[-5,-43],[-46,-28],[-18,23],[-25,72],[-37,33],[-54,23],[-87,16],[-36,61],[-109,66],[-138,46],[-92,1],[-147,-75],[-50,-5],[-49,14],[-68,51],[-13,36],[7,72],[25,86],[43,16],[79,-60]],[[16796,109938],[0,-407],[0,-407],[0,-203]],[[16796,108311],[0,-407],[0,-407],[0,-204]],[[16796,106683],[0,-204],[0,-406],[0,-407]],[[16796,105055],[0,-407],[205,-57],[32,57]],[[17557,104676],[67,3],[0,-45],[-45,-136],[61,-63],[145,-64]],[[18264,103901],[47,-164],[-16,-53],[36,-8],[69,59],[200,113],[101,1],[48,89],[1,125]],[[18750,104063],[51,-2],[30,17],[13,36],[-32,50],[167,40],[100,47]],[[19079,104251],[97,44],[47,-34]],[[19223,104261],[46,-34],[90,-81],[6,-19],[-15,-77],[55,-106]],[[19405,103944],[61,-27],[54,-35]],[[19520,103882],[24,-31],[78,-48],[21,-54]],[[19718,103639],[171,-101],[118,-141]],[[20124,103202],[67,-101],[51,-90]],[[20242,103011],[36,-50],[158,-262],[107,-156],[30,-54],[-45,-83],[132,-37],[-14,-51]],[[20646,102318],[-18,-67],[103,-45]],[[20731,102206],[-9,-35],[23,-40],[4,-66],[107,6],[212,-135],[147,-44],[40,-54]],[[21329,101815],[28,-75],[85,-28],[50,18]],[[21492,101730],[33,-66],[4,-44]],[[21529,101620],[-5,-44],[-38,-75],[-15,-87],[12,-91],[26,-78],[10,-80],[-58,-112],[-21,-53],[2,-24]],[[21287,100798],[-18,14],[-100,12],[-37,99],[-19,78],[-30,67],[28,60],[100,37],[-45,40],[-10,73],[0,106],[-17,86],[-25,53],[-65,104],[-6,26],[47,63],[-110,-53],[-150,-56],[-64,-39],[-18,-28],[12,-37],[-31,-94],[-32,-65],[-17,-13],[-58,24],[-16,20],[-29,85],[7,23],[50,60],[37,63],[69,160],[46,1],[80,31],[-126,16],[-35,30],[-41,75],[-69,28],[-53,69],[-23,74],[-51,17],[-5,81],[-65,21],[-27,18],[-43,51],[-16,45],[11,56],[-43,5],[-238,86],[12,115],[-44,151],[-47,62],[20,36],[21,1],[91,-45],[86,-53],[11,8],[-137,112],[-35,33],[-9,62],[11,11],[129,-10],[-123,41],[-26,0],[-43,-58],[-37,10],[-65,96],[-59,55],[-13,97],[7,54],[48,125],[-44,-37],[-41,-95],[-33,-32],[-119,93],[-77,13],[-48,48],[-72,134],[-10,67],[-48,38],[-24,32],[-36,162],[-49,114],[-12,59],[-54,-11],[36,-70],[-44,-4],[50,-80],[22,-124],[55,-166],[24,-111],[44,-143],[-18,-42],[-22,-9],[-69,16],[-64,84],[-52,25],[-130,-13],[-10,49],[15,79],[-12,31],[-67,116],[1,23],[93,53],[-96,-3],[-22,74],[-25,-37],[15,-37],[-10,-73],[-34,-16],[-97,56],[-49,66],[-114,30],[-69,35],[16,-47],[-46,-65],[78,6],[60,-22],[74,-45],[15,-32],[53,-27],[-32,-58],[71,5],[41,-16],[52,-67],[18,-37],[2,-48],[-31,-23],[-144,-16],[-51,-57],[-51,14],[-71,46],[-89,44],[-204,129],[-8,32],[-80,56],[-49,55],[-42,73],[-29,35],[-92,74],[-48,28],[-89,29],[19,26],[-81,15],[-78,34],[-196,97],[-102,60],[-59,29],[-37,29],[81,45],[42,61],[4,20],[-33,85],[12,59],[46,16],[50,-55],[5,-97],[26,4],[16,53],[18,14],[-96,112],[-50,11],[-40,-30],[-103,-100],[-29,-17],[-129,-55],[-87,-11],[-99,9],[-83,18],[-211,86],[-33,21],[49,53],[-15,72],[-86,-61],[-61,-18],[-187,45],[-191,36],[-171,8],[-241,-29],[-129,-30],[-148,3],[-5,20],[31,27],[-42,46],[-63,28],[-85,10],[-49,14],[-42,33],[-48,16],[-21,28],[33,138],[43,90],[-112,-88],[-48,-58],[-66,-51],[-57,6],[-78,36],[-67,19],[-78,7],[38,33],[59,88],[-205,6],[-14,52],[-30,10],[-108,-34],[-29,20],[77,57],[-61,19],[-45,41],[1,66],[15,43],[136,41],[-43,16],[-85,-5],[-126,-86],[-46,-19],[-54,17],[-64,-17],[-28,-36],[-117,37],[-28,-48],[-65,-17],[-36,3],[-49,55],[15,35],[94,139],[-40,-23],[-88,-72],[-95,0],[-51,-32],[77,-5],[-36,-62],[-22,-60],[-21,-15],[-70,-4],[-1,-17],[68,-48],[57,-23],[-7,-63],[-24,-28],[18,-26],[77,30],[29,-6],[38,-57],[-36,-39],[-58,-25],[-15,-49],[8,-108],[-58,-32],[-42,-92],[-33,0],[-59,-23],[-86,-4],[-69,20],[-51,38],[-62,-25],[-64,71],[-8,-69],[-50,-74],[-35,-77],[-23,77],[-48,-27],[5,-73],[-78,22],[-22,-4],[21,-60],[-100,-86],[-60,10],[-63,-32],[-42,20],[-18,-59],[-23,-37],[-76,-59],[-46,-68],[-96,40],[6,-45],[-85,6],[-47,-10],[-62,-30],[-51,0],[-97,68],[14,40],[35,44],[68,39],[77,14],[49,24],[59,48],[31,36],[62,93],[-18,13],[-136,-89],[-47,-7],[-108,33],[-23,15],[-15,43],[51,143],[53,72],[69,77],[24,50],[35,134],[-2,61],[-16,74],[14,58],[159,68],[75,51],[146,76],[39,-1],[63,-47],[39,-15],[50,1],[61,19],[96,-7],[198,-50],[13,39],[-136,20],[-58,20],[-161,89],[-37,35],[54,29],[42,66],[40,39],[61,37],[115,56],[-45,2],[-113,-21],[-55,-40],[-53,-83],[-70,-18],[-156,-5],[-27,28],[-34,0],[-143,-71],[-52,-37],[-37,-42],[-56,-30],[-77,-20],[-58,-24],[-60,-48],[-22,-54],[15,-54],[-50,-15],[-56,-36],[-118,-107],[-15,-52],[19,-31],[-46,-50],[-75,-50],[-48,-19],[-103,2],[98,-80],[16,-59],[-57,-84],[-42,-16],[-107,-16],[-45,-22],[73,-23],[-3,-56],[-81,-41],[-55,-7],[2,40],[-24,15],[-102,-64],[18,-23],[-88,-98],[-118,-77],[9,-19],[-31,-67],[-17,-59],[21,-24],[204,-57],[103,-55],[34,-36],[2,-35],[-45,-72],[-77,-69],[-106,-47],[-68,-66],[-18,-36],[-10,-52],[-87,-43],[34,-11],[-16,-90],[-70,-9],[-70,-20],[-6,-43],[-182,-28],[-39,-72],[-92,-73],[-94,-34],[-26,-18],[-16,-42],[-44,-32],[-21,-41],[-95,-16],[-16,-13],[-8,-55],[-44,11],[-37,-10],[-83,-62],[-18,-22],[34,-61],[-1,-25],[-32,-69],[-50,-28],[-16,-39],[-65,-3],[-19,-25],[-43,-19],[-93,-80],[-29,-10],[-79,-2],[-43,-35],[-17,-60],[-21,-27],[-83,12],[-42,-4],[-69,-37],[22,-35],[-91,-45],[-97,-29],[-53,-70],[65,-24],[30,-33],[18,-40],[-107,-86],[-9,65],[-36,-8],[-33,-78],[-37,-39],[-275,-100],[-41,-23],[-19,-80],[-18,-29],[-26,-6],[2,104],[-33,35],[-57,-31],[-38,-4],[-36,-22],[-85,-71],[-56,-18],[-38,-54],[-40,-15],[-55,3],[-38,-39],[-54,21],[-88,-75],[-34,-12],[-87,-12],[-43,18],[2,47],[14,33],[31,30],[50,16],[-87,35],[-61,-25],[-36,-44],[-25,-97],[-103,-134],[-40,-41],[-40,3],[-72,-65],[-54,19],[14,47],[-50,68],[-44,-17],[13,-102],[-26,-52],[-63,-33],[-19,3],[-56,64],[-54,13],[9,-63],[-14,-40],[-68,-55],[-21,27],[18,51],[-4,76],[12,44],[70,50],[30,8],[36,-15],[39,24],[37,55],[55,37],[62,69],[71,101],[83,87],[95,73],[103,58],[207,79],[-3,-30],[34,-19],[76,13],[28,-20],[-45,-20],[1,-17],[66,-81],[46,0],[-6,58],[23,11],[75,-5],[41,-32],[38,-12],[33,22],[-16,23],[-74,49],[-25,50],[10,36],[59,127],[33,51],[66,57],[44,29],[112,86],[217,89],[53,56],[73,63],[31,16],[10,-46],[48,-15],[46,0],[-4,104],[11,66],[32,52],[114,128],[81,48],[38,30],[65,71],[67,25],[40,-35],[47,-10],[-31,82],[-31,26],[-2,74],[27,105],[5,108],[24,62],[48,23],[107,15],[-62,28],[-64,13],[-16,68],[0,49],[27,57],[100,96],[110,67],[-29,25],[100,252],[-66,-102],[-77,-77],[-226,-90],[-153,-75],[-73,-18],[-48,19],[-38,72],[-48,73],[11,61],[22,43],[48,7],[54,-21],[-14,40],[-87,37],[-39,-12],[-31,-59],[-40,-41],[-35,14],[-34,-108],[-10,-53],[39,-138],[-7,-55],[-70,-26],[-57,46],[-119,175],[-41,50],[-93,82],[-31,-12],[-39,-40],[-38,-11],[-100,60],[-91,101],[-67,-31],[-59,-36],[-69,-58],[-46,0],[-126,-49],[-48,-40],[-14,-52],[-170,-40],[-168,22],[124,51],[57,54],[-24,72],[-4,83],[63,64],[-65,0],[-42,-23],[-38,49],[-19,96],[45,57],[38,103],[1,52],[-34,87],[-99,185],[-45,139],[-77,73],[57,120],[65,110],[82,49],[-82,1],[-55,-63],[-87,-140],[-57,-68],[-37,-19],[60,-27],[20,-73],[-30,-95],[-70,3],[-63,-49],[-147,-54],[-198,-31],[-98,4],[-101,62],[4,68],[-146,108],[-82,108],[-59,2],[-113,74],[15,61],[-37,18],[-48,-2],[-56,12],[145,139],[51,92],[40,13],[53,-14],[73,-36],[62,-16],[45,-50],[-24,-54],[5,-28],[76,59],[57,52],[45,-15],[71,-108],[87,52],[46,65],[-39,28],[-48,17],[-122,22],[30,18],[78,-2],[30,18],[-70,47],[-106,-74],[-192,4],[-135,43],[-134,-8],[-47,32],[129,84],[-28,20],[-59,-15],[-26,25],[-109,57],[4,-73],[-79,-3],[-27,44],[-27,93],[-75,25],[-18,48],[47,61],[-21,31],[-50,10],[-57,-31],[-25,28],[-7,73],[29,-4],[115,24],[11,11],[-91,37],[-25,38],[37,21],[68,2],[95,23],[-40,40],[-16,59],[16,62],[112,141],[109,119],[34,27],[50,15],[94,-37],[-28,69],[23,30],[-23,124],[35,118],[37,34],[131,24],[-65,51],[50,61],[130,32],[71,-10],[89,-38],[51,-47],[49,-13],[62,-42],[128,24],[49,24],[61,64],[80,41],[112,130],[34,54],[73,3],[24,-44],[36,-12],[201,10],[104,20],[71,43],[118,119],[21,62],[-54,148],[-36,153],[-101,102],[-71,30],[-45,-5],[33,65],[95,-7],[62,13],[50,31],[42,71],[-22,79],[-76,76],[-53,14],[-121,-90],[-72,-2],[-54,17],[-47,-51],[-131,-45],[-70,-46],[-129,-113],[-33,-51],[-41,-2],[-30,99],[-141,94],[-43,-32],[56,-50],[52,-10],[-39,-66],[-148,87],[-97,27],[-255,-3],[-167,-53],[-31,15],[-58,-48],[-103,3],[-133,34],[-300,48],[-78,30],[-68,71],[2,49],[30,20],[-3,70],[-59,18],[-118,100],[27,27],[100,13],[34,65],[74,18],[36,22],[-178,33],[-24,-10],[-318,59],[-251,101],[-44,63],[34,42],[41,-26],[144,54],[75,70],[143,12],[77,58],[64,64],[150,65],[79,18],[89,-35],[123,-6],[70,38],[-121,55],[28,51],[141,63],[108,21],[58,-1],[168,81],[92,24],[173,15],[142,4],[-38,-23],[18,-36],[-55,-107],[4,-63],[-60,-50],[145,-92],[226,-6],[123,17],[71,-27],[58,-7],[160,14],[121,-19],[51,7],[111,137],[44,22],[110,-43],[39,14],[17,38],[-22,28],[-182,50],[-123,-25],[-38,29],[13,56],[-131,140],[-54,28],[-65,1],[-60,111],[106,37],[46,-20],[53,-82],[49,-12],[-14,-81],[60,-75],[138,-70],[109,26],[78,-1],[46,-15],[114,-62],[58,-8],[180,33],[2,61],[-15,45],[-43,27],[-121,-5],[-95,46],[-81,-13],[-149,-70],[-75,28],[-47,37],[-76,39],[-9,72],[63,82],[47,40],[-42,29],[-106,20],[-183,-21],[-8,59],[-75,-60],[-76,13],[-104,-7],[-228,53],[-82,64],[-34,53],[-61,144],[-79,90],[-543,305],[-247,77],[-119,85],[-146,29],[2,29],[82,45],[42,103],[43,156],[-11,61],[301,-12],[200,10],[67,14],[253,24],[65,17],[122,52],[143,93],[123,122],[38,30],[29,155],[61,103],[260,234],[120,92],[82,73],[51,-52],[53,-16],[277,49],[150,81],[6,18],[222,101],[67,-16],[-62,-67],[43,-17],[-38,-80],[103,-6],[18,120],[56,-14],[128,33],[-155,4],[-93,73],[-51,0],[172,106],[158,64],[57,-33],[-68,-35],[38,-23],[76,17],[34,20],[162,-2],[59,30],[209,3],[169,66],[177,106],[95,95],[82,62],[93,16],[42,-35],[284,-72],[71,-3],[29,-43],[-24,-42],[-73,-46],[-148,-47],[46,-18],[29,-42],[44,-5],[126,42],[114,84],[63,58],[96,-11],[117,-67],[-48,-64],[80,-33],[89,-6],[85,-26],[119,53],[94,11],[87,-2],[114,29],[193,-39],[49,10],[78,-7],[82,-23],[29,-26],[-88,-53],[-14,-56],[30,-23],[56,-4],[42,-40],[174,2],[-76,-75],[310,-23],[42,22],[200,41],[112,-46],[108,0],[122,46],[140,2],[58,-15],[60,7],[183,-53],[68,-6],[90,-69],[46,-2],[53,29],[46,0],[44,-28],[73,-9],[34,-44],[37,-16],[277,-32],[137,15],[199,-4],[97,-21],[101,2],[165,-76],[87,-11],[17,-18],[249,-18],[87,39],[152,11],[137,33],[168,-9],[60,19],[219,-57],[123,-66],[54,-49],[258,-69],[74,-39],[51,-42],[51,8],[124,-10],[0,-407],[0,-203]],[[108439,90479],[-11,-30],[-20,8],[-11,35],[47,19],[-5,-32]],[[108192,90439],[-21,-6],[-62,8],[13,57],[-29,43],[0,66],[21,11],[24,-48],[22,-14],[42,-8],[-21,-48],[11,-61]],[[108081,92080],[38,25],[76,-55],[7,-30],[-85,-59],[-81,-41],[-17,-67],[-74,-33],[-30,-31],[-46,-74],[-118,-107],[8,-40],[39,-12],[78,-58],[75,33],[19,-8],[19,-34],[21,-96],[34,-26],[71,-27],[36,-23],[49,-9],[32,8],[48,-11],[5,143],[34,-24],[20,1],[26,41]],[[108365,91466],[5,47],[-7,48],[27,26],[14,-18],[1,-43],[40,-28],[28,-71],[9,-81],[75,-21],[27,15],[21,-9],[10,-103],[76,13]],[[108691,91241],[61,-43],[50,-69],[16,-9],[74,-6],[16,-13],[53,12],[61,-22]],[[109022,91091],[-8,-30],[-146,-94],[-11,-29],[-30,-37],[-48,-22],[-72,38],[-13,-41],[15,-40],[-7,-24]],[[108702,90812],[-14,-18],[-44,15],[-9,21],[-44,-11],[-51,-68],[-25,-57],[-47,-17],[-66,-57]],[[108402,90620],[-27,45],[-47,-5],[-62,46],[-31,8],[-91,-11],[-58,-23]],[[106708,88545],[-26,38],[-40,-3],[-26,9],[-12,22],[-33,-6],[-52,-34],[-54,18],[-55,69],[-103,26],[-132,-16]],[[51177,71825],[-13,-11],[-31,47],[4,54],[37,48],[18,2],[7,-45],[-5,-64],[-17,-31]],[[51253,68837],[-27,-14],[-3,70],[8,19],[58,67],[6,-27],[22,-25],[-5,-32],[-24,-35],[-35,-23]],[[51329,69026],[-51,-23],[14,51],[54,28],[-17,-56]],[[49438,70257],[-23,-16],[-43,16],[-21,22],[13,25],[35,0],[33,-30],[6,-17]],[[50025,70413],[14,-91],[-4,-17],[-39,-61],[-59,-2],[-20,12],[-26,40],[-25,-12],[-62,13],[-17,14],[23,49],[58,24],[13,-30],[31,-26],[36,-2],[9,46],[49,69],[19,-26]],[[46808,70922],[-13,-32],[-28,-42],[-32,-25],[-164,-64],[-38,-40],[5,-108],[48,-156],[19,-39],[64,-84],[-38,-13],[17,-111],[40,-76],[1,-48],[-30,-149],[-55,-89],[-40,-104],[-30,-41],[-68,-203],[52,-122],[7,-61],[44,-88],[29,-28],[20,-36],[-9,-59],[18,-81],[23,-43],[29,-17],[35,0],[103,54],[24,24],[16,44],[51,87],[4,113],[11,136],[-13,89],[-54,126],[-24,90],[-53,84],[-33,143],[-13,44],[-11,62],[-11,109],[36,40],[-4,89],[89,25],[191,145],[118,37],[135,78],[31,38],[27,64],[21,8],[70,-60],[35,20],[14,47],[-19,91],[-41,0],[-121,-33],[-12,39],[0,35],[-28,108],[36,148],[35,27],[50,28],[39,-44],[23,-42],[13,-41],[9,-110],[20,-112],[22,-78],[35,-59],[45,14],[127,13],[76,-40],[98,-20],[91,-85],[94,-104],[24,-75],[8,-72],[22,-48],[-22,-50],[12,-83],[27,-84],[40,-53],[116,-14],[125,36],[193,32],[62,28],[319,15],[61,-40],[7,-71],[103,-150],[84,-20],[72,-48],[74,-26],[81,-36],[46,4],[34,13],[40,2],[285,251],[153,-7],[44,39],[-57,38],[-127,14],[-38,-25],[-22,64],[41,-2],[142,22],[162,-14],[132,46],[67,7],[38,-9],[105,30],[198,-35],[157,29],[-19,-42],[-51,-25],[-83,-8],[-63,-60],[-135,11],[-95,-22],[31,-17],[0,-62],[26,-13],[32,-46],[20,-94],[-15,-68],[19,-21],[22,32],[0,70],[37,-28],[49,-180],[35,-94],[17,7],[25,62],[14,-28],[18,78],[12,21],[45,-21],[46,-59],[31,-61],[2,-34],[32,-39],[11,18],[-12,36],[-3,41],[61,2],[16,55],[33,-33],[87,-149],[32,-25],[96,-29],[60,-72],[35,-64],[-21,-68],[-56,-33],[-23,-43],[-13,-41],[0,-42],[-17,-48],[-12,-85],[-23,-82],[-31,-88],[-160,-2],[76,-61],[59,-69],[48,54],[68,4],[73,59],[28,10],[138,-31],[33,43],[27,13],[75,-8],[64,-47],[81,-170],[-8,-39],[-50,-40],[-11,-21],[-18,-75],[-63,-42],[-43,-52],[-44,-64],[-57,-10],[-19,-28],[-23,-86],[-17,-36],[-30,-43],[0,-26],[41,-94],[8,-29],[-13,-45],[1,-32],[22,-38],[26,-9],[25,16],[31,-1],[29,-22],[1,-29],[-13,-62],[-18,-40],[-82,-61],[-57,-62],[-45,14],[-22,-1],[-28,-38],[-72,-15],[-17,-11],[-25,-74],[22,-99],[0,-43],[10,-119],[-13,-28],[-29,-31],[-33,-56],[-38,-77],[6,-22],[182,-327],[91,-164]],[[49705,75477],[-34,-3],[9,30],[35,3],[-10,-30]],[[49790,75520],[-13,33],[43,3],[-30,-36]],[[49630,75053],[37,-31],[-2,-30],[-88,-4],[2,50],[51,15]],[[49676,75443],[-28,-19],[-12,31],[40,-12]],[[49596,75426],[-32,-6],[-45,32],[36,12],[22,-7],[19,-31]],[[123444,68709],[-22,12],[39,46],[-2,-45],[-15,-13]],[[122344,69898],[8,-35],[-3,-80],[-17,-80],[5,-35],[-13,-22],[-28,149],[-36,65],[13,23],[37,40],[18,1],[16,-26]],[[123681,69903],[-36,-43],[-3,36],[31,23],[8,-16]],[[123622,77109],[-18,-3],[-34,57],[18,29],[39,-21],[9,-25],[-14,-37]],[[123551,77157],[-5,-14],[-37,47],[11,45],[26,-49],[5,-29]],[[123833,77234],[-18,18],[17,42],[14,-22],[-13,-38]],[[123868,77436],[-62,-87],[-24,1],[21,99],[11,23],[37,-34],[17,-2]],[[124027,77639],[-70,-8],[-44,-63],[-30,-27],[-48,-22],[-50,-36],[-14,-63],[-10,-97],[-82,-74],[-22,8],[-16,27],[-40,-19],[-20,2],[-21,-17],[-29,5],[-26,24],[-33,6],[-3,-28],[26,-107],[7,-50],[-87,-145],[10,-93],[-24,-72],[-53,-58],[-99,-149],[-44,-3],[-34,-34],[-73,-245],[-1,-83],[-12,-62],[3,-59],[-32,-116],[-34,-49],[-7,-63],[80,-223],[14,-50],[21,-50],[76,-130],[34,-39],[41,-27],[74,-117],[38,-74],[-17,-51],[8,-107],[16,-40],[95,-205],[82,-102],[83,-115],[26,-110],[75,-73],[84,-105],[-4,-24],[79,-84],[34,-59],[14,-56],[20,-9],[24,14],[40,1],[25,-61],[35,-55],[17,-51],[25,-1],[8,-70],[47,-81],[23,-77],[56,-124],[42,-70],[29,-40],[34,-34],[33,-137],[18,-125],[36,-138],[26,-60],[1,-114],[22,-117],[23,-80],[7,-81],[16,-70],[26,-137],[-7,-64],[-18,63],[2,-184],[16,-97],[-7,-120],[16,-42],[29,-134],[20,-49],[-1,-165],[11,-83],[-28,50],[-20,56],[-26,-30],[-24,-44],[37,-177],[-42,17],[4,-239],[17,-55],[-4,-59],[-20,44],[-14,-42],[-4,-52],[15,-44],[2,-34],[-28,-86],[-40,-6],[-9,-87],[-14,-92],[-71,-14],[-52,-81],[-64,-30],[-58,-80],[-63,-75],[-76,-25],[-40,-123],[-68,-15],[-120,-100],[-41,-49],[-37,-19],[-53,-42],[-29,51],[-46,19],[-22,40],[-7,52],[-16,-8],[-7,-124],[-8,-28],[-20,-12],[-38,35],[-37,71],[-52,-49],[40,-2],[18,-13],[16,-47],[-9,-56],[-49,-5],[-65,11],[47,-51],[55,-26],[24,-30],[0,-24],[-31,-39],[-23,-48],[-1,-63],[-27,-29],[-16,6],[-47,50],[-134,196],[20,-55],[139,-223],[25,-74],[3,-52],[-38,-57],[-45,-2],[-75,83],[-120,199],[-41,28],[121,-228],[41,-120],[-17,-73],[-287,-211],[-43,-91],[-34,-113],[-57,-62],[-33,-57],[-95,-32],[-53,10],[54,103],[-33,39],[-2,267],[13,293],[25,146],[37,37],[45,22],[-3,66],[-25,50],[-27,23],[-39,10],[-31,61],[-24,-2],[-36,-21],[-22,27],[-8,41],[-72,100]],[[123832,72902],[-2,78],[4,38],[-19,75],[7,29],[26,25],[33,93],[9,45],[-38,95],[-98,118],[-25,40],[-39,90],[-10,38],[10,25],[74,58],[21,53],[-6,32],[-43,28],[-34,37],[-63,99],[-60,51],[-17,31],[-18,83],[-8,7],[-40,-51],[-18,4],[-17,24],[-9,31],[-39,79],[-9,157],[-10,54],[-33,34],[-40,98],[-27,51],[-113,138],[-45,79],[-53,81],[-38,65],[-28,67],[-12,58],[-4,46],[-57,119],[-53,24],[-26,32],[-48,72],[-33,78],[1,32],[11,53],[14,31],[-13,43],[-53,34],[-119,53],[-44,39],[-73,86],[-145,148],[-82,50],[-9,50],[56,56],[16,43],[-5,57],[-17,58],[8,19],[98,8],[124,-52],[18,5],[67,95],[25,57],[6,47],[13,30],[35,49],[1,45],[-18,60],[-33,34],[-49,-8],[-9,13],[-9,72],[-16,32],[-53,28],[-45,7],[7,43],[54,48],[18,32],[4,32],[-101,121],[-66,65],[-41,22],[-21,-3],[-73,-56],[-40,-36],[-33,-64],[-34,-14],[-74,58],[-108,42],[-46,35],[-95,217],[-14,44],[15,121],[10,46],[17,45],[0,77],[-14,22],[-31,16],[-20,44],[-12,-62],[-32,-33],[-24,34],[-13,98],[-12,37],[-41,37],[-19,48],[-61,105],[-51,74],[-24,66]],[[150697,48608],[-15,-38],[-23,0],[-30,27],[6,34],[43,4],[19,-27]],[[150523,49058],[-23,-76],[-39,18],[-37,55],[-19,48],[13,91],[19,16],[19,-5],[10,-90],[57,-57]],[[150455,49476],[-19,-34],[-18,4],[-112,78],[4,32],[-4,82],[12,44],[31,19],[24,-10],[15,-65],[34,-27],[-24,-23],[41,-49],[16,-51]],[[150073,50449],[43,-99],[17,-8],[-26,-71],[-54,-6],[-64,18],[23,25],[-12,27],[-19,6],[-32,-9],[14,46],[35,64],[75,7]],[[150073,50981],[6,-39],[-59,33],[-61,-12],[-14,27],[-11,53],[5,37],[28,30],[28,-54],[13,-9],[30,-52],[35,-14]],[[150008,51289],[-49,-7],[-69,21],[-28,30],[-12,31],[24,22],[34,11],[43,69],[15,-26],[16,-78],[27,-47],[-1,-26]],[[149628,51456],[30,-15],[7,-34],[62,-67],[16,2],[15,-37],[26,-19],[7,-38],[19,-38],[-33,-47],[-64,13],[-36,-53],[-33,14],[-2,37],[-19,70],[-9,108],[-14,63],[-14,28],[-42,-28],[-29,52],[14,106],[7,30],[23,6],[36,-28],[33,-125]],[[149544,51715],[-8,-18],[-45,45],[10,44],[50,-16],[-7,-55]],[[149972,51544],[-14,31],[-24,170],[16,153],[10,-33],[36,-267],[-5,-44],[-19,-10]],[[149843,51916],[-29,-32],[-54,3],[-20,18],[66,97],[76,20],[-39,-106]],[[149962,51990],[-7,-43],[-18,50],[-11,211],[13,21],[22,-147],[1,-92]],[[149341,52340],[27,-230],[33,0],[16,12],[19,54],[9,85],[16,12],[22,-9],[-10,-27],[7,-68],[27,-44],[29,-244],[-46,-66],[-67,2],[-48,-40],[-29,3],[0,45],[-26,35],[-29,77],[7,135],[-52,252],[0,63],[18,82],[17,3],[24,-68],[36,-64]],[[149702,52734],[-18,-35],[-60,21],[3,58],[12,20],[29,19],[40,-29],[-6,-54]],[[149661,52980],[-17,-1],[-25,84],[6,28],[32,27],[29,-47],[-2,-67],[-23,-24]],[[841,52694],[-48,4],[-15,40],[22,9],[16,-29],[25,-24]],[[1654,53380],[-15,22],[10,41],[19,-18],[-14,-45]],[[3681,52883],[-118,0],[-59,31],[-21,0],[-50,66],[-7,35],[26,23],[55,12],[109,-50],[17,-45],[25,-5],[20,-19],[3,-48]],[[3302,53288],[48,-66],[19,-87],[-20,-83],[-46,20],[-66,-17],[-22,6],[-53,102],[-37,46],[-15,43],[47,-5],[68,29],[77,12]],[[100680,71462],[26,-8],[41,24],[116,3],[139,-78],[-26,-20],[-16,-28],[-61,-25],[-61,-60],[-177,-29],[-52,16],[-43,58],[-79,75],[31,48],[19,43],[45,36],[44,-6],[54,-49]],[[95953,72391],[-14,-11],[-27,37],[30,41],[15,-38],[-4,-29]],[[95868,73319],[-18,11],[9,61],[14,17],[10,-44],[-15,-45]],[[100388,74255],[-217,-124],[-57,-55],[-52,-68],[-39,-85],[-28,-149],[21,-137],[-2,-73],[-56,-49],[-52,-35],[-58,-53],[-36,-13],[-29,-43],[-33,-29],[-121,-77],[-133,-60],[-210,-71],[-81,-77],[-74,-53],[-112,-16],[-154,-74],[-86,-59],[-106,-96],[-24,-30],[-19,-71],[-32,-61],[-64,-100],[-48,-51],[-33,-3],[-62,-28],[-74,-6],[-124,36],[-31,-25],[-27,-39],[-95,-68],[-97,-138],[-72,-36],[-114,-43],[-81,-57],[-54,-23],[-69,-12],[-129,6],[-122,-21],[-113,-38],[-53,-74],[-61,-116],[-99,-47],[-23,-42],[-31,-85],[-64,-22],[-58,-15],[-59,38],[-112,-104],[-42,-17],[-64,-4],[-46,-21],[-32,6],[-41,40],[-87,49],[-63,-32],[-5,98],[-105,298],[22,259],[0,37],[-21,116],[-62,106],[1,134],[-20,96],[-17,98],[6,50],[-46,215],[10,53],[-17,46],[-18,89],[-85,69],[17,66],[39,-43],[5,74],[-36,197],[53,263],[-17,236]],[[93829,29978],[-18,-13],[-87,11],[-10,27],[41,58],[45,-9],[42,-45],[-13,-29]],[[91273,44582],[-22,-9],[-99,80],[-97,84],[-35,-6],[-55,-62],[-51,-95],[-24,-82],[-99,-220]],[[90791,44272],[-6,-29],[-1,-110],[3,-105],[6,-14],[33,-5],[23,-86],[54,-137],[91,-88],[84,-40],[118,-10],[93,3],[-6,92],[10,148],[11,100],[13,5],[38,-20],[38,4],[66,-20],[229,9],[-16,-161],[-61,-251],[-21,-116],[-53,-412],[-69,-208],[-38,-86],[-112,-152],[-58,-50],[-49,-18],[-191,-307],[-71,-148],[-63,-216],[-63,-118],[-92,-253],[-82,-195],[-79,-178],[-137,-245],[-61,-71],[-41,-33],[-108,-142],[-153,-228],[-117,-203],[-176,-230],[-101,-101],[-152,-198],[-43,-29],[-171,-185],[-123,-111],[-200,-130],[-80,-36],[-189,33],[-79,-18],[-66,-78],[-6,-113],[-28,-16],[-42,5],[-132,47],[-72,-9],[-42,-60],[-34,-76],[-99,-4],[-178,78],[-209,48],[-48,6],[-102,-59],[-35,-8],[-148,12],[-81,37],[-79,0],[-60,-30],[-73,-11],[-196,-211],[-102,-1],[-87,-24],[-44,1],[-81,29],[-77,-15],[-46,-37],[-105,-16],[-41,-32],[-179,-193],[-73,20],[-93,3],[-105,103],[-40,-7],[11,31],[3,54],[-37,56],[-41,-3],[-22,46],[-63,5],[-52,-14],[-2,122],[-8,56],[-43,25],[-75,-10],[-31,-57],[0,-124],[-22,35],[-25,75],[-8,80],[9,94],[47,35],[-3,64],[-11,55],[-53,141],[-21,65],[-45,44],[-35,105],[-35,38],[-15,74],[-34,59],[-12,94],[19,53],[30,29],[31,-46],[38,18],[54,68],[32,102],[2,164],[-8,102],[-43,265],[-21,61],[-97,189],[-112,254],[-142,400],[-68,240],[-103,485],[-91,274],[-111,256],[-15,17],[17,31],[60,59],[56,25],[14,40],[9,91],[14,31],[15,64],[25,40],[52,27],[41,-35],[16,-35]],[[84927,43076],[7,-47],[18,-22],[29,2],[20,-29],[11,-58],[-2,-42],[-16,-27],[2,-34],[21,-43],[22,-94],[108,-49],[62,-6],[58,-24],[54,-42],[90,-10]],[[85411,42551],[125,21],[102,-9],[81,-41],[58,-8],[37,26],[15,37],[-5,49],[18,31],[41,13],[33,37],[24,61],[57,49],[89,38],[44,-1],[0,98]],[[86130,42952],[0,309],[0,310],[0,310],[0,310],[0,309],[0,310],[0,310],[0,292],[21,-21],[136,-155],[37,-82],[18,-51],[59,-188],[43,-169],[36,-127]],[[86480,44619],[9,-173],[-25,-70],[-56,-125],[-3,-95],[10,-112]],[[86415,44044],[18,-56],[24,-19],[56,28],[87,-30],[165,14],[82,-15],[40,33],[22,67],[19,22],[76,30],[35,38],[54,134],[110,118],[33,28],[39,75],[39,149],[29,124],[9,58],[26,96],[31,61],[31,32],[54,25]],[[87494,45056],[51,15],[53,-17],[57,-37],[64,-63],[96,-116],[33,-17],[96,-5],[59,-77],[30,-4],[150,-47],[52,2],[56,42],[93,-2],[57,11],[42,18],[32,36]],[[88515,44795],[28,40],[33,117],[18,94],[29,109],[36,147],[13,102],[13,28],[94,53],[115,41],[23,21],[22,49],[50,82],[93,107],[66,374],[42,88],[26,37],[17,1],[24,23],[31,46],[37,28],[43,11],[28,30],[12,50],[22,25],[32,-2],[18,16],[4,33]],[[89503,46574],[34,24],[17,28],[2,32],[40,79],[78,125],[74,70],[70,15],[65,26],[63,38],[45,59],[29,82],[50,45],[107,14],[123,33],[103,-27],[124,-74],[116,-27],[109,22],[88,5],[68,-12],[53,-26],[39,-39],[5,-54],[52,-241],[48,-316],[-1,-102],[7,-40],[25,-49],[31,-84],[21,-84],[32,-68],[26,-103],[21,-137],[18,-65],[16,-91],[-2,-124],[2,-435],[-3,-67],[2,-189],[-28,-99],[4,-78],[8,-50],[-11,-8]],[[89237,41816],[19,-51],[50,-100],[-2,-62],[6,-22]],[[89310,41581],[10,-26],[45,-33],[25,-33],[50,-91],[38,-40],[114,-30],[16,8]],[[89639,41410],[5,52],[16,28],[60,133],[33,50],[46,13],[58,0],[44,18],[71,45],[55,49],[30,34],[19,151],[46,58],[19,36],[24,87],[16,85],[2,35],[-39,125]],[[90144,42409],[-53,37],[-96,108],[-42,73],[-18,12],[-40,50],[-30,63],[-12,11],[-66,-24],[-103,-59],[-64,-55],[-53,-65],[-97,-47],[-90,-206],[-30,-46],[-43,-106],[-27,-45],[-86,-56],[-19,-45],[34,-122],[28,-71]],[[91801,55977],[21,-16],[23,-93],[43,-71],[-5,-64],[-12,-59],[36,-58],[46,-54],[12,-25],[4,-81],[7,-28],[31,-68],[15,-44],[-1,-27],[-84,-134],[-51,-20],[-36,-56],[33,-134],[18,-51],[-15,-63],[-33,-108],[-15,-9],[-3,-82],[26,-53],[7,-56],[-1,-137],[-21,-156],[38,-137],[13,-14],[52,-1],[9,-12],[-13,-39],[-36,-60],[-67,-46],[-95,-52],[-20,-49],[-13,-72],[23,-66],[-12,-129],[3,-52],[-5,-46],[-12,-22],[-37,-139],[-41,-65],[-38,-28],[1,-14],[43,-32],[11,-23]],[[91650,53132],[4,-15],[-18,-35],[44,-39],[23,-47],[31,-96],[22,9],[26,35],[19,13]],[[91801,52957],[23,-51]],[[90616,51772],[-287,-2],[-105,-36],[-85,-55],[-103,-87],[-59,-60],[-16,-34],[-8,-74],[0,-114],[-10,-82],[-32,-75],[-155,-91],[-102,-75],[-99,-88],[-76,-114],[-52,-141],[-85,-174],[-180,-311],[-104,-57],[-87,13],[-105,65],[-83,12],[-62,-40],[-57,12],[-53,65],[-44,24],[-35,-18],[-46,3],[-83,36]],[[87594,50381],[-183,247],[-100,146],[-76,115],[-37,66],[-67,88],[-66,64],[-48,233],[-26,214],[0,385],[0,446],[0,447],[0,447],[0,332],[99,0]],[[87090,53611],[230,0],[256,0],[218,0]],[[87794,53611],[51,9],[2,22],[-37,110],[12,113]],[[87822,53865],[35,149],[3,50],[-17,162],[2,91],[9,183],[-5,62],[18,82],[14,78],[-9,63],[-16,217],[-9,92]],[[90769,56958],[34,-133],[26,-62],[33,-53],[28,-33],[19,-10],[118,4],[42,-33],[37,-41],[10,-65],[50,-72],[62,5],[44,-28],[1,-54],[9,-24],[81,-13],[39,-37],[42,-6],[49,-15],[23,-39],[53,-40],[64,-36]],[[91633,56173],[70,-60],[1,-18],[25,-60],[7,-72],[33,-10],[13,24],[19,0]],[[91000,47066],[-39,39],[-53,26],[-68,12],[-88,-5],[-109,-22],[-116,27],[-124,74],[-103,27],[-128,-34]],[[118634,75071],[-84,-50],[-41,-97],[3,-46],[-125,-275],[-17,-76],[-41,-48],[2,-174],[-30,-131]],[[118634,75051],[16,71],[30,25],[46,-169],[49,-130],[34,-153],[43,-95],[7,-83],[34,-31],[33,-142],[19,-3]],[[118641,74992],[-82,-133],[28,-41],[-34,-82],[-7,-123],[-38,-162],[32,-72],[-19,-86],[-84,-145],[-25,-125],[-61,-107]],[[118701,74401],[22,-70],[87,-66],[8,-169],[56,-23]],[[118647,74365],[-27,-89],[-18,-157],[-40,-104],[-5,-94],[-60,-100]],[[122182,71871],[26,-11],[176,-286],[29,-62]],[[122413,71512],[-40,-5]],[[122413,71512],[90,-125],[30,-7],[47,-96]],[[122414,71512],[-1,0]],[[122581,71285],[47,-102],[53,-46],[-30,-75],[18,-61],[-13,-61],[29,-145],[41,-61]],[[93779,103798],[92,33],[95,-34],[79,34],[52,63]],[[94097,103894],[-10,254],[-27,75],[-133,163],[28,47],[-50,58]],[[82361,104728],[-15,114],[-80,85],[-130,74],[1,55],[-114,106],[-7,59]],[[81161,105996],[138,-76],[116,0],[209,-220],[9,-94],[101,-57],[166,-50],[65,-164],[49,-8],[2,-106]],[[82361,104728],[65,-164],[32,-14]],[[99705,101358],[-38,135],[27,64]],[[100275,103359],[-91,-7],[-30,53],[-102,288],[-1,147],[-55,131],[-192,56],[-123,-52],[-82,-60],[-62,-6],[-98,55],[-68,-51],[14,-109],[-241,-92],[34,-67],[-99,-204],[-153,27],[-60,74],[-56,14],[-179,-63],[-77,-136],[-215,-120],[11,-128],[64,-1],[-8,-135],[101,-49],[-9,-39],[101,-104],[92,-12],[87,-79],[119,-56],[72,15],[92,-32],[26,-121],[160,-162],[65,-200],[126,-111],[19,-100],[57,-31],[8,-64],[89,-11],[21,-125],[62,-135]],[[98455,50550],[-14,-3],[-40,-157]],[[98455,50550],[91,-4],[69,59],[102,-46],[45,95],[65,21]],[[98215,50014],[47,186],[41,64],[77,71],[21,55]],[[55970,49691],[8,41],[-34,188]],[[55997,51319],[-1,-51],[45,-106],[2,-82],[23,-30],[37,-123],[-15,-104],[54,-96],[0,-247],[-53,-52],[-59,-11],[-51,-60],[-14,-59],[-83,-29],[33,-219],[38,-79],[-9,-51]],[[96121,102580],[70,121],[158,158]],[[96752,104294],[38,-194],[-112,-106],[-114,64],[-106,-93],[-120,-53],[20,-58],[86,-33],[82,-89],[20,-65],[280,-258],[13,-121],[-97,-104],[-246,-122],[-120,-110],[-27,-93]],[[13391,110135],[38,80],[-116,193],[116,171],[-24,100],[49,80],[-41,38],[66,183],[62,76],[-79,157],[-13,103],[35,82],[109,109],[105,145]],[[9267,110894],[-13,88],[84,132],[171,-34],[139,11],[166,146],[20,86],[-38,96],[82,56],[-62,165],[-91,141],[44,86],[313,43],[117,132],[59,2]],[[54648,50232],[-6,118],[-38,110],[6,170],[68,157],[11,132],[91,85],[76,151],[31,143],[56,59],[-6,100],[50,40],[34,86],[85,27],[37,52],[36,-3],[47,135],[41,162],[9,117],[62,103],[70,56],[41,-23],[67,88],[29,168],[27,90],[-11,82],[29,200],[35,16],[-8,262],[40,63],[5,56],[37,67],[47,156],[-12,105],[39,76],[7,86],[-49,43],[-32,120],[27,159],[-27,146],[-4,99],[18,95],[-32,97]],[[55681,54483],[25,113],[-34,49],[-1,55],[55,255],[-12,100],[21,108],[-3,80],[34,69],[16,110],[24,41],[21,165],[32,58],[11,71],[44,132]],[[55914,55889],[28,99],[25,187],[101,202],[27,74],[75,64],[87,274],[30,38],[48,225],[15,178],[-63,63],[-35,80],[7,68],[68,133],[14,58],[-16,182],[10,43],[81,85],[141,82],[7,85],[26,74],[46,58],[47,-8],[-16,133],[62,52],[-21,84],[47,43],[-32,75],[4,56],[63,56],[-29,75],[-26,3],[-55,100],[-68,-16],[-72,41]],[[56540,58935],[-92,36]],[[11565,105517],[15,231],[-88,68],[-34,228],[-98,206],[-142,127],[-129,143],[-206,57]],[[21728,106547],[-50,-81],[61,-72],[129,-90],[97,-31],[88,-67],[254,-136],[129,46],[65,-27],[123,-122],[100,-144],[119,-58],[284,-22],[140,-119],[145,-50],[205,-94],[99,-68],[228,-95],[98,48],[51,-44],[146,3],[101,-181],[66,22]],[[21767,106696],[121,90],[168,61],[64,2],[85,87],[138,11],[91,112],[1,124],[-35,66],[-98,81],[112,64],[322,12],[215,-63],[173,105],[319,-90],[147,57],[155,8],[31,97]],[[48613,95258],[-27,-153],[15,-50],[89,-16],[50,48],[108,8],[45,-70],[183,71],[110,55],[7,117],[56,40],[43,89],[79,52]],[[44162,96399],[-60,-120],[-73,-57],[-69,-1],[-40,49],[-35,141],[0,67],[41,45],[10,108],[-38,27],[-24,117],[28,34],[-3,126],[-61,128],[-114,127],[-36,132],[-39,68],[-116,111],[13,65],[-33,52],[-20,139],[-46,127],[-91,99]],[[34506,79338],[37,47],[-11,71],[35,41],[81,-23],[115,15],[14,-43],[207,-52]],[[44583,64302],[-23,67],[-81,41],[-19,69],[34,108],[-9,123],[53,69],[63,126],[0,121],[-17,64],[50,263],[33,94],[-10,48],[39,66],[55,223],[33,88],[-6,41],[57,163],[31,-9],[56,172],[50,283],[-18,151],[-98,130],[-8,80],[13,269],[17,72],[-25,95],[1,95],[40,186],[34,11],[122,134],[36,102],[-21,95],[33,57],[50,163],[-9,64],[165,51],[12,92],[83,81],[17,106],[-6,71],[35,231],[-29,72],[-32,14],[-46,71],[-10,63],[22,72],[-20,76]],[[46006,68267],[-19,51],[-28,163],[31,161],[47,58],[42,-4],[30,50],[-30,130],[111,131],[77,25],[63,-41],[57,11],[12,53],[51,59],[51,-7],[44,26],[58,74]],[[47695,69798],[23,-90],[32,-22],[23,-108],[38,-79],[34,-183],[11,-105],[79,-112],[31,-21],[77,-151],[43,-3],[18,-55],[86,-153],[29,-104],[117,-209],[40,-24],[42,-99],[16,-75]],[[48397,68229],[37,-24]],[[48434,68205],[2,-29],[87,-20],[48,-63],[73,-1],[125,-29],[92,27],[68,-46],[27,-55]],[[48434,68205],[-1,-1]],[[49938,65955],[-41,12],[-49,102],[14,120],[29,33],[5,80],[-54,134],[-17,85],[-35,71],[5,99],[-29,75],[10,43],[-19,161],[4,60],[-74,78],[-61,-32],[-1,205],[-22,100],[7,46],[-27,86],[-50,57],[-18,71],[-74,67],[-5,206],[30,36],[47,-40],[51,33],[20,58]],[[89808,43866],[-1,0]],[[89807,43866],[-16,23],[-154,68]],[[88762,43444],[-39,-27],[-87,43],[-76,-61]],[[90503,44293],[43,-88],[-9,-47],[-91,-120],[-91,-55],[-127,-31],[-18,-40],[-71,16],[-56,-84],[-42,-11]],[[89637,43957],[-34,34],[-32,102],[-38,-37],[-156,-39],[-17,-65],[-75,8],[-55,-43],[-58,-3],[-56,27],[-116,-77],[-67,-96],[-17,-150],[-86,-51],[-9,-44],[-59,-79]],[[90039,43833],[-42,35],[-59,-31],[-74,58],[-57,-29]],[[88560,43399],[-87,-30],[-78,-78],[-48,-74],[-32,-90],[-107,-30],[-49,-126],[8,-118],[-19,-37],[-111,-47],[-8,66],[-49,46],[-93,-171],[-12,-103],[-71,-144],[-103,-42]],[[48559,62705],[-107,-23],[-105,54],[-32,-7],[-69,41],[-26,-54],[-93,-49],[-75,60],[8,103],[-66,13],[-56,47],[-15,59],[-55,-17],[-60,23],[-49,-25],[-28,25],[16,161],[-29,205],[-57,83],[-222,-3],[-37,33],[-93,140],[-33,-5],[-51,-107],[-52,-31],[-112,82],[11,-95],[-8,-123],[-131,-21],[-1,40],[-100,45]],[[43663,61273],[-10,168],[16,82],[36,55],[8,80],[49,43],[51,-4],[54,-44],[31,-121],[69,-30],[33,-170],[50,-69],[146,-100],[112,-111],[46,-113],[42,-45],[111,-18],[24,-114],[72,-82],[16,-58],[-22,-77],[18,-117],[22,-57],[39,-170],[-12,-56],[-48,-47],[-32,-172],[5,-122],[-49,-82],[-21,-105],[26,-134],[-3,-51],[62,-150],[1,-42]],[[51513,59079],[7,-37],[-17,-154],[7,-89],[59,-121],[9,-101],[25,-113],[-11,-83],[-48,-79],[-4,-70],[-40,-132],[9,-130],[-82,-174],[-45,-8],[-26,-43],[37,-88],[13,-113],[-20,-148],[-83,-74],[-43,-109],[6,-35],[-39,-118],[9,-70],[43,-38],[68,13],[21,-43],[-33,-101],[22,-117],[-10,-71],[26,-36],[1,-156],[36,-53],[20,-74],[-25,-64],[55,-168]],[[52575,52713],[11,91],[42,179],[45,101],[14,132],[25,71],[-5,95],[58,161],[63,126],[-5,75],[-49,80],[-34,203],[-96,81],[-11,58],[-102,64],[-20,128],[-88,149],[-18,72],[-39,56],[8,148],[-33,-1],[-41,68],[5,60],[-47,102]],[[49583,61258],[63,59],[64,34],[54,117],[66,47],[217,-13],[47,27],[65,-4],[94,87],[122,-30],[138,-129],[15,15],[85,-119],[11,45],[44,5],[67,59],[72,-22],[88,55],[74,26],[97,-32]],[[45408,64152],[-8,-48],[47,-129],[277,-101],[128,-29],[39,20],[134,-75],[86,-17],[8,-47],[60,-78],[22,-136],[134,-134],[6,-55],[71,-147],[57,-18],[42,-54],[31,-102],[64,-79],[43,-80],[64,-56],[51,10],[52,-56],[54,3],[15,-54],[62,-21],[62,-223],[39,22],[84,-55],[28,0],[23,-74],[71,-28],[19,-52],[11,-189],[-28,-57],[60,-96],[7,68],[85,40],[-9,-78],[123,-8],[1,-57],[88,-54]],[[48772,60778],[-41,-22],[-221,-289],[-56,-111],[-13,-63],[11,-300],[-77,-6],[-67,-83],[-3,-125],[-28,-51],[-2,-65],[-29,-133],[-52,-93],[-116,-27],[-10,-35],[-70,-62],[-93,-113],[-53,-130],[-18,-76],[-63,-165],[-50,-89],[-61,-38],[-65,-95]],[[54861,52376],[27,52],[132,37],[97,3],[64,104],[53,47],[26,75],[-16,116],[10,97],[27,70],[43,185],[39,80],[71,209],[65,126],[1,68],[37,45],[20,127],[27,67],[-23,102],[8,119],[62,156],[-9,24],[59,198]],[[53469,47473],[-44,17],[-69,116],[9,84],[-30,75],[-13,194],[31,246],[-6,98],[-55,8],[-52,108],[3,127],[-47,61],[-28,100],[-77,14],[-44,138],[0,65],[-66,119],[-51,57],[-77,2],[-26,51]],[[54427,49501],[27,-191],[-16,-50],[54,-193],[-5,-73],[53,-185],[69,-91],[39,-90],[21,-114],[62,-67],[133,-184],[41,-77],[280,-278]],[[130743,102022],[-204,18],[-11,73],[40,83],[19,163],[146,189],[-7,237],[75,15],[60,81],[-57,116],[30,149],[66,30],[40,94],[101,-2],[25,100],[83,170],[117,74],[93,17],[59,101],[99,71],[-23,152],[105,-19],[89,-106],[145,-49],[89,-86],[123,-58],[41,13],[150,-57],[94,22],[105,-19],[60,51],[78,-32],[2,-59],[94,-11],[36,75],[80,-52],[81,64],[17,-96],[47,-7],[40,-94],[153,-35],[135,37],[146,-54],[114,66],[49,56],[78,-29],[117,-2],[1,146],[42,42],[178,50],[94,-28],[173,48],[98,73],[20,70],[82,-16],[172,105],[87,74],[75,-28],[65,75],[3,81],[89,25],[89,95],[241,300],[72,40],[133,124]],[[135476,104748],[97,11],[94,-68],[48,15],[-7,106],[-71,46],[11,94],[152,98],[95,192],[-82,189],[75,89],[-141,146],[152,38],[-5,81],[94,77],[-36,100],[96,68],[-99,117],[-59,159],[-256,-34],[-256,133],[-66,52],[16,58],[-100,12],[13,101],[-135,6],[-117,-65],[-133,68],[56,65],[-8,90],[-107,9],[-232,-35],[-96,-38],[-343,88],[-132,-77],[-120,-2],[-118,43],[-93,-16],[-75,38],[-215,25],[-124,42]],[[54542,50219],[-18,-78],[-39,-19],[-101,3],[-92,56],[-51,-30],[-42,-72],[-168,-84],[-28,-53],[-26,-132],[-24,-37],[-47,57],[-65,5],[-31,78],[-42,55],[-92,-16],[-23,16],[-157,7],[-104,-49],[-76,-11],[-182,-90],[-117,-134],[-107,-183],[-34,-115],[5,-60],[-41,-162]],[[50974,51887],[-42,76],[-14,70],[-57,84],[-39,20],[-56,129],[-20,241],[-56,74],[-21,102],[-44,59],[-16,95],[-42,26],[-43,-27],[-37,63],[-15,74],[-68,88],[-28,96],[-123,137],[-83,140],[-34,91],[-59,-5],[-37,92],[-32,173],[-67,45],[-47,87],[-61,55]],[[50873,47130],[68,-121],[168,-65],[35,-36],[94,-17],[63,-46],[37,2],[56,-65],[121,-61],[46,17],[118,-59],[38,-44],[86,-49],[24,19],[82,-19],[127,-86],[92,29],[144,-53],[18,-41],[71,-35],[58,20],[78,-25],[44,58],[61,31],[42,117],[-6,43]],[[46553,29304],[36,-77],[75,-55],[98,-26],[63,-68],[89,-59],[208,-77],[24,-78],[-60,-57],[33,-84],[93,-5],[62,-65],[-22,-85],[25,-80],[206,-148],[85,-171],[90,-10],[240,-91],[22,-28]],[[46388,26348],[89,28],[41,82],[64,60],[75,13],[41,68],[74,-31],[48,21],[220,-8],[81,9],[131,88],[146,37],[143,3]],[[47363,39752],[-63,24],[-61,-28],[-31,29],[-120,52],[-39,55],[-34,-36],[-120,-40],[-42,17],[-54,-76],[-89,-9]],[[73888,67911],[24,-154],[36,-124],[8,-83],[-29,-183],[-115,-183],[-59,-200],[-73,-133],[11,-84],[-19,-41],[-70,-13],[-20,-72],[-93,-96],[-91,-77]],[[72809,69386],[-51,29],[-56,-90],[-42,-31],[-73,-106],[-107,-51],[1,-117],[-68,-109],[-15,-146],[-67,-44],[-59,-69],[-35,44],[0,55],[-99,-85],[-33,23],[-41,-42],[-82,-17]],[[79028,68769],[90,-115],[37,-86],[7,-106],[-30,-133],[4,-96],[-12,-163],[-52,-74],[-10,-119],[-102,-146],[-4,-244],[25,-33],[-15,-96],[22,-86],[27,-20]],[[87453,40221],[-3,-165],[-18,-159],[64,-116],[167,-144],[25,-70],[43,-19],[71,15],[173,-53],[42,-33],[45,-81],[71,-5],[20,-152],[20,-62],[60,-60],[67,-103]],[[29700,92725],[-62,113]],[[28915,92473],[97,146]],[[28720,92362],[-67,15]],[[26250,94847],[57,-100]],[[29877,93186],[-81,-295],[43,-62],[-37,-78],[-102,-26]],[[29637,92839],[-92,101],[-14,71],[-67,14],[-128,111],[-62,8],[-20,-57],[23,-114],[-77,-167],[-113,-89],[-75,-98]],[[28915,92472],[-80,-110],[-115,0]],[[28652,92376],[-70,-79],[-97,2],[-111,-35],[-20,22],[-184,80],[-80,10],[-59,89],[-20,84],[-71,-2],[-31,60],[-103,-49],[-209,59],[-29,-39],[-153,153],[-30,84],[-60,12],[-87,117],[-11,60],[-76,76],[-51,17],[46,128],[1,132],[31,71],[-38,60],[-90,18],[-4,129],[29,38],[54,148],[77,119],[4,80],[45,81],[30,136],[80,163],[-29,119],[-107,80]],[[27229,94599],[-78,166],[22,54],[-58,136],[-66,42],[-14,72],[-94,114],[-97,9],[-99,-80],[-114,-22],[-27,30],[-100,-10],[-53,-47],[-12,-63],[-74,-92],[-106,-67]],[[93102,59056],[-41,-127],[-24,-26],[6,-143],[39,-126],[42,-82],[34,-114],[15,-94],[-11,-52],[50,-112],[90,-71],[41,-68],[90,-75],[16,-53],[131,-42],[33,61],[45,138],[-4,48]],[[93651,58118],[76,91],[49,117],[72,-20],[79,46],[54,-47],[63,22],[119,-22],[93,71]],[[88651,45245],[18,91],[-3,105],[69,136],[8,45],[62,62],[15,62],[36,29],[67,117],[78,52],[105,170],[29,14]],[[89714,45421],[51,13],[113,61],[44,120],[62,85],[18,141],[-67,100],[-40,90],[-42,29],[-7,96],[15,50],[-14,148],[30,90],[-10,236],[36,65],[21,162],[38,21],[14,98]],[[90416,47215],[-25,102],[-192,361],[-33,182],[13,106],[-16,124],[-51,134],[-17,111],[-39,129],[-150,34],[-51,-16]],[[91768,49891],[39,-114],[70,-41],[37,-61],[106,-22],[84,-53],[41,-80],[52,-35],[68,-80],[59,20],[58,-81],[25,-170],[-12,-169]],[[90300,49020],[-28,55],[-221,255],[-56,108],[-131,177],[-101,-40],[-62,6],[-113,-15],[-98,28],[-149,110],[-62,90],[-52,13]],[[93254,51819],[132,-96],[83,-83],[37,-79],[10,-167],[-15,-54],[15,-74],[1,-125],[-49,-54],[-15,-140],[32,-83],[3,-189],[32,-87],[69,-76],[34,8],[83,-63]],[[91839,59379],[-18,72],[-115,113],[-39,-50],[-39,-125],[-2,-101],[-31,-42],[-75,88],[-98,70],[-39,50],[-45,115],[-50,13],[-41,-82],[-57,-18],[-52,-59],[-85,-30],[-8,-56]],[[92507,66441],[-20,-82],[-31,-32],[-71,72],[-69,-70],[-49,2],[-111,201],[-68,230],[-68,79],[-14,82],[-54,33],[-40,76],[-56,157],[1,81],[-21,43]],[[75194,85352],[118,84],[45,15],[39,77],[84,-28],[90,28],[87,3],[95,64],[81,105],[113,185],[27,197],[24,39],[11,138],[45,86],[14,84],[85,195],[113,146],[134,214],[66,34],[51,100]],[[58940,54905],[46,131],[65,87],[67,36],[64,175],[55,103],[15,93],[-13,83],[89,100],[69,199],[152,5],[91,-16],[64,13],[71,47],[7,65],[37,79],[93,12],[32,-25]],[[58105,49399],[-37,174]],[[58068,49573],[-21,202],[-51,33],[34,180]],[[58030,49988],[1,1]],[[59944,56092],[85,-34],[93,90],[33,4],[24,172],[27,29],[42,-28],[62,42],[31,48],[0,100],[89,33],[0,87],[37,11],[87,75],[56,-29],[22,-70],[83,-39],[26,-40],[49,15],[64,-51],[21,-87],[56,103],[7,-89],[85,-90],[50,-234],[80,-46],[104,-107],[41,-10],[47,-57],[41,-5],[75,-48],[35,-64],[100,-49],[20,-94],[49,-78],[59,-42],[28,14],[27,-68],[41,-38],[24,-63]],[[58030,49988],[38,65],[-4,93],[28,31],[0,78],[52,45],[-16,111],[23,32],[26,200],[37,51]],[[58214,50694],[19,73],[-12,65],[-78,162],[-46,179],[22,94],[3,262],[61,19],[45,99],[103,77],[78,92],[11,59],[79,84],[34,175],[73,190],[-3,50],[28,194],[19,73],[50,108],[59,387],[47,95],[-3,157],[16,81],[-13,91],[47,158],[40,102],[30,30],[-39,240],[26,87],[-54,138],[11,89],[-28,126],[36,82],[52,171],[13,122]],[[83373,96790],[106,-54],[68,-110]],[[83548,96627],[82,-91],[82,2],[-21,114],[64,133],[-9,143],[-41,27],[-73,165],[32,121],[73,68],[-23,115],[23,96],[-9,71],[-42,68],[72,56]],[[93191,101398],[-124,107],[-140,51],[-28,56],[-181,11],[-28,-39]],[[92733,101356],[41,62],[93,17],[76,-60],[108,-52],[79,70],[61,5]],[[94265,101006],[-51,46],[-16,108],[-55,67],[-115,21],[-71,90],[-78,10],[-248,189],[-124,-68],[-181,-18],[-54,-66],[-81,13]],[[97577,105864],[-65,94],[-116,52],[10,175],[-66,74],[38,38],[166,21],[61,-36],[79,24],[7,65],[-90,70],[68,90],[-13,153],[-100,106],[-10,45],[-140,-35],[-121,38],[-175,136],[-94,118],[-205,-1],[-159,144],[-129,28],[46,152],[42,51],[-126,26],[-25,62],[-87,22],[-86,-32],[-132,31],[-56,-98],[-102,-62],[-254,-48],[-104,-111],[-130,-11]],[[95495,99004],[-31,78],[-104,113],[29,78],[9,275],[47,155],[79,42],[-5,77],[41,86],[1,103],[-40,126],[54,155],[80,60],[-53,52],[-18,131],[39,43],[-24,124],[-44,77]],[[99935,107420],[-35,104],[-174,-18],[26,-90],[-37,-47],[-15,-194],[74,-39],[47,-140],[-167,-184],[12,-60],[-59,-105],[-153,-80],[-105,-109],[-12,-151],[108,9],[-84,-149],[7,-83],[-141,-104]],[[100581,101590],[70,-16]],[[100651,101574],[80,-3],[36,-68],[136,-18],[148,-54],[64,-62],[67,-12],[79,49],[42,-52],[-20,-58],[44,-49],[104,31],[-51,-145],[4,-88],[87,39],[57,-24],[99,-96],[35,-104],[-64,-69],[99,-146],[86,-15],[56,-52],[-36,-286],[-71,-136],[-35,-16],[-29,-106],[-38,-238],[-4,-353],[179,50],[63,60],[82,-10],[145,43],[94,-15],[53,27],[83,121],[-39,113],[97,104],[90,165]],[[93341,89566],[77,-19],[-12,-73],[29,-106],[70,-60],[-44,-80],[-14,-223],[-82,-174],[-130,-90],[-3,-53],[-80,-21],[-23,-122],[-125,28],[-41,-19],[-38,-119],[-64,-43],[-45,-72],[-15,-116],[42,-66]],[[78377,94485],[-52,-3],[-156,77],[-43,65],[-85,-75],[-63,56],[-111,4],[-61,25],[15,133],[3,224],[-65,214],[18,158],[-55,110],[-165,67]],[[97884,87660],[76,75],[119,11],[55,-17],[116,10],[24,56],[-78,48],[-59,172],[-10,70],[-98,239],[3,47],[57,105],[1,105],[26,145],[56,58],[56,1],[46,-35],[67,-138],[59,-32],[12,-48],[76,-49],[154,-179],[75,-47],[67,-1],[55,87]],[[97674,87450],[-9,63],[54,122],[164,26]],[[90066,89887],[-90,47],[-130,14],[-105,52],[-109,19],[-18,62],[23,47],[-19,154],[48,33],[-9,191],[30,76],[94,142],[18,62]],[[81479,95855],[160,-111]],[[81456,95855],[-106,-10]],[[81456,95855],[23,0]],[[81577,95273],[62,67],[-34,99],[13,119],[62,115],[-41,71]],[[81276,95125],[89,78],[215,70]],[[94588,90430],[40,59],[-46,77],[-70,45],[-88,-31],[-89,1],[-110,28],[-67,-2],[-129,27],[-32,47],[-110,-2],[-53,33],[-371,146],[-33,73],[-151,72],[-73,90],[105,52],[-4,84],[43,88],[-36,148]],[[74398,92738],[-39,43],[-105,-78],[-10,-62],[41,-95],[-85,-155],[3,-143],[-51,-82],[-77,-16],[-57,-56],[-20,-75]],[[80489,94556],[150,-53],[126,25],[129,-121],[92,-263]],[[80402,93941],[-43,-57],[5,-127],[-38,-62],[-106,-70],[-71,4],[-80,-95],[44,-180],[-60,-150],[-48,-89],[-76,-48],[-213,84],[-79,75],[-61,26]],[[79069,93452],[-13,107],[-136,-41],[-9,-58],[-61,-85],[-102,-14],[-69,-55],[-92,-41],[-151,-10],[-128,-43],[-76,-57],[-124,108],[-46,108],[-94,-14]],[[84040,91139],[148,3],[31,29],[23,115],[67,-4],[84,55],[109,126]],[[88477,94230],[9,-119],[-21,-126],[126,-118],[71,-45],[160,2],[35,-29],[73,7],[242,-68],[118,-47],[188,69],[48,33]],[[87509,92251],[-56,85],[-117,-74],[-33,-71],[145,-214],[53,-195],[-1,-61],[41,-163],[35,-65],[2,-66],[-81,-55],[77,-122],[61,-49],[122,-35],[38,-107]],[[93545,98282],[39,82],[-84,63],[-123,8],[-106,145],[-85,69],[-62,14],[-160,-20],[-103,12],[-65,-48],[-55,37],[-154,42],[-62,-42],[-41,-97],[43,-38],[-10,-86],[-200,26],[-44,-85],[-120,-52],[-40,80],[-62,-3],[-65,58],[-61,11],[-96,-54],[-108,-11],[-107,74],[-73,24]],[[79854,95999],[-47,33],[-64,147],[5,223],[-63,108],[-131,19],[-55,45],[-31,87],[-86,109],[-63,38],[-117,34],[-153,0],[-90,-68],[-97,-25],[-133,-8],[-26,-44],[-79,-2],[-62,-43]],[[94344,104348],[95,-100],[180,-145],[51,1]],[[94344,104348],[-86,51],[-85,-8]],[[94670,104104],[68,4],[193,-125],[89,-13],[107,72],[81,-31],[167,17],[165,47],[112,121],[137,18],[93,65],[59,133],[66,3],[55,55],[185,36],[28,42],[161,55],[116,113],[94,47],[161,26],[109,66],[261,21],[63,53],[94,-18],[89,55],[60,-5]],[[125795,89721],[20,-94],[-48,-102],[-21,-114],[-41,-91],[-5,-131],[88,-101],[48,-32],[127,47],[19,-48],[7,-135],[-51,-45],[-37,-117],[-112,-213],[-68,-48],[-71,-135],[-36,-98],[21,-134],[-24,-138],[4,-72],[-68,-100],[-45,-102],[7,-147],[-26,-66],[-69,-71],[-45,9],[-150,-15],[-79,-76]],[[128563,87801],[89,-67],[69,-165],[-7,-155],[-76,-150],[-26,-146],[-37,-76],[16,-169],[116,-4],[44,-44],[87,-13],[25,21]],[[114456,84852],[1,-1]],[[114457,84851],[84,-28],[97,51],[99,-58],[46,17],[87,-53],[95,18],[59,-45],[60,42],[21,60],[68,10]],[[114457,84851],[1,1]],[[114479,84704],[-103,48],[5,37],[76,62]],[[105954,109834],[-180,33],[-91,-26],[-273,-187],[-265,-112],[-76,-130],[41,-63],[-301,-11],[-88,42],[-81,-87],[-28,-153],[-118,-87],[-218,-63],[-288,16],[-172,-21],[-44,-38],[-187,43],[-101,-84],[-183,-64],[-94,38],[-5,79],[-160,75],[-73,-34],[-19,-75],[-141,-33],[-183,-118],[-88,-89],[4,-65],[-387,-60],[-132,42]],[[103104,103322],[126,-42],[90,63],[6,84],[-45,57],[21,67],[94,46],[90,-31],[173,82],[315,-35],[75,-28],[125,11],[106,-84],[126,-29],[27,-56],[145,-112],[91,-126],[138,-58],[117,-1],[87,-88],[89,-145],[94,-4],[121,-158],[5,-56],[76,-10],[25,-49],[229,-111],[220,-60],[60,21],[230,-26],[127,75],[76,-13]],[[124528,96561],[-72,-89],[-67,-44],[-11,-63],[-61,-140],[-7,-75],[-60,-86],[1,-147],[-34,-91],[9,-103],[47,-86],[59,-168],[108,-96],[73,21],[172,-79],[121,11],[100,61],[87,75],[105,29],[86,110],[98,63],[59,65],[217,72],[84,14],[61,62],[185,64],[85,-6],[108,20],[82,90],[55,32],[275,39],[83,-24],[258,27],[60,22],[131,111],[89,194],[73,58],[58,-64],[-49,-80],[111,-224],[227,135],[15,69],[141,135],[90,10],[124,57],[36,71]],[[109889,103532],[19,28],[-34,144],[110,114],[-80,71],[-215,-36],[-40,-45],[-182,67],[-35,-9],[-140,84],[-220,166],[4,225],[44,89],[6,96],[85,79],[104,17],[93,93],[3,126],[-35,46],[-108,54],[32,53],[-61,110],[-107,59]],[[111141,102482],[-50,105],[-76,8],[-17,90],[-141,138],[-183,297],[-76,21],[-118,75],[-53,110],[36,123],[61,54],[-22,96],[85,129],[-30,61],[128,69],[66,-18],[171,6],[97,23],[61,47],[85,-28],[231,11],[139,-84],[214,-35],[44,-52],[142,31],[129,-51],[72,1],[150,76],[-3,42]],[[115707,96193],[3,-276],[28,-114],[106,-82],[32,-95],[-63,-153]],[[114320,83568],[26,48],[78,0],[56,47],[66,104],[-35,34],[-74,140],[-73,9],[-65,53],[-74,19],[-53,143],[20,83],[67,51],[46,-24]],[[120347,98416],[-51,43]],[[120296,98459],[-168,57],[-100,0],[-98,-46],[-198,61]],[[120081,97913],[96,-64],[78,66],[-1,103],[66,32],[37,160],[28,49],[-39,79],[0,78]],[[115116,88080],[-11,86],[-44,93],[13,59],[-51,123],[-50,32],[49,99],[10,133],[58,10],[21,100],[-144,70],[-56,-13],[-76,36],[-161,-40],[-151,-84],[-32,22],[-65,157]],[[123705,88648],[43,-123],[-20,-69],[0,-97],[-32,-81],[12,-105],[85,-132],[45,-126],[52,-40],[122,-192],[-3,-256],[-21,-118],[27,-95]],[[118698,85833],[40,-23],[75,-173],[155,-69],[133,-131],[21,-95],[129,-155],[-5,-89],[65,-50],[-33,-129]],[[117610,76975],[-48,134],[20,102],[-18,137],[-97,307],[14,127],[44,39],[-16,106],[-1,263],[34,64],[14,100],[-15,204],[47,76],[39,-96],[27,57],[-16,86],[25,34],[44,-25],[33,78],[4,128],[21,232],[-11,50]],[[117854,77939],[104,22],[51,-29],[47,85],[15,199],[-18,43],[18,70],[-18,258],[-21,53],[43,211],[67,-28]],[[127829,80079],[58,-9],[25,33],[65,161],[59,37],[94,-50],[4,-234],[56,-187],[66,-136]],[[127529,81537],[-20,-115],[12,-85],[-43,-321],[-59,-133],[-70,-3],[-39,-69],[-62,-17],[-18,-57],[-64,-41],[-72,31],[-7,-38]],[[122114,85687],[20,-51],[-17,-75],[38,-84],[-10,-95],[46,-136],[28,-163],[-34,-104],[4,-127],[66,-88],[-8,-47],[-80,-117],[-37,-32],[-41,-93],[9,-91],[-10,-113],[71,-19],[53,12],[56,-62],[41,-14],[129,9],[53,-27],[59,-128],[-19,-97],[34,-135],[55,-138],[-20,-120],[55,-106],[74,-72],[35,-103],[-3,-144],[-30,-160],[47,-77],[78,-63],[83,-46]],[[127256,65063],[-29,-131],[-93,-64],[-96,-114],[-55,-5],[-13,73],[6,117],[-53,71],[-31,-20],[-29,70],[-53,48],[-9,69],[22,211],[-18,75],[-42,38],[1,65],[-35,218],[-106,83]],[[131470,68472],[38,-132],[2,-96],[-18,-33],[-72,3],[-43,-119],[8,-76],[-10,-194],[-70,-59],[-46,-136],[-84,-69],[-36,19],[-102,108],[-12,49]],[[57090,50012],[-46,-26],[-42,-79],[-107,-89],[-51,10]],[[56754,49894],[-255,-9],[-58,18]],[[56441,49903],[-67,-43]],[[55779,49420],[-5,63],[77,150],[142,70],[88,0]],[[56374,49860],[-126,-174],[-41,102],[-126,-85]],[[56844,49828],[-52,19],[-38,47]],[[57577,49315],[-104,233],[20,149],[-24,132],[-89,93],[-77,35],[-72,-21],[-68,157],[-73,-81]],[[142777,41887],[-107,20],[-57,67],[3,112],[-57,102],[-37,116],[23,62],[-100,239],[-116,110]],[[112862,78473],[10,166],[-50,86],[-117,49],[-32,61],[-56,47],[3,44],[-81,69],[-26,92],[2,172],[-106,176],[84,19],[30,47],[117,98],[45,57],[172,69],[146,39],[77,-21],[80,51],[73,5],[73,-95],[74,-5],[124,45],[68,-18],[111,37],[20,83],[40,85],[33,19],[56,136],[55,41],[31,78],[66,36],[52,131],[12,143],[33,48]],[[111017,71797],[7,-91],[42,-118],[4,-82],[55,-85],[45,-4],[71,-198],[79,-78],[101,-40],[55,50],[88,-123],[99,-46],[82,-56],[143,-68]],[[114213,78893],[64,-3],[17,47],[67,64],[112,0],[46,-34],[-28,-108],[38,-100],[42,-56],[2,-79],[53,-57],[64,-34],[38,-91],[90,-169],[49,-141],[118,-3],[55,-55],[49,-81],[11,-112],[-38,-59],[66,-79],[18,-65]],[[110837,78845],[68,-87],[47,10],[39,127],[14,88],[50,125],[-3,126],[77,167],[4,92],[25,107],[74,91],[-1,165],[-40,120],[72,110],[-2,41],[84,68],[53,108],[34,111],[56,29],[79,133],[16,63],[107,-29],[50,12],[38,67],[66,27],[45,-39],[88,9],[46,43],[47,-19]],[[124206,72747],[59,-180],[47,-91],[7,-95],[-67,-70],[34,-125],[-26,-25],[-22,-175],[59,-38],[28,-98],[38,-28],[52,-91],[81,7],[44,-31],[71,67]],[[121701,60351],[-29,-95],[6,-80],[44,-82],[56,-47],[68,-18],[22,62],[103,162],[40,-5],[4,165],[-29,79],[28,120],[4,84],[54,69],[70,-33],[100,-73],[111,-59],[45,-57],[50,37],[45,-3],[37,-40],[139,56],[34,46],[34,161],[30,215]],[[125765,62033],[6,-177],[-20,-103],[11,-83],[-12,-97],[9,-120],[31,-50],[58,-140],[-21,-168],[18,-71],[-21,-91],[33,-99],[-2,-93],[46,-277],[98,-102],[11,-77]],[[140339,58190],[18,95],[46,14],[-49,181],[-159,200],[-62,11],[-69,171],[-106,168],[-38,33],[-71,106],[11,92],[-2,136],[-44,24],[-12,52],[27,163],[6,155],[-9,78]],[[45467,100042],[-3,0]],[[45464,100042],[-164,-49],[-49,30],[-340,-11],[-78,60],[-104,-2],[-260,-44],[-226,34],[-63,61]],[[46500,99982],[51,-28],[43,61]],[[47013,99863],[-1,0]],[[47012,99863],[-46,6],[-71,108]],[[44180,100121],[-95,23],[-116,-44],[-133,-17],[-188,13],[-106,39]],[[46499,99982],[-153,66],[-170,-14],[-48,94],[-113,54],[-123,19],[-154,-100],[-199,-62],[-75,3]],[[46895,99977],[-132,65],[-169,-27]],[[47169,99848],[-29,40],[-128,-25]],[[46657,51985],[18,246],[47,84],[20,109],[1,177],[-32,175],[-70,60],[-50,199],[-67,2],[-44,45],[-36,-16],[-46,62],[-45,14],[-24,54],[-75,25],[-85,88],[-70,26],[-57,-42],[-89,70],[-106,204],[-55,269],[-36,35],[-42,86],[-1,44],[-50,165],[-48,116],[43,156],[-59,226],[-61,163],[6,67],[95,-9],[107,-79],[27,48],[-26,153],[17,189],[-106,113],[-23,161],[18,84],[-30,143],[50,88],[-14,41],[-55,-12],[-27,92],[5,82],[-71,140],[-35,30],[4,157],[-31,62],[-30,181],[46,55],[36,88],[39,-7],[-7,95],[-43,-45],[-62,79],[1,88],[-54,72],[12,76],[-64,123],[-46,-49],[-44,59],[-27,153],[20,180],[-108,135],[10,79],[38,19],[-21,73],[51,106],[-60,241],[26,17],[-11,104],[13,118],[64,37],[24,-29],[38,78],[61,31],[60,122],[98,-18],[26,102],[52,20],[-14,108],[40,64],[-5,131],[51,126],[20,-69],[72,91],[20,117],[39,20],[26,90],[41,64],[-3,67]],[[142904,44716],[6,52],[-71,81],[20,131],[79,28],[62,72],[-16,85],[79,95],[39,71],[38,24],[24,77]],[[128150,39935],[31,81],[-112,129],[-44,1],[-60,78],[-56,22],[-28,70],[-47,44],[-16,94],[10,58],[-52,51],[-12,53],[-92,106],[-91,-46],[-53,-66],[-55,-138],[-102,-103]],[[110539,78618],[13,57],[126,194],[6,89],[50,79],[43,187],[-17,245],[-26,100],[-5,100],[-25,171],[-69,52],[-77,104],[-21,54],[-38,213],[-4,127],[-32,181],[29,90]],[[112095,75693],[33,95],[-31,90],[41,96],[13,81],[77,110],[45,-49],[38,-112],[58,-40],[27,19],[78,-76],[46,57],[36,5],[24,58],[92,31],[85,-31],[64,-53],[113,7],[65,38],[89,17],[28,-30],[80,74],[59,147]],[[117925,81284],[25,102],[65,54],[41,8],[19,66],[70,128],[-30,90],[20,52],[-31,115],[48,61],[-3,132],[-19,62],[-59,77],[0,68],[-51,122],[-77,32],[-106,-28],[-59,1],[-50,41],[-105,-15],[-103,-80],[-49,3],[-1,58],[-68,35],[-39,-13],[-123,16],[-29,42],[-73,23]],[[121785,72472],[43,-18],[48,-97],[-7,-173],[19,-50],[56,-31],[50,-70],[13,-71],[111,-77],[16,15]],[[121943,71106],[-10,120],[33,27],[51,-31],[34,39],[61,-37],[50,0],[45,48],[28,85],[45,23],[59,100],[34,27]],[[110613,85172],[-79,-28],[-72,73],[-8,38],[-119,23],[-42,94],[-64,1],[-41,-76],[-68,-75],[-62,-38],[-32,-64],[-66,-69],[-153,-85],[-55,-4],[-113,-129],[-21,-72],[-74,-53],[-61,-114]],[[109485,84594],[-71,-57],[-20,-66],[-89,-43],[-56,-72],[-116,-42],[-18,-61],[-44,-19],[-117,-150],[-91,-33],[-27,-82],[-88,20],[-94,-34],[-126,25],[-24,28],[-67,-29]],[[132736,91880],[92,33],[68,-6],[67,33],[95,-9],[10,37],[107,92],[13,110],[52,47],[66,-38],[81,36],[24,211],[51,174],[105,-10],[50,-55],[2,-111],[143,-207],[54,-105]],[[125476,108694],[-58,-80],[-24,-118],[50,-28],[186,18],[33,-60],[180,5],[83,230],[130,58],[193,54],[44,51],[121,42],[35,66],[253,-129],[111,-32],[102,-127],[-8,-60],[145,-138],[121,-43],[-21,-71],[153,-114],[69,-154],[110,-63],[67,35],[141,-148],[59,-129],[-7,-142],[103,-78],[-57,-95],[-95,-7],[-17,-103],[147,-38],[-87,-145],[-55,-31],[-26,-122],[190,-171],[68,58],[175,42],[80,46],[186,28],[48,56],[94,-23],[46,-70],[151,-35],[31,-63]],[[31362,85761],[5,127]],[[31314,85578],[6,142]],[[34008,83176],[-54,28],[-60,93]],[[34687,81502],[92,-160],[33,-182]],[[31257,88965],[17,-16],[167,-3],[53,57],[108,-106],[125,6],[86,-61],[96,-32],[58,-77],[24,-99],[-16,-179],[31,-136],[-2,-146],[-16,-181],[-25,-67],[-62,-51],[-58,-89],[-21,-124],[-86,-155],[-56,-179],[-46,-52],[-63,-145],[7,-148],[-26,-112],[-27,-240],[-38,-115],[13,-153],[-1,-142],[-105,-204],[-27,-128]],[[31362,85761],[-42,-40]],[[31314,85578],[-2,-71],[33,-85],[72,-25],[42,-96],[48,-61],[-1,-73],[70,-173],[26,-130],[25,-46]],[[31627,84818],[89,-71],[32,-95],[52,-92],[69,-36],[102,-151],[76,-76],[15,-47],[83,-106],[58,-28],[95,-93],[52,-87],[14,-94],[75,-156],[0,-175],[48,-108],[23,-92],[31,-46]],[[32541,83265],[76,-43],[91,-131],[113,-43],[52,-72],[57,-17],[27,-47],[76,-55],[66,-12],[69,134],[39,30],[6,86],[45,173],[41,105],[120,23],[36,82],[91,-64],[60,11],[194,-36],[48,-1],[46,-91]],[[34008,83176],[9,-49],[87,-83],[23,-68],[40,-40],[19,-133],[45,-84],[11,-67],[42,-80],[48,-207],[38,-62],[53,-37],[69,-157],[22,-86],[70,-101],[43,-9],[40,-51],[15,-102],[-11,-61],[29,-92],[-13,-105]],[[34812,81159],[37,-109],[125,-27],[66,-88],[26,14],[91,-48],[63,-82],[182,-8],[52,-20],[110,-126],[74,76],[49,1]],[[135452,99257],[-84,145],[-73,79],[23,70],[-35,112],[-67,22],[-113,-27],[-80,6],[-51,51],[-80,9],[-161,-128],[-43,-56],[-94,-12],[-213,-76],[-110,-23],[-71,10],[-77,-104],[-156,-74],[-244,-89],[-153,-15],[-81,9],[-27,-63],[-73,-6],[-23,-60],[-95,-57],[-2,-89],[-109,-142],[-128,-60]],[[136505,111099],[257,-8],[146,-144],[-30,-87],[212,-169],[115,-36],[29,-57],[132,-106],[-2,-47],[115,-143],[-10,-79],[75,-88],[50,-191],[100,-36],[131,-92],[205,-33],[239,41],[295,119],[432,30],[169,45],[149,-6],[49,-34],[237,-17],[198,11],[83,-61],[80,0]],[[132742,108785],[84,-25],[185,118],[133,34],[130,217],[214,85],[10,132],[236,91],[44,145],[115,151],[122,56],[6,100],[158,121],[88,159],[367,167],[102,103],[270,55],[118,-92],[127,19],[186,120]],[[134069,102617],[-204,44],[-92,91],[63,163],[173,64],[47,115],[-38,126],[19,241],[-125,-30],[-58,22],[-19,90],[-66,46]],[[135290,101518],[115,52],[2,57],[51,108],[-57,65],[-103,-35],[-94,171],[34,78],[11,126],[35,89],[-80,71],[-161,49],[-67,58],[-18,86],[-112,45],[-124,11],[-131,-95],[-28,-92],[-111,-30],[-48,92],[-156,131],[-139,18],[-48,42]],[[128078,102083],[123,53],[69,-5],[198,122],[28,85],[198,97],[44,146],[96,58],[-59,79],[-52,20],[-14,75],[-152,186],[-107,188],[30,94],[-104,90],[55,189],[-29,57],[85,105],[71,-28],[23,77],[118,-43],[1,72],[75,-8],[32,70],[138,11],[16,83],[-102,75],[112,126],[-34,32],[7,107],[129,130],[122,7],[52,-104],[140,26],[223,154],[35,89],[-55,79]],[[140289,108852],[71,127],[-50,38],[41,71],[276,41],[47,56],[338,72],[164,-22],[101,-54],[173,-23],[41,-49],[123,-19],[207,-95],[107,-87],[151,-6],[120,-50],[9,-86],[134,-12],[103,36],[140,-10]],[[132542,95898],[-41,115],[-126,198],[-71,202],[-48,41],[-123,3],[-43,34],[-101,21],[-108,-61],[-78,24],[-306,-24],[-210,-49],[-68,-29],[-53,-61]],[[148175,107365],[39,34],[150,-63],[117,-14],[122,62],[185,-24],[59,-69],[146,-77],[144,-30],[284,-5],[138,47],[102,-97],[25,-61],[138,-108],[33,-79],[-29,-258],[-63,-48],[-239,-88],[-60,-157],[-87,-79],[-176,-15],[-84,-97],[-253,13]],[[127294,85778],[-65,15],[-92,83],[-122,76],[-43,64],[-66,45],[-45,-6],[-129,78],[-67,-49],[-24,-48],[-159,36],[-18,44],[-55,19],[-66,-49],[-79,63],[-211,4],[-147,27]],[[133549,93227],[49,155],[77,153],[-61,99],[62,103],[73,261],[53,62],[60,149],[53,25],[134,-54],[86,12],[133,44],[82,115],[99,59],[66,72],[157,-18],[180,56],[103,74],[71,9]],[[102864,99006],[-30,-116],[14,-75],[-18,-103],[-54,-55]],[[103128,100751],[-10,-147],[-124,-158],[18,-34],[-48,-114],[29,-163],[55,-137],[-102,-71],[3,-133],[57,-55],[-61,-98],[-64,-162],[38,-209],[74,-48],[-67,-92],[-62,-124]],[[102776,98657],[-2,-61],[58,-115],[-8,-94],[-41,-51],[-99,-24],[-83,-53],[-114,-32],[-217,67],[-98,51],[-43,51],[-124,37],[-149,3],[-79,31],[-51,55],[-244,152],[-100,24],[-130,-15],[-39,27],[-138,-9],[-94,-41],[-212,-51],[-97,-48],[-134,8],[-55,-52],[-66,13],[-83,-39],[-74,34],[-92,-27],[-44,-69],[-49,27],[-174,-8],[-5,-33],[-127,-79],[-122,-49],[0,-82],[-78,-120],[10,-90],[-35,-79],[16,-100],[-26,-149],[82,-72],[26,-66],[-12,-104],[54,-48],[35,-153],[66,-76],[18,-75],[74,-77],[28,-97],[-52,-143],[-11,-225],[-75,-67],[-38,-187],[49,-217],[-27,-231],[37,-71],[77,-81],[28,-164],[-13,-53],[-78,-111]],[[78336,92300],[-4,-103],[-169,-30],[-56,-58],[-22,-147],[-49,-101],[-110,-16],[-143,-231],[-33,-15],[-91,-129]],[[30486,84129],[-34,145],[12,110],[-4,120],[37,147]],[[47503,94414],[-39,-39],[-76,-142],[-8,-86],[56,-134],[-4,-177],[92,1],[32,-106],[-80,-198],[10,-92],[-13,-100]],[[41594,96437],[53,-7],[-61,200],[39,25],[34,128],[-66,314],[49,46],[25,83],[18,174],[18,29],[-7,148],[102,35],[115,75],[53,80],[100,15],[91,104],[165,100],[121,8]],[[55489,44941],[34,64],[58,22],[6,154],[-31,105],[-45,33],[-27,80],[-86,37],[-39,90],[-5,133],[20,45],[-66,204],[-55,86],[-83,20],[-55,123],[-57,72],[-88,65],[-52,137],[-58,62],[-31,-8],[-141,75],[-180,-36],[-78,3],[-39,-56]],[[53828,45640],[-32,106],[-117,-41],[-78,34],[-67,112],[-50,53],[-80,29],[-63,-82],[-75,11],[-98,57],[-43,-16],[-130,-11],[-98,-42]],[[49784,40274],[35,-23],[85,32],[105,-22],[110,-48],[99,-97],[59,-24],[99,-88],[38,-58]],[[57613,47421],[-48,30],[-29,74],[-45,27],[-55,100],[-171,-42],[-36,94],[-31,-1],[-112,101],[-35,118],[-33,4],[-74,77],[-112,72],[-80,68],[-8,72],[-30,26],[0,86],[-42,52],[-28,72],[-18,125],[-47,52]],[[46086,28970],[-37,129],[-78,-43],[-38,34]],[[91836,67313],[-28,33],[-63,177],[12,116],[-31,118],[-6,120],[17,129],[-1,149]],[[33406,100249],[1,0]],[[33407,100249],[23,-11]],[[32982,100019],[-91,-21],[-111,-98]],[[34316,99978],[0,-1]],[[34316,99977],[92,-82],[49,-162],[90,-35],[103,38],[94,-59]],[[34780,99697],[116,56],[361,97],[97,77]],[[33430,100238],[110,-58],[145,2],[104,60],[107,-85],[96,25],[59,-151],[32,-16],[149,29],[79,-15],[5,-52]],[[32982,100020],[169,96],[-24,61],[32,97],[104,42],[144,-67]],[[32274,99733],[94,-71],[47,51],[118,15],[65,44],[104,1],[76,128]],[[34744,99677],[36,20]],[[91045,59337],[-1,-46],[-75,-85],[-59,11],[-51,-30]],[[90859,59187],[-29,-61],[-59,-53],[-24,13]],[[92098,102364],[148,6],[97,-76],[73,86],[60,16],[26,75],[58,46],[50,-154],[104,-69],[139,34],[121,-10],[39,-56]],[[92680,110153],[21,139],[63,60],[34,155]],[[92798,110507],[93,196],[63,57],[0,86]],[[92695,110074],[-15,79]],[[86432,91336],[-18,98],[-130,258],[-5,152],[28,120],[-52,69],[-124,59],[-44,-26],[-3,-60],[-71,-35],[-68,-72],[41,-110],[-32,-52]],[[73998,92019],[-69,-41],[-120,-36],[-53,-57]],[[85915,91953],[-58,-73],[8,-76]],[[117233,78332],[-76,-59],[-48,4]],[[113709,83912],[-37,74],[-59,16],[-41,-106],[-107,-123],[-45,-18],[-21,-91],[104,-155]],[[116788,79621],[-71,-134],[15,-69],[-25,-39]],[[118121,80391],[-65,-58],[-94,73],[-91,-107],[-33,-97],[-36,-27],[-47,-144],[1,-68],[-37,-102],[-45,-28],[-35,-188],[-41,38],[27,159],[-34,82],[-51,-29],[-76,106],[-37,-47],[-66,43],[-16,41],[-64,51],[-38,-55],[-89,-59],[-36,0],[-98,48],[-86,103],[-57,-39],[-7,-74],[15,-105],[-18,-67],[-71,-128],[-8,-92]],[[116707,79379],[-57,-40],[-28,-57],[-27,-152],[-36,-37]],[[116603,79137],[-14,-73]],[[113687,82994],[-28,-140],[-31,-31],[-27,-101],[-75,-108],[25,-104],[-34,-109],[44,-92],[-52,-108],[37,-106],[81,-22],[72,20],[43,-30],[76,-11],[23,-61],[-94,-155],[-62,11],[-9,-63],[-45,-19],[3,-91],[77,-91],[113,-204],[62,-191],[40,-5],[22,-76],[49,-19],[92,-177],[21,-115],[36,-33],[62,-117],[4,-132]],[[113348,111460],[105,-45],[75,-118],[250,-107],[146,-45],[127,87],[166,30],[131,-54],[246,-161],[22,-61],[-102,-85],[93,-146],[-83,-128],[172,-165],[10,-145],[101,-93],[-74,-196],[81,-110],[-98,-67],[-43,-77],[44,-130],[124,-76],[-24,-96],[52,-70],[-14,-117],[31,-97],[-204,-135],[59,-53],[110,48],[105,-7],[130,-105],[118,-54],[3,-64],[-86,-32],[16,-65],[230,-34],[20,-102],[-46,-107],[100,-78],[-61,-419],[-58,-218],[-71,-82],[-29,-124],[28,-83],[-23,-206],[40,-59],[-131,-199],[27,-63],[-47,-178],[87,-17],[246,-162],[66,-107],[100,-54],[37,-121],[120,-138],[96,-58],[-11,-63],[127,-287],[198,-109],[44,-117],[80,26],[65,-55],[-42,-43],[-168,-62],[-41,-129],[67,-214],[104,-139],[-12,-50],[86,-222],[91,-63],[107,-140],[103,-307],[187,-191],[18,-70],[123,-73],[42,-82],[154,-125],[-19,-120],[38,-100],[124,-94],[62,-114],[120,-13],[63,-39]],[[117498,71645],[33,0]],[[117484,71234],[41,0]],[[117478,71144],[-4,-72]],[[127710,85291],[-82,48],[-39,111],[-49,23],[-121,92],[-70,135],[-55,78]],[[50414,39946],[155,-6],[59,-42],[9,-92],[33,-51],[56,4],[99,-49],[70,39],[21,-81],[37,-48],[155,74],[99,116],[47,86],[98,91]],[[89227,49807],[-54,75],[-78,80],[-6,73],[25,102]],[[98839,88343],[30,73],[66,87],[34,94],[51,21],[18,118]],[[80047,99271],[69,-39],[50,-69],[-28,-70],[51,-81],[9,-77],[-115,-95]],[[113283,100850],[-13,-30],[-152,-115],[-80,-37],[-165,-147],[-122,-40],[-110,-147],[-79,-39],[-8,-113]],[[107181,105222],[112,66],[49,-22],[94,75],[115,-5],[83,-37],[105,7],[86,39],[79,-22],[169,25],[101,-34],[238,12],[192,-16],[120,37],[73,-46],[93,24],[54,-27],[160,-10],[86,14],[53,-36],[73,32],[78,-45],[120,38],[126,-30],[72,22],[180,-67],[142,-2],[98,-80],[45,38],[140,-31],[110,-78],[84,20],[109,-102],[138,-42],[77,-55],[59,37],[98,-57],[5,-53],[130,-99],[129,17],[111,-144],[71,-58],[65,20],[60,-85],[-41,-52],[24,-69],[79,-50],[-13,-72],[73,-108],[74,3],[119,-70],[134,5],[74,-128],[69,57],[50,-85],[148,-94],[173,-5],[111,-85],[6,-161],[142,-21],[31,-78],[80,4],[124,-145],[97,-43],[128,4],[11,-101],[98,-33],[107,-262],[111,-32],[108,-169],[-4,-74],[193,-100],[34,-52],[-29,-65],[17,-93]],[[113891,102288],[-36,-129],[-64,-53],[-55,-92],[-21,-214],[-52,-72],[-14,-161],[-100,-130],[-46,-101],[-173,-81],[-70,15],[-48,-41],[15,-135],[-26,-91],[98,-88],[-16,-65]],[[114157,99171],[-268,-11],[-148,-70],[-148,42],[-26,77],[6,210],[-27,74],[24,140],[71,10],[-31,88],[19,120],[-52,26],[-140,-10],[-89,64],[-84,-57],[-145,-16],[-117,90],[-7,46],[-118,86],[-74,-1],[-52,37],[-147,-6],[-50,72]],[[56125,59993],[18,-120],[-4,-114],[13,-115],[26,-69],[32,-156],[12,-144],[63,-215],[61,-119],[102,30]],[[56132,60800],[-27,-55],[42,-312],[-4,-246],[-26,-148],[8,-46]],[[90664,98324],[0,-193],[-17,-97],[20,-142]],[[91065,97477],[23,-63],[-11,-108]],[[91821,96846],[-67,61],[-230,108],[-54,40],[-212,111]],[[91258,97166],[0,1]],[[92414,96476],[-50,60],[-113,87],[-66,24],[-71,62],[-145,73]],[[91970,95270],[58,114],[116,164],[28,162],[188,42],[59,31],[207,-44],[36,35],[1,146],[-19,53]],[[92644,95973],[0,1]],[[91906,100900],[-49,-2],[-124,67],[-108,-57],[-34,-91],[-93,-86],[-130,88],[-182,-27],[-90,-64],[-94,29],[-71,-31],[-156,-20],[-83,-68],[-43,7],[-85,-191],[41,-110],[6,-105],[-41,-61],[-15,-225],[33,-72],[20,-133],[-56,-19],[17,-82],[-91,-6],[1,-191],[88,-165],[-6,-69],[32,-69],[64,-49],[10,-51],[79,-82],[48,-152],[-64,-69],[-39,-84],[-16,-102],[45,-151],[-56,-83]],[[91065,97477],[-88,-20],[-84,26],[-53,69],[-73,48],[-70,125],[-30,167]],[[91258,97166],[-102,65],[-79,75]],[[91077,97306],[-2,1]],[[91969,96782],[-74,50],[-74,14]],[[92644,95973],[10,131],[30,135],[-23,104],[-52,74],[-98,5],[-97,54]],[[91585,95144],[220,95],[80,-10],[85,41]],[[30866,99380],[133,-114],[70,-9],[201,-151],[66,-6],[107,32],[57,177],[168,185],[116,175],[77,30],[193,31],[220,3]],[[27077,98879],[69,58],[57,-72],[179,31],[-15,116],[106,154],[98,-12],[111,32],[95,-7],[27,-46],[78,23],[83,-52],[52,25],[-14,104],[-50,152],[-39,43],[-7,168],[76,16],[66,144],[37,35],[111,-9],[63,64],[155,-55],[135,24],[65,119],[77,17],[122,184],[157,162],[109,-43],[93,49],[34,-50],[97,-57],[61,12],[66,-102],[102,5],[22,-34],[99,8],[99,75],[130,-6],[121,-129],[93,-16],[131,-62],[75,20],[75,-142],[87,4],[78,-67],[95,-170],[228,-140],[3,-72]],[[72318,70037],[48,-57],[78,35],[24,159],[65,78],[-11,81],[21,82],[40,78],[56,24],[33,73],[74,91],[9,67],[116,10],[39,89],[43,149],[72,107],[50,48],[-6,153],[52,148],[-17,69],[29,38],[-45,65],[-16,64],[-5,133],[-68,65],[-49,11],[-75,-17],[-2,85],[31,43],[-15,102],[-48,108],[10,63]],[[83349,68079],[90,97],[-10,101],[93,71],[32,88],[0,94],[-40,74],[34,111],[0,69],[-60,98],[-46,20],[-22,105],[-49,72],[-29,87],[-52,-67],[-114,-38],[-65,89],[-80,50],[-90,-98],[-32,0],[-93,183],[-39,13],[-60,-40],[-57,13]],[[116629,86546],[117,28],[326,-79],[66,-64],[93,79],[169,-27],[59,-86],[117,9]],[[94396,89417],[125,66],[68,-39],[51,-64],[93,9],[31,-65],[71,-63],[-15,-65],[47,-16],[-4,-171],[77,-20],[104,24],[71,-9],[164,-61],[233,8],[40,-104],[-13,-95],[81,-25],[76,-58],[69,-86],[11,-114]],[[92054,101566],[14,-68],[60,-39],[-71,-124],[-73,4],[11,-150],[-40,-73],[-50,-159],[1,-57]],[[100871,110155],[-80,-119],[-142,-77],[-149,-41],[-104,-131],[-123,6]],[[100434,109926],[182,109],[36,86],[88,43]],[[100173,109806],[216,79],[83,66],[-112,46],[13,81],[82,107]],[[100273,109793],[-94,14],[-196,-83],[-8,-156],[47,-145],[76,-37],[-34,-254],[69,-94],[10,-105],[-34,-58],[26,-186],[33,-83],[-131,-112],[-60,-256],[345,-85],[181,3],[131,72],[253,15],[118,146],[118,31],[131,131],[57,158],[259,132],[252,5],[117,-192],[85,-59],[-87,-141],[164,-178],[-27,-250],[116,-13],[169,-184],[105,-58],[-48,-145],[7,-106],[-121,-132],[56,-118],[-211,-158],[-58,27],[-124,-44],[-75,-156],[-9,-91],[-110,-137],[-78,-51],[-99,-20],[91,-87],[59,-140],[-12,-79],[82,-16],[129,-95],[17,-202],[-58,-116],[54,-14],[56,-155],[136,-119],[129,17],[118,70],[51,-9],[39,115],[165,96],[68,-15],[112,-74],[79,65],[71,-40],[79,30]],[[100273,109793],[4,0]],[[57498,48514],[63,-19],[142,2],[65,141],[62,-15],[28,24],[38,149],[40,62],[-5,78],[33,84],[13,104],[46,119],[64,53],[18,103]],[[146762,110402],[-115,-48],[-233,60],[-99,-4],[-298,71],[-233,86],[-51,-64],[-119,-47],[-43,-134],[-119,-79],[-31,-143],[-91,-43],[-221,-29],[-127,-71],[-197,39],[-16,-97],[117,-58],[-138,-79],[-195,-30],[-34,26],[-215,8],[-116,-52],[-315,-7],[-54,-47]],[[143819,109660],[-90,-2],[-93,-67],[63,-123],[-36,-25],[-198,-18],[-45,-87],[-110,-54],[-120,-140],[-36,-86],[-215,-73],[-61,-130],[-144,-90],[-154,-1],[-14,-54],[-125,-11],[23,-196],[218,-225],[107,-176],[94,-34],[118,-142],[207,-131],[179,-6],[132,-78],[125,-9],[122,46],[88,-1],[17,-166],[36,-73],[98,-40],[89,-106],[-35,-76],[-66,-14],[-209,-114],[-106,-4],[-137,-130],[-113,-81],[-55,-119],[-147,-76],[23,-79],[-22,-116],[-49,-107],[28,-90],[-105,-145],[19,-44],[-126,-24],[-79,13],[-124,97],[-77,-6],[-93,60],[-148,-12],[10,-113],[-17,-157],[-42,-77],[-101,-63],[-118,20],[-145,-78],[-103,-78],[-8,-87],[-57,-80],[-67,47],[-90,3],[-134,-45],[-41,146],[-2,100],[-87,98],[-143,-59],[-56,103],[-278,83],[-65,-128],[7,-68],[67,-46],[21,-251],[-53,-49],[-113,-8],[-132,-75],[-99,32],[-127,141],[-15,44],[-182,109],[-235,-27]],[[119725,82455],[40,-73],[95,-107],[21,-166],[0,-120],[-47,-62],[-37,-5],[-55,43],[38,-205],[45,-137],[61,-136],[6,-193],[-36,-176],[4,-92],[-77,-335],[-36,-71],[-93,-133],[-65,81],[-78,-10]],[[45741,68338],[18,124],[-3,91],[-29,129],[9,120],[-32,68],[-69,98],[-48,-4],[-36,73],[-83,79],[-40,-19],[-46,94],[-76,78],[11,100],[-15,96],[-27,70],[28,81],[-20,78],[-36,28],[8,81],[51,178],[33,52],[2,220],[-58,161]],[[44573,64016],[35,9],[88,-51],[79,67],[17,34],[58,19],[70,75],[2,66],[48,67],[-3,69],[36,63],[5,64],[57,88],[47,227],[-12,52],[13,86],[64,169],[2,57],[50,103],[43,124],[33,239],[-34,21],[31,109],[9,121],[-13,50],[27,61],[12,215],[-3,112],[35,132],[12,170],[-13,48],[31,102],[5,207],[71,131],[12,155],[40,20],[79,94],[44,101],[52,59],[-22,163],[13,178],[33,70],[7,118],[-25,158],[8,69],[28,31]],[[47030,37229],[3,-100],[48,-119],[-6,-61],[29,-140],[-34,-95],[24,-58],[83,6],[99,-34],[59,-76],[32,-105],[52,-17],[34,-227],[-6,-35],[56,-101],[11,-129],[96,-86],[44,-61],[103,5],[97,149],[80,-1],[206,-224],[91,-194]],[[122283,80682],[-21,-29],[-23,-148],[20,-50],[-3,-250],[-71,-113],[-74,-59],[-41,-10],[-20,63],[-57,0],[-38,-35],[3,-99],[-41,-54],[-18,-87],[39,-54],[-14,-103],[16,-241],[22,-161],[159,37],[38,83],[-24,45],[26,79],[58,23],[31,93],[47,69],[55,0],[63,61],[62,29],[71,119],[82,-77],[64,86],[58,30],[16,68],[60,79],[34,-49],[49,13],[55,-97],[72,-19],[48,-52],[56,9],[36,-56],[76,93],[9,66],[-18,58],[65,15],[121,86],[34,48],[94,16],[37,26]],[[79554,95745],[-17,115],[-56,80],[14,48],[-86,182],[-93,62],[-32,78],[-92,137],[-93,19],[-173,-87],[-168,-29],[-160,135],[-43,76],[-1,104],[-61,36],[-31,69],[-101,20],[-76,-24],[-94,47],[-56,77],[-60,38],[-10,66],[-60,73],[-187,75],[-81,-18]],[[132089,113000],[119,-227],[92,-65],[-18,-102],[53,-180],[-13,-113],[38,-116],[81,-61],[-31,-92],[60,-78],[-290,-193],[-229,10],[-152,-18],[-112,-69],[134,-100],[-85,-124],[-204,-114],[-102,-16],[-63,-160],[-169,-242],[-213,-144],[-63,-108],[-5,-167],[-66,-237],[-73,-126],[-194,-113],[-42,-238],[-40,-137],[128,-225],[52,-145],[2,-107],[53,-153],[63,-73],[103,-283],[116,-135],[43,-83],[-24,-197],[53,-63],[2,-87],[62,-107],[158,-134],[113,-21],[120,-84],[42,-114],[258,-113],[114,-23],[216,-155],[251,-239],[238,-88],[86,-110],[109,-48],[277,17],[118,-38],[111,-183],[-30,-105],[63,-88],[63,-242],[78,-110],[-21,-117],[-47,-29],[-12,-154],[-76,-149],[-70,-92],[-137,-110],[-267,-163],[-200,4],[-413,-120],[-217,13],[-200,-43],[-186,-115],[-321,-83],[-73,-53],[-221,-18],[-104,-62],[-131,17],[-584,-28],[-99,21],[-192,-13],[-113,54],[-133,-1],[-207,-109],[-27,-61]],[[129487,104720],[-175,-6],[-84,-113],[-218,29],[-109,-66],[-109,-143],[-132,-23],[-83,-60],[-33,-72],[-80,-25],[-238,107],[-237,145],[-72,159],[-69,70],[-296,91],[-82,42],[-122,125],[-308,-4],[-129,-73],[-124,-147],[-81,-129],[-94,-27],[-128,-164],[-133,-132],[-149,-69],[-80,-11],[-32,-77],[-73,-53],[-14,-106],[-92,-85],[-158,-31],[-39,24],[-98,-109],[-194,-123],[2,-87],[-122,4],[-2,-77],[-211,5],[-124,-39],[-38,15],[-118,-47],[-14,-103],[-124,-141],[-120,48],[-248,-150],[-145,-200],[-228,-113],[61,-76],[-130,-68],[-53,-94],[-83,-9],[-110,48],[-71,-189],[-96,-28],[-170,4],[-81,-131],[-103,-14],[-32,-83],[172,2],[71,-63],[-9,-96],[-87,-75],[-109,-8],[-71,-97],[71,-65],[23,-72],[-48,-172],[-89,-136],[-36,-164],[-56,-103],[-87,-44],[-26,-49],[-5,-133],[71,-41],[7,-111],[-29,-174],[67,-34],[75,-113],[39,-97],[106,-31],[45,-85],[63,-22],[140,-4],[100,37],[223,-14],[2,74],[97,51],[91,139],[86,27],[122,-41],[-9,-130],[-41,-30]],[[85112,97295],[62,-14],[51,-57],[131,78],[62,140],[-40,78],[1,144],[-121,162],[3,73],[-52,105],[-149,71],[-78,63],[-79,107],[-42,9],[-92,101],[-142,-24],[-28,48],[13,188],[-63,65],[-87,4],[-161,96],[17,123],[-55,39],[-185,28],[-50,-19],[-146,20],[-32,31],[4,92],[-39,15],[-29,102],[40,52],[-8,67]],[[83818,99282],[-171,157],[-31,99],[86,62],[15,89],[107,226],[-13,67]],[[31707,89973],[76,-173],[26,-138],[24,-41],[9,-109],[152,-133],[120,76],[189,-49],[99,-103],[213,-5],[35,-38],[169,-44],[82,-66],[61,-8],[95,50],[146,-6],[149,25],[100,-3],[74,-45],[87,-14],[243,-103],[152,74],[98,-29],[74,-52],[118,-50],[89,-12],[138,-65],[80,-18],[35,19],[94,178],[113,156],[136,119],[81,-5],[85,-67],[110,-60],[78,-83],[239,-179],[93,-266],[27,-199],[82,-70],[-6,-75],[32,-111],[-82,-44],[34,-148],[103,60],[20,-84],[31,-5],[31,-78],[38,6],[88,-74],[4,-48],[95,-2],[30,-96],[46,-50],[87,-26],[21,-86],[101,24],[58,-59],[-17,-59],[43,-30],[56,-106],[92,-71],[142,-18],[41,90],[49,-62],[63,10],[-1,50],[117,39],[48,-79],[129,26],[68,-55],[91,-118],[71,8],[185,-152],[27,-87],[65,-62],[53,-20],[-6,-104],[50,-178],[127,-98],[56,-28]],[[38058,86437],[80,-40],[56,-89],[52,-1],[28,-89],[29,-26]],[[71887,73454],[-14,74],[-50,14],[-33,208],[-74,162],[-82,-34],[-30,53],[-28,-42],[-66,75],[-22,87],[-141,196],[-28,17],[-82,-22],[-143,10],[-19,33],[-65,-76],[-158,-12],[-78,-58],[-60,22],[-104,-12],[-34,41],[-84,-56],[-23,-159],[-37,-50],[-32,-257]],[[72851,72281],[-49,-16],[-35,46],[-18,121],[-70,56],[4,81],[-18,78],[-53,81],[-74,31],[-47,63],[-89,20],[-106,115],[-37,-14],[-68,57],[-38,106],[-65,73],[-29,-7],[-72,90],[-46,200],[-51,-12]],[[119732,98531],[-106,-10],[-113,-77],[-129,-18],[-399,-15],[-52,38],[-157,-71]],[[116941,84904],[15,-119],[78,-70],[32,-113],[2,-66],[70,17],[49,-99],[65,-1],[85,118],[126,58],[83,17],[77,-21],[152,6],[135,-43],[88,34],[90,-40],[132,3],[48,-38],[-13,-76],[28,-129],[44,-44],[99,79],[123,2],[77,-42],[45,-108],[97,-14],[33,36],[180,-78],[48,-53],[33,-174],[65,-83]],[[95776,88469],[94,-186],[41,3],[87,-65],[-3,-50],[-57,-58],[73,-41],[34,-58],[73,-56],[57,-131],[18,-112],[-16,-129]],[[96177,87586],[6,-60],[-35,-44],[12,-163],[44,-55],[7,-83],[83,-139],[-25,-56],[24,-100],[42,-53],[20,-116],[21,-12],[23,-205],[71,-107],[121,-24],[77,-78],[-24,-118],[-1,-89],[-37,-94],[42,-152],[75,-147],[151,-109],[76,-91],[76,-14],[6,-51],[53,-75],[58,-34],[47,20],[64,-43]],[[97253,85300],[68,69],[60,31],[106,-88],[123,-25],[48,-87],[-18,-40],[5,-120],[65,-58],[42,-129],[73,-4],[7,-106],[57,-125],[62,-101],[3,-256]],[[97483,104961],[32,29],[88,239],[-12,107]],[[97591,105336],[-188,167],[-202,78],[-143,96],[-107,173],[-63,143],[-90,70],[-184,8],[-180,55],[-118,122],[-408,211],[-45,94],[-200,36],[-42,55],[8,120],[-66,65],[2,111],[-141,43],[-60,67],[94,89],[44,86],[-2,88],[70,33],[-49,83],[-154,43],[-125,4],[-94,64],[-167,71]],[[82660,69271],[-81,6],[-133,-116],[-70,-93],[-77,-40],[-46,-73],[-37,-150],[-60,-71],[-86,-33],[-32,18],[-84,-18],[-12,-49],[-102,-178],[-60,-26],[-33,-57],[-40,-8],[-78,-81],[-42,-17],[-49,-85],[-79,-43],[-63,-11],[-31,-44],[-51,-8],[-60,-41],[-60,-1],[-98,81],[-140,76],[-142,45],[-152,-1],[-86,-47],[-137,-122]],[[119511,80558],[5,-106],[-55,-147],[-41,-25],[-18,-80],[-5,-132],[-52,-56],[-28,-79],[34,-134],[3,-166],[36,-71],[-25,-70],[-94,-29],[-63,113],[-64,47],[-77,-34],[-65,-136],[-6,-100],[-37,-140],[-73,-128],[-25,-225],[-5,-343],[-21,-75],[30,-78],[-10,-109],[19,-212],[19,-92],[-59,-70],[-59,53],[-108,-7],[-60,-132],[-43,-195],[-63,-97],[-128,-63],[-19,-55],[9,-119],[-44,-95],[47,-237],[35,-106],[-4,-107],[16,-71],[96,-185],[-9,-67],[24,-229],[-8,-170],[-21,-40],[-1,-101],[38,-101],[-57,-96],[-8,-74],[56,-91],[8,-47],[74,-92],[29,-138],[-11,-78],[29,-185],[32,-28],[-8,-80],[53,-64],[-34,-59],[19,-174],[-32,-41],[22,-94],[-114,-80],[0,-62],[-35,-96],[-80,-100],[-38,-100]],[[48231,35526],[42,-4],[116,-68],[47,16],[145,-29],[39,-31],[112,4],[104,31],[136,-23],[121,-81],[143,-19],[51,-131],[31,-24],[55,-144],[-2,-63],[84,-58],[82,2],[95,-101],[83,-47],[114,7],[88,-108],[84,-63],[43,-76],[73,-35],[107,-162],[116,-26],[111,-134],[25,-72]],[[117576,86406],[58,88],[141,2],[89,-12],[65,43],[40,117],[65,77],[89,22],[38,61],[129,49],[136,-50],[17,-59],[70,-69],[81,-19],[86,-90],[65,-140],[51,-53],[31,-96],[38,-50],[116,-77],[41,21],[74,-99],[77,-51],[2,-81],[53,-82],[58,25],[24,-86],[91,-141],[10,-55],[46,-33],[30,-137],[100,-97],[151,-67],[83,-76],[6,-72],[100,-186],[-14,-74],[53,-131]],[[81350,95845],[-104,28],[-20,-67],[-104,-13],[-75,24],[-40,-34],[-115,20],[-68,-35],[-60,87],[2,78],[40,153],[-20,64],[77,182],[25,181],[69,99],[57,44],[55,100]],[[80122,98785],[-73,66],[-101,-19],[-127,11]],[[79821,98843],[-98,29],[-182,-74],[-147,-1],[-104,65]],[[97254,85294],[53,-67],[-5,-84],[41,-95],[-26,-145],[58,-82],[14,-207],[65,-175],[63,-79],[-23,-138]],[[118776,98378],[-16,53],[-139,128],[-39,-8],[-133,80],[-239,53]],[[116937,100078],[-29,44],[7,92],[43,68],[-14,72],[-100,174],[-14,90],[-141,108],[8,153],[35,80],[57,40],[78,4],[173,50],[154,59],[43,42],[87,154]],[[117578,103117],[57,-53],[45,-106],[39,-215],[-32,-54],[0,-97],[85,-86],[7,-79],[-39,-69],[43,-123],[117,-133],[12,-85],[-85,-141],[-74,-76],[-106,-48],[-99,-89],[-95,-26],[-153,-4],[-47,-82],[93,-74],[19,-81],[-41,-88]],[[118210,98684],[-166,-110],[-110,10],[-141,-15],[-73,24],[-136,5],[-96,-23],[-116,40],[-160,102],[-74,124],[158,146],[58,124],[-118,191],[-40,-36],[-71,34],[-84,-10],[-36,68],[-83,-33],[-65,79],[84,153],[-19,116],[109,18],[99,135],[-21,57],[-98,56],[-59,76],[-15,63]],[[119127,83863],[43,-68],[74,-77],[81,-30],[72,-64],[85,-170],[8,-110],[62,-150],[53,-25],[83,-86],[20,-93],[60,-122],[43,-139],[46,-36],[30,-62],[5,-93],[29,-36],[20,-253],[73,-89],[9,-161],[67,-146],[-9,-69],[33,-140],[-8,-60],[13,-501],[-24,-258],[-2,-114],[25,-313],[-23,-277],[49,-228],[40,-46],[-10,-132],[32,-155],[-43,-17],[-63,-72],[-59,-13],[-96,-52],[-35,-58],[26,-104],[55,-72],[21,-71],[-26,-72],[56,-81],[2,-88],[-92,-39],[23,-90],[-20,-74],[64,-48],[-52,-55],[-1,-79],[44,-160],[-33,-133],[27,-91],[54,-66],[-13,-58],[-74,-70],[13,-114],[28,-93],[-35,-47],[45,-86],[13,-148],[35,-53],[-19,-76],[-100,-29]],[[123596,80238],[26,-143],[54,-19],[69,-124],[-3,-94],[63,-130],[28,-102],[38,-41],[0,-63],[-53,-68],[15,-79],[46,-45],[31,16],[61,-154],[73,11],[65,57],[51,90],[53,57],[71,-28],[57,-95],[73,-29],[17,-119],[130,48],[21,-32],[116,80]],[[124698,79232],[58,-96],[35,-135],[148,-42]],[[124939,78962],[57,126],[104,-71],[99,-28],[40,17],[47,-70],[76,57],[69,-14],[30,33]],[[91313,65179],[-64,130],[-110,178],[-38,129],[4,180],[-13,57],[39,70],[5,101],[69,285],[-7,121],[21,86],[-13,157],[-97,256],[-29,145],[-56,128],[-11,72],[-73,145]],[[81069,96756],[55,101],[13,85],[40,45],[6,102],[-58,154],[34,43],[-45,162],[-69,60],[-110,-50],[-66,63],[-20,66],[-56,57],[-4,119],[-106,53],[-52,76],[-16,71],[-86,98],[-3,129],[-53,94],[-53,37],[-2,205],[-190,218],[-121,45],[-59,-24],[-60,31],[-111,-2],[-38,-52],[-167,4]],[[79672,98746],[-84,-14],[-50,-58]],[[79421,98666],[-140,94]],[[55781,53719],[15,104],[38,108],[114,143],[-13,65],[44,134],[55,91],[-21,85],[17,88],[6,143],[-21,168],[8,40],[-29,158],[21,279],[0,190],[-43,209],[-52,70],[-6,95]],[[119951,77251],[2,-142],[59,-183],[-2,-74],[22,-59],[-7,-76],[-75,-62],[-46,-10],[-71,-57],[-92,-32],[-62,-2],[-20,-61],[-72,-109],[-33,-200],[-20,-19],[-2,-168],[-19,-70],[-6,-103],[-19,-57],[-45,22],[22,-230],[31,-130],[47,-4],[52,-122],[31,-128],[-33,-108],[19,-155],[22,-69],[-5,-61],[-37,-57],[0,-98],[-26,-88],[11,-86],[-15,-173],[30,-90]],[[46088,94815],[-50,-16],[-31,-70]],[[75669,92615],[101,-13],[12,-109],[83,8],[64,-27],[7,64],[112,-79],[157,-6],[192,-193],[54,9],[123,-52],[56,-2],[92,-111],[90,-55],[33,-81],[123,-136],[99,-67],[145,-147],[102,-77],[41,-108],[172,-34],[96,100],[59,-43],[-5,-67],[93,-7],[37,-118],[-67,-85],[12,-96],[44,-67],[105,5]],[[36821,95706],[-56,-12]],[[36899,95670],[72,48],[28,-29]],[[36821,95706],[78,-36]],[[36999,95689],[40,-66],[80,-73],[78,18],[72,-44],[37,-98],[41,-29],[-68,-191],[-74,-38],[-44,-91],[-58,24],[-81,-10],[-29,-85],[-130,-163],[24,-76],[-19,-122],[13,-64],[59,-81],[54,-187],[137,-103],[82,-6],[120,-105],[11,-77],[51,-96]],[[37395,93926],[41,30],[40,-107],[72,-22]],[[37548,93827],[101,-105],[82,-19],[52,-80],[74,-20],[65,-70],[49,-107],[75,-76],[102,-35],[56,-72],[20,-105],[-1,-205],[24,-75],[48,-60],[-36,-84],[16,-173],[37,-118],[34,-28],[113,-32],[21,-115],[83,-80],[26,-91],[100,-89],[13,-60],[-26,-151],[-45,-46],[-18,-99],[-41,-43],[-113,-65],[-124,-12],[-27,-35],[-12,-135],[56,-79],[-6,-90],[-55,-86],[-40,-118],[-85,-38],[1,-143],[-39,-25],[-20,-127],[30,-216],[41,-107],[108,-124],[23,-56],[99,-92],[39,-83],[12,-144],[50,-81],[46,56]],[[38556,89789],[85,-22],[64,-76]],[[36531,95539],[-33,79],[47,83],[70,-3],[65,38],[85,-42]],[[37812,75364],[-31,114],[-62,72],[-26,105]],[[38480,74233],[3,-61],[74,-68],[33,-58],[-26,-62],[5,-125]],[[38480,74233],[-35,91],[-143,119],[-96,189],[-65,34],[5,105],[-29,16],[0,101],[53,15],[-4,95],[-55,64],[-82,-61],[-31,38],[-19,77],[-58,-12],[-45,158],[-46,4],[-18,98]],[[37812,75364],[-120,50],[-34,55],[-46,27]],[[22340,102554],[110,72],[98,-7],[36,69],[-50,78],[26,81],[-200,10],[-56,91],[-132,91],[-35,-19],[-390,-31],[-157,82],[-95,10],[-83,57],[-158,6],[-42,-42],[-120,-49],[-46,-60],[-104,-47],[-15,-51],[-124,-115],[-33,-81],[5,-122],[-31,-53],[63,-82],[-35,-42],[0,-244],[-53,-32],[-120,28],[-60,-53]],[[41015,70404],[-30,-7],[-116,129],[-134,251],[-80,133],[-77,105],[-38,72]],[[40440,71163],[100,-76]],[[41015,70404],[161,-68],[36,-70],[44,-40],[8,-56],[72,4],[39,-48],[116,62],[9,83]],[[119966,84728],[21,-64],[126,-170],[-50,-86],[-37,60],[-27,-90],[79,-137],[-12,-62],[77,-107],[-21,-59],[24,-141],[11,-220],[30,-160],[-22,-66],[-8,-118],[24,-61],[9,-177],[20,-59],[4,-359],[22,-74],[-3,-114],[102,-217]],[[120335,82242],[22,-148],[-4,-109],[91,-301],[65,-85],[62,-116],[7,-76],[43,26],[0,150],[75,118],[-19,100],[44,143],[2,98],[52,4],[19,-116],[-7,-120],[33,-69],[12,-101],[-25,-47],[-18,-109],[-1,-142],[-23,-16],[12,-198],[15,-81],[-21,-72],[15,-50],[196,-39],[37,68],[59,53],[129,33],[10,88],[31,50],[77,-18],[46,25],[62,-131],[-14,-141],[-31,-50],[-2,-109],[105,12],[27,92],[45,68],[137,104],[18,-83],[47,-15],[68,88],[54,25],[24,95],[-36,205],[-32,65],[6,131],[-11,124],[38,68],[62,17],[42,107],[84,123],[41,84],[2,75],[-34,67],[59,122],[59,-19],[74,77],[-37,143],[24,95]],[[81860,99888],[-30,55],[-73,5]],[[81860,99888],[-107,54]],[[81860,99887],[0,1]],[[82909,98785],[-203,-6],[-161,179],[20,77],[127,153],[-11,54],[30,154],[-10,82],[-81,37],[-29,47],[-149,60],[-83,50],[-58,-6],[-151,114],[-152,80],[-86,-13],[-52,41]],[[83206,98503],[-71,85],[-77,53],[-11,109],[-138,35]],[[84236,97959],[66,-158],[78,-67]],[[84380,97734],[-37,-74],[-23,-150],[-253,-6],[-20,64],[-198,35],[-91,112]],[[83758,97715],[-49,89],[-143,79],[74,80],[17,72],[-16,75],[-126,38],[-45,71],[-105,36],[-68,67],[-94,181]],[[35703,107754],[-80,-37],[-143,42],[-207,-41],[-139,-45],[-132,-101],[-122,-20],[-35,60],[-289,24],[-113,46],[-83,-60],[-247,23]],[[33675,107511],[119,57]],[[36060,107434],[109,-17],[50,-46],[197,-37]],[[36416,107334],[185,8],[79,-16],[82,-64],[111,-19],[70,34]],[[32374,106578],[59,53],[-4,85]],[[35703,107754],[121,-14],[106,-57],[44,-156],[86,-93]],[[33794,107568],[284,44],[35,33]],[[36943,107277],[197,-57]],[[32429,106716],[14,76],[105,170],[-21,29],[78,103],[141,66],[116,186],[87,93],[162,11],[188,-24],[38,-89],[196,28],[125,83],[17,63]],[[31896,106079],[204,53],[130,16],[234,-15],[42,64],[-112,121],[-30,91],[59,72],[-60,24],[11,73]],[[36395,107260],[21,74]],[[36231,106985],[-243,-40],[-220,26]],[[35550,106638],[74,248]],[[33310,106361],[25,-144],[-58,-99]],[[33798,106294],[-6,118],[-69,79],[-144,-15]],[[35166,106261],[40,76],[231,30],[39,147]],[[33667,106194],[21,-148],[179,30]],[[34218,106079],[117,-29],[97,-68],[97,-10],[91,69]],[[33888,106072],[67,15]],[[33955,106087],[38,24],[146,-32]],[[33198,106054],[91,-107],[-131,-97],[-63,-132]],[[33069,105610],[-98,-220]],[[36231,106985],[37,-1],[49,150],[81,79],[-3,46]],[[35624,106886],[100,100]],[[35476,106514],[74,124]],[[33579,106476],[-80,-68],[-189,-47]],[[33667,106194],[130,100]],[[33277,106118],[-79,-64]],[[34139,106079],[79,0]],[[33867,106076],[21,-4]],[[34620,106041],[226,-42],[127,23],[114,-34],[162,54],[-83,219]],[[33095,105718],[-26,-108]],[[32971,105390],[-12,-77],[-129,-119],[24,-92]],[[31951,90637],[-20,-8]],[[29990,89050],[-37,-66],[-10,-91],[-47,-51],[-63,-175],[-34,-20],[-61,-128],[-85,-16],[-61,-59],[-54,0],[-24,-66]],[[28106,87738],[9,55],[72,48],[94,-21],[44,-74],[47,15],[17,78],[53,-12],[78,-69],[63,-147]],[[28171,87278],[-33,115],[10,79]],[[28263,86712],[6,-51],[103,-104]],[[31938,90795],[13,-158]],[[31931,90629],[-121,-59],[-104,-2],[-80,-80],[-146,-47],[-92,-179],[-72,-39],[-139,-13],[-80,11],[-84,-63],[-89,-94],[-61,-156],[-65,-37],[-57,17],[-56,54],[-74,26],[-139,-164],[-9,-103],[-25,-57],[-88,-88],[-117,-269],[-142,-167],[-32,-72],[-69,2]],[[29514,88378],[-58,-62],[-101,-222],[-6,-146],[21,-116],[-58,-64],[-47,33],[-74,9],[-57,97],[-68,16],[6,85],[-163,-84]],[[28910,87924],[-1,0]],[[28909,87924],[-2,0]],[[28909,87924],[-130,-85],[-69,-82],[13,-132],[-18,-61],[-56,0],[-66,47]],[[28106,87738],[32,-97],[-8,-107],[18,-62]],[[28171,87278],[8,-112],[-27,-38],[8,-179],[53,-88],[49,-148]],[[28372,86555],[-51,-84],[-60,-49],[-60,-126],[8,-131],[-14,-134],[-39,-87],[-39,-14],[19,-147],[-10,-81],[96,-72],[6,-76],[-33,-96],[-80,-10]],[[28115,85448],[-48,-162],[-32,0],[-65,-181],[-53,-28],[-14,-91],[77,-66]],[[56255,48752],[-70,35],[-144,-1],[-117,50],[-91,0]],[[55833,48836],[0,1]],[[55562,48667],[53,75],[74,40],[49,80]],[[55738,48862],[1,1]],[[57250,48540],[70,-82],[100,-80],[40,-74]],[[58048,47998],[-71,10],[-127,135],[-34,109],[-31,21],[-45,-42],[-26,39],[-46,-17],[-96,20]],[[58407,47718],[-98,102]],[[55833,48836],[-40,55],[-55,-29]],[[57250,48540],[-64,48],[-35,66],[-58,59],[-13,54],[-79,-49],[-27,37],[-55,-3],[-99,-119],[-41,33],[-195,-35],[-96,-7],[-19,-68],[9,-102],[-44,5],[-1,118],[-30,61],[-47,-106],[-29,1],[-35,105],[11,122],[-48,-8]],[[57572,48273],[-38,-11],[-74,42]],[[58309,47820],[-40,76],[-45,3],[-62,72],[-40,-51],[-40,8],[-34,70]],[[58380,47237],[84,101],[24,91],[58,79],[-18,109],[-33,82],[-88,19]],[[76347,90882],[1,0]],[[76348,90882],[10,51],[57,85]],[[74942,90411],[83,-42],[112,25],[141,-11]],[[76809,90901],[14,73],[-23,71],[-104,67],[-28,-18],[-146,-22],[-53,-48],[-54,-6]],[[76348,90882],[-38,-98],[-142,-202],[-60,-31],[-159,-14],[-52,-55],[-111,-62],[-63,19],[-62,-46],[-60,26],[-111,85],[-52,-17],[-68,-105],[-92,1]],[[74942,90411],[-190,-82],[-82,39],[-84,-6],[-71,-61],[-56,-9]],[[85626,97425],[54,4]],[[85680,97429],[80,23],[46,73],[232,-63],[96,58],[75,-15],[109,66],[78,11],[74,86],[177,44],[109,104],[69,26],[110,177],[-34,259],[14,68],[74,66],[-66,153],[-63,9],[-87,63],[-42,113],[-63,53],[-12,139],[-131,183],[-92,39],[-130,-29],[-152,5],[-143,102],[-136,67],[-140,31],[-99,156],[-68,78],[-94,7],[-118,51],[23,95],[61,83],[133,62],[31,42],[-2,106],[46,51],[14,107],[-28,147],[54,106],[3,80]],[[85656,97229],[-51,177],[21,18]],[[24809,91093],[12,-47]],[[24821,91046],[-18,-30]],[[24797,91387],[73,-17],[-67,-167],[6,-110]],[[24803,91016],[-12,-68],[42,-82],[67,-47],[20,-91],[-28,-86],[35,-23],[33,-225],[45,-85],[-30,-252],[91,-224],[-11,-47],[94,-120],[12,-86]],[[25161,89580],[38,-38],[-6,-242],[-45,-70],[-34,-6]],[[90894,104405],[55,4],[105,194]],[[90894,104405],[-46,-72],[-118,-27],[-117,104],[-73,-29]],[[39634,87691],[-7,65],[28,73],[-10,83],[-45,116],[-1,149],[-58,191],[-39,72]],[[40098,86737],[-127,124],[-70,42],[-75,13],[-73,-41]],[[39502,88440],[-87,12],[-44,36]],[[41360,87639],[-70,-26],[-26,-47],[-73,-8],[-72,69],[-106,-120],[-10,-78],[-78,-78],[-51,-116],[-15,-86],[-62,-55],[-79,-36],[-36,40],[-60,-48],[-32,-89],[-126,-219],[-113,-135],[-145,119],[-108,11]],[[39753,86875],[-66,-10],[-48,88],[-85,50],[-19,73],[-48,69],[18,81],[110,107],[21,71],[-25,142],[42,126],[-19,19]],[[90940,67419],[-34,54],[-94,84],[-42,80],[-42,124],[-37,150],[-31,78],[16,122],[-47,118],[-18,85],[-33,53],[22,187],[-36,68],[15,78],[-29,46],[-16,204],[68,137],[-17,85],[43,94],[43,40],[107,-25],[100,-4],[52,-46]],[[104124,94706],[-85,62]],[[107008,91285],[-83,-2],[-94,34],[-35,67]],[[107826,90817],[-21,-59],[-207,-54]],[[104039,94768],[-21,15],[-111,-64],[-77,5],[-86,63]],[[106796,91384],[60,80],[5,65],[-26,98],[-9,110],[28,41],[61,211],[14,206],[-35,80],[30,78],[-12,114],[-56,57],[2,61],[-116,82],[9,88],[-22,77],[-64,32],[-75,92],[9,31],[-92,146],[-54,112],[-105,57],[-53,-42],[-119,56],[4,60],[-50,36],[2,52],[-131,166],[-69,11],[-19,95],[-45,73],[-81,4],[-119,129],[-151,70],[-96,-18],[-47,43],[-65,11],[-77,127],[-41,34],[-53,114],[-97,18],[9,86],[-95,92],[-106,-48],[-60,-48],[-68,-8],[-45,70],[-164,15],[-58,38],[-181,-20],[-65,-54],[-94,55],[10,187]],[[107598,90704],[-81,27],[-30,-42],[-109,-26],[-86,81],[-27,228],[-135,130],[-17,50],[-105,133]],[[109094,91751],[-128,25],[-83,-13],[-67,-88]],[[111005,91823],[85,11],[20,-66],[-88,-95],[-26,-58],[-64,-39],[-125,-3],[-36,-19],[-98,9],[-155,-21],[-51,21],[-170,-40],[-121,9],[-89,-55],[-43,-1],[-119,46],[-253,-27],[-63,22],[-102,-47],[-106,41],[-28,36],[-3,99],[-31,65],[-122,59],[-124,-19]],[[108816,91675],[-104,-110],[-71,-48],[-48,-185],[-102,-129],[-110,-69],[-124,2],[-78,-39],[-49,15],[-100,-81],[-204,-214]],[[25001,92237],[37,-55],[24,-101]],[[25063,92080],[-26,-94],[-56,33],[-91,-117],[-82,-7],[-101,-92],[-67,34],[-107,-61],[-41,30],[-104,-38],[-61,-145],[14,-146],[-54,-109],[-73,35]],[[24214,91403],[-26,12],[-47,145],[-52,26]],[[29597,103596],[26,-55],[88,-13]],[[29711,103528],[-26,-130]],[[29597,103596],[0,108],[-56,43]],[[28407,101075],[136,60],[68,-65],[74,-153],[-29,-88],[46,-36]],[[28705,100793],[-3,0]],[[28702,100793],[71,84],[127,64],[72,8],[-55,84],[23,91],[54,49],[-46,212],[76,84],[-23,121],[57,213],[-87,149],[56,64],[89,37],[88,-19],[92,33],[69,-10],[161,91],[21,59],[-24,137],[-62,93],[-29,127],[11,84],[107,198],[-12,168],[35,55],[-10,110],[-55,47],[6,131],[164,4],[7,37]],[[27806,100369],[88,4],[160,117],[96,2],[130,129],[27,210],[97,244]],[[26881,98994],[27,13],[-56,145],[-13,110],[-66,30],[-16,72],[-81,119],[-14,119],[101,181],[200,145],[95,104],[-12,95],[55,93],[82,44],[64,83],[117,69],[86,20],[120,-48],[236,-19]],[[91054,104603],[42,94],[62,66],[148,66],[99,86],[220,-79],[22,-69]],[[91647,104767],[2,1]],[[91647,104767],[111,34],[53,84],[84,63],[125,20],[110,151],[85,-43],[141,39],[142,7],[25,27]],[[76787,68672],[74,29],[31,59],[39,4],[58,-60],[81,14],[34,-24]],[[75258,70419],[45,-13],[57,96],[63,17],[95,115],[36,-43],[61,76],[95,46],[14,72],[71,140],[50,153],[36,54],[47,160],[50,0],[33,196],[49,46],[17,-53],[48,9],[4,-106],[35,-11],[32,-69],[55,-43],[71,-167],[-45,-3],[28,-155],[-13,-83],[43,-26],[-38,-175],[3,-114],[20,-64],[-14,-96],[6,-105],[-46,-145],[-5,-60],[51,-168],[-8,-61],[40,-343],[-22,-50],[13,-122],[37,-66],[7,-138],[-43,-96],[-7,-56],[49,-28],[28,-130],[89,-172],[45,-187],[67,-108],[75,8],[28,57],[46,-12],[6,64],[-46,7],[-16,58],[15,117],[27,38],[45,-8]],[[77104,68694],[104,-221],[108,-137],[71,-23],[60,-77],[52,-174],[27,-13],[44,-146],[13,-87],[43,-40],[-15,-284],[-24,-55],[27,-113],[-33,-49],[-12,-199]],[[77569,67076],[-3,-139],[103,-68],[42,26],[76,-78],[27,-143]],[[54005,52230],[129,68],[54,100],[102,-31],[93,125],[54,33],[39,102],[10,79],[47,140],[-4,57],[38,167],[62,118],[43,221],[48,92],[45,216],[-58,131],[0,59],[-46,80],[-25,89],[-67,80],[-36,126],[-80,100],[-17,134],[71,179]],[[109246,76598],[139,-17],[35,41],[195,-110],[22,-54],[86,-36],[30,-62],[143,-53],[75,-63],[43,-59],[123,-47],[28,30],[55,-5],[-3,-50],[80,-2],[116,-56],[8,-73],[36,-43],[44,31],[23,-61],[50,-32],[47,62],[56,23],[68,-23],[98,64],[50,-102],[41,-17],[59,-77],[102,-33],[116,120],[144,-39],[69,60],[130,34],[26,-25],[39,-109],[56,-52],[42,30],[108,-86],[20,-38],[55,30],[17,64],[64,-20],[38,-61],[91,5],[37,-158],[34,-41],[23,-110],[76,-71],[34,-95],[52,-70],[-12,-102],[8,-83],[54,-41],[45,7],[65,-40],[11,-37],[88,-21],[51,-52],[23,-60],[-9,-69],[44,-123],[-9,-80],[29,-147],[29,-88],[-8,-58],[-42,-54],[-16,-73]],[[112737,74469],[39,-128],[36,-38],[67,-24],[110,13]],[[90930,69231],[127,-62],[70,48],[37,144],[127,98],[70,111],[60,139],[-15,216],[-57,28],[16,80],[71,115],[54,38],[42,94],[44,39],[12,53],[-3,180],[26,171],[23,72],[-15,160],[10,60],[-8,207],[32,191],[-21,142],[0,112],[24,73],[-27,91],[-52,58],[-22,74],[16,148],[-57,98],[-4,59],[-49,65],[-35,176],[-27,56],[-22,131],[17,85],[-10,62],[19,88],[88,168],[-3,63],[29,186],[-15,113],[16,88]],[[103758,98639],[49,-128],[196,-42],[63,82],[-34,252],[17,101],[-44,92],[16,63],[93,109],[-4,36],[183,6],[259,119],[45,118],[222,138],[49,15],[52,104],[88,97],[38,133],[-68,215],[14,136],[39,21],[49,167],[195,34],[152,54],[56,162],[43,42],[5,85],[-32,62],[49,134],[52,33],[42,98],[-29,59],[80,35],[63,105],[49,264],[151,112],[-10,51],[120,84],[42,122],[-22,87],[53,73],[-3,73],[101,141],[174,195],[45,103],[-61,93],[53,40],[4,71],[86,60],[223,0],[91,60],[-24,47],[78,112]],[[115409,108461],[98,50],[80,-5],[56,61],[130,34],[107,-5],[206,-135],[203,-73],[-17,-126],[24,-271],[122,-75],[-7,-93],[66,-52],[118,-5],[165,-156],[162,-50],[82,12],[179,-61]],[[123044,103094],[85,-66],[178,40],[58,-66],[172,-70],[256,-33],[80,57],[70,11],[95,134],[102,37],[77,70],[50,120],[-31,81],[20,72],[-48,85],[35,80],[-24,174],[-55,40],[-75,144],[-25,148],[-67,64],[73,59],[31,70],[-15,223],[-121,57],[-14,67],[41,114],[-8,136],[50,124],[-60,38],[38,198],[53,82],[-38,51],[21,72],[-23,119],[65,128],[-46,30],[120,94],[7,155],[-20,110],[-90,-75],[-51,46],[-12,123],[106,37],[111,-19],[73,43],[-6,61],[-152,-5],[26,86],[150,0],[-53,63],[-173,35],[58,59],[-27,63],[-89,-5],[2,-74],[-145,46],[-121,102],[-236,48],[68,62],[-72,72],[-114,-14],[-83,-76],[-97,47],[-27,-99],[-142,41],[-118,-67],[-97,50],[-57,78],[-124,27],[-235,9],[-63,43],[-110,-8],[-67,78],[33,53],[-154,30],[-138,92],[-82,100],[-102,11],[-125,-49],[-86,42],[-132,2],[-144,86],[-192,-86],[-125,58],[-99,-11],[-98,87],[-108,-23],[-92,-104],[-183,4],[-279,36],[-77,-17],[-138,24],[-104,-48],[60,-56],[-58,-68],[-91,-34],[58,-99],[-441,70],[-194,-38],[-69,64],[-147,12],[-172,96],[-134,-5],[-161,52],[-81,56],[-112,12],[-190,-22],[-261,79],[-99,82],[-100,25],[-118,-24],[-104,11],[-64,-52],[-98,44]],[[91340,102286],[96,-78],[-18,-162],[-46,-36],[-38,-110],[16,-105],[-42,-79],[-89,-35],[-92,22],[-103,-74],[66,-185],[-120,-45],[-95,-107],[-138,-49],[-74,2],[-135,-110],[-10,-57],[-93,-3],[-37,34],[-121,-63],[-118,13],[-141,153],[14,39],[-131,57],[-248,61],[-91,93],[-4,63],[-152,-15],[-82,16],[-95,50],[-91,-5],[-102,33],[-44,-38],[-71,29],[-47,172],[-58,45],[-16,107],[-49,53],[-278,121],[-70,-31],[-105,24],[-174,134],[-141,42],[-67,58],[-23,80]],[[44526,55761],[-19,139],[-52,206],[22,58],[6,88],[-16,37],[-105,99],[-59,79],[-67,149],[-11,98],[-42,42],[-39,167],[-44,64],[-20,86],[13,134],[-64,281],[-29,39],[-14,100],[-28,52],[-37,153],[-1,138],[-65,196],[-75,76],[-48,147],[-63,49],[-61,131],[10,58],[77,187],[-6,36],[48,64],[-6,111],[46,47],[-18,121],[28,56],[-2,93],[55,24],[-4,57],[60,-1],[107,77],[83,84],[69,-12],[21,-86],[71,-82],[104,-49],[45,-48],[35,15],[94,-29],[101,-69],[87,11],[51,-76],[93,19],[46,-32],[64,-2],[34,92],[76,100],[78,-9],[35,37],[114,58],[25,79],[46,11],[20,43],[139,-138],[38,111],[101,13],[55,-87],[94,51],[49,61]],[[44562,63589],[-1,-177],[80,-69],[61,-3],[63,50],[62,-17],[31,-90],[123,-43],[44,-55],[88,-21],[23,-140],[88,-33],[15,-139],[94,-49],[26,-35],[8,-142],[84,-50],[24,24],[53,-35],[22,-60],[53,-13],[45,-62],[63,-40],[59,4],[108,-102],[63,18],[54,-68],[54,8],[36,47],[49,-53],[70,21],[74,-77],[55,88],[42,-51],[53,55],[28,-3],[32,-118],[100,-62],[45,-94],[81,3],[-11,-92],[23,-28],[106,56],[37,-10],[96,-140],[47,-7],[82,-98],[62,-26],[85,21],[99,-87],[46,55],[27,137],[27,45],[64,-48],[47,-6],[60,50]],[[42458,88432],[-100,-39],[-82,-63],[-278,-157],[-61,-64],[-98,-55],[-54,-63],[-43,1],[-124,-77],[-45,-66],[-36,6],[-100,-90],[-77,-126]],[[109225,88736],[-51,24],[-90,-15],[-90,-100],[-31,-4],[-101,-85],[-45,-111]],[[26565,99233],[-109,167],[-16,58],[-155,91],[-108,42],[-110,-43],[-200,154],[-79,75],[-215,169],[-122,137],[-94,25],[-126,85],[-99,29],[-4,54],[-142,112],[-221,33],[-28,-93],[-80,-138],[11,-236],[32,-93],[-102,-71],[66,-98],[72,-55],[51,-157],[-16,-218],[90,-197],[4,-230],[-52,-53],[10,-106],[62,-198],[-10,-63],[45,-110],[81,-82],[12,-44]],[[25013,98179],[3,0]],[[25013,98179],[23,-30],[-21,-201],[100,-173],[46,-136],[12,-118],[45,-110],[15,-221],[-13,-129],[-54,-20],[-75,-115],[-70,7],[-127,-36],[-64,-37],[-38,39],[-183,37],[-77,-50]],[[142142,112253],[-178,-137],[-38,-85],[-128,-4],[-108,-57],[-103,0],[-20,-80],[-362,-71],[-142,-125],[-105,-196],[111,-106],[-58,-238],[68,-41],[49,-120],[-136,-67],[64,-92],[-36,-108],[56,-60],[-209,-106],[-29,-154],[-168,-27],[-103,43],[-160,-42],[-59,-94],[55,-52],[-120,-75],[-145,-1],[-32,-123],[-122,-29],[22,-81],[-104,-39],[-62,-123],[-270,-8],[-94,-25],[-112,35],[-241,-60],[-200,-136],[39,-45],[-19,-136],[47,-97],[39,-177],[107,-107],[87,-198],[-65,-245],[-173,-133],[-47,-139],[26,-69],[263,-19],[-59,-99],[-30,-112],[60,-45],[82,-156],[-53,-63],[-4,-89],[-187,-52],[-12,-176],[-241,25],[-127,-84],[-27,-145],[111,-128],[107,-73],[37,-82],[150,-65],[66,13],[122,-41],[274,-159],[189,-78],[105,-166],[61,-64]],[[139851,106367],[55,-107],[73,-75]],[[25462,92185],[-104,41],[-191,25],[-57,79],[-48,-5],[-61,-87]],[[126099,83373],[44,33],[26,-57],[-16,-76],[95,-96]],[[122252,82624],[44,-37],[217,20],[62,98]],[[122575,82705],[88,31],[134,-80],[97,48],[12,51],[103,69],[102,-91],[23,27],[-32,79],[24,49],[103,82],[17,40],[91,48],[108,232],[30,-37],[66,15],[52,114],[46,47],[49,-94],[64,43],[28,-16],[29,115],[95,-20],[65,85],[11,79],[68,139],[91,104],[77,182],[3,86],[45,54],[62,27],[34,-19],[57,25],[181,5],[119,53],[42,-31],[41,35],[81,18],[31,-28],[110,-9],[99,9],[131,-68],[91,-76],[56,-27],[99,-136],[60,-133],[50,-21],[67,40],[36,-7],[60,-93],[75,15],[32,-58],[-20,-102],[72,-32],[15,-57],[-25,-140],[78,52],[58,3],[46,-58]],[[52083,52545],[20,148],[-28,136],[26,115],[6,386],[32,108],[7,266],[-12,150],[29,166],[-8,105],[23,88],[50,98],[17,126],[-14,64],[39,110],[2,153],[-26,205],[15,53]],[[101384,106084],[-61,50],[-96,-2],[-94,62],[-65,-62],[-168,-19],[-30,-122],[53,-179],[59,-51],[189,-51],[6,-117],[-180,-71],[-110,11],[-158,-48],[-83,103]],[[100649,105588],[-101,125],[-93,-32],[-35,50],[-112,32],[-65,-17],[-82,45],[-182,-8],[-178,-90],[-115,33],[-179,-82],[-110,23],[12,126],[-109,57],[-142,-33],[0,148],[-117,12],[-51,-57],[-153,-57],[-182,80],[-31,-33],[-165,-71],[-80,-65],[-28,-92],[-68,-44],[-80,-101],[-147,-63],[-102,-81],[-217,-24],[-146,-33]],[[47246,38093],[45,-280],[116,-125],[57,-4],[58,-261],[-18,-73],[15,-142],[-46,-103],[-15,-211],[80,-99],[63,-17],[94,17],[74,-38],[44,-109],[99,-5],[33,-38],[66,-11],[42,-67],[249,-44],[44,-47],[16,-78],[-59,-89],[-3,-98],[64,-36],[65,-112],[163,27],[46,-130],[182,-103],[37,-100],[73,-23],[76,12],[110,-18],[134,-47],[59,18],[62,-38],[168,25]],[[49542,35646],[215,-35],[206,-109],[222,-215],[79,-13],[88,-56],[31,-49],[87,-5],[99,-29],[120,-198]],[[38154,73293],[127,11],[58,22],[54,-43],[71,-26],[65,-2],[21,89],[-68,16],[-18,60],[38,45],[-12,76],[-64,39],[-13,60],[26,128],[39,63],[82,-20],[9,48]],[[46842,35669],[60,49],[-60,152],[-2,64],[-36,47],[-1,132],[-47,28],[-57,77],[-62,147],[-60,45],[-97,-22],[-29,60],[-62,54],[-118,21],[-43,53],[-34,153],[-81,58],[-15,137],[-54,113],[-32,6]],[[108817,88445],[-108,-14],[-63,-28],[-182,-187],[-97,4],[-64,169],[-14,83],[24,139],[5,209],[43,231],[-42,33],[-69,-37],[-36,40],[46,179],[-13,51],[-155,134],[-91,-21],[-72,-73],[-48,-140],[-137,-172],[32,-43],[19,-86],[-54,-114],[-61,4],[-52,50],[-40,-26],[-118,3],[-62,-92],[26,-151],[-52,-80],[-34,-12],[-53,45],[-68,112],[-128,-36],[-18,-50],[-137,-64],[-41,-65]],[[46523,27694],[364,13],[67,-29],[63,40],[145,-8],[111,-38],[28,48],[79,15],[66,-23],[78,76],[146,-25],[81,8],[50,67]],[[55018,61481],[-1,-153],[23,-176],[38,-74],[39,-124],[19,-101],[-19,-75],[5,-70],[36,-36],[58,-146],[78,-70],[-12,-77],[-31,-55],[4,-101],[-62,-59],[-36,43],[-11,80],[-45,95],[-41,33],[-5,-84],[-37,-110],[-86,-171],[-66,-71]],[[54864,59975],[2,4]],[[54507,54695],[79,136],[5,43],[-32,148],[22,64],[70,59],[16,154],[-6,52],[16,110],[39,50],[-25,61],[14,96],[75,122],[60,71],[53,134],[124,-57],[27,38],[14,100],[62,135],[-26,76],[9,119],[-12,57],[-78,75],[-18,103],[-29,46],[-75,26],[-47,101],[1,120],[-63,225],[24,186],[37,62],[-1,94],[20,30],[22,117],[88,168],[74,8],[44,28],[46,140],[-39,99],[-57,-3],[-97,168],[-1,89],[-36,74],[-6,156],[-66,197],[-12,83],[-68,70],[-1,133],[-22,113],[32,73],[24,115],[26,40],[31,147],[-29,74],[-1,56],[39,64],[18,165],[-5,74]],[[74459,90292],[-193,-1],[-150,-129],[-190,-7],[-111,-117],[-66,-152]],[[102978,92806],[-53,173],[36,81],[-43,100],[-176,82],[11,146],[-112,208]],[[106903,88440],[-87,-63],[-57,93],[-40,23],[-9,86],[-122,40],[-39,-41],[-66,-19],[-100,134],[-201,-11],[-33,-31],[-72,5],[-93,76],[-96,47],[-22,40],[-109,69],[-123,44],[-52,150],[-82,104],[-217,125],[-128,181],[-35,104],[-44,58],[-31,124],[-62,42],[-46,75],[-159,141],[-98,12],[-29,53],[3,100],[-56,75],[-46,6],[-59,79],[-71,160],[-5,114],[-38,179],[-69,48],[-64,150],[-31,209],[-40,77],[-97,86],[-79,33],[-36,-42],[-47,29],[-37,78],[-43,16],[-152,157],[-37,82],[-44,14],[-88,148],[-40,98],[-140,132],[-67,-2],[-71,48],[-41,65],[-97,97],[13,92],[-49,25],[9,69],[-42,92],[14,67],[-32,108],[16,53],[-39,104],[95,68],[5,102],[-90,146],[87,90],[76,10],[46,39]],[[90978,83638],[-39,35]],[[90939,83673],[-72,35],[-55,159],[-42,217]],[[90770,84084],[12,110],[-36,118],[-85,96],[7,68],[-51,80]],[[129038,85081],[-104,26],[-58,-22],[-87,13],[-62,-34],[-45,13],[-121,-237],[-36,-105],[-15,-100],[-34,-82],[-2,-98],[-127,-52],[-9,-79],[-68,22],[-54,-235],[-119,-72],[-88,-29],[7,-72],[-36,-43],[-50,-2],[-63,-61],[15,-46],[-43,-154],[-74,-45],[-68,-116],[-45,-6],[-66,-66],[-54,4],[-109,-34],[-65,85],[-116,18],[-69,164],[-37,61],[-55,43],[-32,95],[-63,14],[-15,131],[-84,-29],[-79,81],[-57,-72]],[[127570,83378],[4,20]],[[126248,83177],[124,210],[117,139],[26,-30],[136,142],[-4,81],[22,78],[85,167]],[[52261,55022],[23,71],[16,217],[54,34],[40,76],[8,126],[34,110],[16,116],[-20,149],[0,92],[-20,45],[-56,14],[-55,55],[-30,68],[-11,117],[38,132],[52,95],[-5,121],[14,150],[20,50],[29,148],[-19,212],[62,160],[-3,104],[38,69]],[[52486,57553],[-3,64],[-30,41],[-58,142],[-42,57],[-15,115],[22,84],[92,130],[57,14],[84,52],[83,99],[26,86],[-13,66],[70,99],[72,74],[79,121],[42,45],[24,84],[-4,64],[58,71],[16,94],[46,122],[6,70],[43,48],[55,-34],[82,105],[21,85],[-5,59],[126,80],[139,185],[60,149],[37,47],[32,176],[71,214],[0,134],[44,223],[9,124],[17,41],[77,26],[70,-25]],[[123360,69847],[-35,14],[-87,-29]],[[123238,69832],[-65,16],[-23,-22]],[[123304,69808],[-35,-17],[-31,41]],[[132012,113063],[-43,93],[50,83],[121,64],[-6,72],[134,110],[150,58],[172,19],[164,114]],[[132030,113030],[-18,33]],[[132012,113063],[-85,57]],[[131927,113120],[37,349],[119,45],[-48,139]],[[47611,61828],[14,-27],[-10,-203],[74,-59],[93,-137],[25,-13],[108,39],[49,-14],[179,102],[69,10],[55,-15],[108,-1],[89,-80],[92,-18],[101,-59],[124,73],[58,1],[63,37],[63,13],[57,38],[61,-21],[35,-37],[88,-37],[110,-95],[52,43],[44,-5],[35,-121],[-20,-84],[99,-288],[-3,-70],[47,-28],[2,-135],[34,-22],[22,-91],[-11,-79]],[[44134,95906],[-14,68]],[[43619,95865],[0,-1]],[[43619,95864],[-39,-19]],[[44221,95821],[35,-88],[133,-6]],[[44162,95768],[-35,87]],[[44120,95974],[-47,-53],[-65,-6],[-70,45],[-37,-105],[-102,47],[-63,71],[4,58],[-64,14],[-53,-37],[-18,-73],[14,-71]],[[44127,95855],[7,51]],[[43580,95845],[-100,-95],[-28,43],[-137,17],[-29,-20]],[[44221,95821],[-59,-53]],[[44439,95748],[-50,-21]],[[43429,95268],[-115,180],[-6,131],[-58,123],[36,88]],[[43429,95268],[86,-205],[117,-137],[160,-49],[91,-3],[184,-52]],[[44067,94822],[134,-86]],[[44201,94735],[45,-88],[39,-26],[118,-4]],[[44403,94617],[45,-12],[19,-94],[46,-111],[131,-75],[52,32],[75,-3],[72,-81],[257,124],[100,13],[49,29],[127,13],[115,-66]],[[91287,107826],[79,-77]],[[91326,107544],[66,-51]],[[91392,107493],[69,98],[-97,136],[6,42],[109,42],[130,130],[97,-32],[49,93],[257,-42],[276,-86],[185,33]],[[91392,107493],[1,-1]],[[91122,107134],[130,-85],[168,80],[56,128],[4,115],[-88,121]],[[83339,95501],[50,-40],[69,17],[55,-34],[65,33],[134,14],[44,47],[138,-7],[80,100],[70,44],[62,3],[23,-197],[45,-36],[27,-125],[65,-133],[97,7],[47,-20],[115,-101],[39,0],[135,-58],[77,-57],[18,-48]],[[84794,94910],[102,-132],[35,-2],[64,-115],[106,-14],[28,-63],[100,-37],[139,-5],[117,-65],[68,-77],[123,-20]],[[91548,83677],[0,1]],[[91548,83678],[-56,75],[-31,94]],[[91462,83846],[-25,118]],[[91437,83964],[18,89],[-11,64],[-2,321]],[[91548,83678],[7,-119]],[[90939,83673],[-18,110],[13,79],[49,71],[9,79],[-17,106],[14,111],[59,70],[32,76],[46,2],[66,136],[33,29],[15,71]],[[90978,83635],[26,8],[46,135],[135,147],[252,39]],[[139142,93090],[-87,82],[-106,59],[-105,-90],[-143,-53],[-67,-71],[6,-59],[-32,-86],[-72,-63],[-27,-118],[-76,29],[-27,48]],[[126952,63889],[60,110],[62,40],[17,-19],[101,58],[69,-4],[27,-44],[50,31],[29,101],[42,69],[25,-110],[29,-34],[92,49],[15,136],[35,82],[58,86],[88,158],[46,6],[21,-58],[48,81],[186,-31],[27,77],[71,25]],[[126984,63057],[20,-99],[-51,-16],[-79,-183],[-135,17],[-32,-101],[43,-32],[-18,-84],[-59,-40],[-19,-52],[2,-122],[56,-76],[15,-59],[58,-65],[87,21],[27,58],[67,8],[40,-94],[9,-141],[-39,-38],[30,-72],[-48,-105],[45,-38],[-4,-165],[-40,-182],[26,-26],[22,-98],[-20,-146],[15,-60]],[[127002,61067],[0,5]],[[127002,61067],[12,-88],[-68,-217],[22,-92],[-19,-112],[-69,-79],[-22,-70],[2,-77]],[[139325,58529],[23,-117],[35,-72],[1,-128],[79,-127],[97,-38],[45,14],[55,81],[54,8],[27,-62],[37,-13],[23,-58],[75,-66],[21,-109],[63,-1],[-4,-47],[85,-5],[55,-53],[19,-95],[-15,-110],[-71,-7],[-14,-85],[46,-56],[7,-96],[-19,-69]],[[120831,62270],[67,-10],[43,-73],[35,40],[50,-31],[34,73],[55,-53],[137,41],[65,86],[157,-73],[74,54],[25,59],[65,49],[202,-133],[115,129],[42,16],[38,-31]],[[80504,93661],[32,-25],[107,21],[80,-21],[77,80],[28,94],[-8,88],[20,76],[-6,90],[81,85],[180,-2],[44,-38],[78,-18],[41,-78],[166,43],[49,33],[163,-26],[41,20],[111,-19],[74,-43],[48,7],[127,-86],[53,-1],[43,96],[122,14],[124,-32],[69,-67],[75,-27],[82,55],[110,1],[45,36],[60,-47],[103,4]],[[132089,113000],[-12,144],[86,32],[346,-82]],[[86786,50089],[77,-34],[68,-129],[23,-76],[59,-15],[32,-115],[74,-156],[40,-1],[56,-54],[63,-144],[85,25],[105,-45],[36,-99],[67,-103],[31,6],[55,-77]],[[87225,49488],[19,-135],[48,-66],[69,-167],[91,-61],[127,-15]],[[87548,49152],[47,-140],[91,-45]],[[87658,49071],[28,-104]],[[88179,47857],[0,41],[-60,66],[-77,44],[-30,112],[20,149],[44,151],[-42,37],[-63,112],[-42,31],[-70,-71],[-55,-1],[-47,86],[-90,44],[-95,-7]],[[87572,48651],[23,58],[101,164],[-10,94]],[[84478,53853],[31,14],[42,-87],[19,-105],[8,-257],[17,-37],[7,-248],[-18,-48],[-11,-145],[-30,-101],[7,-125],[-21,-114],[69,-128],[33,6],[52,-76],[16,-162],[20,-100],[61,-132],[57,-83],[169,-71],[13,-84],[82,-121],[24,-72],[28,-269],[52,-131],[42,-174],[77,-118],[30,-90],[57,-97],[30,-101],[164,-291],[111,-52],[66,15],[107,-41],[117,9],[111,-11],[36,-23],[130,29],[99,-91],[74,-6],[29,-26],[124,65],[53,5],[124,-90]],[[88176,41790],[23,-7],[53,-148],[30,-43]],[[88710,41396],[-106,-95],[-49,52],[-45,-4]],[[90039,42415],[-21,-116],[-85,-60],[-3,-71],[-41,-75],[31,-61],[-21,-45],[24,-99],[-58,-36],[16,-65],[-69,-48],[-67,11],[-32,36],[-104,-61],[-49,4],[-18,-81],[-92,-129],[-53,-16],[-46,52],[-40,4]],[[88176,41790],[-32,58],[-107,91],[-29,81],[-68,10],[-108,114],[-33,119],[-36,12],[-35,121],[-27,24]],[[89315,41557],[-34,-122],[-123,-31],[-39,-85],[-94,-14],[-72,17],[-40,64],[-57,-16],[-45,39],[-63,9]],[[88748,41418],[-38,-22]],[[88510,41349],[-93,48],[-135,195]],[[91024,64192],[-42,-129],[-104,-190],[-89,-100],[-138,-247]],[[90209,62241],[26,149],[45,151],[-8,29]],[[90272,62570],[14,105],[4,130],[-61,100],[59,104],[39,146],[42,64],[139,73],[32,80],[8,82],[103,72]],[[90376,61828],[-33,54],[-107,-72],[-42,21],[-27,100],[42,310]],[[86541,67776],[-25,-50],[-77,-17],[-28,-85],[-73,-68],[-96,5],[-138,148],[-15,74],[-53,66],[-13,63]],[[25704,87287],[-78,-8],[-92,146],[5,137],[-80,167]],[[84003,71058],[-48,-14],[-112,81],[-53,62],[-14,57],[-40,21],[-88,4],[-14,61]],[[85659,68816],[-99,37],[-91,109],[-50,135],[-116,177],[-61,59],[-75,149],[-37,35],[-42,166],[-118,205],[-67,31],[-46,97],[-35,12],[-116,-82],[-110,58],[-18,45],[-119,108],[-153,34],[-41,59],[-44,21],[-41,76],[-26,126],[11,36],[-55,211],[17,83],[1,104],[-24,68],[-35,9],[-19,65],[-44,29]],[[84006,71078],[-63,42],[2,126],[-33,203],[-27,11],[-95,102],[-13,139]],[[86023,67912],[-67,33],[7,50],[-40,57],[-62,12],[-10,131],[10,123],[-87,197],[-39,124],[26,65],[-102,112]],[[43202,69002],[-37,7],[-48,56],[-15,51]],[[43102,69116],[-1,25]],[[43202,69002],[57,-100]],[[83432,105424],[-25,50],[-114,44],[-78,80]],[[83792,105134],[46,-70],[120,-45],[15,-73]],[[85025,104794],[-15,-45],[-231,-120],[-21,-56],[-128,-20]],[[84602,104548],[-47,-24]],[[82684,105694],[17,54],[169,-34],[79,50],[104,-47],[162,-119]],[[83433,105423],[3,-73],[110,-24],[61,-82],[185,-110]],[[83973,104946],[23,-93],[187,-71],[94,-67],[165,-15],[-17,-114],[130,-62]],[[85026,104794],[18,92]],[[84602,104548],[24,14]],[[84602,104548],[28,5]],[[92857,85570],[-10,-125]],[[92781,84474],[24,220],[34,87]],[[92971,86055],[-81,-129],[-36,-160],[3,-196]],[[92847,85445],[1,-154],[-15,-62],[12,-120],[-21,-125],[15,-203]],[[92781,84474],[-10,-66]],[[132089,113000],[-92,44],[-175,-45],[-173,45],[-241,138],[-167,70],[-140,-3],[-110,57],[-192,49]],[[130799,113355],[-152,-34],[-263,49]],[[32065,103848],[173,41],[59,-25]],[[29711,103528],[122,49],[163,163],[166,100],[148,68],[184,55],[159,-31],[173,31],[124,0],[93,32],[144,11],[109,-41],[314,-29],[253,-4]],[[32825,103528],[52,-102]],[[32065,103848],[-13,65],[-189,19]],[[32825,103528],[-100,76],[35,69],[-34,47],[-150,7],[-132,47],[-80,-22],[-67,112]],[[32926,103364],[-49,62]],[[90651,94762],[-90,152]],[[87389,96933],[-10,58],[56,37],[5,64],[185,94],[135,-58],[83,3],[104,-63],[53,-117],[91,-16],[88,-69],[36,-66],[128,-54],[68,-118],[66,48],[86,-63],[3,-57],[67,-5],[51,-57],[65,28],[38,-62],[76,-20],[62,19],[41,-56],[96,77],[198,1],[82,23],[28,-91],[107,-14],[75,-78],[56,-13],[62,-76],[40,17],[296,-252],[3,-176],[53,-110],[-7,-107],[37,-79],[85,-88],[-19,-87],[59,-3],[12,-97],[66,8],[46,-108],[68,-97],[96,-70],[48,6],[8,-75]],[[90651,94762],[9,-12]],[[32255,77857],[32,-30]],[[32858,77241],[49,24]],[[33258,76804],[4,-77]],[[32255,77857],[-54,-59],[-94,-44]],[[32698,77428],[-58,-5],[-66,60],[-37,130],[-18,-4],[-98,267],[-97,-76],[-36,26]],[[32858,77241],[-77,48],[6,45],[-71,53],[-17,41]],[[33258,76804],[7,46],[-98,36],[-39,-10],[-41,43],[17,106],[-90,110],[8,56],[-40,127],[-43,2],[-31,-54]],[[18520,105294],[-28,-208],[-159,-91],[-132,-4],[-45,-93],[6,-130],[-73,-114],[-7,-66],[73,-107],[3,-62],[-77,-50],[46,-196],[52,-44],[-76,-65]],[[18063,104047],[-86,-81]],[[18004,103919],[5,-20]],[[17986,103866],[-86,5]],[[10888,106583],[-5,-6]],[[10883,106577],[-66,-49],[-255,-8],[-76,-100],[-68,-45],[20,-134],[-142,-105],[-81,-157],[46,-136],[-76,-107],[-147,-43],[-154,-95],[-130,93],[-221,74],[-148,-70],[-47,-122],[-194,-61],[-92,42],[-117,-23],[-82,23],[-187,-12],[-161,-35],[-149,-82],[-15,-81],[-180,-145],[-28,-92],[-329,-178]],[[12200,107434],[-39,26],[-203,-12],[-82,-61],[-61,-95],[-19,-109],[-83,-20],[-246,-144],[-105,-146],[-76,-40],[-87,-127],[-311,-123]],[[15240,104936],[48,69],[-122,129],[-49,132],[66,126],[104,42],[41,84],[-23,68],[-271,151],[-69,57],[-76,167],[25,63],[207,133],[150,128],[96,37],[169,1],[84,-52],[32,-109]],[[14349,106183],[-87,109],[-148,33],[-43,-34],[-119,37],[-103,68],[-193,42],[-149,-12],[-71,-39],[-94,35],[-243,4],[-118,-76],[-108,-126],[-28,-110],[35,-316],[-100,-171],[-29,-85],[-68,-36],[-13,-122]],[[16357,105850],[-30,46],[13,94],[124,65],[64,109],[86,57],[19,89],[-95,154],[-231,180],[-88,1],[-123,67],[-173,122],[-52,-19],[-208,4],[-156,194],[-80,23],[-155,-3],[-88,55],[-45,139],[-104,56],[-117,-1],[-105,62],[-121,-7],[-96,59],[-146,27],[-89,-22],[-157,120],[-1,84],[-100,99],[-115,60],[-140,21],[-168,-80],[-166,-32],[-33,-41],[-175,-7],[-4,203],[-41,32],[-207,-48],[-99,-42],[-162,59],[-51,66],[-251,6],[-129,-66],[-169,96],[5,59],[-159,46]],[[17309,108373],[48,91],[-1,114],[53,42],[157,-5],[92,61],[68,91],[80,179],[141,74],[85,127],[85,-4],[184,229],[-46,24],[-94,145],[31,79],[-115,22],[-96,78],[-143,-8],[-54,57],[-200,-77],[-138,33],[-125,-6],[-121,-49],[-390,-53],[-111,-56],[-131,-16],[-69,-110],[-218,35],[-211,-159],[-168,15],[-259,-49],[-175,-98],[-189,-40],[-141,-74],[-95,16],[-198,-59]],[[45346,93995],[-67,8],[-173,-102],[-185,-197],[-39,-59]],[[12567,110039],[-33,-163],[-53,-67],[-11,-94],[103,-90],[49,-88],[-56,-119],[-146,-75],[-114,-27],[-100,-61],[-24,-156],[-90,-66],[-167,-38],[-152,24],[-146,-80],[-121,-6],[-335,-128],[-129,-216],[-36,0],[-138,-117],[-100,8],[-102,52],[-108,94],[-80,-23],[-107,34],[-158,-84],[-41,-85],[-71,-48],[84,-66],[-20,-87],[-105,-27],[-76,74],[-113,-55],[-179,1],[-84,-61],[40,-116],[-23,-118],[43,-96],[-81,-41]],[[94224,67262],[-28,-53],[34,-105],[32,-24],[66,-181],[91,-59],[56,9],[18,-30]],[[94483,66831],[33,-117],[42,-72],[32,19],[44,-55],[-12,-93],[71,-11],[32,-63],[108,-47],[155,48],[68,98],[99,98],[48,3],[36,-37],[32,-129],[40,-78],[15,-129],[41,-118],[49,-76],[26,-138],[47,-72],[75,-153],[35,-35]],[[110914,87395],[65,57],[5,127],[-62,83],[42,122],[-6,84],[-59,99],[-17,61],[-160,21],[-104,-52],[-155,38],[-25,79],[-130,85],[-40,135],[-45,72],[38,84],[3,58],[-47,99],[93,-27],[54,96],[-5,125],[-24,95],[41,162],[117,11],[-5,-35],[103,-34],[187,244],[79,84],[-29,146],[110,228],[-8,85],[46,83],[145,166],[109,85],[126,77],[151,10],[74,25],[134,75],[31,46],[58,7],[332,281],[40,105],[186,52]],[[37931,98794],[-17,67]],[[37937,98703],[1,0]],[[37938,98703],[19,-36],[-27,-111],[17,-44]],[[37995,98406],[0,1]],[[37995,98407],[-45,85]],[[38074,98286],[0,-1]],[[38074,98285],[78,-64]],[[38152,98221],[0,-1]],[[38197,98217],[93,-51],[251,93],[41,-21]],[[37772,98851],[36,-24],[106,34]],[[37931,98794],[7,-91]],[[37947,98512],[3,-20]],[[37995,98407],[79,-122]],[[38583,98237],[142,21],[246,118],[95,93],[58,8],[25,65],[67,-43],[61,62],[110,12],[43,-57],[128,-19],[107,3],[58,-71],[102,-74],[98,5],[130,100],[80,-10],[86,80],[75,38],[25,109],[45,39],[60,-13],[93,-89],[177,27],[85,-102],[89,-77],[30,-81],[191,-130],[164,100],[126,37],[70,57],[83,29],[120,83],[79,162],[134,107],[91,3],[115,111],[113,26],[74,38]],[[38152,98221],[45,-4]],[[49666,99653],[-17,138],[19,41]],[[49668,99832],[16,59],[65,46],[130,11],[181,-40],[241,-191],[88,3],[74,-36],[148,7],[97,-54],[30,-115],[167,-16],[59,-28],[21,87],[115,-3],[231,191],[171,0]],[[49693,99490],[-27,163]],[[113797,106275],[48,81],[128,110],[361,162],[75,161],[-99,-15],[-58,118],[-170,43],[-76,74],[-106,13],[-225,-88],[-85,97],[-106,13],[-114,137],[-83,-76],[-136,-52],[-107,5],[-29,60],[-203,149],[-122,239],[11,48],[-128,57],[73,77],[-47,113],[0,144],[65,74],[100,13],[130,142],[-47,91],[194,126],[-69,65],[11,100],[-92,114],[-17,187],[88,26],[11,182],[-230,229],[-62,1],[-227,82],[-451,9],[-318,127],[-182,100],[-136,104]],[[130738,92939],[35,-78],[-37,-129],[-8,-140],[31,-115],[-18,-82],[105,-172],[41,-45],[-43,-59],[-59,0],[-45,-66],[-83,-48],[-40,22],[-121,-73],[-29,-88],[-101,-193],[6,-55],[-34,-80],[-2,-129],[-96,-76],[5,-121],[-61,-100],[-61,-23],[13,-86]],[[126190,82958],[33,167]],[[126223,83125],[0,1]],[[126152,82877],[-27,-70],[-62,-42],[-69,-3],[-44,-32],[-56,16],[-135,98]],[[126223,83125],[25,52]],[[126152,82877],[38,81]],[[123826,81001],[0,-96],[65,-27],[56,140],[15,122],[47,31],[42,99],[91,90],[71,-24],[50,-102],[52,-50],[51,23],[63,-54],[70,25],[103,124],[63,99],[2,85],[54,72],[73,7],[9,43],[91,-59],[64,159],[62,117],[-3,61],[46,74],[2,92],[-52,87],[-52,35],[4,63],[41,126],[129,251],[53,11],[74,73],[112,57],[96,-76],[61,67],[29,133],[71,-5],[10,-35],[118,6]],[[45109,98483],[102,-3],[33,-58],[57,38]],[[44439,98462],[-1,0]],[[44438,98462],[21,-72],[69,27]],[[45109,98483],[-3,68],[-124,4],[-180,-67],[-127,-16],[-147,-55]],[[44438,98462],[-2,45],[-135,-70],[-54,17],[-122,-40],[-120,22],[-238,-8],[-134,84]],[[45301,98460],[15,22],[193,19],[90,-76],[92,24],[38,-130],[-21,-99],[100,7]],[[25972,88426],[41,43]],[[25323,88879],[-29,47],[-18,168],[-57,30]],[[26386,88492],[-31,75],[-118,105],[-47,90],[-45,-75],[-20,-120],[-77,-42],[-35,-56]],[[25972,88426],[-41,-91],[-112,-28],[-97,-44],[-64,67],[-54,161],[-69,35],[-51,102],[-41,22],[-19,62],[-101,167]],[[107227,109181],[-178,-54],[-31,-71],[-190,-85],[-88,62],[-231,48],[-114,-77],[-60,41],[-158,25],[-130,-222],[-221,-126],[67,-45],[5,-142],[-82,-109],[-35,-202],[-71,-51],[-85,-136],[55,-99],[88,7],[-39,-209],[116,-70],[-48,-53],[84,-64],[62,-163],[-89,-120],[32,-210],[-42,-50],[1,-104],[-125,-55],[24,-71],[-110,-58],[-28,-89],[-67,-96]],[[105539,106533],[125,-96],[35,-68],[86,-53],[115,-138],[218,-48],[56,-92],[231,-46],[119,-100],[101,-263],[70,-59],[74,-10],[158,-84],[38,-96],[-37,-71],[109,-105],[144,18]],[[106566,109085],[66,77],[161,-10],[85,42],[184,-60]],[[41426,86590],[-1,0]],[[41425,86590],[-45,-34],[-24,-66],[-42,-37]],[[40887,84690],[-33,131],[34,158]],[[40930,84194],[39,-142]],[[40969,84052],[1,0]],[[41456,86835],[37,-29],[15,-86],[-44,-105],[-39,-25]],[[41314,86453],[-17,-71],[-66,-65],[-41,24],[-38,-110],[-157,-215],[-99,-100],[-22,-76],[14,-96],[-59,-149],[51,-223],[50,-135]],[[40930,85237],[-12,-46],[40,-66],[-50,-54],[-20,-92]],[[40887,84690],[10,-70],[-29,-183],[4,-62],[36,-67],[22,-114]],[[40969,84052],[-50,-123],[-26,-159],[-31,-81],[-3,-97],[53,-74],[-14,-121],[29,-19]],[[40399,86049],[-56,-99]],[[40260,85662],[33,-153]],[[40837,86517],[-30,-30],[-57,33],[-159,-55],[-61,-117],[-70,-66],[0,-87],[-61,-146]],[[40343,85950],[-18,-101],[-52,-66],[14,-44],[-27,-76]],[[40293,85509],[101,-187],[-129,-136],[-62,38],[-73,-38],[-79,43],[-49,-170],[-115,-12],[-34,-89],[6,-63],[-30,-52],[43,-46],[-56,-69],[-23,-117],[9,-66],[-76,-41],[-43,-86],[-69,-320],[12,-69]],[[41706,86753],[65,-81],[68,-15],[16,-66]],[[41624,86830],[81,-76]],[[41725,87086],[2,-62],[-83,-117],[-20,-77]],[[41954,86349],[8,-35],[140,-151],[16,-61]],[[41855,86591],[36,-126],[63,-116]],[[42118,86102],[122,-143],[-3,-67],[39,-34],[35,-109],[104,-81],[8,-75],[42,-131],[-1,-84],[88,-97],[31,-128],[-12,-74],[34,-75],[80,-38]],[[80166,94834],[72,132],[135,43],[109,-37]],[[81133,95095],[-160,-168],[-164,-5],[-226,-138],[-101,188]],[[80166,94834],[-133,-76],[3,-137],[-51,-138],[-48,-31],[-115,148],[-41,-58],[-106,29],[-55,-24],[-27,-139],[29,-30],[-47,-73],[22,-101],[5,-131],[30,-113],[-50,-107],[5,-95],[-29,-60],[-27,-207],[26,-120],[57,-54],[-88,-99],[-13,-121]],[[79513,93097],[-59,-7],[-52,-113],[18,-59]],[[79513,93097],[33,-91]],[[90675,104878],[72,18],[160,-58],[56,-58]],[[90963,104780],[90,-177]],[[90651,104839],[-42,44],[-132,46],[-138,-27],[-68,37]],[[89923,105278],[30,-91],[70,-37],[72,-89],[176,-122]],[[90651,104839],[24,39]],[[132971,51448],[-4,-211],[-12,-116],[27,-64],[-13,-83]],[[132971,51448],[-16,76],[28,84],[-43,224],[-79,-13],[-47,33],[-36,88]],[[132471,50393],[72,35],[46,67],[88,4],[76,-50],[42,-98],[52,-10],[73,76],[122,203],[-24,115],[11,45],[-74,74],[-4,93],[18,27]],[[110586,84532],[-12,-69],[-37,-29],[-93,108]],[[112537,84103],[-41,42]],[[110444,84542],[-24,-58],[25,-67],[44,-42],[21,-73],[-24,-56],[-134,15],[-59,-20],[-69,22],[-165,-34],[-62,8],[-163,137],[-89,-23],[-91,-64],[-35,-65],[-81,-44],[-72,-164],[-46,-51],[-65,-137],[-58,-19],[-100,-62],[-172,-133],[-37,4],[-148,-133],[-39,-53],[-63,19],[-64,-33],[-76,-102],[8,-55],[-123,-82],[-69,-14],[-143,-53],[-58,42],[-100,-42]],[[112496,84145],[-20,46],[-93,49],[-73,92],[-49,4],[-72,-57],[-144,98],[-110,192],[-38,25],[-121,8],[-74,87],[-101,44],[-56,-34],[-64,109],[-60,29],[-32,-56],[-75,-63],[-5,-52],[-55,6],[-54,-68],[-105,43],[-50,-7],[-85,-76],[-41,-70],[-78,-2],[-15,-44],[-79,-35],[-62,48],[-47,75],[-52,-4]],[[112572,84079],[-35,24]],[[28351,108366],[0,-1]],[[28351,108365],[-79,-6],[-6,-82],[146,-50],[-5,-45],[269,-61],[117,-6],[210,-75],[113,8],[34,-155]],[[29139,107850],[34,-47],[134,-67],[-5,-67]],[[28351,108365],[3,42],[-112,82],[-8,131],[70,77],[-90,144],[-62,149],[-177,110],[-93,12],[-220,89],[-199,-25],[-55,108],[112,122],[-50,66],[225,-9],[-11,88],[95,239],[168,83]],[[29150,107893],[-11,-43]],[[29626,107630],[-92,-27],[-77,53],[-155,13]],[[84935,96127],[114,-120],[153,-97],[176,3],[239,50],[137,-16],[2,-104],[-33,-168],[-50,-83],[-17,-100],[38,-81]],[[85694,95411],[-15,-148],[29,-78],[-61,-65],[26,-81],[-12,-84],[10,-127]],[[85671,94828],[-92,-105],[66,-129],[49,-133],[-24,-34],[78,-65],[-42,-37],[71,-131],[87,-26],[193,-14],[161,-30],[74,-105],[-23,-55],[65,-80]],[[86334,93884],[79,-2],[-2,-50],[56,-68],[52,3],[121,53],[45,46],[140,-33],[26,-55],[86,8],[64,-33],[43,-99],[35,4],[58,118],[71,27],[59,-60],[0,-47],[-59,-49],[28,-105],[57,-30],[4,-53],[93,-74],[50,-64],[-59,-26],[-15,-67],[30,-44],[174,36]],[[87570,93220],[360,-93],[146,33],[89,-39],[111,4],[124,-31],[46,-35],[85,11],[97,43],[66,96],[93,99],[69,28],[131,22],[178,65],[86,-40],[28,22]],[[89279,93405],[66,-13],[70,50],[54,3],[112,66],[50,107],[-44,51],[12,69],[-68,79]],[[89531,93817],[0,182],[32,86],[-4,66],[40,124],[76,34]],[[89675,94309],[51,-89],[106,-52],[74,-12]],[[92987,73062],[15,-91],[-18,-128]],[[92851,73806],[16,-267],[61,-149],[3,-60],[71,-134],[26,-86],[-41,-48]],[[92850,73804],[-33,66],[-24,94],[-30,28],[-46,102],[-1,65],[-135,295],[-2,64],[-95,84],[-34,56],[-55,23],[-121,103],[-43,134],[-70,46]],[[115320,98427],[0,57],[-54,207],[-102,12]],[[115164,98703],[-121,75],[9,93],[-21,104],[13,82],[-287,257],[-119,-69],[-49,66],[-67,-51],[-83,35],[-174,-29],[-108,-95]],[[33091,101566],[37,83]],[[33128,101649],[0,2]],[[33060,101848],[52,-34],[-30,-62],[46,-103]],[[33091,101566],[6,-205]],[[38194,96661],[-35,59],[-99,-33]],[[37306,96513],[156,14],[103,29]],[[38545,97010],[-42,-69],[8,-55],[-49,-69],[-143,-17],[-66,-98],[-59,-41]],[[38060,96687],[-14,-59],[-150,-24],[-49,38],[-212,-75],[-70,-11]],[[37308,96514],[-50,-52],[-114,-18],[-51,83],[-154,11],[-34,43],[-72,-9],[-91,55],[-9,58]],[[35921,98159],[86,-211],[44,-36]],[[36051,97912],[0,-1]],[[36167,97674],[16,84]],[[36183,97758],[0,1]],[[36775,97472],[44,-144],[17,-121],[-132,-108],[-36,-56],[4,-182],[61,-176]],[[36183,97758],[-29,52],[-103,102]],[[36775,97472],[11,91],[-174,-2],[-12,54],[-91,58],[7,57],[-84,9],[-54,-27],[-44,-106],[-167,-34],[0,102]],[[35632,108599],[117,124]],[[35749,108723],[1,-1]],[[35034,108567],[-170,119],[-199,-133],[-125,-25],[-83,37],[-205,-46],[-370,18],[-189,43]],[[30971,107723],[48,3]],[[30780,107616],[152,86]],[[35749,108723],[90,-49],[106,-7],[113,60],[145,129],[65,113],[-13,60]],[[35034,108566],[224,-3],[85,80],[233,-68],[56,24]],[[31019,107726],[74,32],[45,91],[140,121],[-20,177],[106,113],[128,-27],[107,-123],[214,-21],[13,-34],[265,-51],[128,-41],[119,6],[125,41],[262,54],[309,144],[-2,33],[126,97],[328,2],[77,68],[-41,67],[171,105]],[[30932,107702],[39,21]],[[30653,107616],[127,0]],[[31504,98356],[93,-124],[-95,-37],[-93,-200],[-43,7],[-163,-87],[-136,33],[-60,-13]],[[27383,98638],[47,-86],[103,-129],[151,-115],[120,-8],[79,-89],[102,67],[150,67],[52,-14],[232,-143],[22,-115],[193,-43],[138,48],[19,-59],[90,9],[88,-20],[38,22],[117,-119],[17,-107],[75,-41],[-6,-46],[54,-101],[162,-39],[41,-68],[-52,-82]],[[31504,98356],[-93,116],[8,109],[111,98],[28,60],[-18,110],[73,155],[58,65],[76,135],[58,57],[11,148],[50,97],[115,13],[15,45],[80,7],[47,106],[84,-15],[67,71]],[[29414,97429],[1,-2]],[[29415,97427],[33,-26],[205,119],[81,-27],[54,41],[40,-32],[70,73],[-30,73],[27,134],[72,-15],[17,117],[80,35],[52,111],[100,111],[163,4],[68,34],[155,4],[60,-48],[133,-19],[30,-85],[69,-83],[113,-13]],[[29415,97427],[-1,-3]],[[77105,68694],[-12,62],[-67,118],[2,137]],[[76627,72418],[11,-230],[-29,-106],[36,-141],[-46,-170],[25,-36],[48,29],[126,-5],[101,-90],[80,27],[32,-51],[17,-141],[27,-24],[13,-150],[-24,-88],[40,-162],[110,-194],[-12,-81],[22,-100],[78,-43],[18,-103],[37,-101],[29,-35],[-7,-213],[21,-140],[-63,-11],[-46,-55],[-85,70],[-45,-99],[-53,23],[-24,-37],[1,-107],[24,-97],[3,-233],[26,-69],[-51,-57],[-46,38],[-90,-76],[5,-146],[53,-104],[7,-73],[32,-26]],[[89319,109149],[77,-89],[-75,-30],[-13,-88]],[[89920,110083],[86,-91],[-127,-224],[-227,-177],[16,-86],[-60,-38],[-248,-57]],[[89360,109410],[34,-93],[-75,-168]],[[89308,108942],[-90,-91],[-429,55],[-141,74],[-170,-71],[-42,-148],[-234,-95],[-35,-110]],[[124723,106845],[130,-27],[85,53],[94,-33],[68,-62],[-13,-133],[49,-59],[166,-92],[165,105],[95,-10],[69,115],[78,-29],[17,-89],[-75,-40],[85,-112],[96,-5],[52,122],[85,-7]],[[122108,108613],[92,13],[103,-68],[69,-112],[177,-28],[82,-48],[139,5],[169,85],[204,-164],[-2,-64],[167,-19],[188,42],[16,56],[350,54],[91,-38],[9,-86],[102,-96],[93,10],[134,-81],[103,-92],[103,47],[73,-84],[107,-38],[11,-47],[-70,-76],[-10,-83],[93,-36],[-2,-62],[-89,-28],[44,-90],[-97,-26],[-67,-124],[136,16],[35,-189],[52,-18],[-47,-106],[-93,-38],[49,-88],[101,-67]],[[131977,107513],[-1,-108],[-190,-183],[-73,-33],[-275,-56],[-245,114],[-160,28],[-100,-16],[-116,38],[-207,-102],[-33,-33],[-153,21],[-196,-45],[-221,-1],[-107,-62],[-195,8],[-111,-31],[-100,-80],[-81,4],[8,-90],[-114,-2],[-81,47],[-130,-5],[-69,-35],[-290,-21],[9,-64],[-142,-72],[-312,-23],[-106,-64],[-79,-231],[-12,-197],[55,-45],[-10,-101],[91,-96],[-129,-139],[-111,-56],[-324,62],[-134,112],[-4,89],[-150,44],[10,151],[-104,-6],[-72,40],[-71,146],[39,63],[-90,85],[-72,-45],[-92,25],[-35,114],[-145,-41],[-74,43],[-160,42],[-184,-138],[56,-106],[-55,-56],[-66,112],[-118,56],[-76,-82],[-101,50]],[[119735,96083],[-151,34],[-104,73],[20,116],[-10,109],[45,83],[76,75],[113,47],[97,-21],[278,-15],[127,-64],[69,-12],[47,50],[236,142],[122,56],[19,34],[129,45],[47,129]],[[125537,85339],[-49,5],[-157,116]],[[123349,85687],[33,33],[82,20],[94,-8],[57,-65],[61,6],[168,100],[104,-15],[43,52],[59,-137],[84,-10],[28,-162],[80,-116],[22,-73],[40,-28],[62,34],[0,45],[102,38],[66,91],[80,-20],[34,76],[140,48]],[[124788,85591],[109,-28],[57,-53],[65,-16],[53,47],[103,-45],[47,48],[89,-42],[20,-42]],[[125537,85339],[81,-115],[-14,-37],[26,-87],[58,-101],[45,10],[112,-50],[12,-96],[-19,-60],[69,-51],[50,-121],[-22,-134],[72,-115],[-26,-91],[61,-194],[-23,-75],[46,-10],[-5,-76],[53,-24],[108,-5],[20,-40],[161,-38],[69,131],[62,9],[77,43],[43,-43],[95,-23]],[[113641,77647],[-61,122],[-60,36],[-47,-71],[-72,35]],[[113641,77647],[33,-19],[18,-71],[-34,-58],[3,-83],[-32,-93],[2,-86],[92,-82],[78,54],[37,-16],[22,-77],[65,-15],[92,-89],[34,-67],[37,4],[118,-97],[76,-15],[64,13],[65,57],[95,-8],[85,-128],[41,-83]],[[112249,77006],[3,107],[50,18],[40,109],[39,64],[129,52],[54,268],[34,91],[72,13],[42,85],[77,16],[67,74],[58,-25],[8,-44],[59,-48],[52,24],[175,-36],[71,23],[122,-28]],[[24939,91060],[-118,-14]],[[25657,91704],[6,-71],[-27,-67],[-123,-57],[-40,10],[-117,-64],[-6,-117],[13,-94],[-35,-69],[-72,73],[-66,-44],[-60,28],[-71,-41],[-70,-2],[12,-71],[-62,-58]],[[74491,67566],[-8,-116],[32,-64],[4,-188],[-29,-181]],[[74438,69427],[-28,-112],[10,-130],[-24,-233],[12,-56]],[[74408,68892],[19,-104],[-12,-107],[40,-236],[24,-241],[-12,-38],[8,-157],[32,-162],[-34,-55],[2,-136],[16,-90]],[[74490,67017],[77,-82],[22,-55],[43,-30],[-12,-51],[50,-97],[47,-157],[38,-50],[62,-125],[27,-82],[7,-106],[62,-67]],[[36423,101890],[120,34],[161,4]],[[35940,101698],[50,49],[95,10],[37,66],[124,34]],[[36246,101857],[1,0]],[[35340,100922],[62,31],[81,88],[155,81]],[[35359,100752],[48,-93]],[[35921,98159],[1,305],[-79,212],[-136,167],[-83,145],[-73,70],[-57,100],[-19,98],[-74,228],[-45,294],[-2,149]],[[35354,99927],[20,157],[-65,85],[11,79],[69,23],[40,54]],[[36704,101928],[115,-4],[135,29],[43,60],[80,41],[64,88],[106,78],[36,57],[123,19],[115,-5]],[[36246,101857],[177,33]],[[35638,101122],[130,34],[77,115],[18,125],[57,135],[20,167]],[[35359,100752],[-47,69],[28,101]],[[35429,100325],[83,140],[-39,75],[27,81],[-93,38]],[[82355,104197],[-2,98],[-33,83]],[[82335,104014],[21,67]],[[82705,104805],[-6,-219],[-136,26],[-140,-115],[-103,-119]],[[82355,104197],[-49,-59],[50,-57]],[[82335,104014],[-16,-83],[-84,-60]],[[95661,95807],[322,169],[75,235],[58,113],[98,94],[63,116],[-35,53],[82,143],[71,3],[50,48],[27,134],[-96,-8],[-31,30],[-1,99],[-63,97]],[[94365,98880],[30,48],[-135,170],[32,106],[-14,168],[48,51],[-3,62],[54,43],[24,110],[-26,27],[3,216],[-60,25],[-40,64],[-170,122],[18,66],[-103,148]],[[96281,97133],[-98,-18],[-12,-67],[-63,-44],[-140,111],[-16,65],[-54,-8],[-169,30],[-148,-16],[-178,30],[-76,-35],[-49,123],[-118,27],[-16,79],[-88,14],[-108,169],[-39,-78],[-51,33],[-100,-13],[12,100],[-26,33],[34,105],[-9,57],[-69,42],[-50,91],[36,85],[-54,93],[-184,32],[-64,66],[26,135],[-83,121],[6,165],[54,146],[-22,69]],[[95661,95807],[-55,-39],[-112,40],[-124,6],[-32,-38],[-153,2],[-159,-24],[-69,-46],[-48,-98],[-71,-68],[-144,1],[-210,-78]],[[127477,83049],[30,38],[-3,63],[30,48],[36,180]],[[126801,79866],[31,-5],[58,87],[65,68],[-8,126],[64,41],[-6,126],[51,113],[2,95],[32,45],[10,111],[-90,70],[24,63],[-26,52],[26,58],[-22,87],[-86,113],[-11,40],[54,81],[15,70],[71,34],[-13,66],[25,47],[-14,108],[40,40],[11,71],[-23,104],[66,121],[49,49],[44,137],[22,114],[43,56],[75,37],[47,66],[-30,195],[8,45],[72,156],[20,84],[-20,212]],[[111548,73964],[70,-8],[32,78],[-9,113],[43,60]],[[109308,75190],[58,-56],[49,-145],[44,-86],[-24,-62],[7,-68],[44,-77],[-3,-89],[106,-112],[69,-127],[9,-135],[29,-36],[47,60],[78,11],[46,-88],[114,42],[20,-44],[70,-76],[27,15],[67,-70],[20,8],[95,-62],[11,-52],[87,-30],[37,62],[47,5],[33,60],[139,102],[76,25],[49,-54],[98,-42],[147,-38],[54,-54],[33,-75],[103,-134],[97,94],[43,7],[101,-44],[113,139]],[[111684,74207],[176,76],[69,10],[33,-50],[70,112],[8,-93],[57,-55],[88,7],[89,-107],[58,-120],[28,-174]],[[123430,98980],[-50,69],[12,87]],[[123430,98980],[2,76],[70,34]],[[123431,98980],[-1,0]],[[120895,96964],[110,27],[105,89],[98,23],[70,-53],[185,9],[74,-41],[116,3],[98,34],[91,0],[70,-36],[210,13],[162,88],[150,-12],[117,116],[152,43],[124,80],[99,31],[38,56],[104,57],[23,56],[72,31],[82,76]],[[123245,97654],[-31,62],[-1,83],[88,63],[-21,47],[32,64],[-20,105],[20,61],[64,49],[76,16],[72,129],[81,60],[7,60],[69,72],[58,12],[46,110],[58,71],[-32,248],[-173,-9],[-118,-62],[-90,85]],[[22150,102406],[124,-120],[152,-91],[137,-129],[45,-104],[63,-72],[-38,-46],[-160,17],[-63,-64],[-1,-85],[42,-84],[-21,-137],[91,-10],[-4,-122],[48,-108],[-33,-122],[-62,-81],[-163,-25],[-75,-80],[49,-125],[-68,-141],[-216,-122],[-29,7],[-168,-86],[-43,-46]],[[20943,105278],[26,-120],[107,41],[59,-29],[163,-136],[18,-39],[167,-48],[91,-98],[157,-122],[33,-55],[130,-43],[147,-167],[72,-1],[61,-68],[102,-50],[98,-1],[93,107],[110,-26],[68,-69],[-42,-88],[240,-58],[241,-77],[81,-72],[185,-27],[194,-86],[176,54],[112,201],[68,72],[61,-13],[61,-86],[81,-28],[71,132],[4,199],[42,79],[164,112],[-77,221],[28,180],[70,1],[-1,99],[193,42],[77,99],[289,87],[83,2],[116,47],[75,90],[-18,60],[97,51],[-24,78]],[[85620,54826],[-21,134],[3,89],[-50,92],[-8,76],[14,78],[-43,47],[-48,114],[14,61],[66,124],[17,6],[9,127],[-41,131],[-58,37],[-63,143],[-19,89],[-31,40],[-71,29],[11,98],[-17,60],[-7,130],[-26,23],[-30,145],[-51,45],[1,43],[-81,71],[-13,225],[-44,69],[-6,50],[-57,101],[-82,206],[-65,138],[-8,83],[19,49],[-19,88],[-41,42],[-44,180],[-2,265],[-52,89],[-23,214],[5,39],[-12,224],[-15,76],[3,139],[18,78],[-9,146],[6,98],[-20,71],[23,107],[-20,90],[32,49],[49,5],[66,38],[37,67],[66,-24],[51,71],[17,98],[42,91],[-27,113],[38,85]],[[89221,54568],[-9,-110],[39,-47],[50,-186],[53,-118],[76,-104],[58,0],[128,-35],[68,-159],[15,-85],[-30,-131],[-17,-160],[-56,-76],[-44,23],[-71,-61],[-18,-63],[-46,2],[5,-135],[-110,-192],[22,-98],[-24,-90],[-75,-83],[-69,-30],[-97,-3],[-30,-24],[-63,4],[-92,-142],[-76,-5],[-36,-51],[34,-68],[-62,-48],[-33,-164],[20,-321],[-15,-67],[22,-56],[71,-35],[46,56],[108,64],[10,-34],[104,25],[44,64],[61,-3],[68,-109],[110,2],[40,44],[98,9],[55,-11],[137,-107],[62,23],[76,-66],[76,-47],[62,14],[25,-21]],[[58829,49926],[-68,158],[31,149],[-41,10],[-35,157],[17,43],[58,30],[49,-1],[87,151],[41,19],[65,149],[42,3],[39,127],[33,57],[85,84],[64,28],[68,-4],[80,-85],[52,80],[71,41],[88,6],[65,48],[34,-10],[51,73],[53,-23],[105,121],[14,50],[54,61],[44,-17],[85,12],[40,-19],[119,99],[100,35],[104,-7],[38,-59],[83,29],[39,88],[50,31],[54,-10]],[[46989,32450],[46,261],[60,40],[24,127],[93,116],[149,-34],[87,20],[85,-29],[50,-121],[86,-127],[53,-131],[32,-30],[-13,-134],[96,-112],[49,-148],[70,27],[134,-50],[92,46],[96,-17],[90,17],[116,52],[62,3],[21,-56],[86,-39],[119,3],[134,39]],[[46851,32319],[73,-25],[62,154]],[[48902,32205],[41,98],[146,77],[63,91],[125,17],[138,39],[94,-35]],[[47317,40217],[89,-89],[46,57],[47,273],[70,97],[54,166],[-1,165]],[[49157,45808],[18,-116],[-17,-141],[31,-62],[37,-158],[121,-148],[-7,-73],[60,-40],[37,12],[12,63],[43,40],[59,-38],[29,-104],[91,-40],[64,77],[54,23],[51,99],[53,-43],[62,-252],[27,-55],[-2,-89],[92,-213],[8,-53],[-27,-84],[53,-275],[-25,-155],[17,-210],[61,-219],[-15,-170],[80,-251],[86,-98],[32,-58],[-3,-60],[65,-62],[52,-98],[48,-51],[45,-157],[-11,-63],[28,-78],[47,-35],[92,-129],[137,-46],[102,81],[58,-83],[44,-5],[87,-81],[57,-22],[52,-73],[56,-23],[59,-58],[23,-67],[-17,-138],[9,-96],[30,-52],[-7,-191],[30,-85],[-97,-108],[-6,-174],[18,-26],[-50,-124],[56,-112],[12,-140],[-35,-149],[49,-60]],[[50055,64645],[41,122],[-35,98],[-11,95],[15,105],[-13,65],[35,96],[39,55],[91,-100],[54,-6],[39,46],[18,-127],[61,-92],[71,-70],[97,-17],[80,-68],[86,4],[63,77],[69,2],[58,59],[96,-14],[105,28],[39,60],[103,-3],[121,24],[52,-51],[10,-152],[25,-114],[-23,-79],[-37,-59],[-63,-149],[-11,-191],[-89,-142],[-6,-57],[34,-79],[-64,-79],[-46,-120],[-20,-109],[-6,-114],[-29,-110],[5,-60],[-17,-105],[-98,-200],[-11,-71],[-41,-62],[-15,-118],[0,-140],[-25,-71],[-2,-108],[-18,-136],[21,-59],[-4,-113],[-21,-62],[-8,-112],[3,-184],[12,-74],[-18,-99]],[[46331,55112],[44,-57],[56,29],[51,-6],[101,76],[5,44],[90,60],[62,21],[53,82],[92,76],[-5,50],[44,41],[21,190],[95,149],[29,25],[10,83],[48,45],[59,156],[60,58],[33,60],[81,59],[82,-30],[20,41],[88,9],[64,25],[5,33],[65,80],[142,85],[68,-62],[59,-19],[60,-126],[53,-50],[70,33],[35,-21],[129,97],[63,67],[111,43],[38,127],[-18,102],[30,162],[44,88],[-10,66],[22,62],[115,157],[68,15],[52,-11],[71,76],[77,11],[48,-26],[70,-91],[46,30],[83,-7],[120,26],[32,91],[79,76],[157,76]],[[49598,57588],[65,90],[42,140],[-30,53],[41,47],[9,90],[98,90],[6,149],[19,67],[-23,193],[-59,39],[33,159],[26,65],[66,-2],[33,-38],[24,44],[62,-3],[39,-90],[78,17],[17,-88],[112,57],[36,54],[64,-58],[22,16],[-10,112],[50,102],[40,-26],[11,103],[-12,108],[39,47],[-13,58],[64,87],[44,3],[30,85],[72,44],[58,-26],[73,217],[47,1],[31,76],[81,47],[38,124],[64,107],[2,32],[-43,128]],[[122047,99640],[16,195],[-16,203],[-93,212],[-72,116],[16,62],[98,128],[-9,163],[-66,63],[9,113],[100,153],[-1,100],[-64,169],[3,164],[-69,71],[-13,118],[-63,97],[-178,30],[-255,-100]],[[121390,101697],[-34,44],[14,116]],[[123392,99136],[-34,29],[-113,-60],[-57,-59],[-92,-147],[-146,-125],[-189,-43],[-71,48]],[[122690,98779],[-1,1]],[[122690,98779],[-60,53],[-230,303],[-85,83],[-33,106],[-52,28],[-36,129],[-60,66],[-78,23],[-9,70]],[[45708,65915],[-21,-58],[7,-130],[38,-120],[41,-26],[-17,-69],[61,-36],[130,-48],[110,-29],[50,79],[14,117],[71,71],[70,-2],[113,70],[75,28],[59,-36],[83,119],[58,26],[52,52],[206,148],[26,45],[28,111],[118,143],[4,46],[99,100],[113,38],[51,57],[42,96],[31,114],[49,63],[108,0],[75,63],[48,-50],[80,96],[100,-21],[84,-36],[80,41],[62,-13],[68,33],[96,7],[36,51],[115,-29],[53,-47]],[[46444,54182],[41,110],[-12,111],[-28,64],[29,50],[92,40],[45,-22],[49,17],[50,-29],[25,-69],[48,-22],[106,-140],[26,-70],[77,-112],[53,-9],[39,-100],[136,-108],[47,-12],[53,39],[93,-57],[59,2],[16,-34],[63,4],[92,83],[113,-24],[35,49],[36,-28],[53,13],[29,37],[55,-2],[18,52],[58,24],[29,100],[62,62],[27,103],[74,25],[12,111],[35,76],[47,8],[40,63],[4,53],[57,34],[62,-67],[67,53],[36,90],[84,10],[110,76],[89,99],[47,-4],[84,79],[40,16]],[[49046,55026],[19,12],[29,113],[50,-16],[17,62],[44,39],[34,67],[120,125]],[[58945,47278],[44,50],[348,233],[55,9],[89,80],[78,-54],[79,20],[28,-47],[80,-48],[112,95]],[[58122,46615],[-91,-74],[-53,-79],[-115,-63],[-51,23],[-65,-17],[-20,91],[25,54],[83,42],[6,32],[81,89],[140,69],[35,78],[41,31],[31,64],[99,27],[49,-21],[45,60],[89,19],[58,-63],[41,44],[30,-26],[81,44],[59,91],[81,68],[38,1],[104,79]],[[56103,42812],[-63,42],[-120,-23],[-24,24],[-174,52],[-66,152],[-40,20],[-8,71],[-54,63],[-30,79],[-63,38],[-46,68],[-117,117],[-123,-9],[-10,45],[-114,126],[-35,-19],[-121,41],[-84,-9],[-57,62],[-41,-19],[-45,26],[-64,-7],[-65,62],[-123,-100],[-134,43],[-55,-91],[-42,17],[-42,-117],[-75,11],[-62,-39],[-41,-59],[-55,6],[-30,-55],[-6,-79],[-49,-72],[-74,-14],[-57,-47],[-48,-105],[-70,-27],[-34,-55],[2,-123],[-71,19],[-24,-80],[-49,-25],[-4,-62],[-70,-110],[-44,-25],[-6,-71],[-39,-49],[-11,-69],[-86,-76],[-26,-107],[-61,-112],[-64,-88],[-55,-105],[-54,-18],[-38,-49],[-7,-92],[-78,-114],[-59,-34],[-4,-95],[-85,-109],[-16,-72],[30,-85],[4,-137],[-45,-27],[24,-78],[-21,-127],[-37,-110],[-36,-53],[38,-55],[-1,-62],[-30,-117],[-48,-24],[9,-151],[-16,-63],[36,-110],[-42,-93]],[[48907,49177],[18,96],[44,55],[42,-11],[21,-73],[65,-77],[35,-5],[57,49],[11,69],[105,94],[64,-117],[94,-81],[82,14],[41,-72],[3,-78],[37,-74],[32,-147],[44,-128],[14,-240],[58,-49],[54,-3],[53,-188],[3,-88],[83,-77],[12,-86],[62,-57],[54,14],[105,-58],[121,-117],[70,-101],[38,-149],[31,-71],[21,-154],[71,-94],[-3,-34],[149,-130],[50,-163],[58,-117],[34,-104],[48,-43],[43,-96],[60,-38],[49,-86],[84,-48],[81,-87],[-4,-42],[48,-97],[73,-46],[105,-28],[47,-45],[67,-29],[127,8],[247,-245],[52,-90],[146,-109],[83,-92],[144,-52],[70,-99],[38,37],[109,-96],[34,0],[59,-71],[36,-76]],[[83841,67327],[-33,-220],[-67,-73],[-13,-43],[13,-99],[-54,-123],[-65,-34],[-24,-54],[0,-75],[-106,-90],[3,-91],[-57,-51],[-67,-34],[-31,78],[-25,-2],[-38,-76],[11,-136],[-31,-31],[-18,-70],[-61,-5]],[[88117,60451],[17,96],[-4,74],[-72,88],[-30,105],[-11,166],[-94,211],[-48,43],[-35,185],[4,91],[-22,194],[-78,12],[-34,81],[-84,16],[-193,75],[-77,138],[-68,10],[-130,121],[-2,32],[-117,62],[-20,28],[-63,4],[-28,53],[-99,53],[-38,2],[-70,67],[-85,-6],[-56,22],[-33,56],[-86,-31],[2,-32]],[[93474,69035],[12,-114],[50,-40],[13,-82],[-27,-55],[13,-64],[32,-24],[53,-137],[51,-96],[50,-38],[-6,-110],[12,-59],[-15,-150],[-78,-202],[-22,-108],[43,-78],[4,-51],[-18,-159],[-40,-22],[-55,-138],[-93,-39],[-12,59],[-53,-15],[-61,23],[-73,-106],[-131,-108],[-46,28],[-43,-71],[-28,-124],[25,-126],[-23,-113],[-5,-154],[-19,-53],[18,-98],[73,-5],[45,19],[-27,-164],[-44,-31],[22,-110],[-8,-60],[-39,-65],[25,-171]],[[97839,47338],[-2,35],[-88,45],[-21,63],[-53,51],[-47,15],[10,127],[-59,38],[-84,123],[-42,24],[-82,-2],[-64,-34],[-31,-73],[-61,-28],[-28,21]],[[84124,67163],[43,-112],[51,7],[69,53],[58,73],[62,-29],[9,-111],[29,-27],[64,4],[85,141],[17,65],[66,75],[46,6],[58,-120],[42,-28],[38,23],[80,-47],[64,19],[40,49],[84,-1],[66,105],[33,83],[37,148],[52,55],[52,148],[39,14],[-48,132],[-35,-41],[-46,0],[-51,76],[-54,-2],[-13,34],[27,98],[-28,117],[-15,119],[9,134],[58,141],[38,126],[12,239],[43,15],[59,103],[14,103]],[[113429,97229],[94,-61],[27,-43],[98,-34],[132,-145],[10,-73],[-275,-133],[-55,-147],[24,-175],[48,-54],[-49,-119],[36,-54],[100,-52],[142,-150],[27,-60],[68,-31]],[[111581,97906],[-110,19],[-145,128],[-91,51],[-59,88],[-30,157],[-86,83],[-38,67],[-150,92],[18,112],[-48,95],[-124,63],[-48,53],[2,80],[-31,103],[-52,43],[2,118],[-56,54],[2,81],[-238,207],[-100,0],[-36,91],[-130,108],[-19,104],[-116,83],[-67,118],[32,117],[-39,31]],[[111581,97906],[-6,0]],[[113429,97229],[-136,35],[-69,118],[-82,36],[-102,90],[-62,27],[-30,100],[-184,-15],[-133,89],[-79,-13],[-137,63],[-81,-36],[-92,26],[-62,-24],[-74,15],[-78,69],[-128,-5],[-193,128],[-104,16],[-22,-42]],[[114248,96080],[-38,3],[-125,-73],[-41,-64],[-111,-54],[-77,6]],[[54129,61139],[6,-40],[70,1]],[[54822,61561],[-93,-26],[-61,-84],[-52,-43],[-224,-66],[-87,-61],[-53,-65],[-17,-175],[-51,-35],[-164,-49],[-44,27]],[[53976,60984],[-7,166],[-87,70],[-84,-87],[-97,44],[-50,96],[-89,62]],[[53562,61335],[-57,-52],[-108,-15],[-74,-110],[-73,-81],[-77,-173],[-79,-44],[-126,56],[-80,-37],[-88,107],[-71,-6]],[[52729,60980],[-47,-148],[-69,-97],[-92,-49],[-33,-47],[-26,-172],[-20,-43],[-102,41],[-33,-23],[-47,-105],[-75,-6],[-65,62],[-127,27],[-174,105],[-88,-20],[-6,-67],[-34,-45],[-79,-53],[-66,32],[-114,-36],[-52,5],[-64,-154],[-43,-43],[-102,20],[-102,-26],[-61,-72],[-41,-88],[-106,-74],[-83,83],[-124,104],[-32,-100],[-69,-35],[-91,-19],[-122,-115],[-25,32]],[[50315,59854],[-10,60],[-69,23],[-75,49],[-80,-23],[-75,30],[-54,61],[-84,43],[-103,106],[-20,72],[-38,25],[-110,176],[-65,59],[-87,141],[-16,61],[-88,50],[-23,72],[-73,-20],[-43,12],[-17,48],[-63,54],[-52,-27],[-40,47],[-60,-97],[-61,85],[-70,-13],[-12,-144],[-55,-26]],[[48772,60778],[-38,13],[-45,-28],[-53,44],[-66,18],[-19,38],[-51,-18],[-33,-85],[-65,-27],[-86,-66],[-48,-131],[2,-144],[-20,-52],[-120,7],[-44,23],[-59,-39],[-32,12],[-116,-50],[-100,-4],[-114,-64],[-40,-143],[10,-159],[-46,-105],[36,-43],[-7,-51],[-72,-80],[-55,-22],[-84,27],[-28,103],[-84,106],[-13,73],[-40,66],[-78,-34],[-57,7],[-75,-47],[-101,-39],[-65,29],[-30,62],[-77,-4],[-66,77],[-41,25],[-20,61],[-2,153],[-45,53],[-95,-86],[-99,-39],[-156,47],[-74,3],[-89,-46],[-84,-120],[11,-68],[-7,-101],[18,-49],[-28,-104],[-58,19],[-2,-77],[-36,-65],[-12,-85]],[[54205,61100],[24,158],[41,52],[88,14]],[[83820,66747],[6,-88],[-17,-80],[12,-68],[-40,-162],[-32,-52],[19,-100],[-31,-66],[-66,-55],[-25,-228],[14,-62],[65,-96],[30,-76],[41,10],[19,-75],[48,57],[66,-23],[14,-52],[99,-7],[32,-53],[43,-19],[37,39],[59,-55],[33,-67],[-10,-66],[96,-58],[130,-161],[9,-237],[41,-46],[32,-115],[-42,-19],[-48,-150],[9,-170],[38,-143],[-41,-13],[-17,-150],[41,-170],[-39,-56]],[[92857,55139],[-42,53],[-97,35],[-30,-42],[-12,-88],[23,-114],[30,-43],[-8,-119],[34,-56],[25,-158],[67,-24],[107,134],[49,-15],[99,-101],[13,-85],[127,14],[30,-35],[79,45],[31,65],[97,-15],[27,-44],[51,-25],[46,9],[59,-26],[135,111],[40,167],[84,44],[80,-15],[39,-56],[63,-38],[69,95],[46,9],[59,67],[99,19],[69,-10],[84,108],[120,39],[106,92],[185,234]],[[76641,98759],[49,-106],[85,-20],[208,59],[46,-145],[70,-59],[105,76],[118,-120],[67,13],[99,72],[92,-5],[110,-36]],[[82795,95342],[160,-8],[150,-111],[79,-13],[128,57],[181,-140],[135,-56],[139,26],[43,44],[140,10],[43,-42],[72,13],[128,-49],[52,18],[146,-133],[87,17],[93,-61],[223,-4]],[[69698,107861],[-28,-67],[-99,-98],[-338,-232],[-129,-110]],[[76256,91889],[73,-52],[78,-12],[67,-47],[-3,-70],[41,-43],[-100,-113],[-148,3],[-71,20],[-66,57],[-37,-5],[-255,80],[-40,-58],[-123,24],[-160,-53],[-70,-4],[-188,-101],[-61,73],[-162,-16],[-46,-43],[-50,12],[-64,83],[-144,-208],[-65,-19],[-74,-149],[-73,-1],[-60,78],[-86,-5],[-46,41],[-89,-25]],[[74229,91336],[-83,3],[-94,-55],[-132,-28],[-120,58]],[[107022,86734],[-51,-32],[-144,-19],[-51,-42],[-77,-19],[-90,-52],[-114,-124]],[[106495,86450],[-3,-90],[-174,-214],[-78,-12],[-24,-36],[-134,-115],[-9,-60],[-53,-12],[-46,-64],[-45,-122],[-98,-91],[-77,-43],[-41,-166],[-59,-152],[-22,-94],[-88,-23],[-90,-141],[-48,-135],[-165,-171]],[[104057,84390],[37,-116],[49,-61],[-6,-124],[15,-27],[-6,-210],[52,-86],[72,-18],[142,-78],[56,-1],[135,62],[82,3],[83,78],[69,91],[74,55],[129,-38],[29,19],[62,149],[7,100],[29,82],[3,100],[74,150],[0,189]],[[123394,76797],[-124,87],[-38,140],[-89,123],[-8,138],[-34,60],[-71,52],[-61,5],[-38,86],[-68,-5],[-95,152],[-50,113],[-226,309],[-21,44],[-212,281],[-90,152],[-59,81],[-100,105],[-88,44],[-114,112],[-58,7],[-80,61],[-52,9],[-104,59],[-148,220],[-114,242],[-38,177],[-52,99],[-47,-2],[-41,92],[-71,115],[-57,133],[-36,-27],[-67,60],[-98,41],[-50,176],[-23,41]],[[111265,84189],[-53,-67],[-52,-31],[-60,-184],[-27,19],[-128,-70],[-25,-159],[-133,-162],[-22,-120],[-49,-163],[36,-116],[-3,-190],[33,-156],[2,-148]],[[110784,82642],[52,-136],[66,-73],[14,-98],[-15,-70],[11,-177],[72,-127],[-1,-140],[40,-120],[78,-36],[65,-77],[84,-38],[65,-92],[43,-12],[37,-63],[47,13],[46,-70],[55,-32],[42,-111],[42,-8],[28,-59]],[[111655,81116],[29,-67],[44,21],[65,-121],[121,-103],[59,-35],[98,-100],[101,-10],[50,-117],[72,-36],[84,-1],[38,-42],[2,-57],[66,-30],[6,-90],[59,-18],[27,-38],[55,-10],[47,50],[121,47]],[[112658,78506],[-49,8],[-23,54],[-160,97],[-63,-20],[-26,68],[-134,-68],[-18,-77],[10,-159],[-47,-22],[-27,100],[-36,53],[-79,-19],[-56,71],[-9,91],[13,67],[-65,19],[-44,-24],[-74,28],[-45,-28],[-108,-19],[-25,-34],[-59,19],[-203,-30],[-81,-75],[-65,-19],[-15,-57],[-129,43],[-21,-45],[-198,-157],[-74,2],[-39,-43],[-55,-5],[-60,-69],[-8,-59],[-85,-58],[-57,76],[-83,-30],[-124,-73],[-139,-10],[-243,-49],[-36,-19],[-92,0],[-77,-37],[-68,12],[-64,-66],[-96,-3],[-62,-51],[-69,-22],[-97,101],[-123,-95],[-47,-1],[-2,-62]],[[120624,85644],[78,-126],[52,-32],[73,-134],[73,-44],[41,-56],[-2,-62],[49,-30],[39,-73],[-13,-127],[82,-132],[52,-38],[59,-10],[175,67],[84,-105],[20,-76],[0,-111],[-32,-44],[22,-56],[-26,-76],[-41,-37],[-5,-159],[75,-145],[6,-122],[20,-32],[33,-190],[-8,-97],[23,-79],[-5,-124],[-25,-161],[25,-46],[29,-134],[94,-1],[53,47],[66,-24],[31,-70],[47,61],[67,0],[38,-34],[112,45],[51,-74],[30,87],[-38,69],[66,85]],[[116427,95841],[-24,-148],[-69,-27],[-74,-116],[-99,-41],[-93,-133],[-149,21],[-197,136],[-300,70],[-154,92],[-95,17],[-42,76],[-71,-5],[-133,91],[-64,85],[-90,46],[-102,-31],[-127,86],[-31,-6],[-160,49],[-105,-23]],[[128005,92319],[9,142],[-21,76],[24,82],[53,15],[92,73],[67,29],[90,3],[37,38],[98,32],[379,-55],[59,28],[152,6],[234,80],[77,-6],[179,36]],[[126393,63500],[-66,-85],[-34,-80],[-44,-15],[-155,-95],[-14,29],[-63,-6],[-56,-34],[-42,-70],[-53,-9],[-59,-40],[-53,18],[-17,-95],[-87,-126],[-83,-69],[-34,-97],[-117,-12],[-71,15],[-14,-38],[-64,1],[-40,42],[-53,-66],[-57,15],[-34,-85],[-58,-1],[-32,35],[-92,-14],[-24,-90],[-33,-46],[-41,2],[-61,-71],[-62,-18],[-52,78],[-64,25]],[[134864,53404],[33,-86],[8,-152],[-16,-50],[-44,-24],[-68,36],[-56,-98],[-35,-217],[-64,-96],[-57,-14],[-87,-132],[-74,-59],[-30,-66],[-66,-22]],[[137948,60079],[-86,19],[-127,69],[-26,32],[-90,6],[-39,32],[-126,27],[-44,119],[-37,-1],[-73,69],[-38,-9]],[[139315,51186],[-114,38],[-56,55],[-31,65],[-164,171],[-70,38],[-27,-10],[-47,49],[-16,71],[-52,83],[-19,73],[-77,201],[-40,3],[-90,55]],[[110875,85148],[-153,144],[-56,69],[-101,57],[-46,48],[-77,35],[14,76],[-12,86],[-142,188],[-117,52],[-46,-30],[37,-107],[-91,-27],[-83,-4],[-106,95],[-40,-74],[-108,19],[-15,-190],[-108,-96],[-27,-57],[-136,-120],[-70,-76],[-136,-50],[-70,-77],[-40,-1],[-89,-140],[-45,-142],[-82,-84],[-106,-27],[-134,-128],[-47,-86],[-8,-100],[-41,-26]],[[108594,84375],[0,-62],[-66,-145],[-55,-79],[-9,-77],[-148,-144],[-56,-96],[-23,-128],[-25,-62],[-20,-175],[-28,-106],[-57,-76],[16,-74],[-18,-92],[-67,-45],[-90,-133]],[[151158,109382],[141,-64],[115,-195],[-144,-47],[-247,-118],[-121,-110],[-172,-54],[-71,-66],[4,-248],[-369,-134],[-44,-79],[-123,-65],[-9,-67],[127,-68],[1,-58],[-104,-109],[170,-141],[249,38],[150,-17],[153,-57],[206,17],[15,126],[136,60],[-5,189],[103,17],[182,-15],[77,-89],[127,-6],[264,146],[78,113],[136,9],[148,-183],[-68,-110],[21,-57],[119,-19],[92,-135],[160,-79]],[[129454,113413],[194,-80],[186,25],[180,-126],[265,-159],[307,-112],[231,-124],[-61,-111],[85,-94],[-184,-126],[-88,-14],[-242,-173],[-47,-195]],[[122729,109709],[164,-38],[74,52],[113,-80],[70,9],[54,89],[126,-66],[-73,-33],[58,-90],[143,23],[188,-63],[300,-6],[112,-47],[103,15],[175,-72],[110,-8],[189,47],[236,-15],[130,129],[144,90],[72,0],[124,91],[-80,97],[33,38],[209,94],[355,-87],[57,23],[-56,142],[-114,37],[45,63],[105,45],[-65,148],[143,18],[389,-68],[110,22],[86,63],[144,-35],[375,-24],[121,11],[120,71],[53,-34],[-122,-72],[52,-47],[156,-42],[-42,-109],[100,2],[62,-195],[-30,-59],[167,2],[108,60],[122,132],[122,15],[159,106],[-164,44],[-125,165],[145,75],[84,-125],[133,52],[83,64],[-4,124],[121,-11],[224,71],[-88,59],[-248,-15],[-140,80],[229,43],[5,128],[45,53],[-68,46],[-44,156],[134,-16],[229,69],[96,79],[47,86],[-25,119],[-162,112],[289,46],[94,115],[125,6],[113,-35],[634,41],[84,-22],[206,49],[-82,161],[83,153]],[[116188,100015],[-162,-147],[-62,-15],[-77,38],[-55,129],[-143,2],[-109,27],[-95,-24],[-106,70],[-180,44],[-86,-49],[-55,59],[68,108],[75,55],[22,92],[-31,64],[44,91],[-31,127],[-84,55],[-101,27],[29,132],[-8,79],[-72,4],[-83,73],[-161,18],[-64,149],[-102,13],[-37,96],[-119,94],[-130,-8],[-130,33],[-33,67],[41,91],[-48,60],[31,67],[-47,68],[31,138],[-48,127],[-63,39],[-47,118],[-69,62]],[[145415,100464],[36,-148],[154,120],[43,118],[57,39],[16,83],[173,112],[83,133],[42,116],[115,89],[13,103],[98,60],[80,81],[-3,105],[-47,82],[5,60],[86,86],[50,129],[115,45],[41,73],[163,-25],[71,-39],[184,-20],[43,25],[241,-81],[79,26],[149,-13]],[[113014,83838],[81,-36],[116,9],[32,-85],[70,-69],[124,-77],[11,-35],[246,-177],[4,-72],[42,-44],[142,-24],[40,-42],[-12,-88],[190,-111],[104,95],[68,-34],[101,-14],[42,-53],[55,25],[71,-24],[86,-3],[156,43],[388,-85],[108,24]],[[40122,72008],[67,23],[25,49],[80,82],[56,-19],[40,-105],[44,-16],[29,44],[56,-13],[38,88],[36,192],[21,51],[115,120],[48,103],[56,20],[-6,68],[76,126],[12,106],[42,53],[57,-8],[31,-91],[74,-10],[19,-28],[84,33],[114,63],[66,13],[207,177],[55,-33],[57,9]],[[33741,86011],[89,-64],[65,-148],[75,-64],[135,-23],[79,-100],[55,-38]],[[29030,100693],[103,0],[101,-107],[50,11],[175,-29],[138,14],[88,-66],[62,29],[100,-15],[110,44],[173,-135],[71,-3],[125,46],[141,-52],[112,43],[140,-34],[124,45],[94,-15],[149,40],[-22,103],[34,36],[0,236],[77,169],[-8,103],[-45,86]],[[28968,100540],[4,85],[58,68]],[[22725,102221],[121,62],[31,71],[-12,92],[155,158],[-11,133],[39,71],[98,11],[87,-102],[104,-73],[69,2],[84,-110],[189,-207],[80,-148]],[[34183,78095],[26,73],[56,-46],[72,-105],[72,-24],[75,-69],[31,-53],[23,-97],[69,-35],[43,61],[86,-25],[40,-38],[91,119],[94,25],[33,93],[69,-6]],[[43353,89556],[25,158],[32,97],[73,18],[45,104],[155,256],[46,0],[15,63],[46,11]],[[43233,89429],[45,29],[75,98]],[[45621,93369],[-47,-179],[117,-98],[44,-141],[-26,-40],[15,-126],[95,33],[13,-156],[-45,-131],[7,-49],[-35,-129],[-18,-170],[6,-65],[-69,-138],[-2,-318],[-21,-97],[20,-139]],[[41021,90764],[-17,48],[28,79],[-87,40],[-135,146],[-142,60],[-173,-87],[-83,-16],[-150,-3],[-84,-115],[-71,-66],[-169,-120],[-77,-89],[6,-152],[26,-49],[-7,-184],[-35,-149],[-66,-81],[-16,-99],[34,-108],[31,-166],[-45,-78],[-13,-92],[-85,-140],[-44,-13],[5,-97],[-48,-76],[0,-170]],[[47262,94819],[33,122],[84,112],[64,-2],[25,94],[128,159],[20,63],[58,65],[75,42],[46,-15],[41,48],[169,90],[147,29],[101,-100],[118,-153],[-21,-256],[55,-60],[-2,-66],[40,-127],[-22,-78],[41,-91],[131,-11],[89,-69],[51,60],[71,6],[71,-67],[62,0],[91,-46],[57,-181],[-84,-119],[16,-37]],[[42390,87780],[19,-25],[111,68],[280,103],[76,-31]],[[121745,103007],[0,-81],[-45,-117],[-79,-105],[-21,-145],[9,-206]],[[121437,103717],[-4,7]],[[121437,103717],[-388,-8],[-42,-99],[-222,-116],[16,-118],[-55,-89],[-150,29],[-76,98],[-119,21],[-106,94],[-111,23],[-115,-49],[-52,-94],[-55,-41],[-364,-45],[-200,33],[-75,-33],[-82,17],[-22,55],[-156,38],[-121,-33],[-119,28],[-97,-19],[-98,-51],[-31,-61],[-96,-48],[-115,-93],[-112,-1],[-115,-32],[-105,31],[-104,-31],[-227,54],[-97,-72],[-51,7]],[[121666,103624],[-77,16],[-152,77]],[[121745,103007],[60,136],[12,208],[-88,216],[-149,124],[-143,26]],[[121370,101857],[2,265],[-102,98],[-76,0],[-4,98],[136,43],[43,-41],[107,-39],[109,-6],[24,78]],[[87971,96308],[47,-26],[-79,-174],[-14,-85]],[[86718,96102],[-97,-27],[-39,-114]],[[87925,96023],[-74,35],[-178,30],[-132,115],[-53,-2],[-86,-58],[-66,26],[-126,-42],[-70,50],[-35,93],[12,95],[-58,-11],[-25,-53],[-168,-100],[-92,7],[-59,-106]],[[86582,95961],[-59,-97],[-44,-4],[-44,-70],[-132,-110],[34,-96],[-47,-6],[-75,-79],[20,-94],[-80,-131],[73,-109],[-28,-82],[37,-190],[-22,-20]],[[88234,95902],[-106,41],[-83,-51],[-49,17],[-71,114]],[[132288,50560],[-89,-66],[-124,-16],[-97,21],[-50,28],[-83,-138],[-46,-12],[-52,-159],[-50,-63],[-38,-100],[-29,-24],[-49,-93],[-80,-41],[-72,-95],[-71,-29],[-82,17],[-69,36],[-38,71],[-36,117],[-33,48],[-73,22],[-70,-47],[-43,15],[-90,127],[-80,238]],[[138115,59282],[28,-55],[-25,-173],[-34,-24],[-32,-84],[-37,-22],[-96,-181],[12,-71],[-13,-66],[30,-54],[5,-112],[-22,-69],[18,-130],[23,-36],[-7,-103],[24,-46],[-40,-119],[-38,-18],[-20,-80],[-31,-36],[6,-69],[-64,-63],[-42,62],[-42,1],[-7,-68],[-47,-51],[-70,7],[-8,71],[-32,11],[-26,-50],[-34,25]],[[24939,92897],[-73,61],[-68,10],[-2,137],[-117,130],[-52,26],[-115,117],[-54,166],[9,111],[-16,51],[56,45],[-23,136],[31,64],[17,110],[30,28],[3,102],[49,-7],[86,31],[23,40],[-23,116],[-36,81]],[[30922,86042],[37,-124],[-37,-148],[-61,-82],[-67,8],[-43,-87],[-8,-113],[-26,-47],[-79,-62],[-85,40],[-53,69],[-26,99],[-83,12],[-44,-68],[-90,-4],[-46,46],[-37,94],[-86,92],[-67,17],[-81,-7],[-94,-80],[-26,-50],[-91,80],[-121,-9]],[[29608,85718],[-116,-65],[-175,105],[-54,5],[-110,138],[-46,19],[-35,-31],[-92,-22],[-33,-32],[40,-117],[2,-55],[-50,-15],[-111,52],[-39,-53],[-95,-29],[-196,-139],[-82,-36],[-34,16],[-51,-41],[-71,76],[-75,-39]],[[29610,85713],[-2,5]],[[56540,58935],[61,38],[36,79],[69,16],[79,-65],[66,17],[58,-34],[12,-71],[50,-6],[80,-60],[29,-77],[-6,-107],[30,-89],[-5,-163],[22,-90],[-16,-81],[2,-90],[-35,-153],[2,-132],[-13,-84],[-55,-104],[-9,-73],[64,-12],[10,-70],[-44,-45],[-19,-140],[-19,-34],[-110,-91],[-16,-167],[-81,-45],[10,-170],[19,-32],[-21,-73],[10,-159],[-31,-182],[-38,-80],[-39,-137],[-14,-221],[33,-147],[-22,-48],[19,-71],[-41,-105],[11,-50],[-26,-184],[20,-58],[3,-174],[-67,-125],[44,-212],[-53,-53],[-38,-96]],[[56344,51575],[-38,122],[-44,47],[-38,95],[-54,79],[-4,56],[20,122],[59,58],[47,143],[121,131],[-3,270],[75,124],[46,29],[52,-51],[44,34],[21,60],[57,53],[-7,88],[56,-6],[44,67],[14,139],[-37,79],[-2,171],[15,134],[-44,181],[-18,119],[29,58],[-22,119],[-87,80],[-24,178],[-52,169],[-6,102]],[[89137,46136],[46,56],[25,92],[65,42],[31,51],[85,21],[26,100],[39,17],[85,79],[18,80],[36,26],[11,63],[50,54],[14,61],[61,61],[123,15],[125,76],[20,100],[38,62],[75,27],[67,-8],[122,46],[51,-6],[153,-110],[72,-30],[89,19],[53,-15],[89,34],[100,-36],[40,8],[58,-63],[118,-31],[73,-126],[29,-7],[60,-150],[64,-112],[55,-50],[14,-101],[80,-169],[25,-116],[-2,-68],[41,-81],[-5,-72],[24,-97],[55,-75],[62,-165],[24,8],[84,-122],[37,7],[103,-119],[44,8],[15,-62],[-11,-147],[-28,-88]],[[82470,106310],[-102,-121],[-246,-169],[-16,-126],[105,-77],[-30,-162],[96,-144],[16,-81],[100,-98],[23,-138],[78,-153],[72,-47],[58,-105],[81,-84]],[[47622,40886],[52,15],[94,-14],[37,-74],[1,-92],[100,-13],[132,52],[41,-72],[11,-78],[-15,-101],[68,-199],[85,25],[82,-119],[106,-9],[51,-24],[45,-71]],[[97187,47743],[-83,-17],[-13,-59],[-52,-88],[-93,-2],[-84,-36],[-110,-15],[-74,-62],[-85,-16],[-25,33],[-95,-68],[-43,29],[-46,114],[-21,100],[-85,166]],[[28502,103541],[47,-28]],[[24885,101669],[-64,63],[-106,20],[-55,-35],[-135,-16],[-55,-57],[-239,41],[-99,-31],[-195,238],[-55,132],[-123,157]],[[28549,103513],[128,28],[126,74],[142,206],[61,40],[234,-72],[41,-95],[84,29],[72,-20],[104,44]],[[24885,101669],[95,-26],[117,108],[137,71],[92,23],[95,-20],[111,-60],[111,-27],[125,1],[250,54],[155,76],[110,-16],[1,-67],[87,-157],[57,-26],[142,8]],[[26570,101611],[128,-7],[296,203],[24,88],[60,92],[7,78],[-62,83],[-9,129],[31,146],[52,104],[-29,48],[44,101],[-37,195],[35,86],[-47,51],[27,75],[94,45],[137,8],[-45,83],[216,112],[151,40],[44,-44],[82,21],[97,-52],[186,13],[94,45],[64,68],[160,84],[132,35]],[[93812,72324],[-67,32],[-36,122],[-23,23],[-56,154],[-44,75],[-74,-26],[-21,-94],[-140,32],[-78,-27],[-32,-40],[-74,43],[-74,-52],[-56,1],[-36,31],[-22,85],[5,160]],[[134308,52424],[-54,35],[-29,169],[-76,82],[-31,79],[-43,29],[-41,73],[-32,142],[-41,-39],[-74,-28],[-53,42],[-37,136],[-34,3],[-55,141],[-72,32],[18,46]],[[137262,60442],[-43,-23],[4,107],[-17,99],[-35,-6],[-30,104],[2,77],[-107,218],[-91,58],[-26,88],[-47,70],[32,96],[-18,147],[27,56],[8,97]],[[121489,112761],[-211,-72],[-73,-54],[-234,-3],[-348,-51],[-255,-86],[35,-83]],[[117243,111393],[579,-57],[129,-44],[317,14],[245,129],[60,49],[123,2],[129,154],[-29,165],[-188,-14],[-104,60],[-275,-2],[-91,65],[-120,30],[80,67],[147,61],[307,-38],[59,-26],[351,-32],[109,22],[362,-4],[99,-41],[122,8],[121,89],[63,172],[397,3],[105,87],[62,99]],[[116139,97828],[-158,87],[-136,-34],[-66,14],[-81,91],[-25,61],[-108,35],[-181,166],[-76,121],[12,58]],[[34593,86016],[62,29],[124,-4],[19,-76],[38,4],[35,-81],[72,-91],[47,-24],[16,-76],[60,-65],[70,-2],[-14,-62],[44,-48],[57,23],[38,-115],[45,-6],[31,-50],[64,-31],[64,-243],[66,-53],[43,-87],[48,-170],[61,-79],[67,-128],[12,-102],[133,-328],[37,-154],[51,-22],[75,-106],[55,-52],[30,-96],[-40,-85],[33,-61],[1,-149],[32,-62],[87,-101],[61,-3],[51,-89],[-18,-68],[12,-82],[-24,-96],[102,-84],[4,-69]],[[34239,85574],[40,50],[130,20],[55,55],[10,104],[-18,106],[137,107]],[[24346,108026],[-122,-75],[-262,-16],[-100,24],[-124,-41],[-199,8],[-110,-72]],[[35063,77968],[68,-15],[36,72],[120,23],[38,80],[56,7],[30,37]],[[116023,90954],[-106,4],[-280,50],[-118,98],[-143,35],[-115,54],[-105,-23],[-143,65],[-24,77],[-135,132],[-29,-34],[-101,-33]],[[112362,90839],[80,48],[106,6],[40,84],[69,42],[76,-3],[82,80],[95,23],[122,55],[92,60],[99,-62],[69,-9],[130,42],[207,-12],[69,45],[11,46],[127,64],[251,-23],[100,-80],[162,-61],[88,61],[151,29],[88,-45],[82,17],[39,36],[-80,53],[7,44]],[[114724,91379],[8,26],[-161,74],[-101,101],[8,112],[30,32],[105,7],[60,63],[91,-47],[124,38]],[[26846,105350],[256,-146],[137,-28],[365,-8],[82,27],[304,176],[158,29],[376,-103],[29,10]],[[19677,110813],[-93,-29],[-50,-85],[173,-198]],[[19452,110681],[-104,78],[37,54],[-83,76]],[[19452,110681],[-114,-52],[-55,38],[-163,-23]],[[19707,110501],[-85,0],[-101,132],[-69,48]],[[26846,105350],[-22,55],[-244,77],[-41,-102],[-189,-65],[-144,-20],[-151,-1],[-188,74],[-136,89],[-86,2],[-120,108],[28,79],[-101,77],[-165,3],[-207,100],[-90,59],[-92,12],[-112,50],[-164,-11],[-98,15],[-151,113],[86,186],[-3,237],[-39,127],[-151,138],[-45,160],[-117,222],[-184,139],[18,97],[-162,150]],[[23776,107520],[-73,131],[30,60],[-83,23],[-26,75],[-195,45]],[[23429,107854],[-150,14],[-130,128],[-129,78],[-239,53],[-163,87],[-102,84],[-133,46],[-213,11],[-210,178],[-45,150],[46,58],[128,49],[23,50],[-101,45],[-76,88],[-216,150],[-101,15],[-131,63],[-49,99],[-14,153],[-65,80],[-140,24],[-89,88],[-274,-8],[-46,-36],[-380,-88],[-144,-50],[-250,109],[-307,211],[-5,89],[-109,165],[6,118],[46,26],[117,188],[-77,132]],[[24655,91085],[-13,-61],[-51,-48],[-47,21],[-37,69],[-57,-27],[-158,112],[-40,132],[0,68]],[[85735,95717],[16,-54],[-63,-128],[6,-124]],[[85671,94828],[-4,-195],[-22,-41]],[[48512,40106],[18,-23],[27,-155],[28,-75],[-15,-108],[13,-49],[3,-169],[21,-155],[53,-115],[38,-154],[42,-53],[37,-105],[-32,-114],[4,-109],[32,-160],[71,-166],[29,-201],[-9,-259],[-44,-303],[3,-44],[-98,-182],[2,-111],[20,-63],[8,-145],[-28,-140],[14,-84],[-16,-112],[114,-102],[72,-127],[71,6],[46,-171],[42,-4],[85,-63],[20,-156],[-77,-88],[97,-82],[26,-71],[117,-115],[150,-116],[46,-17]],[[90676,68071],[25,162],[24,83],[9,168],[-8,124],[47,31],[39,163],[-27,114],[46,131],[90,122],[15,57]],[[83178,66098],[-76,47],[-150,-49],[-90,-143],[-49,0],[-85,-139],[-42,51],[-66,-99],[-86,-66],[-69,89],[-44,-2],[-69,-132],[-68,-89],[-145,-81],[-38,15],[-49,-34],[-33,58],[-35,-107],[-50,-80],[-38,13],[-50,-70],[-29,-80],[-63,-11]],[[86463,62467],[-81,-12],[-31,37],[-109,-9],[-24,99],[-50,-9],[-76,32],[-48,-59],[-46,29],[-47,-13],[-24,36],[-170,-57],[-22,-59],[-48,29]],[[95599,65674],[36,-31],[10,-68],[84,-25],[56,-65],[25,-81],[50,-72],[-29,-109],[22,-177],[-39,-67],[12,-125],[34,-28],[-7,-78],[-95,-155],[13,-91],[-36,-76],[23,-81],[-30,-66],[-53,25],[-4,-117],[16,-62],[59,-52],[-19,-88],[18,-68],[38,-45],[22,-110],[-12,-70],[16,-86],[45,-60],[-1,-65],[24,-133],[-5,-113],[60,-129],[9,-106],[-3,-222],[-16,-81],[-54,-76]],[[95868,62621],[-9,-38],[26,-90]],[[82837,103307],[-80,-102],[-25,-76],[4,-98],[-52,-81],[-73,-55]],[[118046,85749],[40,19],[73,-24],[77,48],[144,-35],[42,-56],[48,-16],[15,-86],[127,-61],[82,-16],[25,-72],[73,-56],[51,-62],[98,12],[92,-91],[74,-201],[91,-30],[40,-95],[38,-7]],[[129534,92898],[93,65],[166,12],[70,-45],[108,-19],[63,7],[111,81],[80,108],[140,63],[111,-7],[38,-54],[97,-60],[99,-34],[28,-76]],[[86878,105497],[96,-103],[164,-86],[111,-25]],[[42876,87895],[-20,-95],[59,-134],[-19,-46]],[[42896,87620],[-17,-72],[86,-81],[36,-100],[45,-70],[-17,-73],[14,-116],[50,5]],[[43093,87113],[33,-51],[-3,-114],[-22,-73],[41,-82],[7,-100],[102,-160],[25,-109],[3,-94],[89,-132],[8,-45],[54,-28],[27,-90],[-39,-91]],[[86215,94873],[-49,-71],[21,-440],[50,-58],[3,-95],[36,-68],[-18,-47]],[[84445,63820],[57,-167],[62,-19],[23,-76],[81,-121],[0,-103],[23,-63],[8,-140],[23,-99],[96,-85],[68,-43],[3,-75],[40,-17],[-18,-100],[16,-169],[-15,-21],[-6,-166],[34,-22],[-4,-150],[-21,-131],[-49,-29],[-81,-169],[-4,-63]],[[85687,62511],[-31,14],[-54,77],[-52,6],[-90,52],[-48,59],[-51,-7]],[[134599,95880],[-88,-167],[-101,-66],[-50,-86],[-74,9],[-146,-13],[-66,-40],[-141,19],[-61,-22],[-61,-95],[-67,-37],[-15,-74],[-72,-33]],[[131221,94309],[85,-1],[67,34],[32,-71],[88,15],[54,42],[125,28],[55,-9],[71,135],[147,-2],[59,50],[43,-8],[43,83],[85,85],[80,14],[176,-64],[28,79],[62,-22],[62,-59],[125,-5],[111,41],[82,-45],[86,42],[56,-55],[80,8],[89,117],[42,131],[70,59],[41,113],[105,73],[40,114],[51,35],[96,7]],[[122194,83244],[20,-10],[37,-177],[45,-44],[23,-73],[99,-69],[31,-106],[71,-55],[55,-5]],[[122777,113334],[-123,-20],[-71,-59],[-174,-40],[-26,-77],[-174,-45],[-146,-1],[-136,-40],[-29,-58],[-153,-98],[-121,-114],[-135,-21]],[[26864,96793],[82,27],[49,-90],[-36,-83],[28,-160],[37,-51],[-9,-95],[18,-68],[111,-60],[94,-17],[30,61],[51,1]],[[53804,52693],[-42,18],[-144,-55],[-15,-29],[-82,-40],[-82,-98],[-129,-50],[-16,-52],[-58,-51],[-52,-161],[100,-146],[12,-141],[79,-119],[-29,-92],[7,-50],[83,-90],[18,-96],[-45,-76],[26,-76],[-41,-60],[-98,-19],[-60,-66],[-40,-139],[-55,-67],[-11,-74],[22,-84]],[[53152,50780],[-115,-296],[-53,-71],[-3,-46],[-46,-74],[-138,-67],[-25,-65],[30,-123],[-4,-106],[21,-121],[-74,-100],[2,-74],[-25,-84],[-48,-42],[3,-46],[69,-55],[67,-13],[28,-74],[-1,-152]],[[52840,49171],[-54,-99],[6,-57],[-126,-166],[-77,-128],[-27,-1],[-86,-97],[32,-147],[41,-40],[-1,-130],[56,-76],[-21,-106],[36,-81],[-13,-231],[-32,-86],[-4,-118],[19,-46],[-26,-113],[13,-37],[-27,-111],[10,-134],[30,-16],[28,-195],[20,-74],[-67,-35],[65,-113],[0,-100],[68,-62],[3,-38],[62,-79],[-9,-55],[26,-74],[-4,-76],[73,-105],[1,-196],[50,-78],[-16,-41],[35,-60],[21,-176],[-48,-177],[-14,-153],[-31,5],[-59,-91],[-44,3],[-13,-65],[-50,-61]],[[52686,45055],[49,-119],[-29,-108],[-56,-40],[-21,-110],[-44,-96],[14,-29],[-92,-81],[-36,-100],[-16,-92],[-18,-248],[-91,-118],[-45,-131],[-38,-28],[21,-111]],[[52284,43645],[-121,-114],[29,-205],[-25,-188],[-88,-80],[6,-170],[-8,-143],[-22,-85],[-26,-204],[-70,-84],[-66,-45],[-33,-142],[-1,-142],[-32,-183],[29,-94],[-31,-195],[22,-107],[-18,-201],[-78,-168],[-109,-262],[-146,-230],[-92,-23],[-32,-161],[24,-70],[-18,-88],[-8,-181],[-17,-74],[39,-213],[78,-192],[34,-30]],[[51504,39571],[118,-42],[57,-35],[107,24],[58,-61],[36,-76],[41,-24],[38,-86],[63,-90],[11,-56]],[[51504,39571],[128,-159],[111,-90],[38,-61],[57,-42],[51,11],[56,-58],[56,10],[32,-57]],[[52033,39125],[67,-16],[152,-141],[100,17]],[[43790,90263],[83,43],[71,-69],[99,-137],[-5,-38],[122,-75],[-12,-83],[96,-53],[17,-43],[71,-59]],[[109652,86601],[-1,0]],[[109651,86601],[-26,-55]],[[109222,85864],[20,-125]],[[109625,86546],[-54,-22],[-59,-64],[-108,-55],[-169,73],[-72,81],[24,-217],[27,-68],[23,-247],[-15,-163]],[[109984,85950],[-76,96],[-34,78],[-8,83],[-47,95],[-114,132],[-42,82],[-12,85]],[[109242,85739],[51,-68],[4,-46],[-68,-95],[-39,-99],[-127,-71],[-127,-38],[-68,-61],[-70,-13],[-91,-84],[-28,-59],[-41,-157],[11,-84],[-43,-131],[-24,-220],[12,-138]],[[107983,109147],[289,101]],[[52209,52463],[-31,-139],[-5,-106],[11,-130],[-45,-78],[-98,41],[-23,33],[-98,-17],[-72,17],[-146,131],[-19,101]],[[51683,52316],[-20,168],[-76,273],[-47,131],[-28,22]],[[51512,52910],[-36,149],[-71,49],[-64,79],[-91,50],[-26,48],[-37,-35],[-79,16],[-79,-34],[-58,27],[-73,-26],[-22,61],[-99,140],[-6,74],[-42,18],[-52,-15],[-58,52],[-39,4],[-60,68],[-51,-8],[-46,85],[-26,7],[-44,138],[-70,-37],[-62,26],[-44,77],[-70,54],[-62,14],[-51,-62],[-96,17],[-31,32],[-78,12],[-40,58],[9,78],[-107,80],[-32,80],[-89,25],[-9,71]],[[52879,65734],[-72,-71],[-47,-171],[-74,-210],[28,-141],[-15,-52]],[[52878,65910],[30,-35],[4,-97],[-33,-44]],[[52699,65089],[-5,3]],[[122466,102807],[-79,61],[36,141],[-67,100],[118,24],[-22,133],[105,51],[-91,292],[28,114],[-118,70],[20,36],[-47,128],[-244,104],[-33,70],[-117,88],[-64,110],[-124,28],[-143,82],[-67,71]],[[80146,69968],[-19,-34],[-6,-243],[-16,-118],[-33,-31],[-4,-154],[17,-50],[-27,-107],[-30,-289],[22,-90],[-43,-72]],[[96814,84571],[28,-44],[78,-28],[66,-55],[21,31]],[[38407,100211],[31,19]],[[37919,99786],[1,0]],[[37920,99786],[38,19]],[[37663,99633],[-198,-50],[-94,-4],[-48,28]],[[37323,99607],[0,25]],[[37323,99632],[-115,76]],[[39319,101084],[88,-24],[21,106],[47,59],[136,89],[-24,152],[97,111],[125,94],[35,-5]],[[38438,100230],[45,105],[118,64],[101,79],[175,61],[55,58],[209,60],[52,65],[19,176],[-15,70],[45,82],[77,34]],[[37958,99805],[131,101],[62,21],[55,94],[68,51],[85,139],[48,0]],[[36320,99686],[180,-62],[95,35],[28,39],[96,4],[38,32],[88,-39],[247,60],[121,-11],[-5,-36]],[[37663,99633],[96,61],[28,54],[133,38]],[[44380,92515],[9,-123]],[[44380,92515],[89,55],[34,93],[67,3],[102,83],[-48,61],[-55,125]],[[44333,92360],[56,32]],[[88830,54487],[-37,58],[-44,-20],[-83,53],[-21,105],[-119,221],[13,84],[63,50],[20,160],[-33,110],[-50,67],[-47,-20],[-27,32],[21,135],[-22,38],[12,135],[56,85],[-28,265],[19,163],[19,47],[51,-69],[43,66],[56,0],[62,208],[-28,83],[82,122],[40,25],[-19,73],[84,141]],[[78621,67122],[3,19]],[[78630,69703],[-20,-6],[-32,-123],[-6,-83],[-25,-80],[-36,-204],[-13,-123],[6,-102],[-23,-40]],[[78481,68944],[0,-2]],[[78481,68942],[12,-74],[-27,-115],[12,-157],[49,-58],[1,-105],[17,-73],[10,-228],[47,-113],[-7,-97],[-29,-54],[12,-96],[-15,-219],[30,-162],[3,-114],[28,-136]],[[78481,68942],[0,-2]],[[78624,67141],[-1,-46]],[[78623,67095],[-2,27]],[[78623,67095],[0,-7]],[[78625,67088],[-2,7]],[[75196,70109],[-21,-27],[-29,-160],[51,-87],[80,14],[46,-29],[27,-134],[32,-21],[3,-108],[55,-22],[58,-116],[43,17],[44,-50],[83,-36],[49,-111],[10,-147],[36,24],[57,-46],[37,-68],[-5,-127],[29,-45],[-22,-111],[-30,-17],[-3,-163],[-33,-178],[19,-188],[41,-20],[28,-101],[118,-170],[17,-61],[-34,-93],[-16,-134],[-57,-57],[9,-61],[-29,-106],[12,-100],[39,5],[29,-186],[30,14],[63,-149],[-29,-200],[13,-67],[-68,-106],[-30,-79],[17,-164],[-41,-45]],[[114143,102935],[-281,11],[-167,-37],[-45,-41]],[[116188,100798],[35,93],[18,131],[69,24],[156,-34],[147,54],[53,-37],[142,99],[111,26],[57,65],[-8,90],[-115,66],[-76,4],[-37,54],[-9,228],[-263,23],[-163,45],[-227,-68],[-74,-36],[-43,60],[117,46],[210,50],[30,38],[183,47],[-14,153],[23,96],[61,95],[8,134],[-66,100],[-11,98],[-103,53],[-99,80],[-233,30],[-30,-28],[-176,28],[-177,-27],[-123,-39],[-141,-86],[-161,-62],[-93,-93],[-79,-2],[-35,-45],[-171,-32],[-46,-69],[-82,69],[-88,39],[-81,103],[-48,114],[19,37],[-56,91],[-108,123],[-69,52],[-58,-1],[-124,58]],[[116120,100678],[50,24],[18,91]],[[115904,100330],[14,-73],[90,6],[97,158],[-60,188],[75,74]],[[118062,114058],[44,-92],[-211,-67],[-161,-23],[-32,-48],[68,-105],[166,-58],[170,-8],[129,-63],[165,-22],[346,45],[142,111],[19,81],[-84,39],[157,71],[110,6],[254,142],[22,60],[240,27],[11,79],[190,65],[195,-33],[361,51],[137,84]],[[126017,104065],[79,-43]],[[125470,100245],[71,63],[74,27],[76,91],[253,87],[8,-62],[-87,-27],[-128,-172],[-34,-124],[39,-105],[-142,-169],[48,-136],[159,69],[59,-8],[24,58],[62,-4],[132,-99],[62,75],[155,91],[175,45],[116,95],[24,43],[148,33],[75,38],[38,57],[117,37],[131,126],[45,66],[96,51],[59,79],[242,67],[115,-15],[93,21],[90,132],[19,62],[-15,105],[-51,119],[-128,73],[-43,109],[-174,-10],[-55,216],[19,181],[-54,84],[4,83],[-34,73],[-3,199],[-85,17],[35,78],[8,118],[93,90],[104,36],[160,97],[39,92],[-25,56],[53,88],[-104,115],[-121,44],[-25,-97],[-52,-41],[-219,-53],[-48,41],[-8,119],[-56,12],[-91,83],[-50,-45],[-65,11],[-124,65],[-75,-50],[-116,-23],[-178,109],[-95,105],[12,75],[-142,44],[-56,51],[0,68],[50,185],[-27,145],[-82,36],[-58,72],[70,66],[44,92],[-20,53]],[[128861,83206],[-95,59],[-25,38],[-86,58]],[[128254,83348],[27,33],[55,-56],[79,-29],[105,91],[55,-56],[80,30]],[[128861,83206],[19,-17],[114,41],[50,76],[24,110],[63,63],[53,98],[92,51],[-4,60]],[[120180,73138],[30,-85],[-31,-67],[5,-176],[43,-113]],[[120116,73926],[-29,-117],[15,-116],[-21,-54],[38,-133],[-35,-39],[36,-107],[10,-130],[50,-92]],[[120227,72697],[33,-73],[9,-75],[73,-62],[60,-77],[80,-35],[60,-96],[-29,-134],[47,-73],[34,-98]],[[120858,75224],[-38,-30],[-24,-77],[35,-76]],[[121102,76120],[-29,130],[-82,9],[-33,-104],[-4,-130],[-26,-172],[15,-43],[-18,-101],[3,-132],[53,-153],[-40,-132],[-44,-61],[-39,-7]],[[120831,75041],[-20,-41],[-49,-2],[-123,-80],[15,-109],[-29,-52],[2,-137],[53,-103],[17,-119],[-10,-53],[19,-158],[56,-103],[15,-106],[-9,-110],[-64,-151],[-17,-79],[-33,-39]],[[83870,50770],[-52,-114],[-45,-20]],[[84425,53111],[-19,-78],[-34,-49],[-41,-135],[-113,-167],[-70,-58],[-36,-3],[-35,-65],[-42,-27],[-29,-93],[-3,-76],[43,-91],[47,-10],[28,-115],[-17,-53],[14,-110],[-49,-190],[14,-47],[-14,-177],[8,-167],[23,-119],[0,-68],[-95,-110],[-32,-101],[-78,-102],[-25,-130]],[[83773,50636],[-118,-56],[-16,-41],[-110,4],[-25,48],[-156,151],[-12,68],[-56,42],[-85,9],[-120,-55],[-30,-52],[-108,-91],[-140,7],[-63,60],[-142,-79]],[[53645,40077],[-52,-50],[-79,-8],[-35,-77],[-42,13],[-37,-60],[-67,-18],[-24,-67],[-59,5],[-140,-16],[-56,-50]],[[54241,40815],[-30,-57],[-70,-55],[-98,-134],[7,-77],[-37,-186],[-71,6],[-37,-145],[-86,-111],[-71,9],[-66,-29],[-37,41]],[[53054,39749],[-89,-79],[-41,3],[-4,-72],[-48,5],[-132,63],[-45,-42],[-94,29],[-83,-70],[14,-42],[-157,-153]],[[82912,96730],[-1,3]],[[82912,96730],[-1,-3]],[[81047,96149],[119,-111],[133,3],[56,71],[83,37],[112,-18],[79,115],[72,5],[106,74],[40,61],[120,33],[49,62],[61,22],[135,92],[214,10],[131,32],[47,71],[71,14],[68,77],[84,-8],[85,-61]],[[84935,96127],[-23,52],[-71,29],[-53,-29],[-120,5],[-72,58],[-42,103],[-162,-8],[-38,29],[-168,6],[-62,-118],[-101,-42],[-69,42],[-109,-43],[-218,107],[-57,2],[-16,58],[-85,32],[-77,68],[-59,11]],[[83333,96489],[-98,19],[-62,46],[-61,106],[-200,70]],[[39295,72406],[-38,-22]],[[39209,72376],[-37,63],[-46,13]],[[39077,72809],[32,-69],[-30,-143],[-63,-28],[-7,-108],[117,-9]],[[39295,72406],[55,15],[60,-27],[3,-77],[-19,-73],[20,-50],[-77,-98],[-29,-143],[-36,-56]],[[39209,72376],[48,8]],[[37211,74632],[113,-115]],[[37814,73683],[20,56],[-102,104],[-195,178],[37,76]],[[37211,74632],[28,39],[10,86],[29,45],[-24,56],[51,95],[-13,110],[26,83],[32,29],[97,-52],[69,81],[75,62],[23,103],[-2,106]],[[37324,74517],[59,5],[40,-56],[24,-130],[67,-126],[53,-39],[7,-74]],[[32138,81870],[-53,-42],[-80,8]],[[31383,82099],[15,-50],[-2,-120],[43,-46],[89,-39],[103,1],[114,-99],[35,28],[77,-66],[62,15],[47,116],[39,-3]],[[32138,81870],[67,50],[22,53],[-9,133],[-47,153],[0,99],[-48,51],[-31,311],[59,48],[32,99],[49,28],[117,258],[41,55],[151,57]],[[47757,102119],[-48,-113],[43,-74],[6,-90],[137,-147]],[[47411,100554],[28,97],[-25,123]],[[47418,100543],[32,-64],[-19,-107],[138,-76],[129,1]],[[47698,100297],[1,-1]],[[47757,102119],[37,55],[-38,44],[5,133],[-99,153],[41,88],[-8,66],[-109,113],[16,55]],[[47414,100774],[36,52],[3,125],[118,14],[86,57],[71,94],[114,35],[186,163],[68,5],[65,46],[-15,96],[-88,72],[-48,80],[-115,82]],[[47411,100554],[7,-11]],[[47730,100292],[-32,5]],[[46820,98026],[4,-48]],[[46827,97677],[6,-257]],[[46491,96618],[-5,-104]],[[46986,99042],[-71,-72],[-146,-353],[-43,-288],[71,-125],[23,-178]],[[46824,97978],[15,-83],[-50,-121],[38,-97]],[[46833,97420],[36,-56],[-12,-83],[-1,-231],[-28,-81],[-27,-188],[-74,-153],[-236,-10]],[[75470,89991],[-88,98],[-78,-104],[-11,-56]],[[76162,90038],[-91,-8],[-13,-30],[-115,-54],[-28,-34],[-129,-69],[7,-66],[-44,-25],[-90,66],[-68,20],[-121,153]],[[75293,89929],[-70,-72],[-93,-30]],[[75131,89828],[-100,14],[-101,-61],[-65,5],[-55,-65],[-52,65],[-94,-57],[-71,42],[-79,-31],[-121,-105],[-32,-194],[-39,-73],[-4,-74],[-96,-110],[-6,-96],[21,-104],[-9,-124],[76,-91],[27,-210]],[[30065,93527],[-50,82],[-13,88]],[[30002,93697],[-55,105],[54,56],[-10,79],[-65,70],[-83,23],[-78,122],[121,169],[49,165],[93,10],[146,100],[48,-10],[54,-64],[109,-22],[146,-79],[117,8],[155,86],[112,161],[103,19],[123,54],[116,69],[12,45],[70,50],[146,-6],[57,-21],[108,19],[128,-15],[79,57],[32,-10],[71,64],[135,158],[50,99],[176,48],[85,67],[29,114],[39,72],[121,113],[59,140],[103,161],[-2,110]],[[30152,93338],[-42,66],[-17,99],[-27,23]],[[38985,94612],[-28,-26]],[[38786,93198],[-26,171],[40,101]],[[39092,94653],[-107,-41]],[[38957,94586],[-9,-53],[61,-81],[-34,-66],[-102,-51],[12,-48],[-40,-132],[61,-42],[12,-186],[-42,-91],[34,-88],[17,-129],[-76,-14],[-51,-135]],[[38786,93198],[95,-192],[109,-26],[-45,-95],[-65,-37],[-6,-52],[-143,-78],[-104,33],[-107,2],[-230,-146],[-25,-2]],[[32331,92243],[0,1]],[[32331,92244],[-31,80]],[[31491,92085],[-12,61],[24,92]],[[31489,92032],[22,-141],[-37,-30]],[[33750,91375],[-125,48],[-33,-4]],[[31503,92238],[97,90],[12,62],[131,124],[113,9],[126,-19],[136,-3],[35,-123],[98,-12],[49,-42]],[[31489,92032],[2,53]],[[33590,91417],[-167,81],[-23,30],[-263,158],[-85,25],[-87,49],[-151,111],[-41,-1],[-104,87],[-165,106],[-77,29],[-58,51],[-38,101]],[[33750,91375],[142,-34],[89,22],[136,-8],[141,-107],[64,-34]],[[31686,90812],[25,125],[-24,45],[43,163],[-29,147],[-77,111],[-50,27],[-5,66],[-104,146],[23,54],[-16,67],[-51,67],[53,31]],[[35273,75850],[-77,29]],[[33638,75378],[15,38],[-9,144],[53,56],[54,-1],[59,-81],[87,38]],[[35270,76174],[-80,-78],[27,-86],[2,-69],[-23,-62]],[[35273,75850],[82,-103],[-34,-50],[-88,-71],[-34,-119],[-55,-65],[-27,-83],[-53,-66],[-70,5],[-129,-160],[-104,14],[-63,29],[-46,-21],[-101,50],[-59,-30],[-58,15],[-43,65],[-79,68],[-74,-3],[-81,161]],[[34157,75486],[-54,57],[-206,29]],[[34157,75486],[0,6]],[[34157,75483],[0,3]],[[33636,75379],[-49,-43],[-50,-12],[-18,-61],[-3,-121]],[[29541,103747],[17,214],[-41,91],[24,116],[-41,62],[-57,166],[-112,71],[-120,9],[-50,115],[-87,81],[18,129],[-162,67],[-16,79],[-164,74],[-5,80],[67,64],[-18,94],[-109,67],[-132,-19]],[[38705,89691],[-28,-51],[1,-74],[-80,-235],[15,-65],[101,-133],[81,-45],[87,-80],[32,-72],[42,-25],[10,-95],[33,-84],[-31,-120],[84,-177],[35,22],[53,-46]],[[39140,88411],[-8,-171],[-48,-115],[-46,48],[-29,-101],[-115,-171],[35,-73],[-26,-28],[-37,-134],[16,-53],[-93,-68],[4,-140],[-75,-104],[8,-137],[-60,-98],[-21,-87],[-83,-66],[-56,-129],[0,-152],[-72,-50]],[[38434,86582],[-1,7]],[[38434,86582],[-44,-102],[-19,-119],[-76,-27],[17,-127],[-63,-74],[17,-52],[-27,-69],[38,-39],[-24,-110],[32,-36],[4,-83],[-27,-21],[12,-181],[-12,-163],[28,-49],[1,-72],[76,-78],[-65,-177],[-81,-142],[-34,-16],[-30,-83],[-13,-115],[-40,-51],[14,-62],[-20,-90],[-39,-3],[2,-95],[21,-59],[-35,-41]],[[38047,84246],[50,-57],[-1,-121],[76,7],[76,-184],[-8,-123],[72,-71],[14,-58],[43,-5],[38,-75],[63,31],[84,0],[67,-75],[35,17],[54,-32],[79,0],[-37,-97],[29,-91],[72,-54],[80,-119],[94,-52],[49,-91],[-4,-71],[-57,-115]],[[39077,82996],[35,81]],[[39082,82963],[98,28]],[[55767,46690],[-61,23],[-46,-32],[-49,92],[-100,38],[-105,82],[-47,-15]],[[56219,46553],[-102,8],[-43,32]],[[56570,46276],[-14,144],[-58,41],[-54,-19],[-122,63]],[[55359,46878],[-35,-10],[-86,47],[-56,5],[-82,62],[-32,-14],[-33,-71],[-171,52],[-34,-24],[-109,23],[-97,-92]],[[56075,46591],[-46,33],[-26,86],[-139,-28],[-32,26],[-65,-18]],[[55767,46690],[-2,2]],[[56322,46505],[-103,48]],[[56761,45856],[12,113],[-26,83],[-47,11],[-56,169],[-74,44]],[[93779,62116],[30,-9]],[[93586,62112],[98,-67],[70,76]],[[93332,62420],[43,29],[55,2],[134,-259],[22,-80]],[[93809,62107],[42,53],[-2,143],[32,81],[15,87],[65,28],[20,76],[45,52],[65,-16],[35,35],[167,-48],[53,39],[37,-62],[71,-5],[53,-38],[70,-110],[17,-100],[52,-71],[25,-68],[33,-226],[51,-169],[11,-155],[35,-102],[-2,-134],[26,-156],[4,-126],[-22,-26],[30,-136],[51,-39],[56,23],[29,-32]],[[90103,60342],[16,-247],[53,-330],[14,-120],[36,-593],[29,-182]],[[89960,60938],[8,-122],[46,-35],[-2,-77],[103,-162],[-12,-200]],[[110443,71378],[61,-62]],[[110978,70998],[66,-41],[-4,-66]],[[110504,71316],[88,-19],[59,-121],[42,-30],[47,12],[27,75],[104,-10],[29,-61],[75,-1],[29,-29],[-26,-134]],[[110111,71254],[39,-38],[42,19],[46,93],[43,122],[79,-72],[83,0]],[[111040,70891],[-38,-205],[-6,-100],[58,-94],[16,-102],[102,-25],[34,-77],[69,7],[135,-64]],[[111377,70237],[56,-38],[67,-2]],[[111500,70197],[96,33],[66,46],[85,-10],[74,11],[90,-21]],[[111500,70197],[193,-12],[41,-55],[30,-126],[-13,-89],[26,-53]],[[111498,70195],[2,2]],[[110045,79892],[36,46],[-8,75]],[[109992,79529],[-14,58],[40,42],[65,122],[-6,74]],[[110073,80013],[-8,20],[162,235],[85,74],[17,64],[45,33],[6,113],[158,160],[32,-4],[78,127],[130,100],[49,76],[46,15],[80,77],[93,64],[27,59],[80,16],[9,78],[116,39],[83,-65],[56,28],[107,-89],[74,-93],[57,-24]],[[110077,79825],[-32,67]],[[110114,78311],[-68,90],[-18,146],[24,193],[-12,95],[-45,114],[-16,107],[-2,180],[45,73],[27,106],[-57,114]],[[132361,100091],[1,0]],[[132362,100091],[72,149],[89,95],[73,32],[-47,105],[-1,97],[77,95],[121,17],[108,-14],[31,38],[205,37],[98,-40]],[[133802,101354],[-33,-100],[-88,-68],[20,-92],[48,-40],[2,-137],[63,-38],[-85,-109],[-84,-35],[-167,-123],[-290,90]],[[132362,100091],[-100,-74],[-69,-154],[60,-115],[93,-104],[213,-201],[18,-131],[129,-93],[10,-148],[48,-140],[80,-49],[37,-76],[74,-22],[74,-74],[9,-67],[-53,-53],[-143,-53],[-6,-37],[-108,-67],[10,-87],[-70,-100],[-73,-22],[-1,-89],[-85,-294],[26,-134],[-61,-34],[0,-53]],[[93607,60151],[47,-114]],[[93544,60268],[46,-44],[17,-73]],[[93654,60037],[10,-144],[22,-61],[24,-143],[-1,-130],[79,-89],[95,-1],[76,-118],[47,-107],[22,-108],[70,-50],[38,-84],[30,-6],[40,-93],[93,7],[15,-22]],[[44315,96666],[32,-78],[-43,-160]],[[44754,96485],[-43,-5]],[[44926,96418],[24,24]],[[44894,96389],[-16,96],[-68,25]],[[44315,96666],[33,98],[-69,69],[22,56],[-28,153],[-92,53],[-95,256]],[[44754,96485],[56,25]],[[44711,96480],[-105,-35],[-74,-101],[-115,-100],[-84,45],[-29,138]],[[44926,96418],[-32,-29]],[[44906,96102],[44,340]],[[43698,98198],[-93,40],[-32,50]],[[44086,97353],[69,46],[14,255],[-90,51]],[[43573,98288],[-7,-1]],[[44079,97705],[-95,220],[9,56],[-167,169],[-85,0],[-43,48]],[[35840,97749],[18,188],[63,222]],[[35919,94566],[19,85],[0,112],[-19,154],[-46,77],[-37,145],[3,160],[-18,90],[-10,339],[-18,133],[-42,94],[-59,248],[2,179],[-14,74],[24,81],[-55,222],[17,52],[-54,137],[-15,80],[36,35],[53,115],[24,103],[-17,79],[15,79],[119,191],[13,119]],[[119276,84920],[23,-36],[10,-102],[33,-116],[37,-42],[17,-140],[-25,-35],[23,-168],[70,-73],[1,-147],[77,-105],[31,-90],[132,-172],[89,-273],[29,-6],[55,-115],[10,-87],[48,-119],[68,-128],[-21,-94],[24,-65],[18,-144],[74,-225],[3,-139],[17,-117],[52,-104],[16,-87],[-21,-50],[15,-152],[29,-96],[-5,-74],[32,-64],[-9,-86],[15,-86],[-35,-236],[11,-113],[0,-217],[10,-115],[44,-120],[11,-74],[33,-41],[-3,-91],[-27,-40],[86,-169],[64,-28],[56,-150],[54,-78],[80,-27],[106,25],[40,-34],[61,-177],[-18,-32],[6,-179],[-16,-49],[-48,-21],[11,-88],[-98,-212],[-18,-110],[-29,-88],[-12,-94],[43,-98],[46,-44],[49,-161],[1,-73],[87,-101],[-1,-71],[58,-131],[8,-83],[64,-93],[22,-86],[82,-48],[28,-125],[-13,-68],[-60,-75],[-91,-76],[-29,10],[-38,-168],[-40,-30],[-12,-98],[-57,-38],[-74,-94],[-27,-104],[-23,-184],[90,81],[25,-21],[42,-124],[58,-44],[-1,-215],[37,-1],[55,51],[109,-32],[31,30],[54,-47],[130,2],[64,75],[82,33],[41,56],[85,15],[24,-65],[-55,-86],[-31,-8],[-96,-141],[-3,-117],[39,-55],[-36,-86],[-9,-274],[26,-64],[-23,-120],[-29,-83],[-35,-22],[-103,-178],[1,-199],[60,-76]],[[47650,98727],[124,-145],[-25,-109],[31,-118],[119,-112],[44,-142],[-26,-142]],[[48081,97014],[-24,185],[-55,59]],[[47625,99553],[-79,-141],[-76,-171],[37,-98],[4,-82],[77,-94],[56,-111],[6,-129]],[[47917,97959],[52,-49],[-21,-111],[33,-31],[19,-104],[-53,-148],[25,-209],[30,-49]],[[48081,97014],[27,-100]],[[93692,103875],[87,-77]],[[93779,103798],[130,-112],[52,-98],[89,-238],[16,-103]],[[92690,104680],[66,-40],[79,-156],[160,-49],[163,-240],[70,-22],[72,-102],[92,-90],[146,-82],[154,-24]],[[27561,106386],[-125,185]],[[28214,105466],[34,98],[-8,240],[-62,116],[-123,107],[-163,165],[-219,67],[-105,118]],[[27023,106628],[75,-32],[94,13],[74,92],[170,-130]],[[27561,106386],[7,-9]],[[30358,91421],[-6,-101],[-32,-161]],[[30188,92860],[-34,11],[-10,-126],[-51,-185],[75,-37],[12,-187],[-51,-55],[-53,-171],[1,-72],[57,-129],[89,-53],[51,-121],[146,-193],[-62,-120]],[[30320,91159],[79,10],[101,-14],[92,-55],[46,-55],[-53,-152],[-63,-2],[-128,-152],[-97,-168],[-62,-65],[-35,-81],[-64,-217],[15,-86],[-39,-176],[-20,-227],[21,-96],[50,-123],[-10,-114],[52,-135]],[[35945,86217],[-192,52]],[[34068,86780],[70,-46],[98,22],[64,-44],[45,25],[116,1]],[[35753,86269],[-39,-66],[-53,-15],[-5,86],[-69,-56],[-86,48],[-46,59],[-53,-67],[-68,4],[6,58],[-61,36],[-1,77],[-109,3],[-64,-47],[-36,53],[-62,-11],[-101,53],[-103,14],[0,63],[-31,62],[-65,-22],[-57,23],[-57,-13],[-87,119],[-44,8]],[[35945,86217],[108,-46],[152,93],[71,-24],[75,63],[26,-43],[78,-15],[59,66],[103,-71],[47,-74],[71,-44],[103,-34],[35,-57],[83,23],[88,-32],[71,34],[61,-150],[-15,-110],[-62,-89],[30,-165],[-14,-85],[32,-135],[34,-89],[86,-128],[2,-87],[65,-105],[60,-33],[69,-85],[57,-110],[38,-24],[63,-138],[80,-34],[83,-138],[66,58],[26,-16],[72,61],[81,-62],[-19,-122],[37,-24]],[[32606,85469],[-17,-102]],[[32783,84886],[-43,90]],[[32028,87624],[-36,-117],[38,-115],[68,-69],[0,-45],[58,-57],[79,-13],[47,-49],[32,15],[121,-94],[11,-83],[117,-260],[62,-43],[40,-111],[-55,-128],[12,-126],[-6,-123],[-32,-125],[-15,-175],[50,-186],[-33,-88],[20,-163]],[[32589,85367],[3,-67],[42,-4],[85,-115],[33,-100],[-12,-105]],[[32784,84886],[35,-63],[124,-143],[34,-121],[83,-7],[21,-38],[72,10],[92,-83],[55,35],[87,-48],[35,-104],[57,-45],[119,-28],[37,-39],[36,-161],[49,-25],[22,-84],[-30,-57],[23,-83],[-16,-60],[94,-106],[11,-93],[-15,-69],[56,-22],[0,-117]],[[50392,68076],[52,-136],[23,-28],[18,-148],[-10,-68],[-50,-105],[-7,-119],[35,-63]],[[50392,68076],[-7,145],[25,49],[131,177],[-19,48]],[[51334,66203],[-3,-86],[-30,-136],[-69,-26],[-80,139],[-47,31],[-87,-183],[-83,95],[-89,-43],[-39,-74],[-136,23],[-58,129],[-15,67],[25,138],[-42,82],[-122,55],[-34,141],[12,51],[-12,105],[28,115],[-7,99],[-48,159],[19,87],[51,118],[-15,119]],[[75162,67546],[-5,89],[-70,45],[-24,81],[-12,121],[32,57],[6,167],[39,140],[39,54]],[[75337,66990],[-58,108]],[[75162,67546],[-19,-94],[40,-77],[17,-111],[38,-13],[-7,-89],[17,-66],[31,2]],[[75337,66990],[24,-1],[52,-150],[36,-43],[-11,-70],[21,-124],[-38,-35],[18,-141],[-54,-103],[-1,-79]],[[89662,103991],[-123,-70],[-11,-57]],[[89469,103739],[-123,-116],[-13,-64],[55,-225],[-22,-133],[74,-98],[100,-20],[105,-127]],[[89662,103991],[-69,86]],[[89469,103739],[59,125]],[[128666,85706],[-13,75],[-53,28],[-39,-118],[-64,-73],[-44,31],[-13,116],[-138,-23],[-4,-67],[-54,3]],[[128244,85678],[0,-1]],[[128899,85444],[18,106],[-16,86],[9,87],[-34,49],[-38,-80],[-45,-26],[-83,40]],[[128666,85706],[44,0]],[[127709,85293],[93,79],[63,12],[84,47],[41,157],[144,32],[60,-47],[50,105]],[[129042,85190],[-35,-4],[-48,195],[-60,63]],[[88913,56904],[42,-2],[80,47],[46,137],[34,44],[22,77],[-73,110],[60,154],[64,263],[-30,169],[-26,76],[17,177],[-5,82],[-29,73],[-8,269],[16,177]],[[120118,74770],[27,-105]],[[120105,76436],[53,-219],[-11,-107],[18,-127],[-23,-30],[21,-209],[-32,-180],[-91,-68],[-51,-249],[34,-71],[-13,-35],[41,-146],[-15,-33],[4,-170],[60,35],[18,-57]],[[120145,74665],[44,-22],[-3,-80],[23,-60],[22,-133],[55,-82],[62,-43],[70,-183],[27,-12],[97,-217],[-4,-27],[83,-85],[11,-79],[30,-36]],[[110745,93235],[59,-28],[174,-28],[116,-6],[100,34]],[[110745,93235],[-35,32],[-19,117],[-47,85],[-66,20],[-36,61],[25,59],[-55,120],[-91,59],[-53,76],[-62,1],[-179,137],[-108,44],[-82,8],[-46,57],[-158,46],[-121,132],[-143,1],[-41,-55]],[[112735,93035],[-129,153],[-94,52],[-88,-3],[-82,22],[-22,-29],[-188,-89],[-61,-7],[-70,37],[-83,10],[-57,69],[-84,27],[-208,-99],[-75,12],[-115,-14],[-70,28],[-115,3]],[[127301,90721],[0,-1]],[[127301,90720],[7,-39]],[[126016,90057],[53,23],[36,58],[98,68],[90,155],[97,60],[90,79],[170,16],[221,146],[50,46],[53,-1],[77,54],[225,2],[25,-43]],[[125907,89933],[19,76],[90,44]],[[43167,88588],[112,-129]],[[43279,88459],[2,-1]],[[43808,88150],[-80,-7],[-71,64],[-17,79]],[[43869,88137],[99,-51],[111,-18]],[[42981,88485],[-11,101],[95,42],[102,-40]],[[43279,88459],[74,65],[72,-50],[190,-47],[-4,-56],[29,-85]],[[43808,88150],[61,-12]],[[44079,88068],[90,-120],[29,-72],[61,-71],[31,-114],[55,-5],[82,-71],[65,76]],[[84174,107898],[-101,35],[-23,51]],[[84747,107559],[-76,101],[-261,152],[-38,67]],[[84174,107898],[19,-35],[179,16]],[[84747,107559],[73,-88],[135,-43],[28,-94],[-26,-141],[-104,-189],[-105,4],[25,-151],[162,-125],[21,-79],[136,10],[91,-69],[7,-70]],[[90678,110497],[73,-2],[200,-65],[252,14]],[[89396,110273],[98,10],[82,89],[139,-36],[287,69],[47,-21],[305,85],[324,28]],[[124411,91150],[-1,25]],[[124403,91142],[-58,-68]],[[124122,91352],[155,-29],[100,-113]],[[124019,91330],[82,42],[21,-20]],[[124377,91210],[33,-35]],[[124411,91150],[-8,-8]],[[123971,91140],[99,24],[39,76],[13,112]],[[123971,91140],[56,-17],[125,39],[53,92],[61,6],[111,-50]],[[123903,91112],[32,105],[-3,76],[87,37]],[[124345,91074],[-14,-115]],[[123738,90989],[57,114],[49,258],[68,18],[107,-49]],[[123738,90989],[197,146],[36,5]],[[123738,90988],[0,1]],[[123660,90877],[-25,100],[-43,94],[-4,149],[46,23],[62,94],[110,51],[90,11],[55,-53]],[[123660,90877],[78,112]],[[123670,90830],[-10,47]],[[123622,90730],[38,147]],[[53459,61425],[-60,162],[-111,4],[-17,49],[-67,52],[-46,-5]],[[52368,63663],[25,18],[60,-19],[70,16],[49,60],[111,-14],[47,-48],[64,33],[45,-89],[71,-91],[-36,-96],[115,-187],[57,-187],[3,-60],[-34,-137],[4,-99],[-20,-214],[28,-45],[-7,-182],[20,-104],[-19,-68],[-45,-67],[-29,-125],[37,-110],[81,-87],[27,-60],[66,-14]],[[53459,61425],[29,-46],[74,-44]],[[120500,114400],[156,45],[205,124],[5,59],[-118,165],[101,91],[-171,117]],[[120346,115436],[-117,-159],[258,-61],[15,-74],[176,-141]],[[90667,98269],[-24,28]],[[88527,98889],[68,29],[316,36],[125,-3],[108,30],[165,-5],[220,-66],[139,39],[69,-31],[91,42],[80,-18],[47,21],[112,-14],[155,-123],[18,-104],[56,-17],[30,-80],[155,-156],[63,-105],[99,-67]],[[115279,82961],[50,126],[90,46],[71,-41],[36,26],[56,-32],[57,23],[162,-14],[46,25],[62,-26],[68,24],[65,-21],[99,16],[44,-31],[108,29],[117,-22],[61,-58],[67,22],[50,45],[65,-3],[203,-41],[222,14],[75,-30],[58,28],[86,-46],[55,12],[24,-68],[69,-14],[256,-92],[28,18],[54,108],[111,-21],[64,7],[58,41],[77,-1],[70,61]],[[85009,109758],[100,7],[239,-73],[135,-91],[144,-24],[217,-157],[184,-62],[23,-44]],[[84924,109706],[85,52]],[[86051,109314],[28,-121],[205,-98],[248,-310],[29,-123]],[[71657,71884],[-60,91],[16,66],[-77,9],[-50,-52],[-157,-47],[-85,109],[-29,-35],[-39,59],[-65,13],[-43,36],[27,68],[-87,-2],[-44,-29],[-37,27],[-23,-56],[31,-82]],[[72221,70624],[33,-15],[59,52],[108,171],[6,79],[33,71],[-83,65],[-44,73],[-9,67],[-76,153],[10,52],[45,33],[-8,86],[-94,95],[-48,-26],[-15,-66],[-58,25],[-42,-32],[-53,56],[-34,-8],[-85,40],[-14,93],[-68,57],[-12,196],[-105,-8],[-10,-45]],[[46439,68155],[-29,-75],[-1,-56],[33,-65],[76,-68],[38,4],[114,-57],[72,21],[96,-5],[26,-35],[73,-30],[31,-37],[136,-10],[74,90],[39,19],[30,97],[72,27],[20,57],[152,93],[126,158],[98,3],[68,-66],[37,13],[36,-61],[67,3],[34,35],[82,-13],[32,31],[56,-25],[87,64],[144,-21],[39,-17]],[[53952,64221],[-25,-45],[15,-56],[4,-213],[110,-25],[67,1],[81,-75],[28,-69],[53,-34],[55,-74],[40,22],[80,-41],[13,-80],[28,-51],[17,-163],[59,-104],[74,-48],[-15,-124],[21,-166],[21,-34],[46,-285],[56,-16],[78,-150],[-5,-102],[45,-65],[8,-163],[44,7],[22,-138],[41,-55],[97,-26],[58,8]],[[43893,62145],[20,-32],[9,-160],[41,-41],[71,43],[87,-21],[47,87],[87,65],[47,85],[12,107],[38,51],[90,36],[57,-10],[45,26],[71,-73],[59,47],[74,1],[8,-37],[158,-110],[45,-47],[28,-66],[85,-111],[85,-18],[48,-70],[44,-99],[122,-130],[7,-149],[-25,-85],[8,-71],[56,-113],[102,-111],[79,-38],[28,-115],[26,-37],[72,19],[48,-54],[37,0],[61,-154],[-13,-69],[46,-87],[68,-9],[48,-51],[-23,-41],[-9,-87],[11,-74],[71,-67],[17,100],[49,66],[75,-101],[18,-78]],[[46342,55639],[-40,8],[-24,105],[-41,16],[-66,171],[-8,75],[32,62],[31,111],[-21,73],[15,95],[-45,79],[-7,79],[-23,39],[6,84],[-17,106],[17,78],[39,72],[-35,104],[31,82],[-2,114],[44,29],[8,61],[-23,56],[50,103],[38,35],[64,151],[96,52],[59,-19],[59,29],[39,50],[47,15],[74,66],[41,-2],[102,77],[34,63],[75,-8],[49,-40],[125,44],[50,45],[61,-33],[128,6],[65,132],[111,-25],[20,34],[55,-45],[78,11],[53,54],[45,-26],[71,63],[36,-23],[101,15],[44,-27],[45,50],[33,74],[-4,62],[73,17],[51,86],[31,82],[-9,115],[70,173],[10,52],[98,76],[72,35],[22,117],[25,57],[80,-24],[35,33],[31,157],[63,131],[51,137],[-20,30],[13,154],[37,126],[89,243],[20,170],[37,2],[21,88],[32,14],[16,62],[-5,102],[54,57],[-19,46],[57,96],[19,91]],[[57732,55575],[41,125],[10,325],[17,51],[-43,92],[-4,104],[-32,174],[22,98],[47,62],[23,65],[14,121],[34,123],[34,73],[11,154],[34,178],[75,81],[118,45],[89,90],[45,-24],[25,54],[88,121],[70,42],[54,139],[54,83],[95,40],[61,7],[92,-98],[113,60],[78,-9],[39,57],[21,87],[12,214],[-49,46],[-48,93],[-14,197],[3,103],[116,216],[12,106],[-21,156],[-40,99],[36,206],[-45,88],[-10,92],[43,68],[17,71],[51,82],[29,95],[-4,61],[75,172],[19,-19],[103,31],[91,140],[70,139],[12,68],[-23,57],[11,62]],[[41777,95959],[81,62],[5,40],[99,96],[59,108],[-11,56],[25,172],[81,48]],[[8565,110548],[-107,73],[42,58],[484,68],[147,-38],[137,28],[154,-42],[239,-11],[182,-58],[265,-1],[104,47],[189,6],[218,82],[426,13],[193,-38],[216,54],[201,86],[592,140],[38,125],[-69,217],[22,98],[195,-5],[184,194],[124,47]],[[45273,92476],[-35,-98],[10,-68],[-28,-73],[-118,-87],[-90,-34],[-67,-113],[18,-108],[-66,-1],[-39,93],[-110,-24],[-80,15],[-90,-79],[6,-119],[68,-48],[25,-49],[153,-114],[55,-128],[-41,-48],[-92,-53],[-23,-76],[-83,-22],[-92,-83],[-87,-14],[-41,-75],[5,-48],[-57,-105],[11,-84],[-30,-44],[110,-138],[43,-76],[56,-18],[31,-85],[95,-124],[69,-140]],[[88669,60747],[-25,71],[-25,203],[1,213],[35,191],[9,279],[-66,169],[-13,85],[-43,111],[-33,49],[-29,114],[-13,149],[58,117],[8,115],[-18,60],[-1,129],[-26,70],[-108,137],[-74,43],[-35,-13],[-90,35],[-91,107],[-80,-1],[-23,28]],[[89123,58757],[42,216],[-44,262],[1,85],[-52,106],[-100,86],[-43,75],[-74,48],[-29,70],[-96,126],[-9,43],[27,203],[-65,155],[-9,119],[29,149],[-10,56],[7,141],[-29,55]],[[33357,86899],[40,-5],[138,43],[54,72],[57,2],[8,50],[65,23],[67,-123],[69,-16],[88,-136],[46,-34],[79,5]],[[86718,92075],[9,97],[100,59],[95,13],[84,94],[48,158],[-41,122],[-103,202],[-18,136],[-55,56],[-87,50],[-35,102],[15,100],[-77,90],[-26,91],[-11,112],[22,93],[-53,152]],[[87722,92100],[85,25],[55,-62],[98,0],[75,-52],[256,8],[50,14],[176,-81],[158,-34],[35,-81],[39,-9],[91,-120],[113,-34],[26,-37],[17,-163],[-131,-87],[-4,-115],[16,-86],[-43,-31],[-54,-107],[-39,-20]],[[82715,93136],[6,-106],[63,-86],[18,-86],[47,-52],[33,-82],[-4,-104],[-26,-134],[-69,-116],[30,-108],[74,-62],[17,-86],[48,-14],[12,-109],[-49,-58],[-24,-141],[-98,-65]],[[74895,69233],[9,69],[31,64],[40,10],[76,98],[123,-48],[37,-28],[31,-66],[-17,-134],[-44,-130],[-10,-163],[8,-94],[-36,-83],[-23,-127],[26,-43],[-11,-57],[61,-43],[25,-77],[-54,-81]],[[87182,65542],[30,28],[50,132],[-10,59],[44,30],[42,162],[29,-9],[19,78],[38,2],[14,-53],[65,-9],[41,-71],[53,-34],[77,96],[108,67],[57,-2],[60,71],[32,-8],[85,108],[43,31],[65,-64],[23,-64],[54,-3],[73,50],[54,-26],[19,45],[77,9],[0,107],[24,87],[94,45],[65,-81],[127,-48],[44,48],[70,-75],[43,-2],[31,-62],[128,20],[46,-35],[40,79],[67,34],[105,-73]],[[82686,67609],[1,-152],[17,-166],[51,-74],[-35,-134],[-25,-49],[-93,-59],[-75,-86],[-146,-61],[15,-123],[-43,-84],[-6,-177],[-52,-89],[0,-60],[25,-106],[-11,-103],[35,-64],[81,-53],[13,-81],[-55,-159]],[[82923,64087],[-12,129],[29,33],[76,-28],[25,19],[118,-10],[69,15],[24,-39],[-8,-119],[-32,-36],[-6,-103],[-27,-176],[47,-114],[-2,-83],[-45,-91]],[[85037,53469],[7,75],[89,223],[-10,50],[0,174],[23,114],[-37,93],[0,70],[29,86],[-8,80],[-66,92],[-10,86],[14,129],[-24,62],[-2,116],[-33,125],[-42,59],[-81,17],[-88,58],[-44,-13],[-75,105],[-7,39],[-64,152],[-48,66],[18,77],[-30,167],[-62,108],[-153,19],[-22,-46],[-102,-5],[-67,-19],[-70,14],[-40,51],[-69,35],[-90,-59],[-87,-16],[-55,65],[-54,6],[-53,35],[-30,74],[-35,-11],[-35,44],[-57,120],[-94,81],[-118,17],[-70,-117]],[[84997,53237],[32,49],[17,151],[-9,32]],[[85796,53581],[64,-38],[49,-88],[30,-117],[-7,-131],[63,-223],[27,-210],[26,-66],[60,-81],[66,-51],[45,-116],[3,-67],[49,-122],[37,-45]],[[86311,52226],[121,21],[53,-31],[53,0],[145,-248],[48,-43],[20,-95],[25,-24],[61,-175],[38,-7],[62,-159],[48,-43],[34,-75],[15,-143],[31,-97],[37,-47],[41,-6],[82,-168],[80,-98],[20,-69],[52,-65],[53,-32],[32,-77],[133,-137],[-9,-105],[-30,-172],[29,-83],[61,-83],[39,-167]],[[107183,105222],[67,-84],[196,-43],[94,-181],[78,-21],[-47,-68],[35,-151],[-65,-127],[94,-81],[-22,-99],[-62,-110],[-56,13],[-126,-88],[-90,-89],[-126,-168],[43,-168],[-120,-161],[-26,-110],[29,-74],[-120,-41],[-52,-209]],[[109276,100745],[-87,91],[-93,19],[24,100],[-74,19],[3,128],[-77,73],[190,131],[41,58],[117,47],[47,42],[187,23],[108,130],[68,125],[-47,74],[52,69],[-48,83],[0,108],[-45,29],[13,82],[-83,156],[-131,40],[16,70],[-55,32],[-84,-10],[-57,72],[-114,15],[-221,129],[-158,19],[-70,49],[-245,7],[-70,55],[-123,49],[-74,-26],[-52,40],[-93,1],[-113,40],[-215,137],[-187,-29],[-108,48],[-166,-35],[-99,13],[-35,58],[-90,44],[-119,14]],[[109276,100745],[3,0]],[[109824,100252],[-26,69],[-109,120],[-47,100],[-54,9],[-81,95],[-98,19],[-133,81]],[[88908,45269],[12,96],[-24,147],[44,101],[90,120],[58,47],[49,356]],[[93037,55391],[37,156],[38,105],[16,156],[91,148],[5,57],[46,41],[103,47],[99,143],[105,90]],[[92966,67356],[-25,-42],[-63,-40],[-47,94],[-60,-30],[-53,-135],[-87,-37],[-130,104],[-60,79],[-47,16],[-9,96],[-89,54],[-43,67],[-1,45],[-71,88],[-10,108],[-54,88],[-72,84],[-61,19],[-48,45],[-44,-21],[-50,43],[-83,14],[-26,81]],[[112377,83936],[44,-7],[32,-55],[43,-167],[55,-47],[49,13],[44,-72],[88,-24],[49,-77],[24,-103],[30,-52],[-85,-58],[-34,-106],[6,-130],[-46,-41],[-33,-72],[-56,-66],[7,-84],[-94,3],[1,-67],[29,-107],[-34,-222],[-43,0],[28,-222],[32,-50],[33,-212],[-3,-73],[63,-178],[-2,-98],[22,-59],[46,-8],[78,-104],[18,-53],[67,-19],[47,41],[139,-142],[100,-25],[23,-36],[48,12],[82,-71],[31,-54],[106,-33],[46,-56],[149,-15],[60,-89],[101,-39],[48,-94],[49,7],[68,-55],[54,-93],[24,9]],[[119260,80510],[2,139],[47,125],[19,116],[-45,80],[-66,60],[-45,-4],[-56,32],[-35,63],[-36,2],[-43,73],[-23,-20],[-8,-117],[-44,-98],[-103,-134],[-74,-39],[-88,-171],[-30,-27],[-2,-82],[-25,-72],[-9,-98],[-69,-91],[-53,-24],[-87,-238],[-13,-83],[-46,-22],[-21,-121],[57,-159],[-38,-37],[-53,-99],[-22,-89],[14,-62],[-64,-116],[-10,-153],[-43,-94],[21,-54],[-27,-71],[17,-68],[40,-59],[38,-98],[55,13],[15,-78],[38,-81],[-8,-41],[25,-104],[68,-51],[68,-226],[5,-162],[42,-89],[13,-186]],[[124068,70939],[9,38],[-45,88],[6,41],[57,52],[-65,74],[-21,72],[8,134],[-14,90],[-53,119],[-63,57],[-40,-4],[-57,67],[-19,113]],[[123493,81684],[80,-30],[43,59],[71,-24],[24,-51],[65,50],[16,55],[104,-14],[33,74],[59,48],[3,55],[108,110],[33,4],[13,106],[-24,88],[9,109],[52,119],[55,67],[11,96],[-67,34],[16,61],[-28,159],[-5,91],[-40,51],[-38,123],[-67,-1],[-56,-48],[-132,88],[-18,99],[-33,27],[2,75]],[[123493,81684],[-3,0]],[[122572,81329],[71,-76],[44,5],[60,-42],[22,32],[58,-19],[20,-78],[46,0],[21,-97],[36,-51],[122,32],[138,66],[26,39],[15,107],[-11,114],[54,10],[73,100],[-15,90],[103,109],[38,14]],[[125166,80410],[31,33],[-4,64],[92,151],[61,38],[55,85],[48,197],[107,-1],[26,91],[50,96],[73,12],[36,-86],[78,25],[62,-14],[11,58],[63,-1],[74,36],[25,95],[-27,120],[49,111],[34,13],[53,155],[-8,69],[97,66],[-15,83],[12,142],[-106,6],[44,81],[-24,55],[12,109],[-10,74],[-73,139],[13,92],[33,96],[10,135],[49,68],[-7,55]],[[126503,85234],[58,-10],[19,-87],[45,-25],[55,145],[84,-71],[16,-43],[152,24],[92,-35],[154,57],[60,57],[59,-17]],[[127297,85224],[56,62],[127,83],[51,-60],[19,-60],[59,56],[66,-57],[34,45]],[[125343,97335],[61,93],[-10,127],[29,130],[42,12],[76,130],[-3,50],[-95,71],[18,95],[109,24],[105,97],[140,62],[128,123],[49,99],[101,53],[74,81],[60,103],[1,44],[58,101],[125,53],[103,-128],[78,-58],[87,-101],[192,22],[95,79],[108,-5],[142,33],[195,-49]],[[87987,63208],[-39,98],[-126,105],[-54,6],[-82,68],[-67,147],[-109,175],[-58,138],[-46,47],[-99,35],[-86,130],[-99,25],[-82,4],[-214,-27],[-109,-39],[-59,-60],[-129,8],[-114,-19],[-84,2],[-62,-27],[-64,5],[-102,-47],[-96,-73],[-152,-83],[-94,-74],[-92,-131],[-57,-59],[-134,-199],[-51,-165],[-39,-384],[-25,-81],[-24,-140],[-32,-75],[-175,-281],[-109,-213],[-49,-72],[-116,-51],[-81,-117],[-88,-249],[-8,-75],[-41,-93],[-125,-186],[-23,-110],[21,-242],[-21,-173],[7,-247],[14,-36],[-48,-177],[-27,-53],[-73,-227],[-136,-64],[-47,-123],[-110,-87],[-45,-112],[-72,-102],[-43,-117],[-85,-62],[-49,44],[-63,-47],[-98,-21],[-71,-88],[-2,-72],[-65,-102],[-37,31],[-50,-7],[-38,-46],[35,-118],[-15,-89],[-40,-97],[-63,-75],[-68,24]],[[129489,104723],[163,-46],[77,-104],[-31,-79]],[[128083,100182],[145,28],[121,149],[46,81],[223,71],[76,0],[105,93],[30,108],[46,20],[27,116],[147,112],[20,61],[60,34],[42,96],[114,105],[73,9],[64,-38],[109,91],[35,56],[69,0],[91,68],[140,4],[34,90],[-41,76],[41,97],[12,101],[-38,90],[8,62],[-34,90],[-92,86],[-71,191],[-72,140],[32,53],[124,75],[78,-50],[37,160],[55,67],[19,106],[-31,232],[-44,151],[29,104],[-41,62],[-33,130],[36,75],[113,144],[-31,117],[-84,85],[-178,-84],[-39,43],[173,197],[21,145],[-70,57],[-83,153]],[[114116,92858],[-103,-87],[-155,11],[-143,44],[-121,88],[-143,45],[-110,18],[-141,-11],[-179,64],[-93,-12],[-92,42],[-101,-25]],[[134991,107482],[-26,108],[-198,313],[35,77],[-5,100],[-98,132],[-35,234],[25,158],[122,170],[0,74],[-81,247],[-256,148],[54,72],[145,-13],[120,19],[-85,93],[212,215],[-6,53],[385,52],[173,46],[82,168],[-33,140],[73,113],[4,71],[-70,73],[-41,134],[-73,68]],[[93439,98159],[-95,-122],[-56,-159],[33,-86],[73,-115],[-15,-172],[67,-102],[-45,-56],[-51,32],[-70,-49],[-28,-56],[-79,-73],[21,-36],[185,-100],[107,-22],[-45,-51],[-9,-92],[201,-39],[89,-105],[135,-52],[54,33],[70,-10],[58,53],[128,-162],[142,-14],[59,-67],[93,81],[22,-57],[65,-54],[122,-16],[49,-145]],[[94719,96341],[118,-9],[232,-140],[48,-91],[64,-67],[19,-108],[-37,-44],[-13,-85]],[[93491,100635],[58,106],[9,83],[38,42],[185,-35],[145,9],[45,29],[182,-19],[112,156]],[[94265,101006],[53,14],[100,-67],[54,-91],[86,23],[91,-57],[-39,-54],[44,-71],[113,-48],[35,-44]],[[94802,100616],[50,-25],[12,-66],[141,0],[115,20],[77,63],[-11,198],[53,30],[15,100],[185,-127],[116,-30]],[[95555,100779],[-40,86],[-9,193],[79,130],[79,64],[-26,133],[97,109],[42,5],[49,91],[113,45],[129,10],[10,79],[48,60],[141,38],[111,-28],[62,33],[26,62]],[[93136,99142],[-74,15],[-21,79],[-45,16],[-36,124],[8,52],[84,96],[11,76],[94,65],[40,202],[-86,110],[18,67],[-31,77],[13,142],[49,143],[-54,24],[-37,129],[19,62],[200,-65],[112,3],[92,76]],[[92143,100521],[71,-24],[21,-99],[78,-26],[29,-82],[1,-219],[56,-89],[-88,-201],[18,-49],[-102,-79],[-68,-178],[12,-153],[-102,-50],[-123,-94],[-30,-55]],[[91919,99123],[-45,-108],[-24,-121],[45,-62],[-89,-30],[-42,-77],[31,-89],[-248,-109],[1,-25],[-202,-45],[-75,-40],[-158,119],[-82,-14],[-142,-190],[-35,-23],[-41,-99],[11,-63],[-80,-126],[5,-119],[-53,-18],[-7,-102]],[[145413,106341],[79,10],[110,109],[50,121],[-35,90],[49,48],[151,75],[245,63],[82,88],[388,223],[172,-52],[161,196],[19,186],[75,157],[-44,96],[-251,270],[-43,71],[-100,78],[-15,69],[-341,145],[-192,52],[5,116],[116,181],[-11,82],[98,91],[-13,76],[58,80],[17,133],[-56,60],[-26,176],[-132,98],[-117,21],[-45,74],[33,58],[-14,105],[31,52],[-72,45],[-69,197],[86,187],[1,103],[-55,136],[59,10]],[[114458,82543],[15,94],[96,-24],[47,16],[40,80],[80,-9],[12,-75],[66,-30],[184,-24],[48,20],[106,-25],[103,-100],[-96,-118],[-22,-61],[24,-119],[-6,-69],[31,-85],[-33,-26],[-16,-108],[-82,-100],[27,-73],[29,-145],[-31,-42],[-19,-171],[-65,-79],[-33,-158],[-74,-92],[-51,-32],[-94,-229],[21,-187],[83,-66],[53,-100],[63,-2],[41,-33],[133,16],[79,-30],[104,-117]],[[99400,107473],[-150,-166],[-221,160],[-96,2],[-85,-114],[-65,-30],[-75,-167],[61,-145],[44,-42],[6,-143],[-221,24],[-94,-7],[-36,194],[-53,64],[4,120],[41,72],[99,15],[-34,231],[-149,65],[-160,25],[-175,121],[-31,52],[-193,70],[-193,-29],[-117,53],[-150,29],[-174,-47],[-10,127],[-140,81],[-128,146],[-220,111],[-79,56],[-54,121]],[[96635,99619],[100,-71],[-61,-76],[-25,-88],[-53,-65],[-68,-5],[-133,-61],[-58,-92],[-118,-14],[-45,-158],[-9,-114],[43,-41],[9,-101],[-89,-74],[14,-75],[-128,-39],[-69,41],[-76,-8],[13,-104],[-56,-86],[-114,-53],[-76,68],[-132,-39],[-45,-70],[2,-85],[115,-77],[-27,-87],[-1,-95],[36,-92],[-10,-99],[22,-77],[47,-58],[78,-16],[82,-93],[-51,-62],[-6,-64],[48,-38],[1,-84],[-46,-72]],[[121925,75292],[64,138],[9,45],[54,29],[95,-29],[97,-55],[72,-2],[48,-142],[43,-74],[33,-106],[28,-26],[56,-124],[95,-79],[49,-107],[-3,-141],[-28,-102],[15,-215],[-11,-130],[50,-63],[16,-59],[51,-67],[23,-106],[140,-60],[-14,-95],[33,-82],[71,-30],[16,-61],[-27,-146],[12,-66],[65,-137]],[[121267,75071],[31,52],[40,12],[27,112],[49,-25],[75,123],[32,-2],[66,-111],[46,-40],[66,-16],[12,-84],[55,22],[93,88],[43,-12],[23,105]],[[123084,73191],[52,-97],[13,-141],[-26,-83],[-9,-126],[12,-109],[-27,-146],[56,-82],[23,-75],[-8,-87],[24,-52],[-56,-183],[23,-108],[37,-87],[-1,-69],[-30,-114],[14,-117],[-3,-142],[16,-145],[-23,-27],[-76,-5],[-88,32],[-29,-47],[9,-56],[-54,-166],[-107,18],[-26,-56],[-60,-21],[13,-50],[-29,-51],[3,-62]],[[122726,70735],[0,-2]],[[122726,70734],[0,-1]],[[122726,70733],[129,-126],[17,-103],[-41,-186],[9,-103],[47,-37],[23,-126],[54,-52],[27,-56],[57,-34],[44,-61],[137,-58]],[[122726,70733],[5,-83],[41,-120],[3,-219],[21,-24],[-12,-94],[21,-71],[34,-26],[23,-77],[74,-104],[97,-186],[75,-100]],[[89534,100735],[-88,-3],[-59,-52],[-190,-78],[-71,5],[-82,-57],[-76,11],[-72,65],[3,95],[-119,125],[-95,-36],[-119,83],[-186,-172],[-129,91],[-57,86],[-131,68],[-58,61],[-92,-34],[-19,-40],[-103,-59]],[[90289,102086],[-49,-41],[1,-112],[-84,33],[-127,-23],[-89,14],[-93,119],[16,101],[50,81],[33,165],[-57,52],[-97,14],[-14,107],[-123,26],[4,194],[56,28],[10,81],[-81,31]],[[20811,107552],[36,60],[134,75],[-63,100],[3,110],[65,114],[12,151],[73,155],[-52,106],[31,108],[-182,40],[-105,68],[-153,48],[-223,115],[-32,124],[-132,40],[-24,160],[28,60],[-35,83],[-102,60],[-114,143],[-54,164]],[[128126,82066],[-18,-99],[-45,-74],[-2,-55],[46,-124],[52,-56],[20,-96],[83,-245],[77,-24],[-9,-86],[47,-32],[37,39],[92,-72],[33,-95],[90,10],[5,-32],[74,-61],[4,-36],[105,-60]],[[93037,52226],[139,91],[39,44],[91,-12],[61,41],[46,-14],[120,126],[74,31],[66,108],[34,0],[44,86],[78,28],[34,-52],[28,30],[73,22],[40,48],[94,25],[97,-13],[58,26],[112,115],[46,-8],[105,86],[14,32],[111,76],[46,0],[74,113],[41,39],[59,-22],[72,22],[46,-38]],[[48670,50772],[-8,22],[35,147],[74,54],[-2,117],[-22,75],[7,139],[-62,145],[11,151],[-17,47],[-112,123],[-110,81],[-44,91],[25,86],[-103,150],[28,54],[35,152],[53,153],[-31,100],[22,65],[-12,193],[28,200],[44,83],[-11,131],[25,69],[123,201],[20,80],[33,261],[-3,87],[25,234],[-17,155],[84,180],[28,100],[69,-2],[77,40],[73,212],[11,78]],[[141718,38988],[-36,16]],[[141682,39004],[-57,21],[-86,104],[-95,183],[-88,56],[-24,36],[-196,18],[-97,97],[-140,101],[-129,1],[-65,42],[-85,-63],[-15,-61],[-47,4],[-98,-55],[-15,-66],[-50,-10],[-70,34],[-90,-29],[-33,-74],[-75,-47],[-57,-91],[-76,-29],[-174,-260],[-67,-83],[-233,-44],[-81,-81],[-66,-169],[-98,-48],[-66,-11]],[[141818,38470],[-44,68],[-8,73],[-45,57],[33,137],[-45,92],[9,91]],[[90502,64073],[-50,-139],[-12,-73],[-60,-168],[-43,-21],[-22,-100],[-23,-31],[-97,-48],[-30,-136],[-46,-10],[-45,77],[-31,-19],[-43,91],[-77,-17],[-12,-60],[-44,-58],[-189,215],[-104,30],[-45,-5],[-28,-38],[-59,43],[-45,-5],[-31,54],[-29,103],[-140,29],[-114,66]],[[98128,49263],[-41,153],[-103,63],[-21,55],[-58,25],[-107,91],[-42,104],[-22,230],[13,54],[-37,57],[-33,212],[37,187],[-5,123],[-44,206],[46,134],[-76,167],[6,70],[-57,80],[-16,83],[29,84],[-23,78],[-33,37]],[[53057,64192],[-32,75],[-20,93],[-28,47],[-14,100],[-63,119],[-26,106],[12,40],[-30,74],[-3,146],[-36,15],[-86,-11],[-40,31],[3,64]],[[118163,83071],[54,82],[49,40],[91,1],[51,85],[-14,62],[86,81],[25,52],[54,-14],[47,-68],[1,-123],[18,-100],[-75,-113],[-91,-78],[-112,-176],[4,-69],[46,0],[85,-199],[-2,-93],[-40,-67],[14,-94],[107,-17],[50,-102]],[[43070,87849],[30,36],[151,21],[95,-128],[7,-59],[75,-127],[53,-139]],[[93745,90430],[-79,-7],[-205,-81],[-158,-38],[-74,-62],[-40,-80],[-181,-193],[-7,-36],[-105,-91],[-56,5],[-28,-49],[-60,0],[-27,-48],[-106,-92],[-61,-22],[-117,24],[-114,63],[-82,101],[-218,112],[-120,178],[17,124],[24,38],[-3,116],[-29,47],[27,143],[37,39],[42,123],[141,19],[54,87],[55,3],[131,104],[31,0],[102,136],[-9,100],[-46,7],[-114,80],[13,33],[108,-2],[91,129],[64,39],[83,-89],[38,1],[104,73],[64,9],[61,187]],[[91182,50108],[-6,103],[-44,119],[-1,116],[15,81],[55,104],[2,66],[52,74],[70,184],[117,40],[53,34],[98,-25],[32,30],[73,-4],[66,22],[99,90],[47,3],[81,88],[92,8]],[[122431,72592],[-48,14],[-131,-92],[-71,-106],[-114,-86],[-7,-309],[66,-105],[56,-37]],[[43397,59637],[-51,143],[-2,75],[-27,19],[-47,-33],[-30,-73],[-102,-41],[-39,21],[-109,-71],[-24,-56],[-103,-133],[-41,-139],[-63,-72],[-123,1],[-39,13],[-41,-32]],[[117052,82362],[0,-135],[22,-110],[-37,-111],[5,-38],[-35,-160],[-49,-67],[-13,-54],[-59,-55],[-20,-108],[-38,-29],[-48,-113],[-86,-32],[-13,-128],[-32,-120],[7,-44],[-90,-157]],[[121351,78283],[26,-156],[6,-108],[111,24],[40,25],[30,-31],[25,-94],[-53,-117],[13,-64],[49,-93],[3,-121],[52,-78],[16,-126],[71,-7],[37,-52],[9,-76],[-50,-69],[-3,-128],[-30,-25],[-8,-71],[-39,-43],[-19,-80],[-85,-170]],[[138577,58935],[-6,-268],[-56,-24],[-38,-104],[-29,-19],[-29,-106],[-72,-53],[-40,10],[-14,-75],[-57,-53],[-4,-92],[-45,-155],[29,-111],[39,-20]],[[138258,57865],[43,-135],[28,-31],[30,-234],[48,-62],[28,-98],[42,-67],[86,-3],[33,-24],[43,-104],[18,2]],[[138656,57112],[1,-3]],[[138657,57109],[3,3]],[[138657,57109],[41,-74],[-15,-71],[59,-29]],[[87612,69016],[-30,-179],[-32,-103],[13,-148],[76,-199],[33,-51],[0,-76],[-30,-111],[-77,-106],[-19,12],[-102,-77],[-43,-128],[-59,-12],[-23,-199],[-208,-250],[-55,-36],[-36,-95],[-20,-104],[-5,-157],[30,-71],[25,-111],[-19,-62],[-9,-115],[15,-46],[-80,-107],[-11,-231],[-33,-41],[15,-50],[-22,-68],[-17,-161],[56,-24],[55,-100],[56,10],[-40,-211]],[[87275,40266],[-29,-66],[-2,-93],[-76,-68],[-161,-178],[-23,-70],[7,-116],[-24,-77],[-42,-53],[-59,-14]],[[90298,94146],[-4,91],[-34,34],[-107,34],[-109,-58],[-60,-57],[-49,33],[-29,-67]],[[89906,94156],[58,-35]],[[102896,88512],[-81,44],[-42,-42],[-106,26],[-143,150],[-212,74],[-72,95],[-74,39],[-78,-10],[-55,36],[-93,3],[-72,67],[-57,22],[-60,59],[-217,-27],[-164,84],[-102,-44],[-53,-76],[-64,-57],[-30,-76],[-2,-93],[-37,-36],[-58,1],[-82,-35],[-75,-8],[-32,42],[-94,-42]],[[120105,89232],[-29,-117],[4,-64],[-71,-179],[26,-136],[113,-58],[75,-66],[184,-95],[117,-92]],[[93073,109863],[-58,-67],[121,-136],[106,19],[70,-72],[301,-61],[48,-110],[-74,-103],[58,-109],[-137,-25],[-317,94],[-181,-12],[-22,-50],[47,-141],[68,-82],[88,-21],[149,-139],[72,-32]],[[95303,109315],[-95,94],[-217,8],[-46,-88],[-87,7],[-142,97],[-71,-19],[-69,97],[-131,95],[-125,-1]],[[121875,112474],[-149,51],[-192,135],[-44,95]],[[118629,110677],[58,-29],[441,-132],[141,40],[185,4],[93,-81],[132,-174],[252,-229],[161,-43]],[[119848,110153],[86,-104],[158,-16]],[[120092,110033],[1,0]],[[120092,110033],[116,-80],[-42,-111],[74,-114],[67,-26],[55,-88],[93,-56],[97,-16],[150,-78],[36,-122],[120,-36],[46,90],[168,85],[115,215],[141,40],[13,84],[87,105],[63,-6],[113,102],[94,-10],[305,145],[-53,34],[-17,192],[58,64],[133,51],[-35,118],[48,94],[221,49],[-241,203],[-59,145],[-156,50],[-69,106],[50,113],[112,112],[204,98],[-173,162],[30,87],[-117,14],[-22,89],[-78,104],[-171,66],[-59,75],[275,121],[100,112],[-112,58]],[[84084,94724],[88,-20],[186,-157],[120,0],[112,-152],[-6,-69],[172,-93],[171,-134],[166,-20],[48,31],[65,-70],[66,56],[88,-25],[19,34],[98,-58],[65,17],[75,-64],[-7,-45],[50,-56],[134,33],[68,-5]],[[85862,93927],[45,55],[127,-46],[-25,-75],[125,-89],[65,26],[57,-36],[78,122]],[[108997,97915],[-58,0],[-104,51],[-132,17],[-98,94],[-15,84],[-95,65],[-43,-25],[-53,54],[-108,24],[-169,84],[-178,44],[-99,-48],[-171,48],[-116,129],[-143,48],[-116,90],[-66,19],[-93,-27],[-65,19],[-166,-53],[-73,-53],[-106,-27],[-97,32],[-142,-42],[-46,-99],[33,-31],[-46,-75],[-142,-23],[-137,-116],[-57,25],[10,91],[81,103],[-55,94],[17,106],[-57,79],[-34,109],[33,32],[-38,105],[72,100],[93,43],[56,91],[-2,43],[-82,34],[18,151],[84,290],[94,107]],[[110867,107797],[94,85],[72,9],[115,206],[-66,101],[119,138],[41,81],[-38,63],[51,147],[-40,148],[-98,72],[49,69],[-25,98],[-60,67],[11,84],[-50,54],[161,113],[-61,115],[-93,86],[21,173]],[[109297,107092],[-81,-110],[107,-86],[223,-28],[248,31],[116,44],[-13,84],[145,97],[22,73],[64,49],[145,57],[15,86],[91,17],[-17,64],[141,64],[171,-6],[183,155],[12,114]],[[114467,98657],[-14,45],[58,111],[-18,36],[38,83],[-68,232],[-193,47],[-113,-40]],[[114694,97226],[-129,-21]],[[114562,97205],[-105,8],[-110,147],[-27,146],[33,130],[59,44],[161,-63],[30,-38],[98,24],[105,-8],[68,76],[-33,161],[-53,71],[7,102],[-80,89],[-104,203],[-48,147],[0,63],[-98,150]],[[38032,73152],[32,118],[-61,119],[-131,6],[-41,134],[-17,154]],[[74464,71024],[1,192],[-13,114],[43,67],[50,13],[86,-33],[50,27],[36,84]],[[74310,69312],[-31,24],[-33,103],[27,87],[-16,77],[-10,161],[-46,68],[-3,62],[-49,142],[43,111],[23,11],[20,117],[-21,35],[18,187],[73,106],[50,22],[-5,107],[43,83],[56,7],[-6,124],[21,84]],[[89964,94121],[139,-62],[44,-71],[64,-13],[67,-58]],[[91685,79365],[-7,-65],[24,-76],[-27,-171],[38,-162],[-61,-77],[-51,-140],[-44,-74],[-5,-81],[-57,-53],[-19,-49],[-44,6],[-46,81],[-82,-48],[-42,-76],[-15,-69],[-45,-31],[-146,-195],[-32,-157],[-62,-109],[-10,-66],[-37,-44]],[[91685,79365],[-3,147],[16,87],[-13,116],[18,84],[3,110],[-27,111],[-12,123],[-109,103],[-13,119],[-28,113],[46,35],[37,97],[45,161],[-15,82],[-44,39],[-118,-78],[-60,16],[-44,81],[-31,9],[-102,134],[-7,89],[-113,159],[-34,108],[-37,47],[-44,115],[-71,31],[-60,119],[-42,34],[-11,109],[19,63],[-23,141],[-2,116],[-33,48],[-9,150],[33,65],[9,147],[30,131],[91,179],[44,112],[-2,142],[29,85],[-6,122],[8,105],[-29,86],[7,81]],[[92036,75537],[3,73],[-17,90],[-42,18],[-4,109],[10,164],[-66,89],[-19,107],[-41,37],[-86,35],[-93,-63],[-64,-105],[-16,-67],[-75,-29],[-21,-80],[-44,-76],[-72,-22],[-67,-74],[5,-116],[-69,-33],[-47,-143],[-107,-199],[-88,-26],[-51,-41],[-106,49],[-29,53],[-54,27],[-27,95],[2,100],[-57,116],[-37,157],[-1,356],[-10,87],[-29,74],[-14,131],[-23,66],[118,73],[-11,138],[11,71],[-27,52],[-53,2],[-44,162],[48,162],[57,16],[26,132],[48,45],[-15,56],[56,79],[77,77],[-11,40],[55,108]],[[92078,75441],[-42,96]],[[91518,73549],[25,173],[-1,197],[26,59],[110,173],[57,34],[69,3],[53,75],[138,73],[57,138],[-10,116],[20,114],[51,104],[13,79],[34,55],[-3,271],[-20,167],[-48,38],[-26,92],[-27,27]],[[83340,67845],[22,-21],[173,92],[127,50],[71,0],[43,-21],[40,19],[123,110],[78,7],[27,-43],[155,35]],[[88173,56577],[-62,58],[3,62],[47,117],[28,29],[23,197],[55,67],[18,95],[32,68],[86,113],[-20,146],[51,130],[118,80],[17,84],[-86,174],[4,85],[-40,38],[-102,186],[96,39],[27,46],[62,15],[174,113],[-8,88],[-35,31],[-2,112],[-98,115],[-29,95],[-111,46],[-102,171],[-26,112],[-43,66],[-12,110],[59,104],[-16,38],[15,77],[-6,121],[-20,55],[-89,159],[23,78],[-10,99],[55,189],[26,12],[32,139],[-1,68],[31,116],[-12,141],[13,123],[36,131],[-59,112],[6,55],[-24,99],[17,115],[-17,60],[14,56],[-28,93],[-9,95],[-74,78],[-16,70],[-58,64],[-36,86],[-28,16],[-13,103],[-44,29],[-6,143],[-66,195],[-57,0],[-18,72],[23,136],[31,55],[34,257],[38,100]],[[71836,70362],[-16,59],[-15,312],[55,210],[-22,25],[-32,112],[-44,108],[-79,27],[-40,-33],[-80,30],[-44,-41],[-66,-205],[-103,-15],[20,-74],[-18,-81],[-31,-40],[-121,6],[-21,-24],[-45,92],[-38,28]],[[98054,48606],[-54,-83],[-25,13],[-89,-29],[-17,-43],[-68,12],[-33,-19],[-68,100],[-119,-8],[-114,46],[-6,110],[-78,16],[-6,36],[-158,93],[-83,22],[-58,59]],[[88403,54650],[10,-59],[39,-82],[-10,-60],[-63,-141],[-14,-59],[11,-76],[-59,-136],[-79,-89],[0,-98],[53,-193],[-3,-57],[-135,-54],[-63,-90],[-42,-33],[-25,-117],[-52,-103],[-52,-42],[-90,-221],[-83,-33],[-21,15],[-181,-124],[-35,10]],[[90930,49750],[92,-66],[82,-101],[47,-15],[28,-138],[54,-64],[67,-24],[48,-169],[54,-116],[25,-107],[48,-49],[-23,-132],[-1,-117],[-37,-382],[-49,-172],[19,-95],[30,-23],[27,-100],[107,-106],[53,-11],[49,-56],[53,-4],[64,-77],[56,74],[45,-11],[114,77],[139,-9],[32,65],[120,33],[51,-16],[43,83],[92,55],[23,-26],[63,74],[100,50]],[[80639,70730],[-46,19],[-98,129],[-45,135],[-100,182],[-134,122],[-76,160],[-83,35],[-17,77],[-57,92],[-37,25],[-47,80],[-85,-27],[-44,15],[-55,-43],[-54,-11],[-98,22],[-46,-128],[-159,-227],[-80,-50],[-30,-52],[3,-157],[51,-210],[6,-139],[44,-91],[-52,-97]],[[80498,70665],[-17,-109],[-39,-44],[-45,-144],[-84,-39],[-57,21],[-98,-163],[5,-110],[-17,-109]],[[54229,52621],[-34,-23],[-73,20],[-62,-34],[-128,100],[-51,78],[-30,100],[3,69],[-48,206],[-85,66],[-49,20],[-34,69],[-53,59],[-14,81],[-27,16],[-45,157],[-71,145],[20,90],[-25,105],[113,60],[-37,237],[15,60],[-29,105],[76,255],[10,59],[62,43],[57,94],[-13,54],[-68,9],[-22,28],[-116,-23],[-51,156],[24,131],[28,46],[-27,105],[3,74],[33,75],[80,18],[40,133],[-12,79],[-54,85],[-99,116],[-108,15],[-104,103],[-116,69],[-40,-7],[-26,91],[-93,40],[-14,96],[-36,60],[-54,21],[-61,96],[-66,57],[-32,225],[16,118],[-66,144],[-57,262],[-60,174],[-33,45]],[[51509,52440],[26,134],[-25,104],[-27,44],[-7,80],[36,108]],[[89964,94121],[259,-8],[85,-14]],[[44631,66700],[-40,-139],[-32,-59],[-58,21],[-8,261],[-32,37],[-2,67],[31,42],[-43,131],[5,117],[-47,77],[-36,163],[26,25],[-15,116],[15,66],[-43,31],[-37,134],[15,86],[-26,140],[5,108],[43,39],[8,70],[71,96]],[[53978,56205],[-6,-67],[52,-50],[133,-165],[101,25],[16,67]],[[54274,56015],[19,125],[92,96],[48,113],[-4,34],[83,108],[28,60],[-33,151],[-35,108],[17,178],[34,23],[59,133],[7,46],[-32,73],[-36,166],[-41,87],[-69,105],[-11,56],[-63,66],[11,125],[-53,171],[-45,234],[-15,174],[-42,60],[-8,120],[-49,247],[-26,67],[-34,160],[-55,125],[14,50],[97,105],[59,-22],[34,76],[123,125],[57,-16],[85,62],[58,194],[67,80],[95,13],[58,69],[29,-14],[69,31]],[[50788,68309],[1,-75],[-54,-106],[55,-188],[27,-121],[56,4],[14,-38],[65,-17],[35,-82],[10,-104],[-20,-112],[45,-135],[84,97],[46,-24],[36,-69],[92,12],[37,40],[55,-21],[43,60],[98,71],[64,-60],[33,13],[65,-60],[55,41],[131,-46],[2,-63],[68,-41],[59,119],[107,-58],[25,-99],[82,-114],[48,-16]],[[57145,59039],[-48,97],[25,73],[-22,110],[22,114],[-18,241],[21,28],[23,130],[21,9],[85,147],[18,197],[24,24],[10,88],[54,55],[65,157],[9,141],[21,40],[-30,67],[68,86],[36,72],[-9,104],[72,154],[28,147],[0,85],[-43,52],[49,37],[0,136],[50,191]],[[55044,64364],[-9,-45],[42,-174],[-4,-175],[31,-74],[28,-150],[-1,-108],[-19,-57],[17,-152],[65,-19],[17,-47],[45,8],[37,-87],[25,-101],[79,-7],[62,95],[54,-45],[37,28],[25,82],[60,18],[153,107],[44,-9],[23,89],[61,18],[19,-60],[91,35]],[[58700,48146],[54,20],[97,110],[49,-19],[27,-45],[41,9],[45,232],[27,45],[16,99],[47,70],[9,71],[37,17],[83,138],[-3,133],[-15,70],[35,24],[9,86],[141,236],[56,106],[38,15],[49,-26],[28,-65],[63,-46],[33,-96],[66,-61],[128,-178],[145,-26],[47,17],[71,-20],[133,81],[62,-10],[62,-142]],[[53860,64459],[198,-105],[54,56],[32,118],[31,69],[21,134],[-11,145],[81,193],[6,109],[-27,16]],[[44419,63572],[-5,-67],[-36,-28],[43,-136],[126,-216],[13,-102],[56,-81],[41,41],[83,-75],[29,9],[54,-128],[59,-67],[62,1],[97,-103],[66,-27],[54,40],[90,-115],[47,27],[30,-75],[52,-48],[95,-158],[15,-113],[29,-46],[9,-98],[159,-119],[17,-54],[106,-45],[60,-155],[5,-65],[-20,-71],[82,-82],[66,-6],[8,-111],[25,-79],[-36,-79],[15,-74],[44,-5],[49,-83],[60,29],[37,-29],[32,59],[107,-78],[101,28],[31,52],[53,2],[85,130],[134,-79],[30,-79],[72,19],[34,55],[64,45],[51,-22],[72,-69],[26,-85],[30,32],[52,-61],[43,4],[52,-96],[84,-65],[120,0],[9,-99],[65,-68],[39,76],[53,-38],[108,-43],[33,-28],[97,33],[52,69],[53,-32],[94,11],[35,-93],[127,-69],[24,19]],[[44482,57446],[28,40],[-31,180],[53,76],[68,35],[53,84],[9,199],[58,-5],[43,52],[59,-1],[11,56],[61,47],[23,69],[-94,119],[16,57],[-65,38],[-8,57],[-49,45],[44,43],[59,204],[44,69],[-12,53],[45,50],[61,117]],[[44536,55304],[85,164],[55,76],[37,81],[-22,132],[24,53],[112,82],[40,53],[-52,109],[-16,190],[-57,104],[0,164],[-19,47],[-44,20],[-3,76],[-40,170],[-4,54],[-70,50],[0,74],[-66,101],[-20,55],[-10,134],[-18,76],[31,74]],[[52203,63574],[-5,94],[32,61],[37,19],[43,153],[10,115],[70,175],[9,149],[22,57],[9,125],[42,65],[-20,39],[28,128],[-67,93],[30,163],[-41,208],[-32,53],[20,52],[-34,133],[-65,29],[40,53],[15,150],[-11,106],[-36,35],[-71,150],[-26,3],[-22,172],[11,150],[-28,68],[11,57],[79,33],[26,117],[2,152],[16,50],[0,264],[-12,86]],[[118611,82161],[27,-111]],[[118638,82050],[-71,-70],[-62,-29],[-21,-64],[-80,-27],[-68,-106],[-32,-86],[-49,-54],[-7,-81],[-115,-126],[-62,-40],[-85,-15],[-35,-52],[-89,-36],[-94,37],[-82,-30],[-56,-54],[-95,4],[-28,-31],[-76,-12],[-27,-51],[-83,13],[-140,-109],[-5,-49],[-160,-96],[-84,-22],[-163,50],[-124,-54],[-140,66],[-92,-76],[-154,-88],[-43,-85],[-59,-208],[-12,-173],[13,-41],[-32,-133],[-6,-80],[44,-162],[23,-150],[-29,-332],[11,-105],[78,-146],[33,-21],[114,-127]],[[116181,79565],[89,-164],[58,-23],[50,-63],[39,-111],[71,-78],[4,-43]],[[51020,38938],[73,-178],[91,-107],[16,-86],[36,-31],[70,42],[38,-12],[88,-137],[48,-34],[28,-135],[80,-8],[125,-48],[61,-50],[93,-11],[20,-55],[206,-120],[2,-88],[64,-23],[21,-49],[150,-31],[63,-79],[64,11],[97,-122],[106,61],[14,51],[68,-1],[79,71]],[[45478,65261],[71,43],[71,-48],[55,64],[51,-40],[35,-173],[78,-83],[32,-9],[111,-196],[5,-140],[46,-39],[74,-4],[65,-36],[14,-146]],[[46186,64450],[60,29],[111,91],[74,24],[54,-49],[20,61],[44,-16],[36,27],[71,-19],[72,3],[191,-71],[59,20],[61,72],[12,127],[56,58],[-9,79],[56,28],[100,108],[92,26],[25,72],[51,27],[81,1],[33,25],[95,-57],[113,23],[6,43],[73,16],[136,136],[71,92],[56,0],[78,-34],[33,60],[46,-49],[82,13],[28,93]],[[58660,48672],[-10,131],[-26,112],[38,62],[-56,95],[-26,91],[0,93],[-39,71],[23,36],[-35,185],[-38,116],[6,128],[-34,105],[6,45],[-60,58],[-63,98],[0,100],[-97,286],[2,49],[-37,161]],[[40461,71615],[-42,-65],[62,-78],[46,-14],[46,77],[96,64],[148,-144],[29,20],[19,84],[37,-10],[49,96],[73,35],[6,53],[107,19],[47,-46],[48,70],[48,21],[13,58],[83,10],[43,-147],[66,-66],[73,-5]],[[46868,94108],[-63,-73],[-84,-33],[3,-80],[-52,-107],[36,-101],[-55,-104],[-157,-115],[-3,-97],[-70,-249],[-40,-45],[-40,-131],[-2,-161],[-33,-217],[-33,-77],[36,-83],[-2,-66],[-43,-51],[6,-56],[-27,-182],[9,-128],[-22,-204],[12,-111],[108,-172]],[[27483,96192],[-74,72],[-89,-5]],[[29066,94557],[2,125],[-121,17],[-3,109],[39,92],[-3,117],[-95,88],[-42,0],[-118,94],[-88,-24],[-87,30],[-82,100],[-81,-4],[-62,91],[-42,19],[-169,4],[-17,63],[-84,85],[2,72],[61,43],[-51,61],[-120,62],[-59,4],[-62,150],[-84,57],[-71,111],[-146,69]],[[39915,99585],[4,182],[52,215],[99,112],[-60,110],[16,80],[-31,79],[6,164],[-34,68],[-30,191],[152,-7],[115,33],[74,-56],[129,-12],[278,107],[51,106]],[[50256,99195],[49,-36],[210,-42],[73,-61],[148,-83],[42,-154],[44,-101],[40,-26],[56,-191],[33,-168],[76,-124],[-54,-110],[14,-114],[-30,-189],[45,-188]],[[38687,84902],[-25,67],[-4,88],[92,227],[80,74],[164,100],[79,60],[69,8],[59,56],[-68,177]],[[38687,84902],[9,-26]],[[38696,84876],[6,-20]],[[38760,84549],[-18,12],[-40,295]],[[38760,84549],[64,-116],[54,-196],[-50,-210],[27,-91]],[[38770,84532],[-10,17]],[[38855,83936],[46,-67],[39,-170],[26,-13]],[[38855,83936],[23,-72]],[[38878,83864],[25,-28]],[[38878,83864],[50,-185]],[[41472,86379],[59,-13],[112,-139],[19,-192],[-7,-44],[53,-133],[-43,-88],[103,-225],[24,-20],[17,-142],[53,-171],[60,-64],[38,-208]],[[89279,93405],[25,30],[131,56],[65,47],[58,76],[-1,98],[-26,105]],[[39664,72540],[16,69],[-30,65],[-79,246],[-62,77],[28,193],[73,74],[91,133],[-5,64],[30,71],[-25,43],[40,174]],[[49076,103279],[104,-73],[12,-80],[94,-37],[23,-117],[-43,-66],[67,-63],[-31,-72],[87,-49],[27,-180],[-35,-133],[145,-91],[18,-84],[52,-17],[41,-133],[-14,-100],[24,-46],[-1,-305],[-16,-51],[-122,-51],[-13,-221],[-72,-66],[-3,-206],[-28,-129]],[[20854,107389],[-159,-112]],[[20693,107278],[-68,-15],[-181,11],[-224,-30],[-106,-49],[-282,6],[-31,-49],[116,-52],[117,-13],[-52,-76],[-252,-123],[-105,-30],[-122,20],[-169,-26],[-16,48],[-113,65],[-260,-15],[-260,-147],[-108,20],[-57,57],[-133,20],[-139,58],[-89,-78],[-139,-41],[-69,-77],[-122,-16],[-172,-76],[-188,82]],[[94676,106137],[-30,44],[64,140],[-74,126],[-192,94],[-8,58],[-128,321],[19,66],[-72,41],[-132,-1],[-42,92],[-67,-8],[-127,77]],[[80506,96095],[-46,-36],[-95,57],[-51,68],[-36,113],[-59,68],[17,70],[-120,102],[1,72],[50,13],[-45,153],[75,129],[-22,124],[83,67],[31,152],[73,27],[58,81],[145,67],[30,123],[138,94],[6,53],[62,38]],[[109264,75896],[79,-109],[48,-115],[63,-55],[48,42],[33,-59],[196,-125],[26,-99],[108,-29],[-1,-107],[43,-83],[-10,-109],[45,-18],[40,-57],[37,-9],[99,-168],[46,-35],[37,29],[29,-63],[52,5],[11,-53],[120,-96],[85,44],[-14,-63],[163,-34],[15,-147],[87,-85],[11,-93],[50,-112]],[[115680,81947],[30,-63],[-50,-57],[-10,-85],[-35,-92],[40,-80],[-42,-61],[3,-72],[29,-73],[99,-183],[15,-94],[154,-272],[15,-81],[65,-86],[65,-40],[30,-68],[14,-90],[41,-19],[13,-60]],[[123767,73878],[-51,86],[-70,-57],[-92,-201],[-40,-8],[14,-90],[-12,-119],[-32,-151],[30,-57],[38,-137],[6,-72],[-37,-89],[-163,-247],[-37,-13],[7,-141],[35,-45],[-51,-172],[-64,-176],[-56,-76]],[[123558,86481],[-54,-42],[-50,-127],[-56,-28],[-38,-63],[-48,-27],[-38,-86],[-87,-109],[46,-167],[-33,-49],[21,-87],[-18,-66],[-62,-73],[5,-76],[-52,-262],[-41,-52],[-4,-191],[57,-138],[43,-69],[13,-113],[38,-5],[-13,-125],[76,-27],[32,-55],[-5,-81],[37,-32],[-15,-66],[-56,-78],[-44,-106],[-7,-97],[37,-120],[27,-9],[24,-91],[-28,-71],[46,-82],[10,-85],[76,-126],[-21,-130],[55,-7]],[[127359,80109],[14,-63],[-74,-211],[-27,-24],[-14,-93],[-67,-67],[-52,-75],[15,-126],[-54,-54],[-56,-99],[-84,-48],[-26,-36],[-30,-150],[15,-56],[-79,-97],[39,-98],[-59,-10],[-21,-49],[-48,34],[-80,-69],[-23,25],[-92,11]],[[126897,79190],[31,7]],[[126556,78755],[0,-1]],[[126556,78754],[-6,5]],[[126556,78754],[-97,-112]],[[14719,109042],[-1,0]],[[14718,109042],[-3,0]],[[14718,109042],[-91,-26],[-300,-42],[-101,-33],[-112,-76],[-86,11],[-67,-62],[-276,-16],[-112,-37],[-55,-57],[-268,-99],[-52,-75],[-186,32],[-146,-84],[143,-16],[-29,-90],[-101,21],[-38,-96],[-205,-30],[-365,-185],[-88,13],[-144,-59]],[[12039,108036],[-162,-35],[-145,63],[-139,-13],[-76,-59],[-131,23],[-253,-98],[-70,-50],[-153,12],[-226,-55],[-129,-77],[-98,12],[-209,-32],[-210,-54],[-157,119],[-154,-6],[-50,39],[-164,-3],[-31,-53],[-126,-85],[-98,-152],[-82,-56],[26,-103],[-56,-137],[-192,-111],[-123,-239],[27,-74],[-72,-37],[-55,-84],[-14,-116],[-81,-47],[-42,-70],[-55,-237],[59,-70],[39,-145],[96,-31],[-16,-62],[-86,-27],[-88,-99],[-157,-10],[-183,12],[-146,-59],[-58,-142],[-236,-44],[4,69],[-97,165],[-101,2],[-44,63],[-75,-76],[-128,-5],[-85,30],[-26,61],[-91,36],[-164,11],[-53,88],[51,107],[-41,129],[-99,104],[-130,23]],[[12042,108036],[-3,0]],[[17903,106397],[-94,45],[-159,33],[-205,63],[-37,134]],[[17408,106672],[64,61],[-122,118],[-21,151],[32,212],[103,73],[-68,114],[-151,53],[-241,51],[-78,149],[-158,67],[-59,129],[-77,48],[-14,93],[-155,79],[-102,75],[-202,23],[-57,36],[-93,-40],[-145,24],[-91,-16],[-122,61],[-65,98],[-72,0],[-60,93],[49,105],[-82,105],[-266,198],[-35,72],[-200,120],[-202,18]],[[17916,106389],[-13,8]],[[17918,106389],[-2,0]],[[7189,105863],[39,-97],[-37,-50],[-155,-36],[-183,74],[-61,-72],[-249,-17],[18,-92]],[[19418,105531],[25,56],[-68,198],[-330,65],[-262,92],[20,109],[-168,111],[-74,94],[-146,68],[-104,78],[-143,-9],[-143,17],[-109,-21]],[[119567,86381],[-117,-85],[-80,-92],[40,-245],[34,-59],[219,2],[48,-103],[89,-40],[70,-87],[31,-98],[91,-41],[27,26],[85,-91],[61,7],[39,-78],[-8,-149],[-60,-53],[54,-56],[34,19],[60,-30],[28,-79],[47,-33],[11,-67],[67,-77],[20,-74],[68,-104],[95,-32],[18,-66],[53,-75],[36,-184],[0,-118],[-63,-71],[-5,-54],[28,-107],[106,-126],[56,-17],[68,-135],[50,-27],[56,11],[3,-155],[37,-99],[-7,-88],[25,-102],[4,-96],[-42,-67],[59,-267],[-2,-106],[29,-209],[61,-150],[-2,-80],[46,-71],[60,81],[17,127],[24,31],[18,110],[75,29],[-31,-114],[9,-81],[-49,-173],[43,-93],[35,-160],[25,-5],[-22,-238],[-80,-246],[-38,-45],[17,-69],[60,-73],[-30,-96]],[[112385,84520],[-88,-6],[-45,62],[-78,10],[-68,198],[-46,69],[-62,192],[-100,173],[-55,73]],[[126536,64549],[-62,-118],[-188,-154],[-67,-178],[-30,-29],[-201,-2],[-145,40],[-19,36],[-79,17],[-63,98]],[[125682,64259],[-59,-2]],[[125623,64259],[0,-2]],[[125623,64257],[-79,45]],[[125623,64257],[-37,-62],[-60,-42],[-32,16]],[[109190,107630],[0,67],[127,160],[80,35],[-55,142],[-238,70],[-44,46],[-166,83],[-138,171],[-20,90],[-178,87],[-27,196]],[[108346,106905],[154,109],[212,120],[172,67],[120,95],[73,107],[110,227]],[[126780,63610],[-68,-233],[-40,-64],[4,-86],[57,-3],[42,-43],[48,-3],[116,99],[73,13],[53,-16],[2,-79],[89,-63],[81,-173],[8,-69],[49,-74],[-4,-83],[28,-34],[8,-86],[62,-12],[6,-83],[42,-63],[79,-8],[65,-47],[92,16],[48,47],[61,92],[38,-20],[36,-103],[60,31],[14,-209],[55,49],[49,-48],[37,0],[36,48]],[[137055,59955],[156,-45],[57,50],[65,-26],[48,-98],[44,-220],[64,-32],[64,-123],[-31,-64],[15,-82],[-22,-155],[-56,-83],[-121,-142],[-9,-151],[-55,-41],[-98,22],[-60,-56]],[[118779,76741],[144,-44],[52,-60],[-4,-197],[27,-52],[-7,-163],[13,-107],[44,-88],[12,-115],[26,-122],[-22,-29],[3,-85],[64,-121],[32,-110],[9,-115],[45,-99],[26,-120],[16,-157],[-8,-139]],[[121796,65755],[-54,12],[-37,38],[-44,-7],[-35,-89],[-17,-147],[-17,-47],[19,-88],[24,-17],[1,-99],[-20,-40],[26,-171],[-3,-92],[43,11],[35,86],[36,9],[81,-42],[74,-9],[87,68],[84,-27]],[[122858,79686],[65,-51],[149,-52],[35,39],[23,-85],[57,-86],[-3,-36],[54,-82],[117,28],[19,-25]],[[123374,79336],[68,-34],[26,-72],[101,-23],[25,-72],[36,-29],[84,-22],[71,-91],[101,-156],[102,-136],[69,-50],[22,-82]],[[123374,79331],[0,5]],[[108925,78175],[57,20],[22,128],[66,120],[0,67],[55,49],[28,142],[43,45],[17,58],[50,55],[43,5],[52,47],[83,197],[14,108],[92,80],[44,18],[41,-110],[-10,-152],[34,-91],[40,-41],[50,-149],[65,6],[18,-28],[1,-124],[-15,-136]],[[138651,38909],[-77,9],[-78,-77],[-140,96],[-84,10],[-45,51],[-48,-56],[-45,-130],[-50,-29],[-16,-107],[-69,53],[-21,126],[-78,23],[-30,-20],[-101,57],[-11,44],[-66,15],[-27,-132],[-23,-200],[11,-93],[-26,-119],[-124,-112],[49,-42],[-35,-62],[9,-49],[55,-37],[-34,-96]],[[111175,77773],[-58,-12],[-81,35],[-34,61],[-180,-9],[-58,-55],[-64,-25],[-80,-56],[-31,-70],[-42,-41],[-78,-2],[-64,-36],[-148,-207],[-98,-27],[-143,74],[-86,-14],[-98,26],[-80,66],[-63,82],[-119,31],[-39,51],[-78,-1],[-83,-29],[-92,-104],[-20,-55],[-126,24],[-82,-36],[-93,53],[-109,-109]],[[113661,78815],[36,-98],[37,-43],[44,3],[18,79],[71,-93],[14,-245],[-41,-49],[9,-72],[74,-89],[67,-42]],[[125990,80291],[83,35],[127,-60],[119,-83],[52,-92],[5,-44],[50,-62],[12,-73],[-20,-98],[25,-62],[-72,-169],[16,-43],[-22,-87],[-47,-56],[-20,-157],[-18,-50],[-87,-34],[-8,-77],[-37,-83],[-33,-212]],[[135373,93055],[-69,-36],[-133,104],[37,117],[-43,120],[-2,107],[42,77],[59,55],[30,115],[-71,60],[-84,-5],[-80,120],[-32,162],[34,22],[-2,80],[-37,40],[-48,130],[11,72]],[[88113,96287],[-14,107],[38,68],[124,24],[52,-58],[216,-31],[53,-59],[45,11],[128,-91],[110,-28],[144,45],[60,-11],[105,-95],[96,-283],[125,-172],[4,-65],[65,-64],[36,-96],[100,-89],[84,-247],[6,-163],[-69,-298],[29,-166],[-6,-140],[31,-77]],[[133032,88707],[-35,59],[-50,-18],[-38,-137],[-53,-66],[25,-41],[-88,-100],[-63,26],[-57,-38],[-91,93],[-121,192],[-29,84],[-131,68]],[[123376,110957],[136,-37],[111,82],[197,11],[363,-23],[304,28],[349,81],[248,100],[206,53],[-65,42],[89,60],[223,65],[193,-28],[133,-58],[225,6],[-104,203],[-79,218],[78,26],[-37,82],[52,48]],[[95645,92772],[-32,116],[37,45],[14,111],[-86,44],[-5,199],[61,173],[-4,92],[-40,28],[-4,139],[-46,65],[-40,109],[-136,-8],[-111,105],[-64,143],[-3,130],[-45,34],[-103,-2],[-83,-37],[-186,-35],[-57,-67],[-127,-26],[-124,-134],[-121,-24],[-53,35],[-49,-23],[-35,44],[-158,54],[-57,35],[-89,-30],[-187,0],[-71,37],[-16,86]],[[89640,42660],[-48,-89],[-68,-41],[-49,5],[-36,-109],[-91,-157],[-15,-74],[-76,-106],[-98,-53],[-68,-169],[-2,-96],[-69,-131],[26,-27],[-148,-127],[-120,-21],[-30,-47]],[[94237,67496],[37,-7],[56,62],[80,36],[86,63],[39,121],[66,95],[42,-29],[73,44],[68,-20],[21,-31],[174,169],[68,100],[35,85],[83,26],[99,112],[54,21],[73,-14],[19,-95],[39,-79],[2,-96],[54,-113],[71,-44],[61,-7],[52,-74],[22,-129],[-21,-131],[-44,-122],[-26,-150],[115,-220],[60,-29],[130,-14],[41,-72],[196,-144],[87,7],[56,-61],[36,-8],[99,-120],[50,-11],[65,-61],[33,5],[69,-86],[46,-7],[35,-96],[53,-57],[52,-119],[42,-17],[24,-59]],[[111911,84170],[-11,-34],[26,-105],[-59,-115],[-36,-15],[-57,43],[-109,-181],[-116,1],[-85,-48],[-50,2],[-46,-99],[-50,-17],[-62,47],[-67,-133],[11,-169],[-73,-61],[-12,-61],[54,-195],[-16,-77],[7,-217],[37,-95],[6,-85],[29,-57],[11,-126],[75,-140],[65,-77],[113,-51],[34,-59],[86,-14],[21,-88],[89,-31],[63,-81],[61,-201],[52,-59],[40,-6],[84,-191],[9,-78],[50,-56],[23,-93],[91,-116],[38,-144],[33,-42],[77,-39],[47,13],[104,-96],[9,-49],[73,-67],[-5,-63],[68,-63],[39,-4],[32,-64],[78,13],[22,-117],[105,-20],[87,-38],[62,-71],[48,42],[61,-66],[104,72],[9,66],[40,2],[-5,88],[38,58],[43,-39],[77,26],[87,68],[34,-68],[55,5],[105,148],[56,-31],[43,51],[54,-46],[73,5],[26,30],[54,-26],[100,6],[42,-58]],[[114212,80514],[88,-90],[55,53],[59,-84],[77,29],[90,-122],[87,0],[28,-26],[60,48],[26,70],[36,-1],[9,-110],[36,-32],[84,65],[37,-43],[80,-42],[82,118],[69,-11],[38,-80],[79,-37],[-1,-86],[75,-72],[-21,-88],[23,-100],[54,-86],[21,-77],[75,2],[59,-94],[102,-12],[24,-32],[6,-94],[39,-20],[38,33],[46,-53],[22,-82]],[[115399,79935],[1,-130],[37,-50],[56,-122],[41,-42],[2,-119],[-27,-97],[15,-171],[-28,-92],[88,-78],[-11,-119],[44,-86],[22,-117],[-38,-72]],[[115610,79621],[47,-87],[-4,-54],[52,-60],[-7,-55],[95,-43],[7,-157],[-58,-84],[43,-104],[42,-51],[39,0],[8,-128],[33,-68],[-17,-53],[21,-112],[55,-71],[16,-95]],[[115894,79359],[0,-1]],[[115894,79358],[31,-31],[69,-2],[101,-80],[84,23]],[[115894,79358],[72,-119],[42,-94],[29,2],[77,-140],[43,-262],[56,-110],[49,-57],[35,-143],[-6,-112]],[[116324,79080],[25,-238],[29,-31]],[[116378,78811],[46,-60],[1,-76],[27,-44],[5,-110]],[[115601,78640],[55,24],[88,-32],[47,-73],[8,-116],[27,-3],[57,-311],[-1,-57]],[[115601,78640],[-26,-110],[-2,-148],[-94,-83],[-23,-154]],[[115600,78640],[1,0]],[[115982,78399],[-18,-32],[11,-168],[48,-157],[-15,-80]],[[115982,78399],[0,-1]],[[116061,78187],[-22,166],[-57,46]],[[91083,42320],[-83,47],[-49,63],[-20,65],[-76,119],[-82,46],[-101,-20],[-67,4],[-16,34],[-70,-31],[-78,73],[-134,-74],[-35,63],[-66,-1],[-77,-72],[-61,84],[-51,-11]],[[110934,71998],[8,73],[-29,41],[-26,177],[14,42],[-34,99],[7,39],[-29,89],[-43,319],[27,137],[126,60],[69,-37],[65,45],[61,-64],[72,-47],[45,40],[148,-173],[68,-40],[36,-61],[95,-29],[129,98],[57,-12],[66,26],[48,-66],[73,-10],[57,60]],[[76497,90542],[-33,-17],[-70,-172],[27,-86],[-6,-191],[-83,-27],[-24,33],[-146,-44]],[[82253,97816],[-45,-53],[-98,29],[-16,38],[-83,25],[-29,143],[-26,38],[-135,42],[58,103],[77,59],[-59,66],[-69,25],[-18,67],[-133,71],[-23,114],[-79,34],[-10,96],[58,144],[-109,124],[-86,26],[-71,-18],[13,108],[114,222],[-2,212],[-136,59],[-168,146],[9,79]],[[24909,92660],[-46,13],[-43,-40],[-48,-112],[-6,-89],[-132,-81],[-32,-126],[-239,-7],[-17,61],[-164,147],[-77,-65],[-43,-66]],[[24062,92295],[-65,-31],[-60,-60]],[[24089,90848],[-46,101],[-56,9]],[[24612,90050],[-45,63],[-63,-17],[-15,63],[-52,49],[-84,259],[-22,123],[-51,58],[-40,83],[-78,34],[-10,54],[-63,29]],[[25984,89384],[-25,45],[-81,-49],[-60,-103],[-103,-20],[-72,-91],[-79,-152],[-192,-62],[-62,-53]],[[84448,109181],[98,-129]],[[86621,107730],[-80,23],[-117,-17],[-177,55],[-67,74],[-158,61],[-150,96],[-65,81],[-422,188],[-57,69],[7,65],[-114,154],[-6,110],[-164,123],[-197,103],[-249,37],[-59,100]],[[46860,30239],[71,18],[142,-38],[73,55],[117,-44],[104,37],[210,-161],[144,15],[101,42],[170,-17],[65,-50],[87,-21],[104,-165],[72,-42],[189,-18],[80,-83],[51,-141],[-4,-84],[85,-85],[71,-6],[45,-86],[96,-29]],[[35839,94368],[34,-79],[61,-20],[46,-65],[151,-82],[130,-157],[124,-110],[-5,-22],[389,-260],[52,-18],[36,-57],[151,-86],[53,138],[18,160],[115,84],[19,56],[118,4],[64,72]],[[108871,86770],[24,-99],[-2,-217],[-54,-58]],[[108839,86396],[-32,-50],[-87,-2],[-82,-51],[-3,-120],[-63,17],[-28,-30],[-30,-153],[-48,-87],[-43,-18],[-17,-83],[21,-36],[-14,-122],[-110,-92],[-21,-114],[-36,-54],[7,-156],[-51,-175],[-48,-70],[-54,-127],[-86,-329],[-11,-113],[30,-199],[-36,-131],[42,-199],[-33,-131],[19,-79],[11,-210],[-79,-167],[-6,-80],[32,-102],[-31,-128],[5,-109],[-45,-30],[-34,-65],[-44,-5],[-52,-96],[-42,-22],[-55,-103],[-106,-54],[-25,-72],[-60,-110],[-75,-23],[-114,-113],[-48,-1],[-50,-61],[14,-74],[-38,-51],[30,-59],[-61,-30],[-39,82],[-23,-51],[-85,-24],[-68,-84],[15,-127],[-50,-8],[-24,-43],[12,-69],[-61,-131],[-57,-46],[-12,-219],[20,-41],[-16,-131],[21,-81],[80,-82],[1,-51],[62,-122],[52,-53],[-29,-66],[44,-50],[-50,-175],[17,-91],[-19,-35],[-14,-164],[-40,4],[-90,-238],[15,-60],[-14,-74],[-45,-68],[-27,-80],[-61,-101]],[[111737,85458],[-55,132],[-55,43],[-97,147],[-105,-25],[-120,82],[-121,130],[-1,68],[-126,148],[-85,174],[-74,75],[-29,-6],[-249,140],[-68,82],[-43,81],[-122,81],[-48,104],[15,71],[-131,163],[-33,122],[-90,-19],[-110,111],[-24,78],[-94,12],[-101,76],[-57,12],[-55,-40],[9,-100],[-89,-72],[-94,-13],[-76,20],[-52,42],[-203,47],[-50,-10],[-26,-100],[3,-100],[-65,-53],[-82,-104],[-24,-99],[49,-37],[-70,-55],[-18,-96]],[[111866,85253],[-132,210]],[[106667,79448],[-1,1]],[[106667,79448],[-57,-32]],[[106688,79420],[-21,28]],[[106688,79420],[20,-9]],[[106780,79362],[0,1]],[[106822,79328],[-29,45]],[[106661,79326],[35,23],[-8,71]],[[106750,79311],[30,51]],[[42229,97281],[-45,124],[-35,8],[-23,172],[8,56],[95,87],[84,44],[93,101],[28,110]],[[42116,96541],[38,106],[-46,27],[50,155],[38,51],[-9,108],[49,177],[-7,121]],[[39522,97086],[-53,-128],[3,-82],[38,-101]],[[83179,63484],[-30,-94],[-34,1],[10,-107],[-73,-295],[-131,-155],[-40,9],[-15,-77],[-30,-41],[-36,-115],[-40,-34]],[[93577,56334],[21,110],[-6,86],[33,165],[-6,50],[112,218],[38,111],[73,155],[135,0],[23,19],[66,-49],[73,-21],[48,-58],[53,-25],[85,-3],[87,-33],[43,68],[-25,89]],[[127411,98676],[64,72],[107,37],[107,-6],[200,87],[73,58],[58,7],[204,118],[49,-12],[104,58],[200,40],[60,58],[-8,59],[53,104],[59,45],[23,83],[48,40],[37,90],[95,85],[38,0],[135,158],[75,-1],[49,50],[117,-33],[111,36],[121,14],[171,-17],[83,-115]],[[86488,109863],[87,-41],[323,-40],[354,-184],[63,-99],[243,-13],[119,-52]],[[87677,109434],[48,-86],[136,-165],[-46,-43],[-5,-130],[-103,-89],[35,-160],[127,-110],[62,-157]],[[45590,102229],[215,-47],[229,52],[417,125],[43,86],[121,68],[126,-18],[118,22],[129,81],[151,68],[46,90],[64,52],[48,-47],[127,-11],[95,74],[83,2]],[[53836,66129],[8,92],[-43,39],[34,149],[-19,156],[-47,138],[14,16]],[[52694,65091],[-32,84],[-45,38],[-10,73],[-38,97],[-39,57],[-15,114],[44,91],[5,89],[50,168],[-35,124],[30,65],[55,47],[100,1],[75,24],[11,101],[45,8],[-60,109],[33,101]],[[43481,87453],[46,-82],[71,-67],[42,-76],[-29,-71],[-44,-40],[22,-247],[64,-80],[88,-71],[12,-40],[90,-95],[68,-20],[36,-99]],[[93754,62121],[25,-5]],[[129460,84337],[126,132],[118,-28],[100,-41],[63,24],[-8,94]],[[86866,39531],[-37,-189],[35,-53],[26,-148],[-46,-152],[60,-178],[43,-60]],[[48571,50041],[-30,36],[-63,158],[-38,169],[-40,32],[-109,10],[-118,63],[-31,-25],[-118,4],[-56,126],[-5,51],[-47,34],[-46,120],[34,37],[-37,76],[-45,30],[-32,178]],[[23865,100321],[104,35],[122,-73],[181,-39]],[[24272,100244],[66,16],[183,-95],[81,79],[73,-32]],[[24272,100244],[3,-5]],[[23735,99957],[-15,59],[138,98],[58,89],[-1,75],[-56,43]],[[115432,111463],[116,21],[-80,84],[151,27],[60,85],[131,56],[15,52],[341,166],[66,71],[-62,156],[-221,59],[-45,111],[40,84],[153,134],[192,34],[-24,70],[70,132],[158,117],[55,71],[206,103],[-14,91],[199,-41],[58,49],[-124,85],[33,44],[-88,91],[-111,234],[-109,37],[-304,-67],[-203,42],[-256,-43],[-228,7],[-56,-60],[-205,-30],[-76,-40],[-316,-39],[-53,34]],[[46740,109031],[-258,67],[-271,9],[-105,21]],[[84199,68073],[62,-11],[47,55],[8,69],[32,85],[11,250],[119,128],[95,36],[64,73],[36,89],[-59,131],[-17,78],[-49,99],[-38,143],[-81,69],[-51,72],[-39,16],[-8,85],[-72,107],[-43,35],[-102,161],[-35,122],[-35,24],[5,71],[-36,118],[6,73],[-19,68],[-6,130],[17,163],[32,80],[-29,118],[18,57],[-20,101],[-6,110]],[[82653,63761],[-77,-78],[-94,14],[-53,-14],[-177,73],[-173,12],[15,170],[-42,63],[-63,9],[-59,-99],[-140,-192],[-69,58]],[[54245,65194],[-32,107],[-27,18],[-72,176],[7,60],[-31,39],[3,72],[-20,120],[6,156],[-18,32],[-2,110],[23,98],[69,150],[43,55]],[[45800,100912],[-136,-45],[-165,21],[-109,-4],[-193,91],[-91,74],[-187,-59],[-208,13],[-273,196],[-158,-113],[-93,25],[-87,54],[-75,-17]],[[46414,99236],[-96,-5],[-161,-140],[-32,-64],[-117,-92],[-259,-118],[-169,32],[-52,-8],[-135,159],[-126,-32],[-43,17],[-154,-11],[-150,-51],[-106,16],[-45,69],[-103,51],[-208,-38],[-50,52],[-95,30],[-183,-65],[-131,-32],[-88,38],[-155,-5]],[[41960,84940],[186,-64],[180,-210],[53,-123],[47,-39]],[[36006,75360],[52,25],[47,-77],[75,18],[7,35],[114,99],[-7,56],[39,170]],[[49646,101650],[44,26]],[[17225,106263],[129,-37],[96,-3],[17,-168],[-170,-61],[-34,-51],[29,-148],[141,-45],[95,-227],[127,-99]],[[82129,94309],[38,-196],[86,-67]],[[116562,78645],[-22,6]],[[116486,78554],[35,-29]],[[116572,78541],[-35,-11]],[[116575,78310],[6,-56]],[[116595,78296],[62,-77]],[[124079,78569],[30,-50],[30,42],[109,-35],[36,45],[131,24],[11,-103]],[[75811,73303],[-108,78],[-32,79]],[[79517,69532],[-43,192],[12,71],[-22,64],[29,138],[37,53]],[[76137,74082],[44,44],[5,98],[27,40],[59,-15],[26,37],[131,34],[25,25],[79,12],[29,33],[78,-15],[18,40],[200,102],[68,-11],[125,39],[28,-49],[100,14],[71,-62],[41,34],[68,-7],[17,-87],[58,-182],[34,-38],[29,-109],[4,-82],[55,-91],[51,-138],[75,-114],[43,-21],[18,-75],[-9,-56],[107,-76],[-17,-166],[-20,-80],[15,-82],[74,-44],[23,-138],[69,-111],[27,-73],[73,-108],[59,-33],[20,-58],[24,-180],[81,-143],[29,-6],[122,-105],[51,-109],[70,-84],[8,-258],[36,-56],[17,-156],[78,-42],[69,-77],[40,-69],[137,-196],[16,-70],[91,-62],[60,-134],[84,-43],[31,-44],[73,-40],[93,-180],[76,-20],[44,-47],[64,-130],[-14,-186],[-14,-27]],[[76137,74082],[8,-103],[-34,-42],[-26,-84],[-53,2]],[[76032,73855],[4,61]],[[76032,73855],[-51,-47],[-12,-70],[-40,-31],[-5,-120],[-70,-111],[32,-81],[-29,-67],[-48,-4]],[[75671,73460],[-20,88],[56,86],[20,101],[62,-26],[66,79],[52,91],[115,14],[70,90],[1,57],[44,42]],[[75701,73270],[-101,-199],[-62,-25],[1,-74],[-32,-46],[5,-120],[-57,-124],[-50,-151]],[[73484,70324],[6,52],[62,-3],[55,88],[-24,146],[71,7],[81,81],[40,103],[63,82],[28,10],[68,145],[14,71],[57,58],[23,64],[35,212],[68,36],[46,-11],[40,99],[48,41],[89,145],[149,144],[47,70],[31,-10],[93,34],[80,-15],[112,105],[40,131],[80,-26],[82,105],[94,96],[89,17],[60,89],[110,38],[144,73],[27,-27],[60,133],[54,45],[26,139],[29,35],[-1,65],[70,69],[15,90],[-32,53],[-2,100]],[[79517,69532],[10,-102],[-33,-93],[21,-170],[52,-46],[24,-94],[78,42],[74,-60],[20,-68],[81,-17],[66,-43],[48,-74],[60,-54],[130,9],[30,-28],[50,12],[40,-38],[41,-174],[46,-54],[50,-98],[38,-105],[9,-88],[-31,-201],[-12,-284],[9,-63],[-30,-213],[1,-125],[37,-300],[-22,-228],[-26,-60],[-32,-213],[-32,-53],[1,-52],[-56,-14],[-58,-103],[-82,-60],[-47,55],[-180,-31]],[[72902,68992],[39,60],[37,185],[-40,76],[-7,114],[13,57],[-30,114],[-23,31],[-29,153],[20,41],[65,37],[12,53],[40,11],[42,71],[74,-12],[157,99],[63,-7],[53,21],[49,99],[13,102],[34,27]],[[80352,66521],[18,-25],[4,-122],[-54,-88],[-24,-143],[40,-7],[28,-64],[8,-88],[27,-17],[27,-95]],[[80325,66411],[-78,-125],[-29,-75],[1,-101]],[[80219,66110],[9,-38],[-21,-168],[3,-109]],[[80219,66110],[-64,-75],[-7,-163],[-22,-72],[7,-59]],[[91410,63823],[101,-79]],[[91541,63723],[34,-57],[87,-21],[29,-69]],[[91818,62961],[41,-46],[-39,-44],[-49,-144],[-28,-166],[-76,-232],[-159,-181],[-202,-102],[-99,-34]],[[91033,64190],[78,59],[50,-8],[54,48],[57,17],[42,-47],[70,-43],[42,13],[32,-151],[-4,-114],[-77,-63],[-25,-43],[58,-35]],[[91511,63744],[30,-21]],[[91691,63576],[30,-90],[-11,-69],[13,-119],[34,-108],[17,-136],[44,-93]],[[113990,78166],[45,-9],[39,-107],[4,-160],[42,-25],[11,-64],[-30,-60],[37,-36],[-31,-114],[81,-231],[44,-54],[7,-86],[47,-77],[85,-38],[112,101],[138,-9],[134,-133],[115,-3],[17,-47],[82,61]],[[139723,59947],[-51,69]],[[139723,59947],[53,37]],[[138616,59039],[-25,-9],[-82,39],[-28,51],[-22,118],[-40,45],[-77,33],[-27,86],[-34,19],[-53,98],[-12,69],[41,102],[-2,80],[65,43],[27,80],[75,40],[87,-59],[38,12],[48,-40],[96,-173],[38,1],[52,48],[62,-48],[116,89],[56,-66],[51,36],[14,57],[46,41],[84,-41],[55,-107],[75,55],[23,-24],[88,34],[118,84],[68,9],[15,55],[55,-8],[16,59]],[[85296,95330],[82,-37],[71,-69],[85,-12],[16,-238],[117,-40]],[[34322,91214],[55,-53],[169,-119],[104,-38],[224,-28],[199,63],[87,49],[292,320],[66,52],[79,24],[105,4],[88,44],[123,-10],[49,-20],[60,-85],[33,-178],[179,6]],[[42434,97983],[133,119],[66,96]],[[89083,63853],[-88,-13],[-56,100],[-19,-15],[-71,74],[-97,42],[-65,-73],[-121,12],[-51,-46],[-4,-44],[-47,-20],[-13,-81],[-42,-79],[-70,-25],[-23,28],[-64,-26],[-42,-107],[-108,-39],[-71,46],[-73,8],[-112,-19],[-16,-41],[-43,27],[-119,-45]],[[87685,49798],[54,41],[146,209],[70,74],[34,-10],[44,52]],[[91827,68539],[-26,5],[-44,123],[-35,-11],[-81,20],[-45,31],[9,82],[-120,96],[-3,81],[-24,41],[-56,-9],[-9,37],[-72,105],[-63,22],[-47,-23],[-80,19],[-24,34]],[[91733,68176],[93,225],[-19,45],[17,93]],[[123771,71880],[-53,92],[-63,-41],[-59,144],[-39,-52],[-59,27],[-53,-22],[-27,73],[-52,-60],[-106,82],[-95,-31]],[[127308,90681],[48,-123],[121,-64],[107,-117],[-10,-158],[47,-80],[80,2],[113,-59],[50,4],[66,-38]],[[85534,65225],[19,-247],[-12,-137],[-37,-44],[-58,-244],[-72,-158],[-27,-115],[-39,-113],[-1,-423],[-25,-90],[-21,-161],[-42,-122],[18,-192],[-4,-110],[23,-75],[-5,-79],[-37,-84],[-42,-174],[-17,-130],[14,-228]],[[134737,94037],[49,-24],[70,68],[-8,84],[19,134],[26,53],[91,43]],[[134984,94395],[33,79],[11,134],[62,38],[26,101],[-14,44],[93,81],[8,105],[-31,49],[60,101],[14,146],[45,164],[44,33],[-32,98],[60,105],[83,15],[85,109],[39,86],[-89,229],[50,67],[9,81],[150,98],[-3,63]],[[87791,100894],[-89,25],[-34,74],[-237,38],[-146,-28],[-177,5],[-65,-29],[-257,115],[-43,54],[-59,-17]],[[106383,99801],[43,150],[51,83],[60,48],[43,118],[69,44],[55,130],[234,84],[121,94],[112,152],[60,35],[8,73],[45,76],[15,110],[113,92],[36,67],[-64,101],[0,155],[-33,64],[87,110],[-13,77],[41,62],[83,30],[179,-3],[109,42],[46,71],[90,38],[-30,60],[55,90],[-74,103],[15,157],[61,118],[-26,59],[53,127],[-7,45],[159,101],[25,71]],[[47602,102826],[46,61]],[[75137,71860],[48,9],[32,41],[52,-3],[77,63],[90,25],[73,151],[59,61],[11,124],[27,40],[79,28],[5,58],[43,98],[-24,71],[2,141]],[[74717,71488],[88,86],[-14,78],[29,80],[67,18],[75,105],[82,-10],[40,32],[53,-22]],[[97078,48931],[-37,27],[-82,-67],[-44,55],[-76,-36],[-30,55],[-40,-29],[-65,2],[-52,48]],[[17408,106672],[-104,25],[-161,-3],[-70,-61],[78,-169],[53,-48],[21,-153]],[[86561,108662],[115,-60],[84,-85],[90,-27],[48,-63]],[[96627,85112],[14,-69],[63,-62],[22,-53],[12,-150],[-20,-102]],[[20632,104166],[-148,291],[-184,122],[-163,173]],[[20137,104752],[-76,90],[-243,222],[-220,244],[-60,38],[-18,137],[-102,49]],[[21014,103804],[-106,-15],[-152,48],[-67,103],[-57,226]],[[96591,85453],[57,-82],[16,-90],[39,-52],[80,3],[39,-106],[2,-133],[73,-98],[-17,-56],[20,-85],[83,-126],[41,-42],[-29,-68]],[[125682,64259],[13,91],[-14,127],[17,54],[-36,86],[-47,24]],[[91203,110444],[357,138],[195,54]],[[124426,78492],[32,-67],[116,13],[73,102],[61,49],[21,72],[-4,81],[125,22],[89,195]],[[89578,94199],[62,-38],[-2,-241],[-39,-90],[-65,-3]],[[121557,104510],[64,104],[-87,16],[-96,61],[-152,-2],[-134,-26],[-81,14],[-157,-76],[-143,29],[-116,-6],[-118,57],[-214,-32],[-115,28],[-128,-51],[-168,19],[-116,131],[-127,72],[-99,20],[-91,169],[-75,-4],[-186,118],[-45,62],[2,109],[-127,102],[38,119],[-65,50],[-140,-14],[-43,118],[-85,44],[-176,-11],[-223,97],[-50,-7],[-54,-100],[-162,-8],[-182,45],[-24,-62],[-177,31],[-105,-32],[-246,105],[-38,85],[-109,81],[-30,105],[-89,-29],[-34,-96],[-99,-37],[-65,-191],[51,-114],[-182,-60],[-231,67],[-144,-11],[-46,-53]],[[132301,88829],[-41,-52],[-45,4],[-98,88]],[[125998,111916],[139,-8],[207,55],[149,215],[105,317],[84,137],[-31,153],[-256,173],[6,81],[324,133],[-63,41]],[[96909,66120],[10,-53],[55,-24],[59,-284],[38,-78],[10,-79],[47,-81],[0,-102],[25,-95],[38,-79],[-8,-169],[-27,-63],[-21,-118],[-8,-112],[15,-97],[-19,-261],[-60,-147],[-54,-19],[-54,-96],[-83,-25],[-45,-132],[-38,-36],[-46,-87],[-68,-1],[-37,-72],[-49,3],[-65,-79],[-60,-34],[-36,-90],[-57,-93],[-22,-64],[-36,-24],[-59,4],[-53,-47],[-56,-167]],[[35508,102625],[189,-43]],[[34613,102104],[17,56],[107,74],[120,47],[110,10],[5,62],[74,72],[143,22],[23,127],[110,39]],[[34292,101778],[-38,71],[77,75],[114,75]],[[34445,101999],[1,1]],[[31137,101623],[15,25]],[[31152,101648],[0,1]],[[31464,101529],[-52,32]],[[34139,101490],[104,17],[35,103],[-33,141]],[[31807,101490],[71,-39]],[[33568,101458],[190,41]],[[31633,101445],[121,49]],[[32499,101255],[-1,1]],[[32498,101256],[29,55],[-96,89]],[[32523,101255],[1,1]],[[32524,101256],[163,-19]],[[31123,101242],[-1,0]],[[31122,101242],[17,232],[-17,126]],[[31122,101600],[1,0]],[[32803,101219],[2,-1]],[[32805,101218],[121,23]],[[35323,102613],[137,30],[48,-18]],[[35697,102582],[80,-86],[63,21],[67,-54],[72,23],[70,-42],[137,14],[39,107],[69,73],[171,99],[-52,27],[-10,100],[213,162],[79,82],[189,94]],[[34445,101999],[168,105]],[[34245,101751],[47,27]],[[31152,101648],[60,33],[40,-54],[64,2],[96,-68]],[[31137,101623],[-15,-23]],[[31464,101529],[43,-52],[126,-32]],[[33758,101499],[99,22],[58,-72],[140,-3],[84,44]],[[31754,101494],[53,-4]],[[33568,101458],[-45,-5]],[[33523,101453],[17,32]],[[31878,101451],[38,29],[90,-86],[95,5],[61,-38],[184,85],[84,-46]],[[32498,101256],[26,0]],[[32926,101241],[105,89],[189,42],[119,-2],[73,-57],[65,39],[46,101]],[[32687,101237],[118,-19]],[[95180,86635],[48,-41],[58,57],[97,-21],[159,39],[58,-4],[76,-134],[65,47],[8,-84],[29,-31],[13,-104],[35,10],[46,-132],[34,27],[36,-133],[73,-122],[58,-25],[44,17],[41,-48],[40,16],[55,-45],[69,-8],[221,-253],[7,-69],[50,-93],[-30,-134],[32,-98],[26,-134],[1,-109],[52,-127],[7,-192],[51,-42],[75,-94]],[[96814,84571],[178,-44],[16,-51]],[[97008,84476],[99,-16]],[[97008,84476],[-1,-1]],[[97105,84460],[56,-64],[125,-57],[68,-3],[27,-38],[64,-19],[112,-112],[102,54],[310,5]],[[88033,50164],[46,-75],[31,11],[63,103],[101,66],[42,-18],[42,32],[45,-9]],[[127930,90048],[19,-62],[66,-103],[60,-42],[146,-36]],[[136087,112209],[-1,90],[59,103],[177,57]],[[136087,112209],[-204,150],[-110,-5],[-203,43]],[[136088,112208],[-1,1]],[[135414,110547],[20,237],[-22,93],[99,149],[104,73],[116,146],[36,96],[139,49],[-127,118],[-140,30],[105,81],[-97,29],[-71,76],[-13,94],[107,-3],[184,61],[174,1],[136,80],[81,85],[-158,167]],[[105539,106533],[-62,88],[41,43],[-14,84],[123,104],[-38,146],[66,22],[16,111],[69,45],[40,77],[-63,115]],[[105717,107368],[17,57],[-66,88],[28,60],[-84,110],[7,157],[-110,70],[-108,221],[13,174],[51,88],[125,128],[100,25],[28,64],[104,102]],[[90770,84084],[-30,76],[-118,157],[-104,27],[-91,77]],[[106180,106034],[-128,6],[-94,30],[-62,76],[-93,33],[8,49],[-67,104]],[[109379,105263],[-44,-86],[-123,46],[-86,-66],[-124,-56],[-514,45],[-128,59],[-140,32],[-79,-36],[-158,48],[-471,-15],[-140,7],[-168,-35]],[[107048,105200],[-137,-47],[-113,56],[-118,207],[-84,61],[-9,75],[-69,41],[-62,102],[39,61],[-251,268]],[[120654,73599],[-19,-36],[6,-133],[-22,-123],[25,-69],[54,-13],[59,-178],[26,-42],[11,-128],[-2,-141],[-15,-63],[28,-61],[36,-216],[-33,-147],[43,-108]],[[120630,73272],[-30,-74],[0,-98],[20,-21],[15,-174],[22,-41],[-10,-141],[16,-33],[-19,-157],[42,-173],[26,-285]],[[53990,44974],[-135,37]],[[10386,103983],[-90,-23],[-49,-55],[-82,16],[-166,-70]],[[112686,84561],[-70,-34],[-112,139],[-22,104],[17,63],[81,101],[-48,44],[1,87],[-55,140],[-71,54],[-148,70],[-195,-1],[-82,-49],[-116,-26]],[[30949,101413],[150,-145]],[[30851,101523],[98,-110]],[[54846,40259],[-34,-66],[6,-123],[-24,-90],[-44,-46],[-119,-70],[-58,-175],[-83,-76],[-56,-26]],[[54846,40259],[78,51],[35,53],[64,32]],[[53859,39142],[69,-33],[148,60],[101,178],[66,34],[124,174],[65,31]],[[45742,57755],[12,101],[35,64],[135,159],[74,27],[29,77],[-20,162],[-24,87],[40,138],[60,119],[18,104],[-6,65],[33,135],[-9,97],[125,76],[96,113],[3,38],[63,33],[78,107],[128,86],[47,-18],[68,41],[232,44],[54,103],[4,40],[107,-10],[67,42],[51,-26],[2,-62],[32,-30],[58,26],[46,-34],[11,55]],[[78711,94409],[-72,11],[-28,-32],[-11,-110],[-49,9],[-72,-126],[-77,-12],[-19,-54],[-71,-81],[-8,-78]],[[78304,93932],[-68,14],[-43,-48],[-64,15],[-91,-48],[-64,32],[-126,-11],[-215,25],[-33,-36],[-75,25],[-57,-26],[-35,46],[-121,74]],[[48691,69493],[-66,54]],[[48495,68903],[18,88],[-14,49]],[[48524,69668],[-40,15],[-20,-42],[57,-66],[104,-28]],[[48691,69493],[31,-55],[8,-91],[-53,-63],[-44,-111],[-89,-17],[-37,-43],[-8,-73]],[[48495,68903],[-22,-24],[8,-185],[-31,-47],[-2,-117],[37,-90],[6,-70],[-23,-56],[28,-142]],[[47672,35052],[21,40],[130,77],[87,154]],[[48233,35526],[-107,-15],[-27,24],[-109,-101],[-80,-111]],[[47002,34387],[65,10],[61,51],[56,-30],[100,20],[56,82],[50,311],[124,105],[60,-2],[98,118]],[[46871,34073],[60,123],[-42,74],[69,97],[44,18]],[[132181,92958],[0,79],[-97,55]],[[132084,93092],[0,1]],[[132084,93092],[-55,53],[-68,230],[43,85],[-26,193],[-71,131],[-57,53],[-84,1],[-91,112],[-62,-28],[-172,-19],[-60,105],[-131,128],[-4,87],[-35,84]],[[132384,92302],[-63,74],[-21,110],[20,38],[-102,103],[-4,124],[51,21],[5,99],[-40,6],[-49,81]],[[81825,62117],[20,-19]],[[82760,62576],[-84,21],[-31,44],[-86,-16],[-31,20],[-123,-47],[-63,13],[-50,-41],[-37,34],[-143,-62],[-68,-87],[-25,-95],[-41,-31],[-37,-116],[-49,-45],[-59,38],[-120,-23],[-56,-147]],[[81825,62117],[-32,3],[-87,-40],[-49,-44]],[[81845,62098],[56,10],[48,118]],[[81657,62036],[-140,-92],[-147,51]],[[83530,60533],[-16,121],[-104,327],[-9,140],[-50,232],[14,81],[-17,120],[-65,47],[-18,94],[19,93],[-16,38],[-82,70],[-27,78],[-51,44],[-4,63],[-102,31],[-59,-38],[-26,119],[-33,77],[0,109],[-69,137],[-55,59]],[[19350,105092],[-2,55],[-72,212],[4,50]],[[19280,105410],[41,128],[97,-7]],[[19599,104820],[-229,90],[-60,131],[40,51]],[[37407,97915],[73,-47],[35,-71],[62,-29],[18,-63],[114,8],[76,-29],[33,-53]],[[36615,97661],[156,59]],[[36840,97659],[49,-48],[104,-5]],[[37028,97654],[42,66]],[[37904,97558],[1,0]],[[37905,97558],[41,-33]],[[38438,97493],[-28,36]],[[38363,97413],[69,49]],[[38353,97305],[-2,58]],[[37406,97915],[-215,-40],[-71,-61],[-50,-94]],[[36615,97661],[-16,-45]],[[36840,97659],[-69,61]],[[37028,97654],[-35,-48]],[[37905,97558],[-87,73]],[[38410,97529],[-189,53],[-22,45],[-253,-102]],[[38438,97493],[-6,-31]],[[38351,97363],[11,49]],[[38212,96838],[26,50],[126,80],[-21,60],[31,120],[-36,92],[15,65]],[[26476,98940],[69,-8]],[[26911,98632],[-90,108],[-63,39]],[[26744,97952],[-7,-202],[45,-129],[-28,-73]],[[26663,97339],[-22,-126],[9,-80],[93,-115]],[[26672,96546],[-59,-140],[17,-160]],[[26475,98940],[-30,-46],[6,-103],[-43,-85],[7,-65],[99,-199],[90,-110],[18,-108],[-15,-51],[44,-100],[48,-37],[44,-84]],[[26758,98779],[-213,153]],[[27622,97677],[-124,282],[-155,218],[-167,139],[-109,188],[-103,34],[-53,94]],[[26754,97548],[-8,-59],[-80,-94],[-3,-56]],[[26743,97018],[107,-10],[-25,-152],[38,-71],[-187,-187],[-5,-52]],[[26630,96246],[-47,-144],[-34,8],[3,-129],[-141,60],[-116,-4],[-50,132],[-33,10],[-88,-60],[-69,14],[-53,-40],[-61,57],[-55,-27],[16,-75],[-44,-94]],[[25858,95954],[-98,-42],[4,-45],[-46,-151],[22,-50],[61,-26],[35,-86],[-2,-90],[33,-129],[4,-150],[38,-48],[100,16],[60,49],[92,-153],[7,-164],[82,-38]],[[26307,94747],[-75,-91],[-215,-19],[-30,-35],[-117,-23],[-128,-71],[-103,-18],[-65,14],[-120,-62],[-100,-12],[-60,59],[-225,9],[-153,-89]],[[24916,94409],[-48,-19],[-206,67],[-29,219],[-45,91],[-87,54],[-40,-13]],[[25285,90252],[-78,-47]],[[25285,90252],[-1,43],[64,77],[84,43],[104,14],[58,-80],[35,41],[117,-15],[28,26]],[[25149,89666],[17,102],[-13,104],[-12,276],[66,57]],[[29867,88581],[-26,-28],[-81,2]],[[31529,88724],[-81,-100],[-27,-105],[-50,-71],[-94,-5],[-35,-85],[-103,-55],[-73,-78],[-96,-2],[-76,29],[-135,14],[-62,33],[-32,53],[-53,17],[-68,117],[-40,102],[-104,56],[-52,-5],[-106,-67],[-63,-15],[-99,98],[-76,-9],[-137,-63]],[[30942,92893],[0,-139]],[[30198,93055],[154,-86],[217,-183],[120,-51],[120,-97],[55,54],[59,2],[19,60]],[[30942,92893],[-15,119],[18,86],[-7,92],[87,108],[29,114]],[[30258,92767],[-70,93]],[[44802,101809],[-229,-51],[-48,13]],[[45295,101805],[-243,-22],[-250,26]],[[35293,107181],[-130,-29],[-35,-37]],[[35562,107092],[-118,155],[-152,-37]],[[34955,106961],[-11,126],[86,-15]],[[35293,107181],[-1,29]],[[35562,107092],[102,-42],[104,-79]],[[35030,107072],[98,43]],[[34773,106662],[76,92],[76,20],[30,187]],[[34980,104982],[-157,-2],[-94,-89],[0,-60],[-137,-197],[-40,-166],[-71,-49],[-36,-102],[-75,-58]],[[35718,104696],[-40,-27],[-104,79],[-14,43]],[[33921,104199],[103,-23]],[[34980,104982],[120,-123],[132,40],[110,5],[54,-94],[164,-19]],[[35718,104696],[149,78],[144,49],[275,-119],[39,30],[312,65],[58,-13]],[[33644,104414],[25,-76],[74,-77],[177,-61]],[[34024,104176],[228,2],[118,81]],[[33956,106028],[-1,59]],[[33804,105249],[-79,69],[24,118],[58,51],[-13,118],[78,141],[-6,111],[94,110],[-5,61]],[[26571,90872],[-10,76],[42,53]],[[28029,91384],[-50,-35],[-191,-176],[-84,-1],[-36,-66],[-84,-90],[-67,-6],[-41,-74],[-115,1],[-44,78],[-109,-31],[-30,10],[-154,214],[-69,-10],[-64,43],[-57,-11],[-43,-60],[-66,-28],[-37,-113],[-85,-28]],[[26571,90872],[4,-57],[-61,-175],[8,-54],[-80,-65]],[[30420,83859],[3,84]],[[30431,82978],[-61,-39],[-42,27],[-40,-60],[23,-114]],[[30201,82249],[33,-55],[0,-80],[-41,-67]],[[30489,84130],[-22,-16],[-50,-123],[6,-48]],[[30420,83859],[-3,-71],[26,-85],[-4,-71],[30,-29],[-27,-92],[4,-161],[28,-91],[-14,-57],[17,-173],[-46,-50]],[[30311,82791],[-5,-116],[48,-141],[-17,-115],[-46,-126],[-90,-44]],[[30193,82046],[-5,-102],[-56,-82],[-55,-3],[-83,50],[-40,-28],[-68,46]],[[33799,87538],[-24,-9],[-106,-158]],[[32640,87414],[19,-89]],[[32985,87290],[-77,-5]],[[32513,88020],[68,-262],[19,-30],[-39,-190],[79,-124]],[[33799,87538],[102,42],[124,124],[61,17],[135,-2],[129,-46],[57,-44],[139,43],[88,-38],[55,100],[87,-9],[54,-81],[33,27],[19,81],[44,11],[54,-110],[142,-225],[56,-7],[38,-49],[109,-82],[185,-38],[10,-57],[75,-97],[17,-89],[129,-34],[33,43],[94,-70],[62,32],[65,-5],[32,64],[76,-19],[83,122],[110,32],[116,74],[101,-15],[72,119]],[[32659,87325],[131,-71],[118,31]],[[32985,87290],[35,26],[167,1],[19,45],[91,38],[138,24],[115,-35],[34,-37],[85,19]],[[94221,89687],[20,44]],[[94241,89731],[-32,141]],[[94094,89637],[-53,-101],[57,-83],[90,-39],[52,14],[32,-53],[81,-11]],[[94314,89051],[-49,-172],[-96,-19],[-56,-79],[-81,-14]],[[95379,90639],[-64,-129],[-171,-48],[-85,-4],[-105,24],[-125,-32],[-16,-36],[47,-65],[-34,-127],[-113,3],[-161,80],[-54,-4],[-90,-57],[-66,3],[-176,-72],[-120,-79],[28,-57],[123,-106],[12,-61]],[[94221,89687],[-64,-44],[-63,-6]],[[94353,89364],[79,-136],[-14,-62],[-71,-53],[-33,-62]],[[94032,88767],[-56,-47],[-96,8],[-58,-116],[12,-133],[60,-84],[8,-84]],[[30783,81274],[-21,-149]],[[31033,81424],[-53,-24],[-87,-4],[-26,21],[-84,-143]],[[30762,81125],[-86,-159],[19,-98],[-98,-153],[-40,22],[-89,-8],[-39,-65],[-30,13]],[[34245,76617],[-13,30],[-78,-21]],[[34357,76603],[18,42]],[[34154,76626],[-68,43],[-29,109],[-38,15],[-1,69],[-65,117],[-73,-11],[-54,-146],[-63,-10],[-35,-83],[-93,1],[-19,114],[-20,25],[-107,-43],[-76,1],[-89,-74],[-62,-26]],[[34357,76603],[-62,-68],[-50,82]],[[34667,76042],[-12,104],[-91,94],[-10,59],[-41,53],[-10,91],[-40,55],[-17,74],[-71,73]],[[58203,49545],[-24,-17],[-51,44],[-60,1]],[[58574,48425],[-54,178],[-88,178],[-53,136],[-53,203],[19,55],[-68,121],[-2,99],[-72,150]],[[48004,30918],[-98,-46]],[[46789,31356],[189,-48],[127,4],[74,52],[141,1],[39,-118],[3,-80],[78,-153],[57,-166],[-17,-119],[89,-90],[61,30],[14,55],[88,84],[133,21],[41,43]],[[48004,30918],[102,-5],[198,186],[40,12],[56,96],[46,28],[110,203],[60,50],[68,187],[103,202],[38,132],[64,55],[26,62],[-15,84]],[[91260,43616],[43,-55],[32,15]],[[90612,43634],[86,-20],[50,46],[108,-40],[46,11],[74,-75],[67,18],[107,-3],[55,47],[55,-2]],[[89150,55065],[97,72]],[[89247,55137],[10,61],[51,37],[32,95],[24,20],[-45,114],[5,59],[-30,34],[-15,139],[-21,68],[9,51],[-17,102],[-39,32],[-74,170],[-69,78],[-54,232],[21,93],[-3,91],[24,41],[-9,72],[-29,43],[-44,-20],[-68,122],[11,35]],[[88926,54607],[39,45],[71,-12],[35,30],[28,238],[51,157]],[[85355,60776],[29,50],[5,122],[42,150],[-2,96],[-52,117],[22,141],[55,3]],[[86606,60723],[-23,-26],[-73,-7],[-37,24],[-147,24],[-115,60],[-104,75],[-107,9],[-74,34],[-68,57],[-39,158],[-39,67],[-51,141],[-75,54],[-45,1],[-42,69],[-113,-8]],[[95463,70686],[-12,49]],[[95431,70578],[8,25]],[[94326,68512],[55,49]],[[95439,70603],[24,83]],[[95431,70578],[-21,-32],[25,-72],[42,-13]],[[93923,68909],[23,27],[109,-95],[47,-113],[41,-3],[63,-52],[13,-172],[107,11]],[[94381,68561],[99,-59],[177,187],[37,59],[25,82],[50,-10],[35,43],[27,95],[-43,167],[29,34],[7,79],[44,62],[13,74],[-30,113],[52,115],[65,8],[43,66],[-23,95],[11,52],[-26,214],[-33,131],[8,145],[51,75],[78,28],[45,69],[38,98],[5,225],[26,30],[78,-79],[61,1],[58,-48],[63,23]],[[74105,100150],[-19,28]],[[74077,100030],[20,-148]],[[73886,99438],[107,182]],[[74049,100306],[-10,-100],[47,-28]],[[74105,100150],[-28,-120]],[[74097,99882],[11,-55],[-48,-72],[29,-45],[-96,-90]],[[73886,99438],[-26,-74],[-99,-26]],[[81237,94501],[-18,125],[114,185]],[[81144,95037],[132,27],[96,-100],[49,-105],[-88,-48]],[[119630,87094],[-28,-117],[-65,-31]],[[119426,86918],[-23,50],[-70,16]],[[118942,87123],[137,-17],[74,-38],[67,7],[113,-91]],[[119630,87094],[99,-5],[62,-131],[104,-54],[10,-116],[-32,-35],[60,-74],[21,-63],[84,-32],[10,71],[58,15],[80,-47],[-2,-237],[27,-110],[59,-90],[55,-22],[20,53],[51,-38],[99,18],[163,-157],[72,120],[107,75],[29,39],[65,10],[56,-115],[44,-21],[1,99],[41,-7],[75,-105],[143,-29],[51,10],[43,-54],[22,-82],[52,-78],[67,-30],[44,60],[51,-7],[41,39],[0,52],[-54,48],[-5,81],[-64,135],[-121,56],[-130,134],[-163,76],[-40,138],[-91,37],[-25,109],[-75,-26],[-34,14],[-53,79],[-68,20],[-36,135],[-3,102],[-24,159],[-26,45],[71,212],[50,17],[77,65],[59,78],[38,91],[114,5],[48,-36],[123,-15],[95,82],[66,-35],[71,-99],[27,-100],[146,28],[137,-40],[44,21],[120,-57],[81,59],[-39,65],[20,76],[84,85],[37,-38],[144,-48],[59,5],[2,77],[75,106],[130,87],[95,112],[2,53],[-82,122],[-83,20],[-13,179],[81,35],[36,81],[226,105],[192,16],[147,70],[45,199],[63,68],[35,70],[25,105],[102,135],[25,69],[-23,40],[23,88],[115,193],[18,82],[-32,65],[-24,186],[14,145],[-33,254],[139,189]],[[123622,90730],[42,29],[6,71]],[[123670,90830],[31,32],[24,96],[54,16],[51,55],[85,33],[20,50],[142,-8],[66,-23],[85,2],[66,-108],[103,-83],[89,4],[155,-56],[91,57],[24,-37],[106,18],[145,-34],[273,-152],[78,8],[104,-77],[40,-76],[17,-91],[-30,-97],[22,-65],[2,-113],[-34,-54],[-100,-41],[49,-52],[-46,-169],[-53,-45],[-6,-130],[-47,-136],[12,-53],[-98,-159],[-69,-80],[1,-172],[103,-146],[15,-128],[-68,-115],[15,-79],[-88,-161],[-31,-21],[4,-167],[37,-131],[-16,-314],[28,-178],[21,-26],[25,-176],[-84,-211],[-38,-67],[-42,-276],[14,-114]],[[119426,86918],[51,-12],[60,40]],[[89451,97111],[-33,-46],[-61,6]],[[88939,97213],[235,-147],[116,-24],[67,29]],[[89451,97111],[20,42],[98,-6],[159,-37],[66,-96],[-21,-105],[-62,-57],[16,-41],[136,-16],[-11,-87],[144,-43],[54,-64],[58,-23],[76,-143],[114,-14],[43,-80],[87,-61],[53,-96],[224,-3],[85,-88],[90,-12],[78,-195],[-5,-83],[98,-57],[54,-79],[99,-70],[-6,-29]],[[110343,84865],[-35,38],[-79,16]],[[110772,85124],[-31,-233],[39,-130],[-63,-26],[-138,123],[-66,19],[-65,-66],[-53,-19],[-52,73]],[[110229,84919],[-149,80],[-23,-97],[12,-57],[-15,-102],[-130,-177],[-25,-77],[-71,-119]],[[110211,73172],[74,46],[39,48],[70,30]],[[110394,73296],[1,1]],[[110098,72211],[-32,-25],[9,-75],[-20,-51]],[[110394,73296],[9,37],[72,25],[90,95],[29,-1],[27,109],[98,188],[66,38],[154,-34],[25,-19],[90,-4],[16,17],[86,-60],[64,95]],[[110098,72211],[28,44],[-4,240],[-29,152],[9,76],[67,70],[4,71],[-59,129],[4,69],[93,110]],[[109963,71874],[66,34],[0,63],[26,89]],[[112472,68233],[-33,-94],[-32,-44]],[[112262,67752],[65,-53]],[[112472,68233],[38,76],[21,85],[59,16]],[[112327,67699],[62,-28],[27,27],[-15,235],[6,162]],[[112262,67561],[-35,37],[35,154]],[[121791,75694],[-45,-85],[-47,-30]],[[121974,76369],[-59,-61],[-41,-120],[-90,-6],[-8,-71],[32,-44],[-2,-57],[28,-66],[-39,-82],[-12,-79],[8,-90]],[[121699,75579],[-23,-27],[18,-142],[-7,-46],[56,-64],[45,-12],[54,43],[81,-38]],[[141749,39926],[50,-98],[4,-80]],[[141749,39926],[-50,33],[-73,111],[-75,42],[-49,118],[-62,24],[-62,-26],[-6,161],[-100,90],[-92,138],[-39,131],[-5,66],[-50,179],[-40,73],[17,248],[35,119],[-31,59],[-3,153],[-50,42]],[[142007,39243],[-49,57],[-12,98],[-72,50],[-6,167],[-50,32],[-15,103]],[[117277,87188],[-100,-3]],[[116696,87203],[90,0],[60,-25],[131,-16],[88,6],[73,-28],[39,45]],[[117277,87188],[140,-33],[335,127],[100,-43],[58,2],[55,-54],[90,-3],[117,-115],[100,-35],[61,7],[77,-74],[16,-69],[-18,-90]],[[82605,105784],[-6,-7]],[[82928,105097],[21,57]],[[82837,103307],[62,51],[153,177],[61,41],[104,14],[72,56],[-4,311],[43,37]],[[82650,105781],[-45,3]],[[82599,105777],[-62,-103],[154,-166],[258,-354]],[[82928,105097],[98,-133],[93,-75],[109,-172],[105,-126],[34,-149],[-57,-350],[18,-98]],[[84009,103430],[97,6]],[[84213,103395],[183,10]],[[84106,103436],[107,-40]],[[83975,103412],[34,18]],[[84396,103405],[197,-26]],[[30617,106387],[-78,-71],[-132,65],[-276,70],[-273,-5],[-254,-109],[-82,-54],[-115,-195],[-104,-109],[-184,-95],[-144,-22],[-108,-91],[-809,-377]],[[30810,106456],[-114,-16],[-79,-53]],[[93509,70918],[62,50],[38,-48],[18,-156]],[[93627,70764],[0,-2]],[[93537,70347],[-34,40],[-59,120],[23,116],[-8,44],[77,191],[-27,60]],[[131343,90830],[41,65],[122,66]],[[132692,91849],[29,-143],[62,-89],[-50,-125],[-52,-11],[-52,57],[-41,-27],[-91,-1],[-71,48],[-88,4],[-96,114],[-6,44],[-62,37],[-43,-62],[-73,-21],[-51,-161],[-103,-203],[-49,-35],[-60,-135],[-106,-9],[-183,-170]],[[131343,90830],[-27,21],[-79,-121],[-30,-11],[-117,-137]],[[56441,49903],[86,76],[41,104]],[[56568,50083],[0,1]],[[56522,51634],[-15,-53],[16,-85],[39,-69],[30,1],[75,-60],[18,-50],[130,-38],[33,-116],[-6,-105],[49,-93],[6,-78],[-56,-191],[-83,-98],[-103,-210],[-41,-127],[20,-61],[-20,-98],[-46,-20]],[[90366,59039],[-65,-15],[-24,-43],[-26,-111]],[[90251,58870],[4,-144],[-8,-108],[-25,-47],[-89,-39],[-37,15]],[[90096,58547],[-186,40],[-37,-6],[-107,-55],[-112,52],[-73,132],[-75,-54],[-28,-75],[-38,0],[-135,-92],[-59,-14],[-113,177],[-15,72]],[[34143,93846],[-165,-22],[-49,-35]],[[33162,93025],[78,49],[73,150],[79,69],[36,69],[-1,78],[36,162],[77,5],[47,46],[137,50],[59,-6],[102,82],[44,10]],[[32275,92910],[67,61],[94,25],[72,-47],[26,-62],[73,-25],[43,56],[115,-24],[48,-66],[65,-33],[103,52],[163,126],[21,62]],[[42851,86044],[60,-81],[56,-1],[35,-42]],[[42546,86369],[71,-35]],[[42614,86340],[3,-6]],[[42617,86334],[33,-107],[81,-52],[58,-7],[62,-123]],[[28372,96142],[17,-160],[-9,-95]],[[28135,97053],[48,-18],[34,-111],[-8,-74],[76,-179],[78,-129],[38,-169],[-63,-35],[-18,-122],[52,-74]],[[28380,95886],[-91,-42],[-17,-93],[34,-23],[-42,-108],[-69,35],[-103,-22]],[[42350,83206],[6,-81],[43,-123]],[[42350,83206],[30,73],[-11,59],[36,52],[-21,119],[-35,59],[-6,187],[31,63],[97,8]],[[42399,83002],[27,-64],[54,-40],[20,-160],[112,-33],[26,-105],[53,-95],[0,-96],[31,-38],[-24,-58],[47,-42],[-44,-77],[-85,78],[-13,51]],[[36863,75290],[-29,-126]],[[36863,75304],[0,-14]],[[36640,74627],[13,83],[-32,28],[106,120],[19,144],[-20,50],[24,51],[84,61]],[[55445,48283],[1,0]],[[55446,48283],[64,-6],[43,-59],[164,-122],[55,-67],[87,-28]],[[56416,47518],[-25,-4],[-51,74],[-34,-3],[-31,64],[-52,46],[-59,86],[-137,102],[-67,25],[-55,59]],[[56620,46987],[72,-59],[7,-45],[78,-29],[14,-39]],[[55446,48283],[-43,-10],[-98,33]],[[55905,47967],[-46,34]],[[56620,46987],[-33,12],[-64,183],[-9,86],[-35,2],[-3,111],[-60,137]],[[57729,46214],[-5,35],[-116,33],[-53,42],[-86,-31],[-91,-12],[-80,89],[-63,0],[-53,68],[-33,79],[-43,20],[-58,-37],[-45,87],[-57,28],[2,46],[-75,37],[-82,117]],[[95749,62761],[12,-51],[78,-32],[19,-46]],[[94359,65123],[56,-133],[59,-49],[29,-59],[60,-442],[1,-216],[39,-60],[49,-132],[44,-176],[45,-91],[50,-34],[58,-81],[86,-13],[67,-33],[90,-118],[66,-109],[91,17],[106,-2],[34,-30],[33,-130],[32,-52],[47,-10],[69,19],[38,-13],[28,-138],[43,-37],[59,-168],[11,-72]],[[94078,103061],[-59,42],[47,144]],[[94066,103247],[128,-121]],[[95330,102694],[-63,10],[-121,187],[-106,21],[-120,-48],[-113,-107],[-52,-12]],[[93788,102553],[94,10],[113,125],[25,61]],[[93525,102179],[-1,-1]],[[93524,102178],[-100,35],[-136,-121],[-97,54]],[[96230,102124],[-50,54],[-48,171],[-54,123],[43,108]],[[96121,102580],[-22,36],[-119,1],[-34,37],[-84,-14]],[[96990,101753],[103,-36],[33,51],[82,-10],[77,45],[38,-50],[88,77],[180,76],[41,-14],[91,-122],[243,-7]],[[98654,101294],[130,-230]],[[98784,101064],[-203,-127],[10,-72],[-20,-152],[-50,-54],[-112,-61],[-13,-188],[169,-150],[59,-97],[-2,-174],[36,-80],[83,-21],[277,-5]],[[98483,99662],[-52,-7],[-19,-93],[41,-53],[-23,-62],[-125,-144],[-15,-75],[-105,-246],[-87,-61]],[[97191,97631],[91,104],[-7,67],[-76,108],[-1,75],[120,51],[42,59],[-28,116],[-67,68],[1,100],[56,74],[7,58],[73,43],[77,144],[65,21],[127,-30]],[[94020,102749],[83,175],[-24,135]],[[94755,102745],[-88,95],[-19,74],[-253,157],[-140,20],[-61,35]],[[95331,102694],[125,-43],[80,0],[89,52],[76,-41],[52,20],[109,-42]],[[91564,102525],[45,-213],[197,-7],[148,-62],[82,-53],[146,-177],[-90,-54],[113,-89],[226,-84],[71,30],[64,89],[16,155],[96,5],[81,100],[87,25],[39,57],[119,17],[70,-50],[78,-11],[39,-57]],[[93524,102178],[140,102],[15,119],[49,40],[60,114]],[[96230,102124],[133,-168],[103,-67]],[[96466,101889],[91,-44],[13,-66],[74,-8],[85,-68],[220,22],[41,28]],[[97966,101763],[158,-7],[33,-22],[51,-124],[145,-75],[268,-46],[33,-195]],[[99018,99883],[61,11],[44,-68],[9,-82],[-92,-58],[-88,29],[-139,-54],[-37,53],[-140,13],[-153,-65]],[[98098,98921],[-118,-1],[-181,-107],[-128,-124]],[[97191,97631],[-92,-82],[-38,-101],[-2,-122],[-88,-135],[-82,-230],[3,-73],[-108,-162],[-37,-107],[-74,-128],[36,-42],[196,-68],[88,22],[71,-37],[32,51],[119,-71],[103,-37],[90,-121],[-10,-149],[87,-50],[8,-57],[69,-16],[135,-214],[63,-18],[42,-62],[-2,-86],[50,-21],[101,-113],[70,-34],[-11,-69],[76,-20],[43,-76]],[[98129,95203],[154,-45],[29,-172],[83,-62],[73,-172]],[[98129,95203],[75,-160],[3,-84],[-53,-118],[-110,-176],[-4,-89],[-34,-47]],[[75511,102453],[0,1]],[[75511,102454],[143,171]],[[75654,102625],[50,70]],[[75442,102358],[-58,-57]],[[75511,102454],[-69,-96]],[[130859,94500],[88,-10]],[[129279,95385],[34,-50],[8,-88],[108,-45],[91,-8],[241,-58]],[[129761,95132],[67,-108],[103,-47],[34,-54],[88,-23],[36,-50],[41,-137],[101,-127],[66,-207],[110,-121],[80,-10],[77,63],[5,46],[76,113],[75,38],[139,-8]],[[130947,94490],[21,5]],[[121370,101856],[-19,-120],[39,-39]],[[121390,101697],[-3,-254],[36,-46],[183,-52],[-29,-78],[15,-175],[-94,-105]],[[120819,98851],[-57,48],[-39,145],[-31,47],[-109,12],[-65,132],[-60,63],[6,73],[46,44],[144,57],[28,102],[67,51],[27,114],[138,39],[81,-25],[95,35],[121,118],[66,3],[164,121],[46,100],[37,133],[-40,185],[4,121],[-39,60],[-106,20],[-9,68],[146,9],[18,261]],[[58301,59976],[-24,56]],[[58277,60032],[-58,66],[-13,71],[11,149],[14,47]],[[57589,57961],[67,126],[32,184],[4,130],[23,92],[-2,156],[66,23],[60,-44],[52,38],[13,46],[194,184],[43,120],[30,153],[30,67],[50,26],[49,86],[-30,175],[6,98],[-36,84],[15,140],[34,12],[12,119]],[[29205,91535],[-28,6]],[[29176,91541],[-12,-19]],[[29785,91093],[4,98],[-39,54],[18,105],[-45,82],[-8,146],[-47,16],[-8,81],[59,150],[25,112],[-47,124],[-86,14],[-70,201],[-48,70],[-59,23],[-51,-70],[24,-70],[7,-114],[-84,-130],[-13,-198],[-71,-27],[0,-171],[-41,-54]],[[52636,50394],[0,1]],[[52636,50395],[-37,76]],[[52387,51219],[4,-51],[-54,-121],[6,-142],[37,-264],[61,-41],[99,-119],[59,-10]],[[52636,50395],[27,-81],[98,-90],[10,-55]],[[34931,80898],[-54,-62]],[[34951,81019],[-20,-121]],[[34339,80236],[94,-148],[57,21],[6,42],[109,99],[29,51],[31,111],[76,29],[25,105],[44,87],[-4,182],[71,21]],[[23871,109291],[-3,-43]],[[23871,109291],[-19,83],[100,77],[64,102],[-2,112],[-48,107],[-161,125],[-31,100],[-199,98],[-159,-17],[-147,93],[-48,177],[-255,86],[-129,-55],[-65,26],[-109,-35],[-138,-92],[-165,10],[-163,-40],[-110,11],[-33,86],[144,71],[49,143],[-28,176],[52,63],[-67,115],[84,69],[-67,92],[-123,85],[-98,26]],[[23868,109248],[-140,5],[-69,92],[-64,-44]],[[101830,104373],[0,-15]],[[101830,104358],[-30,28]],[[101776,103088],[11,60]],[[101787,103148],[11,69],[-48,41],[78,57],[-147,188],[64,70],[8,161],[-36,58],[30,125],[144,58],[44,39],[5,142],[-50,139],[-60,63]],[[101319,102959],[65,-92],[-8,-88],[63,-26],[4,-170],[-95,-25],[-114,24],[-31,-152],[-132,-50],[-73,17],[-144,-87],[-34,-119]],[[100583,101612],[-109,-61],[-82,8],[-77,44],[-111,23],[-55,-67],[-92,0],[-17,-117]],[[99920,101461],[-209,-97],[-18,-71],[-99,23],[-90,-36],[-104,17],[-58,-58],[-178,2],[-278,-85],[-102,-92]],[[100650,103190],[-61,131],[-53,29],[40,85],[-74,132],[-69,79],[12,166],[-92,77],[-59,134],[15,48],[-115,76],[-15,87],[82,16],[79,159],[195,71],[43,56],[111,46],[96,90],[112,19],[109,-85],[222,-9],[35,-29],[196,88],[62,121],[67,11],[102,-54],[24,-62],[-9,-110],[53,-18],[9,-129],[33,-29]],[[101776,103088],[-127,-24],[-97,24],[-71,-43],[-79,-120],[-83,34]],[[100820,102191],[-82,36],[-67,-20],[49,-270],[77,-44],[62,-88],[-57,-110],[-118,-5],[-101,-78]],[[100040,101442],[-120,19]],[[94132,87633],[0,1]],[[94132,87634],[-43,-3],[-123,79],[-39,57],[-8,65],[53,81],[-2,54]],[[93902,88311],[31,-109],[48,-22],[36,-83],[-39,-63],[-8,-67]],[[94132,87634],[78,-7],[31,54],[84,0],[116,-70],[149,-25],[82,-48],[6,-64],[38,-74],[62,-46],[47,-94],[101,-75],[18,-125],[48,-57],[35,-112],[86,-102],[38,-22],[6,-112],[23,-20]],[[90270,60585],[59,-48],[75,-10],[48,-114],[7,-85],[62,35],[67,107],[67,144],[-31,64],[15,76],[56,101],[46,19],[37,54],[26,102],[23,183],[-24,85],[0,255],[-42,82],[2,49],[-79,61],[-19,171],[55,0],[60,61],[56,-26],[60,-111],[59,2],[42,-44],[126,37],[13,112],[71,65]],[[46622,96485],[-50,-5],[-217,67]],[[46065,97973],[-85,-284],[-2,-115],[-36,-203],[-43,-78],[-19,-91],[48,-42],[-17,-114],[25,-122],[62,-13],[74,-166],[58,-43],[90,-20],[135,-135]],[[46623,96486],[100,-26],[134,-62],[58,-4]],[[77603,68756],[-38,-169],[1,-82],[48,3],[-4,-96]],[[77610,68412],[-1,-120],[-55,-105],[28,-57],[-2,-78],[-23,-115]],[[78156,70084],[44,78],[74,199],[7,88],[47,77],[17,98],[-80,-4],[-51,-27],[-14,45],[-58,4],[-71,-147],[-60,0],[-41,-138],[-82,-147],[-43,-49],[10,-67],[-87,-79],[-28,-94],[-2,-88],[-33,9],[-27,-63],[5,-195],[-20,-125],[14,-131],[-54,3],[2,-92],[-25,-112],[22,-182],[-19,-189]],[[89966,56756],[10,-57],[-13,-85],[-81,-253],[-36,-77],[-40,-150]],[[89966,56756],[-37,110],[25,83],[-40,36],[-30,167],[-56,-4],[-122,85],[-57,98],[-33,18],[11,103],[-40,117],[-70,70],[-48,86],[-14,62],[-78,36],[-78,60],[-111,35],[-56,48]],[[102122,103164],[-235,-27],[-100,11]],[[103367,101828],[121,122],[-8,74],[40,73],[-176,197],[-104,26],[-56,43],[-15,68],[-70,35],[-54,139],[-64,64],[-12,104],[-71,45],[-93,106],[27,59],[-71,93],[-104,35],[-70,93],[-82,37],[-164,19],[-85,-50],[-134,-46]],[[43070,85809],[-48,68]],[[43002,85920],[20,-43]],[[43070,85809],[37,-168],[-14,-104]],[[39534,88431],[65,8],[35,-109],[3,-83],[30,-103]],[[41858,88462],[-150,-91],[-182,-96],[-20,-46],[-57,62],[-73,45],[-15,-61],[-45,-42],[-116,63],[13,96],[-149,36],[-53,-35],[-68,2],[-68,-57],[-73,-3],[-43,-64],[-67,-57],[-1,-113],[-117,-151],[-13,-36],[-106,2],[-15,54],[-193,-30],[-70,-96],[-128,40],[-86,69],[-45,91],[-57,4],[-91,-39],[-72,59],[-31,76]],[[39534,88431],[-1,116],[-60,7],[-36,-34]],[[37226,84384],[-48,94],[10,27],[-74,152],[5,87],[-38,118],[-71,81]],[[36031,85720],[16,-119],[83,-59],[202,-89],[74,-80],[210,-61],[102,-73],[151,-41],[83,-139],[7,-85],[51,-31]],[[37226,84384],[-5,-131],[17,-45],[-15,-86],[-49,-153],[-28,-144],[16,-74],[-1,-144],[-34,-62]],[[118210,98684],[-42,276],[152,155],[26,71],[122,53],[136,8],[41,71],[114,44],[112,-58],[65,-143],[-19,-117],[160,17],[55,-74],[194,7],[72,-28],[107,23],[142,-38],[78,71],[151,61],[112,23],[14,78],[46,44]],[[31860,89985],[56,-91],[180,-138],[53,86],[14,86],[46,89],[72,219],[4,107],[75,126],[20,132],[-18,115],[109,97],[113,-75],[70,-9],[79,35],[93,-55],[60,15],[69,53],[124,162],[38,95],[139,77],[169,74],[32,-7],[103,84],[174,37],[347,22],[92,-18],[94,-84],[61,-12]],[[43102,90381],[-31,138],[59,61],[-39,83],[39,119],[-63,39]],[[43049,89502],[34,141],[43,95],[-35,86],[-51,62],[46,106],[-90,146],[69,77],[39,122],[-2,44]],[[91612,51816],[-1,-1]],[[91611,51815],[-50,19],[-236,-86],[-68,33],[-106,-35],[-58,29],[-69,-7],[-82,-53],[-154,57]],[[89162,50159],[55,81],[4,51],[181,283],[27,115],[59,137],[39,50],[106,71],[71,84],[207,122]],[[87975,54740],[36,95],[-33,110],[-61,-28],[-63,-1],[-125,-173],[-112,-73],[-64,-102],[-35,-7],[-126,-149],[-54,-28],[-29,-56],[-23,-131],[-46,-69],[-16,-69],[17,-72],[-9,-104],[70,-221],[-11,-78],[17,-65],[61,-50],[76,-107],[58,-249],[30,-28],[-18,-71],[17,-139],[-20,-48],[14,-186],[-67,-169],[1,-39],[-40,-143],[-21,-200],[27,-107],[56,-71],[9,-114],[-9,-61],[38,-116],[33,-166],[-4,-143],[17,-60],[43,-57],[32,-82],[57,-56],[150,-210],[28,-53],[49,-152],[5,-64],[34,-84],[72,2],[80,-37],[40,25],[118,-41],[129,-169]],[[88403,50274],[33,-33],[69,-9],[80,30],[73,-66],[6,-46],[49,-19],[97,78],[88,-36],[131,-88],[76,56],[57,18]],[[91611,51815],[62,17],[63,-22],[53,-128],[51,-36],[94,-141],[23,-75],[34,-18],[141,-275],[43,-52],[52,-8],[36,-41],[81,-22],[195,-170],[97,-360],[8,-52],[103,-121],[41,-103],[75,-101]],[[89911,51153],[42,100],[-7,72],[13,137],[26,86],[48,12],[62,93],[95,69],[43,7],[142,62],[159,-26],[114,15],[46,-17],[47,24],[47,-15]],[[92863,50107],[48,-12],[49,-69],[32,-79],[75,-73],[27,-106],[-13,-66],[6,-134]],[[92863,50107],[62,-33]],[[93061,49888],[48,-14],[57,-82],[66,-52]],[[39502,86827],[7,-57],[-27,-100],[-41,-60],[1,-98],[21,-69],[-73,-118],[23,-132],[6,-196],[86,-191],[5,-100],[41,-72],[-2,-107],[41,-23],[11,-137],[49,24],[22,-79],[-59,-60],[7,-185],[-38,-183],[-31,-82],[33,-29],[6,-102],[72,-78],[5,-98],[-23,-25],[4,-118]],[[35063,77967],[12,-68],[41,-75],[-151,-207],[42,-113],[-122,-98],[-156,-44],[4,-58],[-26,-91],[-33,-43],[-13,-69],[25,-70],[96,-74],[13,-176],[-62,-76],[15,-91],[-13,-116],[-28,-29],[-39,-143]],[[33169,78497],[-16,-112],[-40,-146],[-44,-55],[-11,-99],[-53,-33],[-87,35],[-61,-22],[-39,-110],[10,-92],[-40,-236],[-48,-154],[-42,-45]],[[31516,81134],[122,-110],[35,-89],[44,-167]],[[30780,83311],[-9,91],[-57,130],[-31,30],[-19,107],[-43,46],[-26,69],[18,84],[-15,106],[-79,153],[-30,3]],[[38287,73057],[151,0],[68,-31],[79,23],[25,-24],[85,9],[21,30],[111,5],[55,24],[162,116],[27,37],[156,78],[57,139],[76,33],[52,-5],[54,86],[62,36]],[[40387,91513],[-57,-117],[-142,31],[-133,-62],[-63,43],[-97,-76],[-128,-5],[-76,-50]],[[88629,95168],[-10,-209],[59,-114],[-31,-138],[13,-69],[-40,-114],[-90,77],[8,105],[-74,-1],[-61,-31],[-47,-82],[-316,-64],[-66,-100],[20,-98],[-13,-94],[45,-143],[-59,-157],[38,-236],[-12,-68],[74,-230],[47,-81],[39,-141],[42,-62]],[[81722,94972],[4,25],[143,180],[18,57],[73,19],[70,58],[83,120],[-28,78],[189,95],[147,-25],[133,49],[98,89],[54,24],[74,86],[-32,116],[15,132],[44,109],[89,67],[149,25],[49,-44],[43,36],[104,30],[57,49],[35,142]],[[84779,97613],[33,-83],[-18,-77],[57,-167],[108,-76],[23,-170],[85,-112],[-5,-87],[-63,-94],[-63,-37],[-79,-106],[-78,-265],[46,-62],[10,-69]],[[92710,52564],[-7,-130],[15,-46]],[[92710,52564],[-10,72]],[[92718,52388],[16,-80],[-57,-244],[-38,-64],[-63,-37],[-45,-124],[-28,-25],[-18,-84],[19,-181],[19,-77],[42,-72],[7,-136],[64,-58],[38,-118],[44,-53],[-1,-177],[17,-19],[-6,-193],[15,-76],[-4,-233]],[[85918,97816],[-77,61],[-63,96],[-3,78],[61,1],[61,50],[-12,90],[-163,23],[-122,60],[23,60],[3,134],[30,67],[-86,96],[-13,58],[66,151],[-77,166],[-174,20],[-127,-28],[-52,13],[-63,-41],[-129,-35],[-157,19],[-6,68],[-44,38],[36,108],[2,102],[-161,95],[-128,10],[-192,-81],[-42,22],[-125,-20],[-26,88],[-69,-7],[-67,-79],[-38,25],[-166,-42]],[[82494,97377],[40,44],[-86,108],[-132,86],[-70,-59],[-41,-127],[-162,72],[-91,14],[-43,-39],[14,-136],[-56,-95],[-89,102],[-51,120],[-45,37],[-41,-55],[19,-54],[-48,-61],[-127,-43],[-20,122],[-68,116],[-45,39],[-146,-24],[-66,-69],[-44,-3]],[[81303,98786],[-142,-60],[-53,77],[-74,48],[-62,-14],[-85,21],[-93,91],[-67,132],[-33,21],[-44,170],[-3,147],[29,155],[48,150],[-27,52]],[[76276,89117],[41,72],[-2,66],[-46,3],[-58,-88],[-77,-74],[-56,-24],[-91,30],[-43,-14],[-73,40],[-132,43],[-67,-50],[-48,25],[-139,-100],[-117,-55],[-82,-16],[-50,-53],[-143,-67],[-83,-5],[-60,-64],[-22,-148],[-39,-103],[9,-50],[-42,-107]],[[69104,107354],[-96,-82],[-80,8],[-137,-54],[-85,-2],[-91,-95]],[[81361,69641],[37,28],[18,87],[43,48],[46,138],[45,-20],[47,48],[5,42],[54,143],[19,200],[52,126],[79,101],[1,192],[19,66],[70,104],[14,93],[24,24],[91,273],[67,88],[53,116]],[[83814,60361],[-26,-76],[6,-45],[-26,-90],[-75,-10],[-47,-46],[71,-182],[-56,-25],[-45,-75],[7,-39],[-73,-81],[-43,-3],[-33,76],[-59,-5],[-76,26],[-206,30],[-38,160],[-59,207],[-41,30]],[[85505,53943],[86,-19],[147,-90],[92,23],[84,105],[6,79],[37,35],[70,-17],[72,-53],[63,-12],[82,-128],[58,11],[48,-62],[79,-1],[41,-23],[93,-12],[56,-43],[127,-198],[31,-14],[84,-123],[60,8],[79,-93],[28,-55],[133,-76],[76,-139],[-4,-40],[39,-63],[60,-22],[46,-69],[31,-11],[60,-129],[46,10]],[[91809,55876],[13,-93],[-38,-35],[-30,-194],[-63,-174],[-29,-195],[8,-108],[22,-116],[-13,-59],[-4,-171],[-61,-164],[-43,-26],[-79,-166],[-40,-126],[-21,-23],[-14,-123],[-51,-109],[-24,-204],[-28,-92],[-45,-41],[0,-67],[-69,-59],[-33,-59],[-16,-94],[-52,-67],[-68,-20],[-59,-85],[-38,-17],[-26,-92]],[[90908,53097],[-48,-56],[-31,-71]],[[90829,52966],[-41,-82],[-37,-26],[-40,-71],[-64,-155],[-14,-89],[-58,-216],[-35,-39],[2,-143],[27,-120],[35,-66],[-1,-130],[20,-47]],[[137870,98705],[-110,-129]],[[136559,97793],[11,-163],[-97,-82],[-48,-155],[23,-84]],[[138126,99643],[-49,-19],[-142,96],[-150,-6],[-90,-181]],[[137695,99533],[127,-81],[47,-62],[7,-84],[76,-31],[56,-97],[7,-76],[-38,-127],[-81,-87],[29,-116],[-55,-67]],[[137760,98576],[-162,-50],[-24,-60],[-82,-44],[-130,16],[-19,-74],[-189,-121],[-134,-156],[-96,-80],[-98,-51],[-196,-34],[-81,-101],[10,-28]],[[136448,97309],[11,-128],[-31,-42],[-142,-67],[-40,-114],[-31,-29],[14,-86],[-66,-87],[-61,-17],[-41,-73],[-68,-57],[-89,16],[-119,-22],[-97,-77],[-21,-60],[22,-62],[-121,-60],[-73,30],[-169,-39],[-96,-52],[-113,-28],[-69,-92],[-42,-16],[-120,24],[-40,-12],[-187,-165],[-57,-113],[-83,20],[-74,-33],[-115,-13],[-91,17],[-45,-18],[-69,51],[-170,-42],[-35,25],[-15,116],[-97,115],[-8,46],[67,116],[-44,151],[-79,95],[61,164],[-124,17],[-59,-22],[-145,122],[-68,101],[-19,63],[-60,3],[-30,92],[-60,-43],[-135,19],[-109,136],[-56,26],[-247,-47],[-44,39],[-69,-3],[-47,38],[-33,83],[-59,38],[-9,142],[45,127]],[[92409,56110],[23,91],[-47,76],[-1,79],[-48,167],[-10,84],[-70,19],[-21,127],[35,45],[60,18],[46,64],[18,99],[-8,113],[44,73],[85,48],[83,125],[52,103],[58,32],[72,111],[187,144],[55,-29],[55,3],[57,-32],[41,-108],[48,4],[29,-125],[112,-54],[17,-52],[67,-1],[36,-31],[43,-106],[80,12],[34,-31],[40,30],[59,-29],[42,13],[28,-35]],[[94436,71001],[-96,-45],[-78,7],[-44,86],[-57,-1],[-66,56],[-18,86],[11,44],[-18,116],[20,185],[87,59],[-36,88],[46,127],[18,109],[-29,175],[-37,83],[-38,21],[-69,78],[-43,-53],[-94,26],[-51,80],[-32,-4]],[[87503,99065],[-106,63],[-146,16],[-31,98],[-80,85],[-80,34],[-128,-4],[-85,-66],[-33,11],[-89,-57],[-254,-46],[-39,-33]],[[88270,97396],[-132,38],[-127,119],[26,48],[-76,114],[32,154],[-38,18],[-105,130],[67,65],[-94,96],[-16,90],[-104,141],[28,46],[-68,141],[9,102],[50,167],[-17,63],[-202,143]],[[98621,86300],[-41,92],[-18,108],[-97,84],[-168,-27],[-22,-24],[-99,61],[-104,8],[-25,51],[-93,-55],[-41,-124],[32,-57],[39,-158],[-45,-95],[-147,-29],[-35,-80],[-65,-24],[180,-216],[95,-64],[61,-83],[82,-41],[100,-105],[23,-66],[-74,-114],[25,-37],[65,-9],[15,-124],[30,-98],[-4,-89],[16,-103],[57,-59],[90,-127],[-58,-55],[-27,-61],[-98,57],[-47,-38],[-92,15],[-50,-48],[-45,-86],[-44,-213],[-24,-36]],[[121456,72604],[69,158],[1,110],[39,229],[37,65],[21,87],[52,25],[53,83],[41,21],[96,-10],[46,58],[47,-68],[54,-38],[32,29],[82,-48],[52,35],[93,94],[67,-43],[177,-188],[93,6],[194,113],[60,-49],[53,48],[49,9]],[[121199,74064],[44,-43],[-2,-61],[83,-96],[7,-138],[93,-158],[41,14],[26,-43],[40,87],[69,50],[20,111],[52,81],[32,0],[69,107],[24,73],[64,20],[73,-124],[133,29],[12,-24],[125,5],[70,-105],[5,-74],[85,-95],[15,-80],[70,-175],[32,-5],[20,-86],[62,0],[62,-95]],[[121318,66635],[-27,86],[-89,-33],[-29,-174],[1,-60],[-79,-113],[-71,-145],[-19,-248],[-20,-72],[13,-69],[-23,-124],[21,-111],[38,-74],[-29,-88],[-36,52]],[[127483,91565],[-8,55],[-96,84],[30,95],[29,196],[23,86],[87,67],[85,9],[61,-34],[67,-76],[25,-126],[-37,-79]],[[120857,79895],[71,-91],[28,-110],[73,-170],[63,-207],[4,-224],[37,-35],[13,-105],[-16,-91],[42,-22],[-5,-76],[72,-34],[-13,-62],[23,-64],[53,-27],[52,37],[46,-72],[33,7],[53,-99],[82,-40],[20,-38],[86,4],[59,-91],[57,-53],[29,-108],[46,-48],[38,8],[43,-43],[55,-3],[57,38],[62,-169],[42,-154],[47,-14],[28,-65],[81,-43],[44,-46],[27,-76],[84,-75],[72,-101],[77,0],[68,-25],[107,-191],[97,49],[-22,145],[-2,107],[23,57]],[[124430,96695],[74,83],[49,0],[108,81],[28,67],[89,15],[52,-32],[35,-88],[89,-110],[47,-102],[146,-58],[62,-49],[102,-24],[104,84],[143,49],[54,50],[92,171],[109,162],[96,102],[105,63],[11,82],[40,34],[33,110],[125,214],[88,90],[15,78],[217,14],[41,38],[268,-1],[56,35],[88,-10],[253,58],[51,-22],[50,112],[-37,164],[23,59],[97,91],[83,139],[-12,67],[-92,57],[0,110]],[[92332,70867],[16,-133],[114,-141],[41,-64]],[[92332,70867],[-8,119],[-24,140],[18,49],[-2,109],[-84,93],[-3,181],[-33,43],[-53,163],[15,36],[-25,99],[-55,46],[-27,-7],[-29,68],[-15,111],[-12,191],[36,213],[-26,92],[-31,42],[-105,273],[-39,121],[0,80],[-21,72],[-70,105],[-48,14],[-78,81],[-5,38],[-61,105],[-30,4]],[[92750,69730],[-33,243],[-57,56],[-3,40],[28,179],[-15,108],[12,42],[-55,87],[-109,18],[-15,26]],[[137420,88360],[-43,-116],[33,-108],[-10,-70],[22,-86],[69,-83],[103,-44],[59,1],[69,-49],[70,-119],[84,-58],[94,0],[89,23],[131,-108]],[[90245,90541],[-37,93],[28,43],[113,27],[32,57],[61,26],[46,75],[90,40],[71,196],[53,38],[21,167]],[[86520,110655],[248,-167],[197,-83],[66,-63],[230,-36],[192,-89],[43,-117],[219,-137],[-70,-35],[24,-206],[-53,-70],[144,-46],[-13,-91],[-70,-81]],[[122356,106156],[-82,0],[-53,-66],[-163,19],[-73,43],[-82,-16],[-177,89],[-115,-24],[-50,-89],[-231,-14],[-82,86],[-139,29],[-22,118],[-103,-22],[-21,-59],[-241,39],[-162,239],[-59,150],[-82,69],[-220,91],[-70,51],[-89,-26],[-110,45],[3,47],[-180,103]],[[141753,110116],[118,58],[139,-16],[199,31],[203,-78],[142,-107],[233,-18],[103,83],[298,62],[106,76],[8,67],[73,80],[158,-3],[91,-60],[155,83],[13,98],[73,114],[104,60],[-34,112],[207,171],[97,10],[94,98],[-54,24],[-86,126],[151,141],[-136,105],[-38,143],[-146,152],[-140,68],[-39,81],[-156,47],[17,78]],[[134699,52588],[-44,-85],[74,-72],[119,-153],[61,-27],[55,5],[43,86],[25,-14],[105,12],[95,-19],[43,107],[79,60],[51,-42],[75,-32],[34,-37],[37,33],[141,-60],[92,86],[42,-24]],[[140211,49303],[60,61],[37,-58],[52,-222],[1,-138],[53,-72],[103,-66],[27,-47],[47,-4],[18,-95],[77,-67],[91,-39],[-2,-73],[42,-50],[37,-129],[50,-15],[58,82],[26,90],[-12,35],[-10,204],[-27,100],[11,115],[73,92],[69,-45]],[[97482,91141],[1,-1]],[[97483,91140],[98,25],[95,-17],[100,-91]],[[96168,91193],[37,-104],[40,-20]],[[95968,91155],[-16,-15],[-154,59],[42,83],[73,14],[51,56],[117,-20],[42,87],[61,54],[-42,145],[-74,19],[29,70],[113,97],[97,104],[61,33],[121,-16],[292,-134],[40,-93],[51,-39],[78,-214],[74,-56],[92,-18],[41,-54],[145,-119],[121,-22],[60,-36]],[[97776,91057],[24,-73],[49,-25],[84,-195],[68,-130],[103,-13],[21,-34],[110,-6],[75,-45],[105,3],[53,23],[91,-46],[44,-101],[12,-126],[24,-60],[-10,-96],[104,-23],[53,-48]],[[118756,101480],[68,90],[-27,233],[-136,29],[-177,-18],[-141,-66],[-121,18],[-48,-26],[-100,12],[-74,215],[-83,63]],[[118659,100503],[37,212],[-46,54],[-154,114],[17,74],[-17,114],[14,124],[49,80],[70,24],[-21,81],[128,61],[20,44]],[[125281,112015],[125,59],[372,105],[147,9],[-52,100],[-164,193],[12,93],[-58,44],[-209,56],[-232,86],[-60,146],[18,91],[-209,55],[-218,125],[-230,31],[-94,-36],[-98,103],[-123,-2],[-152,72],[-311,49],[-268,2],[-250,65]],[[128292,97138],[39,-105],[77,-50],[109,112],[73,-43],[29,-119],[133,1],[50,-22],[100,12],[115,65],[146,-11],[156,-65],[206,92],[106,64],[53,6],[223,153],[81,1],[71,33],[134,110]],[[59505,53416],[63,-45],[30,-105],[-4,-114],[33,-93],[26,-144],[113,-102],[90,36],[33,136],[74,55],[97,-46],[68,25],[121,-11],[33,-32],[0,-69],[46,-47],[49,-7],[65,-79],[79,-14],[21,-52],[88,-27],[49,6],[52,42]],[[53683,63658],[23,-71],[44,-73],[22,-85],[45,-55],[2,-69],[57,-108],[41,-30],[53,-117],[-4,-107],[49,-203],[-12,-89],[2,-121],[30,-150],[12,-158],[48,-188],[-28,-150],[10,-166],[22,-79],[-13,-49],[28,-76],[-27,-62],[10,-107],[22,-40],[10,-166]],[[33065,99099],[76,-43],[151,-212],[97,-50],[18,-52],[97,-63],[100,-4],[24,-106],[88,-146],[80,-71],[46,-114],[-4,-176],[18,-200],[29,-80]],[[33891,97782],[112,-220],[72,-57],[30,-138],[115,-38],[34,41],[97,35],[87,-31],[90,-5],[75,-100],[112,-74],[75,72],[140,-15],[91,53]],[[35187,97438],[52,-11],[62,62],[98,16],[149,-123],[141,4]],[[35689,97386],[11,5]],[[35053,97314],[73,3],[3,56],[58,65]],[[35021,97305],[32,9]],[[35021,97305],[0,4]],[[34549,95726],[-16,161],[155,-27],[25,36],[136,-32],[63,-76],[71,-36],[-33,-220],[27,-30],[40,-177],[44,-24],[24,-207],[128,-189],[-14,-48],[70,-61],[-40,-188],[-45,-108],[-8,-69],[40,-75],[-53,-133],[-61,-284],[65,-21],[32,-122],[-4,-55],[67,-136],[-31,-65],[30,-83],[24,-174],[35,-55],[-11,-77],[23,-70],[58,-64],[20,-125],[62,-43],[-11,-82],[32,-57],[98,-86],[35,-101]],[[41272,92067],[-44,-18],[-60,32],[-21,123],[-42,-4],[-39,62],[22,74],[-55,98],[-86,39],[-9,125],[-197,-38],[-95,85],[-37,-73],[-237,81]],[[28058,93251],[14,25],[-25,154],[19,61],[113,-9],[106,14],[69,156],[-3,57],[78,116],[-4,45],[55,282],[-11,83],[-33,46],[-106,1],[-57,-48],[-103,-18],[-52,64],[-202,125],[-137,-135],[-162,54],[-144,-43],[-42,38],[17,96],[-17,121],[7,82],[-122,87],[-59,-28],[-28,-78]],[[21187,105981],[-50,-131],[-82,-63],[24,-63],[-158,-74],[-86,17],[-290,134],[-209,82],[-106,59],[-248,90],[-219,129],[-313,206],[-343,8],[-135,74],[-176,-28],[-194,21],[-159,-13],[-60,-60]],[[11160,109520],[-25,-82],[-78,-49],[-167,-196],[-112,8],[-216,-47],[-214,16],[-79,40],[-162,30],[-129,-9],[-68,28],[-176,-21],[-65,62],[-422,153],[-236,-43],[-119,40],[-237,-128],[-332,-51],[-165,-3],[-351,-82]],[[42424,87949],[38,47],[52,149],[45,-25],[58,31],[58,136],[-8,34],[82,64],[85,172],[-35,85],[-72,29],[-30,92],[-5,159],[-74,131],[6,107],[-54,65]],[[36102,89652],[60,-112],[61,-74],[151,31],[14,36],[135,11],[60,-52],[109,-63],[52,-147],[110,-31],[80,-106]],[[50681,69431],[-49,-125],[53,-186],[48,-92],[66,-60],[-15,-60],[32,-79],[-54,-127]],[[50803,68968],[69,90],[-1,74],[61,218]],[[51207,68892],[-80,-72],[-133,-152]],[[50972,68654],[-56,11],[-64,-31],[-90,68]],[[50203,64316],[-34,3],[-99,-82],[-32,-75],[-91,0],[-50,52],[-68,20],[-33,33],[-63,-10],[-95,63],[-118,39],[-81,95],[15,96],[-36,116],[-38,32],[-51,127],[-41,35],[-104,-9],[-96,6],[3,-83],[-133,5],[-96,118],[-19,105],[-31,38],[-37,101],[-64,65],[-48,83],[10,84],[-22,46],[-146,-10],[-55,51],[-57,8],[-40,41]],[[48353,65509],[-24,60],[2,115],[-36,121],[31,384],[-22,163],[15,57],[70,72],[14,49],[-15,72],[21,114],[74,152],[-20,97],[66,66],[21,66],[45,43],[29,189],[23,38],[6,110],[-24,106],[41,63],[172,128],[67,167],[30,42],[67,1],[36,29],[83,-3],[83,122],[42,32],[76,-23],[72,6],[87,-29],[99,-117]],[[49584,68001],[23,0],[86,75],[42,0],[0,155],[73,9],[52,43],[40,-67],[77,-1],[52,95],[68,34],[82,-9],[33,47],[36,0],[68,70],[85,-3],[42,-25],[52,74],[35,7],[65,86],[39,0],[54,55],[44,9],[30,47]],[[36199,93421],[52,38],[60,-100],[125,-154],[86,42],[99,-250],[75,-143],[36,-184],[69,-60],[47,-86],[6,-63],[59,-24],[40,-67],[-16,-45],[63,-113],[46,-116],[7,-100],[62,-214],[54,-59],[40,-105],[85,-59],[62,-13],[83,-76],[26,4],[118,-102],[129,-150],[134,-120],[66,-35],[90,-79],[36,-91],[103,-119]],[[25801,93836],[-28,-22],[-90,18],[-38,88],[-14,132],[17,59],[-34,55],[11,142],[62,49],[-25,69],[-78,76]],[[26474,93482],[-32,128],[-243,-10],[-98,21],[-93,53],[-27,185],[-47,34],[-108,-26],[-26,-33]],[[22985,101179],[-48,153],[-83,65],[-121,-13],[-202,70]],[[26042,98114],[-60,-43],[-96,-130],[-248,29],[-125,54],[-66,-22],[-124,18],[-43,-58],[-8,-179],[-38,-105],[-76,-34]],[[38271,94847],[-84,-27],[-88,-149],[-39,13],[-68,-51],[-40,14],[-105,116],[-23,-2]],[[37615,94292],[-38,93],[-57,11],[1,98],[77,137],[226,130]],[[37824,94761],[31,68],[76,51],[89,-19],[109,67]],[[37548,93827],[26,117],[-19,106],[22,154],[38,88]],[[43968,62890],[-20,76],[-74,49],[-16,102],[-52,105],[-104,75],[-6,108],[-29,222],[-33,33],[-27,84],[-67,117],[-4,50]],[[47692,43705],[-68,-84],[2,-103],[-16,-73],[-50,-102],[-74,-15],[-37,-149],[-47,-32],[-113,205],[-31,117],[-6,91],[-65,90],[-89,-48],[-124,40]],[[49244,44401],[44,24],[108,-40],[39,-103],[-1,-83],[-29,-49],[46,-171],[-63,-239],[11,-59],[63,-105],[92,-93],[93,31],[34,37],[41,-22],[156,-232],[38,-193],[-5,-58],[55,-121],[107,-93],[7,-38],[89,-73],[49,-188],[3,-143],[59,-93],[23,-82],[91,-145],[20,-69],[60,-54],[1,-75],[46,-103],[54,-21],[-8,-137],[29,-66],[-15,-131]],[[122244,76519],[86,-138],[54,-10],[73,22],[1,-84],[115,-60],[-76,-158],[103,-56],[8,-34],[130,-94],[37,-48],[83,-25],[13,-74],[58,-88],[111,-74],[30,60]],[[133108,88454],[18,-43],[-86,-105],[-28,-96],[16,-80],[-125,13],[-77,-63],[-57,15],[59,-333],[-3,-123],[16,-48],[-27,-71],[-3,-118],[35,-101],[178,12],[71,-97],[-19,-88]],[[142931,42653],[-69,-34],[-62,-105],[-59,-150],[-46,38],[-12,125],[-91,58],[-13,71],[-109,70],[-139,-11]],[[153848,109959],[-128,105],[-154,25],[-232,83],[-173,93],[-232,6],[-127,43],[-130,77],[-115,-9],[-123,44],[-81,146],[-226,68],[-311,-12],[-353,-121],[-224,5],[-186,72]],[[40110,99161],[62,127],[-10,60],[61,48],[17,60],[11,177],[122,98],[46,185],[116,47],[34,73],[67,55],[92,-9],[71,48],[98,-30],[107,54],[119,-190],[86,19],[276,-71],[59,13],[192,-17],[159,-41],[62,-81],[77,-13],[65,-58]],[[38188,87481],[-15,45],[65,108],[-6,57],[107,210],[171,92],[84,98],[36,85],[-68,178],[-65,57],[-72,118],[-3,133],[-61,120],[-40,121]],[[41379,90945],[39,-40],[28,80],[143,-45],[101,-57],[36,-297],[45,-166],[20,-168],[-15,-71],[7,-112],[62,-111],[-86,-87],[24,-210],[-7,-37]],[[41897,84361],[91,-76],[34,-105],[-14,-89],[-110,-155],[30,-88],[-22,-56],[-58,1],[-68,57],[-71,-5],[-40,-119],[6,-83],[67,-36],[53,-63],[32,-79],[-24,-86],[-2,-108],[-58,-177],[-34,-26]],[[88922,40268],[-4,124],[59,11],[24,-42],[137,-11],[121,-87],[79,8],[61,-26],[82,-126],[55,-2],[26,-78],[170,-99],[8,-29]],[[49962,102239],[35,-55],[99,-22],[458,-62],[163,-14]],[[79233,95416],[-38,90],[-57,13],[-98,198],[57,57],[13,89],[-72,189],[-91,41],[0,103],[-51,117],[-96,47]],[[87969,60212],[-106,-114],[-41,-23],[-79,3],[-170,196],[-132,20],[-139,5],[-67,-20],[-51,-42],[-199,-76],[-113,57],[-80,-53],[-55,83],[-62,-11],[-109,19],[-68,-9],[-74,19],[-60,58],[-102,-68],[-40,-5],[-50,91],[-56,-48],[-27,23],[-38,-36],[-78,8],[-83,43],[-82,-5],[-81,101],[-57,-15],[-69,67],[-56,110],[-37,25],[-39,87],[-126,62]],[[87753,98511],[61,104],[135,88],[0,72],[94,44],[21,45],[-42,125],[-74,-24],[-91,15],[-45,-43],[-108,-9]],[[48960,50425],[36,-88],[75,-76],[57,-119],[38,10],[87,-111],[89,-168],[36,-28],[44,-84],[2,-49],[65,-35],[56,83],[54,31],[58,-28],[52,-93],[44,0],[48,36],[35,-142],[38,-80],[58,-50],[21,-112],[33,-6],[29,100],[53,-1]],[[50065,49415],[47,-41],[39,20],[18,90],[65,29],[27,54],[71,69],[108,265],[2,69],[35,164],[15,169],[-10,165],[27,172],[-16,66],[-90,47],[-77,253],[-35,2],[-136,111],[-89,43],[-52,113],[-11,68],[-115,69],[-4,45],[-103,96],[-105,67]],[[49676,51620],[-2,1]],[[115533,99175],[-62,99],[-10,81],[-55,64],[-199,-86],[-33,4],[-70,128],[15,30],[-87,79],[77,143],[-5,231],[-27,84],[10,64]],[[128768,91304],[80,16],[77,51],[115,-64],[78,-12],[69,128],[67,75],[69,10],[131,139],[40,-12],[82,88],[52,5],[51,-125],[128,-33],[17,-34],[-38,-170],[126,-182],[-30,-79]],[[150291,109135],[-43,-22],[-274,-40],[-133,42],[-196,-18],[-78,24],[-175,-23],[-190,-58],[-200,-11],[-127,61],[-270,13],[-182,87],[-382,47],[-75,30],[-190,17],[-98,43],[-102,-3],[-108,95],[-57,158],[38,124],[-53,95],[-192,91],[-217,191],[-232,176],[-20,62],[103,58]],[[87364,70347],[-41,-55],[-125,31],[-89,-60],[-34,-69],[-55,15],[-19,-65],[-60,-53],[-61,-22],[-7,-45],[19,-111],[-41,-124],[-73,-48],[-48,-134],[-44,10],[-77,-148],[-33,-21],[-9,-67],[-81,-156]],[[133579,50255],[72,16],[68,-109],[56,12],[31,79],[-1,90],[33,111],[127,205],[19,99],[64,178],[-20,109],[-58,102],[-2,54],[46,145],[-37,165],[5,194],[13,113],[-141,40],[-42,-64],[-91,-8],[-40,34],[-40,122],[-188,-5],[-17,113],[-37,38]],[[141635,45021],[-36,95],[-13,92],[-35,67],[30,227],[-32,58],[-28,141],[10,64],[-55,259],[13,229],[39,20],[45,103],[69,31],[31,71],[11,96],[90,41],[56,90],[44,5],[40,-142],[3,-170],[29,-17],[42,-103]],[[141134,33296],[-29,2],[-66,81],[-15,95],[-82,81],[-55,84],[10,65],[-33,85],[19,58],[-46,55],[-23,102]],[[127805,39534],[37,-78],[-11,-189],[-100,-76],[-83,-88],[5,-60],[-71,-47],[-76,19],[-63,87],[-92,-83],[-48,-77],[-139,1],[-39,-169]],[[42043,87209],[72,65],[60,-10],[63,-74],[107,-9],[86,-132],[13,-117],[-12,-80],[27,-79],[4,-141],[35,-114],[94,-111],[22,-67]],[[43335,89397],[-112,-215],[-6,-60]],[[43217,89122],[-36,-58],[7,-78],[-42,-53],[53,-133],[113,59],[45,-60],[56,-25],[49,-66],[105,93],[104,148],[44,8],[116,-46],[43,22],[28,-52],[100,-12],[86,-57],[87,-20],[9,-63],[69,-60]],[[47231,64096],[90,34],[37,-19],[71,42],[40,-11],[35,43],[49,-7],[108,81],[115,-30],[34,-28],[105,6],[44,97],[40,36],[97,-81],[33,45],[5,95],[139,197],[71,46],[54,-20],[22,-85],[39,-20],[69,-131],[55,-50],[-9,-82],[36,-196],[29,-76],[57,-273],[15,-148],[19,-78],[0,-155],[-37,-48],[-118,-12],[-6,-150],[-36,-140],[22,-264],[67,-129],[60,-55],[33,24],[57,-45],[105,-108],[74,-18],[44,54],[88,-3],[81,54],[48,-37],[78,16],[135,-88],[84,-7],[59,-39],[51,27],[62,0],[94,48],[160,49],[120,-11],[59,-33],[102,-130],[112,-68],[73,-68],[63,-132],[172,-149],[104,-61],[95,-90],[82,-10],[89,-68],[47,-121],[19,-157],[85,-106],[70,-159],[14,-105],[33,-75],[124,-183],[62,-152],[29,-39],[118,-23],[63,-54],[54,23]],[[43607,90936],[-19,48],[22,148],[72,29],[106,103],[99,8],[86,127],[51,46],[75,-20],[26,-84],[53,-19],[214,70],[22,-78],[1,-122],[36,-65]],[[45387,92210],[-42,-51],[-82,-45],[-65,-91],[-32,8],[-123,-88],[156,-193],[-4,-111],[28,-71],[49,-46],[59,-9],[21,-56],[-63,-57],[-17,-64],[-110,-138],[34,-63],[-55,-93],[3,-131],[40,-8],[11,-73],[140,-187],[-123,-118]],[[46768,93392],[-58,-12],[-54,-79],[14,-244],[-35,-39],[39,-151],[71,-160],[-3,-206],[31,-117],[60,-19],[171,117]],[[45021,92939],[1,-70],[37,-35],[-25,-87],[180,-116],[71,14],[79,-38],[71,-64],[110,37],[118,-88],[128,-35]],[[42952,93312],[-10,-110],[-29,-92],[-39,-28],[-23,-85],[77,-139],[-16,-128],[60,-43],[118,-22],[37,-96],[89,-12],[39,-51]],[[41742,88525],[-57,99],[-35,-2],[-40,63],[-10,151],[-91,35],[-75,-45],[-128,124],[-16,73],[-73,40],[-82,-57],[-40,-60],[-97,100],[-38,265],[-1,97],[-52,110],[-71,86]],[[37668,87971],[43,-118]],[[37711,87853],[61,27],[86,-139],[100,-95],[-2,-63],[84,-19],[86,-81],[62,-2]],[[37079,87641],[-69,147],[42,188],[97,124],[105,68],[53,-38],[78,82],[83,-142],[92,-7],[100,-62],[8,-30]],[[38188,87481],[12,-61],[-59,-161],[-17,-203],[8,-117],[87,-248],[68,-105],[16,-77],[-14,-78],[-33,-30],[12,-80],[38,-14]],[[39469,90621],[2,-80],[-27,-205],[11,-94],[-47,-32],[-89,-19],[-60,-138],[-9,-88],[-75,-82],[-27,-99],[-143,-318],[-67,-9],[-141,-120],[0,-121],[-16,-122]],[[37379,92992],[95,-105],[64,-96],[60,-131],[74,-90],[9,-120],[30,-65],[-25,-56],[112,-124],[16,-53],[64,-40],[3,-75],[59,6],[59,-49],[19,-85],[136,-101],[111,-126],[18,-86],[-71,-79],[-33,-81],[71,-81],[68,-28]],[[46890,33641],[4,-146],[-21,-124],[17,-158],[203,-53],[60,-46],[-13,-90],[49,-44]],[[90605,64288],[25,143],[3,112],[-42,125],[-116,2],[-134,126],[-105,33],[-12,131],[-80,4],[-73,143],[-22,71],[-92,-39],[-16,20],[-105,8]],[[29675,93828],[-52,11],[-39,68]],[[29584,93907],[-85,-15],[-55,88],[-7,103],[-33,64],[16,127],[50,134],[25,16],[48,386],[-47,133]],[[29828,93805],[-27,-47],[-105,13],[-21,57]],[[47200,51280],[-19,114],[-45,48],[-80,-88],[0,-79],[-39,-99],[32,-120],[-19,-51],[-109,-12],[-66,-106],[-110,-74],[-85,9],[-81,-112]],[[45118,53655],[-13,-85],[-31,-59],[-72,-273],[-86,-56],[-74,-74],[-145,26]],[[45836,52436],[18,-81],[57,-58],[27,-101],[1,-155],[25,-107],[70,-121],[10,-144],[-30,-149],[5,-234],[14,-74]],[[49879,50327],[34,100],[-51,69],[-2,109],[-62,100],[-117,125],[-46,84],[-22,109],[23,69],[-5,65],[35,96],[1,268],[-21,56],[30,43]],[[61641,56889],[68,31],[95,-106],[66,53],[59,-3],[117,31],[144,57],[97,-39],[26,-61],[148,-48]],[[58853,56261],[42,-78],[87,76],[74,41],[90,95],[122,12],[77,116],[27,114],[2,66],[-22,117],[-45,103],[-86,58],[-49,79],[-14,79],[10,100],[-8,69],[47,157],[-3,197],[-19,94],[-44,119],[-12,376],[-59,54]],[[42566,68477],[32,-63],[65,-40],[144,-45],[56,-32]],[[41556,69303],[7,41],[69,157],[-2,77],[25,92],[40,38]],[[40869,71161],[10,-64],[64,-45],[26,50],[62,19],[84,-47],[104,77],[151,-80],[60,47],[31,-50]],[[35783,74709],[37,-67],[42,-144],[-22,-122],[-22,-48],[-21,-117],[3,-168],[-85,-3],[-54,17],[-136,92],[-38,-83]],[[43991,91789],[-80,-47],[-97,30],[-45,70],[-10,119],[-108,10],[-48,46],[-79,-91],[-3,-89],[-62,-48],[-70,5],[-69,-113],[-20,-134],[-151,-61],[-15,-59],[60,-78],[25,-103],[75,-118],[-53,-125],[-41,-27],[-78,-117],[-49,-33]],[[32096,77829],[22,76]],[[32437,79366],[85,61],[61,-37],[32,-131],[3,-99],[-42,-67],[-62,-268],[-105,-35],[-104,-95],[-1,-121],[38,-68],[4,-147],[-66,-74],[17,-106],[34,-115],[-27,-110],[-56,7],[-114,-29],[-16,-27]],[[32096,77829],[-8,-14]],[[85815,39559],[-17,136],[-57,116],[1,44],[-69,355],[-62,172],[-48,61],[-28,107],[-45,76],[-98,77],[-33,-102]],[[83644,60931],[38,45],[56,119],[73,46],[87,137],[48,149],[25,132],[53,99],[22,113],[37,90],[60,61],[33,60],[59,28],[55,-14],[17,-68],[67,-44],[19,-41],[63,-30],[76,-66],[31,-110],[43,-48],[44,11],[34,-44]],[[87317,65187],[-75,-31],[-48,5],[-140,90],[-39,-8],[-140,-142],[-124,-28],[-98,-6],[-90,-84],[-52,-6]],[[86221,65456],[-29,28],[-136,22],[-131,-22],[-67,-195],[-39,-29],[-4,-159],[-74,-109],[2,-89],[-29,-61],[-91,-33],[-84,-99],[-14,-91],[-69,-44]],[[88071,68092],[5,-116],[41,-101],[-36,-123],[18,-66],[1,-120],[-29,-45],[-54,-8],[-46,-176],[-2,-147],[-30,-117],[19,-42],[16,-250],[-13,-72],[44,-118],[-41,-82],[-11,-85],[-27,-17],[-120,-311],[7,-74]],[[73765,71268],[53,63],[19,160],[-31,126],[23,83],[11,166],[42,171],[-37,81],[-5,73],[42,97],[-3,69],[-44,16],[-11,-74],[-48,8],[-62,82],[36,98],[-20,125],[-64,49],[-22,-120],[36,-65],[-22,-88],[-47,51],[-36,-48],[-65,-7],[-48,-119],[-68,-78],[-41,22],[-53,-18],[-35,-86]],[[75340,85750],[4,73],[91,74],[46,75],[43,5],[46,61],[-1,115],[-37,108],[-123,126],[-27,152],[-78,13],[-114,-20],[-69,88],[-57,-8],[-98,128],[-72,22],[-73,-66],[-64,-24],[-33,-97],[-75,-53]],[[84160,57139],[6,-66],[51,-18],[76,30],[35,-75],[9,-183],[50,-78],[36,-139],[-6,-82],[14,-124],[-12,-75],[-45,-32],[-179,-12],[-87,-50],[-24,-74],[-162,-56],[-167,-5],[-69,-74],[-29,-68]],[[82747,61225],[-60,-28],[-10,-141],[-89,-74],[-89,62],[-39,124],[-49,90],[-63,12],[-50,59],[-70,180],[-14,68],[-39,43],[-26,88],[-65,102],[47,91],[-49,152],[-63,86],[-21,101],[-39,11]],[[84832,60568],[-63,-43],[-53,16],[-90,-1],[-107,-41],[-17,-57]],[[87102,54831],[3,119],[-34,157],[67,77],[-7,133],[-14,34],[17,93],[-47,166],[-19,138],[-69,86],[-62,133],[-26,156],[20,82],[8,299],[11,45],[22,257],[-37,187],[-40,90],[6,145],[36,154],[-5,150],[-78,220],[-62,90],[-196,240],[-47,16],[-63,85],[-98,290],[0,70],[119,162],[22,115],[33,100],[42,67],[6,197],[-10,27],[-19,232],[-49,12],[-80,75],[-60,113],[-84,41]],[[86308,59684],[-22,-77],[-33,-1],[-57,77],[-45,5],[-106,130],[-71,14],[-106,109],[-229,164],[-26,27],[-139,32],[-86,94],[-100,52],[-52,-25],[-206,147],[-85,32],[-50,60],[-66,42]],[[56066,45208],[80,43],[212,230],[136,11],[21,-23],[63,25],[16,46],[57,37],[43,-42],[93,25],[113,125],[45,-83],[35,-6],[-9,-93],[72,-44]],[[78930,97470],[-35,98],[67,114],[58,15],[49,85],[-64,49],[-38,122],[105,103],[58,113],[126,13],[76,29],[86,125],[-38,24]],[[76592,99593],[8,-87],[106,-101],[73,-11],[62,69],[140,30],[96,55],[90,85],[35,150],[-23,89],[42,175]],[[123136,78631],[56,-128],[50,-20],[129,-106],[119,-131],[92,-42],[70,66],[48,-44],[47,42],[49,80],[56,11],[46,87],[85,-15],[96,138]],[[124668,80523],[-25,39],[-103,0],[-13,46],[-52,-1],[-49,-35],[-20,55],[-55,-40],[-96,111],[-140,-43],[-36,19],[-7,64],[-39,26],[-87,-36],[-21,-108],[-59,11]],[[137838,88959],[37,170],[-28,94],[39,110],[77,57],[21,119],[-12,58],[-151,100],[-79,91]],[[33420,90229],[149,60],[110,87],[69,118],[80,97],[68,35],[148,28],[69,26]],[[48420,55621],[68,142],[79,125],[57,51],[11,56],[103,63],[126,177],[15,87],[26,20],[45,97],[53,18],[47,92],[75,-11],[81,165],[-25,60],[51,101],[26,96],[143,82],[42,84],[16,120],[26,17],[63,102],[23,72],[-14,123],[41,28]],[[42489,91177],[-102,56],[-20,-70],[46,-84],[0,-59],[49,-109],[-27,-38],[27,-92],[-74,-81],[-114,18]],[[31466,81397],[-52,33],[13,107],[-47,119],[-56,52],[-109,46],[-93,93],[-37,-78],[-31,-147],[13,-148],[-34,-50]],[[142331,42715],[-74,80],[-120,-45],[-113,-5],[-118,16],[-29,-67],[-139,-117],[-20,-73],[-77,-70],[-24,-44],[-50,-179],[-6,-92],[-71,-60],[-8,-41],[-144,-225],[-37,-26],[-132,-24],[-154,-54]],[[73570,68739],[53,29],[-3,-170],[-12,-92],[9,-94],[-17,-54],[26,-67],[-65,-134],[-43,-55],[-32,-91],[10,-40],[-56,-181],[-64,-55],[-16,-50],[-62,0],[-46,-61],[-148,-109],[-71,-76],[-57,-26],[-17,-141],[-68,-150]],[[84242,66821],[81,-76],[11,-53],[216,-285],[59,-33],[77,-103],[87,-194],[0,-115],[45,-156],[38,-82],[74,-110],[89,-169],[48,-157],[72,-22],[67,35],[48,-42],[27,-61],[100,-5],[124,44],[30,-14]],[[83405,65192],[-13,-60],[-54,-78],[-111,-1],[-40,-52],[-98,22],[-38,-21],[-77,49],[-69,-48],[-33,-85],[10,-89],[82,-77],[59,-22],[29,-46],[104,-34],[102,-9],[51,-38],[109,109],[68,-4],[108,-74],[2,-74],[33,-119],[-3,-98],[46,-46],[83,-3],[7,-54],[37,-39]],[[84445,63815],[-18,69],[-59,28],[-54,80],[-121,47],[-58,-36],[-50,75],[-61,-33],[-55,18],[-40,64],[-71,2],[-62,72]],[[87899,55695],[-27,80],[6,86],[31,47],[19,167],[-6,65],[-53,79],[-40,92],[-44,21],[-21,66],[15,65],[51,118],[10,177],[-11,106],[34,69],[0,114],[-20,60],[0,119],[-15,55],[4,143],[25,126],[-10,96],[78,143],[1,168],[14,78],[-88,72],[-55,113],[-39,201],[1,131],[-23,38],[14,147],[63,106],[9,142],[-27,101],[-59,142],[-29,7],[-81,-39],[-56,29],[-20,63],[-23,169],[-12,150],[-34,87],[-48,76],[-215,84],[-54,68],[-42,-39],[-65,-23],[-21,36],[-71,-14],[-44,30],[-35,-38],[-125,-53],[-31,53],[-70,24],[-71,-26],[-57,-71],[-116,-30],[-20,-38],[-88,-49]],[[85844,55031],[49,115],[-4,59],[25,127],[6,98],[22,81],[-38,291],[2,62],[30,87],[-26,99],[1,121],[-18,130],[-36,115],[-6,62],[5,205],[12,130],[34,119],[8,184],[-7,119],[-37,165],[-1,75],[-53,204],[-18,163],[33,86],[3,89],[27,177],[-18,132],[38,62],[-24,288],[-59,166],[-57,70],[-57,39],[-4,141],[-59,85],[-24,110],[6,74],[-25,112],[-97,71],[-27,74],[-32,165],[-83,141],[-30,26],[-28,96],[-79,47],[4,41],[-120,77],[-84,127],[-1,104]],[[91009,56325],[33,-166],[48,-110],[11,-91],[92,-124],[37,9],[89,-24],[31,-29],[8,-86],[-40,-42],[-19,-134],[-57,-67],[-22,-62],[-56,-61],[-144,-64],[-25,-80],[-63,-16],[18,-85],[-31,-58],[-35,9],[-73,-79],[-62,-163],[-33,-25],[-62,-115],[-102,-54],[-95,-122],[-55,-14],[-48,-94]],[[84105,57581],[-11,257],[9,174],[24,111],[12,164],[-30,283],[-53,54],[-34,83],[62,139],[7,71],[-40,111],[-39,52],[8,108],[-12,44],[-82,117]],[[92143,58371],[-1,-50],[-37,-97],[-166,-199],[-30,-1],[-53,61],[-151,43],[-85,85],[-93,22],[-35,72],[-44,34]],[[90617,60027],[2,-84],[29,-52],[114,-88],[18,-120],[-48,-62],[-5,-57],[51,-164],[57,-45],[22,-55],[2,-113]],[[132701,92025],[-24,103],[55,167],[-42,48],[-89,29],[-5,44],[-58,60],[-85,-123],[-69,-51]],[[89836,65167],[-90,48],[-50,-40],[-44,86],[-47,10],[-139,-72],[-38,19],[-55,-18],[-77,71],[-36,78],[-31,-8],[4,-134],[-53,-66],[-95,-37],[-18,50],[6,142],[-23,45],[-19,105],[-42,13],[-53,-72],[-48,-96],[-54,-37],[-25,-48],[-67,18],[-9,30],[-73,-31],[-6,-82],[-59,20],[-94,-46],[-106,3],[-44,-72],[-61,-19],[-27,62],[-66,12],[-33,-26],[-64,7],[-83,59],[-63,94],[-93,22],[-44,-25],[-53,13],[-12,39],[-59,64],[-112,-30],[-86,62],[-172,-47],[-66,65],[-37,121],[-38,23]],[[87182,65542],[-93,11],[-86,64],[-61,0],[-62,37],[-79,-35],[-78,28],[-25,31],[-61,-14],[-32,55],[-92,45],[-115,-30],[-65,83],[5,50],[-54,119],[-144,141],[-49,19],[-28,66],[-46,27],[-133,-3],[-141,-154],[-31,-101],[-79,-143],[-46,-127],[-62,-3],[-17,-46],[41,-123],[6,-103],[-14,-56],[-7,-155]],[[131206,98389],[153,-24],[106,13],[82,-73],[59,-14],[118,25],[85,-130]],[[118641,102861],[-118,25],[-126,-3],[-70,25],[-111,-9],[-70,26],[-57,122],[-86,85]],[[118643,102861],[-2,0]],[[119307,100146],[69,-53],[156,-72],[57,5],[197,-52],[41,47],[58,147],[190,42],[53,103],[-14,91],[36,30],[-60,112],[32,58],[151,6],[23,94],[-78,114],[-59,156],[84,21],[108,110],[-34,47],[40,108],[-22,36],[65,122],[-8,87],[36,113],[-6,99],[-88,10],[-73,90],[-2,79],[-95,76],[-32,61],[55,64],[12,177],[-153,130],[-5,58],[-126,34],[-82,111],[-115,15],[-43,50],[-81,-26],[-211,27],[-105,64],[-70,71],[-82,-24],[-73,75],[-95,42],[-114,-51],[-155,44],[-48,-33]],[[103238,105934],[272,-27],[259,237],[132,-14],[50,-67],[124,169],[3,205],[-100,42],[-62,193],[89,80],[31,164],[134,51],[115,-24],[257,-166],[119,18],[71,-103],[479,-70],[154,185],[77,41],[-21,193],[112,95],[22,58],[115,75],[47,99]],[[135380,98317],[-2,-64],[-166,-149],[-31,-73],[-77,-40],[-28,-62],[29,-55],[73,45],[111,135],[239,195],[33,111],[156,111],[124,10],[90,140],[173,63],[70,168],[26,179],[93,6],[81,154],[128,-21],[88,96],[51,-12],[68,75],[162,34],[118,52],[103,12],[140,92],[172,-16],[108,35],[59,-29],[124,24]],[[140913,107756],[22,103],[-51,97],[-14,104],[-76,62],[6,52],[-74,48],[-18,101],[-103,20],[-118,146],[-198,69],[-190,14],[-170,36],[-109,58],[-182,38],[-115,-11],[-233,128],[-120,112]],[[137904,108331],[-241,-145],[-234,-21],[-159,44],[-226,100],[-243,144],[-153,120],[-60,107],[-135,82],[4,53],[-129,227],[60,235],[-88,86],[-175,-40],[-74,24],[-60,93],[-114,84],[81,25],[-37,202],[65,45],[-133,106],[-16,100],[-186,75],[-73,95]],[[129994,96630],[91,-74],[75,-200],[38,-48],[-1,-97],[53,-56],[99,-4],[54,-123],[8,-136],[22,-44],[-3,-101],[116,-198],[24,-90],[99,-90],[54,-16]],[[136529,95435],[62,82],[75,-26],[15,-183],[-64,-76],[3,-88],[-124,-90],[-103,69],[-148,26],[-154,68],[-103,-35],[-90,7],[-65,-116],[-31,-21],[-113,37],[-52,-33],[-73,19],[-130,-53],[-54,84],[14,100],[-140,81]],[[137595,104338],[147,-119],[-31,-90],[-182,-52],[-171,-9],[-100,-90],[-54,-112],[-71,-75],[-44,-135],[-89,-45],[-96,-111],[-56,15],[-108,-24],[-58,-44],[-94,-192],[-112,-79],[-88,13],[-142,-151],[11,-63],[-80,-111],[-46,-108],[-88,-8],[-180,110],[0,100],[-96,237],[-100,19],[-73,84],[-33,120],[-179,51],[-59,91],[131,145],[135,14],[90,-14],[103,34],[25,102],[-138,71],[34,156],[-35,173],[-82,56],[3,147],[-41,152],[-67,55],[-5,97]],[[139150,105754],[-5,-62],[-60,-46],[100,-210],[-33,-67],[71,-95],[-82,-134],[14,-83],[-41,-108],[21,-198],[46,-57],[-55,-55],[-59,-239],[82,-167],[104,-98],[-48,-125]],[[129813,99786],[-87,-28],[-142,3],[-183,-190],[-73,-99],[-106,-73],[10,-111],[51,-12],[110,36],[126,-65],[-42,-136],[57,-76],[9,-84],[-57,-144],[-66,-24],[-146,-148],[-20,1],[-83,-233],[-68,-91],[-4,-81],[-99,-124],[-9,-117],[-88,-96],[-21,-107],[47,-70],[-16,-176],[-97,-73],[-192,-23],[-205,-197],[-127,-110]],[[97231,88932],[68,142],[159,137],[30,-28],[110,49],[146,3],[24,-62],[201,-136],[75,28],[66,94],[-13,62]],[[51529,53790],[-60,147],[-21,77],[-49,88],[-25,79],[-38,51],[-34,89],[-5,117],[-24,38],[-109,71],[-94,134],[-78,7],[-28,40],[-70,6],[-47,120],[-9,196],[21,139],[46,93],[4,171],[-54,99],[-39,116],[19,64],[0,100],[46,126],[11,73],[47,64],[-7,60],[37,202],[37,89],[-52,0],[-42,-50],[-53,0],[-103,73],[-33,-2],[-45,130],[-44,47],[-43,122],[-29,20],[-53,91],[-8,58],[-62,139]],[[47043,75955],[46,65],[-23,120],[1,97],[-84,54],[-44,7],[-45,47],[-38,-9],[-98,72],[-49,-6],[-58,80]],[[49658,65713],[-39,76],[-120,50],[-24,96],[-85,43],[-7,81],[-33,74],[-74,40],[-62,1],[-53,28],[-51,-12],[-102,32],[-71,-70],[-1,-75],[48,-142],[-9,-31],[8,-193],[-39,-64],[-129,-117],[-117,-44],[-55,-67]],[[51301,61783],[52,-25],[64,16],[81,-4],[39,63],[67,-11],[30,-103],[76,-118],[43,10],[71,-104],[24,-87],[55,-50],[11,-109],[62,-80],[48,-9],[21,-53],[127,-9],[61,-24],[18,-35],[45,35],[62,-13],[74,-68],[14,-83],[80,-75],[73,15],[85,51],[45,67]],[[54374,50966],[-122,131],[-35,-1],[-104,61],[-129,24],[-47,-38],[-56,52],[-33,-9],[-50,-67],[-126,-73],[-24,-40],[-121,-21],[-50,46],[-86,-8],[-63,-127],[-40,-17],[-136,-99]],[[53710,47886],[17,-103],[61,-117],[57,-54],[10,-74],[67,-141],[100,-3],[50,24],[60,-53],[92,44],[110,-2],[100,-159],[45,-235],[-22,-131],[17,-62],[-49,-110],[-1,-66]],[[55171,50733],[-59,-49],[-12,-52],[23,-101],[16,-170],[34,-39],[23,-83],[40,-34],[103,-212],[118,-139],[65,-38],[39,-233],[65,-121],[64,-37],[16,-68]],[[49660,47369],[12,-139],[35,-33],[7,-90],[61,-139],[-10,-70],[36,-61],[23,-201],[78,-160],[72,-47],[86,5],[61,-75],[58,-37],[119,-158],[97,-50],[61,-152],[106,-77],[18,24],[188,-94],[119,-95],[58,-32],[23,-68],[37,-2],[46,-87],[108,-39],[30,-39],[31,-123],[28,-10],[84,-106],[78,-74],[57,-29],[107,-192],[34,-124],[56,-24],[65,-69],[94,-150],[1,-76],[97,-30],[25,-99],[58,-25],[37,35],[87,-70],[40,-73],[119,-124],[58,-107],[45,-36]],[[81451,69433],[27,34],[74,10],[22,60],[74,-2],[149,58],[39,46],[45,145],[118,114],[21,55],[32,170],[77,152],[60,68],[64,33],[68,-3],[56,27],[44,-8],[61,-97],[11,-86],[-6,-194],[-20,-82],[5,-91],[78,-82],[43,28],[14,-94],[79,-69],[11,-203],[24,-45],[-18,-124]],[[93627,70764],[3,-59],[89,-38],[34,-81],[82,-108],[101,-45],[82,-6],[80,-87],[19,-174],[-21,-106],[6,-165],[-25,-157],[-80,-31],[-27,-45],[-87,-57],[-80,-77],[-40,-11],[-68,106],[-47,37],[-93,39],[-17,109],[-201,75],[-69,7],[-49,51],[-41,-103],[-3,-50],[-48,-67],[-113,-4],[-23,-60],[-79,3],[-25,-60],[-98,117],[-39,13]],[[88545,44825],[-87,-86],[-90,-14],[-54,18],[-109,-64],[-58,4],[-89,56],[-69,14],[-30,52],[-131,14],[-78,110],[-24,11],[-98,120],[-83,13],[-84,-43],[-28,10],[-70,-118],[-17,-144],[-25,-47],[-12,-160],[-75,-155],[-50,-13],[-74,-80],[-86,-193],[-125,-60],[3,-57],[-37,-48],[-132,22],[-112,-29],[-116,41],[-74,-64],[-48,-80],[-67,-179],[-48,-98],[26,-120],[44,-50],[13,-198],[22,-76],[11,-133],[-12,-79],[-37,-76],[-62,-2],[-44,-34]],[[84755,46623],[77,-193],[63,-12],[49,-45],[33,-68],[124,-188],[-1,-142],[30,-52],[92,-91],[61,-110],[52,-57],[35,9],[18,78],[44,-50],[59,-21],[48,-143],[56,-114],[73,-186],[30,-111],[120,-171],[92,-40],[61,-2],[82,-66],[85,-135]],[[86138,44713],[65,-89],[100,-76],[42,-49],[38,-99],[21,-146],[-4,-171],[37,-146]],[[97431,46595],[-44,215],[-53,59],[-83,1],[-82,-51],[-85,-72],[-27,-233],[-24,-86],[-42,-77],[-63,-67],[-79,13],[-111,-65],[-51,52],[-63,1],[-50,-27],[-141,76],[-20,-57],[-46,-26]],[[82138,95268],[-74,-10],[-4,-70],[65,-54],[70,-5],[118,41],[81,-141],[-21,-122],[-76,-106],[18,-77],[-45,-177],[-79,-141],[-3,-69],[50,-7],[41,-55],[92,-38],[17,-85],[54,-65],[145,-23],[37,28],[104,6],[63,-27],[40,39]],[[98403,104262],[-23,85],[120,19],[157,72],[17,96],[170,25],[31,113],[-39,34],[54,72],[-113,105],[-121,14],[-93,-49],[-57,-73],[-133,-51],[-123,78],[-84,155],[-132,-2],[-119,-80],[-158,41],[-209,-71],[-103,49],[34,64]],[[97526,101060],[-100,122],[76,99],[-105,42],[-95,114],[75,84],[2,67],[56,88],[-69,105]],[[97718,99772],[-82,-1],[-126,-33],[-61,19],[-136,-87],[-96,-40],[-71,7],[-139,-47],[-86,107],[25,159],[82,131],[75,60],[84,104],[31,85],[73,58],[53,100],[156,28],[156,85],[-9,62],[30,90],[-31,127],[-41,59],[-29,127],[-47,88]],[[103079,105544],[-169,-120],[-86,-184],[1,-107],[78,-84],[-163,-207],[-88,28],[-46,-97],[-216,76],[-146,-78],[-111,45],[-31,-82],[-108,-36],[-120,2],[0,-105],[-51,-56],[7,-166]],[[90652,89371],[-19,-100],[-117,-90],[-59,79],[-79,26],[-67,-20],[-88,-91],[-74,108],[-56,-57],[-83,-46],[-11,-76],[-77,-6],[-66,-34],[-208,-43],[-84,4],[-71,-54],[-60,16],[-70,-23],[-4,-102],[-55,-60],[-72,5]],[[89274,88805],[-39,-45]],[[86492,90772],[35,63],[41,-37],[64,52],[95,-58],[82,-153],[-23,-33],[34,-89],[70,-21],[20,75],[61,98],[113,123],[67,109],[59,21],[72,-72]],[[80173,95142],[59,81],[46,129],[39,51],[107,54],[96,102],[-86,76],[-14,86],[-352,-210],[-144,-35],[-84,-93],[-3,-42],[-109,3],[-71,-72]],[[141015,41689],[-95,9],[-108,90],[-125,46],[-25,-32],[-59,22],[-82,-31],[-34,20],[-71,-27],[-3,-40],[-74,-44],[-29,-64],[-84,-61],[-3,-55],[-39,-35],[-64,3],[-14,-33],[-81,-22],[1,-42],[-54,-66],[-81,-56],[-51,-116],[-111,-28],[-43,-104],[-27,9],[-108,-112],[-1,-102],[-87,-53],[-103,-24],[-42,-78],[-42,12],[-23,-106],[-46,-12],[-35,-83],[-43,-15],[-19,-137],[-57,-17],[-61,-57],[-13,-46],[-120,-101],[-10,-83],[6,-332],[-34,-57],[-8,-75],[36,-25],[87,-130],[-23,-92],[-59,-105],[-93,-74],[-65,-11],[-21,-103],[-29,-32],[5,-73]],[[75935,99238],[78,-54],[121,65],[67,126],[121,11],[80,-76],[66,-16],[8,-61],[70,-140],[17,-158],[34,-73],[-102,-148]],[[88582,95134],[-98,66],[-3,108],[-113,57],[-113,3],[-49,-53],[-82,-182],[-67,-89],[-84,-30],[-44,17],[-180,-87],[-19,-155],[-53,-75],[-109,-48],[-98,-66],[-96,53],[-162,12],[-42,42],[-112,-4],[-64,66],[-138,-4],[-150,64],[-137,-21],[-54,-60],[-44,39],[-73,3],[-182,82]],[[85862,93927],[-13,-117],[-86,-150],[-9,-94],[30,-67],[63,-16],[16,-51],[111,-108],[-29,-36],[-150,-26],[31,-125],[-56,-57],[-59,-5],[-87,-75],[-23,-84],[114,-145],[75,-23],[74,-67],[11,-45],[75,-56],[-10,-152]],[[122344,87023],[73,107],[88,-21],[122,-91],[12,-99],[59,-55],[78,26],[74,-30],[64,1],[103,-27],[89,-69],[16,-35],[117,-22],[153,-9],[77,-96],[136,13],[35,-22],[258,-42],[62,-44],[117,-5],[81,-24],[145,28],[99,96],[91,48],[73,-11],[19,64],[59,18],[77,-29],[34,49],[57,28],[125,18],[90,-18]],[[114408,105354],[-236,-15],[-109,69],[-225,22],[-49,55],[-215,-49],[-46,-49],[-305,51],[-64,30],[-85,-14],[-102,27],[-63,-45],[-229,-18],[-180,-62],[-72,-54],[-121,-38],[-176,-19],[-43,-62],[-156,-14],[-74,-63],[-136,24],[-197,-19],[-124,19],[-101,-19],[-30,83],[-74,30],[-156,-39],[-37,32],[-218,-20],[-75,36],[-53,-79],[10,-91],[-63,-41]],[[116781,85689],[26,-81],[1,-108],[-46,-120],[-129,-79],[-69,-174],[-372,-76],[-115,-111],[-48,0],[-141,46],[-31,-86]],[[114569,86609],[34,-19],[64,22],[45,-19],[118,30],[136,11],[41,81],[71,18]],[[116571,88012],[-51,-13],[-111,18],[-203,109],[-42,13],[-22,114],[36,71],[1,164],[32,79],[97,108],[-17,56],[-118,51],[-34,36]],[[106214,86775],[-88,2],[-76,22],[-75,-43],[-56,-2],[-121,-39],[-140,4],[-105,-22],[-14,-26],[-133,-35],[-73,0],[-142,-38],[-187,-24],[-82,5],[-176,38],[-134,-105],[-115,33],[-159,-18],[-74,14],[-59,44],[-178,42],[-44,31],[-77,114],[-54,36],[-27,96],[2,74],[33,126],[-17,122],[78,188],[-25,87],[7,142],[-32,91],[21,77],[-30,201],[15,111],[-44,169],[-56,34],[-68,114],[-44,129],[-26,23],[-61,150],[-6,121],[-60,137],[-12,75],[-77,124]],[[112629,87360],[-9,92],[-111,-17],[-92,63],[-43,114],[-96,28],[-82,55],[-149,11],[-65,30],[-24,72],[-77,96],[-17,90],[32,92],[50,51],[-21,68],[28,88],[-16,91],[30,149],[-16,103],[35,127],[146,130],[35,112]],[[49674,51621],[-32,56],[-26,185],[-23,96],[-31,52],[-38,137],[12,100],[-45,163],[37,98],[21,156],[-37,97],[6,43],[-65,167],[-11,72],[-52,62],[5,165],[22,32],[29,232],[68,88],[11,136],[-27,156],[-42,100],[17,105],[-19,58],[32,58],[-22,66],[65,66]],[[107876,90146],[-61,-16],[-75,23],[-97,-21],[-71,18],[-165,-33],[-195,-5],[-42,-24],[-123,22],[-18,36],[-83,-10],[-115,24],[-60,-4],[-54,33],[-83,-11],[-69,20],[-158,94],[-116,167],[-103,51],[-193,41],[-97,-26],[-80,37],[-60,68],[-228,17],[-84,-29],[-42,-78],[-75,-48],[-45,4],[-59,-103],[-209,-202],[37,-93],[-13,-93],[-86,-55],[-8,-59]],[[124089,88579],[39,68],[85,79],[20,122],[85,190],[61,70],[60,5],[73,38],[157,29],[124,-38],[81,-51]],[[123358,87335],[59,82],[58,2],[253,-135],[119,20],[168,-93],[-2,-97],[91,-70],[21,-49],[100,-101],[84,-130],[72,-75],[119,-25]],[[118146,85389],[-34,34],[-34,111],[-72,40],[-68,-3],[-44,71],[-93,73],[-60,106],[-60,58],[-129,89],[-51,66],[-25,99],[-22,184],[94,86]],[[118865,77893],[76,-68],[33,42],[61,-92],[56,4],[36,76],[68,81],[89,25],[9,214],[112,-40],[43,69],[-42,142],[8,50],[55,47],[-53,92],[49,123],[-2,65],[33,94],[80,1],[71,54],[210,54]],[[125920,88130],[-32,-124],[-26,-184],[47,-101],[-9,-121],[82,-105],[3,-126],[52,-161],[42,-91],[30,12],[151,-63],[77,34],[50,-90]],[[128795,82011],[-32,46],[56,135],[53,52],[82,-4],[53,68],[34,-7],[69,95],[25,61],[62,-68],[52,-17],[83,-112],[39,10],[82,-32]],[[111778,77991],[-31,111],[51,125],[49,73],[63,-55],[96,10],[13,-100],[-23,-45],[57,-195],[9,-175],[-48,-57],[-66,-14],[-20,-76],[-37,-48],[-20,-81],[-64,-106],[20,-107],[-17,-50],[36,-78],[107,-82],[-6,-70],[17,-103],[-11,-144],[16,-102],[-76,-98],[-23,-62],[23,-147],[58,-88],[17,-61],[-18,-100],[1,-137],[14,-82],[-21,-75]],[[110250,90809],[-16,195],[95,108],[151,53],[43,-32],[118,-4],[57,-23],[61,18],[72,-14],[40,-60],[53,-1],[52,58],[104,39],[71,-21],[153,62],[63,-6],[160,115],[57,73],[97,87],[144,-57],[55,-68],[78,-32],[40,32]],[[109198,79978],[55,43],[79,27],[85,66],[112,-11],[71,91],[80,49],[155,0],[15,19],[10,139],[48,74],[84,206],[104,75],[12,109],[55,52],[103,-74],[127,70],[26,-14],[88,18],[41,-90],[-7,-63],[35,-49]],[[43474,92796],[-3,-119]],[[112869,76412],[67,4],[90,101],[93,-16],[124,41],[38,46],[28,87],[53,53],[121,177],[25,9],[74,90],[36,147],[64,23]],[[119365,83161],[-2,-32],[43,-197],[67,-61],[40,-139],[-24,-126],[-127,-40],[-24,-40]],[[75338,92572],[-6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment