Skip to content

Instantly share code, notes, and snippets.

@vlandham
Last active November 17, 2015 03:40
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 vlandham/3ffd8db5fb7bd4271259 to your computer and use it in GitHub Desktop.
Save vlandham/3ffd8db5fb7bd4271259 to your computer and use it in GitHub Desktop.
fresh block
<!-- Slight modification of example 1 on http://mtaptich.github.io/d3-lessons/d3-extras/ to add play/pause button.-->
<!DOCTYPE html>
<meta charset="utf-8">
<body>
<style>
.land {
fill: #eee;
stroke: #777777;
}
circle {
fill: steelblue;
stroke: #fff;
stroke-width: 3px;
}
.journey{
fill: none;
stroke: #000;
stroke-width: 4;
stroke-dasharray: 4px,8px;
}
</style>
<h2>Map with Play/Pause Button on Path Code</h2>
<p>Original source (without play button) from <a href="http://mtaptich.github.io/d3-lessons/d3-extras/">mtaptich.github.io/d3-lessons/d3-extras</a>.</p>
<p>There is one strange bug in this: If you catch the ball on the starting point when you pause it, it takes a long time to start up again when you toggle "play/pause."</p>
<button>Play</button>
<div id="chart"></div>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="http://d3js.org/d3.geo.projection.v0.min.js"></script>
<script src="http://d3js.org/queue.v1.min.js"></script>
<script>
var width = 960,
height = 500;
var projection = d3.geo.conicConformal()
.rotate([98, 0])
.center([0, 38])
.parallels([29.5, 45.5])
.scale(1000) // Change to 300 to zoom out
.translate([width / 2, height / 2]);
var path = d3.geo.path()
.projection(projection);
var svg = d3.select("#chart").append("svg")
.attr("width", width)
.attr("height", height);
var points = [
[-122.2728, 37.8717],
[-104.9903, 39.7392],
[-93.2650, 44.9778],
[-75.6008, 41.0144],
[-86.7833, 36.1667],
[-96.7970, 32.7767],
[-110.9264,32.2217]
];
var pauseValues = {
lastTime: 0,
currentTime: 0
};
// The x/y coordinates in the map scale are calculated by
// projection([d.long,d.lat]). So take the first for x, second for y.
var line = d3.svg.line()
.interpolate("cardinal-closed")
.x(function(d) { return projection(d)[0]; }) // lon
.y(function(d) { return projection(d)[1]; }); // lat
queue()
.defer(d3.json, "state_pol.json")
.await(ready);
function ready (error, us) {
svg.append("g")
.attr("class", "land")
.selectAll("path")
.data(topojson.feature(us, us.objects.state_pol).features)
.enter().append("path")
.attr("class", function(d) {return d.id})
.attr("d", path)
var linepath = svg.append("path")
.data([points])
.attr("d", line)
.attr('class', 'journey');
svg.selectAll(".point")
.data(points)
.enter().append("circle")
.attr("r", 8)
.attr("transform", function(d) { return "translate(" + projection(d) + ")"; });
var circle = svg.append("circle")
.attr("r", 19)
.attr("transform", "translate(" + projection(points[0]) + ")");
d3.select("button").on("click",function(d, i){
var button = d3.select(this);
if (button.text() == "Pause") {
button.text("Play");
circle.transition()
.duration(0);
setTimeout(function() {
pauseValues.lastTime = pauseValues.currentTime;
},
100); // introduces a delay before resetting the times
} else {
button.text("Pause");
transition();
}
});
function transition() {
circle.transition()
.duration(5000)
.ease("linear")
.attrTween("transform", translateAlong(linepath.node()))
.each("end", function() {
pauseValues = {
lastTime: 0,
currentTime: 0
};
transition();
});
}
} // end of ready
// Returns an attrTween for translating along the specified path element.
function translateAlong(path) {
var l = path.getTotalLength();
return function(d, i, a) {
return function(t) {
//console.log('t:');
//console.log(t);
t += pauseValues.lastTime % 1.0;
//console.log('lasttime');
//console.log(pauseValues.lastTime);
console.log('t:');
console.log(t);
//console.log('curtime');
//console.log(pauseValues.currentTime);
var p = path.getPointAtLength(t * l);
pauseValues.currentTime = t;
return "translate(" + p.x + "," + p.y + ")";
};
};
}
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.00028310307154624624,0.00017255680954483468],"translate":[-179.23110125139377,-14.601806015678092]},"objects":{"state_pol":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4]],"type":"Polygon"},{"arcs":[[[5,6,7]],[[8]]],"type":"MultiPolygon"},{"arcs":[[9,10,11,12,13,14]],"type":"Polygon"},{"arcs":[[15,16,17,18,19,20]],"type":"Polygon"},{"arcs":[[21,22,23,24,25,26,-2]],"type":"Polygon"},{"arcs":[[[27,28,29,30]],[[31]]],"type":"MultiPolygon"},{"arcs":[[32,33,34,35,36,37,38]],"type":"Polygon"},{"arcs":[[39,40,41,42,43]],"type":"Polygon"},{"arcs":[[44,45,46,47,48]],"type":"Polygon"},{"arcs":[[49,-44,50,51]],"type":"Polygon"},{"arcs":[[52,-30,53]],"type":"Polygon"},{"arcs":[[54,55,56,-23]],"type":"Polygon"},{"arcs":[[57,58,59,60,61]],"type":"Polygon"},{"arcs":[[[62,63,64,65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]]],"type":"MultiPolygon"},{"arcs":[[72,73,-56,74]],"type":"Polygon"},{"arcs":[[75,-11,76,-19]],"type":"Polygon"},{"arcs":[[-39,77,-63,78,79]],"type":"Polygon"},{"arcs":[[80,81,82,83,84,85]],"type":"Polygon"},{"arcs":[[86,87,88,-75,-55,-22,-1]],"type":"Polygon"},{"arcs":[[-80,89,-33]],"type":"Polygon"},{"arcs":[[90,91,92,93]],"type":"Polygon"},{"arcs":[[94,95,-6,96,97,-48]],"type":"Polygon"},{"arcs":[[98,-97,-8,99,100]],"type":"Polygon"},{"arcs":[[101,102,103,104,-37]],"type":"Polygon"},{"arcs":[[105,106,-87,-5,107,108]],"type":"Polygon"},{"arcs":[[109,110,-94,111,-60]],"type":"Polygon"},{"arcs":[[112,-81,113,114,-58,-103]],"type":"Polygon"},{"arcs":[[-47,115,-95]],"type":"Polygon"},{"arcs":[[-59,-115,116,117,118,-110]],"type":"Polygon"},{"arcs":[[119,-49,-98,-99,120,121,122,123,124,125]],"type":"Polygon"},{"arcs":[[-36,126,127,-82,-113,-102]],"type":"Polygon"},{"arcs":[[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]]],"type":"MultiPolygon"},{"arcs":[[145,146,-16,147]],"type":"Polygon"},{"arcs":[[[-108,-4,148,-126,149,-14,150]],[[-124,151]]],"type":"MultiPolygon"},{"arcs":[[[152]],[[153]]],"type":"MultiPolygon"},{"arcs":[[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]]],"type":"MultiPolygon"},{"arcs":[[166]],"type":"Polygon"},{"arcs":[[167,-41]],"type":"Polygon"},{"arcs":[[-89,168,-52,169,-54,-29,170,-73]],"type":"Polygon"},{"arcs":[[-78,-38,-105,171,-64]],"type":"Polygon"},{"arcs":[[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]]],"type":"MultiPolygon"},{"arcs":[[[222]],[[223]],[[224]],[[225]]],"type":"MultiPolygon"},{"arcs":[[-76,-18,226,-106,227,-12]],"type":"Polygon"},{"arcs":[[228,-122,229,-91,-111,-119]],"type":"Polygon"},{"arcs":[[-230,-121,-101,230,-92]],"type":"Polygon"},{"arcs":[[-85,231,-15,-150,-125,-152,-123,-229,-118,232]],"type":"Polygon"},{"arcs":[[233,-146,234,-127,-35]],"type":"Polygon"},{"arcs":[[-114,-86,-233,-117]],"type":"Polygon"},{"arcs":[[-228,-109,-151,-13]],"type":"Polygon"},{"arcs":[[[235]],[[236]],[[237]]],"type":"MultiPolygon"},{"arcs":[[-128,-235,-148,-21,238,-83]],"type":"Polygon"},{"arcs":[[-51,-43,239,-31,-53,-170]],"type":"Polygon"},{"arcs":[[240,-45,-120,-149,-3,-27,241,-25]],"type":"Polygon"},{"arcs":[[-242,-26]],"type":"Polygon"},{"arcs":[[-239,-20,-77,-10,-232,-84]],"type":"Polygon"},{"arcs":[[-62,242,-65,-172,-104]],"type":"Polygon"}]}},"arcs":[[[348679,320130],[0,-239],[0,-222],[-1,-149],[1,-72],[0,-275],[5,-66],[-2,-369],[1,-185],[-4,-98],[0,-538],[0,-490],[0,-317],[-1,-130],[1,-157],[-1,-132],[1,-263],[-1,-378],[1,-254],[-1,-405],[0,-86],[0,-239],[-1,-121],[1,-131],[84,-2],[302,0],[133,2],[434,-3],[89,2],[344,-1],[180,1],[268,-1],[210,-3],[233,0],[441,1],[205,1],[86,-1],[159,1],[136,2],[125,-3],[254,2]],[[352361,314812],[-1,-112],[1,-344],[-4,-1],[-1,-100],[-3,-541],[-12,0],[-2,-259],[-1,-208],[-4,-619],[-6,0],[-3,-278],[-3,-95],[1,-85],[5,-2],[-3,-342],[36,-12],[12,-10],[12,10],[8,28],[23,16],[21,-7],[26,30],[25,7],[27,42],[11,-2],[20,19],[-4,40],[17,12],[-1,16],[20,7],[20,18],[2,21],[31,26],[2,24],[19,17],[24,32],[-1,23],[22,-3],[9,28],[20,13],[41,5],[27,18],[10,41],[16,-4],[11,15],[-14,26],[4,14],[22,0],[5,14],[21,21],[23,7],[13,-7],[21,25],[13,2],[31,-27],[50,0],[2,26],[20,31],[-1,29],[6,47],[47,45],[-1,26],[10,6],[20,-11],[25,16],[-12,26],[13,37],[-12,44],[17,1],[34,22],[24,-6],[10,7],[4,29],[36,-8],[25,1],[5,33],[21,28],[18,32],[16,52],[16,0],[14,-14],[21,-3],[23,24],[-16,32],[13,9],[20,-30],[23,-26],[13,25],[-14,24],[-4,31],[7,28],[15,13],[5,20],[-5,26],[18,14],[20,-22],[-1,-49],[24,-3],[7,28],[-4,37],[20,12],[24,-9],[8,5],[-6,64],[18,23],[40,-13],[3,27],[-17,16],[4,21],[25,21],[20,28],[0,43],[-19,-4],[1,24],[9,10],[31,-4],[8,15],[-7,18],[-28,16],[-4,16],[19,20],[32,-26],[34,-4],[43,13],[4,29],[14,-3],[12,-39],[15,-6],[6,14],[5,43],[24,15],[8,-20],[26,-19],[3,-33],[8,-22],[18,-13],[38,17],[25,-38],[27,-14],[49,-37],[20,-8],[23,-17],[28,-27],[12,-27],[30,8],[7,10],[-2,36],[-15,15],[21,24],[-15,25],[-2,21],[45,21],[22,30],[6,18],[-14,35],[29,33],[22,5],[40,-5],[12,48],[20,20],[12,35],[-5,43],[6,6],[38,0],[6,40],[-7,23],[16,9],[7,-11],[29,-10],[14,11],[18,47],[-2,45],[31,10],[33,60],[4,51],[13,15],[17,5],[17,22],[33,-17],[25,-21],[13,4],[15,32],[-7,29],[-16,26],[-23,6],[1,62],[6,13],[18,-3],[3,22],[23,25],[-1,14],[13,46],[38,-19],[9,33],[-11,55],[-10,32],[13,22],[24,51],[33,-9],[17,47],[27,8],[15,-9],[-14,-31],[-14,-14],[-20,-67],[0,-15],[50,-23],[54,45],[7,1],[35,-26],[10,-22],[2,-27],[-18,-23],[-13,-3],[-16,-21],[-18,26],[-41,-2],[-45,-31],[-7,-15],[15,-28],[13,-12],[11,-43],[23,-28],[18,-12],[16,7],[17,-12],[11,7],[10,31],[25,-1],[6,-67],[27,-65],[30,-2],[31,-43],[41,-11],[12,-16],[6,-29],[31,-13],[21,-21],[26,0],[13,-18],[33,-14],[59,10],[33,9],[0,9],[31,-1],[44,-23],[21,-17],[29,26],[11,-9],[-5,-25],[17,-17],[30,-9],[20,-24],[23,-17],[27,11],[28,-3],[29,4],[22,10],[21,-1],[10,10],[22,-1],[22,-8],[41,-27],[12,3],[35,-8],[18,11],[33,-19],[23,1],[21,22],[8,29],[0,23],[-8,24],[5,20],[13,9],[24,-3],[9,27],[-39,17],[-6,29],[12,6],[24,-8],[11,-10],[29,-54],[19,16],[-7,37],[-9,20],[9,11],[21,-12],[15,-32],[18,-6],[14,27],[-32,56],[-41,24],[-11,15],[-31,27],[-17,22],[-12,30],[2,42],[15,16],[27,10],[59,-25],[20,-14],[12,-18],[42,-17],[20,6],[25,26],[-7,35],[-15,18],[-36,24],[-36,39],[-34,60],[-8,21],[5,23],[26,14],[15,-3],[29,-17],[62,-31],[11,-18],[28,-21],[19,-6],[20,10],[3,12],[-31,46],[-10,25],[10,30],[20,7],[24,-7],[33,-22],[14,7],[4,28],[-19,34],[14,20],[72,-20],[32,-17],[46,-19],[53,-29],[41,-28],[69,-13],[14,23],[1,44],[29,55],[27,28],[32,43],[38,29],[11,32],[-30,39],[-4,14],[23,25],[26,-4],[49,3],[15,9],[15,24],[16,40],[37,38],[37,2],[36,-12],[25,-17],[38,-1],[43,-21],[24,-5],[71,-26],[22,-15],[31,-43],[22,0],[26,-21],[43,-60],[33,-38],[18,-37],[42,-43],[19,-43],[33,-54],[42,-97],[14,-12],[74,-13],[29,2],[16,11],[13,25],[19,14],[19,3],[26,-18],[3,-14],[-6,-51],[12,-50],[16,-8],[18,15],[7,23],[5,43],[1,58],[-10,23],[-23,16],[14,22],[25,-5],[19,-27],[16,-47],[17,-11],[29,-5],[76,-30],[25,11],[4,39],[-18,37],[6,20],[36,-10],[35,-30],[38,-11],[35,0],[21,-7],[21,-30],[7,-44],[0,-36],[-13,-83],[-8,-31],[-19,-15],[-55,0],[-31,-5],[-31,2],[-23,-7],[-22,-17],[-6,-26],[13,-26],[53,-46],[17,-27],[1,-52],[-5,-48],[6,-31],[12,-9],[42,8],[26,16],[5,15],[0,47],[13,18],[25,-4],[18,-17],[4,-28],[-6,-34],[-10,-17],[-66,-62],[-3,-17],[12,-20],[60,-28],[27,3],[43,-20],[36,-4],[27,17],[14,29],[12,10],[28,2],[28,-18],[-3,-29],[-21,-13],[-55,-23],[-23,-19],[-9,-15],[-1,-23],[10,-23],[13,-15],[40,-23],[9,-18],[-16,-10],[-39,13],[-17,-8],[-1,-26],[16,-25],[25,-23],[-1,-26],[-42,-13],[-11,-7],[-2,-23],[22,-26],[36,-16],[44,-6],[43,1],[28,-24],[26,-84],[19,-33],[9,-27],[9,-45],[-10,-32],[-34,-6],[-17,-17],[0,-16],[32,-79],[3,-18],[-10,-53],[-14,-22],[-34,-26],[-4,-28],[18,-35],[16,-5],[32,-23],[33,-18],[18,-22],[29,-5]],[[358568,312495],[-5,-14],[-35,-19],[-17,-22],[-23,-61],[-20,-38],[-18,-66],[-1,-35],[-13,-19],[-8,-34],[1,-20],[-11,-10],[-4,-27],[-18,-4],[-9,-14],[-1,-34],[13,2],[-15,-77],[-53,-87],[-8,-38],[-11,-15],[-3,-19],[-19,-48],[1,-38],[-20,-77],[-11,-57],[-25,-38],[-13,-42],[-15,-31],[-6,-36],[4,-32],[-8,-23],[-15,-20],[-163,171],[-158,168],[-392,416],[-96,98],[-127,134],[-53,55],[-53,59],[-61,64],[-61,56],[-49,58],[-54,61],[-67,69],[-138,156],[-15,14],[-47,53],[-88,84],[-69,69],[-140,146],[-10,-24],[17,-13],[-8,-69],[4,-12],[-6,-29],[-19,-22],[19,-34],[4,-19],[-16,-41],[-20,-23],[-11,-44],[7,-28],[29,-36],[-5,-38],[28,-15],[-31,-79],[-34,-65],[-18,-27],[63,-27],[30,-6],[4,-29],[-26,-25],[2,-30],[-33,-78],[-18,-47],[-14,-1],[-9,-42],[-27,-29],[-22,-38],[-22,-30],[-5,-28],[-17,-32],[-25,-12],[-4,-24],[-44,-75],[-19,-37],[37,-28],[33,-51],[-16,-15],[-4,-55],[-62,-111],[-26,-33],[-11,-25],[-19,-26],[28,-11],[8,-21],[15,-3],[-15,-28],[8,-26],[26,-31],[14,2],[4,-19],[24,-21],[11,-18],[-35,-54],[-47,-33],[-34,-64],[-9,-55],[-71,-104],[-26,-8],[-30,-31],[-15,11],[-55,-49],[-3,-12],[-43,-60],[-9,-19],[-21,-20],[-1,-25],[-34,-54],[-18,-10],[-12,-21],[-18,-13],[-20,-32],[-30,-41],[-9,-20],[-28,-35],[-25,-38],[21,-33],[24,-13],[6,-15],[24,-19],[-31,-36],[-12,-27],[-22,-25],[-46,-84],[-40,-96],[-20,-14],[-9,-28],[-31,34],[-3,33],[-27,-12],[-6,49],[-18,0],[-14,-10],[-10,-36],[-21,-45],[-29,7],[-20,-43],[-10,-40],[-14,-37],[-24,-34],[-17,-45],[-35,-49],[-27,-3],[-33,-61],[-24,6],[-45,-64],[-10,11],[-3,47],[5,38],[-3,15],[10,69],[-13,-18],[-64,-29],[-40,-65],[0,-25],[-11,-12],[-3,-22],[-16,-31],[-37,-20],[-12,-19],[-23,-8],[-31,-42],[-12,-44],[-18,-22],[-41,-102],[-5,-24],[-23,-72],[-39,-104],[-29,-68],[-12,-16],[-39,-82],[-19,-54],[-30,-69],[-5,-23],[-15,-28],[-381,437],[-58,68],[-23,-27],[4,-31],[-12,-21],[-20,-82],[-40,-25],[-2,-36],[-13,-11],[2,-65],[-15,-38],[-7,-6],[-64,4],[-27,-35],[-2,-12],[14,-33],[0,-31],[-14,-10],[-6,-59],[-13,-23],[-16,-16],[-25,-37],[-4,-32],[-19,-28],[-4,-27],[-21,-56],[-1,-40],[-23,-81],[7,-53],[24,-37],[-7,-24],[-6,-49],[-15,-33],[-2,-45],[-28,-17],[-23,-6],[-13,18],[-18,-4],[-15,8],[-22,-30],[-16,-11],[-9,-46],[-8,-8],[-6,-34],[-18,-21],[-12,-44],[-19,-38],[-15,-56],[4,-23],[-17,-31],[-1,-37],[5,-10],[-12,-28],[-7,-32],[-16,-21],[-13,-40],[3,-24],[-20,-15],[-15,-32],[-11,-47],[-34,-55],[-28,-85],[-16,-19],[-4,-40],[-14,-59],[14,-21],[-5,-39],[-7,-24],[-30,-32],[-9,-15],[2,-24],[-17,-24],[-50,-37],[-8,-32],[-1,-59],[-18,-6],[-24,15],[-9,-31],[-15,-15],[-18,-50],[-19,-11],[-39,-34],[11,-43],[-3,-22],[-9,-13],[-14,14],[-14,2],[-32,-35],[-16,4],[-28,-21],[-204,88],[-193,89],[-183,85],[-77,223],[-81,222],[-19,18],[-19,35],[-17,45],[-31,21],[-32,31],[-60,19],[-273,165],[-8,-25],[-16,-34],[-2,-31],[-6,-18],[-17,-15],[13,-44],[-21,-11],[-7,-48],[-9,-10],[2,-32],[-5,-29],[13,-10],[-22,-57],[21,-24],[15,-37],[-2,-24],[-18,-10],[-6,-27],[-13,16],[-22,1],[-10,-54],[-19,-30],[-22,-11],[-10,-41],[12,-51],[-19,-22],[2,-27],[14,-10],[13,-26],[8,-29],[3,-48],[-12,-21],[8,-28],[-9,-28],[7,-33],[-25,-27],[6,-18],[-16,-11],[-24,-35],[-12,-44],[-26,-38],[-19,-70],[-13,-14],[-11,-34],[-8,-41],[14,-14],[7,-30],[-5,-25],[-17,-12],[-10,-27],[-28,-13],[-53,25],[-23,-6],[-10,-17],[4,-14],[-16,-20],[10,-20],[-16,-34],[-3,-17],[-20,-21],[-18,0],[-10,-18],[-36,-32],[-10,-35],[-9,-6],[-23,-39],[-4,-28],[20,-35],[7,-39],[24,-9],[20,-53],[-1,-22],[12,-17],[-8,-33],[-25,-18],[-8,2],[-11,-26],[-18,-13],[-20,7],[-13,-31],[3,-20],[-21,-20],[-16,13],[-19,-4],[-8,-13],[-7,-33],[-28,-1],[-12,-8],[-14,-40],[-24,-13],[-12,-31],[-47,-60],[-3,-14],[-16,-12],[-13,-23],[-17,4],[-15,-19],[-3,-24],[-15,-23],[-1,-17],[-36,-31],[-24,3],[-7,-25],[-17,-24],[16,-12],[-8,-35],[3,-20],[11,-6],[-6,-26],[-11,-3],[4,-25],[-4,-27],[-20,-17],[-12,-32],[-1,-30],[-19,-28],[-18,1],[-20,-18],[14,-39],[-1,-46],[9,-33],[35,-16],[9,-10],[-28,-55],[-28,-36],[-18,-37],[-22,-21],[-15,-55],[-13,-27],[7,-18],[-23,-78],[-28,-63],[9,-26],[-8,-5],[-5,-26],[-18,-14],[-19,-49],[-2,-29],[-14,-6],[-20,-43],[-1,-28],[-10,-8],[-1,-25],[-12,-14],[-22,-11],[-14,-20],[-1,-19],[-27,-20],[-54,-72],[-3,-14],[-36,-35],[-32,-46],[-47,-37],[-18,-19],[-3,-15],[-32,-36],[-9,-23],[-14,-15],[-4,-20],[-16,-31],[-22,5],[-16,-39],[-16,-12],[-5,-15],[-20,-23],[4,-34],[-20,1],[-22,-22],[-8,-27],[-30,-32],[-33,-3],[-12,-7],[-32,-41],[-34,-75],[1,-19],[-16,-21],[-2,-15],[-18,0],[-6,-28],[15,-47],[-21,-10],[-17,-18],[-10,-1],[-9,-23],[-26,-38],[-13,-48],[-16,-19],[-27,-17],[-30,-63],[-8,-38],[36,-52],[12,-8],[0,-26],[-39,7],[-14,-4],[-18,-28],[-18,-4],[-2,-25],[-24,1],[-12,-29],[8,-32],[-5,-13],[-23,3],[-7,-64],[-12,-39],[11,-30],[27,-19],[-1,-15],[-21,-38],[-20,-9],[-15,-36],[-13,-8],[-17,-35],[-37,-53],[-29,-17],[-3,-10],[59,-201],[42,-63],[95,-45],[70,-62],[-18,-44],[-35,-48],[-15,-28],[-34,-28],[-32,-39],[-56,-36],[-19,-22],[-12,-1],[-40,-37],[-23,-13],[-34,-28],[-62,-43],[57,-105],[-32,-28],[-22,-7],[-10,-23],[75,-51],[62,53],[33,-18],[-62,-146],[-33,-31],[-46,-27],[-35,-26],[-41,-9],[-82,-43],[13,-28],[-31,-34],[-37,-22],[-61,-46],[-10,-12],[-81,-60],[-62,-68],[-29,-24],[-21,-10],[-27,-36],[-38,-18],[-68,70],[-8,56],[15,75],[-65,139],[-18,-19],[-11,5],[-14,-14],[-31,1],[-16,-18],[-28,4],[-26,-6],[-33,-22],[-17,-19],[-69,-57],[-20,-30],[-31,-31],[-14,-7],[-63,-52],[-2,-15],[-34,-7],[-16,-13],[-1,-14],[-31,-31],[-23,-9],[-15,-18],[-62,-43],[-4,-6],[-67,-53],[-11,-2],[-28,-29],[-50,-29],[-48,-34],[-16,-2],[-21,-20],[-18,1],[-40,-30],[-36,-15],[-23,66],[-24,40],[-3,23],[-21,6],[-36,2],[-21,14],[1,31],[-90,100],[-22,27],[-11,3],[-19,-16],[-24,20],[-15,2],[-8,13],[-14,-31],[-7,-39],[9,-34],[-72,-160],[120,-214],[-58,-38],[-11,-10],[-40,-56],[-63,-71],[-75,-61],[-42,-19],[-70,-46],[-81,-21],[-22,8],[-7,19],[11,26],[-6,8],[-23,-3],[-42,-19],[-39,-13],[-42,-10],[-50,-22],[-59,-10],[-81,-22],[-29,-2],[-71,-22],[-104,-48],[-31,-19],[-59,-22],[-28,-14],[-44,-32],[-89,-83],[-72,-47],[-70,79],[-167,184],[-99,110],[-148,222],[-12,1],[-14,-38],[7,-25],[-14,-16],[-4,-21],[-24,-17],[-19,6],[-34,-13],[-3,-22],[-12,-28],[6,-19],[-29,-33],[-2,-31],[-14,-55],[-11,-26],[-14,-11],[0,-25],[-40,-13],[-19,16],[-13,2],[-8,-19],[-21,9],[-29,-29],[-25,-12],[-5,-31],[-49,-24],[-27,-30],[-42,9],[-14,29],[-13,-24],[-12,-45],[-1,-60],[-12,-16],[-16,-9],[-20,-21],[-13,5],[-32,-25],[-45,-20],[-4,-23],[-24,-44],[-24,-11],[-205,-15],[-211,-15],[-18,24],[-2,32],[-15,14],[-23,-1],[-16,38],[-17,19],[-14,6],[-12,19],[-15,7],[-2,32],[-23,34],[-30,-1],[-7,-11],[-24,-2],[-5,24],[-10,10],[4,35],[8,27],[-17,23],[-1,30],[-14,4],[-27,26],[2,43],[-29,-5],[-13,-11],[-29,13],[-8,26],[-13,15],[-22,11],[-14,-5],[-26,12],[-17,0],[-6,-14],[-44,-22],[-22,-1],[-10,13],[-21,3],[4,14],[-19,11],[-28,-10],[-24,18],[-3,24],[7,27],[-7,58],[-18,-10],[-22,27],[19,36],[-25,30],[-20,12],[-3,27],[-28,15],[-33,8],[-8,-10],[-14,15],[1,25],[-12,31],[-23,3],[-11,37],[-17,3],[-19,22],[-5,22],[-12,-1],[-12,23],[9,25],[-26,24],[6,44],[-15,11],[0,23],[16,22],[-9,23],[18,19],[-7,45],[3,21],[19,14],[0,13],[-13,27],[-15,4],[-9,28],[-10,0],[-9,52],[9,18],[8,36],[-11,12],[-25,-1],[-12,31],[-27,15],[-39,-9],[-3,28],[-14,11],[-12,22],[-14,0],[-19,-17],[-8,25],[-16,14],[-2,43],[-10,8],[-3,40],[13,18],[11,29],[14,5],[29,-6],[6,18],[29,16],[13,17],[24,-11],[16,4],[-5,44],[8,13],[28,5],[3,33],[54,20],[2,19],[-27,23],[-5,-23],[-13,-16],[-15,4],[-5,17],[7,21],[-14,40],[13,21],[-9,9],[-23,-21],[-16,8],[0,34],[-34,-15],[-3,29]],[[343561,302160],[10,32],[-18,19],[-21,-5],[-18,-21],[-28,3],[-10,-23],[-16,-3],[-2,29],[-14,-9],[-16,-40],[-20,-11],[-18,8],[-7,34],[-11,1],[-17,-15],[-11,0],[-25,25],[-8,30],[-20,0],[-1,-33],[9,-33],[-4,-33],[-19,-5],[0,25],[-9,13],[-18,5],[-17,-5],[-13,8],[3,34],[-31,64],[-11,10],[-31,-4],[-16,5],[-39,-19],[-18,4],[12,29],[-11,10],[-20,-9],[-24,3],[-12,-17],[-8,-26],[-26,1],[-13,10],[-4,21],[4,29],[-13,14],[-23,9],[9,28],[48,8],[13,23],[-8,51],[-20,47],[-31,10],[-25,-25],[-28,9],[-5,27],[5,49],[-2,21],[-24,-6],[-18,4],[-3,25],[18,36],[-11,15],[-33,-21],[-19,27],[2,25],[30,26],[2,14],[-17,35],[8,45],[-9,5],[-29,-1],[-17,-20],[10,-33],[7,-57],[-5,-15],[-14,-8],[-34,14],[-14,-16],[-34,1],[0,12],[-21,42],[13,33],[-6,13],[-17,8],[-8,25],[-2,26],[-24,14],[-11,25],[-17,11],[-36,-26],[-25,-1],[-25,26],[-24,16],[-11,27],[-9,6],[-16,35],[-9,-7],[-9,-34],[-27,12],[1,38],[-9,3],[-19,-13],[-5,15],[24,34],[5,15],[-23,29],[1,30],[20,22],[-2,13],[-16,20],[-22,9],[-11,30],[-1,26],[-16,18],[-14,79],[-24,9],[-23,27],[-5,13],[25,39],[21,12],[0,26],[14,24],[19,5],[0,19],[-12,7],[-47,-20],[-17,13],[-1,16],[38,32],[-3,14],[-21,4],[-11,-10],[-16,5],[-8,18],[3,25],[-6,22],[-32,7],[-22,36],[-22,4],[-10,10],[-15,31],[-25,4],[-16,59],[-17,31],[-12,0],[-30,-52],[-17,14],[4,29],[10,32],[-3,42],[-34,43],[-12,45],[-26,11],[-4,12],[20,42],[-1,8],[-32,23],[9,21],[44,9],[3,16],[-30,8],[-9,28],[0,51],[-4,12],[-34,19],[-9,11],[-6,27],[-13,28],[-32,21],[-17,28],[-27,4],[-12,32],[-17,-5],[-3,-13],[1,-49],[-8,-20],[-20,15],[8,29],[-3,20],[-15,22],[-29,12],[-1,19],[26,33],[-18,8],[-37,-1],[-22,36],[12,23],[23,-8],[8,20],[-22,13],[-6,24],[10,7],[24,-9],[23,19],[25,37],[10,32],[-46,21],[2,43],[11,10],[44,1],[15,26],[1,29],[-9,15],[-25,6],[-29,-16],[-9,8],[-5,28],[0,33],[-9,19],[-32,0],[-38,15],[-16,-13],[-21,17],[12,26],[-15,10],[-20,58],[-2,44],[-19,17],[-23,40],[-5,21],[7,34],[-13,14],[-11,28],[-4,42],[-15,20],[1,27],[-14,21],[-20,4],[-22,46],[-26,8],[-11,10],[-28,39],[-8,32],[1,65],[-9,14],[-19,11],[-17,30],[-31,27],[-44,-2],[-6,13],[0,54],[-5,10],[-43,18],[-8,11],[-5,39],[-1,60],[-15,37],[-6,25],[9,21],[17,7],[43,-6],[20,-9],[27,15],[32,117],[11,29],[4,58],[0,62],[-25,22],[-13,18],[-11,59],[15,60],[15,17],[33,-13],[31,2],[16,18],[23,91],[2,58],[-19,52],[0,36],[-10,31],[-1,19],[12,37],[26,50],[-3,32],[-10,23],[-4,32],[-28,31],[-16,38],[-23,12],[-9,20],[0,64],[2,46],[17,59],[-5,37],[-17,39],[-1,26],[17,33],[-9,65],[4,48],[8,23]],[[341351,307282],[0,-20],[36,-48],[42,-28],[39,-3],[38,-7],[42,4],[72,25],[56,26],[52,29],[96,39],[44,13],[56,23],[94,49],[53,-29],[28,2],[60,21],[85,15],[37,21],[22,27],[21,50],[12,43],[14,104],[20,59],[5,33],[-1,108],[4,32],[25,88],[8,107],[-1,67],[1,40],[22,43],[25,28],[18,32],[13,13],[33,16],[52,3],[13,-9],[65,-23],[13,-11],[58,3],[40,8],[18,11],[27,28],[14,23],[14,50],[4,75],[-17,101],[-13,51],[-18,46],[0,34],[-7,42],[-12,45],[3,40],[26,105],[1,19],[-17,80],[-2,61],[-6,25],[-13,22],[-8,65],[-16,39],[-25,28],[-33,25],[-15,39],[-3,71],[15,49],[21,32],[49,48],[15,25],[14,11],[26,6],[65,39],[16,17],[39,58],[13,32],[12,76],[6,66],[-8,51],[-13,52],[7,80],[9,16],[13,2],[3,22],[24,19],[23,61],[34,69],[14,86],[28,54],[23,57],[6,39],[10,23],[40,34],[42,26],[53,48],[22,57],[13,75],[15,41],[22,18],[34,15],[57,-1],[19,-15],[19,-25],[28,-61],[15,-52],[6,-50],[13,-10],[35,2],[30,13],[27,5],[35,-16],[30,-33],[23,-58],[34,-76],[16,-59],[21,-52],[21,-44],[7,-47],[-5,-24],[-30,-47],[-33,-39],[-13,-31],[-18,-23],[-5,-45],[10,-17],[33,-37],[19,-29],[42,-27],[27,-4],[14,7],[43,35],[56,52],[36,65],[12,51],[-3,18],[6,90],[23,49],[23,38],[23,16],[38,-2],[28,-24],[35,-55],[38,-37],[41,-19],[27,0],[22,17],[14,45],[-3,21],[-14,5],[-17,41],[-46,62],[-7,18],[-4,35],[11,60],[11,31],[-4,21],[12,61],[29,42],[4,38],[-1,38],[-12,32],[-20,34],[-16,17],[-18,28],[-43,41],[-29,36],[-16,35],[-15,44],[-6,43],[0,64],[12,20],[14,5],[30,-7],[27,-18],[32,-10],[37,10],[30,20],[29,30],[15,23],[16,33],[6,29],[5,48],[-5,73],[-3,17],[-2,66],[5,50],[-7,18],[-20,87],[-17,70],[1,23],[21,32],[35,20],[19,36],[7,54],[25,60],[57,22],[30,7],[24,20],[10,21],[-4,51],[-13,44],[-2,68],[26,58],[20,28],[22,19],[26,10],[49,8],[38,0],[82,-21],[49,14],[49,-17],[21,-20],[52,-15],[13,3],[10,17],[7,32],[1,103],[17,139],[2,75],[8,46],[53,82],[20,12],[7,17],[37,21],[59,52],[31,33],[56,78],[35,61],[19,21],[41,32],[34,6],[38,-11],[25,-18],[56,-62],[21,-38],[21,-109],[18,-80],[16,-39],[24,-31],[30,-10],[16,5],[51,4],[43,21],[50,54],[35,26],[56,57],[34,28],[52,25],[17,24],[26,15],[30,2],[35,20],[29,1],[49,-21],[23,-3],[14,8],[20,31],[3,62],[20,41],[51,74],[20,46],[18,21],[33,24],[25,12],[39,11],[51,4],[13,7],[34,48],[33,74],[4,2],[48,120],[29,52],[62,83],[14,30],[39,42],[53,78],[43,41],[22,25],[10,27],[18,23],[26,23],[11,16],[51,47],[21,35],[32,36],[29,39],[95,97],[37,46],[26,15],[29,7],[40,-1],[50,-10],[42,23],[13,30],[20,76],[4,46],[11,33],[5,78],[-5,72],[3,46],[14,42],[26,22],[34,11],[39,24],[7,12],[7,49],[-7,34],[-10,10],[-48,109],[-16,3],[-44,71],[-17,60],[13,47],[20,30],[27,19],[5,11],[58,50],[32,46],[14,76],[-3,26],[1,57],[-11,50],[-4,40],[10,32],[27,34],[55,32],[28,30],[8,21],[2,29],[-10,51],[-13,29],[-18,30],[-13,30],[-14,53],[8,58],[9,15],[32,9],[30,-8],[22,-13],[36,-33],[38,-10],[13,27],[-2,47],[-15,46],[-11,97],[4,44],[27,44],[34,31],[20,24],[-3,13],[7,51],[-3,56],[-7,51],[-1,50],[4,31],[10,35],[3,47],[18,44],[4,48],[-9,87],[-15,36],[-5,54],[6,29],[22,37],[22,25],[38,34],[19,29],[7,54],[-13,86],[2,76],[9,35],[8,54],[68,160],[48,62],[15,42],[14,113],[10,62],[33,88],[26,36],[27,18],[51,43],[12,20],[11,41],[-2,75],[6,39],[30,69],[13,19],[10,61],[-10,59],[-28,75],[-7,40],[3,43],[11,40],[4,44],[-7,31],[-34,40],[-44,28],[-2,40],[31,20],[39,33],[-6,35],[6,17],[1,37],[-3,66],[3,31],[10,36],[16,32],[2,18],[22,51],[7,28],[5,47],[-3,23],[-13,42],[-34,40],[-33,73],[-15,106],[-18,89],[-20,17],[-31,59],[-37,79],[-13,19],[-29,24],[-10,29],[-3,50],[15,42],[66,74],[19,44],[19,28],[27,24],[30,5],[55,25],[30,-10],[35,-46],[19,-9],[27,10],[15,13],[23,33],[30,28],[21,6],[56,38],[15,-1],[24,16]],[[332842,264275],[0,-80],[-12,-41],[7,-36],[16,-12],[44,-17],[16,-17],[7,-20],[2,-47],[-8,-42],[-5,-66],[5,-10],[24,-17],[17,-18],[4,-33],[9,-27],[38,-56],[23,-59],[25,-52],[26,-21],[0,-26],[-16,-35],[3,-21],[21,-30],[-1,-17],[-12,-21],[10,-40],[24,-33],[4,-28],[-5,-15],[-17,-4],[-13,-26],[-5,-50],[1,-39],[21,-46],[10,-39],[-3,-44],[8,-35],[30,-70],[0,-34],[-7,-37],[18,-27],[2,-42],[12,-16],[17,-3],[11,7],[19,-2],[32,-47],[7,-20],[9,-39],[31,-33],[14,-21],[12,-28],[12,-43],[100,-5],[309,-25],[220,-15],[149,-11],[134,-12],[223,-17],[153,-14],[90,-10],[190,-8],[162,-9],[216,-19],[224,-14],[196,-16],[247,-19],[61,-8],[123,-8],[193,-15],[150,-14],[217,-18],[129,-9],[99,-11],[353,-29],[185,-17],[73,-6],[183,-17],[442,-36],[70,-9],[110,-10],[69,-5],[138,-13],[348,-34],[153,-16],[301,-28],[112,-13],[51,-4],[183,-17],[141,-14],[90,-8],[398,-38],[67,-6],[418,-43],[78,-6],[103,-11],[261,-23],[121,-12],[23,-4],[286,-27],[450,-45],[415,-44],[153,-17],[-9,-20],[-23,1],[-37,-44],[0,-52],[-14,-15],[-7,-48],[5,-23],[28,-41],[6,-36],[-4,-16],[19,-59],[24,-18],[20,-23],[2,-14],[20,-33],[18,-43],[-7,-17],[6,-12],[2,-31],[-12,-33],[-7,-2],[1,-35],[-5,-32],[10,-10],[-3,-36],[3,-37],[-10,-48],[-8,-14],[2,-22],[-6,-15],[11,-26],[3,-52],[13,-50],[1,-27],[17,-43],[-3,-12],[20,-8],[2,-53],[9,-15],[19,14],[8,-35],[16,-31],[16,-15],[6,-28],[33,-13],[15,13],[29,11],[5,-5],[30,23],[21,-16],[31,26],[27,-13],[5,19],[20,-7],[20,13],[36,-46],[16,2],[36,-13],[24,15],[27,-20],[19,14],[7,-7],[31,19],[20,31],[23,23],[2,36],[-5,23],[4,31],[-6,10],[-6,31],[-6,15],[-9,41],[3,9],[3,60],[10,-2],[20,24],[-3,64],[-8,26],[13,40],[20,27],[-4,20],[3,28],[10,10],[10,30],[-5,16],[26,59],[-2,54],[4,26],[-4,25],[6,9],[2,30],[-7,13],[9,52],[-6,60],[-8,44],[10,62],[8,17],[-2,23],[29,108],[-8,24],[1,41],[4,9],[-9,30],[-10,18],[0,41],[-16,53],[-13,7],[-13,18],[-12,3],[4,37],[-8,38],[-13,29],[-9,7],[3,20],[-19,23],[1,54],[-20,58],[-15,12],[-2,35],[9,6],[-12,70],[2,14],[21,41],[9,43],[-4,39],[12,17],[11,30],[-3,38],[-8,12],[6,19],[-10,37],[-19,21],[11,31],[12,14],[-5,23],[5,24],[-3,19],[11,41],[16,-21],[19,3],[7,10],[26,13],[-10,11],[31,27],[0,14],[-15,48],[-7,-2],[-7,29],[-14,35],[5,29],[19,-2],[1,21],[24,-1],[26,-9],[24,-17],[25,-38],[27,-19],[13,-1],[17,18],[14,71],[22,26],[2,24],[-12,36],[10,7],[-5,23],[7,14],[-8,20],[29,27],[21,29],[26,-13],[19,20],[12,-49],[15,-3],[5,-15],[21,-3],[13,5],[28,-11],[16,5],[6,24],[-11,25],[6,17],[16,10],[14,-21],[15,-4],[7,-18],[-1,-35],[23,-32],[9,-35],[1,-28],[22,-2],[19,-12],[6,-27],[18,8],[37,3],[17,-18],[30,-3],[1,-26],[33,16],[23,-15],[17,18],[43,0],[16,-18],[6,-15],[22,17],[10,-25],[25,-53],[-7,-27],[12,-16],[5,-28],[32,13],[-5,23],[12,37],[1,17],[29,-8],[13,-28],[29,-21],[32,-12],[-6,-21],[8,-19],[29,-17],[-1,-30],[21,-20],[29,-11],[34,18],[27,-12],[18,14],[12,-3],[12,-35],[32,0],[23,-16],[15,14],[-6,35],[-12,5],[-17,-20],[-14,12],[7,20],[41,8],[22,16],[12,-18],[-13,-32],[10,-20],[22,12],[11,-22],[-9,-43],[4,-22],[19,-12],[20,9],[13,26],[12,-2],[7,-25],[11,-2],[1,30],[7,15],[13,0],[10,-36],[-9,-24],[2,-15],[27,-3],[14,-35],[18,12],[0,47],[10,15],[19,-4],[7,-19],[-4,-37],[14,-2],[22,29],[51,-10],[13,-16],[20,-13],[-2,-17],[13,-13],[31,35],[18,-5],[9,-30],[17,-18],[17,20],[-2,43],[3,20],[12,7],[18,-6],[41,-4],[29,4],[55,17],[17,-6],[35,-62],[39,-20],[45,-8],[38,3],[37,-7],[93,6],[-2,15],[202,0]],[[345754,262605],[2,-64],[-2,-27],[-16,-64],[-23,-56],[-35,-56],[-19,-21],[-5,-48],[-21,-157],[-4,-67],[-2,-87],[2,-100],[6,-118],[9,-109],[9,-67],[19,-57],[19,-75],[15,-33],[18,-67],[9,-62],[2,-50],[-7,-76],[-2,-62],[3,-17],[53,-49],[22,-30],[26,-48],[18,-48],[11,-51],[-2,-79],[-15,-90],[-28,-68],[-21,-32],[0,-136],[7,-115],[10,-107],[17,-118],[28,-152],[-8,0],[15,-98],[55,-321],[53,-321],[107,-724],[19,-101],[27,-119],[10,-39],[14,-77],[30,-77],[10,-43],[32,-178],[10,-41],[10,-50],[10,-114],[1,-117],[3,-75],[17,-63],[4,-60],[23,-133],[23,-105],[67,-215],[11,-63],[2,-27],[12,-65],[16,-64],[23,-111],[23,-84],[28,-112],[9,-41],[44,-165],[10,-31],[47,-166],[65,-196],[48,-166],[105,-390],[-13,-3],[162,-554],[155,-502],[55,-223],[68,-235],[50,-153],[113,-225],[104,-251],[114,-286],[174,-438],[50,-120],[99,-243],[103,-245],[201,-478],[38,-87],[47,-92],[265,-546],[34,-62],[14,-36],[28,-119],[22,-127],[18,-148],[75,-232],[16,-45],[26,-117],[7,-54],[-3,-58],[-10,-56],[-14,-53],[-18,-50],[-22,-42],[-21,-31],[-22,-20],[-70,-107],[-52,-321],[-34,-374],[34,-214],[53,-391],[69,-519],[12,-42],[68,-212],[11,-40],[47,-152],[51,-153],[61,-187],[81,-232],[23,-58],[27,-94],[60,-201],[26,-78],[91,-290],[33,-92],[15,-63],[31,-148],[35,-180],[29,-154],[9,-30],[8,-50],[5,-82],[36,-81],[12,-24],[24,-133],[22,-146],[26,-138],[17,-65],[23,-104],[14,-38],[0,-19],[21,-31],[24,-58],[13,-53],[5,-74],[0,-57],[20,-93],[32,-129],[86,-286],[69,-260],[149,-528],[38,-108],[20,-53],[9,-55],[26,-58],[19,-67],[5,-98],[13,-47],[33,-175],[30,-99],[32,-97],[36,-157],[50,-200],[21,-123],[10,-49],[27,-173],[93,-513],[9,-38],[11,-85],[0,-24],[20,-120],[5,-40],[29,-166],[4,-45],[-4,-63],[2,-39],[-2,-57],[-6,-51],[-9,-34],[4,-102],[-2,-35],[5,-62],[11,-45],[-1,-63],[-6,-58],[-11,-58],[-4,-80],[-2,-77],[0,-145],[3,-173],[-5,-92],[-2,-60],[-12,-106],[2,-36],[-3,-44],[-8,-57],[-10,-25],[-10,-131],[-8,-43],[-2,-53],[-10,-73],[-22,-222],[-29,-409],[-4,-240],[-5,-365],[-40,-449],[-45,-510],[-40,-681],[-55,-420],[21,-134],[20,-241],[-9,-252],[-29,-217],[-15,-37],[-6,-33],[-13,-40],[-19,-43],[-33,-49],[10,-67],[-1,-48],[-6,-42],[-24,-74],[10,-58],[1,-52],[-9,-60],[-25,-85],[20,4],[27,-3],[35,-13],[29,-21],[42,-41],[17,-30],[31,-80],[12,-48],[2,-53],[-3,-57],[-16,-71],[-30,-67],[-32,-41],[-50,-39],[-43,-14],[-27,-3],[-29,5],[-27,12],[-1,-45],[-8,-46],[4,-38],[-1,-37],[-12,-72],[-6,0],[-9,-33],[-9,-11],[10,-30],[-6,-76],[-11,-49],[-29,-88],[-3,-46],[-11,-48],[37,-37],[23,-30],[21,-44],[25,-85],[5,-78],[-9,-69],[-13,-49],[-22,-53],[-30,-39],[-8,-69],[-25,-74],[-25,-39],[-9,-31],[-22,-41],[-26,-36],[-39,-36],[-49,-21],[-33,-1],[-41,8],[-29,16],[-30,-48],[-60,-183],[16,-29],[21,-59],[12,-85],[-5,-73],[-8,-44],[-17,-58],[-42,-92],[-36,-51],[-41,-34],[-36,-14],[-55,-1],[-10,-66],[-10,-34],[-61,-149],[-46,-116],[-30,-63],[-39,-67],[-18,-22],[-60,-58],[-32,-24],[-23,-9],[-2,-81],[-6,-46],[-13,-41],[-22,-50],[-24,-40],[-20,-24],[-32,-29],[-53,-33],[-4,-71],[-18,-71],[-28,-56],[-34,-45],[-23,-24],[-30,-20],[-78,-32],[-51,-13],[-13,-42],[-25,-57],[-46,-63],[-41,-37],[-33,-23],[-27,-10],[-28,-39],[-24,-21],[-14,-5],[-40,-83],[-5,0],[-28,-39],[-18,-18],[-12,-30],[-18,-32],[-30,-38],[-14,-13],[-29,-42],[-42,-41],[-61,-31],[-18,-2],[-22,-29],[-28,-29],[-27,-18],[-43,-46],[-38,-29],[-31,-14],[-10,-14],[-30,-24],[-20,-10],[-40,-74],[-51,-59],[-44,-27],[-34,-9],[-29,-3],[-40,11],[-27,-25],[-59,-40],[-30,-9],[-24,3],[-32,-54],[-25,-21],[-36,-63],[-30,-31],[-22,-19],[-44,-17],[-47,-3],[-17,-23],[-36,-40],[-40,-34],[-42,-20],[-36,-40],[-32,-21],[-45,-49],[-37,-29],[-12,1],[-31,-12],[-38,-10],[-9,-28],[-17,-34],[-30,-46],[-32,-37],[-43,-25],[-59,-15],[-73,-2],[-49,8],[-49,13],[-33,19],[-24,19],[-24,34],[-15,-24],[-22,-27],[-27,-24],[-24,-15],[-40,-13],[-35,-3],[-37,3],[-43,-46],[-31,-20],[-31,-14],[-20,-2],[-19,-38],[-33,-40],[-36,-25],[-25,-13],[-55,-7],[-22,5],[-38,-24],[-50,-20],[-68,-25],[-30,-24],[-34,-6],[-30,-30],[-37,-17],[-37,-9],[-93,-2],[-32,6],[-58,-56],[-51,-32],[-48,-15],[-34,3],[-30,12],[-20,14],[-20,27],[-18,-6],[-53,19],[-6,-14],[-41,-53],[14,-45],[13,-56],[5,-54],[-1,-54],[-9,-57],[-14,-40],[-10,0],[-7,-22],[-33,-61],[-41,-47],[-48,-30],[-36,-11],[-37,1],[-13,-25],[-26,-33],[-48,-39],[-53,-18],[-25,-1],[-17,-17],[-24,-14],[-41,-13],[-16,-12],[-22,-8],[-39,-5],[-16,-13],[-54,-27],[-51,-15],[-65,6],[-38,19],[-28,22],[-24,29],[-26,40],[-26,78],[-12,56],[-2,38],[6,97],[-24,-7],[-46,4],[14,-25],[18,-73],[5,-103],[-25,-124],[-41,-72],[-46,-55],[-42,-29],[-55,-29],[-31,-10],[-60,-13],[-28,-3],[-28,3],[-41,12],[-31,-28],[-28,-18],[-34,-8],[-50,3],[-41,14],[-42,34],[-32,39],[-25,52],[-19,62],[-8,80],[4,67],[15,64],[8,19],[-28,11],[-40,8],[-20,12],[-6,-6],[-45,3],[-34,10],[-38,27],[-37,42],[-23,41],[-25,102],[-32,54],[-18,-35],[-24,-35],[-30,-32],[-45,-35],[-18,2],[-28,-13],[-62,-5],[-39,9],[-34,-9],[-43,2],[-40,11],[-61,47],[-46,66],[-31,76],[-17,58],[-7,86],[8,96],[13,53],[17,47],[30,53],[35,57],[42,53],[54,61],[39,31],[57,22],[62,9],[65,-4],[70,-22],[109,-106],[86,-57],[58,79],[20,22],[16,6],[20,16],[23,35],[17,16],[24,13],[51,22],[8,16],[20,22],[30,22],[30,14],[36,10],[35,2],[29,23],[60,20],[32,-1],[45,-7],[12,-7],[27,35],[22,19],[22,9],[17,24],[28,22],[27,13],[9,15],[28,30],[32,25],[61,21],[12,19],[51,49],[36,24],[50,11],[18,-3],[43,36],[21,11],[19,44],[27,41],[42,34],[47,23],[29,34],[82,70],[48,29],[27,42],[36,31],[19,9],[18,31],[33,42],[32,24],[24,7],[13,17],[56,23],[29,28],[20,11],[41,16],[10,28],[38,54],[24,22],[33,20],[11,16],[33,32],[18,13],[37,18],[24,3],[6,9],[35,35],[24,17],[60,21],[22,-2],[42,40],[34,18],[41,6],[51,-11],[47,-30],[20,-20],[39,-55],[17,22],[26,22],[27,12],[32,9],[59,4],[44,-17],[23,-15],[16,20],[49,38],[27,12],[52,5],[55,-17],[23,1],[35,-12],[50,-31],[15,-15],[34,-55],[34,-90],[33,-12],[51,-30],[31,-33],[29,-48],[23,-55],[12,-39],[44,20],[24,4],[59,-4],[27,-13],[41,-39],[45,-53],[48,18],[37,3],[10,15],[49,43],[43,16],[9,12],[33,13],[1,-11],[27,11],[22,-1],[36,31],[39,16],[12,38],[27,48],[53,49],[30,17],[25,7],[51,1],[31,22],[29,8],[12,37],[-41,65],[-55,-50],[-34,-20],[-33,-11],[-24,-2],[-28,5],[-35,17],[-51,39],[-23,31],[-22,45],[-13,40],[-8,41],[-6,42],[-2,56],[-20,13],[-31,34],[-24,39],[-17,33],[-23,60],[-10,42],[-28,13],[-20,17],[-14,24],[-29,78],[-11,51],[-8,58],[-4,73],[-26,66],[-22,110],[-19,24],[-22,38],[-21,46],[-20,85],[-19,5],[-43,24],[-14,12],[-34,47],[-19,34],[-15,41],[-8,34],[-28,40],[-22,7],[-44,23],[-36,41],[-21,32],[-21,49],[-19,79],[-3,76],[4,50],[-17,54],[-16,13],[-38,52],[-19,47],[-15,57],[-7,46],[-14,40],[-11,71],[4,92],[18,64],[19,47],[0,49],[15,77],[10,28],[-1,54],[9,46],[18,62],[-2,15],[6,61],[11,42],[27,73],[-15,41],[-19,75],[-1,129],[1,67],[-9,10],[-28,67],[-10,40],[-9,61],[-18,26],[-13,33],[-8,1],[-48,70],[-45,93],[-11,32],[-12,47],[-4,39],[2,25],[-15,38],[-10,46],[-10,92],[-26,51],[-15,51],[-16,16],[-32,59],[-13,38],[-34,40],[-17,35],[-14,46],[-22,101],[-6,45],[-14,14],[-26,48],[-17,45],[-49,4],[-42,18],[-48,42],[-22,30],[-22,37],[-15,37],[-5,23],[-19,44],[-10,36],[-3,32],[-13,35],[-1,16],[-22,23],[-24,39],[-17,36],[-29,97],[-4,36],[-23,8],[-43,31],[-7,12],[-43,12],[-35,22],[-19,21],[-44,37],[-37,61],[-5,18],[-31,27],[-10,19],[-26,15],[-14,2],[-51,27],[-26,19],[-18,21],[-22,39],[-51,28],[-20,-76],[-15,-36],[-35,-52],[-43,-40],[-31,-20],[-59,-10],[-28,1],[-62,-2],[-59,9],[-47,31],[-21,28],[-40,69],[-14,41],[-18,87],[-19,34],[-16,38],[-11,42],[-7,53],[-27,39],[-14,29],[-18,60],[-14,15],[-26,39],[-18,32],[-23,76],[-6,49],[-4,67],[-42,64],[-16,39],[-12,56],[-6,71],[3,37],[15,80],[-21,59],[-9,42],[-22,52],[-19,36],[-36,99],[-31,102],[-36,126],[-19,109],[-12,154],[-25,519],[-6,96],[-24,86],[-8,43],[-11,102],[-7,46],[-9,85],[-10,60],[-19,77],[-18,64],[-17,74],[-12,41],[-44,119],[-57,97],[-25,39],[-89,109],[-39,32],[-80,-17],[-26,-8],[-42,-33],[-63,-42],[-53,-41],[-31,-16],[-26,-8],[-30,-1],[-51,8],[-25,7],[-47,23],[-29,26],[-15,23],[-70,82],[-54,96],[-47,121],[-14,18],[-61,48],[-38,17],[-39,26],[-19,34],[-25,30],[-28,56],[-16,56],[-17,78],[-43,263],[-4,9],[-60,162],[-19,106],[-2,59],[1,37],[-29,56],[-21,66],[-33,50],[-39,89],[-19,58],[-10,45],[-3,29],[4,71],[10,77],[13,37],[-8,29],[-3,29],[3,38],[8,46],[-10,76],[4,9],[-9,120],[-26,44],[-13,37],[-11,40],[-7,74],[-129,281],[-71,136],[-150,410],[-78,196],[-16,54],[-13,51],[-18,42],[-45,97],[-21,56],[-30,71],[-10,35],[-23,108],[-12,68],[-36,90],[-5,26],[-12,109],[-10,36],[-14,65],[-32,88],[-24,79],[-18,80],[-10,88],[-23,65],[-23,44],[-33,50],[-51,51],[-38,44],[-37,65],[-23,66],[-8,75],[-10,66],[-14,58],[-23,51],[-89,138],[-42,80],[-10,15],[-61,149],[-35,115],[-56,71],[-49,80],[-68,203],[-17,76],[-21,78],[-53,104],[-14,29],[-110,207],[-20,113],[-10,113],[0,83],[10,99],[20,113],[14,60],[-14,106],[9,121],[30,106],[-5,91],[-132,272],[-113,220],[-67,174],[-26,85],[-19,113],[-5,50],[-3,133],[6,66],[17,148],[16,100],[23,81],[11,31],[-1,28],[6,56],[7,24],[4,62],[-1,42],[-8,42],[-1,36],[7,43],[-1,21],[9,54],[15,51],[-31,38],[-12,25],[-15,58],[-8,53],[1,43],[8,79],[4,85],[-12,24],[-19,48],[-5,25],[-6,93],[4,58],[5,29],[2,41],[-14,84],[1,58],[-7,33],[-3,75],[6,75],[21,82],[30,67],[23,34],[24,26],[25,16],[45,14],[77,13],[63,-22],[4,47],[20,81],[13,36],[16,31],[33,40],[7,50],[0,68],[-23,82],[-4,74],[2,44],[7,45],[12,48],[32,59],[2,39],[14,56],[16,35],[27,43],[26,38],[7,38],[20,52],[3,26],[12,40],[13,30],[-9,54],[4,79],[20,78],[-14,67],[-8,25],[0,46],[9,55],[-8,36],[-3,39],[4,76],[8,40],[11,35],[-2,33],[5,43],[8,44],[12,35],[29,62],[-13,39],[-13,69],[-20,64],[-33,63],[-22,35],[-14,32],[-18,51],[-11,74],[0,32],[-10,18],[-17,55],[-4,31],[-23,47],[-16,49],[-10,70],[0,46],[4,42],[8,40],[-20,51],[-29,57],[-13,47],[-3,27],[-17,50],[-8,45],[-3,76],[1,41],[6,56],[22,84],[32,65],[6,63],[-14,29],[-22,68],[-4,23],[-7,69],[-28,10],[-29,18],[-31,25],[-28,34],[-11,17],[-27,67],[-16,74],[-5,55],[5,59],[11,49],[30,66],[-15,32],[-18,75],[-3,56],[6,10],[7,90],[-24,42],[-15,35],[-10,41],[-5,45],[-29,-3],[-46,7],[-26,10],[-26,17],[-23,21],[-17,24],[-33,11],[-37,21],[-25,24],[-33,45],[-31,-18],[-68,-22],[-19,-35],[-21,-34],[-37,-38],[-53,-26],[-33,-7],[-69,12],[-16,-11],[-53,-20],[-45,0],[-57,26],[-19,3],[-48,18],[-49,48],[-31,37],[-37,48],[-22,51],[-13,49],[-13,84],[-11,28],[-14,52],[-6,40],[-2,62],[6,48],[-25,74],[-4,110],[7,57],[-35,35],[-42,69],[-15,49],[-57,31],[-39,44],[-32,61],[-21,84],[-4,57],[2,55],[-3,67],[6,56],[0,51],[3,52],[-39,48],[-34,58],[-50,17],[-43,36],[-42,58],[-14,33],[-15,46],[-9,53],[0,83],[-31,7],[-40,23],[-26,24],[-27,31],[-17,28],[-13,32],[-18,68],[-11,65],[-40,43],[-62,15],[-76,61],[-25,8],[-27,16],[-23,22],[-26,38],[-20,46],[-16,54],[-33,185],[-1,32],[-9,28],[-7,53],[0,67],[4,20],[-10,30],[-11,85],[-1,38],[10,44],[-9,30],[-1,59],[9,65],[6,17],[-31,42],[-29,57],[-24,-10],[-50,14],[-37,21],[-29,27],[-28,34],[-44,103],[-10,49],[-38,16],[-42,33],[-28,34],[-19,0],[-60,34],[-43,39],[-36,64],[-17,61],[-12,28],[-22,42],[-18,47],[-9,59],[-5,60],[-11,80],[-5,95],[1,36],[-35,33],[-32,52],[-25,70],[-6,38],[-42,59],[-23,58],[-12,47],[-47,44],[-31,52],[-45,36],[-21,25],[-27,47],[-8,-2],[-45,24],[-57,2],[-63,13],[-51,24],[-54,47],[-39,49],[-46,14],[-52,41],[-15,16],[-28,45],[-33,85],[-42,3],[-61,15],[-38,28],[-43,63],[-26,61],[-8,26],[-42,20],[-42,42],[-20,41],[-30,3],[-77,31],[-39,19],[-45,40],[-22,33],[-27,62],[-82,-27],[-35,-6],[-38,-23],[-22,-7],[-42,-7],[-14,3],[-18,-60],[-33,-73],[-35,-48],[-27,-20],[-32,-14],[-33,-7],[-23,5],[-7,-11],[-58,-33],[-59,0],[-57,19],[-54,38],[-15,17],[-17,-4],[-34,5],[-16,-50],[-33,-48],[16,-50],[14,-51],[3,-38],[-3,-71],[-17,-66],[-26,-58],[-24,-44],[-8,-57],[-8,-46],[-11,-33],[-16,-35],[-14,-19],[-4,-35],[-20,-46],[-21,-30],[-23,-27],[-48,-39],[-50,-20],[-61,-2],[-17,4],[-27,-11],[-28,-5],[-27,2],[-44,10],[-23,11],[-30,26],[-36,15],[-34,-2],[-54,19],[-62,-92],[-32,-33],[-39,-21],[-55,-11],[-45,3],[-3,-46],[-12,-69],[-8,-26],[-6,-49],[-6,-29],[-19,-60],[-16,-31],[-34,-51],[-52,-39],[-52,-13],[-7,-18],[-44,-55],[-48,-27],[-24,-2],[-21,-20],[-31,-15],[-31,-10],[-33,-1],[-6,-12],[-32,-13],[-12,-23],[-31,-31],[-18,-11],[-6,-23],[-30,-60],[-22,-34],[-22,-22],[-22,-13],[-16,-44],[-28,-43],[-39,-45],[-23,-43],[-34,-40],[-50,-40],[-30,-12],[-18,-27],[-34,-28],[-20,-10],[-46,-15],[-14,-18],[-21,-16],[-35,-16],[-49,-8],[-45,-46],[-34,-10],[-15,-22],[-50,-30],[-40,-53],[-36,-21],[-9,-18],[-40,-31],[-14,-20],[-37,-30],[-13,-2],[-27,-30],[-41,-25],[-28,-8],[-32,-21],[-41,-10],[-16,-20],[-44,-14],[-28,-17],[-39,-7],[-30,5],[-7,-12],[-39,-34],[-21,-14],[-34,-14],[-52,-4],[-53,14],[-27,17],[-42,45],[-17,27],[-51,90],[-50,43],[-12,-1],[-60,17],[-50,27],[-54,39],[-43,44],[-35,48],[-50,51],[-45,33],[-45,22],[-40,0],[-13,8],[-47,14],[-33,14],[-26,4],[-43,2],[-8,-21],[-39,-67],[-24,-27],[-51,-38],[-23,-8],[-46,-5],[-29,2],[-35,10],[-34,17],[-27,25],[-24,36],[-37,73],[-57,92],[-12,25],[-23,68],[-18,36],[-26,81],[-11,49],[-25,87],[-8,34],[-13,73],[-14,55],[-17,120],[-20,116],[-10,75],[-7,70],[-4,64],[-4,113],[4,123],[14,90],[17,62],[22,59],[44,69],[-44,32],[-44,-4],[-65,14],[-54,20],[-47,28],[-77,66],[-12,17],[-34,32],[-66,78],[-21,30],[-35,43],[-27,47],[-40,81],[-68,119],[-23,53],[-39,30],[-28,27],[-52,17],[-79,45],[-75,48],[-59,53],[-39,32],[-44,47],[-9,6],[-55,55],[-57,88],[-20,35],[-34,49],[-49,60],[-45,51],[-72,62],[-100,99],[-16,19],[-37,31],[-42,30],[-92,76],[-35,38],[-34,29],[-60,36],[-41,33],[-85,56],[-469,276],[-184,100],[-335,153],[-89,32],[-328,90],[-50,9],[-72,11],[-193,16],[-46,-15],[-84,7],[-45,27],[-60,12],[-39,4],[-28,11],[-58,14],[-73,10],[-55,10],[-74,4],[-50,-3],[-105,-13],[-43,2],[-40,-2],[-94,-16],[-106,-14],[-153,-30],[-67,-14],[-53,-13],[-54,-11],[-68,-11],[-96,-25],[-159,-51],[-163,-47],[-82,-13],[-146,-37],[-102,-35],[-61,-15],[-50,-27],[-49,-17],[-86,-14],[-124,-33],[-81,-18],[-102,-11],[-27,-7],[-55,22],[-49,25],[-33,2],[-86,-46],[-191,-63],[-71,-21],[-161,-34],[-128,-46],[-82,-18],[-65,-22]],[[323955,259806],[0,315],[58,24],[7,0],[168,71],[8,63],[-33,-16],[-20,-4],[-38,1],[-27,-18],[-40,2],[-30,15],[-8,20],[-1,48],[5,27],[16,28],[36,13],[35,0],[28,4],[32,13],[38,58],[5,17],[-5,86],[3,31],[7,17],[23,29],[15,39],[-9,39],[2,17],[13,27],[9,8],[12,42],[23,29],[26,1],[33,-6],[17,8],[16,30],[14,15],[28,14],[29,28],[32,38],[9,28],[-1,22],[-13,37],[-37,19],[-38,8],[-18,-6],[-27,14],[-14,22],[-21,3],[-11,22],[-16,12],[-26,43],[-3,34],[-18,24],[9,22],[-1,22],[16,9],[-11,23],[5,17],[-33,58],[-18,5],[-10,17],[2,35],[6,7],[-6,28],[7,37],[17,14],[-2,31],[20,57],[27,42],[4,29],[12,16],[18,5],[-2,14],[10,46],[12,6],[5,40],[10,18],[3,72],[6,7],[-1,35],[32,32],[7,37],[-6,12],[11,57],[0,25],[-7,26],[4,34],[-10,35],[1,40],[-21,13],[0,45],[-11,9],[-2,47],[-14,14],[-24,13],[-28,24],[-17,27],[-23,3],[-14,11],[-12,24],[-18,13],[-3,13],[-32,-7],[-8,11],[-20,6],[-25,24],[-12,29],[-3,20],[-14,23],[-69,22],[-14,31],[-12,9],[-11,33],[-11,-3],[-11,17],[-17,9],[-23,27],[-20,41],[-3,68],[-12,17],[-24,47],[5,36],[-19,17],[-4,25],[-28,29],[-16,33],[-28,22],[-20,50],[-17,23],[-37,19],[-29,31],[-2,23],[-10,35],[-39,17],[-6,34],[-33,38],[-3,16],[7,30],[-10,32],[-13,12],[-11,26],[16,55],[4,24],[31,41],[-5,55],[22,30],[1,18],[11,45],[16,51],[1,12],[16,46],[4,23],[11,13],[25,79],[1,32],[8,24],[0,26],[-10,25],[-6,43],[4,15],[-15,41],[-8,60],[168,0],[11,2],[99,-2],[71,1],[61,3],[20,-2],[182,-1],[37,2],[210,-1],[61,2],[15,-2],[76,0],[2,3],[126,-1],[35,-3],[50,1],[52,-9],[45,5],[111,6],[186,8],[56,-5],[21,4],[226,-2],[110,2],[69,-1],[21,-3],[257,-6],[130,0],[206,-2],[266,-4],[35,-2],[28,3],[49,-2],[67,-11],[181,0],[70,2],[209,0],[38,2],[153,-12],[26,3],[46,-2],[147,4],[12,-2],[176,4],[58,-1],[51,1],[200,-1],[97,-3],[119,1],[64,3],[39,-2],[164,0],[20,-2],[150,-2],[39,-3],[213,0],[18,3],[199,-1],[4,-2],[437,4],[15,1],[427,6],[1,3],[283,2],[358,4],[241,3],[460,11],[343,8],[102,4],[119,0],[161,1],[66,-2],[224,1],[83,-1],[199,0]],[[339974,227197],[-10,47],[-4,49],[0,36],[7,88],[27,92],[48,82],[45,44],[38,27],[27,11],[117,192],[89,32],[32,17],[231,0],[119,-142],[0,-196],[-121,-296],[-17,-14],[27,-60],[-23,1],[-85,-109],[-27,-25],[-45,-26],[-43,-8],[-48,0],[-44,16],[-46,30],[-99,-30],[-31,0],[-37,7],[-38,15],[-26,18],[-33,27],[-20,38],[-10,37]],[[310176,318620],[22,23],[57,5],[45,19],[30,32],[10,42],[2,72],[-3,29],[-16,57],[-13,63],[1,65],[10,46],[31,87],[16,74],[5,58],[-2,34],[-17,72],[-46,91],[-22,28],[-44,22],[-20,34],[-2,28],[6,41],[13,28],[77,87],[19,47],[51,112],[39,45],[32,22],[105,67],[23,11],[60,17],[37,14],[39,10],[29,18],[32,8],[54,-2],[50,2],[72,-14],[45,10],[109,92],[57,42],[46,46],[15,23],[19,110],[13,30],[3,66],[-17,98],[19,118],[6,26],[38,76],[19,79],[5,36],[-4,57],[-17,56],[1,51],[14,56],[10,21],[44,51],[37,50],[38,37],[41,115],[28,39],[31,22],[23,30],[33,82],[25,35],[23,23],[46,23],[23,20],[36,21],[21,33],[11,74],[22,74],[6,45],[-11,68],[-11,39],[0,18],[10,41],[20,49],[13,65],[3,31],[-1,43],[11,89],[-5,49],[0,32],[-8,45],[1,31],[-12,51],[4,98],[6,42],[-12,38],[-27,57],[-30,49],[-18,61],[-37,73],[-29,76],[-29,39],[-42,22],[-51,-16],[-21,0],[-42,17],[-46,112],[-39,79],[-25,45],[-30,42],[-40,47],[-16,29],[-53,66],[-4,14],[-2,50],[14,35],[20,35],[20,55],[17,64],[25,68],[33,43],[10,22],[4,29],[7,169],[7,61],[12,93],[4,16],[47,89],[3,13],[2,78],[8,56],[15,35],[24,24],[33,21],[56,8],[21,7],[71,44],[38,1],[16,-15],[30,-12],[26,-21],[20,-9],[33,-6],[27,-9],[27,8],[18,16],[59,27],[42,30],[39,32],[37,36],[41,32],[36,13],[48,3],[32,-6],[45,1],[60,-5],[62,-15],[91,-9],[50,3],[50,12],[55,9],[60,17],[51,24],[36,-1],[37,8],[20,17],[35,48],[33,37],[44,31],[44,53],[6,17],[8,52],[24,29],[15,10],[37,15],[33,5],[17,10],[36,36],[54,11],[28,-7],[70,-31],[44,-9],[38,1],[55,9],[46,22],[57,73],[24,47],[20,31],[37,27],[23,51],[10,13],[53,40],[58,26],[61,17],[74,48],[13,62],[-8,144],[-6,136],[24,102],[8,87],[15,26],[36,33],[19,30],[6,28],[-1,57],[-15,51],[-1,25],[8,68],[20,52],[25,39],[68,83],[17,17],[49,24],[22,22],[35,26],[93,78],[19,12],[102,46],[22,22],[4,29],[-4,91],[-7,31],[9,67],[29,74],[-1,36],[8,38],[4,36],[17,43],[29,82],[12,50],[1,52],[6,90],[-19,41],[-24,39],[-4,23],[3,42],[7,30],[20,45],[9,29],[27,42],[1,40],[19,45],[2,42],[-4,33],[-9,35],[-13,21],[-15,70],[-26,41],[-20,25],[-2,52],[-6,29],[5,32],[-10,83],[16,63],[4,25],[5,77],[-6,72],[-28,49],[-69,3],[-25,14],[-14,16],[-14,47],[-7,59],[-8,20],[-23,24],[-29,19],[-37,31],[-54,35],[-19,2],[-48,16],[-46,25],[-58,50],[-68,36],[-37,43],[-35,13],[-66,12],[-29,29],[-36,25],[-56,62],[-13,21],[-4,23],[-17,36],[-34,49],[-32,39],[-19,78],[-22,60],[0,24],[14,48],[10,15],[9,54],[10,33],[-8,40],[18,44],[-11,33],[-40,49],[-52,113],[-27,17],[-42,58],[-20,52],[-27,34],[-23,2],[-21,15],[-34,49],[-62,43],[-132,76],[-11,28],[-3,49],[-10,33],[-12,21],[-20,17],[-40,16],[-29,18],[-56,23],[-64,43],[-71,64],[-24,30],[-18,50],[0,42],[24,57],[24,44]],[[312919,330965],[88,-2],[171,-3],[207,1],[298,-3],[73,-2],[185,1],[192,2],[162,0],[34,2],[304,3],[220,-2],[76,2],[148,-3],[83,-5],[79,-1],[109,-6],[187,1],[237,-1],[356,-3],[228,-1],[246,-7],[132,-7],[246,-6],[32,0],[461,-9],[219,-6],[102,-4],[228,-3],[108,-3],[146,-1],[194,-5],[180,0],[101,-1],[463,-15],[200,-8],[97,-1],[108,3],[119,6],[199,8],[95,1],[365,0],[99,-2],[127,1],[253,-2],[307,1],[231,1],[339,5],[215,0],[274,-5],[147,0],[208,-5],[203,-5],[149,-3],[35,-5],[153,6],[441,1],[442,3],[441,2],[442,-1],[442,0],[371,-1]],[[325716,330878],[-71,-443],[-42,-243],[-57,-352],[-72,-458],[-49,-308],[-80,-493],[0,-11],[-89,-551],[6,0],[-109,-725],[-101,-661]],[[325052,326633],[-149,-2],[-441,-2],[-442,1],[-83,-3],[-5,-423],[1,-213],[-1,-85],[-2,-554],[2,-67],[-1,-196],[-2,-140],[0,-216],[-1,-145],[-1,-175],[-1,-295],[0,-257],[0,-255],[0,-256],[0,-262],[1,-724],[1,-393],[0,-109],[1,-588],[0,-192],[-1,-358],[-1,-363],[1,-416],[-1,-385],[1,-201],[-7,-782],[-6,-515],[-2,-290],[-2,-232],[-2,-285],[-2,-442],[-1,-297],[0,-90],[-2,-174],[0,-189],[-1,-359],[0,-246],[0,-291],[1,-215],[1,-458],[0,-31],[3,-730],[-1,-60],[2,-499],[0,-368],[-1,-157],[-20,24],[-17,6],[-13,-5],[-13,-26],[-2,-25],[-27,-24],[-17,-2],[-29,14],[-27,-6],[-23,-17],[-15,-21],[-27,-68],[-13,-20],[-19,-43],[-24,-15],[-26,-7],[4,-33],[17,-4],[31,13],[19,-13],[9,-23],[-9,-20],[-31,-40],[-2,-47],[10,-15],[16,-5],[2,-16],[-14,-52],[1,-18],[24,-36],[21,-40],[17,12],[8,23],[16,12],[21,-1],[11,-16],[-1,-26],[-26,-25],[6,-25],[11,-88],[0,-32],[-9,-43],[-28,-34],[-3,-28],[-29,-31],[-21,-9],[-11,-13],[-7,-31],[-28,-10],[-23,11],[-7,-42],[7,-45],[-14,-9],[-51,-6],[-12,-18],[-3,-23],[14,-13],[31,-6],[-1,-27],[-17,0],[-10,19],[-17,2],[-7,-13],[-27,-24],[-5,-39],[-18,-32],[-2,-14],[13,-22],[43,-21],[3,-31],[25,-5],[0,-13],[-20,-33],[-36,12],[-14,-24],[1,-19],[19,-25],[16,-2],[22,9],[48,-10],[23,0],[15,-19],[-5,-30],[-17,-25],[0,-28],[16,-24],[14,-7],[38,1],[17,-11],[17,-37],[28,-30],[23,-45],[16,-17],[1,-39],[-9,-21],[-19,-29],[0,-15],[18,-31],[15,-52],[4,-33],[-14,-62],[-19,-41],[5,-21],[37,-26],[18,4],[0,-27],[-11,-4],[-26,14],[-16,0],[-5,-14],[18,-20],[54,-27],[35,-13],[20,-17],[46,-21],[18,-52],[23,-28],[16,-12],[4,-24],[-7,-23],[-24,-34],[-1,-18],[16,-34],[-7,-30],[-1,-31],[-21,-5],[-10,-14],[6,-36],[-6,-22],[12,-24],[19,4],[4,-18],[-53,-7],[-13,-34],[8,-30],[-12,-5],[-5,38],[-18,-6],[0,-36],[21,-18],[12,-30],[-7,-19],[-30,-4],[-8,-24],[15,-26],[-3,-27],[-24,7],[-4,-25],[53,-39],[28,-8],[12,-19],[-3,-60],[16,-47],[2,-22],[-15,-31],[-4,-23],[27,-39],[9,-25],[30,-61],[25,-25],[19,-35],[-3,-39],[-24,-27],[-30,-2],[-9,-26],[22,-11],[27,11],[13,-13],[-7,-53],[-18,-47],[2,-15],[25,-25],[1,-16],[-36,-36],[-8,-46],[-29,-55],[-10,-34],[2,-31],[-2,-46],[-30,-60],[-22,-29],[-40,-24],[-85,-19],[-34,-11],[-30,-15],[-33,-27],[-11,-16],[-9,-36],[-1,-29],[-10,-28],[-14,-13],[-26,-12],[-13,-26],[4,-29],[14,-27],[-4,-34],[-19,-19],[7,-35],[-25,-32],[7,-47],[10,-20],[32,-4],[8,-8],[-2,-26],[-9,-10],[-25,-8],[-24,12],[-20,25],[-10,3],[-12,-18],[1,-46],[7,-27],[-16,-28],[-19,-6],[-12,-14],[-5,-23],[9,-42],[-7,-15],[-37,-22],[-21,-21],[-6,-15],[5,-24],[27,-49],[6,-34],[12,-29],[38,-46],[-2,-27],[-23,-34],[-25,-8],[-18,9],[-19,22],[-15,-9],[-15,-42],[-27,-38],[-41,-33],[-58,-36],[-21,-3],[-52,4],[-35,-16],[-19,-34],[-22,-52],[1,-38],[21,-10],[34,3],[25,-17],[9,-15],[0,-37],[-28,-23],[-8,-19],[-7,-48],[-3,-82],[-5,-24],[-17,-35],[-56,-99],[-14,-30],[-38,-60],[-16,-14],[-36,-11],[-38,-17],[-27,-54],[-32,-40],[-12,-54],[-23,-74],[-2,-53],[8,-58],[0,-36],[-19,-81],[-16,-31],[-18,-20],[-18,-9],[-30,9],[-12,20],[-12,57],[6,31],[15,45],[-2,28],[-12,16],[-22,9],[-27,-25],[-9,-24],[-7,-41],[-19,-68],[-34,-32],[-32,-57],[-15,-9],[-23,12],[-6,34],[6,20],[32,67],[2,16],[-12,22],[-18,11],[-30,-5],[-35,-20],[-9,-16],[-9,-63],[-8,-12],[-25,-12],[-10,-21],[0,-19],[11,-37],[25,-22],[-14,-29],[-29,-13],[-12,-17],[-5,-20],[4,-31],[-9,-24],[-25,-2],[-10,11],[1,27],[-8,21],[-34,55],[-10,9],[-12,-13],[18,-33],[11,-49],[-1,-32],[-16,-43],[-3,-62],[10,-65],[24,-52],[21,-35],[37,-43],[42,-32],[25,-23],[14,-20],[10,-41],[-5,-29],[14,-17],[23,29],[-4,29],[6,34],[24,11],[15,-15],[8,-23],[0,-29],[-24,-39],[-38,-32],[9,-15],[0,-24],[-13,-17],[-20,-7],[-27,-51],[-7,-20],[-39,33],[-30,-2],[-18,-11],[-17,-50],[2,-44],[-4,-23],[-29,-19],[-51,8],[-20,-8],[-35,-21],[-13,-46],[16,-60],[26,-8],[52,28],[52,31],[23,11],[29,24],[5,-44],[9,-37],[-26,-69],[-11,-41],[-41,-43],[-35,-24],[-57,-27],[-89,7],[-19,-6],[-24,-28],[0,-43],[7,-19],[21,-21],[23,-1],[36,17],[19,-5],[16,-27],[-11,-17],[-22,-13],[-14,-27],[-12,-37],[-5,-33],[10,-54],[37,-121],[-2,-61],[-12,-29],[-16,-13],[-49,-8],[-8,-10],[3,-78],[21,-68],[-13,-28],[-30,-10],[-22,13],[-30,43],[-22,-8],[-15,-15],[-7,-19],[5,-24],[21,-28],[31,-11],[60,-7],[13,-7],[36,7],[10,-14],[7,-56],[16,-46],[-13,-32],[-28,-2],[-15,21],[-24,1],[-32,-9],[-37,0],[-24,16],[-32,11],[-53,57],[-33,1],[-8,-25],[11,-45],[37,-47],[21,-38],[35,-122],[12,-28],[20,-26],[35,-21],[48,-14],[27,-24],[8,-28],[-9,-38],[-16,-16],[-38,-17],[-50,6],[-20,8],[-37,31],[-24,10],[-17,-9],[-15,-22],[-6,-27],[6,-24],[17,-21],[29,-47],[36,-26],[16,0],[28,17],[30,27],[21,9],[16,-1],[16,-13],[8,-17],[2,-30]],[[322155,303674],[-16,-17],[-13,-28],[-8,-34],[-10,-88],[-28,-89],[-27,-45],[-4,-15],[-27,-41],[-23,-24],[-37,-19],[-46,-40],[-23,-31],[-50,-27],[-31,-35],[-24,-54],[-9,-38],[-35,-44],[-24,-44],[-30,-84],[-3,-32],[6,-37],[1,-50],[5,-45],[13,-50],[40,-120],[7,-49],[0,-48],[23,-75],[42,-36],[28,-38],[25,-27],[12,-18],[40,-90],[14,-20],[37,-16],[19,-19],[11,-20],[19,-52],[3,-50],[6,-20],[-7,-54],[-8,-36],[-14,-21],[-14,1],[-2,-20],[-30,-53],[-15,-8],[-21,13],[-110,-12],[-15,-7],[-29,7],[-84,-30],[-43,-6],[-10,-10],[-17,2],[-40,-16],[-23,-6],[-39,-2],[-11,-6],[-44,-9],[-79,-6],[-23,5],[-92,-22],[-28,-12],[-88,-59],[-23,-31],[-18,-9],[-25,-27],[-46,-73],[-10,-23],[-50,-55],[-13,-9],[-17,2],[-15,12],[-13,31],[-19,23],[-39,37],[-45,29],[-23,1],[-30,-20],[-50,-19],[-55,-37],[-13,-12],[-43,-55],[-26,-50],[-10,-35],[-5,-56],[-15,-71],[-1,-68],[-6,-40],[-9,-35],[-12,-26],[-6,-27],[-26,-61],[-11,-44],[-33,-86],[-10,-43],[-2,-34],[9,-31],[10,-16],[14,-64],[-3,-29],[22,-35],[33,-33],[21,-36],[18,-66],[24,-50],[16,-20],[36,-27],[30,-40],[8,-19],[14,-49],[1,-14],[16,-64],[4,-6],[17,-79],[0,-21],[28,-50],[3,-16],[-18,-83],[-17,-59],[-31,-92],[9,-14],[-10,-43],[-8,-11],[4,-26],[-16,-44],[-23,-40],[-10,-27],[-13,-15],[-44,-24],[-28,-12],[-27,8],[-45,-17],[-48,-2],[-45,9],[-51,19],[-34,17],[-23,18],[-46,20],[-9,49],[-31,47],[-36,34],[-12,18],[-39,40],[-28,23],[-45,28],[-34,4],[-19,7],[-20,16],[-46,24],[-65,46],[-43,22],[-33,9],[-50,-12],[-35,8],[-27,17],[-37,36],[-59,50],[-81,90],[-7,16],[-55,55],[-41,14],[-74,36],[-106,69],[-34,19],[-60,26],[-86,46],[-24,5],[-30,14],[-10,-15],[-27,-3],[-45,4],[-40,8],[-28,20],[-35,-7],[-58,-22],[-46,-48],[-48,-30],[-11,-1],[-29,-43],[-9,-3],[-56,-78],[-68,-83],[-40,-61],[-20,-47],[-10,-36],[-12,-59],[-32,-87],[-12,-37],[-7,4],[-43,-64],[-35,-32],[-7,-29],[-32,-42],[-27,-11],[-46,-81],[-23,-50],[-15,-50],[-12,-66],[-4,-43],[6,-80],[25,-79],[13,-26],[32,-44],[60,-66],[39,-35]],[[318252,298938],[-30,-18],[-30,-7],[-42,-28],[-29,-15],[-25,4],[-29,15],[-24,38],[-7,32],[-4,45],[1,39],[-12,67],[-18,42],[-43,42],[-35,29],[-24,26],[-17,31],[-30,97],[-33,83],[-17,-46],[-17,4],[-56,2],[-11,9],[-37,4],[-48,13],[-11,-68],[12,-43],[21,-32],[36,-26],[48,-25],[40,-43],[22,-32],[9,-45],[-21,-89],[-10,-22],[-28,-34],[-15,-10],[-48,20],[-89,119],[-49,42],[-52,32],[-58,27],[-51,48],[-17,27],[-11,30],[-2,55],[15,46],[15,66],[4,51],[-11,51],[-19,50],[-17,29],[-69,68],[-21,29],[-40,77],[-34,80],[-10,53],[-63,156],[-21,66],[-20,108],[0,21],[27,85],[8,35],[-2,26],[-9,21],[-34,16],[-31,-2],[-38,-10],[-23,41],[-21,31],[-46,88],[-11,42],[3,34],[7,19],[10,76],[11,34],[44,49],[22,50],[24,25],[34,14],[83,8],[53,29],[15,22],[13,45],[22,142],[5,43],[-1,34],[-20,88],[-27,103],[-20,60],[-13,29],[-32,55],[-66,86],[-12,22],[-53,116],[-16,43],[-12,42],[-9,45],[-29,75],[-29,57],[-18,126],[-1,35],[2,80],[6,33],[11,10],[25,-2],[55,-24],[17,2],[28,15],[13,17],[5,25],[-1,31],[-7,19],[-33,60],[-33,40],[-34,52],[-14,39],[-18,27],[-7,27],[7,26],[-4,61],[3,69],[14,75],[0,26],[-16,42],[-32,33],[-20,11],[-26,4],[-123,47],[-35,24],[-27,57],[-15,47],[-12,19],[-36,30],[-13,2],[-11,16],[-1,31],[-7,10],[-30,-5],[-25,-19],[-46,2],[-11,-3],[-37,16],[-19,22],[-8,47],[23,90],[3,61],[-33,79],[-28,30],[-67,54],[-22,14],[-51,52],[-35,43],[-23,37],[-22,43],[-50,-4],[-39,32],[-32,2],[-28,17],[-15,-20],[-26,31],[-13,30],[-8,53],[7,18],[-6,41],[-50,36],[-81,82],[-29,21],[-21,-8],[-23,-29],[-17,-8],[-30,-45],[-33,-54],[-65,-56],[-26,-9],[-42,3],[-28,7],[-50,27],[-29,23],[-20,28],[-25,74],[-17,28],[-4,26],[-27,74],[-3,38],[5,13],[27,27],[12,5],[10,37],[44,1],[36,37],[20,9],[23,40],[-1,28],[-38,-3],[-17,66],[-86,-38],[-82,-15],[-30,9],[-23,18],[-17,21],[-57,105],[-27,40],[-30,30],[-41,30],[-19,52],[-27,14],[-26,1],[-31,-9],[-20,1],[-22,10],[-62,54],[-30,38],[-27,49],[2,52],[-7,52],[-10,16],[-38,31],[-59,42],[-21,-6],[-28,-25],[-23,13],[-85,77],[-50,48],[-74,86],[-16,22],[-22,51],[-13,39],[-79,174],[-56,74],[-34,28],[-37,20],[-22,5],[-36,28],[-25,32],[-64,127],[-22,59],[-13,53],[-17,100],[-1,41],[-9,71],[-9,93],[-1,97],[4,33],[-4,58],[5,39],[2,62],[22,81],[30,75],[7,39],[17,58],[27,64],[26,38],[29,35],[52,86],[51,52],[11,16],[13,33],[15,72],[12,87],[11,65],[3,34],[13,52],[21,119],[9,32],[8,48],[59,160],[21,27],[32,78],[29,42],[4,10],[30,28],[40,44],[20,28],[18,33],[26,74],[20,88],[6,75],[-6,75],[-12,73],[-16,66],[-24,55],[-27,37],[-15,29],[-15,41],[-10,44],[6,54],[9,42],[19,36],[33,41],[37,28],[16,21],[11,27],[3,30],[31,72],[69,61],[84,86],[19,45],[10,54],[20,130],[-1,35],[-14,34],[-66,50],[-28,27],[-41,26],[-41,44],[-26,20],[-70,47],[-26,8],[-56,74],[-33,40],[-26,20],[-40,23],[-31,26],[-23,9],[-21,-3],[-25,13],[-49,9],[-38,-4],[-53,4],[-36,28],[-28,12],[-37,28],[-29,29],[-130,85],[-34,21],[-48,20],[-46,6],[-37,1],[-36,21],[-14,-4],[-24,6],[-41,-20],[-34,-32],[-13,-35],[-22,-42],[-5,-29],[2,-34],[-15,-51],[-45,-88],[-27,-46],[-34,-23],[-39,-54],[-37,-56],[-29,-33],[-50,-27],[-59,-6],[-27,8],[-5,10],[-87,62],[-42,29],[-19,26],[-26,71],[-40,47],[-42,66],[-14,17],[-1,53],[-16,44],[-4,30],[-18,55],[-8,39],[2,105],[-11,65],[-35,78],[-12,54],[-29,72],[-26,77],[-13,26],[-7,42],[4,18],[33,43],[7,33],[10,25],[42,60],[15,30],[4,61],[-12,75],[-11,37],[-17,30],[-13,35],[-16,25],[-16,44],[-14,70],[-3,103],[-4,32],[-12,40],[-11,70],[3,54],[-2,42],[-15,53],[1,41],[-20,121],[-11,28],[-21,26],[-55,29],[-61,93],[-18,53],[-10,17],[-25,21],[-24,33],[-10,38],[-21,21],[-62,43],[-16,19],[-66,97],[-26,28],[-41,35],[-60,47],[-51,35],[-21,21],[-37,65],[-50,19],[-27,23],[-19,26],[-6,30],[-11,32],[-33,27],[-33,9],[-53,30],[-15,21],[-22,16],[-38,14],[-31,24],[-33,32],[-41,35],[-52,57],[-67,102],[-18,46],[-7,119],[-39,48],[-16,28],[-23,55],[-23,70],[-28,56],[-48,13],[-43,6],[-77,21],[-19,14],[-35,60],[-17,37],[-8,73],[-14,91],[-26,54],[-14,15],[-46,23],[-86,49],[-21,19],[-37,45],[-32,71],[-41,47],[-14,31],[-41,66],[-26,25],[-37,27],[-27,25],[-11,25],[-46,54],[-49,45],[-55,58],[-26,34],[-13,25],[-34,49],[-8,25],[2,22],[-1,49],[8,48],[8,22],[-2,42],[3,84],[11,33],[-6,44],[-16,44],[-30,56],[-60,57],[-23,16],[-27,29],[-73,58],[-19,25],[-10,30],[-17,86],[-19,56],[-4,37],[16,90],[51,82],[28,42],[8,42],[-2,32],[-9,31],[-20,38],[-34,40],[-22,42],[-23,67],[-17,35],[-17,50],[-15,11],[-10,31],[-9,47],[-17,40],[-8,32],[-28,67],[-11,22],[-27,77],[19,122],[-21,78],[-19,116],[-2,29],[-12,48],[-12,85],[-9,42],[0,50],[-3,26],[0,58],[12,49],[-13,74],[-4,47],[2,36],[10,38],[18,40],[-8,38],[-1,62],[10,51],[0,43],[-8,26],[12,42],[15,19],[29,74],[0,31],[-8,29],[1,48],[10,46],[26,84],[19,44],[26,82],[9,61],[18,55],[35,66],[26,55],[19,19],[45,32],[26,36]],[[292005,350824],[8,60],[-12,27],[-2,41],[-9,7],[-9,29],[-7,78],[0,73],[-5,81],[-7,26],[5,45],[-12,65],[12,58],[29,86],[15,14],[18,60],[-3,50],[2,26],[9,37],[-9,19],[3,38],[-10,63],[-14,18],[-14,39],[24,11],[-7,16],[-19,3],[-8,36],[3,42],[-10,10],[-4,33],[-22,38],[-4,22],[14,49],[-3,19],[5,40],[-4,10],[-41,44],[-8,28],[12,24],[-6,52],[14,0],[3,38],[-10,21],[-5,31],[-16,10],[4,24],[-14,9],[4,17],[-11,35],[3,20],[-7,22],[1,37],[17,17],[28,9],[-32,34],[8,23],[-27,31],[13,34],[5,33],[-4,24],[-14,16],[19,27],[-5,35],[-31,10],[3,11],[22,11],[-16,25],[15,58],[4,38],[-14,11],[6,62],[-22,4],[-11,26],[-38,25],[11,33],[-39,21],[-5,28],[-28,-9],[-18,-13],[-13,5],[-9,32],[-3,37],[-23,20],[-4,18],[-38,38],[2,22],[-8,21],[2,26],[-23,24],[9,18],[-26,65],[-26,-5],[-9,22],[17,17],[-4,13],[-46,-9],[-6,22],[32,-2],[-7,32],[-31,-25],[-1,72],[-13,14],[12,24],[-29,-6],[-17,6],[-7,30],[9,26],[-16,2],[-4,16],[24,0],[8,35],[-5,55],[-32,23],[-16,20],[2,22],[-35,31],[-11,32],[19,12],[3,45],[-18,6],[-6,20],[22,29],[-16,13],[2,41],[-8,34],[5,23],[-21,-5],[10,27],[-10,35],[8,14],[-27,18],[-1,18],[17,23],[-8,21],[7,21],[-4,42],[11,27],[-6,22],[-26,5],[20,24],[-33,-4],[13,22],[6,33],[-7,21],[-14,-9],[-19,14],[18,13],[7,20],[-30,-1],[-9,24],[-18,-15],[1,47],[-18,6],[-5,15],[19,10],[-31,33],[8,24],[-39,36],[16,10],[-37,21],[18,43],[0,23],[-11,22],[12,16],[-29,29],[6,32],[-7,41],[19,15],[-20,34],[1,18],[14,7],[11,-17],[15,10],[0,36],[-7,23],[17,34],[-5,22],[-17,33],[26,15],[-17,11],[17,16],[-13,17],[23,47],[-13,61],[13,33],[-19,24],[13,46],[-1,24],[-15,3],[0,31],[6,16],[24,8],[9,19],[-35,7],[-14,32],[20,-2],[-5,25],[-20,-14],[-19,8],[34,47],[-25,17],[-8,25],[8,13],[-10,25],[-3,30],[5,24],[-21,16],[11,23],[-3,24],[8,16],[19,5],[4,27],[40,-12],[-44,49],[26,-7],[12,46],[24,-4],[-23,31],[16,39],[-25,-3],[1,23],[20,-11],[3,19],[-23,26],[11,32],[1,29],[15,9],[-18,32],[41,-10],[9,35],[-23,7],[-2,29],[16,12],[-25,21],[11,47],[11,18],[17,-10],[7,46],[15,16],[-13,44],[22,-3],[13,10],[-20,19],[5,17],[-15,23],[-47,-22],[-6,-26],[-29,16],[-24,-4],[6,53],[-7,17],[2,23],[-23,0],[-20,12],[17,17],[-3,28],[-14,16],[13,12],[16,40],[-19,13],[-14,-6],[-18,-20],[-12,13],[-22,8],[-11,15],[10,42],[-10,50],[-12,9],[13,18],[-8,16],[4,44],[-32,18],[-8,18],[3,32],[9,33],[14,26],[44,14],[-22,31],[17,18],[12,23],[-34,7],[17,37],[-9,13],[9,21],[-7,15],[-19,10],[10,31],[-4,30],[-2,56],[26,16],[-12,22],[14,26],[-7,27],[3,37],[-13,18],[19,22],[-2,22],[-23,7],[7,24],[-9,21],[-20,20],[-15,-3],[-6,20],[29,-6],[9,28],[-24,13],[16,29],[-8,29],[-17,13],[-1,15],[18,10],[-11,17],[-16,-5],[-15,13],[20,33],[24,-10],[17,5],[-5,32],[19,24],[-20,10],[6,40],[-27,3],[-4,19],[26,4],[9,40],[-13,2],[-24,-13],[-3,23],[24,8],[-6,23],[-39,21],[28,51],[-20,12],[22,13],[0,13],[-21,20],[14,28],[-20,17],[-10,-28],[-16,17],[9,11],[41,19],[-4,14],[-25,3],[-6,24],[16,10],[19,-21],[9,20],[-22,28],[-12,27],[23,20],[-18,31],[-16,-21],[-9,10],[30,47],[0,18],[-40,1],[8,16],[19,-4],[18,11],[-5,13],[-32,0],[-4,24],[21,14],[-3,46],[-10,56],[26,39],[5,18],[15,14],[-17,34],[-29,-4],[4,20],[-12,18],[32,9],[8,13],[-7,25],[20,4],[8,13],[-22,17],[-18,-24],[-21,12],[11,19],[31,5],[13,29],[-16,18],[-21,2],[-19,30],[5,37],[21,19],[-41,5],[-4,19],[12,12],[-9,23],[-20,-1],[-2,16],[23,3],[26,-8],[22,18],[-8,13],[-19,-16],[-33,11],[4,14],[25,-2],[4,21],[24,25],[-14,17],[15,23],[-7,18],[-19,-3],[-10,21],[17,6],[13,17],[-20,19],[-25,13],[35,29],[-8,10],[-37,-14],[-12,5],[-12,23],[3,16],[-13,22],[36,24],[-11,12],[-23,10],[31,27],[-23,8],[-1,15],[21,15],[-13,34],[18,43],[-12,29],[13,21],[-20,33],[-3,29],[20,13],[11,25],[-14,11],[-16,-3],[-15,-22],[-13,4],[20,38],[23,-6],[13,23],[-39,16],[10,13],[39,30],[-14,29],[3,27],[34,4],[-10,27],[14,14],[-18,12],[-24,-13],[-25,6],[-28,78],[23,0],[32,42],[-4,12],[-22,-6],[-3,24],[26,1],[18,-25],[10,22],[-17,14],[-25,8],[28,40],[-5,17],[-26,9],[-1,25],[20,0],[22,24],[-7,12],[-43,-24],[-18,9],[-7,20],[9,11],[23,-12],[28,5],[-2,16],[-28,19],[26,35],[-1,19],[12,41],[-12,31],[4,21],[-17,19],[7,19],[-4,20],[-12,13],[-52,17],[10,20],[-27,3],[11,26],[-14,8],[-8,48],[-21,31],[19,20],[1,48],[-13,13],[-5,32],[7,35],[-15,37],[-14,16],[-19,73],[-1,23],[-37,-1],[9,24],[-15,43],[-12,14],[7,29],[-24,10],[3,29],[-10,16],[-16,-17],[-15,16],[33,21],[8,20],[-20,10],[-2,18],[-28,47],[16,39],[-13,59],[-16,25],[-5,24],[12,19],[-39,37],[-2,12],[-32,-1],[-8,30],[-26,32],[22,42],[-18,12],[-14,30],[-30,-12],[0,21],[-37,32],[31,23],[-8,32],[-6,82],[-17,40],[-25,5],[5,21],[-17,37],[2,33],[-6,30],[-25,27],[13,24],[-13,13],[-39,6],[-24,20],[19,22],[-25,30],[1,20],[20,14],[-2,13],[-18,17],[15,44],[-14,18],[32,6],[-6,36],[-23,20],[19,23],[-35,38],[-22,15],[-10,23],[6,17],[-12,25],[-33,9],[-18,16],[-8,25],[12,39],[-11,27],[-21,17],[-1,12],[15,29],[-7,28],[20,73],[0,21],[-33,28],[-13,81],[12,26],[-19,6],[-13,24],[13,44],[-9,105],[-16,40],[-43,37],[-39,72],[-17,2],[15,59],[-9,41],[-26,20],[24,11],[1,13],[-22,21],[-3,25],[-13,9],[-24,-5],[-12,8],[8,32],[-2,27],[-19,43],[-9,51],[7,18],[18,17],[-15,14],[-36,10],[-24,-13],[-10,17],[26,44],[52,29],[10,28],[-21,8],[-39,-19],[-20,17],[-12,58],[31,13],[10,12],[-2,24],[-18,12],[-18,-5],[-11,21],[25,30],[7,20],[18,16],[-19,34],[7,16],[26,8],[9,16],[-22,9],[-14,17],[0,14],[28,2],[13,-16],[12,-37],[23,10],[-18,39],[-57,32],[-16,-3],[-22,-20],[-8,9],[13,24],[45,20],[44,-24],[6,23],[-31,16],[-32,3],[-18,19],[10,17],[21,3],[7,12],[-17,14],[-21,-2],[-8,19],[13,13],[34,19],[21,-3],[11,15],[-20,30],[25,29],[-12,13],[-31,8],[-31,0],[3,27],[25,3],[31,-7],[12,15],[-6,20],[20,6],[12,16],[-4,22],[-16,39],[-26,4],[-21,-22],[-9,22],[34,46],[15,-2],[17,-24],[24,6],[-2,14],[-39,26],[-8,21],[15,17],[-11,17],[-28,-15],[-17,17],[13,32],[11,11],[21,0],[28,12],[6,14],[-16,18],[-32,6],[-22,-5],[-13,-12],[-11,14],[16,19],[31,12],[11,32],[-3,21],[-19,11],[-27,2],[-3,16],[15,30],[-26,12],[-11,30],[-31,25],[3,36],[12,7],[42,-5],[6,18],[-12,24],[20,16],[-3,21],[-38,-15],[-36,25],[3,27],[-24,9],[16,25],[37,3],[13,7],[16,26],[30,24],[-3,22],[-39,44],[-12,-24],[-23,-5],[-8,22],[16,16],[45,12],[17,-4],[21,-24],[18,16],[-8,15],[-35,23],[-28,9],[-9,28],[23,6],[25,-14],[24,14],[1,45],[-18,16],[-18,-4],[-23,-28],[-31,4],[2,24],[49,32],[22,30],[2,36],[-7,18],[-40,0],[-18,25],[-4,18],[7,19],[19,4],[29,-20],[15,9],[-2,17],[-20,10],[-21,0],[-37,-14],[-27,0],[-13,23],[11,12],[48,10],[21,14],[10,18],[19,3],[-3,20],[-16,17],[-30,15],[-16,24],[2,60],[26,-5],[19,4],[30,32],[5,14],[-26,15],[-31,-19],[-21,-4],[-19,17],[-3,28],[8,22],[31,7],[9,23],[-15,15],[-54,23],[-15,28],[-4,24],[17,17],[15,-14],[55,-2],[12,16],[-12,15],[-33,5],[-47,-2],[-37,21],[10,25],[62,10],[13,9],[10,26],[-9,27],[-28,4],[-3,22],[17,4],[26,-10],[16,28],[2,38],[-14,11],[-24,-2],[2,22],[29,4],[31,45],[-9,16],[-21,-5],[-20,5],[4,29],[22,6],[33,-10],[14,13],[-23,31],[15,12],[25,-27],[13,20],[-31,34],[-8,22],[25,16],[33,-21],[21,19],[-9,40],[-15,17],[29,29],[3,21],[24,37],[-2,24],[-25,-1],[-2,15],[25,16],[3,19],[-6,56],[6,14],[27,-6],[2,22],[-48,21],[-19,17],[-30,46],[1,24],[30,8],[1,12],[-31,19],[-24,54],[-37,29],[16,20],[8,28],[-29,1],[-14,23],[17,24],[2,24],[-7,22],[-36,0],[-11,7],[-11,29],[3,15],[22,14],[6,25],[-21,36],[-25,15],[8,16],[23,8],[-1,23],[-30,4],[7,38],[-50,12],[-11,15],[16,12],[21,-3],[6,20],[-16,11],[-18,-5],[-14,-16],[-15,17],[47,24],[20,4],[12,13],[-4,18],[-22,6],[-32,1],[-28,18],[14,57],[-19,26],[-2,27],[33,15],[2,22],[-9,27],[12,37],[-20,29],[0,30],[-17,12],[-19,-4],[2,25],[37,41],[-10,15],[-35,-2],[-21,13],[-12,20],[9,23],[-11,35],[31,-4],[7,19],[-12,19],[-48,23],[-12,11],[-9,27],[8,35],[-9,18],[-24,24],[18,44],[-8,17],[-18,-1],[-13,16],[-5,24],[2,37],[-27,12],[12,59],[10,16],[-4,18],[-29,8],[-6,20],[4,32],[1,63],[17,27],[22,23],[-27,18],[20,21]],[[289656,368588],[4,1],[361,-2],[246,0],[440,0],[4,-2],[454,0],[622,0],[622,0],[502,0],[541,0],[631,0],[186,-2],[609,0],[8,-1],[292,0],[141,-1],[142,0],[474,-2],[265,0],[26,-2],[418,1],[341,0],[1,731],[0,562],[1,383],[-1,385],[0,173],[13,-22],[60,-41],[15,-18],[45,-22],[45,-9],[0,-9],[47,-14],[111,-46],[32,0],[123,19],[90,72],[52,-7],[59,14],[19,-8],[151,-107],[8,-10],[101,-88],[86,-53],[61,0],[72,-18],[-27,-70],[-5,-84],[99,-464],[-2,-96],[84,-422],[4,-25],[81,-124],[0,-575],[111,0],[59,-315],[63,-358],[0,-67],[-29,-20],[8,-32],[-10,-58],[26,-77],[-42,-27],[-16,-22],[-8,-43],[32,-89],[-2,-55],[6,-100],[25,-41],[50,-33],[20,-19],[25,-33],[29,-26],[24,-40],[0,-28],[14,-17],[79,-23],[28,-31],[35,-22],[16,-21],[16,-31],[16,-9],[67,-12],[45,4],[24,-9],[12,-14],[25,-55],[19,-9],[29,2],[57,-7],[33,-14],[47,0],[56,-8],[64,-24],[48,15],[50,59],[11,20],[18,13],[35,-2],[62,8],[37,-10],[34,-22],[55,-14],[37,-4],[50,7],[70,33],[62,-14],[29,-13],[30,-33],[35,-5],[14,-15],[8,-27],[25,-48],[2,-30],[-14,-83],[0,-15],[14,-27],[22,-19],[38,-6],[33,-17],[35,0],[53,9],[112,-17],[36,-13],[66,-1],[45,-7],[57,-2],[35,10],[31,-13],[51,3],[39,11],[19,-17],[28,5],[33,-3],[27,-14],[21,-1],[80,14],[59,-20],[48,-13],[34,0],[22,-6],[22,-16],[36,-8],[61,-6],[37,5],[18,15],[87,-23],[34,2],[25,-5],[65,-1],[27,-4],[34,-26],[23,-69],[13,-13],[11,-26],[9,-64],[17,-51],[20,-36],[10,-57],[-5,-50],[-19,-64],[3,-48],[-22,-38],[-3,-34],[22,-30],[37,-25],[25,-26],[35,-3],[84,3],[21,-5],[60,15],[50,-2],[52,4],[51,-19],[13,-1],[58,10],[63,-4],[40,9],[25,31],[10,30],[11,14],[21,5],[22,-35],[26,-18],[32,8],[26,28],[30,5],[25,-13],[17,0],[49,13],[53,-2],[53,22],[59,14],[54,37],[66,11],[49,15],[24,28],[9,28],[6,38],[-4,39],[-14,32],[-15,76],[13,28],[74,5],[29,16],[17,23],[36,22],[33,28],[16,6],[15,-28],[24,-7],[33,11],[45,-1],[12,11],[19,40],[25,-14],[21,78],[6,10],[118,35],[209,58],[168,-1],[82,-83],[20,-28],[82,5],[232,20],[316,-20],[54,-3],[106,45],[17,-6],[1,-128],[71,-8],[70,-62],[54,-8],[510,-280],[78,-42],[248,40],[81,-19],[25,-120],[10,-53],[-21,-23],[-2,-13],[15,-20],[-12,-14],[-21,-9],[-37,3],[-24,10],[-26,-30],[-83,6],[-50,-15],[-8,-60],[-28,-67],[2,-16],[-14,-42],[87,-111],[87,-21],[26,-21],[175,14],[109,10],[135,40],[79,4],[27,-3],[54,-82],[10,-20],[25,-9],[23,-57],[68,-27],[0,-76],[-72,-170],[24,-115],[57,-130],[44,-80],[9,-26],[24,-35],[24,-8],[36,-58],[29,-83],[46,-109],[1,-18],[30,-48],[-11,-15],[15,-11],[0,-31],[12,-19],[7,-33],[30,-59],[29,15],[7,17],[23,25],[43,11],[16,19],[17,-8],[16,16],[19,4],[25,18],[120,22],[39,23],[-14,49],[-59,51],[-15,35],[6,26],[-10,12],[-20,61],[25,104],[-42,57],[6,38],[32,6],[23,110],[94,69],[140,-33],[20,-23],[36,2],[-3,13],[14,25],[32,-10],[4,-10],[54,19],[3,31],[55,35],[60,14],[5,-56],[181,-8],[31,-5],[20,26],[41,8],[39,-3],[23,-60],[12,-18],[-8,-11],[3,-53],[32,-9],[24,-42],[108,-26],[-45,-139],[3,-59],[17,-39],[3,-87],[60,-30],[31,-72],[17,-19],[17,18],[-5,16],[8,18],[38,0],[18,-10],[1,-15],[15,-28],[-30,-4],[3,-28],[-8,-12],[5,-22],[23,2],[24,-17],[12,2],[15,20],[59,15],[17,12],[35,-10],[44,3],[31,-60],[60,-48],[12,-70],[65,10],[35,9],[14,-5],[56,14],[6,-18],[19,-16],[39,-18],[22,-2],[10,-34],[10,-1],[18,23],[58,1],[14,24],[15,6],[9,-26],[17,-14],[25,2],[-2,31],[13,-2],[84,-28],[15,-28],[-5,-41],[-32,-42],[-11,-54],[53,11],[15,-12],[0,-68],[-11,-35],[18,-45],[18,-21],[-6,-56],[-15,-42],[-14,-10],[-13,-48],[29,-6],[38,16],[2,17],[30,15],[0,-24],[-14,-35],[38,-26],[49,9],[1,16],[31,14],[2,-25],[47,-74],[88,29],[94,2],[45,25],[59,10],[22,-30],[-59,-56],[-21,-157],[9,-52],[-9,-50],[31,-29],[86,55],[190,86],[82,-7],[53,11],[14,-8],[-2,-24],[32,-64],[1,-17],[29,-4],[55,29],[81,20],[43,51],[28,21],[20,-14],[51,27],[38,9],[26,-23],[28,19],[38,5],[26,-4],[58,7],[50,26],[34,2],[58,31],[53,68],[31,22],[42,19],[84,127],[26,-15],[25,21],[71,85],[65,50],[-19,30],[81,35],[18,33],[21,14],[59,27],[13,24],[21,20],[25,-9],[36,12],[9,23],[26,16],[12,-1],[55,10],[18,-6],[26,9],[4,12],[37,34],[32,13],[-3,14],[97,97],[183,61],[36,4],[28,39],[76,49],[14,-31],[22,-15],[29,2],[69,36],[29,-28],[5,-28],[-7,-37],[9,-16],[8,-136],[4,-83],[-9,-63],[13,-18],[32,25],[-7,31],[16,7],[12,-30],[29,0],[19,-10],[8,-40],[4,-45],[15,-22],[38,9],[8,18],[20,-1],[5,-14],[-9,-62],[4,-14],[-23,-12],[-45,-40],[7,-22],[22,4],[-4,-34],[10,-15],[36,-21],[14,-38],[21,-18],[-2,-24],[21,-59],[0,-11],[36,-42],[35,21],[134,8],[60,26],[159,17],[52,49],[38,3],[34,21],[53,9],[3,13],[38,24],[19,-18],[30,10],[24,-5],[12,-27],[-49,-59],[8,-33],[11,-14],[27,-16],[140,20],[22,-12],[21,14],[31,-6],[8,15],[24,-13],[24,17],[9,20],[24,3],[11,16],[21,-13],[51,-18],[32,-27],[99,36],[25,1],[35,-28],[25,-12],[14,-29],[23,-12],[7,13],[22,7],[49,2],[25,-5],[29,12],[4,21],[26,15],[45,8],[11,7],[30,1],[26,-15],[17,-20],[14,-1],[52,25],[34,0],[40,-6],[71,28],[32,6],[50,-10],[54,12],[23,-3],[43,26],[43,-16],[48,4],[35,13],[29,-5],[35,-35],[23,-8],[87,2],[62,-20],[58,-28],[28,-25],[28,-16],[43,-10],[21,-17],[17,-73],[13,-28],[24,7],[37,-63],[14,-49],[-10,-79],[13,-41],[15,-16],[16,3],[34,-17],[23,-50],[12,2],[45,-24],[7,30],[20,-8],[35,6],[13,-43],[17,-9],[-6,-28],[21,-11],[37,-38],[27,-10],[16,-21],[30,-2],[17,-9],[51,-1],[11,23],[78,16],[12,28],[-2,34],[33,-22],[13,4],[5,25],[21,27],[11,34],[44,12],[8,-20],[31,7],[16,19],[32,-2],[53,28],[84,-4],[3,-12],[32,11],[34,-31],[1,-16],[28,18],[1,-44],[27,5],[24,-22],[44,26],[11,-6],[43,10],[20,-22],[20,18],[20,-6],[17,-34],[23,14],[14,-2],[15,20],[38,11],[30,-2],[22,38],[11,-29],[-6,-15],[9,-19],[41,-12],[36,-27],[16,-23],[41,14],[19,27],[227,59],[39,8],[20,-5]],[[317014,362869],[-31,-80],[-28,-66],[-170,-418],[-272,-677],[-114,-288],[-82,-205],[-206,-519],[-39,-97],[-247,-628],[-244,-610],[-240,-600]],[[315341,358681],[-152,11],[-442,21],[-491,22],[-392,16],[-441,19],[-442,14],[-104,6],[-424,-325],[-355,-269],[-441,-334],[-412,-316],[-491,-378],[-226,-174],[-196,-154],[-442,-348],[-178,-119],[-146,-103],[-117,-74],[-442,-284],[-441,-289],[-375,-233],[-138,-111],[-48,29],[-132,156],[-64,77],[-96,-3],[-75,-53],[-19,-28],[-1,-38],[7,-17],[-17,-53],[-31,-1],[-43,23],[-25,-15],[-52,1],[-9,-7],[-6,-29],[-14,-21],[-26,-21],[-2,-33],[24,-13],[54,-2],[24,-30],[2,-24],[-20,-36],[-39,-20],[-46,-69],[13,-32],[-2,-25],[-35,-29],[-15,-1],[-25,16],[-17,2],[-25,-17],[-25,-4],[-42,53],[-18,-8],[-23,-35],[-16,-2],[-13,39],[-32,7],[-10,10],[-4,41],[-17,-8],[2,-185],[-1,-503],[0,-251],[-4,-503],[0,-245],[0,-294],[2,-59],[-2,-151],[-2,-212],[2,-87],[-1,-301],[1,-81],[-3,-76],[1,-202],[-2,-279],[-12,-7],[-39,-7],[-20,-14],[-18,-1],[-37,-24],[-20,-33],[-12,-66],[-15,-26],[2,-53],[-6,-41],[-18,-22],[-4,-42],[-27,-17],[-52,4],[-39,21],[-31,10],[-34,28],[-27,17],[-38,-3],[-53,-32],[-23,-29],[-8,-41],[-25,-50],[-7,-44],[-32,-29],[-7,-17],[12,-27],[-12,-23],[-29,-20],[-28,7],[-12,9],[-28,1],[-37,24],[-60,23],[-20,0],[-44,-35],[-29,-45],[-14,-12],[-3,-42],[3,-22],[-5,-28],[-36,-7],[-20,-12],[-23,-3],[-25,-12],[-32,-26],[-39,-4],[-53,-39],[-25,5],[-17,-15],[-36,10],[-8,-17],[3,-40],[-58,0],[-14,-9],[-59,-63],[2,-27],[-41,-29],[-12,-13],[-35,-24],[-20,-4],[-22,-21],[-26,-44],[-8,-7],[-30,-66],[-8,-11],[-20,-48],[9,-13],[-14,-75],[-20,-28],[-19,-4],[-38,-40],[-14,-38],[11,-47],[17,-46],[0,-27],[-14,-31],[-36,-34],[-16,-31],[-11,-43],[-6,-55],[-12,-51],[-49,-61],[-14,-11],[-10,-25],[-16,-19],[-21,-11],[-32,-29],[-14,-21],[-25,-5],[-20,-18],[-26,-6],[-10,-31],[-38,-6],[-23,-28],[1,-32],[-10,-66],[6,-19],[-20,-48],[-4,-76],[-8,-60],[-12,-35],[-12,-81],[-11,-18],[7,-33],[-4,-48],[5,-50],[13,-35],[2,-21],[-9,-30],[-5,-59],[11,-29],[-6,-64],[4,-19],[41,-43],[100,-11],[34,-18],[39,-12],[39,1],[38,10],[40,23],[41,9],[18,-1],[31,-27],[27,-35],[40,-26],[46,-49],[23,-20],[5,-15],[-12,-75],[5,-65],[49,-55],[13,-29],[29,-48],[24,-57],[11,-37],[30,-32],[8,-32],[41,-24],[45,-21],[11,-12],[22,-75],[-9,-69],[2,-13],[-6,-48],[12,-28],[-6,-49],[-7,-15],[1,-26],[-49,-32],[-19,-24],[-26,-52],[-5,-38],[-36,-30],[-28,-28],[-22,-30],[-5,-27],[16,-66],[2,-35],[-21,-57],[-18,-30],[-63,-70],[-33,-51],[-10,-5],[-41,-40],[-25,-10],[-12,-16],[5,-54],[24,-46],[7,-29],[-6,-38],[-19,-29],[-5,-28],[10,-65],[0,-45],[21,-69],[-9,-34],[-34,-46],[-12,-62],[1,-50],[7,-16],[41,-46],[4,-11],[-17,-45],[-4,-32],[3,-42],[17,-37],[2,-26],[9,-20],[13,-87],[22,-38],[-4,-18],[-15,-29],[-34,-30],[-69,-81],[-58,-50],[-34,-59],[-10,-29],[3,-46],[17,-39],[33,-42],[24,-18],[38,-38],[20,-29],[9,-39],[-32,-120],[1,-42],[6,-39],[-4,-24],[3,-64],[8,-24],[23,-18],[21,-53],[14,-83],[0,-24],[-24,-152],[-7,-19],[-48,-38],[-7,-36],[4,-29],[35,-82],[2,-18],[-19,-51],[-2,-47],[13,-86],[-2,-35],[-22,-40],[-1,-38],[-23,-41],[-9,-32],[-4,-58],[-16,-57],[-30,-41],[-16,-27],[-18,-52],[-9,-66],[-1,-31],[23,-35],[34,-36],[72,-43],[58,-51],[58,-30],[25,-21],[113,-131],[20,-19],[29,-36],[36,-57],[40,-53],[31,-30],[84,-52],[36,-59],[6,-28],[0,-32],[-11,-40],[3,-33],[10,-14],[21,-12],[43,3],[39,-36],[6,-24],[26,-5],[15,24],[29,-10],[25,-41],[16,-39],[25,-43],[4,-21],[-8,-32],[5,-23],[10,-8],[26,-1],[42,34],[33,11],[41,-32],[47,-21],[41,15],[42,-19],[53,-19],[51,5],[29,16],[19,-4],[43,-27],[83,-16],[82,9],[24,-1],[49,-10],[41,-19],[25,-18],[41,-48],[11,-26],[12,-54],[26,-52],[3,-19],[-1,-75],[16,-52],[26,-53],[30,-45],[53,-57],[27,-23],[38,-25],[21,-25],[33,-52],[45,-34],[21,-11],[70,-27],[116,-38],[81,-15],[56,-17],[38,-42],[55,-18],[36,-15],[30,-23],[23,-5],[37,1],[29,-16],[25,-41],[29,-32],[55,-38],[64,-23],[15,-19],[46,-34],[31,-4],[29,-15],[36,-35],[37,-64],[29,-45],[46,-32],[16,-24],[27,-77],[9,-39],[-3,-18],[-37,-72],[1,-23],[15,-31],[41,-21],[22,-18],[20,-24],[4,-15],[-3,-44],[2,-15],[24,-39],[7,-21],[-2,-35],[-18,-65],[1,-24],[10,-28],[34,-56],[14,-41],[4,-52],[38,-23],[69,-68],[44,-26],[11,-12],[42,-81],[33,-29],[40,-29],[78,-39],[63,-62],[18,-12],[74,-11],[41,-23],[30,-49],[9,-55],[2,-41],[43,-31],[34,-1],[15,-6],[32,-35],[25,-36],[21,-63],[46,-63],[25,2],[11,-8],[29,-38],[44,-24],[37,-37],[20,-47],[13,-22],[46,-35],[84,-11],[42,-18],[68,-4],[73,-15],[43,-38],[50,-25],[47,8],[14,-3],[33,-22],[48,-21],[29,-28],[9,-17],[20,-65],[32,-40],[16,-28],[16,-40],[39,-26],[32,-30],[38,-58],[30,-40],[7,-15],[5,-48],[23,-58],[32,-26],[19,-54],[20,-34],[41,-28],[16,-20],[18,-39],[15,-81],[28,-35],[18,-34],[28,-22],[21,-29],[23,-55],[7,-74],[16,-75],[12,-18],[1,-27],[11,-22],[7,-48],[65,-101],[-40,-173],[1,-74],[-13,-50],[-27,-55],[-7,-24],[2,-82],[-17,-118],[5,-15],[-7,-25],[5,-78],[28,-42],[5,-34],[-2,-21],[-19,-63],[-1,-69],[13,-31],[24,-38],[19,-18],[57,-74],[14,-24],[5,-31],[-5,-77],[-28,-57],[-11,-34],[2,-51],[23,-43],[13,-52],[28,-26],[24,-29],[3,-11],[-1,-70]],[[310888,336714],[-87,0],[-89,3],[-266,-2],[-100,1],[-19,-2],[-73,2],[-182,-1],[-159,1],[-231,-2],[-235,1],[-23,-1],[-281,2],[-175,0],[-162,-1],[-98,1],[-407,-1],[-176,1],[-106,-1],[-115,1],[-386,0],[-179,-1],[-580,-1],[-114,1],[-161,-2],[-301,-1],[-29,1],[-391,-1],[-328,-1],[-213,0],[-30,-2],[-141,0],[-29,1],[-89,-1],[-92,1],[-469,-1],[-334,0],[-501,-1],[-225,0],[-442,1],[-400,0],[-364,0],[-563,1],[-480,1],[-316,1],[-327,0],[-330,0],[-410,1],[-392,1],[-227,1],[-4,-2],[-189,2],[-325,1],[-123,1],[-307,-1],[-177,1],[-68,-3],[-38,2],[-421,1],[-218,0],[-210,-3],[-45,3],[-154,-1],[-119,2],[-22,-3],[-411,-2],[-234,-1],[-73,3],[-162,-4],[-412,0],[-256,0],[-358,0],[-642,1],[-223,0],[-527,0],[-85,1],[-136,0],[-366,0],[-361,0]],[[292395,336713],[-1,250],[0,631],[0,245],[0,469],[2,273],[-1,186],[-1,331],[1,470],[-1,188],[1,151],[0,246],[1,353],[0,243],[2,611],[0,305],[1,236],[1,605],[-1,183],[1,73],[1,461],[0,462],[1,86],[-2,184],[1,111],[-1,124],[1,92],[-1,486],[-1,419],[-1,589],[0,259],[-1,95],[2,150],[-2,181],[1,131],[-3,555],[-13,17],[-3,23],[-15,36],[-21,27],[-5,37],[-39,92],[-6,28],[-14,29],[-11,37],[-46,49],[-30,18],[-39,41],[-33,16],[-53,15],[-57,29],[-21,16],[-38,20],[-21,20],[-58,44],[-65,33],[-21,-2],[-36,8],[-31,-6],[-21,8],[-42,-8],[-28,9],[-36,0],[-34,29],[-26,35],[-24,41],[-23,48],[-48,84],[-25,33],[-19,56],[-7,44],[-16,36],[-8,47],[-26,78],[-37,104],[-27,37],[-5,14],[-30,41],[-14,31],[-31,55],[-29,27],[-78,117],[-116,172],[2,26],[14,31],[8,57],[21,85],[19,45],[22,25],[18,8],[82,77],[31,21],[66,58],[52,40],[10,10],[31,59],[83,67],[56,41],[84,49],[52,37],[35,37],[37,47],[20,50],[16,26],[10,42],[0,28],[18,15],[0,19],[14,9],[-1,17],[18,32],[40,32],[17,23],[44,84],[29,22],[19,25],[12,34],[9,46],[-1,24],[10,35],[5,102],[-5,30],[8,24],[0,45],[3,42],[9,12],[1,76],[11,56],[-16,7],[4,29],[17,14],[-3,62],[5,30]],[[352361,314812],[216,3],[128,0],[232,2],[314,0],[353,3],[142,0],[138,2],[193,-2],[470,3],[149,-1],[326,1],[60,-1],[288,0],[172,-2],[107,2],[29,-2],[146,2],[180,0],[23,-2],[106,2],[227,-2],[106,2],[160,-2],[68,1],[179,-2],[353,-1],[140,2],[460,-1],[446,-4],[168,-2],[272,-2],[32,-2],[158,-1],[203,0],[228,-3],[162,0],[231,-1],[300,1],[461,-1],[52,1],[429,0],[143,1],[30,-2],[192,5],[161,-1],[119,0],[244,2],[296,2],[165,0],[199,1],[21,-5],[41,5],[112,0],[132,-1],[222,1],[238,0],[444,0],[262,0],[145,1],[29,-2],[116,2],[272,1],[224,1],[243,1],[182,0],[188,1]],[[365388,314818],[0,-300],[-1,-62],[1,-67],[31,-622],[40,-798],[24,-503],[28,-565],[24,-493],[18,-364],[25,-514],[20,-421],[29,-589],[19,-394],[36,-753],[23,-479],[18,-390],[325,-19],[326,-15],[409,-12],[70,1],[501,-6],[327,-1],[321,1],[173,-1],[47,3]],[[368222,307455],[-6,-87],[-19,-175],[-22,-136],[0,-65],[-69,-292],[-6,-67],[-12,-37],[-25,-50],[-36,-45],[-58,-214],[-48,-140],[-58,-212],[-48,-200],[-38,-172],[-44,-181],[-37,-113],[-76,-195],[-34,-75]],[[367586,304999],[-203,-3],[-91,-4],[-87,-12],[-434,-64],[-257,-34],[-58,-9],[-409,-57],[-79,-12],[-4,-25],[-25,-18],[-5,-19],[18,-30],[-11,-13],[-13,20],[-18,-13],[-14,-44],[-12,-17],[2,-114],[-28,-10],[-34,24],[-92,35],[-47,-5],[-125,-48],[-77,-29],[-140,-169],[-288,-5],[-246,-26],[31,227],[-175,43],[-130,1],[-40,2],[-37,-2],[-257,-144],[-384,-239],[-31,22],[-20,20],[-34,63],[-37,38],[-58,40],[-68,53],[-73,60],[-51,39],[-40,24],[-33,16],[-62,19],[-43,16],[-84,47],[-44,61],[-30,28],[-11,25],[-18,20],[-81,137],[-30,18],[-22,-6],[-60,21],[-70,46],[1,105],[-36,47],[-28,61],[-4,23],[0,35],[-23,19],[-50,51],[-26,13],[-57,43],[-23,31],[-35,36],[-16,36],[2,8],[-6,62],[-31,135],[-55,20],[-19,9],[-18,-5],[-182,42],[-45,9],[-173,19],[-50,18],[-38,-4],[-54,12],[-36,-2],[-78,-28],[-31,-4],[-29,2],[-30,17],[-23,4],[-14,20],[-51,6],[-35,26],[-31,43],[-24,22],[-21,29],[-42,41],[-21,8],[-31,2],[-23,7],[-42,34],[-47,125],[15,24],[4,36],[-14,57],[-4,40],[-30,49],[-38,53],[-34,-6],[-36,38],[-27,51],[-7,22],[-27,44],[-18,7],[-16,22],[-2,35],[-7,2],[56,120],[1,31],[-8,23],[7,71],[1,48],[-5,51],[15,20],[-24,43],[-37,46],[-44,63],[-43,-11],[-18,-28],[-9,-30],[-33,-62],[-15,-22],[-42,-37],[-24,-4],[-29,13],[-20,1],[-60,-16],[-47,6],[-29,-38],[-20,-40],[-24,-35],[-17,-15],[-26,-6],[-31,-17],[-40,-5],[-50,0],[-35,-13],[-73,-36],[-17,-6],[-34,0],[-55,9],[-40,28],[-25,29],[-17,49],[2,44],[-22,40],[-8,25],[-30,29],[-25,154],[-11,55],[-13,37],[-14,87],[8,15],[7,227],[25,83],[8,42],[22,19],[25,47],[2,11],[29,73],[15,24],[14,60],[9,18],[0,45],[12,23],[40,33],[0,11],[21,26],[31,151],[2,24],[29,29],[122,114],[23,8],[19,-2],[41,24],[48,10],[130,56],[-23,72],[1,33],[12,123],[18,26],[17,39],[65,70],[20,9],[34,36],[26,16],[12,32],[22,-19],[67,-1],[24,26],[10,23],[6,49],[-2,84],[3,141],[0,114],[8,36]],[[360971,309425],[150,193],[308,394],[-353,453],[-112,142],[-278,-355]],[[360686,310252],[-30,38],[-25,73],[-34,56],[-21,15],[-28,1],[-24,11],[-19,-7],[-15,9],[-28,3],[-23,-6],[-16,4],[-12,-9],[-39,21],[-10,-6],[-44,17],[-17,38],[-12,3],[-14,-14],[-13,22],[-18,11],[-13,57],[-15,18],[-10,37],[9,42],[22,33],[6,42],[-9,23],[-23,20],[-49,16],[-24,12],[-39,40],[-16,21],[-50,38],[-29,2],[-26,10],[-24,22],[-23,12],[-2,11],[-21,9],[-41,-3],[-38,1],[-27,-5],[-31,5],[-28,-1],[-43,14],[-30,0],[-44,9],[-38,17],[-39,12],[-46,9],[-21,12],[-29,60],[0,26],[-14,20],[-12,37],[-17,35],[-15,21],[-19,14],[-36,14],[-62,33],[-22,46],[-8,46],[-2,66],[11,19],[11,67],[13,44],[24,54],[11,15],[93,38],[16,22],[7,33],[-4,25],[3,25],[18,36],[36,38],[7,36],[-10,22],[-37,32],[-35,43],[-13,25],[-21,18],[-28,14],[-43,10],[-35,29],[-36,16],[-35,24],[-20,40],[-16,21],[-12,34],[-10,6],[-16,31],[-4,36],[4,35],[-3,16],[-22,20],[-35,-8],[-36,-20],[-36,1],[-24,11],[-35,-7],[-45,21],[-8,9],[-47,6],[-24,12],[-16,16],[-43,28],[-28,35],[-22,-3],[-17,-22],[-36,-9],[-39,18],[-41,-2]],[[381990,324723],[-54,-54],[-55,-50],[-18,-11],[-443,-196],[-440,-224],[-372,-153],[-53,-31],[-42,0],[-70,9],[-61,22],[-111,48],[-35,-24],[-46,-24],[-93,-38],[-27,-7],[-14,-10],[-74,-36],[-9,-2],[-46,-43],[-79,-38],[-38,-11],[-50,3],[-46,-25],[-24,-8],[-92,-7],[-45,5],[-46,-18],[0,-127],[2,-383]],[[379509,323290],[-224,383],[-15,20],[-75,131],[-97,164]],[[379098,323988],[51,135],[3,14],[62,-48],[28,-16],[32,9],[20,23],[14,28],[37,32],[28,43],[-7,51],[-16,16],[-7,29],[1,37],[20,26],[-2,34],[6,15],[-9,23],[3,23],[-20,25],[-14,28],[4,24],[-9,33],[6,31],[9,10],[19,-5],[21,16],[27,30],[26,0],[40,-22],[14,7],[5,201],[8,211],[6,184],[5,253],[10,338],[3,199],[-2,80],[-10,465],[-1,117],[-8,258],[-5,230],[-4,135],[-8,309],[0,131],[-4,315]],[[379480,328065],[117,10],[310,10],[225,10],[193,6],[152,8],[60,9],[379,9],[40,0],[0,-218],[-1,-299],[1,-88],[-1,-122],[28,7],[123,23],[-7,-114],[11,-33],[13,-63],[-29,-104],[25,-51],[-34,-43],[-9,-29],[30,-86],[-8,-58],[21,-18],[10,-29],[10,-10],[-1,-37],[12,-13],[231,-160],[41,-79],[82,-151],[13,-28],[95,-188],[70,-21],[-1,-19],[154,-46],[-7,-95],[-4,-91],[-17,-26],[-5,-64],[5,-43],[7,-10],[24,-57],[17,-224],[15,-191],[7,-140],[-2,-30],[17,-48],[98,-308]],[[379915,323043],[-8,43],[-2,58],[18,116],[11,90],[10,36],[14,35],[33,51],[18,49],[23,43],[3,81],[4,28],[21,78],[37,61],[54,45],[62,43],[74,27],[46,0],[77,-45],[69,-85],[58,-124],[27,-54],[20,-81],[7,-54],[-4,-74],[-14,-58],[25,-49],[14,-61],[6,-44],[0,-73],[-9,-44],[-31,-101],[-11,-32],[-37,-55],[-22,-23],[-33,-26],[-38,-23],[-27,-9],[-61,-9],[-57,-17],[-86,-7],[-64,9],[-25,9],[-41,26],[-35,29],[-34,33],[-65,81],[-15,35],[-12,42]],[[220115,351173],[-10,19],[-11,103],[-20,22],[-8,19],[-3,42],[3,22],[-7,29],[-24,28],[-18,58],[3,38],[-25,47],[-27,36],[-44,8],[-32,19],[-11,28],[1,46],[27,28],[52,8],[15,19],[4,31],[10,20],[3,68],[35,56],[20,24],[-2,34],[2,61],[15,22],[28,23],[5,23],[-10,36],[-13,13],[-25,6],[-17,31],[-7,31],[-11,9],[-27,41],[-37,35],[-11,22],[1,40],[34,91],[-2,37],[-8,57],[-19,64],[-21,46],[-21,28],[-40,39],[-13,21],[1,23],[21,54],[1,17],[-12,31],[-38,33],[-28,7],[-34,37],[-21,36],[-5,107],[-25,25],[-52,13],[-30,12],[-24,26],[-6,20],[-1,74],[12,27],[35,40],[12,24],[15,65],[13,80],[9,23],[3,48],[-18,42],[0,263],[1,168],[0,725],[1,436],[-2,288],[1,446],[0,121],[0,157],[0,331],[-1,396],[1,551],[-1,264],[0,555],[-1,131],[1,775],[-1,169],[1,239],[0,167],[-2,238],[-3,144],[1,93],[-1,276],[0,253],[-2,135],[1,270],[-4,148],[2,103],[0,253],[-1,97],[0,211],[1,333],[-1,193],[2,209],[3,710],[4,256],[1,95],[3,131],[9,636],[4,391],[-1,261],[0,404],[3,745],[3,165],[1,279],[0,260],[4,724],[0,720]],[[219704,368580],[552,3],[169,0],[250,1],[410,0],[600,0],[270,2],[67,2],[24,3],[362,-1],[300,-1],[428,1],[40,0]],[[223176,368590],[1,-375],[0,-355],[0,-124],[-1,-805],[1,-206],[-1,-126],[1,-188],[-1,-24],[0,-810],[-3,-393],[1,-222],[3,-377],[-3,-204],[2,-143],[-2,-72],[3,-652],[-2,-217],[1,-119],[2,-40],[0,-178],[-2,-171],[3,-134],[35,-31],[28,5],[22,-39],[20,-14],[3,-13],[37,-63],[1,-35],[14,-20],[17,-10],[18,-57],[-2,-16],[31,-18],[7,-38],[13,-11],[34,-2],[16,-21],[-12,-57],[5,-14],[23,0],[27,-27],[2,-12],[23,-33],[10,-3],[23,-35],[3,-29],[37,-43],[3,-18],[18,-38],[2,-22],[31,-3],[12,-15],[-2,-18],[20,-25],[71,38],[24,-43],[13,-42],[27,-11],[25,-26],[14,-3],[5,-37],[19,-40],[-13,-20],[6,-46],[-5,-18],[11,-41],[-4,-52],[23,-23],[19,-59],[-1,-53],[12,-30],[26,-21],[31,24],[19,0],[23,13],[23,-6],[13,-32],[28,-21],[20,-34],[-11,-36],[-1,-40],[16,-39],[25,-30],[30,-1],[17,10],[22,-13],[73,-67],[32,-58],[-8,-46],[-11,-29],[5,-59],[-14,-11],[-2,-44],[-18,-45],[22,-72],[57,-38],[19,-3],[21,-32],[9,-5],[20,-32],[4,-39],[-18,-25],[1,-38],[18,-27],[3,-27],[16,-10],[-37,-28],[-27,-36],[5,-14],[-8,-23],[-52,-6],[-5,-33],[-31,-8],[-41,-43],[-5,-19],[-39,-41],[-2,-19],[18,-38],[39,-18],[23,5],[10,-21],[35,-13],[19,6],[11,-9],[23,12],[29,-21],[2,-19],[-48,-29],[-2,-38],[31,-54],[6,-21],[32,-12],[6,-9],[11,-83],[10,-10],[16,13],[25,2],[14,13],[22,-29],[5,-32],[39,-3],[14,10],[23,3],[15,10],[22,-12],[-36,-105],[-27,-28],[-57,-17],[-30,5],[-16,-7],[-22,23],[-39,-1],[-46,-25],[-44,2],[-22,-27],[-58,-35],[-21,-2],[-10,-11],[-12,-54],[-23,-47],[12,-6],[45,10],[18,18],[32,-10],[31,3],[-1,-25],[14,-5],[17,-28],[76,-2],[12,-19],[38,-20],[-4,-30],[31,-12],[23,8],[16,-11],[3,-28],[22,-19],[12,-25],[-3,-25],[15,-37],[30,13],[24,-1],[40,17],[27,-10],[30,-20],[11,-32],[42,-11],[33,-18],[-4,-35],[9,-30],[20,-2],[17,-20],[29,9],[19,-19],[7,-64],[-8,-30],[20,-8],[20,-19],[-2,-26],[21,-48],[10,-13],[13,-39],[-1,-31],[9,-16],[21,-6],[29,-18],[24,-24],[49,-10],[14,-14],[16,-30],[22,15],[20,3],[15,17],[32,-31],[2,-27],[26,5],[22,-8],[24,19],[35,-2],[22,-21],[-4,-28],[17,-14],[27,-31],[75,10],[12,9],[22,-14],[23,2],[20,-21],[24,-12],[18,14],[23,-10],[30,9],[55,-30],[13,1],[6,-30],[-21,-34],[14,-19],[11,-53],[19,-21],[16,2],[19,-25],[11,-2],[14,-25],[-1,-19],[10,-42],[-13,-28],[-10,-53],[-7,-15],[1,-33],[34,-6],[13,-21],[32,-8],[16,3],[24,-9],[17,4],[22,-41],[-2,-38],[4,-31],[23,-24],[10,-39],[7,-9],[22,2],[37,-12],[14,2],[22,-17],[7,-21],[39,-18],[18,2],[2,-17],[23,-27],[22,-13],[-5,-22],[14,-25],[15,-7],[4,-20],[16,-24],[9,-39],[40,-25],[58,0],[16,-28],[-8,-24],[4,-49],[10,-36],[14,-15],[17,-40],[14,-17],[10,-27],[49,-70],[16,-11],[16,10],[36,-20],[-2,-29],[19,-9],[9,-27],[-3,-28],[36,-43],[6,-42],[-12,-6],[27,-80],[-9,-27],[24,-19],[15,-42],[25,-24],[-3,-42],[9,-22],[58,11],[11,24],[44,-11],[16,2],[36,-12],[1,-25],[24,-30],[4,-19],[26,-30],[-3,-22],[13,-5],[28,-45],[17,-17],[19,-4],[21,-25],[-3,-24],[25,-17],[37,-15],[21,-23],[32,-3],[18,-39],[-27,-17],[-4,-32],[-10,-4],[-11,-38],[2,-26],[13,-28],[5,-33],[-2,-31],[-25,-45],[-16,-6],[-15,-50],[25,-19],[12,3],[29,-10],[19,-42],[-18,-25],[10,-19],[-8,-16],[26,-55],[57,-28],[19,2],[15,-34],[-17,-50],[10,-9],[2,-26],[18,2],[10,32],[27,19],[21,-1],[33,15],[15,-16],[4,-38],[11,-19],[55,-49],[18,-5],[19,-51],[45,-14],[31,7],[29,-34],[28,4],[18,21],[16,-73],[35,-17],[0,-18],[30,-24],[-8,-24],[5,-13],[-8,-20],[10,-15],[-6,-39],[-25,-42],[-13,-1],[-17,-29],[1,-41],[-22,-31],[6,-16],[31,-27],[33,-9],[-3,-27],[11,-20],[54,3],[11,8],[4,28],[18,38],[11,11],[44,14],[31,-3],[25,21],[9,31],[-4,23],[21,18],[10,19],[-2,23],[15,19],[34,-24],[18,14],[39,-11],[17,14],[24,-28],[35,-10],[9,-12],[8,-46],[19,-6],[20,-36],[29,-18],[16,-29],[-14,-67],[5,-25],[-30,-44],[-34,-26],[9,-42],[20,-13],[-23,-28],[14,-33],[52,-9],[23,-18],[9,-45],[-16,-20],[5,-22],[35,-23],[17,3],[23,-19],[18,12],[16,-11],[13,7],[38,51],[22,-14],[22,19],[39,5],[16,29],[32,-24],[16,-22],[38,-14],[27,-3],[33,11],[9,-19],[22,-12],[16,-16],[36,-8],[35,1],[25,25],[20,29],[2,46],[18,4],[30,21],[5,10],[29,15],[21,18],[37,-23],[21,22],[17,-5],[16,20],[28,11],[24,-15],[20,26],[54,9],[14,9],[16,-31],[16,-11],[46,-2],[25,-22],[19,-29],[14,-39],[-8,-18],[9,-32],[-6,-21],[0,-51],[-20,-32],[7,-34],[11,-21],[-25,-45],[-2,-20],[-20,-34],[-29,-21],[16,-17],[20,-46],[15,-21],[-7,-21],[-28,-46],[-10,-51],[-19,-21],[9,-18],[5,-40],[-17,-45],[3,-41],[15,-20],[5,-21],[-17,-28],[-5,-27],[-13,-15],[-27,-15],[-30,0],[-24,-18],[-31,19],[-14,-8],[-43,-9],[-11,-21],[8,-117],[19,-30],[3,-22],[41,-18],[13,-36],[-17,-79],[30,-21],[11,0],[14,-29],[-7,-10],[-25,-4],[-15,-11],[-9,-22],[2,-59],[-3,-45],[-32,-17],[-21,-24],[-6,-19],[-23,-3],[-7,-26],[-19,-16],[-26,-39],[10,-40],[26,-72],[8,-12],[-7,-46],[-8,-93],[2,-33],[-12,-20],[-15,-10],[-2,-24],[-19,-61],[-15,-31],[-7,-30],[20,-85],[8,-17],[-6,-25],[-28,-41],[-21,-16],[-42,-17],[-32,13],[-16,-5],[-13,-29],[-1,-16],[9,-45],[10,-21],[-11,-24],[33,-27],[26,-27],[14,-47],[1,-38],[7,-28],[-22,-36],[9,-27],[21,-37],[-4,-21],[2,-39],[-5,-14],[2,-50],[-5,-44],[3,-35],[-26,4],[-13,10],[-42,-28],[-22,-26],[-10,-2],[-43,41],[-34,-3],[-30,-15],[-16,14],[-13,-8],[4,-70],[-24,-15],[-20,-34],[31,-75],[-11,-40],[31,-17],[25,-22],[25,2],[33,-32],[51,-1],[14,-44],[33,-39],[6,-29],[-1,-41],[-8,-22],[1,-25],[-31,-22],[-5,-34],[18,-19],[-5,-19],[-18,-10],[-19,-28],[-51,-20],[-5,-36],[-22,-27],[-20,-16],[6,-53],[23,-9],[32,-2],[13,13],[18,3],[17,-50],[10,-43],[-11,-18],[-26,-19],[-15,-21],[10,-46],[16,-21],[18,-6],[39,32],[25,0],[7,-26],[24,-32],[45,2],[41,-20],[9,-17],[26,-12],[10,-32],[19,-24],[15,-37],[-2,-31],[-15,-20],[-17,-8],[-11,-27],[-37,-27],[-2,-16],[-21,-17],[1,-13],[30,-46],[14,-11],[13,-24],[-5,-19],[11,-41],[31,-46],[33,-12],[8,-53],[15,-1],[5,-17],[-4,-40],[-15,-19],[-14,-46],[-24,6],[-11,-17],[-2,-55],[-9,-47],[-31,11],[-68,53],[-30,-6],[-26,-33],[-28,-5],[-14,-17],[-18,-4],[-5,-22],[-13,-7],[-25,25],[-16,5],[-24,-12],[-17,7],[-20,-29],[-17,-1],[-19,-27],[-9,-28],[3,-25],[12,-13],[-6,-15],[-24,-16],[-18,-23],[-16,-7],[-6,-19],[9,-13],[-3,-22],[-23,-28],[0,-12],[-27,-29],[4,-43],[-41,-24],[-2,-11],[-22,-25],[-13,-35],[30,-56],[20,-1],[22,-21],[-6,-52],[5,-31],[-7,-15],[44,-26],[24,-43],[10,-24],[19,-6],[18,5],[39,-32],[5,-28],[19,-36],[8,-43],[-4,-21],[-17,-35],[-49,-50],[16,-10],[36,-7],[4,-21],[-9,-31],[8,-24],[-23,-40],[-6,-26],[-16,-10],[-11,-18],[-24,-20],[-26,17],[-41,-19],[5,-15],[-7,-23],[-32,1],[-36,-16],[-9,-14],[1,-34],[16,-21],[17,-50],[32,-15],[23,-63],[-15,-23],[-17,-13],[-5,-20],[-15,-20],[-2,-22],[-16,-22],[10,-17],[8,-31],[-15,-32],[-6,-33],[-23,-19],[2,-27],[15,9],[29,-12],[11,20],[31,20],[27,11],[24,28],[30,-16],[40,-51],[32,-23],[21,10],[23,27],[15,-4],[31,24],[22,-26],[33,9],[-23,-53],[4,-18],[-8,-26],[46,-17],[6,-17],[19,-5],[17,-15],[5,-30],[26,-10],[-1,-33],[5,-40],[18,-41],[35,-1],[26,-17],[50,-23],[14,2],[24,-28],[29,-27],[14,-2],[14,-15],[1,-32],[15,-27],[1,-35],[10,-13],[26,-8],[1,-25],[19,-37],[26,7],[16,-10],[33,39],[19,0],[14,20],[18,-1],[21,13],[12,29],[22,20],[21,-4],[30,7],[32,29],[-4,33],[16,2],[19,24],[12,93],[10,9],[22,42],[5,29],[-5,18],[3,26],[-12,30],[11,41],[41,7],[31,-1],[27,-24],[31,-16],[20,-17],[47,0],[17,32],[5,20],[23,34],[23,-6],[36,13],[30,1],[16,30],[53,-3],[9,31],[13,15],[1,20],[-13,21],[11,28],[25,40],[37,8],[23,-1],[26,9],[17,18],[23,6],[16,33],[-4,41],[5,43],[26,21],[6,36],[18,38],[17,15],[34,14],[27,23],[11,29],[36,42],[17,-5],[30,3],[14,31],[4,25],[-22,70],[-13,1],[-13,26],[28,40],[16,10],[-16,54],[13,18],[29,-11],[20,13],[16,1],[15,27],[-2,12],[18,15],[28,-20],[25,2],[7,-13],[13,-54],[15,-8],[26,2],[27,18],[38,14],[14,-16],[-4,-24],[8,-10],[-5,-28],[12,-23],[-2,-31],[11,-22],[17,-10],[9,-18],[5,-38],[18,-7],[5,-16],[18,-4],[36,-37],[8,-25],[-25,-32],[4,-39],[6,-9],[-17,-22],[4,-19],[19,2],[33,-26],[33,5],[33,23],[27,9],[14,-13],[13,4],[22,-13],[18,-42],[34,-14],[17,13],[21,-1],[16,-26],[28,-13],[13,-20],[5,-36],[9,-25],[16,-29],[5,-27],[-25,-14],[-21,-20],[-18,-38],[-23,-21],[15,-35],[-9,-54],[-14,-27],[-19,-45],[6,-29],[-10,-19],[-13,-54],[36,5],[15,9],[32,-18],[27,19],[22,2],[14,-9],[38,0],[13,8],[43,-16],[-24,-36],[12,-25],[-5,-13],[8,-29],[14,-21],[6,-51],[10,-26],[0,-34],[-26,-35],[-30,-17],[6,-33],[-7,-27],[-28,-33],[5,-20],[26,-21],[3,-35],[-8,-35],[12,-24],[33,-5],[16,-22],[-8,-20],[-39,-22],[-16,-20],[12,-56],[46,-1],[29,-22],[12,1],[21,-39],[32,-22],[7,-32],[-7,-59],[5,-20],[-21,-29],[19,-23],[10,-41],[-14,-27],[1,-23],[-21,-17],[5,-38],[-3,-14],[4,-40],[11,-26],[14,-9],[12,-23],[15,0],[19,-16],[19,-73],[14,-22],[19,-7],[3,-24],[11,-19],[46,-35],[23,-40],[5,-17],[-18,-18],[-28,-2],[5,-23],[-8,-25],[22,-41],[5,-21],[22,-25],[16,0],[31,-18],[6,-12],[24,-16],[25,-39],[12,-54],[16,-30],[18,-18],[0,-24],[46,-39],[36,-52],[13,-3],[15,-27],[22,-5],[8,-26],[17,-12],[9,-53],[-16,-55],[14,-26],[3,-36],[25,-31],[24,-12],[35,8],[-1,-36],[-31,-47],[-5,-27],[16,-24],[55,-63],[5,-14],[30,-3],[29,16],[37,-9],[51,10],[23,-46],[-13,-22],[-1,-21],[-33,-40],[28,-35],[40,-33],[16,-1],[32,-37],[-6,-20],[10,-14],[-1,-22],[12,-10],[32,-9],[31,6],[13,11],[21,-14],[12,-18],[6,-33],[-3,-28],[7,-17],[-22,-29],[2,-13],[31,-27],[-6,-35],[-2,-46],[10,-10],[27,-67],[-32,-46],[7,-39],[-6,-27],[5,-86],[-16,-10],[21,-62],[-18,-37],[-19,-9],[-20,2],[-15,-23],[-28,-2],[-31,13],[-20,-20],[-28,10],[-15,-36],[11,-30],[4,-36],[9,-3],[1,-35],[14,-24],[14,-2],[24,-46],[18,-12],[-11,-27],[-3,-62],[12,-15],[23,-9],[17,-21],[-4,-31],[18,-35],[7,-58],[11,-11],[27,-9],[20,-38],[35,-3],[10,-41],[13,-30],[1,-29],[31,17],[56,-14],[16,-8],[32,4],[24,-15],[1,-25],[42,-40],[31,-22],[35,-120],[-30,-21],[2,-22],[29,-20],[19,-21],[39,23],[38,36],[34,12],[32,19],[4,17],[52,33],[17,21],[56,22],[17,21],[41,18],[25,-34],[8,-19],[20,3],[30,-19],[52,-13],[19,-27],[37,-14],[34,-47],[14,-38],[23,-14],[32,-33],[12,10],[36,-8],[11,-14],[23,-1],[34,-25],[-5,-20],[4,-23],[-23,-28],[11,-43],[15,-16],[21,-4],[12,-15],[15,-50],[-3,-28],[20,-2],[35,-22],[-4,-19],[8,-20],[0,-80],[10,-61],[64,-55],[-9,-31],[17,-12],[36,-10],[-12,-44],[10,-89],[16,-24],[-6,-15],[21,-37],[28,-37],[8,-44],[-15,-47],[-12,-15],[-31,-7],[-29,-20],[-14,-35],[-35,-50],[35,-22],[31,-29],[20,-25],[-14,-41],[54,-41],[43,-30],[14,-35],[-34,-32],[-6,-52],[6,-14],[45,-39],[35,-7],[20,-38],[36,-21],[6,-38],[-36,-21],[3,-49],[-44,-66],[7,-29],[22,-49],[15,-12],[29,-52],[-9,-35],[9,-58],[10,-26],[49,-38],[26,-52],[31,-35],[35,-32],[33,2],[11,-42],[35,-21],[38,1],[11,-11],[28,-11],[14,-39],[51,-24],[38,38],[20,-18],[-5,-36],[15,-69],[1,-21],[30,-32],[-1,-16],[34,-14],[30,-56],[37,-10],[13,20],[41,24],[32,30],[17,30],[10,6],[-5,33],[7,27],[-1,27],[-8,14],[5,20],[-26,13],[-4,41],[-33,51],[-17,37],[-15,14],[45,46],[-2,55],[34,30],[12,33],[11,12],[18,3],[18,15],[16,33],[-4,18],[15,12],[45,90],[34,-4],[33,26],[25,0],[21,14],[12,-17],[15,2],[3,16],[33,55],[48,20],[31,-6],[42,-22],[15,5],[20,-11],[5,-30],[22,-11],[30,0],[24,-28],[55,10],[30,15],[29,2],[16,-45],[12,0],[17,21],[58,23],[29,-19],[29,-31],[46,-8],[14,10],[33,0],[34,13],[12,-9],[19,4],[21,-34],[28,-8],[39,-3],[16,-14],[4,-44],[39,-19],[32,45],[20,3],[9,20],[23,13],[12,18],[32,-27],[13,2],[17,-23],[0,-29],[27,8],[44,-35],[6,-43],[18,-5],[18,6],[27,-10],[28,25],[23,-9],[8,-14],[31,-16],[13,-18],[58,106],[14,8],[7,51],[-1,28],[20,31],[8,37],[-4,78],[-1,85],[5,23],[-8,24],[26,52],[27,4],[7,-6],[32,7],[19,-4],[30,6],[12,11],[4,60],[25,37],[11,8],[22,-1],[19,16],[14,35],[9,4],[38,-16],[33,1],[25,15],[8,17],[19,-21],[31,2],[24,-17],[25,-7],[-8,-23],[14,-15],[-6,-24],[1,-28],[24,-28],[29,-13],[60,-20],[44,-28],[51,32],[18,18],[44,-18],[11,-10],[21,17],[23,1],[20,-13],[12,-30],[1,-20],[41,-22],[20,-5],[11,-21],[18,0],[19,14],[11,39],[46,23],[15,-3],[24,21],[15,-6],[31,4],[43,-25],[21,2],[20,-19],[-10,77],[9,23],[34,-10],[26,-17],[15,8],[24,-33],[13,2],[20,-15],[14,10],[22,1],[22,-9],[30,21],[11,33],[14,-3],[6,31],[26,-5],[13,11],[9,33],[25,0],[25,8],[47,-2],[22,-10],[38,7],[29,14],[3,18],[16,14],[31,-25],[38,18],[15,-7],[9,-66],[23,-13],[3,-19],[25,-35],[23,-80],[38,-33],[13,-36],[24,-28],[48,14],[5,22],[-9,23],[18,33],[24,7],[43,-15],[21,8],[13,18],[17,9],[28,-17],[13,40],[44,41],[33,13],[12,-4],[24,9],[40,-2],[6,21],[20,26],[14,49],[49,-23],[25,32],[6,-11],[34,-19],[28,-7],[25,-12],[17,12],[21,-1],[21,-12],[80,-12],[17,-11],[39,27],[35,45],[27,5],[10,-13],[44,-12],[14,2],[7,-19],[22,-4],[31,17],[38,-39],[29,-4],[18,-9],[20,-25],[10,-41],[17,-7],[18,7],[19,28],[34,-7],[38,9],[37,-13],[19,6],[-14,20],[-1,61],[-4,15],[-40,-11],[-40,30],[-26,0],[-35,14],[-3,16],[10,16],[22,14],[-7,17],[-57,51],[-3,40],[-11,20],[-6,27],[20,26],[-24,14],[19,38],[-4,11],[21,47],[45,30],[-8,28],[-25,41],[-17,16],[2,14],[29,9],[27,19],[18,-25],[12,2],[5,30],[13,27],[13,6],[19,28],[-2,11],[17,16],[-11,48],[18,11],[10,25],[-30,13],[-26,34],[7,21],[-5,20],[-20,29],[2,31],[12,16],[21,-6],[26,15],[25,27],[25,11],[41,8],[15,18],[38,2],[20,-17],[7,-21],[35,-19],[21,30],[15,33],[22,18],[3,23],[-8,37],[17,55],[-12,12],[14,34],[28,15],[40,-28],[-1,-13],[31,-34],[-2,-22],[17,-21],[24,-44],[25,-10],[29,29],[10,16],[45,-21],[6,-63],[16,-24],[36,-37],[24,-14],[22,-33],[-8,-50],[21,-31],[34,-15],[18,-29],[0,-20],[36,-49],[-21,-25],[-12,-30],[-18,-11],[14,-33],[22,-16],[27,17],[27,8],[14,-14],[6,-26],[22,-3],[10,-20],[49,-68],[0,-14],[26,-20],[-24,-26],[-37,-12],[-18,-11],[13,-21],[12,-36],[11,-53],[-10,-24],[10,-14],[6,-31],[-2,-21],[8,-17],[24,1],[6,-9],[43,-2],[21,4],[73,-39],[0,-86],[26,-29],[32,-15],[17,-1],[29,-66],[32,4],[37,-18],[-27,-89],[28,-100],[14,-5],[17,-31],[25,1],[28,-39],[27,2],[32,-19],[45,-18],[21,-2],[34,-27],[48,-12]],[[240838,342356],[-1,-268],[1,-306],[-2,-124],[1,-481],[1,-294],[0,-550],[2,-59],[-1,-499],[-1,-50],[6,-117],[2,-144],[1,-386],[0,-194],[-1,-172],[1,-214],[0,-398],[2,-357],[1,-3],[1,-331],[0,-450],[0,-337],[1,-634],[1,-19],[2,-707],[1,-17],[0,-405],[0,-467],[0,-88],[0,-197],[0,-414],[1,-519],[-1,-66],[1,-102],[0,-174],[1,-625],[-6,-548],[-3,-245],[-4,-629],[0,-335],[0,-583],[-1,-625],[1,-76],[0,-261],[1,-307],[0,-420],[1,-131]],[[240847,328028],[-430,-1],[-504,-1],[-355,-4],[-50,4],[-17,-4],[-103,-4],[-111,-2],[-182,-1],[-326,0],[-409,0],[-376,-5],[-270,1],[-74,-2],[-204,0],[-195,-3],[-149,-1],[-148,-6],[-77,0],[-69,26],[-253,0],[-80,-1],[-342,1],[-304,-1],[-103,0],[-443,-4],[-446,-1],[-144,-3],[-394,-4],[-109,-2],[-162,-1],[-209,-3],[-126,-3],[-65,1],[-114,-3],[-230,-1],[-46,-2],[-161,-2],[-6,-3],[-316,-5],[-61,-5],[-136,2],[-195,-3],[-160,-2],[-15,-3],[-89,-2],[-325,-7],[-28,1],[-151,-4],[-65,0],[-204,-7],[-181,-3],[-92,-3],[-101,-1],[-89,-2],[-61,0],[-240,17],[-116,10],[-169,6]],[[230267,327982],[-71,1],[-322,1],[-455,1],[-339,4],[-317,3],[-118,-5],[-140,-2],[-120,2],[-84,0],[-97,6],[-90,4],[-245,11],[-152,10],[-153,11],[-85,2],[-64,-1],[-94,-4],[-83,-8],[-53,0],[-302,-17],[-113,-6],[-471,1],[-303,0],[0,4],[-193,-4],[-231,1],[-22,1],[-386,1],[-354,1],[-139,3],[-186,-2],[-272,-1],[-404,0],[-34,6],[-384,4],[-149,-7],[-113,0],[-14,1],[-383,1],[-244,0],[-249,-4],[-71,2],[-120,-6],[-335,1],[-166,4],[-53,2],[-155,0],[-132,-1],[-71,2],[-438,3],[-116,2],[-326,1],[-329,2],[-142,-5],[-43,10],[-17,0]],[[219725,328018],[0,363],[1,319],[-2,42],[1,241],[0,189],[0,634],[1,85],[-1,197],[-1,103],[0,474],[0,698],[0,277],[0,681],[1,514],[-1,426],[1,392],[-2,322],[1,280],[-1,295],[1,417],[0,580],[-1,212],[1,227],[-1,632],[1,94],[-2,255],[1,187],[0,437],[0,461],[2,107],[-1,338],[16,45],[2,20],[-8,26],[-30,28],[1,32],[9,19],[22,26],[36,-11],[9,27],[-1,29],[-33,24],[-6,13],[8,19],[43,25],[35,7],[21,-6],[26,17],[6,12],[-5,46],[1,29],[26,75],[-4,64],[-11,32],[0,20],[21,9],[35,4],[11,8],[8,60],[-9,23],[-24,19],[1,34],[20,30],[5,52],[-37,5],[4,17],[35,21],[-4,27],[-32,1],[-19,39],[11,15],[20,-3],[16,27],[16,10],[70,9],[9,34],[-32,74],[26,34],[11,68],[-10,47],[-21,36],[-33,25],[-22,31],[-31,11],[-20,13],[0,51],[-7,32],[1,54],[-7,74],[10,14],[25,16],[23,1],[56,14],[11,6],[28,32],[19,42],[-4,33],[13,34],[41,49],[10,73],[28,26],[9,33],[17,24],[6,46],[-5,52],[-28,51],[-40,16],[-28,27],[-6,21],[-38,17],[-18,-2],[-25,-14],[-70,19],[-17,20],[-5,58],[12,55],[-1,22],[-14,43],[9,35],[-12,45],[-38,17],[-53,0],[-24,6],[-32,-6],[-30,18],[-23,1],[-37,-34],[-13,-70],[-19,-12],[-18,13],[-7,31],[-31,45],[-39,34],[-35,42],[-9,18],[-10,53],[-17,36],[-20,25],[-26,4],[-30,-14],[-38,-50],[-15,-45],[-22,-19],[-56,-6],[-47,8],[-49,48],[-31,22],[-26,26],[-25,42],[-36,37],[-18,54],[10,18],[7,33],[10,11],[34,16],[17,29],[4,27],[13,33],[13,8],[8,37],[-22,66],[-23,20],[-15,31],[-35,29],[-19,28],[-20,17],[-26,34],[-9,50],[-19,50],[2,32],[33,25],[21,25],[16,52],[27,75],[-5,88],[6,40],[-8,57],[-12,23],[-4,41],[-13,31],[-2,23],[6,25],[27,14],[28,-1],[29,35],[28,65],[3,39],[22,54],[13,21],[34,6],[17,-3],[22,10],[30,39],[30,80],[4,67],[-18,29],[7,37],[12,16],[31,22],[28,37],[4,13],[-2,49],[5,29],[2,39],[10,62],[16,50],[27,22],[36,79],[0,40],[11,25],[-6,31],[3,43],[17,24],[36,28],[8,38],[-8,23],[6,46],[18,24],[7,24],[29,18],[7,18],[-3,29],[8,58],[-6,32],[14,19],[28,12],[8,20],[1,32],[13,21],[21,18],[31,17],[27,-2],[15,12],[9,21],[52,-3],[35,24],[52,52],[13,25],[18,10],[63,16],[20,22],[30,13],[12,20],[2,21],[-10,27],[5,41],[15,33],[18,15],[61,138],[16,5],[3,24],[13,39],[-7,41],[12,12],[19,-3],[22,18],[15,20],[12,28],[37,23],[29,68],[17,30],[13,77],[21,47],[2,35],[12,17],[1,33],[17,31],[6,24],[-13,44],[-38,63],[-17,48],[6,22],[46,33],[36,77],[-2,8],[-34,0],[-14,-8],[-11,-42],[-11,-17],[-19,-2],[-19,27],[0,34],[9,28],[37,81],[-2,38],[-7,21],[8,13],[-11,46],[19,47],[15,14],[46,32],[15,31],[24,30],[20,14],[40,55],[22,56],[26,41],[-2,65],[2,31],[31,70],[71,48],[7,46],[21,14],[5,51],[10,13],[33,19],[16,34],[2,57],[14,50],[0,50],[23,74],[12,53],[17,56],[3,25],[-4,57],[6,28],[14,35],[1,69],[18,30],[9,55],[17,52],[15,24],[14,10],[30,37],[8,54],[0,58],[-8,115],[3,37],[10,14],[17,50],[18,38],[21,57],[46,94],[3,15],[31,56],[32,96],[15,25],[77,84],[15,71],[17,104],[24,35],[20,20],[27,20],[12,21],[35,20],[0,57],[-14,42],[20,94],[-1,16],[-15,26],[6,20],[32,27],[15,23],[6,26],[17,22],[12,38],[1,25],[15,26],[15,54],[-15,8],[7,21],[28,18],[23,-1],[28,26],[1,28],[33,37],[44,33],[-6,29],[10,29],[17,13],[31,47],[12,26],[1,76],[-22,28],[-11,24],[5,21],[-16,19],[-24,11],[1,36],[-19,25],[-4,39],[-28,37],[-30,27],[-25,48],[-19,28],[-22,15],[-15,22],[-8,27],[-16,30],[-5,31],[0,49],[-6,64],[9,105],[-22,59],[-22,46],[-40,16],[-28,46],[-27,16],[-36,38],[-32,39],[-80,20],[-24,-4],[-29,18],[-27,-21],[-34,-9],[-42,3],[-15,10],[-55,72],[-28,79],[-15,18],[-6,32],[-12,24],[-19,5],[-17,20],[-30,9],[-63,-1],[-21,-12],[-47,-41],[-33,-5],[-39,40],[-28,10],[-22,39],[-2,28],[4,44],[-8,32],[-21,48],[-1,18],[-26,21],[-37,74],[-18,19],[-88,70],[-10,21],[-36,44],[-33,74],[-13,58],[1,20],[-18,68],[-3,73],[-16,22],[-38,10],[-13,50],[6,23],[-1,27],[-25,31],[-38,35],[-16,38]],[[380533,345481],[3,41],[8,24],[-8,11],[19,44],[14,53],[-8,15],[-28,-4],[-16,29],[19,10],[11,23],[-7,15],[11,37],[-6,34],[21,5],[16,22],[1,18],[24,15],[2,14],[35,2],[19,56],[20,10],[1,21],[24,22],[11,22],[1,36],[27,6],[0,10],[39,41],[10,33],[-8,44],[-24,22],[7,49],[25,27],[11,55],[-5,22],[25,34],[12,41],[0,33],[15,11],[21,49],[-5,14],[28,33],[-2,22],[-17,50],[-46,18],[-3,16],[-95,83],[5,17],[33,-5],[17,-21],[28,-7],[47,51],[16,6],[30,-10],[8,-21],[22,-24],[19,33],[9,31],[8,8],[44,15],[22,38],[-10,46],[-12,29],[9,14],[27,-7],[19,19],[15,-5],[24,10],[16,40],[38,14],[24,27],[18,2],[28,54],[14,14],[21,0],[27,10],[13,-34],[27,10],[26,-18],[-6,-13],[8,-26],[5,-54],[16,-29],[8,4],[27,-30],[14,1],[18,-36],[11,-5],[16,-41],[2,-25],[37,8],[33,-3],[28,21],[22,-1],[8,-20],[40,-33],[4,-22],[14,2],[18,29],[21,6],[19,17],[26,-26],[35,-21],[39,11],[7,7],[14,48],[12,9],[3,21],[13,20],[0,20],[13,27],[-1,20],[21,9],[12,19],[-12,34],[7,26],[14,15],[-2,17],[29,44],[46,19]],[[382006,347174],[24,-319],[10,-267],[12,-229],[23,-475],[18,-398],[4,-137],[31,-543],[16,-311],[7,-94],[16,-347],[3,-92],[14,-310],[17,-446],[6,-248],[3,-166],[6,-110],[6,-175],[5,-90],[11,-307],[11,-340],[5,-91],[5,-158],[4,-168],[5,-94],[2,-101],[7,-238],[5,-128],[4,-232],[6,-186],[4,-145],[7,-257],[5,-128],[2,-109],[7,-248],[4,-108],[9,-314],[0,-113],[7,-233],[5,-326],[13,-199],[6,-126],[5,-138],[1,-55],[10,-180],[8,-178],[14,-398],[22,-6],[11,-31],[20,-14],[8,-15],[3,-30],[14,-13],[-7,-36],[-11,-22],[-26,-10],[2,-32],[17,-18],[2,-35],[11,-17],[1,-18],[-10,-38],[7,-19],[-11,-9],[-4,-48],[-19,-14],[-1,-20],[-17,-42],[6,-31],[-20,-16],[9,-25],[12,0],[21,-25],[4,-20],[-10,-47],[-11,-27],[1,-32],[15,-26],[3,-23],[-8,-17],[-17,-8],[-4,-43],[-23,-33],[-21,-8],[-19,-39],[5,-71],[11,-19],[-1,-22],[-16,-6],[-2,-20],[8,-19],[0,-46],[17,-36],[-1,-11],[16,-20],[7,-25],[-13,-23],[21,-24],[-4,-29],[20,-3],[-4,-16],[19,-32],[17,-5],[6,-31],[14,-8],[46,12],[9,12],[22,-6],[3,-43],[24,-34],[15,7],[11,-28],[3,-24],[14,-29],[-8,-11],[25,-23],[14,5],[17,-51],[-21,1],[-10,-28],[30,-4],[-4,-19],[9,-16],[30,-14],[19,-23],[2,-37],[29,-5],[15,-33],[14,-1],[17,-18],[4,-27],[17,-17],[11,9],[32,-14],[11,-15],[-3,-23],[18,-26],[29,1],[18,-23],[14,-6],[9,-32],[-6,-16],[18,-8],[9,-26],[-23,-50],[-15,-85],[5,-39],[-4,-13],[-21,-10],[-7,-21],[10,-32],[6,-39],[-15,-23],[0,-31],[-6,-45],[-12,-42],[-2,-23],[13,-48],[1,-29],[17,-44],[72,-62],[16,-23],[58,-57],[13,-26],[39,-13],[18,-21],[20,-51],[8,-9],[30,-6],[22,-12],[10,-18],[112,9],[18,-174],[244,-341],[29,-25],[45,-18],[54,-102],[30,-71],[20,-63],[24,-123]],[[383804,333333],[-40,-18],[-23,-6],[-45,-3],[-57,10],[-51,23],[-50,15],[-40,21],[-40,35],[-40,57],[-22,47],[-14,49],[-21,-56],[-30,-52],[-37,-38],[-23,-18],[4,-62],[-9,-140],[-5,-28],[-22,-82]],[[383239,333087],[-51,0],[-152,-8],[-101,-7],[-35,-18],[-23,-23],[-39,-23],[-29,26],[-102,99],[-70,25],[-32,-1],[-58,-12],[-86,-65],[-40,-26],[-29,-9],[-62,-12],[-137,-36],[-47,-60],[-33,-91],[-37,-155],[-63,22],[-178,66],[-61,-35],[-60,-41],[-69,-102],[16,-308],[-149,53],[-34,-7],[-42,-17],[-36,-36],[-44,-61],[-36,-79],[-56,-88],[-128,1],[-76,5],[-48,1],[-234,10],[-127,4],[-113,6],[-345,12],[-137,6],[-320,13],[-68,1],[-181,9],[-273,12],[-218,9],[-160,5],[-505,25],[-343,14],[-171,7],[-303,14],[-363,19]],[[377151,332231],[-1,16],[-32,67],[-18,27],[-11,68],[-12,32],[-16,10],[-27,46],[-25,-2],[-10,-31],[-37,-20],[-15,16],[5,29],[23,18],[-2,31],[-10,25],[-23,37],[-74,82],[-9,22],[-1,39],[-10,29],[-16,132],[-13,18],[-14,37],[9,41],[-4,48],[1,44],[11,44],[-2,10],[43,28],[31,46],[5,79],[20,23],[2,14],[-10,60],[3,47],[-7,52],[-23,30],[9,27],[20,16],[30,33],[36,5],[13,10],[41,10],[23,27],[17,11],[27,-11],[42,61],[-13,39],[8,44],[13,21],[38,1],[15,24],[1,29],[-51,49],[-15,40],[-2,19],[9,69],[-6,21],[-15,20],[-2,37],[14,23],[27,26],[19,35],[14,10],[23,34],[19,44],[-12,33],[-4,26],[-15,37],[7,34],[22,18],[7,19],[0,43],[-26,40],[-7,28],[7,28],[-24,1],[-21,16],[-15,44],[18,37],[2,67],[-5,40],[30,37],[2,27],[-20,38],[-2,16],[40,51],[1,43],[-8,32],[2,38],[21,58],[-4,36],[-13,49],[2,43],[15,36],[41,22],[23,42],[30,75],[15,84],[3,25],[25,63],[-11,32],[-13,13],[-22,43],[-5,29],[32,75],[36,54],[-5,17],[-41,1],[-34,27],[-6,18],[-3,68],[10,39],[30,35],[5,17],[11,102],[0,20],[15,101],[0,35],[18,92],[-6,66],[4,21],[28,38],[11,77],[-2,28],[-14,40],[-48,61],[0,15],[16,82],[13,-1],[25,45],[10,33],[-4,28],[3,23],[-7,84],[9,6],[2,51],[30,38],[51,34],[21,6],[32,30],[21,27],[25,20],[1,35],[-16,21],[-7,32],[10,56],[11,8],[5,24],[-8,21],[8,12],[43,25],[5,32],[-2,46],[37,78],[4,67],[-12,23],[3,68],[18,50],[0,12],[19,18],[28,47],[17,38],[22,19],[14,39],[29,4],[60,47],[28,13],[12,20],[12,1],[12,29],[15,23],[19,45],[27,14],[22,20],[0,27],[9,16],[-9,27],[4,15],[20,14],[18,29],[13,45],[16,15],[9,40],[-16,43],[-4,27],[18,45],[5,28],[-3,60],[-17,56],[14,55],[39,12],[19,15],[-22,63],[2,20],[12,17],[33,7],[4,29],[29,55],[53,43],[10,21],[39,30],[11,25],[5,63],[-8,59],[9,22],[21,1],[21,16],[21,39],[-7,31],[31,26],[-48,17],[-16,-16],[-15,13],[7,49],[1,53],[-15,27],[-2,16],[47,55],[-5,53],[20,14],[16,-2],[-2,39],[14,12],[24,-19],[12,7],[0,28],[25,35],[-16,44],[8,23],[39,25],[13,17],[-18,11],[2,24],[35,3],[10,30],[21,36],[-16,43],[32,14],[20,-16],[24,11],[-6,23],[-36,19],[32,22],[8,15],[4,36],[-6,19],[-28,13],[-13,-19],[-1,-18],[-24,4],[-8,20],[-10,52],[8,25],[0,32],[25,19],[32,8],[11,42],[-27,24],[-4,84],[11,35],[-15,8],[-18,39],[-14,18],[-17,69],[-28,53],[6,50],[17,19],[5,29],[-7,21],[15,17],[11,31],[-5,27],[4,28],[18,63],[-7,31],[-18,23],[-17,50],[-5,35],[8,19],[-5,24],[-16,-13],[-10,6],[-2,25],[14,38],[19,39],[20,25],[20,6],[12,22],[16,3],[25,43],[0,42],[4,27],[-8,13],[14,27],[37,-11],[51,19],[39,24],[25,21],[6,26],[13,10],[64,-6],[17,6],[46,1],[35,-11],[22,10],[14,26],[29,27],[35,9],[17,-4],[40,-25],[21,-8],[44,-30],[32,18],[32,5],[42,24],[30,29],[32,15],[21,3],[21,15],[2,17],[-13,56],[13,17],[-11,23],[5,42],[19,9],[19,-3],[12,19],[-12,22],[1,14],[41,43],[46,-2],[43,37],[15,5],[24,-6],[20,-24],[28,1],[10,31],[12,15],[34,5],[41,-8],[39,22],[33,36],[32,22],[6,21],[22,-1],[3,12],[-12,32],[7,7],[42,7],[23,34],[7,35],[1,28],[16,42],[28,-3],[12,12],[4,23],[-20,15],[-3,29],[28,24],[35,35],[9,-17],[-34,-24],[10,-18],[30,7],[21,59],[31,-8],[32,9],[9,8],[12,39],[1,38],[17,-13],[25,22],[20,0],[0,18],[-20,20],[-12,38],[-21,20],[-5,26],[29,-3],[19,17],[18,36],[11,41],[-18,25],[-32,24],[-44,45],[4,27],[18,32],[51,0],[31,-14],[36,13],[0,28],[30,-3],[8,21],[-19,25],[26,4],[26,25],[6,23],[-10,13],[6,21],[-7,15],[-19,-19],[0,33],[-8,3],[-23,-23],[-1,26],[-21,13],[14,19],[10,33],[-10,47],[4,44],[13,4],[6,32],[-15,-3],[-16,23],[-17,12],[19,32],[-15,30],[-3,30],[-15,6],[-7,-18],[-29,3],[10,20],[-11,11],[-25,5],[-11,24],[10,14],[-10,33],[21,18],[-53,38],[9,29],[-13,46],[12,30],[-23,14],[8,22],[-19,25],[-16,37],[-14,16],[0,15],[-21,17],[5,35],[-20,-5],[-12,7],[4,82],[-7,25],[-14,9],[1,26],[46,16],[17,18],[6,38],[17,8],[23,38],[17,11],[-3,17],[12,26],[33,14],[16,2],[18,29],[8,22],[-5,28],[15,46],[-30,47],[13,33],[29,19],[13,1],[16,57],[20,16],[-2,34],[-13,23],[0,16],[29,38],[-8,35],[12,22],[22,15],[17,3],[21,23],[2,27],[23,16],[12,25],[28,32],[-11,25],[19,11],[3,16],[25,32],[15,-7],[0,25],[-25,59],[-31,46],[-13,33],[-5,43],[8,27],[-11,11],[11,75],[-5,34],[-19,4],[-22,49],[-14,18],[-1,16],[-17,11],[-14,22],[9,21],[19,17],[-13,10],[22,34],[22,16],[36,13],[19,20],[14,3],[25,-27],[60,-7],[15,41],[37,14],[3,10],[-127,-2]],[[344587,296656],[113,-4],[85,0],[75,-4],[283,-37],[85,-3],[22,-5],[46,7],[119,-20],[241,-12],[29,-4],[9,11],[18,-8],[77,1],[45,4],[60,-2],[73,0],[39,-5],[81,-6],[140,-6],[158,-7],[23,-3],[150,-9],[79,-8],[123,-4],[40,1],[106,-9],[44,-8],[81,-3],[65,-4],[20,4],[101,-3],[4,-3],[90,-3],[233,-16],[60,3],[83,8],[28,-3],[72,-1],[145,11],[91,0],[43,-3],[138,-15],[101,-5],[86,-6],[356,-23],[42,-2],[379,-30],[59,-4],[244,-18],[111,0],[119,-1],[411,-7],[211,-1],[174,0],[18,-1],[279,3],[38,-2],[79,2],[76,-1],[122,0],[83,-2],[10,1],[257,-3],[246,-1],[9,2],[109,-3],[13,1],[218,-4],[174,-2],[191,1],[61,2],[160,1],[522,-2],[110,3],[285,1],[42,-1],[198,2],[351,1],[200,-1],[242,1],[246,-3],[119,2],[267,1],[161,-5],[388,-2],[107,7],[63,2],[338,5],[415,7],[297,-3],[81,-2],[613,4],[292,2],[483,5],[442,-2],[194,0],[248,0],[4,-1],[444,-2],[125,1],[468,-2],[47,9],[78,7],[60,-19],[98,0],[77,3],[119,0],[530,-4],[7,13],[5,35],[177,-4],[223,-5],[77,1],[110,-2],[40,3],[402,-1],[174,0],[61,-2],[235,1],[294,0],[408,0],[354,0],[500,0],[312,-1],[123,2],[86,-1],[173,2],[202,0]],[[365357,296440],[24,-294],[124,-725],[21,-125],[16,-64],[119,-535],[96,-354],[32,-130],[18,-61],[59,-179],[101,-284],[152,-441],[55,-142],[193,-582],[42,-131],[67,-222],[14,-16],[37,-59],[18,-65],[1,-32],[32,-76],[50,-142],[20,-94],[26,-145],[24,-114],[23,-151],[16,-134],[22,-251],[1,-105],[-2,-97],[-6,-84],[-12,-61],[-33,-194],[-10,-200],[-13,-121],[-6,-100],[-1,-98],[-7,-120],[-6,-48],[-8,-38],[-31,-181],[-22,-139],[-11,-59],[-2,-28],[-13,-84],[-8,-59],[-2,-51],[-16,-144],[-31,-156],[-1,-26],[-9,-37],[-13,-39],[-35,-84],[-53,-60],[-19,-16],[-50,-31],[-30,-10],[-45,0],[-27,5],[-34,13],[-41,29],[-42,48],[-32,0],[-57,-20],[-65,-26],[-91,-50],[-77,-40],[-91,-62],[-33,-20],[-76,-29],[-26,-3],[-48,-26],[-154,-91],[-5,-7],[-45,-19],[-71,-53],[-56,-37],[-36,-18],[-107,-77],[-49,-40],[-8,-11],[-30,-21],[-16,-20],[-55,-55],[-31,-37],[-32,-49],[-12,-24],[-60,-64],[-65,-85],[-46,-38],[-30,-8],[-62,-4],[-29,-30],[-325,-389],[-65,-82],[-92,-128],[-177,-234],[-107,-126],[-108,-151],[-126,-189],[-77,-127],[-15,-23],[-68,-114],[-48,-84],[-118,-221],[-109,-218],[-19,-41],[-37,-105],[-41,-112],[-17,-69],[-22,-102],[-20,-57],[-31,-57],[-44,-40],[-37,-26],[-34,-17],[-26,-3],[-57,7],[-52,23],[-33,33],[-41,58],[-25,61],[-17,86],[-40,77],[-20,52],[-6,61],[-2,44],[-114,49],[-70,27],[-37,17],[-55,50],[-20,2],[-111,23],[-70,2],[-113,-10],[-131,-15],[-152,-34],[-151,-30],[-164,-41],[-172,-47],[-143,-64],[-138,-58],[-30,-28],[-23,-15],[-30,-11],[-77,-21],[-73,-50],[-54,-32],[-68,-49],[-77,-65],[-62,-56],[-30,-35],[-42,-46],[-17,-22],[-79,-87],[-79,-79],[-21,-24],[-43,-32],[-50,-29],[-25,-12],[-45,-28],[-46,-37],[-72,-52],[-25,-22],[-131,-96],[-47,-40],[-91,-84],[-31,-25],[-48,-45],[-28,-30],[-99,-86],[-56,-67],[-87,-100],[-135,-173],[-7,-16],[-28,-46],[-33,-35],[-34,-22],[-18,-26],[-95,-143],[-26,-61],[-19,-30],[-42,-47],[-38,-26],[-34,-56],[-30,-83],[-49,-68],[-4,-36],[-23,-81],[-32,-54],[-27,-29],[1,-26],[-9,-56],[-14,-37],[-75,-95],[-38,-78],[-52,-199],[-39,-128],[-29,-98],[-18,-65],[-19,-60],[-42,-174],[4,0],[-51,-232],[-24,-67],[-5,-81],[-15,-41],[-25,-46],[-34,-92],[-3,-46],[-7,-41],[-25,-58],[-5,-86],[-11,-54],[13,-112],[-6,-90],[11,-87],[-5,-66],[-10,-49],[-33,-68],[-36,-54],[-41,-34],[-49,-24],[-38,-5],[-36,0],[-33,11],[-37,23],[-56,48],[-18,37],[-15,48],[-9,41],[-5,87],[-58,48],[-41,39],[-42,50],[-35,68],[-13,51],[-50,15],[-75,28],[-81,25],[-73,17],[-84,8],[-48,1],[-106,-9],[-69,-1],[-106,4],[-30,-2],[-46,-10],[-60,-8],[-60,-12],[-82,-14],[-47,-17],[-45,-4],[-16,-13],[-97,-35],[-166,-78],[-148,-76],[-40,-23]],[[355813,280572],[-147,222],[-265,373],[-33,44],[-131,182],[-143,202],[-26,31],[-21,32],[-342,475],[-217,300],[-1,3],[-280,385],[-238,327],[-330,455],[-122,170],[-184,252],[-121,168],[-78,112],[-262,381],[-93,133],[-58,79],[-300,404],[-42,48],[-27,43],[-222,298],[-236,313],[-235,317],[-261,5],[-42,2],[-402,-4],[-441,16],[-153,6],[-285,7],[-144,8],[-301,7],[-281,6],[-266,7],[-173,7],[-113,2],[-50,3],[-206,1],[-236,4],[-239,5],[-186,2],[-16,-1],[-169,4],[27,321],[28,351],[-23,39],[-116,214],[-44,85],[-145,275],[-35,69],[-177,313],[-81,-86],[-141,-132],[-8,-6],[-94,-92],[-53,-48],[-18,38],[-39,65],[-1,77],[5,24],[-2,36],[25,74],[13,10],[28,9],[13,11],[8,35],[-3,26],[-20,68],[-42,31],[0,18],[14,60],[13,19],[36,5],[-127,12],[-142,16],[-72,5],[-412,31],[-493,30],[-176,12],[-85,6],[-175,10],[-71,5],[-185,11],[-370,27],[-224,13],[-184,8],[-170,11],[-87,4],[-222,12],[-112,8],[-108,7],[-317,12],[-68,5],[-106,9],[-149,6],[-229,20],[-102,15],[-27,-2],[-21,-7],[-25,-21],[-41,-11],[-31,-14],[-7,-16],[-19,-18],[-26,11],[-8,23],[-21,-11],[-20,25],[-20,-1],[-10,-15],[-10,10],[-25,-6],[3,-26],[-32,-36],[-22,32],[-14,10],[-10,27],[20,18],[-7,39],[-17,24],[5,20],[-23,34],[-13,-3],[-19,-34],[-3,-23],[-34,-13],[-35,-25],[-17,-32],[-11,-59],[6,-20],[-17,-9],[-2,-27],[-33,-44],[-34,3],[-24,-13],[-1,20],[20,30],[-9,28],[-19,4],[-24,-18],[-30,-5],[-10,12],[-13,-12],[-18,2],[-2,-27],[-13,0],[-28,-41],[-17,19],[-15,-21],[-30,6],[-13,-25],[-20,-15],[-41,1],[2,20],[-33,20],[-24,-11],[-12,-22],[8,-29],[-13,-12],[-24,8],[-14,-22],[1,-15],[-33,-8],[-4,-18],[-34,9],[-16,-24],[-21,-5],[-27,10],[-24,1],[-3,-16],[-29,-13],[-24,-52],[-18,-3],[-9,24],[-18,14],[-11,-27],[-25,-5],[0,-19],[-17,-24],[-20,-4],[-20,3],[-17,-7],[-6,52],[-24,8],[-20,-16],[1,-31],[-18,-5],[-10,-24],[25,-23],[4,-15],[-14,-30],[-27,-44],[-7,20],[-23,-7],[-13,-18],[-18,-9],[-11,6],[-30,1],[-9,-38],[-17,-3],[-7,-33],[-16,-20],[-36,20],[-1,-46],[-8,-24],[-11,-12],[-25,5],[-40,-20],[-25,3],[10,30],[-4,12],[10,17],[5,32],[-10,18],[-21,10],[-78,-36],[-240,-102],[-333,-141],[-174,-73],[-131,-59],[-187,-82]],[[339532,287456],[-169,-4],[-337,-13],[-143,-7],[-251,-8],[-56,-2],[-392,-10],[-40,-1],[-169,-2],[-250,-3],[0,-32],[-17,1],[-441,6],[-145,-1],[-142,-2],[-309,1],[-80,1],[-148,-2],[-199,-1],[-165,2],[-137,1],[-234,2],[-202,0],[-199,3],[-61,0]],[[335246,287385],[48,605],[4,60],[11,127],[22,257],[11,94],[16,231],[8,-6],[35,41],[9,19],[54,41],[9,25],[27,29],[26,11],[36,65],[16,20],[15,7],[20,-4],[22,-13],[22,-37],[10,-23],[4,-47],[9,-23],[21,7],[17,-28],[35,4],[31,33],[20,-13],[18,10],[56,6],[23,-12],[14,-16],[24,0],[-4,25],[5,20],[27,12],[13,-17],[25,14],[17,-19],[15,-5],[20,16],[25,31],[10,4],[4,29],[38,16],[24,17],[28,8],[15,29],[18,6],[21,31],[16,53],[44,41],[8,30],[-17,31],[-6,22],[-26,11],[-1,34],[10,39],[0,18],[11,34],[-6,17],[-18,7],[8,29],[-15,30],[5,16],[15,11],[32,10],[12,19],[18,43],[27,39],[-3,42],[-10,33],[10,29],[-16,15],[-5,32],[-15,8],[-11,31],[-6,41],[30,3],[16,27],[32,38],[10,44],[-5,14],[19,13],[8,28],[30,4],[13,41],[14,-6],[10,10],[6,38],[23,-7],[13,33],[1,25],[21,-3],[8,-17],[35,22],[2,16],[19,25],[44,16],[17,-6],[28,16],[22,75],[14,12],[0,32],[21,30],[12,8],[28,56],[6,25],[35,23],[14,-4],[41,8],[30,-15],[30,14],[22,15],[29,-2],[56,61],[4,12],[22,30],[13,-3],[16,24],[26,11],[10,16],[14,3],[25,41],[4,27],[26,-4],[27,12],[35,-20],[40,31],[9,-13],[12,5],[22,-13],[15,13],[15,-1],[8,14],[19,13],[18,-5],[32,5],[33,0],[27,10],[11,-8],[30,4],[13,-8],[15,10],[12,-9],[43,-16],[14,9],[11,19],[15,-15],[25,24],[26,12],[23,31],[24,-7],[19,-20],[31,-45],[2,-17],[19,-8],[33,16],[23,3],[49,-9],[40,7],[24,-6],[48,6],[10,-16],[68,1],[16,20],[29,10],[25,64],[-2,24],[19,13],[8,27],[31,13],[5,16],[14,9],[8,29],[12,9],[21,49],[16,-1],[30,-10],[39,7],[5,13],[19,7],[40,39],[24,8],[14,14],[14,49],[30,6],[23,25],[24,-1],[10,22],[21,25],[10,45],[14,30],[27,11],[12,15],[19,7],[49,-16],[11,-22],[27,-26],[47,19],[21,54],[7,43],[20,2],[8,17],[35,21],[6,28],[18,17],[19,6],[17,32],[-3,33],[-8,23],[24,23],[-17,40],[15,21],[22,11],[15,29],[31,-4],[42,3],[20,-13],[38,13],[12,-7],[42,25],[9,1],[29,81],[26,13],[8,30],[11,19],[-2,24],[22,36],[39,-4],[25,10],[16,-4],[31,16],[27,-10],[11,21],[19,4],[33,26],[22,11],[4,13],[21,13],[13,25],[23,21],[61,-15],[31,16],[31,-25],[28,12],[43,-23],[11,-17],[16,9],[17,-18],[19,-3],[17,-28],[19,-2],[42,28],[34,52],[18,17],[27,6],[-4,27],[3,24],[20,47],[17,51],[27,52],[28,-1],[11,53],[-4,12],[22,11],[26,4],[14,13],[-12,37],[-2,47],[5,25],[-9,17],[3,30],[35,1],[33,23],[17,34],[-5,16],[-20,-5],[-10,22],[12,26],[3,27],[-8,21],[-9,61],[-13,31],[-9,65],[-13,1],[-11,27],[20,5],[29,-20],[14,3],[11,21],[-9,42],[11,43],[22,2],[11,17],[37,11],[16,14],[47,-28],[33,9],[23,-24],[22,-45],[17,-10],[4,-15],[14,-1],[8,-28],[22,-35],[40,30],[14,-1],[8,17],[-12,40],[20,42],[19,14],[13,25],[14,7],[16,74],[18,12],[11,29],[-14,16],[-11,-1],[-13,19],[5,23],[-6,41],[23,21],[12,48],[12,-2],[37,25],[27,-3],[19,33],[11,-3],[19,14],[3,15],[21,6],[7,12],[24,4],[34,32],[1,28],[27,9],[22,25],[43,24],[15,37],[19,20],[15,2],[9,16],[20,8],[30,24],[13,-5],[16,9],[17,22],[32,25],[15,-10],[42,-41],[10,-17],[-4,-38],[32,-16],[12,-22],[11,-6],[6,-24],[20,4],[13,-5],[4,-21],[-19,-19],[-26,-36],[2,-27],[-19,-15],[0,-39],[-20,-22],[-4,-26],[9,-39],[20,-8],[9,-28],[-8,-17],[-5,-28],[-10,-30],[0,-41],[25,-5],[12,-11],[30,10],[38,-4],[12,-8],[4,-29],[66,-31],[29,60],[26,22],[28,11],[12,14],[21,-7],[16,20],[26,4],[10,11],[18,3],[6,25],[9,1],[61,68],[12,27],[15,-2],[18,26],[37,30],[91,219],[87,215],[20,28],[24,17],[27,37],[34,14],[15,34],[26,13],[17,0],[29,46],[21,10],[10,-11],[39,-1],[46,30],[20,7],[11,16],[19,13],[21,28],[49,26],[29,-39],[24,2],[11,-10],[23,-3],[13,36],[22,15],[9,-22],[24,-6],[12,35],[44,43],[17,34],[9,30],[28,20],[19,-10],[27,-5],[6,-22],[26,-22],[14,12],[11,-32],[28,-19],[17,25],[46,-4],[11,14],[25,8],[17,-31],[0,-23],[11,-21],[15,-45],[-5,-54],[24,-65],[4,-22],[54,1],[28,19],[19,-10],[55,-1],[19,-15],[3,18],[32,16],[21,20],[11,1],[19,42],[7,38],[36,-8],[20,-23],[19,-6],[12,17],[11,40],[83,200],[152,367],[34,76],[41,86],[108,266],[39,32],[35,10],[27,26],[46,73],[4,18],[22,20],[15,25],[23,10],[25,26],[30,24],[37,8],[48,28],[40,27],[14,1],[10,-18],[3,-41],[14,-5],[25,7],[17,-29],[7,-1],[25,-28],[23,7],[14,-16],[35,4],[19,12],[12,18],[28,-9],[26,-18],[6,-12],[40,-6],[8,36],[-12,29],[-31,8],[-14,19],[-11,39],[2,29],[-11,16],[3,15],[-29,65],[13,21],[7,48],[-11,20],[-27,5],[3,31],[-10,14],[5,29],[-5,25],[43,18],[7,24],[23,14],[10,48],[-12,19],[24,18],[1,27],[-11,20],[11,8],[-3,48],[5,21],[15,6],[6,17],[32,10],[13,19],[-5,46],[2,29],[-7,53],[7,13],[-5,26],[-10,10],[12,47],[-22,88],[-18,17],[3,27],[-3,40],[29,5],[9,47],[25,41],[-4,24],[6,33],[-8,29],[45,14],[9,17],[-10,40],[5,25],[-8,16],[10,13]],[[374026,345467],[288,8],[73,3],[548,16],[3,-5],[71,1],[18,6],[40,-6],[117,2],[58,-4],[19,2],[90,-4],[112,1],[20,5],[301,9],[241,-5],[273,-1],[94,-1],[111,-4],[81,-5],[103,-4],[26,-10],[94,-19],[83,-2],[181,5],[114,-2],[168,-11],[74,-1],[112,-4],[69,-6],[206,-3],[238,8],[77,1],[75,3],[92,-3],[110,-1],[282,7],[162,8],[107,1],[114,-3],[61,3],[350,15],[231,5],[143,-2],[293,8],[174,-1],[46,2],[164,2]],[[377151,332231],[-495,23],[-433,19],[-310,14],[-405,15],[-439,13],[-242,10],[-455,14],[-70,2]],[[374302,332341],[-40,1],[-51,324],[16,35],[9,34],[-12,36],[6,81],[24,-4],[1,24],[9,346],[0,54],[6,246],[15,504],[15,348],[6,168],[17,532],[1,80],[8,171],[12,566],[3,88],[14,566],[5,270],[-3,35],[16,26],[6,28],[-18,54],[-12,9],[-1,43],[6,17],[-24,35],[-11,30],[-39,39],[-41,14],[0,20],[-13,10],[-22,-9],[-22,11],[18,30],[-16,13],[12,32],[8,38],[-9,35],[-16,29],[-14,9],[6,32],[-9,21],[2,28],[-17,14],[-11,-23],[-23,15],[-27,4],[-11,-9],[-16,7],[-38,-4],[-29,-23],[-9,20],[-42,-14],[-24,1],[9,-23],[-22,-41],[13,-38],[-2,-13],[-38,-40],[7,-23],[-18,-13],[15,-30],[-10,-13],[9,-24],[-5,-22],[-19,-4],[-8,-28],[-22,-10],[-27,18],[-40,38],[-12,21],[-29,15],[-8,18],[2,20],[31,72],[-7,54],[20,48],[-1,16],[-34,64],[5,48],[28,33],[12,30],[0,18],[25,74],[3,27],[13,57],[-6,26],[11,27],[20,17],[16,43],[23,48],[27,35],[25,44],[0,59],[2,48],[26,54],[40,97],[1,15],[-15,32],[-8,44],[-16,26],[-52,53],[-10,58],[-8,18],[-32,35],[-6,26],[12,49],[15,24],[26,19],[18,39],[-4,12],[-23,26],[-7,29],[11,48],[18,58],[-2,10],[-32,83],[-44,69],[-22,97],[-17,48],[-6,36],[11,79],[0,45],[-5,71],[-17,55],[-2,27],[12,80],[1,27],[10,62],[0,29],[-15,58],[-13,17],[-27,14],[-19,28],[-31,31],[-8,18],[19,100],[9,56],[3,45],[50,125],[4,38],[10,34],[-3,34],[-15,74],[15,31],[14,13],[18,29],[0,32],[7,13],[7,53],[11,25],[-6,27],[10,38],[16,17],[-2,62],[25,17],[6,22],[29,18],[10,21],[27,19],[4,27],[23,44],[1,18],[14,16],[7,29],[19,16],[2,26],[29,13],[17,23],[20,-5],[8,30],[10,7],[25,90],[6,51],[-5,34],[-16,44],[-19,80],[-7,50],[-1,53],[2,84],[-12,61],[-26,73],[-1,44],[5,45],[11,22],[33,39],[21,33],[10,36],[6,46],[52,149],[8,61],[-1,22],[-22,75],[5,51],[-4,71],[-15,46],[-9,91],[-22,40],[-28,37],[-3,63],[-6,13],[-20,13],[-12,47],[-23,34],[1,30],[-15,22],[-49,35],[-12,27],[-25,29],[-11,26],[-16,22],[-3,36],[-22,42],[14,26],[4,34],[-17,44],[-2,24],[-27,34],[14,75],[-4,31],[29,31],[-17,30],[19,35],[-3,27],[32,54],[-9,12],[5,32],[-2,19],[16,9],[-10,37],[15,13],[16,43],[-16,17],[2,34],[-1,92],[2,85],[-3,41],[7,25],[34,58],[25,102],[14,25],[24,25],[9,21],[2,26],[-6,84],[-21,24],[-15,27],[-18,20],[-11,23],[-43,35],[-20,25],[-15,32],[-14,10],[-7,69],[7,16],[-1,26],[27,31],[10,24],[31,177],[15,43],[30,39],[23,19],[9,28],[-3,139],[6,99],[-2,25],[-42,66],[-9,26],[-6,39],[13,33],[27,103]],[[373517,328306],[192,6],[270,-11],[242,-12],[457,-22],[37,-1],[417,-20],[108,-4],[117,-1],[78,2],[15,-3],[276,-3],[52,-5],[119,-2],[-11,-226],[176,32],[2,28],[13,4],[-2,23],[11,23],[-10,19],[5,17],[15,-9],[19,50],[-19,20],[4,17],[198,4],[49,-4],[151,-22],[125,-9],[4,-34],[87,-1],[32,31],[70,12],[89,12],[171,-2],[69,1],[395,-10],[33,-1],[139,-2],[177,-1],[3,-1],[373,-5],[246,-18],[176,-3],[127,-1],[342,-14],[319,-5],[5,-90]],[[379098,323988],[-78,34],[-248,-85],[-69,-30],[-221,-164],[-211,-70],[-382,-114],[-473,-147],[-510,-159],[-338,-106],[-445,-140],[-189,-59],[-268,-85],[-426,-135],[-232,-93],[-418,-168],[-161,-66],[-72,-28],[-92,-27],[-350,-117],[-441,-152],[-322,-110],[-79,-28],[-155,194],[-10,20],[9,18],[-9,20],[-2,35],[18,66],[-27,50],[-29,64],[-40,76],[-80,161],[-48,102],[-17,26],[-15,36],[221,170],[259,191],[240,180],[39,31],[106,77],[-107,217],[-134,262],[4,36],[3,136],[14,222],[6,77],[3,92],[5,81],[11,147],[6,86],[2,80],[11,232],[12,203],[5,83],[6,129],[18,276],[3,124],[8,173],[4,96],[17,309],[3,103],[21,366],[0,15],[11,199],[13,196],[6,169],[16,264],[9,190],[8,287]],[[365388,314818],[52,0],[27,89],[21,57],[22,51],[43,82],[32,51],[47,65],[38,45],[67,65],[54,43],[49,32],[47,26],[75,32],[90,26],[61,11],[92,5],[79,-6],[94,-19],[58,-19],[84,-37],[52,-29],[46,-31],[61,-49],[29,-28]],[[366708,315280],[34,-32],[-117,-69],[-42,-53],[-7,-37],[-25,-18],[-16,-29],[1,-22],[-20,-82],[-22,-57],[-3,-96],[-9,-14],[-33,3],[-18,-42],[-9,-35],[-37,-23],[-10,-28],[-3,-76],[-8,-47],[-10,-25],[-39,-60],[-6,-21],[-24,-35],[-26,-8],[-23,-48],[-20,-9],[-19,-31],[-1,-45],[11,-65],[0,-27],[12,-28],[11,-7],[28,-35],[39,-35],[13,-26],[29,-5],[23,-29],[3,-64],[-22,-61],[-11,-22],[-42,-63],[5,-28],[14,-11],[4,-29],[-5,-71],[2,-14],[-9,-30],[0,-33],[8,-38],[-66,-11],[-44,-3],[-16,-74],[11,-159],[104,-147],[175,-247],[42,-84],[88,-104],[151,-214],[73,-101],[213,-286],[72,-152],[182,-384],[106,-249],[97,-214],[82,-133],[90,-259],[16,-51],[13,-29],[35,-104],[214,-610],[173,-497]],[[368120,309408],[-8,-12],[14,-82],[1,-94],[-4,-65],[16,-145],[3,-46],[21,-151],[3,-58],[-2,-56],[3,-96],[0,-105],[16,-38],[14,-73],[4,-96],[9,-107],[3,-96],[13,-189],[3,-181],[-3,-134],[-4,-44],[0,-85]],[[247916,299037],[158,-1],[442,0],[173,0],[122,0],[388,0],[223,2],[418,0],[2,0],[340,2],[165,-1],[376,1],[5,-3],[434,3],[4,0],[324,1],[116,1],[557,0],[402,0],[547,0],[389,0],[313,0],[422,0],[526,1],[377,0],[0,0],[435,0],[27,-44],[335,0],[86,0],[314,4],[249,-2],[327,5],[435,2],[113,1],[160,-2],[38,1],[303,0],[168,4],[310,1],[343,4],[245,0],[423,1],[104,0],[132,1],[171,0],[125,-2],[180,2],[157,0],[175,0],[529,-2],[297,0],[100,-3],[216,1],[87,-1],[55,2],[192,-9],[45,-1],[87,-6],[101,3],[443,1],[440,1],[373,-1],[69,1],[38,3],[141,0],[41,-1],[92,1],[64,-2],[113,1],[202,-1],[76,-1],[246,0],[59,2],[252,4],[124,1],[319,4],[441,5],[94,1],[289,2],[81,2],[181,1],[81,1],[329,4],[57,4],[40,-3],[172,2],[268,1],[176,2],[576,2],[299,0],[340,3],[115,1],[388,0],[40,-1]],[[269262,299043],[0,-394],[0,-627],[0,-532],[0,-444],[-1,-302],[1,-594],[-1,-3]],[[269261,296147],[-139,0],[1,-223],[0,-433],[0,-404],[1,-391],[0,-62],[1,-662],[1,-241],[0,-484],[-1,-202],[0,-522],[-1,-216],[-3,-73],[1,-64],[0,-102],[2,-29],[-1,-240],[1,-147],[-1,-578],[0,-87],[-1,-570],[-2,-680],[1,-354],[-1,-482],[-1,-51],[1,-407],[0,-205],[-3,-61],[2,-88],[0,-170],[0,-132],[0,-283],[0,-551],[-1,-705],[1,-42],[-1,-160],[1,-58],[-2,-438],[0,-108],[0,-329],[-1,-486],[0,-248],[-1,-541],[0,-450],[0,-315],[0,-288],[1,-78],[-1,-111],[0,-281],[1,-34],[-1,-417],[1,-89],[-2,-266],[-8,-576],[-2,-209],[-3,-248],[-5,-286],[-1,-53],[-4,-379],[-2,-117],[-5,-441],[0,-76],[-3,-158],[-2,-166],[-5,-416],[-4,-221],[-3,-392],[-2,-61],[-5,-386],[-4,-331],[-7,-495],[-6,-495],[-2,-141],[1,-663],[-2,-165],[1,-172],[0,-254],[-1,-168],[1,-78],[0,-426],[1,-247],[-1,-135],[0,-589],[0,-541],[0,-395],[0,-647],[1,-351],[0,-225],[0,-737],[-215,-1],[-250,0],[-69,1],[-222,0],[-342,-1],[-218,0],[-420,0],[-351,0],[-329,0],[-7,1],[-318,0],[-124,1],[-142,-3],[-299,0],[-7,0],[-334,-1],[-549,0],[-316,1],[-440,0],[-233,1],[-148,-1],[-118,2],[-437,0],[-246,1],[-188,-1],[-445,1],[-72,-1],[-275,1],[-272,0],[-62,-1],[-264,0],[-10,-1],[-441,2],[-191,0],[-350,2],[-375,2],[-341,2],[-68,3],[-270,0],[-96,1],[-75,-2],[-90,0],[-26,-4],[-53,5],[-281,1],[-434,1],[-441,-6],[-170,-1],[-52,1],[-220,-1],[-65,1],[-365,-3],[-70,-1],[-288,0],[-70,-2],[-3,-33],[-15,-22],[-27,-7],[-18,-23],[-11,-31],[5,-21],[28,-32],[13,-3],[12,13],[12,-8],[3,-27],[-6,-21],[-13,-13],[-3,-38],[8,-10],[18,19],[12,-1],[-3,-40],[-30,-20],[5,-55],[-11,-35],[-16,-20],[17,-8],[47,-30],[-16,-16],[-10,1],[-23,-29],[-28,-15],[-23,-26],[-19,-39],[1,-22],[25,-18],[26,-31],[2,-31],[-17,-38],[-3,-48],[27,-29],[8,-29],[39,-57],[32,-1],[13,-10],[1,-28],[-12,-69],[9,-16],[31,0],[21,-16],[38,-68],[22,-1],[16,18],[12,-13],[56,-22],[11,-22],[29,-29],[10,-33],[16,-11],[5,-13],[-4,-32]],[[256807,268810],[-12,4],[-307,1],[-25,0],[-441,-2],[-10,1],[-177,0],[-407,-1],[-194,1],[-95,-2],[-420,0],[-230,0],[-328,1],[-83,0],[-429,-1],[-334,1],[-427,0],[-399,-1],[-441,0],[-243,1],[-241,0],[-240,-1],[-452,0],[0,-194],[1,-586],[0,-279],[-2,-435],[1,-390],[0,-725],[-149,0],[-413,0],[-277,1],[-193,-1],[-412,0],[-319,-1],[-182,-3],[-201,-2],[-471,0],[-181,-1],[-175,1],[0,1]],[[247899,266198],[0,246],[1,365],[-1,244],[3,376],[0,171],[1,353],[-1,223],[1,279],[0,232],[-1,205],[1,427],[1,28],[1,720],[-1,163],[1,247],[1,769],[1,673],[1,618],[-1,429],[0,571],[1,507],[0,369],[2,160],[0,774],[0,470],[-1,46],[0,247],[-1,145],[2,139],[-1,90],[1,256],[-1,188],[1,329],[-2,54],[2,93],[0,269],[0,35],[1,270],[1,57],[-3,201],[0,172],[1,20],[-1,112],[2,42],[0,225],[0,631],[0,46],[-1,666],[0,58],[0,546],[2,179],[-2,724],[1,242],[-1,158],[1,607],[0,206],[1,408],[0,537],[0,604],[1,252],[0,608],[1,337],[-1,509],[3,83],[-3,85],[2,82],[-2,84],[0,392],[1,306],[-1,624],[0,396],[0,724],[-2,657],[0,551],[1,376],[1,578],[-1,11],[1,637],[-1,129],[2,683],[-1,260],[0,412],[1,247],[1,483],[-1,46],[-1,330],[1,18],[0,352],[0,63],[0,516],[1,168],[-1,2],[1,620],[1,124],[-1,504],[0,317],[1,719],[0,419],[0,492],[0,422]],[[193930,328009],[274,0],[140,0],[248,-6],[130,-1],[15,-3],[151,-2],[200,-1],[116,1],[265,-1],[28,-1],[180,1],[72,-6],[87,6],[135,4],[81,1],[251,-11],[115,27],[76,2],[193,1],[82,4],[82,-3],[74,1],[163,6],[135,-11],[72,-3],[101,-1],[269,17],[72,7],[64,3],[144,10],[133,15],[31,7],[73,-8],[47,-2],[101,-12],[65,-3],[69,-11],[204,1],[162,-1],[169,-2],[65,3],[125,1],[145,4],[52,-1],[78,1],[174,1],[180,3],[96,1],[159,6],[281,13],[59,2],[129,-1],[210,2],[68,5],[314,-11],[100,-2],[299,1],[49,1],[122,-8],[92,-3],[359,-11],[363,-2],[180,-3],[196,-4],[142,-5],[452,-11],[176,-6],[391,-7],[53,1],[192,-4],[60,1],[129,-4],[105,8],[208,-1],[12,-3],[429,-6],[105,-7],[216,-8],[122,-1],[563,4],[102,2],[112,-1],[107,-2],[177,0],[188,-4],[155,0],[206,4],[155,0],[153,-1],[522,-2],[66,-1],[143,2],[159,6],[85,1],[216,1],[249,2],[173,0],[7,-3]],[[209224,327987],[-1,-503],[0,-191],[4,-724],[-1,-170],[-1,-554],[2,-36],[-3,-562],[-1,-127],[-1,-407],[0,-374],[-1,-668],[1,-80],[0,-464],[-1,-423],[1,-352],[-1,-129],[2,-482],[0,-257],[3,-454],[-1,-117],[3,-305],[4,-559],[1,-147],[2,-168],[1,-766],[0,-362],[-3,-334],[1,-253],[-1,-428],[-1,-84],[0,-253],[-2,-247],[1,-174],[-3,-511],[-2,-169],[-2,-269],[0,-181],[-3,-216],[-2,-234],[0,-128],[-2,-133],[1,-415],[-1,-260],[1,-167],[-4,-337],[1,-105],[-2,-229],[-3,-170],[-11,-508],[-1,-587],[3,-167],[0,-105],[4,-223],[3,-362],[9,-727],[182,-204],[63,-70],[197,-223],[154,-172],[102,-116],[274,-311],[309,-351],[44,-51],[138,-155],[121,-139],[146,-163],[37,-45],[101,-114],[39,-42],[97,-112],[204,-240],[21,-20],[129,-145],[191,-220],[101,-113],[56,-68],[385,-440],[102,-118],[52,-67],[186,-210],[102,-124],[181,-201],[96,-110],[165,-194],[59,-67],[308,-365],[89,-98],[115,-133],[311,-373],[16,-19],[175,-200],[251,-295],[17,-22],[161,-190],[264,-311],[11,-16],[430,-506],[272,-324],[170,-201],[260,-308],[52,-66],[179,-212],[26,-28],[150,-186],[114,-140],[102,-108],[441,-543],[137,-166],[112,-125],[163,-202],[187,-229],[143,-168],[15,-19],[126,-153],[3,1],[334,-413],[114,-141],[8,-7],[371,-456],[75,-85],[142,-176],[77,-93],[112,-139],[89,-108],[139,-174],[172,-210],[120,-146],[11,-12],[257,-320],[190,-234],[187,-234],[249,-309],[208,-260],[233,-289],[297,-369],[145,-184],[44,-53],[152,-195],[230,-293],[26,-29],[184,-229],[247,-310],[289,-365],[268,-339],[203,-258],[124,-157],[19,-25],[270,-345],[24,-29],[139,-177],[329,-420],[65,-84],[231,-295],[4,-7],[170,-218],[316,-406],[259,-335],[232,-298],[312,-405],[161,-211],[86,-108],[142,-188],[193,-250],[13,-23],[213,-280],[38,-42],[79,-108],[258,-332],[37,-49],[314,-410],[146,-197],[65,-79],[135,-178],[112,-148],[121,-162],[187,-249],[159,-212]],[[228177,287463],[14,-58],[0,-50],[-18,-82],[-1,-59],[18,-82],[0,-35],[-8,-47],[-4,-54],[9,-55],[-1,-26],[-16,-70],[-5,-55],[6,-62],[8,-29],[16,-37],[30,-39],[55,-43],[42,-48],[20,-32],[16,-44],[20,-74],[7,-65],[10,-45],[23,-60],[4,-20],[19,-51],[21,-40],[44,-57],[35,-33],[17,-25],[32,-60],[22,-18],[34,-18],[34,-32],[13,-48],[16,-12],[20,0],[20,-9],[10,-32],[2,-33],[10,-61],[11,-32],[24,-49],[4,-35],[12,-20],[-7,-29],[-18,-24],[3,-14],[27,-28],[25,-42],[7,-24],[-4,-57],[10,-51],[36,-39],[15,-24],[0,-47],[-11,-18],[-32,-15],[3,-17],[47,-76],[60,-64],[55,-154],[31,-77],[10,-77],[0,-53],[-15,-67],[-2,-40],[5,-64],[-7,-43],[-11,-38],[0,-34],[38,-59],[16,-5],[28,5],[26,11],[58,10],[19,-12],[13,-24],[13,-42],[35,-17],[56,-48],[22,-31],[9,-22],[4,-45],[16,-26],[23,-13],[45,-4],[16,-12],[36,-59],[14,-12],[51,-66],[16,-45],[13,-18],[44,-20],[50,-6],[30,-30],[19,-10],[31,-30],[28,-57],[39,-111],[2,-14],[58,-69],[9,-16],[-4,-43],[4,-42],[8,-45],[-3,-22],[8,-46],[12,-37],[-1,-13],[-14,-15],[-33,10],[-30,-7],[-40,8],[1,-47],[-8,-11],[-25,-12],[-8,-12],[-7,-32],[-46,-53],[-86,-127],[-28,-22],[-9,-20],[3,-45],[-7,-30],[-10,-11],[-39,-21],[-13,-22],[-34,-33],[-50,-21],[-25,12],[-40,-9],[-20,-21],[-21,-39],[-27,-44],[-22,-46],[-44,-47],[-41,-15],[-42,2],[-17,-8],[-12,-15],[-14,-40],[-22,-29],[-45,-15],[-40,-34],[-38,9],[-37,-9],[-14,-14],[-37,-62],[-6,-24],[-22,-32],[-6,-57],[-6,-32],[-6,-82],[2,-44],[11,-44],[2,-28],[-4,-56],[-7,-32],[-20,-37],[-39,-31],[-30,8],[-14,-28],[4,-21],[25,-22],[3,-21],[-7,-15],[-27,-5],[-9,-23],[-42,-51],[-11,-30],[-38,-53],[-13,-24],[-37,-27],[-16,6],[-25,-14],[-24,-46],[-24,-76],[-1,-41],[6,-14],[38,-23],[31,-40],[21,-47],[2,-25],[-15,-20],[-14,-3],[-33,21],[3,-34],[22,-43],[30,-43],[20,-23],[5,-47],[-3,-17],[-46,-44],[-26,11],[-20,-15],[-3,-12],[4,-43],[22,-73],[12,-58],[-10,-37],[-19,-23],[33,-103],[7,-52],[34,-118],[8,-43],[2,-55],[-13,-55],[-15,-42],[29,-36],[12,-34],[15,-18],[8,-49],[-1,-30],[-7,-50],[-41,-28],[-15,-4],[-41,-32],[-23,-38],[-6,-55],[20,-34],[33,-6],[11,-15],[-15,-25],[-24,0],[-20,-9],[-9,-16],[0,-18],[13,-27],[15,-19],[5,-34],[-9,-26],[-16,-12],[-1,-25],[14,-35],[17,-21],[2,-17],[-17,-14],[-15,-25],[-23,-56],[-11,-20],[0,-49],[16,-80],[16,-43],[12,-14],[14,-36],[-22,-17],[-5,-13],[-36,-32],[-56,-57],[-10,-48],[-1,-44],[-30,-43],[-39,-16],[-31,-27],[-11,-18],[-17,-47],[-9,-37],[-28,-55],[-17,-23],[-6,-20],[-31,-62],[3,-53],[-19,-88],[-7,-24],[-20,-32],[-29,-34],[-22,-18],[-31,-4],[-54,36],[-50,-7],[-28,-17],[-9,-27],[-12,-12],[-32,-6],[-33,3],[-18,-16],[3,-27],[38,-70],[22,-33],[0,-35],[29,-89],[4,-51],[-10,-89],[-15,-54],[-17,-38],[-48,-53],[-23,-36],[-4,-20],[28,-83],[19,-17],[83,-31],[35,-22],[26,-34],[17,-56],[-8,-28],[-11,-7],[-20,-25],[-17,-12],[-5,-16],[24,-60],[29,-54],[3,-37],[-18,-91],[13,-89],[-3,-38],[-17,-73],[5,-38],[-12,-44],[-16,-75],[-11,-24],[-23,-38],[-24,-101],[-15,-95],[0,-36],[5,-17],[19,-11],[23,-1],[20,-12],[-1,-46],[8,-30],[45,-80],[-3,-49],[5,-40],[10,-22],[30,-31],[16,7],[24,59],[14,25],[8,2],[19,-20],[34,-74],[14,-18],[25,-13],[44,-8],[29,-2],[29,5],[18,11],[23,42],[23,7],[25,-9],[41,-6],[35,-2],[43,-8],[38,-14],[31,-37],[18,-35],[23,-79],[10,-79],[5,-59],[9,-48],[10,-11],[31,13],[15,17],[16,-2],[14,-18],[5,-36],[-1,-50],[-11,-42],[-23,-44],[-13,-33],[10,-61],[9,-20],[39,-53],[5,-30],[-1,-51],[-6,-80],[-4,-85],[-10,-148],[-24,-37],[-65,-90],[-57,-39],[-18,-29],[-18,-46],[-29,-42],[-10,-29],[-1,-99],[9,-27],[9,-72],[-44,-1],[0,-41],[-89,-2],[0,-42],[-61,0],[0,-42],[-118,-3],[-3,-35],[-47,8],[-14,7],[-43,6],[-31,9],[-42,2],[-44,15],[-39,9],[-30,36],[-15,6],[-12,-22],[-14,-39],[-13,-16],[-8,-22],[-14,-55]],[[227873,274232],[-230,-26],[-440,-50],[-323,-35],[-442,-51],[-442,-49],[-441,-53],[-316,-36],[-172,-20],[-395,-50],[-129,-15],[-313,-40],[-181,-22],[-260,-30],[-114,-16],[-262,-32],[-66,-9],[-162,-19],[-172,-23],[-71,-9],[-36,-7],[-143,-18],[-158,-19],[-212,-29],[-307,-40],[-114,-13],[-385,-54],[-147,-18],[-98,-14],[-173,-24],[-138,-18],[-214,-30],[-178,-23],[-96,-14],[-221,-29],[-154,-25],[-96,-14],[-64,-5],[-57,-10],[-89,-11],[-137,-22],[-143,-17],[-210,-31],[-278,-31],[-18,150],[0,105],[-15,127],[-14,90],[-18,64],[-36,-27],[-47,-10],[-18,0],[-60,26],[-28,24],[-73,106],[-42,84],[-41,194],[-16,243],[-17,424],[-41,205],[8,110],[25,133],[33,121],[-107,572],[-79,426],[-58,163],[-46,125],[-107,304],[-114,203],[-116,172],[-25,46],[-47,109],[-101,148],[-77,104],[-192,172],[-36,41],[-42,84],[-21,7],[-43,59],[-67,74],[-101,122],[-43,-8],[-34,0],[-21,15],[-84,125],[-38,79],[-20,31],[-31,62],[-10,49],[-40,40],[-24,31],[-18,51],[-36,36],[-33,17],[-133,115],[-214,171],[-140,156],[-96,98],[-51,37],[-64,57],[-58,62],[-89,113],[-75,82],[-39,87],[-65,165],[-141,-33],[-93,-5],[-159,0],[-62,-90],[-69,-68],[-159,-22],[-93,22],[-112,90],[-31,45],[-151,85],[-135,140],[-66,163],[-7,152],[11,135],[54,90],[66,79],[23,39],[-11,56],[-39,96],[-66,141],[-85,168],[-27,81],[-52,119],[-36,50],[-53,106],[-31,44],[-44,7],[-22,-7],[-37,-3],[-27,6],[-20,-8],[-41,-3],[-51,6],[-26,-9],[-38,1],[-44,-12],[-36,-19],[-37,-7],[-43,4],[-33,-11],[-21,-2],[-43,5],[-38,10],[-29,-19],[-38,-9],[-11,-22],[-26,-31],[-26,-16],[-52,-53],[-47,-29],[-40,-13],[-39,0],[-36,11],[-35,19],[-23,17],[-41,42],[-14,20],[-61,100],[-47,23],[-35,3],[-64,15],[-38,4],[-19,6],[-31,-4],[-43,9],[-41,22],[-56,12],[-19,7],[-53,43],[-96,43],[-107,26],[-208,61],[-149,60],[-209,129],[-116,253],[-15,18],[-44,70],[-64,113],[-42,113],[-44,157],[-24,88],[-42,141],[-20,56],[-5,5],[-53,16],[-47,28],[-42,28],[-36,42],[-56,88],[-33,8],[-61,24],[-72,40],[-63,52],[-61,76],[-59,116],[-35,23],[-31,30],[-12,0],[-18,16],[-16,0],[-54,33],[-28,3],[-27,18],[-39,33],[-36,46],[-20,-3],[-41,14],[-31,21],[-24,9],[-18,-12],[-48,-6],[-54,6],[-52,-71],[-82,-60],[-64,-39],[-30,-7],[-56,20],[-67,43],[-45,34],[-77,41],[-41,31],[-31,0],[-36,-32],[-25,-16],[-53,-16],[-27,-3],[-34,3],[-37,17],[-36,-9],[-55,10],[-25,17],[-50,53],[-13,18],[-14,1],[-26,13],[-259,142],[-29,12],[-53,45],[-42,4],[-30,14],[-43,-14],[-47,-1],[-22,7],[-24,-10],[-26,0],[-63,21],[-67,33],[-27,20],[-43,5],[-13,-6],[-45,-9],[-45,3],[-28,-5],[-26,0],[-40,13],[-46,-6],[-28,-12],[-59,-10],[-27,4],[-58,-3],[-55,-8],[-24,8],[-35,-15],[-54,-13],[-43,-18],[-55,-1],[-31,-13],[-24,0],[-42,7],[-47,-15],[-22,-1],[-13,-14],[-63,-27],[-62,-11],[-36,-21],[-52,-11],[-18,2],[-45,14],[-23,16],[-45,9],[-46,28],[-46,52],[-34,43],[-33,79],[-9,37],[0,76],[-21,26],[-26,46],[-15,34],[-18,68],[-4,34],[-26,10],[-52,37],[-45,43],[-22,-9],[-32,-3],[-44,6],[-38,-2],[-34,6],[-48,28],[-27,26],[-27,34],[-47,48],[-22,37],[-15,41],[-14,14],[-18,32],[-14,37],[-17,77],[-2,39],[4,53],[18,78],[-5,49],[5,59],[21,80],[26,48],[26,39],[14,46],[35,137],[15,67],[13,47],[-15,31],[-30,47],[-17,37],[-8,29],[-14,18],[-31,67],[-12,43],[-5,30],[1,86],[7,44],[24,69],[8,35],[22,86],[13,59],[27,144],[-38,34],[-41,58],[-33,21],[-28,28],[-26,36],[-14,26],[-23,74],[-11,56],[-2,50],[3,31],[17,65],[5,12],[-4,29],[1,57],[8,48],[28,78],[11,16],[10,59],[32,157],[8,56],[11,48],[10,63],[11,183],[9,84],[4,15],[-4,56],[-2,68],[-62,31],[-29,22],[-36,32],[-18,-14],[-28,-9],[-27,-2],[-37,4],[-14,7],[-42,-4],[-37,9],[-61,27],[-29,23],[-36,42],[-12,21],[-30,2],[-59,35],[-34,29],[-28,29],[-24,34],[-14,32],[-43,37],[-62,67],[-44,59],[-22,38],[-14,32],[-8,30],[-25,20],[-23,33],[-18,42],[-15,42],[-25,89],[-4,72],[7,54],[14,59],[15,84],[39,102],[41,134],[8,34],[10,68],[-17,73],[-9,81],[2,47],[7,22],[-18,34],[-60,10],[-33,12],[-61,41],[-45,44],[-18,-8],[-38,-2],[-33,7],[-59,28],[-35,26],[-38,50],[-26,53],[-33,55],[-17,13],[-32,36],[-33,64],[-28,24],[-39,60],[-25,54],[-13,18],[-22,11],[-15,26],[-29,37],[-37,58],[-30,75],[-31,94],[-33,91],[-35,45],[-49,85],[-66,18],[-41,42],[-13,5],[-39,31],[-47,8],[-38,28],[-55,11],[-84,50],[-48,46],[-57,101],[-21,79],[-8,52],[-20,24],[-45,65],[-45,149],[1,32],[5,28],[-7,35],[0,26],[-23,39],[-21,59],[-7,35],[1,78],[-22,11],[-102,120],[-59,108],[-19,30],[-19,46],[-23,14],[-68,53],[-68,78],[-64,120],[-22,67],[-24,57],[-34,97],[-46,155],[-24,90],[-28,32],[-70,57],[-58,33],[-52,24],[-40,57],[-58,114],[-35,131],[-23,105],[-34,147],[-122,220],[-58,129],[-9,24],[-37,39],[-28,53],[-17,15],[-36,48],[-34,36],[-21,9],[-58,45],[-32,41],[-33,15],[-55,15],[-33,16],[-48,35],[-30,33],[-76,71],[-33,49],[-15,32],[-21,62],[-6,27],[-35,53],[-37,37],[-32,25],[-57,71],[-21,39],[-22,50],[-10,36],[-10,79],[2,49],[5,43],[-15,57],[-8,75],[-9,71],[0,120],[5,28],[-19,53],[-4,56],[-12,50],[-3,51],[-46,90],[-10,34],[-13,71],[-1,30],[5,46],[-20,24],[-13,28],[-16,50],[-17,93],[-13,51],[-4,41],[1,37],[8,56],[11,32],[-41,64],[-30,69],[-19,72],[-5,44],[0,63],[5,31],[30,75],[38,63],[11,26],[11,41],[17,38],[40,53],[-106,592],[-131,725],[-28,204],[-19,4],[-76,31],[-97,53],[-100,70],[-46,30],[-57,44],[-75,66],[-148,140],[-35,45],[-16,38],[-15,54],[-12,53],[-11,36],[-49,42],[-46,69],[-37,63],[-35,-5],[-45,0],[-42,10],[-41,16],[-34,21],[-23,21],[-34,59],[-26,66],[-8,38],[-7,77],[1,16],[-26,24],[-17,22],[-23,42],[-20,58],[-25,16],[-39,40],[-22,31],[-21,48],[-13,48],[-12,18],[-19,47],[-14,59],[-2,45],[-7,37],[-6,58],[-24,55],[-14,76],[-3,88],[8,122],[20,134],[36,273],[-4,50],[-72,223],[-57,137],[-15,62],[-8,82],[0,27],[-62,27],[-35,27],[-34,41],[-44,69],[-30,55],[-17,57],[-8,63],[-16,266],[-24,93],[-6,101],[6,76],[24,110],[43,161],[-49,701],[-12,110],[-12,59],[-85,150],[-49,37],[-23,36],[-37,15],[-44,31],[-42,34],[-29,40],[-58,-21],[-45,-4],[-39,8],[-53,26],[-33,29],[-44,15],[-50,47],[-25,29],[-19,31],[-28,69],[-7,33],[-88,42],[-40,35],[-16,19],[-32,50],[-11,25],[-14,48],[-16,81],[-14,12],[-33,56],[-31,30],[-12,23],[-11,1],[-36,44],[-46,19],[-11,-40],[-28,-63],[-20,-28],[-45,-47],[-22,-13],[-54,-20],[-82,-5],[-59,5],[-60,2],[-43,4],[-66,20],[-32,14],[-31,28],[-32,34],[-22,36],[-18,41],[-16,66],[-6,96],[1,50],[14,61],[23,47],[39,54],[141,513],[32,140],[-29,52],[-15,35],[-12,48],[-3,52],[-12,27],[-11,37],[-3,29],[-25,43],[-13,54],[-8,10],[-174,263],[-35,34],[-30,58],[-14,41],[-39,70],[-24,87],[1,93],[9,57],[15,50],[-20,27],[-10,28],[-27,37],[-34,76],[-17,78],[-24,33],[-30,20],[-30,31],[-27,42],[-28,80],[-26,40],[-31,65],[-27,13],[-30,36],[-20,1],[-40,12],[-56,28],[-49,43],[-23,15],[-60,65],[-38,57],[-23,58],[-24,8],[-1,14],[-62,11],[-44,34],[-62,113],[-21,43],[-16,53],[-18,45],[-38,51],[-73,116],[-18,51],[-23,37],[-40,48],[-27,49],[-15,46],[-19,36],[-17,56],[-24,21],[-40,54],[-23,53],[-12,48],[-19,23],[-23,47],[-44,38],[-32,34],[-62,39],[-59,52],[-42,49],[-31,61],[-18,70],[-53,49],[-29,8],[-39,27],[-22,20],[-31,36],[-40,62],[-26,54],[-14,7],[-66,66],[-35,78],[-50,43],[-39,59],[-27,93],[-44,78],[-47,57],[-57,61],[-62,92],[-48,195],[-29,76],[-12,120],[14,92],[31,74],[42,58],[31,30],[26,17],[21,4],[7,37],[-1,61],[2,29],[-3,61],[-23,53],[-15,75],[-20,38],[-14,51],[-14,79],[-22,54],[-8,31],[-24,53],[-21,65],[-6,80],[-18,34],[-46,117],[-41,94],[-4,40],[-21,56],[0,27],[-4,65],[-7,37],[-4,54],[-16,52],[-18,37],[-13,46],[-6,45],[-8,25],[-10,80],[-21,57],[-19,115],[2,53],[-19,32],[-24,73],[-7,86],[3,26],[-6,41],[-3,63],[4,31],[19,58],[-6,65],[-1,48],[14,56],[5,37],[-8,52],[1,54],[6,52],[34,135],[12,36],[-3,68],[9,47],[17,35],[37,33],[16,4],[22,59],[34,106],[8,35],[-18,42],[-4,22],[-30,104],[-11,82],[-3,65],[1,64],[5,99],[-3,85],[-7,21],[-9,83],[-1,60],[-16,12],[-65,71],[-36,64],[-19,66],[-5,40],[-11,121],[-10,62],[-3,41],[5,65],[5,26],[1,45],[-18,45],[-16,66],[-35,30],[-13,18],[-51,41],[-38,44],[-29,53],[-31,74],[-26,52],[-17,59],[-8,50],[-8,26],[-64,54],[-30,44],[-23,79],[-26,48],[-19,47],[-23,43],[-44,57],[-12,27],[-44,64],[-53,90],[-63,16],[-43,22],[-23,21],[-27,37],[-12,28],[-25,36],[-28,65],[-10,41],[-5,35],[1,97],[4,67],[-8,19],[-37,59],[-43,26],[-126,64],[-47,29],[-47,40],[-57,102],[-36,61],[-51,71],[-56,23],[-78,92],[-84,79],[-51,64],[-72,87],[-38,56],[-48,40],[-36,47],[-28,43],[-36,68],[-20,74],[-8,99],[4,127],[21,77],[13,70],[-1,26],[-24,75],[-9,42],[1,108],[-6,43],[-46,54],[-8,12],[-66,147],[-32,64],[-22,54],[-7,37],[-5,69],[10,71],[12,41],[18,36],[18,24],[34,81],[12,53],[-1,39],[4,91],[14,82],[46,110],[27,77],[26,88],[27,115],[31,93],[24,68],[72,188],[26,72],[28,65],[64,162],[31,59],[23,50],[27,65],[30,64],[42,108],[9,72],[15,41],[22,45],[22,24],[51,117],[31,75],[38,80],[11,35],[37,95],[8,32],[33,102],[21,81],[62,256],[11,64],[16,72],[25,158],[-28,18],[-27,24],[-23,29],[-16,31],[-13,36],[-7,36],[-32,58],[-14,44],[-6,33],[-5,63],[-17,36],[-12,64],[-28,55],[-9,50],[-3,54],[6,58],[-10,49],[-2,31],[12,76],[17,65],[14,30],[31,43],[43,39],[57,33],[27,7],[17,97],[21,93],[30,115],[4,31],[0,61],[14,75],[16,56],[8,37],[13,42],[-9,22],[-30,-9],[-30,-3],[-38,4],[-40,17],[-27,18],[-35,30],[-37,48],[-20,39],[-12,37],[-10,48],[0,62],[9,65],[16,54],[15,29],[23,35],[44,43],[32,20],[51,20],[42,6],[54,-7],[46,-18],[29,-24],[11,122],[6,94],[7,77],[-11,55],[-2,29],[2,101],[-9,50],[-18,81],[-26,75],[-1,48],[-22,63],[-8,60],[-1,81],[-14,11],[-28,33],[-27,43],[-18,43],[-11,48],[-2,28],[6,58],[-7,17],[-5,40],[1,55],[-20,29],[-19,36],[-22,57],[-14,72],[3,45],[-4,19],[0,53],[11,69],[-11,43],[-39,23],[-50,55],[-44,13],[-46,29],[-55,45],[-49,49],[-30,35],[-47,19],[-60,37],[-107,128],[-29,43],[-54,28],[-27,24],[-48,63],[-30,57],[-12,40],[-41,57],[-21,39],[-14,46],[-5,39],[-1,44],[20,103],[32,71],[26,35],[26,42],[35,20],[44,7],[45,2],[39,-3],[62,-20],[32,-19],[30,-29],[64,-93],[49,11],[46,-7],[19,89],[-4,0],[16,140],[0,24],[-33,57],[-15,41],[-7,49],[1,51],[13,84],[11,29],[-14,74],[-44,78],[-21,57],[-38,10],[-39,22]],[[207166,282228],[-2,52],[12,64],[14,46],[25,53],[24,29],[44,33],[37,23],[40,10],[38,4],[66,-16],[56,-45],[35,-47],[52,68],[28,28],[28,22],[51,28],[28,7],[62,-10],[32,-12],[12,-10],[70,-23],[24,-13],[41,-42],[27,-58],[15,-57],[19,-14],[31,-32],[12,-19],[33,-6],[49,-31],[46,-54],[37,-75],[10,-44],[32,-53],[34,-41],[6,5],[71,13],[51,1],[37,-6],[30,-12],[12,3],[31,44],[50,41],[43,14],[32,2],[36,14],[70,2],[27,-14],[33,-11],[61,56],[19,13],[60,19],[64,5],[66,-9],[25,-8],[33,-21],[33,-31],[0,-11],[32,-69],[6,32],[29,110],[26,43],[8,38],[24,53],[62,72],[41,21],[26,8],[55,1],[27,-4],[41,-21],[20,3],[44,-1],[60,-19],[24,-11],[50,-5],[31,-8],[63,-31],[67,-41],[33,16],[50,17],[29,4],[55,-10],[68,-51],[58,-9],[30,-14],[28,-19],[50,-49],[85,-88],[34,51],[35,38],[26,20],[7,15],[41,39],[51,27],[33,9],[31,1],[27,13],[31,4],[61,-6],[34,-13],[93,-70],[40,-44],[12,-18],[31,-20],[40,-43],[34,-51],[58,20],[49,7],[48,0],[51,-5],[44,-17],[25,13],[78,25],[40,2],[50,-10],[40,-23],[35,-26],[32,-36],[24,-40],[27,-63],[11,-53],[5,-42],[-3,-53],[-9,-64],[1,-16],[-28,-62],[-51,-68],[-50,-41],[-31,-13],[-37,-6],[-17,-17],[-46,-30],[-38,-16],[-31,-2],[-14,8],[-34,-5],[-30,9],[-20,-9],[-56,12],[-76,43],[-64,43],[-45,41],[-25,32],[-30,-68],[-40,-54],[-39,-42],[-34,-30],[-22,-12],[-40,-16],[-45,0],[-33,-22],[-32,-9],[-32,0],[-41,-17],[-29,3],[-29,-8],[-26,1],[-38,13],[-59,-47],[-27,-10],[-28,-31],[-41,-21],[-25,-22],[-19,-11],[-51,-19],[-40,-5],[-44,4],[-35,13],[-15,-7],[-46,-3],[-51,9],[-19,-10],[-39,-3],[-27,-22],[-47,-29],[-46,-11],[-39,8],[-46,20],[-51,38],[-50,61],[-29,27],[-43,56],[-30,23],[-7,-42],[-15,-49],[-28,-55],[-35,-52],[-36,-40],[-39,-24],[-79,-18],[-29,6],[-71,-41],[-28,-37],[-24,-22],[-13,-26],[-30,-24],[-24,-12],[-47,-5],[-38,-23],[-43,-18],[-33,-34],[-37,-25],[-48,-22],[-46,-5],[-31,4],[-49,14],[-34,19],[-27,31],[-47,24],[-44,51],[-19,0],[-18,13],[-22,37],[-28,23],[-26,11],[-22,20],[-30,47],[-24,45],[-8,23],[-31,15],[-32,29],[-28,42],[-31,62],[-22,110],[-2,31],[-42,48],[-25,36],[-33,-12],[-66,2],[-19,10],[-51,-29],[-42,-12],[-30,-2],[-62,21],[-39,16],[-57,56],[-38,-12],[-34,-2],[-27,5],[-22,11],[-34,-7],[-39,-1],[-49,24],[-26,24],[-34,40],[-12,25],[-18,26],[-45,81],[-15,51],[-10,59],[-2,49],[11,56],[-27,3],[-67,33],[-33,29],[-27,37],[-24,42],[-27,90],[-1,41]],[[213933,278570],[-6,59],[-2,49],[5,44],[11,37],[28,63],[42,61],[64,44],[48,17],[44,3],[35,-2],[38,-21],[13,5],[43,0],[19,-6],[40,15],[46,3],[36,-7],[58,-30],[21,-19],[27,-35],[38,2],[19,-3],[29,-14],[43,-36],[33,-40],[37,-61],[35,-13],[22,-31],[62,-15],[61,-34],[59,-25],[35,-24],[30,-41],[31,-23],[33,-34],[29,-35],[29,-45],[19,-53],[16,-104],[8,-20],[34,-35],[31,-45],[30,-53],[32,-33],[19,-27],[18,-36],[23,-62],[22,-88],[13,-88],[1,-58],[-6,-58],[-11,-70],[-18,-55],[-29,-52],[-35,-40],[-41,-38],[-42,-29],[-36,-18],[-56,-14],[-33,-3],[-56,12],[-69,29],[-64,42],[-15,17],[-30,4],[-29,11],[-34,-9],[-55,-2],[-97,18],[-112,45],[-60,49],[-23,25],[-27,41],[-60,107],[-21,58],[-6,34],[-17,55],[-8,59],[-5,63],[0,45],[11,43],[-19,20],[-36,5],[-34,14],[-63,43],[-57,43],[-40,46],[-26,46],[-17,52],[-86,128],[-24,64],[-15,64]],[[213898,275951],[-9,63],[1,78],[9,56],[17,50],[25,51],[33,47],[46,40],[31,16],[46,12],[61,-4],[45,7],[40,-6],[90,-44],[38,-28],[65,-80],[30,-58],[21,-48],[5,-22],[24,-42],[19,-25],[16,-48],[5,-43],[29,-61],[36,-63],[39,-81],[10,-25],[30,-53],[75,-71],[58,-76],[50,-80],[55,-62],[41,-39],[26,-29],[22,-33],[67,-85],[19,-17],[22,-30],[29,-46],[25,-25],[47,-83],[17,-50],[9,-41],[3,-50],[-4,-59],[-10,-39],[-20,-56],[-15,-31],[-35,-46],[-39,-43],[-69,-37],[-36,-8],[-20,3],[-42,11],[-26,12],[-25,-39],[-25,-29],[-56,-38],[-40,-11],[-59,0],[-61,29],[-39,30],[-32,38],[-28,46],[-9,23],[-35,40],[-19,32],[-29,34],[-45,29],[-63,63],[-30,45],[-23,48],[-22,85],[-11,34],[-31,57],[-13,38],[-22,33],[-23,43],[-15,36],[-17,31],[-23,76],[-7,29],[0,56],[-12,55],[-35,53],[-25,60],[-20,57],[-14,49],[-8,57],[-5,16],[-15,85],[-5,42],[-90,0],[-3,34],[-17,55]],[[210511,277400],[-5,44],[0,44],[8,50],[28,91],[15,25],[44,52],[36,29],[23,15],[35,11],[27,3],[36,-4],[55,30],[53,15],[32,-3],[21,-6],[65,-27],[20,-11],[84,-60],[99,-64],[47,-28],[14,-12],[73,-89],[91,-92],[38,-69],[15,-33],[13,-47],[3,-41],[-2,-78],[-6,-38],[-21,-71],[-27,-61],[-19,-15],[-46,-50],[-139,-81],[-40,-10],[-96,-5],[-23,-4],[-45,20],[-66,2],[-45,20],[-13,10],[-52,22],[-42,28],[-32,7],[-42,23],[-24,22],[-22,31],[-24,20],[-40,46],[-22,34],[-24,56],[-6,25],[-18,33],[-22,72],[1,61],[-13,58]],[[198013,303468],[-3,70],[17,96],[29,56],[48,58],[28,27],[47,29],[27,8],[82,-7],[48,-21],[39,-25],[77,-81],[35,-64],[18,-61],[82,-20],[46,-24],[36,-40],[21,-28],[21,-37],[8,-23],[21,-14],[44,-54],[17,-27],[27,-65],[9,-33],[14,-75],[0,-28],[-20,-122],[-27,-76],[-49,-66],[-36,-31],[-48,-28],[-50,-11],[-1,11],[-37,-2],[-55,22],[-48,29],[-45,48],[-35,51],[-18,33],[-16,55],[-7,44],[-39,61],[-24,75],[-43,-6],[-37,8],[-37,16],[-23,15],[-86,107],[-21,33],[-25,72],[-11,45]],[[212375,278759],[-42,0],[6,33],[20,57],[10,22],[36,42],[29,22],[49,28],[37,9],[33,-4],[34,7],[38,14],[44,2],[56,-14],[25,-10],[38,-32],[28,-35],[33,-61],[24,-80],[12,-85],[0,-69],[-4,-38],[-10,-52],[-11,-29],[-10,-56],[-21,-70],[-7,-15],[-29,-29],[-26,-21],[-17,8],[-30,-26],[-62,-23],[-92,-10],[-67,16],[-51,44],[-27,31],[-24,49],[-28,92],[-3,65],[0,69],[9,149]],[[369251,324295],[189,-143],[121,-87],[380,-292],[149,-111],[262,-215],[43,-34],[185,-139],[59,-51],[185,-132],[59,-44],[93,-63],[86,-56],[141,-101],[54,-41],[52,-37],[235,-170],[59,-44],[220,-160],[194,-144],[33,-23],[30,-1],[-8,-90],[-39,-175],[-29,-154],[-50,-210],[-66,-175],[-19,-61],[-33,-122],[-77,-170],[-85,-197],[-17,-40],[-29,-192],[-15,-137],[-104,-279],[-110,-1],[-24,-19],[-58,-2],[-55,-23],[-29,-2],[-33,-9],[-135,25],[-15,-2],[-14,-17],[-44,-71],[-6,-38],[7,-33],[-7,-73],[16,-34],[-1,-15],[-24,-52],[-9,-70],[-22,-94],[-11,-19],[-47,8],[-56,-53],[-11,-43],[14,-99],[2,-22],[-31,-32],[-12,-44],[-3,-62],[20,-56],[89,-58],[458,124],[72,21],[73,23],[380,111],[223,-208]],[[372106,319266],[-10,-19],[10,-61],[6,-134],[-6,-165],[0,-285],[-1,-175],[-13,-198],[-26,-211],[-31,-141],[-91,-335],[-50,-219],[-49,-170],[-16,-70],[-4,-26],[4,-44],[-3,-60],[-26,-89],[-45,-314],[-11,-45],[-12,-76],[-25,-135],[-71,-590],[-9,-112],[-9,-152],[-10,-133],[-19,-212],[-5,-44],[-13,-71],[-40,-153],[-45,-97],[-30,-91],[-44,-126],[-47,-114],[-99,-201],[-207,-476],[-99,-191],[-6,0],[-130,-275],[-57,-175],[-76,-140],[-84,-134],[-50,-74],[-67,-79],[-21,-17],[-16,-60],[-28,-56],[-22,-30],[-20,-18],[-62,-30],[-68,-16],[-68,-7],[-110,-43],[-26,-38],[-29,-33],[-44,-66],[-5,-19],[-32,-43],[-29,-33],[-10,-30],[-25,-57],[-20,-33],[-78,-79],[-34,-40],[-34,-52],[-34,-66],[-31,-70],[-22,-22],[-19,-33],[-29,-86],[-34,-59],[-40,-56],[-70,-164],[14,-72],[2,-45],[-8,-58],[-17,-48],[-24,-46],[-28,-41],[-53,-54],[-20,-12],[-97,-205],[-21,-31],[-15,-52],[5,-14],[-19,-50],[-4,-34],[-12,-52],[-18,-39],[-34,-50],[-23,-28],[-34,-30],[-52,-36],[-60,-86],[-34,-42],[-10,-39],[-21,-40],[-20,-30],[-33,-32],[-58,-36],[-50,-11],[-61,-2],[-35,-18],[-53,-21],[-38,-11],[-11,-24],[-313,-423],[-55,-78]],[[366708,315280],[58,50],[95,99],[61,71],[42,35],[43,18],[25,5],[48,2],[57,-8],[75,1],[92,29],[62,26],[26,18],[76,67],[25,34],[17,12],[27,6],[61,3],[44,5],[24,9],[23,28],[21,54],[10,57],[1,24],[-22,75],[-6,40],[-1,59],[4,43],[16,46],[40,39],[40,29],[41,21],[38,7],[36,17],[40,46],[15,32],[6,34],[17,42],[22,31],[21,16],[49,25],[50,19],[45,48],[80,97],[39,43],[112,87],[47,21],[23,-6],[28,2],[75,36],[30,17],[43,13],[20,18],[8,29],[13,21],[41,27],[22,29],[10,49],[24,70],[14,16],[24,5],[57,-29],[40,-12],[23,5],[68,66],[33,13],[26,-4],[16,4],[59,66],[10,44],[-2,38],[-41,80],[-12,18],[-60,44],[-10,25],[-9,43],[-26,63],[-12,39],[-38,41],[-50,46],[-86,52],[-15,18],[-44,27],[-21,25],[-20,65],[-18,46],[-27,86],[-27,62],[-44,60],[-23,27],[-32,28],[-42,11],[-33,31],[-33,41],[-45,50],[-17,41],[-10,88],[-30,114],[-20,52],[-11,41],[-11,16],[-55,34],[-18,22],[-27,11],[-29,-16],[-12,0],[-55,-22],[-31,6],[-37,36],[-11,15],[-43,22],[-11,25],[-20,148],[-15,52],[13,53],[-3,48],[18,37],[1,81],[-8,55],[-3,108],[2,24],[-11,88],[-25,24],[-87,126],[-55,32],[-69,16],[-18,-2],[-31,-20],[-32,-37],[-16,-7],[-37,1],[-30,13],[-24,22],[-26,47],[5,25],[16,28],[-10,87],[-32,69],[-1,15],[14,12],[25,4],[8,21],[-9,83],[-6,22],[-27,30],[0,13],[24,59],[20,26],[17,11],[18,35],[4,29],[-13,15],[-37,1],[-21,10],[-14,25],[-11,34],[19,80],[21,62],[21,21],[2,36],[11,21],[1,25],[-17,32],[-27,36],[-5,36],[17,24],[31,21],[20,28],[6,50],[15,28],[28,4],[41,-18],[45,-10],[17,1],[10,13],[30,62],[22,15],[29,11],[28,50],[1,45],[21,35],[14,13],[23,50],[-5,33],[-34,40],[-9,23],[6,35],[17,12],[51,4],[20,-14],[23,5],[4,19],[14,26],[17,16],[10,26],[3,28],[-10,32],[-18,23],[-23,47],[-30,37],[-8,21],[3,26],[-3,40],[-11,39],[-58,60],[-35,70],[-2,20],[-20,49],[-21,28],[-5,30],[3,32],[-15,37],[-31,-5],[-12,16],[-3,28],[11,25],[6,58],[26,29],[45,35],[5,11],[48,28],[25,35],[64,21],[84,65],[21,11],[22,29],[31,18],[0,39],[23,37],[12,31],[10,48],[23,6],[24,37],[36,25],[24,5],[48,44],[8,33],[-2,17],[-17,1],[-45,-41],[-22,1],[-1,26],[8,15],[25,73],[8,12],[24,17],[31,5],[60,58],[8,27],[49,26],[28,28],[63,101],[23,66],[33,38],[26,42],[13,39],[1,17],[15,47],[23,59],[25,50],[4,18],[-27,37],[2,30],[13,26],[3,29],[16,43],[29,13],[14,40],[-4,29],[19,48],[9,34],[10,12],[19,46],[29,38],[35,25],[26,37],[34,27],[10,14],[-13,45],[13,18],[25,8],[42,4],[34,41],[10,46],[17,33],[25,7],[65,-3],[33,8],[92,59]],[[315341,358681],[-152,-441],[-207,-522],[-187,-480],[-48,-124],[-49,-120],[-286,-724],[-106,-270],[-148,-376],[-237,-602],[-79,-201],[-87,-229],[-43,-112],[11,-17],[4,-39],[20,-8],[8,-38],[23,-25],[16,-61],[32,1],[35,26],[32,16],[22,2],[10,-15],[26,8],[9,21],[28,37],[11,22],[19,-6],[18,-41],[21,4],[34,-60],[1,-22],[-13,-51],[-12,-10],[4,-29],[10,-5],[49,9],[29,15],[26,-9],[27,33],[17,-24],[-12,-12],[17,-37],[-10,-35],[24,12],[12,-30],[23,13],[40,2],[55,19],[-5,-21],[8,-20],[30,12],[15,-13],[17,-50],[-3,-12],[23,-35],[3,-31],[12,-19],[29,-21],[6,-68],[11,-13],[30,-8],[3,-38],[8,-15],[-5,-31],[4,-14],[27,-1],[22,-29],[3,-42],[15,-35],[-3,-42],[2,-27],[16,-15],[3,-34],[21,-15],[10,-49],[16,-27],[27,-26],[-8,-11],[-1,-32],[15,-29],[25,-27],[3,-19],[13,-6],[7,-27],[0,-24],[-23,-24],[11,-11],[6,-30],[-7,-15],[175,-57],[537,-170],[438,-137],[107,-35],[337,-105],[110,-36],[104,-31],[252,-81],[12,-2],[249,-81],[228,-73],[83,-24],[324,-104],[26,-10],[205,-62],[84,-30],[97,-29],[148,-48],[118,-35],[116,-79],[443,-295],[135,-90],[156,-104],[14,-24],[30,-36],[11,2],[39,-23],[19,-1],[13,-20],[34,-8],[9,10],[24,2],[0,19],[-15,18],[16,22],[31,-27],[8,20],[22,-5],[-1,-19],[-16,-24],[5,-47],[21,-2],[23,18],[4,39],[29,-33],[12,-1],[15,21],[46,23],[26,-4],[39,-26],[-2,-30],[13,-22],[19,-3],[3,21],[22,9],[23,1],[36,-24],[36,-2],[14,-17],[-3,-13],[16,-21],[1,-35],[15,-11],[-2,-15],[12,-14],[-24,-12],[26,-12],[16,9],[81,-24],[6,17],[36,3],[26,-5],[13,19],[-11,17],[15,26],[1,28],[16,30],[-2,13],[13,34],[24,3],[14,-18],[1,-16],[16,-35],[29,13],[31,38],[22,10],[17,-9],[18,5],[15,-12],[39,8],[20,35],[30,2],[13,-8],[26,4],[25,-8],[4,-41],[18,-44],[3,-21],[13,-6],[-4,-20],[22,-22],[16,-6],[44,14],[1,32],[12,11],[22,-1],[37,-17],[1,-25],[16,-20],[25,5],[29,-16],[3,-15],[35,-20],[2,-20],[21,-20],[22,25],[29,10],[25,-5],[23,13],[29,54],[23,-16],[7,-19],[15,-4],[29,-19],[30,-26],[12,-17],[32,-28],[15,-6],[23,-29],[0,-30],[9,-16],[26,35],[59,-30],[35,-31],[22,24],[58,7],[3,7],[33,13],[13,21],[33,-7],[0,-46],[7,-17],[23,-19],[25,-5],[21,7],[19,-6],[54,3],[23,30],[28,-8],[13,-16],[17,-4],[37,-51],[22,-7],[10,13],[18,-18],[28,0],[6,-20],[24,-23],[41,-20],[5,-28],[22,-6],[24,9],[39,-4],[26,-32],[-1,-14],[-21,-16],[-15,-33],[-5,-35],[13,-26],[6,-67],[10,-16],[40,1],[24,-5],[15,-21],[21,-10],[-20,-33],[6,-14],[-10,-14],[-18,7],[-19,-47],[-38,-41],[-24,-43],[-25,-21],[-71,-85],[-13,-31],[13,-39],[13,-18],[44,-28],[27,-3],[11,-19],[0,-23],[8,-30],[13,-6],[17,-25],[22,-6],[33,1],[13,-22],[15,-7],[73,6],[32,16],[7,34],[44,-2],[41,19],[30,-2],[44,20],[24,-15],[18,-59],[7,-34],[-32,-24],[12,-19],[49,-19],[20,-13],[12,-34],[32,1],[36,-6],[34,4],[17,13],[23,-17],[17,10],[30,-14],[19,15],[16,-33],[14,-7],[15,10],[43,4],[14,-5],[8,-20],[19,-6],[21,-25],[-8,-46],[35,-63],[18,-9],[35,-40],[54,-30],[42,-8],[18,-19],[8,-26],[-15,-18],[15,-27],[61,-50],[19,-24],[5,-15],[0,-37],[-8,-7],[-43,-8],[-28,-29],[-39,-7],[-30,-15],[0,-38],[-7,-16],[1,-32],[46,-46],[29,-70],[22,-24],[4,-28],[14,-12],[39,-12],[10,-59],[12,-14],[-10,-47],[1,-32],[-30,-26],[-7,-15],[1,-37],[-5,-52],[-13,-17],[-18,-5],[-30,4],[-15,14],[-34,10],[-41,6],[-7,-32],[2,-18],[20,-22],[30,-20],[37,-44],[17,-37],[-4,-40],[9,-106],[9,-34],[22,-12],[2,-30],[-19,-38],[-5,-51],[-26,-32],[2,-39],[-18,-25],[-5,-21],[-24,-11],[-5,-14],[-36,-17],[-15,-35],[-33,-15],[-9,-25],[-28,-16],[-11,-29],[-11,-11],[5,-28],[-1,-36],[12,-34],[18,-26],[8,-21],[1,-32],[-6,-12],[-28,-17],[7,-37],[-8,-25],[-41,-30],[-16,-21],[0,-17],[12,-31],[-22,-28],[-23,-21],[-11,-27],[-1,-19],[15,-20],[14,1],[17,20],[19,10],[-3,17],[-18,28],[19,12],[18,-31],[-2,-28],[8,-19],[17,-15],[21,-6],[8,-11],[-3,-30],[11,-10],[36,26],[10,34],[9,7],[28,-9],[10,12],[42,-8],[34,13],[35,-1],[30,-22],[45,9],[25,-16],[29,6],[11,33],[40,8],[22,46],[51,75],[37,22],[6,15],[24,24],[21,12],[28,-7],[11,-22],[30,-19],[3,-28],[54,-43],[9,-39],[-2,-25],[11,-25],[18,-14],[1,-64],[-22,-47],[-28,-35],[1,-33],[-20,-26],[-19,-35],[-21,-25],[-6,-18],[-26,-31],[-9,-42],[-25,-42],[-6,-38],[0,-42],[-24,-20],[-16,-37],[4,-27],[-10,-91],[-20,-2],[-20,-27],[-7,-18],[14,-23],[-4,-21],[-16,-25],[4,-42],[-7,-22],[-30,-19],[-11,-15],[-8,-29],[10,-25],[-1,-18],[14,-76],[1,-29],[19,-6],[18,-18],[23,-36],[35,-21],[3,-17],[15,-15],[28,-9],[40,-37],[28,-56],[-9,-19],[13,-24],[13,-40],[14,-12],[20,-32],[1,-24],[34,1],[12,-13],[62,-1],[10,-16],[127,-50],[23,13],[301,-72],[33,-6],[170,-41],[43,245],[7,36],[80,446],[108,76],[211,149],[41,54],[190,243],[41,49],[238,302],[59,130],[188,401],[487,-1],[360,-1],[378,-1],[456,-305],[140,-93],[302,-203],[126,-87],[316,-213],[327,-221],[114,-79],[0,-4],[-286,-284],[-360,-358],[-236,-256],[-266,-468],[-176,-307],[-217,-383],[-206,-759],[-19,-61],[-178,-664],[-164,-611],[-29,-111],[26,0],[-95,-345],[-99,-377],[-100,-374],[-95,-354],[-106,-391],[-43,-161],[0,49],[-46,-182],[-28,-175],[-89,-589],[-9,0],[-94,-610],[-63,-433],[-74,-498],[-39,-369],[0,-23],[-11,-240],[-23,-483],[0,-77],[-8,-165],[-4,0],[-32,-696],[3,-29],[64,-724],[11,-129],[59,-595],[3,-39],[56,-685],[63,-725],[15,-179],[39,-457],[8,-88],[44,-500],[20,-224],[60,-725],[5,-38]],[[312919,330965],[24,40],[-4,34],[-17,52],[-7,56],[-18,37],[-18,21],[-18,47],[-8,58],[-63,78],[-27,60],[-4,43],[-21,89],[-22,46],[-9,48],[-32,39],[-30,19],[-38,15],[-67,21],[-24,4],[-45,22],[-66,14],[-157,45],[-40,8],[-65,27],[-88,28],[-56,29],[-36,31],[-27,14],[-56,-11],[-16,2],[-39,17],[-44,38],[-33,12],[-22,21],[-29,57],[-24,28],[-50,38],[-27,-4],[-33,27],[-11,15],[-4,34],[-9,20],[-21,14],[-17,1],[-25,-10],[-12,21],[-2,31],[-10,19],[-23,10],[-4,34],[15,7],[4,22],[-32,44],[-5,32],[0,43],[-16,76],[-11,82],[-3,78],[2,27],[-14,13],[-26,-4],[-14,9],[-4,24],[13,80],[-14,38],[-12,53],[2,66],[-8,42],[-41,47],[-12,20],[-17,15],[-62,38],[-20,5],[-9,30],[1,30],[7,33],[-2,34],[-19,79],[3,37],[12,58],[-4,39],[-15,42],[-16,30],[-5,29],[-2,62],[-34,147],[-9,31],[-18,96],[-16,173],[7,26],[0,42],[7,143],[-9,79],[0,59],[9,34],[17,16],[35,18],[15,14],[36,55],[10,23],[16,79],[16,25],[35,78],[2,33],[16,40],[40,36],[101,125],[59,87],[17,62],[-3,22],[-11,13],[-35,6],[-4,20],[4,40],[-37,82],[-12,37],[-39,61],[-38,65],[-77,74],[-29,20],[-62,29],[-57,36],[-36,28],[-24,10],[-49,9],[-17,20],[-28,77],[0,17],[26,28],[23,71],[11,55],[-10,76],[0,24],[-9,41],[-15,31],[-39,56],[-37,63],[-12,31],[-4,24],[4,29],[27,31],[15,34],[15,57],[3,21],[-9,36],[0,55]],[[219725,328018],[-149,1],[-230,2],[-228,0],[-69,-3],[-497,-2],[-160,-2],[-139,2],[-86,-1],[-552,-5],[-8,-3],[-366,1],[-293,1],[-224,-1],[-136,0],[-163,-1],[-146,0],[-221,-2],[-469,-4],[-190,0],[-494,-6],[-246,-2],[-71,-2],[-72,1],[-356,-9],[-334,-12],[-193,4],[-88,1],[-70,-2],[-275,3],[-205,1],[-245,4],[-33,-1],[-370,-1],[-39,2],[-290,-3],[-84,6],[-68,-2],[-248,2],[-79,-1],[-332,8],[-141,2],[-344,-1],[-346,4],[-139,-1],[-137,2],[-140,6],[-136,0],[-203,0],[-216,-4],[-138,-4],[-43,-9]],[[193930,328009],[-34,28],[-29,44],[-9,32],[-21,10],[-31,22],[-39,43],[-39,76],[-15,45],[-24,19],[-27,35],[-16,27],[-25,62],[-12,61],[-3,74],[-13,51],[-6,64],[-23,80],[-10,105],[3,71],[4,16],[-16,33],[-12,35],[-15,18],[-23,47],[-18,13],[-22,28],[-28,51],[-31,92],[-13,58],[-7,84],[0,33],[13,107],[13,56],[-23,31],[-19,43],[-9,31],[-7,56],[-2,58],[5,59],[12,43],[14,29],[-12,20],[-23,60],[-12,75],[-3,64],[7,60],[16,56],[-36,18],[-34,9],[-46,28],[-19,16],[-50,60],[-22,45],[-10,35],[-15,19],[-19,45],[-15,64],[-3,51],[11,83],[23,57],[22,38],[25,33],[11,0],[32,29],[59,36],[11,48],[12,29],[38,64],[41,44],[37,27],[40,19],[9,12],[-31,57],[-19,65],[-5,44],[4,57],[12,44],[1,25],[11,43],[-2,23],[-67,4],[-56,24],[-39,30],[-38,44],[-37,70],[-18,74],[-5,46],[-1,42],[12,66],[-32,23],[-29,29],[-17,28],[-46,84],[-19,42],[-60,-16],[-28,0],[-39,6],[-34,-8],[-42,-1],[-38,7],[-42,19],[-41,32],[-22,24],[-29,47],[-34,82],[-9,54],[-2,50],[3,37],[8,42],[16,41],[16,30],[38,46],[9,59],[22,65],[39,63],[20,20],[9,62],[26,65],[23,32],[40,43],[18,14],[6,34],[16,57],[32,62],[53,64],[69,46],[16,45],[11,15],[20,73],[20,36],[29,110],[52,169],[-9,0],[28,96],[33,136],[11,60],[17,57],[9,45],[-9,31],[-6,47],[1,24],[-18,51],[-7,48],[5,69],[-3,60],[12,49],[23,59],[16,27],[26,31],[44,35],[13,63],[7,49],[17,66],[20,58],[-14,47],[-7,65],[5,53],[-5,54],[3,43],[19,70],[34,62],[-29,38],[-40,80],[-6,32],[-5,54],[4,41],[-3,78],[3,31],[19,57],[36,64],[52,46],[20,86],[54,75],[63,45],[55,17],[43,36],[20,58],[50,125],[16,68],[15,47],[27,62],[54,202],[-3,0],[27,115],[18,82],[48,199],[23,103],[36,226],[22,136],[-17,67],[-3,24],[2,50],[14,65],[13,35],[22,40],[20,27],[41,276],[25,158],[26,201],[34,303],[5,66],[48,458],[11,152],[11,115],[0,23],[-13,60],[-1,60],[6,34],[21,59],[10,77],[2,49],[10,68],[5,89],[8,47],[-12,50],[-5,88],[3,34],[-6,32],[0,39],[4,35],[23,78],[15,31],[8,71],[-6,54],[4,56],[5,20],[-2,31],[1,69],[6,65],[6,20],[-9,36],[-5,64],[9,57],[-14,75],[6,78],[-4,24],[7,47],[12,54],[2,63],[12,65],[11,37],[41,234],[7,55],[11,126],[5,90],[13,252],[-37,135],[-4,37],[8,105],[11,61],[14,44],[34,53],[1,35],[11,99],[16,83],[13,32],[-34,54],[-25,61],[-4,55],[5,45],[20,66],[27,55],[-36,80],[-15,48],[-7,70],[10,87],[10,32],[14,20],[8,40],[10,25],[-4,42],[-14,41],[-14,63],[0,50],[11,77],[-9,67],[0,26],[6,43],[8,129],[15,48],[-8,86],[3,67],[17,65],[20,38],[49,61],[10,50],[56,317],[-6,42],[4,50],[17,78],[11,40],[-1,64],[11,134],[5,17],[-21,49],[-13,53],[-6,40],[3,76],[11,79],[19,88],[24,93],[29,82],[28,47],[34,99],[20,92],[8,90],[11,57],[-4,23],[3,57],[-22,42],[-21,68],[-8,46],[-2,51],[6,41],[12,44],[37,73],[11,78],[4,73],[-8,77],[-15,64],[-52,64],[-44,77],[-11,73],[0,68],[15,82],[22,64],[22,45],[27,28],[33,26],[11,93],[13,76],[2,51],[-27,27],[-54,89],[-18,55],[-3,52],[1,41],[18,79],[16,43],[-5,35],[-1,43],[12,70],[26,55],[24,38],[44,44],[-1,47],[-19,50],[-14,49],[-3,50],[5,52],[19,69],[-3,54],[6,61],[28,72],[8,7],[9,35],[3,167],[8,69],[7,23],[3,183],[-30,25],[-20,44],[-20,4],[-47,37],[-57,71],[-28,62],[-9,72],[11,96],[19,61],[28,45],[-7,52],[1,58],[15,60],[49,85],[-16,41],[-4,68],[5,74],[-6,41],[1,40],[-9,20],[-38,19],[-35,25],[-48,59],[-23,46],[-14,55],[-7,49],[2,53],[7,41],[18,56],[21,38],[29,42],[30,27],[39,26],[41,17],[59,80],[13,23],[39,36],[5,46],[14,56],[-8,132],[0,41],[-17,142],[-13,63],[-34,136],[-21,65],[-18,41],[-32,97],[-26,73],[-28,58],[-31,58],[-75,23],[-80,46],[-43,40],[-51,78],[-33,73],[-44,187]],[[194528,352712],[107,5],[223,6],[107,7],[1,42],[7,34],[-18,37],[11,76],[38,14],[35,-35],[19,-58],[21,-49],[62,-11],[35,-17],[65,-56],[40,-60],[56,-64],[207,-22],[201,86],[20,1],[111,25],[129,86],[190,-110],[137,50],[219,-17],[129,17],[43,10],[77,32],[54,29],[76,-11],[38,-27],[36,-43],[39,-42],[71,-119],[-12,-277],[70,-78],[73,-79],[38,-20],[29,-27],[35,0],[53,-7],[25,7],[73,-4],[63,-6],[73,2],[60,38],[14,15],[29,14],[32,26],[34,16],[34,22],[35,29],[164,95],[179,-21],[38,-44],[191,-140],[27,-35],[34,-18],[41,-31],[45,-17],[18,-13],[140,-162],[7,-6],[207,-123],[69,-135],[23,-169],[77,-97],[66,-195],[83,-115],[28,-165],[-19,-115],[47,-164],[46,-97],[-2,-136],[-36,-111],[1,-87],[92,-170],[29,-125],[4,-143],[-8,-36],[-35,-165],[-7,-112],[37,-135],[91,-75],[88,-39],[79,-74],[56,-38],[110,-48],[128,-10],[93,-24],[125,-45],[79,-38],[111,-37],[60,-28],[75,-64],[54,-22],[99,24],[66,40],[41,8],[97,-38],[75,-123],[124,-26],[105,1],[63,22],[167,95],[63,78],[152,40],[40,-9],[60,-9],[43,17],[198,146],[77,33],[66,4],[40,22],[45,30],[57,46],[28,63],[13,8],[59,-5],[95,59],[27,44],[-4,51],[123,131],[197,78],[212,-58],[57,-16],[98,5],[138,59],[131,-2],[18,7],[329,119],[119,-33],[117,-104],[12,-8],[138,-43],[78,-7],[103,60],[123,10],[90,-29],[88,-75],[127,-50],[125,-41],[55,-124],[18,-118],[-5,-74],[45,-60],[57,-2],[79,11],[21,23],[27,-12],[34,36],[18,12],[-10,29],[124,144],[72,27],[109,-9],[92,13],[85,-29],[19,6],[88,43],[33,-2],[107,-95],[64,17],[140,166],[236,85],[229,117],[123,54],[72,83],[120,91],[31,2],[124,2],[112,-47],[133,-166],[56,-56],[83,-33],[277,28],[178,47],[101,25],[144,55],[259,28],[143,209],[103,65],[251,69],[244,155],[125,72],[206,22],[110,38],[29,8],[231,67],[105,-12],[364,66],[164,282],[81,81],[102,34],[166,-97],[130,-14],[133,64],[303,25],[148,67],[231,39],[111,-42],[107,-28],[92,-1],[153,30],[116,57],[112,92],[122,61],[65,59],[76,119],[39,3],[144,2],[209,-1],[382,3],[125,0],[423,0],[135,-2],[132,2],[340,-1],[295,-1],[260,1],[204,-3],[283,2],[82,-3],[92,2],[70,-1],[98,2],[170,0],[37,1],[142,-1],[339,-3],[244,0],[17,-2],[221,0],[324,-4],[281,-5],[144,0],[93,-3],[140,5],[174,0],[131,-13],[56,13],[306,-1],[96,0],[346,-4],[13,-1],[184,0],[67,-4],[45,2],[136,-1],[209,-4],[88,-5]],[[272619,316446],[0,495],[-1,347],[2,177],[-1,223],[1,69],[-1,77],[2,555],[-2,126],[1,191],[0,104],[0,316],[1,120],[-1,80],[0,808],[0,599],[0,365],[0,430],[0,690],[-1,19],[-248,0],[-21,1],[-494,-1],[-15,-1],[-257,0],[-56,1],[-247,0],[-445,-1],[-228,2],[-15,-1],[-416,-1],[-107,1],[-190,-1],[-68,1],[-278,-1],[-63,-1],[-136,0],[-73,3],[-129,-2],[-371,1],[-76,-2],[-161,1],[-30,-1],[-105,1],[-5,-2],[-63,1],[-196,-1],[-147,0],[-112,4],[-57,-4],[-123,-1],[-136,1],[-171,-3],[-147,2],[-154,0],[-173,-1],[-66,2],[-267,-2],[-115,1],[-619,-1],[-184,2],[-106,-3]],[[265549,322231],[1,283],[-1,320],[-1,301],[2,537],[2,163],[-1,304],[2,391],[-1,118],[0,352],[0,17],[0,491],[-1,147],[0,400],[0,382],[0,87],[0,559],[0,271],[-1,183],[2,238],[-1,212],[-1,557],[2,147],[-2,89],[2,205],[-1,125],[-1,336],[1,70],[0,675],[0,569],[-1,156],[1,647],[0,218],[1,65],[-2,470],[1,75],[-1,630],[0,68],[0,724],[0,4]],[[265550,333817],[219,6],[88,1],[146,-5],[174,1],[23,-1],[256,2],[287,-2],[90,0],[131,3],[174,-5],[188,2],[157,0],[107,-3],[87,1],[164,2],[460,-1],[368,0],[303,0],[381,-1],[308,-1],[75,-2],[463,-1],[298,1],[95,-2],[186,1],[143,-1],[325,-1],[304,0],[73,-1],[297,1],[439,-2],[151,1],[311,-1],[421,1],[45,0],[298,-9],[60,-3],[168,-4],[285,-2],[221,3],[325,2],[112,0],[247,2],[38,0],[515,1],[626,2],[71,-1],[133,2],[346,-1],[259,2],[34,2],[63,-3],[407,0],[138,0],[243,0],[47,4],[86,1],[239,-1],[81,2],[77,-1],[362,-2],[47,1],[167,-2],[95,1],[255,-2],[81,2],[60,-2],[154,0],[119,-1],[40,1],[211,-4],[8,3],[251,0],[44,-2],[94,1],[456,-1],[303,0],[359,1],[221,0],[235,0],[532,0],[208,1],[112,2],[87,0],[11,-2],[405,1],[480,-1],[217,1],[136,-1],[118,1],[174,0],[261,1],[238,-1],[223,1],[10,-61],[19,-58],[40,-84],[41,-92],[32,-25],[40,-47],[4,-26],[22,-15],[31,20],[36,2],[46,-36],[75,-42],[39,-31],[61,-32],[56,-39],[23,-30],[8,-24],[27,-29],[23,-11],[77,-26],[62,-30],[41,-5],[36,2],[30,-15],[10,-20],[53,-42],[43,-46],[54,-37],[52,-30],[66,-26],[28,0],[57,14],[31,-41],[32,-66],[75,-62],[41,-59],[19,-19],[28,-16],[48,-48],[23,-29],[11,-48],[29,-23],[24,-4],[34,-22],[78,-11],[26,10],[19,-5],[33,11],[22,16],[29,12],[51,-7],[30,2],[23,10],[37,29],[54,73],[23,13],[35,48],[37,74],[20,32],[15,59],[17,52],[2,42],[11,24],[-4,38],[6,26],[34,24],[72,28],[50,7],[19,-8],[31,-33],[56,-22],[46,-27],[49,-21],[34,-4],[51,2],[106,-12],[68,-22],[52,-8],[64,4],[37,9],[39,17],[39,24],[36,16],[18,13],[30,11],[29,0],[42,-26],[47,-20],[59,-17],[60,4],[79,22],[37,18],[25,19],[16,-7],[15,-23],[44,-17],[38,1],[40,-7],[18,-13],[24,-7],[37,8],[20,19],[28,36],[9,26],[21,28],[39,13],[24,-20],[19,-3],[61,5],[28,-39],[25,-19],[34,5],[38,-1],[37,15],[33,26],[19,3],[33,24],[23,-22],[37,-48],[60,-15],[23,-1],[62,16],[59,-24],[49,-36],[2,-31],[-3,-59],[14,-45],[6,-56],[9,-17],[34,-22],[46,-3],[55,-11],[29,-10],[46,-33],[44,-70],[13,-52],[15,-17],[52,-13],[41,3],[28,-3],[39,4],[47,13],[22,-1],[47,-11],[65,-24],[19,-18],[47,-10],[89,-10],[38,3],[37,-36],[25,-70],[1,-30],[-14,-44],[-1,-26],[7,-22],[27,-9],[25,2],[27,12],[73,57],[45,14],[18,-10],[46,-34],[16,-8],[48,-6],[39,-17],[61,-51],[49,-21],[35,-4],[47,-21],[16,-31],[5,-84],[-7,-70],[5,-15],[27,-21],[58,-19],[45,-4],[45,14],[15,10],[42,6],[25,-2],[107,-45],[23,-17],[13,-18],[2,-19],[-7,-33],[-13,-12],[-52,-97],[-14,-46],[1,-53],[17,-52],[26,-39],[42,-77],[21,-28],[18,-16],[61,-30],[38,-32],[35,-52],[10,-25],[7,-43],[0,-50],[6,-42],[20,-62],[51,-44],[28,-9],[44,5],[24,14],[41,46],[17,13],[36,14],[31,1],[38,-14],[23,-17],[23,-29],[16,-32],[17,-60],[25,-44],[26,-23],[42,-15],[49,0],[36,22],[20,17],[50,22]],[[292422,330862],[18,-6],[58,-4],[78,-15],[21,-12],[35,-57],[17,-74],[4,-59],[-2,-30],[-13,-52],[-11,-28],[-40,-58],[-41,-55],[-17,-51],[2,-69],[19,-63],[3,-31],[-33,-101],[0,-42],[14,-47],[21,-34],[41,-38],[43,-29],[31,-44],[19,-43],[5,-42],[2,-75],[8,-28],[18,-35],[14,-19],[54,-43],[19,-25],[16,-31],[13,-55],[-7,-59],[24,-36],[-3,-21],[-47,-72],[-28,0],[-41,-14],[-11,-26],[10,-28],[20,-31],[10,-25],[5,-36],[-1,-24],[-11,-45],[3,-42],[10,-35],[18,-33],[19,-19],[33,-20],[22,-25],[15,-35],[6,-25],[18,-32],[36,-26],[48,-10],[20,-12],[24,-26],[21,-55],[2,-44],[-5,-41],[-26,-66],[-12,-59],[-1,-47],[5,-41],[19,-71],[16,-26],[16,-12],[26,-8],[33,20],[44,-6],[37,-42],[7,-22],[-3,-34],[-18,-29],[-39,-37],[-11,-31],[2,-41],[17,-20],[33,-12],[12,6],[30,65],[33,15],[40,-3],[35,-22],[4,-29],[-4,-26],[-25,-58],[1,-20],[15,-23],[36,-10],[23,13],[44,10],[55,-10],[33,-21],[15,-30],[-1,-27],[-22,-74],[-25,-37],[-7,-25],[4,-24],[24,-60],[0,-36],[-20,-32],[-36,-14],[-23,-17],[-11,-40],[14,-34],[21,-30],[14,-28],[6,-56],[8,-33],[27,-45],[58,-40],[32,-41],[10,-33],[3,-23],[-12,-48],[4,-48],[26,-45],[34,-21],[45,-15],[24,-21],[26,-45],[3,-40],[-6,-18],[-23,-32],[-15,-30],[-5,-27],[1,-65],[-16,-40],[-15,-17],[-48,-26],[-11,-19],[-7,-30],[3,-46],[20,-30],[46,-24],[32,-32],[16,-42],[-1,-30],[-16,-23],[-33,-15],[-47,10],[-29,1],[-20,-12],[-20,-27],[-7,-20],[-2,-35],[5,-35],[31,-50],[43,-43],[14,-38],[4,-39],[-10,-47],[-10,-24],[-31,-39],[-23,-39],[-8,-41],[2,-26],[14,-49],[28,-49],[24,-18],[42,-23],[11,-16],[9,-34],[1,-21],[-13,-37],[-23,-32],[-17,-66],[-2,-31],[17,-67],[33,-47],[15,-2],[21,-15],[53,-69],[32,-22],[27,-2],[14,12],[9,23],[-1,47],[10,6],[8,34],[10,72],[26,27],[19,1],[31,-12],[18,-21],[20,-92],[5,-53],[-12,-44],[-16,-25],[-59,-61],[-7,-3],[6,-46],[33,-56],[15,-11],[44,-1],[26,-6],[28,-15],[29,-25],[19,-5],[24,3],[39,17],[31,-7],[41,-37],[16,-37],[-3,-53],[-27,-40],[-13,-26],[0,-52],[10,-45],[-1,-25],[-10,-41],[-18,-53],[4,-52],[21,-47],[6,-44],[-7,-32],[-21,-31],[-50,-22],[-22,-34],[4,-38],[15,-32],[41,-50],[53,-43],[36,-9],[53,9],[28,-6],[23,-13],[20,-22],[20,-37],[8,-36],[2,-48],[-10,-35],[-12,-17],[-47,-37],[-42,-22],[-34,30],[19,32],[9,48],[1,25],[-6,20],[-51,1],[-26,-16],[-7,-36],[4,-63],[45,-50],[-23,-42],[3,-43],[17,-56],[19,-52],[2,-42],[-12,-48],[-31,-47],[-11,-24],[-7,-39],[0,-28],[7,-35],[14,-29],[23,-23],[19,-4],[42,2],[62,17],[60,3],[27,-7],[31,-21],[14,-22],[6,-24],[-6,-37],[-16,-16],[-20,-5],[-44,16],[-27,-9],[-22,-33],[-11,-37],[0,-46],[17,-56],[32,-66],[7,-24],[3,-37],[-3,-39],[5,-41],[12,-67],[-9,-47],[-19,-33],[-25,-32],[-17,-40],[2,-53],[22,-22],[13,-24],[38,-45],[6,-41],[-2,-36],[-22,-46],[-12,-46],[3,-29],[18,-41],[26,-24],[47,-26],[38,-44],[13,-51],[-5,-49],[-29,-77],[-8,-62],[2,-41],[11,-65],[21,-38],[42,-48],[16,-22],[16,-44],[1,-24],[-9,-41],[-14,-25],[-32,-28],[-42,-14],[-25,-19],[-14,-29],[-2,-33],[5,-26],[18,-44],[17,-65],[-5,-53],[-19,-49],[-5,-46],[6,-35],[28,-76],[6,-44],[-10,-38],[-24,-35],[-23,-22],[-70,-41],[-41,-52],[-18,-49],[-8,-60],[13,-62],[7,-20],[28,-20],[48,-29],[32,-40],[18,-54],[3,-45],[14,-45],[37,-36],[33,-23],[31,-10],[30,-3],[36,-15],[21,-18],[20,-25],[27,-44],[12,-29],[8,-35],[3,-78],[10,-24],[55,-56],[10,-33],[-6,-41],[-10,-20],[-44,-45]],[[294824,319819],[-28,-40],[-4,-27],[10,-43],[24,-53],[5,-50],[-17,-47],[-3,-21],[8,-29],[14,-19],[21,-14],[29,-10],[41,-2],[52,25],[29,-6],[20,-32],[40,40],[8,27],[-8,47],[9,55],[2,36],[25,21],[30,11],[24,1],[22,-35],[12,-39],[22,-19],[13,-50],[-12,-84],[-21,-36],[-22,-14],[-85,-39],[-28,-17],[16,-44],[2,-47],[-7,-62],[13,-55],[31,-35],[43,-36],[20,-28],[24,-45],[14,-51],[-1,-34],[-19,-81],[8,-42],[34,-72],[19,-54],[7,-50],[-1,-49],[19,-49],[28,-36],[15,-34],[8,-40],[-5,-35],[-13,-23],[-22,-18],[-50,-21],[-20,-18],[-14,-39],[1,-28],[21,-25],[22,-5],[31,11],[47,28],[26,10],[28,-4],[32,-22],[30,-38],[30,-21],[39,-1],[42,-21],[20,-27],[8,-30],[-2,-28],[-17,-60],[0,-18],[14,-33],[30,-7],[33,-22],[36,-34],[29,-11],[31,-2],[49,4],[30,-12],[22,-22],[22,-44],[10,-47],[-1,-30],[-12,-54],[-16,-28],[-12,-32],[-5,-33],[1,-30],[16,-49],[30,-47],[38,-43],[41,-19],[22,-16],[16,-20],[9,-34],[1,-39],[7,-40],[14,-27],[28,-21],[49,-9],[32,-27],[13,-51],[-4,-45],[-11,-17],[-24,-24],[-16,-24],[-8,-34],[7,-48],[0,-34],[-6,-20],[-35,-54],[-4,-38],[5,-42],[18,-58],[27,-42],[17,-15],[39,-20],[30,0],[67,26],[25,0],[37,-19],[36,-53],[28,-20],[37,-14],[20,-23],[14,-54]],[[296439,316428],[-344,0],[-175,2],[-24,-2],[-514,2],[-552,1],[-286,0],[-80,1],[-219,-1],[-432,1],[-259,0],[-4,-1],[-102,2],[-272,0],[-132,0],[-364,1],[-472,0],[-265,1],[-117,-2],[-28,3],[-243,0],[-70,1],[-160,-1],[-300,1],[-124,0],[-455,0],[-158,-1],[-267,3],[-59,-2],[-120,-1],[-95,3],[-64,-4],[-140,4],[-549,0],[-167,1],[-87,-2],[-45,3],[-53,-1],[-261,0],[-559,1],[-293,-1],[-449,0],[-317,1],[-70,1],[-305,-1],[-118,2],[-37,-1],[-263,0],[-382,0],[-121,0],[-113,0],[-257,0],[-147,-1],[-51,1],[-278,-1],[-128,2],[-105,-2],[-227,1],[-350,-1],[-382,0],[-333,-1],[-99,1],[-265,-1],[-348,0],[-79,-1],[-222,0],[-10,1],[-137,-1],[-33,2],[-200,-2],[-325,0],[-229,0],[-360,-1],[-63,-2],[-54,2],[-146,-2],[-116,1],[-335,0],[-27,2],[-135,-1],[-381,-1],[-103,1],[-382,-1],[-450,2],[-481,-1],[-66,1],[-292,0],[-224,2],[-327,-1],[-21,1],[-396,0],[-626,0],[-135,1],[-387,1],[-331,0],[-200,0],[-424,0],[-559,1],[-237,1],[-324,0],[-203,-1],[-122,2],[-114,-1],[-323,0],[-186,1]],[[348679,320130],[0,461],[0,204],[0,366],[0,608],[0,532],[1,162],[-2,370],[1,62],[-1,261],[1,160],[0,456],[0,543],[-1,104],[1,147],[-1,331],[0,73],[0,318],[0,61],[0,392],[0,475],[-1,369],[1,320],[0,452],[0,194],[0,308],[-2,591],[1,498],[0,253],[-1,267],[0,446]],[[348676,329914],[71,17],[140,37],[158,39],[143,38],[154,36],[288,72],[441,109],[158,41],[63,39],[155,99],[66,40],[352,223],[90,56],[246,156],[150,93]],[[351351,331009],[0,-93],[1,-317],[-1,-407],[2,-613],[-1,-151],[2,-510],[-1,-149],[1,-62],[0,-571],[1,-124],[235,0],[73,3],[59,-3],[93,-1],[21,2],[184,-1],[76,-3],[84,1],[195,-2],[140,2],[206,1],[219,0],[222,1],[151,1],[48,2],[246,1],[416,-3],[96,-1],[368,-8],[334,3],[108,0],[540,11],[158,0],[560,-2],[172,0],[149,-1],[111,-3],[517,9],[336,-6],[106,-4],[248,0],[88,-2],[312,1],[140,-1],[243,3],[193,3],[242,0],[280,4],[387,0],[320,-2],[233,-1],[145,1],[96,-2],[156,0],[223,6],[115,0],[332,7],[125,0],[235,3],[71,-3],[231,0],[256,-3],[416,-6],[263,-4],[139,-4],[251,-2],[442,0],[209,1],[218,3],[133,-2],[381,2],[327,-3],[70,2],[132,-3],[322,-3],[476,6],[460,3],[345,-1],[71,1],[46,-24],[19,-14],[12,-36],[-10,-53],[-7,-18],[11,-21],[37,-14],[10,-21],[21,-22],[7,-39],[27,-30],[33,-1],[-2,23],[28,10],[8,-12],[-1,-22],[8,-34],[17,-5],[20,-18],[6,-30],[3,-66],[32,-88],[-1,-30],[-18,-28],[5,-56],[38,-21],[11,-39],[-20,-31],[1,-32],[18,-23],[23,-1],[28,28],[8,1],[34,-44],[27,-12],[13,18],[16,38],[21,13],[20,3],[22,-6],[18,-14],[9,-23],[17,-14],[10,11],[10,42],[11,19],[21,-5],[9,-26],[-1,-52],[12,-34],[27,-22],[16,1],[32,18],[12,2],[31,-38],[38,2],[23,-13],[2,-48],[-5,-29],[6,-44],[47,-25],[23,-29],[28,-10],[21,18],[27,-6],[1,-21],[-9,-46],[-14,-27],[-30,0],[-21,-7],[-34,-57],[-8,-71],[17,-31],[25,-3],[59,18],[12,-15],[27,-13],[16,-14],[26,-73],[1,-40],[-7,-55],[11,-89],[7,-38],[-9,-11],[-31,9],[-20,-2],[-7,-26],[5,-16],[26,-33],[25,-65],[6,-35],[-5,-23],[-22,-23],[1,-28],[13,-6],[17,-35],[5,-36],[-2,-76],[3,-65],[17,-49],[-3,-32],[-14,-12],[-12,13],[-30,-4],[-5,-12],[7,-25],[-8,-8],[-30,0],[-15,-24],[27,-36],[25,-50],[25,-18],[22,-26],[11,-54],[11,-24],[26,-27],[20,-9],[31,-68],[9,-39],[-6,-14],[-25,-17],[6,-38],[23,-6],[25,-21],[20,-26],[9,-19],[0,-23],[-8,-33],[14,-21],[20,8],[22,-1],[13,-17],[6,-54],[-11,-61],[13,-34],[54,-18],[34,-2],[53,40],[33,-7],[27,-28],[42,-9],[13,-20],[9,-65],[41,-17],[15,-12],[4,-34],[-20,-30],[-3,-29],[22,-11],[35,8],[50,24],[26,4],[20,-11],[62,-67],[24,-2],[10,8],[22,43],[26,20],[23,-5],[15,-20],[5,-34],[13,-43],[9,-15],[22,-6],[34,20],[26,6],[24,-15],[21,-1],[24,26],[36,19],[15,-11],[7,-38],[-14,-54],[-9,-12],[1,-36],[17,-39],[20,-16],[34,-5],[26,-29],[17,-63],[48,-49],[14,-18],[5,-33],[-19,-24]],[[194528,352712],[-10,62],[11,85],[18,51],[4,70],[7,39],[14,54],[15,31],[12,58],[0,23],[12,75],[12,47],[7,46],[-1,56],[8,167],[-9,57],[1,77],[-2,173],[-5,46],[4,53],[-1,74],[-7,40],[3,598],[-28,332],[-50,255],[-63,297],[-28,221],[-23,155],[-15,68],[-10,69],[-14,57],[-29,97],[-9,24],[-59,61],[-29,34],[-19,51],[-15,52],[-9,51],[-6,74],[-5,92],[0,57],[9,69],[5,63],[10,62],[5,58],[-9,111],[-1,230],[-14,71],[-4,79],[-7,71],[-29,116],[-21,64],[-29,118],[4,73],[-4,25],[-20,54],[-58,221],[-21,123],[-16,83],[-32,20],[-73,58],[-29,42],[-25,44],[-16,48],[-12,47],[-3,59],[1,37],[-88,91],[-24,27],[-28,64],[-29,98],[-21,64],[-21,89],[-8,54],[0,78],[8,44],[29,54],[17,25],[-50,162],[-4,73],[4,40],[13,35],[-18,106],[-61,439],[-24,39],[-18,53],[-9,71],[4,53],[-22,80],[-21,-13],[-39,-14],[-62,-5],[-34,4],[-52,17],[-63,36],[-43,43],[-38,66],[-21,66],[-5,52],[2,41],[13,55],[12,33],[50,104],[33,49],[-16,22],[-21,46],[-34,25],[-31,39],[-35,62],[-20,63],[-8,40],[-30,44],[-22,49],[-38,22],[-35,33],[-41,54],[-22,53],[-18,64],[-47,15],[-30,14],[-46,33],[-46,48],[-40,59],[-24,45],[-21,74],[-32,78],[-15,7],[-52,47],[-50,75],[-15,44],[-9,53],[9,97],[-66,47],[-51,56],[-28,62],[-14,83],[1,75],[13,88],[8,18],[-7,32],[-8,83],[16,67],[14,34],[23,35],[-6,40],[-1,45],[4,42],[6,22],[-34,58],[-19,45],[-13,55],[-43,43],[-28,44],[-27,77],[-3,30],[-23,30],[-14,32],[-14,54],[-5,36],[1,82],[9,39],[26,53],[37,57],[22,22],[58,39],[65,22],[22,2],[-32,90],[-5,33],[8,96],[8,35],[34,65],[54,70],[-20,55],[-14,63],[2,44],[-55,48],[-37,71],[-25,74],[1,35],[-24,41],[-24,89],[-3,33],[2,42],[17,71],[17,40],[23,33],[44,52],[53,37],[31,17],[66,23],[-50,58],[-17,30],[-25,76],[1,72],[13,54],[19,25],[46,0],[436,-194],[442,-198],[0,-1],[441,-194],[442,-202],[442,-201],[0,7],[397,-189],[44,-13],[442,-124],[441,-126],[53,-14],[182,-52],[207,-39],[296,-54],[149,49],[287,96],[6,0],[145,53],[441,143],[8,4],[248,420],[224,384],[-160,179],[-98,266],[-108,284],[-92,441],[-22,96],[-80,298],[80,35],[442,205],[190,91],[225,100],[1,371],[-280,252],[-136,119],[-442,394],[-239,212],[-12,12],[693,0],[321,1],[120,0],[599,0],[230,1],[102,-1],[394,1],[443,1],[96,-1],[344,0],[112,1],[331,0],[539,-2],[124,-2],[219,-4],[214,-7],[84,0],[585,-14],[595,8],[288,3],[274,3],[99,0],[69,4],[109,2],[136,-3],[67,1],[129,-2],[8,4],[68,1],[103,0],[263,2],[21,-7],[107,0],[19,4],[62,-4],[75,3],[52,-1],[105,0],[79,-1],[335,-1],[469,1],[123,-1],[566,2],[252,0],[384,1],[541,-3],[377,-3],[407,-2],[135,1],[306,5],[533,-1],[693,0],[540,0],[512,0],[372,0],[370,0],[234,0],[279,1],[175,-1],[266,0],[442,1],[318,-1],[154,1],[411,0],[40,-1],[229,0],[172,1],[270,-1],[454,1],[160,0],[0,-3],[441,0],[0,4],[442,0],[441,0],[67,2],[347,-2],[159,1],[310,-3],[269,-2],[112,0],[114,-2],[388,-4],[332,2]],[[300909,275973],[36,-1],[119,2],[280,1],[425,-1],[174,0],[15,1],[426,-2],[476,-4],[5,1],[343,-2],[178,0],[334,-3],[111,3],[62,-2],[346,-2],[199,0],[93,-2],[61,2],[147,-3],[202,-5],[164,0],[23,-3],[135,-2],[23,-2],[199,-2],[25,-1],[131,0],[216,-4],[60,-3],[61,1],[171,-5],[285,-3],[105,-3],[202,-3],[305,-5],[54,0],[102,-3],[147,-3],[75,0],[203,-4],[273,-2],[80,-2],[141,1],[24,-2],[157,0],[280,0],[242,-2],[166,-2],[69,4],[50,-2],[110,1],[32,-3],[189,-2],[87,0],[56,-2],[53,4],[255,-1],[38,-3],[127,-2],[60,1],[193,-1],[69,0],[240,-3],[65,-2],[91,0],[96,-2],[201,-4]],[[311071,275885],[-11,-69],[-15,-35],[-31,-43],[-22,-22],[-32,-58],[-16,-21],[0,-23],[13,-41],[-14,-3],[-19,-31],[-19,-48],[-4,-33],[4,-48],[21,-46],[36,-43],[54,-30],[40,-12],[22,0],[43,14],[24,21],[34,61],[7,19],[7,44],[-6,63],[-17,87],[5,27],[20,28],[-3,17],[-21,25],[-3,14],[9,20],[3,27],[25,21],[43,21],[33,10],[34,-15],[21,-30],[15,-29],[22,-78],[5,-64],[-14,-22],[9,-27],[30,-32],[25,-65],[4,-22],[-4,-36],[4,-74],[-16,-69],[-8,-19],[-65,-99],[-59,-76],[-37,-16],[-42,-3],[-31,-32],[-24,-28],[-30,-105],[-20,-20],[-14,-62],[2,-63],[-12,-92],[21,-27],[11,-7],[-32,-95],[-5,-33],[2,-38],[7,-24],[17,-21],[32,-9],[86,7],[41,-18],[81,-23],[48,-20],[58,-30],[13,-11],[9,-19],[-9,-56],[-25,-56],[-43,-53],[-17,-15],[-63,-34],[-20,-17],[-49,-48],[-28,-40],[-16,-48],[-14,-17],[-7,-26],[-19,-13],[-27,-30],[-10,-19],[-4,-32],[1,-53],[8,-59],[18,-68],[12,-31],[26,-42],[26,-30],[24,-9],[13,7],[12,25],[24,-1],[69,40],[29,21],[64,27],[41,10],[3,37],[20,42],[9,31],[3,43],[10,25],[19,14],[6,22],[15,14],[24,-15],[17,-20],[26,-53],[12,-37],[3,-42],[-3,-31],[-17,-47],[-19,-34],[-42,-46],[-19,-41],[-19,-22],[-32,-23],[-85,-73],[-39,-38],[18,-56],[42,-55],[20,-20],[43,-27],[96,-47],[40,-27],[43,-45],[26,-59],[0,-35],[-9,-22],[-35,-37],[-25,1],[-60,17],[-49,30],[-40,47],[-40,80],[-35,91],[-20,38],[-62,84],[-15,-26],[0,-43],[-12,-68],[-20,-61],[-34,-86],[-2,-30],[5,-73],[15,-41],[30,-54],[34,-50],[41,-40],[50,-37],[65,-39],[20,-4],[41,-17],[16,1],[39,37],[45,35],[17,22],[18,4],[34,-10],[25,-18],[27,-38],[9,-23],[3,-86],[-9,-21],[-24,-35],[-19,-16],[-47,-25],[1,-41],[-9,-51],[-15,-36],[-14,-84],[5,-34],[11,-22],[23,-21],[24,-13],[114,-34],[41,0],[43,-9],[65,-28],[40,60],[22,59],[9,58],[8,17],[40,10],[10,-7],[-5,-38],[-30,-93],[-27,-57],[-26,-62],[-2,-40],[-14,-46],[-39,-69],[-21,-29],[-42,-48],[-49,-40],[-12,-1],[-14,17],[-7,21],[-20,38],[-31,7],[-16,-7],[-16,-29],[-12,-66],[4,-56],[7,-21],[34,-52],[7,-33],[-24,-23],[-16,-32],[-8,-65],[2,-60],[-3,-53],[-5,-19],[-36,-89],[-17,-12],[-12,40],[-7,86],[8,59],[-11,6],[-23,25],[-32,45],[-45,31],[-17,5],[-26,-7],[-14,-19],[-9,-57],[-8,-19],[-22,-35],[-34,42],[-14,6],[-31,-3],[-29,-15],[-30,-35],[-28,-56],[-16,-10],[-15,1],[-26,28],[-20,13],[-12,-2],[-86,-66],[-24,-36],[-22,-112],[-13,-111],[7,-63],[26,-70],[9,-10],[27,-2],[38,-11],[46,-24],[62,-3],[10,-6],[35,37],[33,15],[36,2],[44,-15],[27,-26],[28,-15],[3,8],[5,107],[10,35],[-4,41],[-22,37],[-11,44],[2,56],[29,-14],[29,-23],[60,-69],[29,-10],[49,7],[-4,-92],[-4,-20],[-21,-62],[-11,-22],[-21,-27],[-38,-18],[1,-72],[-14,-41],[-14,-16],[-146,-111],[-6,-14],[8,-145],[-6,-22],[-63,3],[-25,19],[-30,38],[-34,79],[-16,27],[-18,19],[-20,11],[-33,-9],[-29,-32],[-17,-40],[-1,-34],[4,-19],[16,-34],[30,-30],[24,-11],[104,-29],[64,-22],[21,-16],[11,-15],[11,-34],[5,-42],[14,-9],[-50,-97],[-21,-30],[-38,-32],[-38,-14],[-76,-10],[-90,-16],[-15,-15],[-33,-43],[-35,-64],[-5,-87],[-12,-53],[12,-18],[20,-6],[-4,-54],[16,-30],[-7,-16],[-31,-11],[-5,-22],[-18,-9],[-12,3],[-14,-29],[-78,-110],[-24,-44],[-50,-45],[-63,-29],[-11,-36],[8,-43],[59,-88],[16,-16],[-4,-57],[-12,-33],[-15,-23],[-27,-25],[-35,2],[-30,20],[-10,15],[-16,48],[-9,56],[3,76],[-19,79],[-29,-17],[-28,-9],[-60,-7],[-37,-20],[-24,-43],[-10,-65],[-15,-63],[-7,-47],[-22,-104],[-5,-45],[-6,-27],[-7,-131],[19,-12],[43,-3],[52,14],[16,1],[38,18],[48,12],[60,35],[22,2],[38,-9],[24,-18],[13,-28],[0,-24],[-26,-48],[-26,-26],[-18,-7],[-22,6],[-33,-3],[-41,20],[-49,8],[-110,-1],[-40,-7],[-22,-10],[-16,-38],[-24,-46],[-22,-54],[-36,-68],[-9,-71],[-1,-69],[8,-161],[7,-89],[-8,-69],[-1,-34],[-9,-34],[-17,-8],[-38,-34],[-23,-11],[-47,7],[-97,45],[-42,34],[-23,28],[-37,77],[-18,6],[-34,-36],[-18,-25],[-15,-43],[-4,-41],[2,-40],[15,-38],[17,-24],[19,-40],[31,-33],[27,-20],[25,-7],[26,1],[35,6],[24,9],[67,39],[20,9],[28,3],[34,-9],[32,-33],[-5,-77],[-9,-41],[-24,-42],[-46,-50],[-28,-36],[-29,-28],[-113,-65],[-18,-5],[-10,13],[-22,9],[-35,-10],[-11,5],[-28,-4],[-17,-11],[-24,-50],[-1,-27],[8,-25],[20,-18],[0,-47],[-8,-20],[-3,-87],[4,-133],[7,-65],[6,-28],[23,-71],[25,-70],[46,-57],[24,-35],[8,-37],[20,-5],[-2,-68],[6,-52],[-6,-30],[-22,-36],[-92,0],[-47,39],[-26,42],[-24,66],[-12,78],[-13,60],[-1,22],[9,36],[-16,44],[-24,6],[-23,-24],[-36,-30],[-18,-23],[-21,-52],[-7,-38],[-1,-28],[16,-47],[17,-77],[23,32],[24,19],[33,-22],[-13,-44],[1,-48],[-4,-36],[13,-53],[-3,-31],[21,-27],[29,-24],[3,-24],[36,-38],[46,-57],[7,-22],[-3,-124],[-12,-43],[-12,-34],[-11,-17],[-53,-38],[-49,-25],[-39,-13],[-56,-5],[-47,7],[-67,19],[-52,11],[-43,1],[-27,-6],[-26,-27],[-19,-38],[-3,-32],[10,-43],[27,-48],[68,-49],[23,-29],[39,-44],[21,-28],[23,-38],[18,-48],[4,-28],[-1,-60],[-8,-31],[-29,-79],[-38,-68],[-40,-64],[-9,-18],[-13,-46],[1,-29],[9,-28],[42,-72],[66,-70],[31,-42],[30,-35],[46,-65],[11,-35],[4,-39],[-4,-46],[-11,-42],[-26,-53],[-24,-33],[-43,-40],[-56,-35],[-66,-34],[-42,-34],[102,-2],[89,1],[80,-1],[76,2],[137,-4],[9,2],[141,0],[95,-1],[196,0],[139,2],[152,-1],[151,1],[12,1],[132,-2],[117,1],[191,-2],[438,0],[411,4],[40,-2],[356,1],[127,-1],[291,1],[98,0],[161,2],[221,1],[235,-2],[19,3],[56,-1],[97,2],[56,-1],[141,1],[300,2],[32,1],[140,-1],[164,2],[236,1],[408,3],[208,-1],[91,2],[79,-1],[57,2],[375,-1],[8,-14],[18,16],[19,8],[9,-6],[20,13],[13,-14],[-10,-16],[-16,1],[2,-19],[24,-25],[-9,-33],[-1,-44],[-18,-6],[0,-20],[24,-15],[7,-12],[-3,-19],[-27,1],[-14,-28],[-12,-11],[-1,-25],[-24,-19],[-21,-48],[3,-30],[21,-23],[-3,-29],[-10,-19],[8,-20],[20,-4],[1,-21],[-19,-34],[-14,-1],[-19,13],[-17,-18],[2,-24],[14,-9],[11,-30],[-14,-28],[-19,5],[-15,13],[-12,-14],[7,-27],[-7,-34],[13,-24],[-4,-18],[-17,14],[-9,-15],[-2,-24],[40,-54],[-4,-16],[-13,-18],[3,-29],[-11,-8],[-14,15],[-16,1],[-4,-13],[15,-44],[-16,0],[-4,16],[-13,14],[-8,-16],[14,-19],[1,-15],[-9,-28],[-1,-40],[8,-4],[14,15],[7,-10],[-7,-22],[-12,-19],[4,-17],[17,-13],[-15,-17],[-21,25],[-24,3],[-4,-33],[8,-15],[-22,-27],[-3,-31],[-24,-24],[12,-14],[-1,-25],[-9,-24],[-8,10],[2,22],[-11,15],[-13,-4],[-8,-18],[9,-43],[-19,-28],[-9,20],[-13,-19],[11,-37],[-5,-27],[-10,-6],[6,-39],[14,-11],[-7,-19],[-19,-11],[11,-15],[28,16],[-12,-39],[2,-26],[-13,-21],[8,-11],[13,16],[22,0],[-1,-14],[-37,-8],[-16,5],[-17,-17],[23,-23],[-20,-4],[4,-16],[21,9],[11,-8],[-20,-29],[5,-27],[-5,-11],[-23,11],[-5,20],[-11,-5],[8,-47],[-5,-14],[-17,-15],[10,-25],[19,9],[8,-24],[-7,-21],[4,-33],[-26,6],[-5,-25],[24,-15],[-10,-14],[0,-32],[-20,-34],[30,-10],[-27,-35],[-8,13],[-13,-17],[7,-11],[35,-4],[-2,-43],[12,8],[14,23],[12,-41],[20,-10],[-4,-15],[9,-18],[1,-24],[25,0],[6,-16],[-21,-21],[0,-21],[-13,-40],[-23,-2],[-2,-25],[22,5],[8,-18],[4,-48],[15,-11],[-9,-19],[20,-21],[-19,-7],[2,-24],[24,-9],[1,-39],[-6,-16],[13,-22],[10,-34],[2,-28],[17,10],[45,8],[4,-22],[-12,-21],[-21,-9],[-12,13],[-11,-10],[0,-23],[30,-7],[12,-34],[-6,-18],[-13,9],[-13,-10],[38,-18],[38,-3],[7,-28],[11,-11],[-12,-23],[26,-20],[-5,-24],[14,-74],[16,16],[9,-1],[27,-73],[19,-9],[18,-40],[15,8],[37,-33],[5,14],[17,-22],[-2,-29],[17,-18],[4,-17],[18,3],[19,-36],[12,-40],[23,-12],[19,-22],[2,-37],[21,-7],[-5,-28],[8,-26],[-8,-14],[5,-25],[12,-13],[-3,-50],[5,-22],[4,-43],[-7,-13],[-14,3],[3,-36],[22,-45],[2,-23],[12,-23],[15,-50],[32,-49],[6,-32],[-10,-17],[14,-42],[21,-7],[19,-23],[1,-18],[32,-9],[21,-57],[1,-26],[-8,-29],[7,-20],[3,-41],[12,-21],[-18,-26],[-29,-12],[-7,-22],[5,-46],[-24,-22],[0,-14],[13,-10],[16,3],[5,-18],[22,-31],[3,-17],[-7,-47],[23,-16],[-1,-21],[-15,-1],[-4,-29],[17,-30],[13,-13],[27,-16],[5,-30],[-6,-36],[-4,-57],[9,-24],[13,-19],[33,-12],[16,-25],[29,-71],[10,-43],[18,-34],[31,-33],[16,2],[45,28],[19,34],[15,15],[22,9],[22,-9],[17,-35],[13,-52],[25,-85],[7,-16],[13,-7],[57,1],[135,29],[56,27],[27,9],[42,29],[17,4],[147,5],[243,-4],[63,3],[49,9],[48,12],[39,20],[234,155],[186,-162],[122,-107],[138,-27],[372,-76],[108,-24],[115,-23]],[[319114,259287],[120,-25],[73,-260],[47,-67],[44,-79],[20,-45],[68,-180],[19,-73],[39,-186],[10,-58],[15,-159],[6,-153],[-5,-142],[-9,-107],[-1,-48],[-16,-152],[-26,-131],[-38,-162],[-16,-74],[-26,-103],[-16,-55],[-31,-90],[-46,-114],[-53,-115],[-111,-220],[-18,-24],[-15,-32],[-63,-105],[-55,-102],[-42,-60],[-70,-87],[-56,-54],[-94,-164],[-46,-94],[-62,-78],[-50,-109],[-26,-47],[-49,-70],[-32,-29],[-37,-24],[-55,-21],[-111,-54],[-7,-27],[-15,-34],[-31,-61],[-27,-43],[16,-279],[17,-17],[27,-43],[12,-26],[19,-59],[9,-40],[6,-57],[37,-33],[25,-29],[32,-60],[19,-58],[10,-43],[27,-40],[166,-115],[48,-5],[32,-12],[41,-27],[21,-21],[53,-3],[25,-12],[34,-26],[30,-14],[33,-29],[27,-31],[24,-41],[17,-44],[12,-48],[5,-59],[-1,-58],[-14,-74],[-16,-46],[13,-81],[2,-63],[-5,-64],[-9,-58],[-16,-50],[-21,-44],[-33,-43],[-31,-35],[-38,-31],[-38,-20],[-64,-5],[-40,-52],[-15,-110],[0,-54],[-7,-47],[-11,-49],[-23,-74],[-19,-33],[-28,-37],[-29,-27],[-40,-23],[-153,-265],[-5,-42],[-21,-66],[-31,-55],[-35,-39],[-65,-38],[-63,-4],[-63,20],[-58,46],[-40,55],[-29,75],[-13,69],[-4,31],[-28,19],[-43,48],[-18,31],[-44,-16],[-41,-11],[-73,-27],[-31,-54],[-20,-30],[-39,-42],[-55,-125],[-84,-142],[-63,-83],[-79,-140],[-19,-25],[-39,-38],[-31,-17],[-56,-15],[-56,7],[-53,25],[-38,34],[-31,37],[-26,47],[-15,37],[-12,58],[-6,62],[3,66],[11,47],[28,82],[41,84],[-1,41],[14,65],[1,149],[5,123],[2,155],[0,201],[-15,77],[-4,66],[-37,67],[-7,18],[-17,87],[-29,48],[-29,75],[-28,40],[-36,40],[-117,80],[-161,69],[-39,4],[-340,-85],[-300,-72],[-125,-33],[-101,-25],[-58,-13],[-98,-25],[-469,-115],[-82,-76],[-49,-72],[-82,-102],[-115,-128],[-92,-79],[-76,-52],[-34,-14],[-28,-20],[-36,-30],[-34,-18],[-32,-9],[-44,2],[-26,7],[-39,-21],[-51,-22],[-50,-30],[-115,-56],[-117,-45],[-85,2],[-23,-19],[-75,-23],[-47,-5],[-91,28],[-50,14],[-108,35],[-42,18],[-29,17],[-185,128],[-257,-117],[-229,-95],[-6,0],[-55,-26],[-48,-18],[-92,-23],[-63,-6],[-38,4],[-56,-1],[-39,-9],[-71,-4],[-37,10],[-59,8],[-52,15],[-79,-7],[-72,5],[-47,8],[-41,10],[-56,34],[-23,6],[-56,22],[-41,26],[-41,32],[-30,34],[-24,35],[-30,68],[-12,43],[-9,76],[1,47],[8,47],[12,41],[19,47],[19,32],[20,25],[41,35],[46,22],[56,5],[-21,30],[-30,30],[-41,-2],[-36,-7],[-33,0],[-50,11],[-57,27],[-82,25],[-45,4],[-28,9],[-42,24],[-40,7],[-53,25],[-53,51],[-24,32],[-20,34],[-12,13],[-37,19],[-37,10],[-62,-2],[-71,8],[-52,21],[-52,17],[-69,34],[-63,35],[-64,38],[-54,36],[-38,34],[-57,82],[-24,29],[-44,70],[-21,48],[-59,86],[-23,41],[-29,70],[-48,36],[-22,27],[-34,59],[-206,129],[-73,48],[-105,64],[-19,-6],[-34,-3],[-57,15],[-26,15],[-33,28],[-19,24],[-40,19],[-21,-3],[-46,5],[-21,8],[-40,24],[-35,36],[-13,18],[-29,-5],[-36,0],[-25,-31],[-36,-29],[-32,-16],[-39,-8],[-44,3],[-39,16],[-47,36],[-18,22],[-27,43],[-48,28],[-17,17],[-34,43],[-24,-40],[-32,-38],[-16,-14],[-36,-21],[-28,-36],[-25,-23],[-34,-22],[-29,-14],[-30,-6],[-37,-1],[-54,18],[-51,40],[-29,36],[-30,71],[-16,50],[-8,56],[-1,84],[-52,37],[-19,19],[-42,9],[-45,26],[-24,20],[-40,57],[-16,34],[-11,33],[-28,0],[-55,15],[-32,21],[-23,21],[-25,31],[-23,43],[-16,42],[-12,51],[-4,37],[-83,93],[-32,56],[-78,1],[-49,20],[-69,-7],[-46,-11],[-36,-24],[-46,-23],[-48,-32],[-30,-30],[-58,-51],[-28,-32],[-25,-24],[-29,-16],[-66,-28],[-49,-17],[-35,-8],[-69,-8],[-82,9],[-49,11],[-81,22],[-98,36],[-64,26],[-20,5],[-76,9],[-94,30],[-146,26],[-143,24],[-54,11],[-34,4],[-59,16],[-58,13],[-43,13],[-96,25],[-118,47],[-138,68],[-15,12],[-68,39],[-79,38],[-60,35],[-29,21],[-109,68],[-57,46],[-35,20],[-59,43],[-159,106],[-78,55],[-97,73],[-72,52],[-44,29],[-83,51],[-101,55],[-79,35],[-81,33],[-78,45],[-101,52],[-40,7],[-41,14],[-73,36],[-69,27],[-48,14],[-76,19],[-62,5],[-62,2],[-36,-1],[-66,-18],[-22,-53],[-36,-53],[-48,-40],[-44,-19],[-34,-5],[-36,2],[-23,6],[-33,17],[-34,27],[-19,21],[-24,35],[-102,19],[-59,9],[-194,-4],[-199,-34],[-86,-23],[-69,-13],[-201,-32],[-76,-14],[-72,-18],[-88,-25],[-39,-15],[-97,-47],[-39,-25],[-32,-27],[15,-104],[2,-50],[-4,-57],[-14,-60],[-12,-35],[-19,-36],[-24,-34],[-23,-23],[-29,-21],[-21,-8],[-27,-2]],[[301716,256138],[-49,354],[-10,54],[-11,82],[-11,51],[-25,56],[-67,142],[-24,66],[-13,13],[-53,26],[-13,23],[-5,41],[11,44],[-5,26],[-22,36],[-85,78],[-14,27],[-8,43],[-2,34],[5,39],[18,53],[23,36],[45,58],[61,62],[49,34],[44,48],[17,25],[43,76],[16,32],[28,67],[32,92],[15,47],[12,97],[12,71],[14,58],[17,45],[19,40],[14,41],[8,43],[24,39],[23,12],[18,3],[11,35],[35,62],[13,16],[42,27],[12,23],[2,50],[8,34],[34,47],[22,37],[5,22],[0,41],[20,11],[10,-66],[24,-1],[14,16],[3,20],[-13,34],[-44,15],[-12,14],[-25,42],[-24,25],[-1,32],[13,-3],[7,-29],[15,10],[-3,49],[33,51],[6,35],[8,11],[23,5],[6,12],[-3,26],[-16,17],[19,10],[7,19],[-5,25],[3,46],[13,4],[16,-16],[14,27],[-15,11],[-16,64],[-30,-13],[-3,40],[15,24],[-1,58],[-15,45],[-11,2],[4,41],[-2,24],[14,17],[-15,18],[-9,-20],[-17,-3],[9,27],[-10,16],[10,23],[-21,23],[14,24],[-13,17],[8,26],[22,-1],[2,20],[-6,36],[18,38],[-4,14],[22,8],[-22,33],[20,80],[-12,11],[-5,43],[7,28],[6,43],[-13,1],[0,19],[11,11],[3,21],[-17,14],[-2,-23],[-14,3],[6,20],[-18,8],[-4,12],[-16,-5],[-12,19],[-10,-8],[-37,39],[-12,-10],[-5,21],[12,7],[-16,30],[-10,36],[-27,45],[2,33],[-31,-7],[1,21],[18,27],[-12,4],[-11,19],[25,48],[-8,34],[17,2],[0,13],[16,8],[-21,21],[-7,26],[13,1],[0,66],[-10,20],[3,41],[15,8],[8,25],[18,0],[27,43],[12,26],[3,38],[12,-10],[10,11],[6,90],[11,8],[21,-52],[2,31],[18,27],[11,-17],[17,-4],[-3,28],[22,26],[2,25],[-7,12],[-18,-12],[-8,20],[17,19],[-13,22],[-2,26],[21,-3],[-7,24],[-17,33],[-18,18],[7,20],[-9,29],[11,35],[-25,54],[8,19],[-3,21],[31,50],[-7,6],[-9,37],[-27,21],[-10,21],[-18,4],[-25,38],[5,23],[-20,9],[-3,21],[14,5],[20,18],[-8,46],[21,25],[4,28],[-12,23],[5,23],[-4,28],[21,34],[13,-17],[13,15],[1,42],[12,8],[25,-1],[9,17],[24,15],[16,-9],[6,-15],[-14,-13],[1,-14],[23,10],[0,28],[22,12],[0,26],[-12,27],[-4,29],[-20,15],[11,32],[14,13],[-11,38],[1,33],[15,23],[-9,34],[29,41],[3,20],[12,8],[1,31],[16,21],[16,-2],[10,17],[12,35],[29,-8],[5,27],[20,-6],[13,23],[16,9],[13,33],[2,22],[24,39],[-14,26],[9,24],[8,36],[11,20],[-3,35],[15,-11],[15,15],[-7,17],[6,12],[0,34],[-13,38],[-17,11],[-5,20],[19,15],[13,0],[6,21],[-23,46],[2,24],[18,-17],[30,27],[30,10],[2,21],[-7,29],[12,31],[22,-4],[-2,24],[-17,32],[20,6],[8,23],[-10,37],[7,29],[27,-10],[41,27],[8,21],[-14,39],[10,18],[14,9],[13,23],[-11,20],[13,19],[0,20],[-16,28],[-35,18],[-2,13],[16,8],[24,31],[-16,36],[2,21],[10,35],[-16,1],[-6,12],[5,27],[-26,2],[-12,54],[2,12],[25,48],[30,11],[31,4],[2,14],[-19,17],[3,31],[-18,15],[-1,16],[22,27],[10,36],[13,16],[13,-7],[-7,-27],[8,-6],[13,15],[24,9],[13,21],[-1,29],[7,26],[-14,27],[-9,40],[7,32],[-5,21],[-26,-10],[-25,8],[-4,40],[-11,16],[-11,-1],[-18,20],[-35,-10],[-17,12],[-3,15],[18,14],[8,19],[5,65],[-24,3],[-21,51],[13,14],[11,42],[21,21],[10,-25],[24,-30],[16,32],[20,4],[23,-10],[20,62],[7,8],[33,-1],[23,29],[24,22],[2,20],[-37,21],[-21,17],[2,15],[15,2],[0,19],[-28,18],[-15,40],[13,12],[26,0],[8,27],[-5,23],[-17,4],[-13,15],[5,23],[-19,8],[-26,20],[-43,6],[3,39],[-3,15],[-16,-5],[-4,19],[-19,17],[0,19],[46,16],[6,9],[-1,28],[10,30],[23,23],[6,66],[-25,55],[-4,42],[-9,28],[-1,44],[31,2],[13,14],[-9,38],[-11,16],[-1,22],[22,4],[12,11],[5,32],[-11,33],[-28,-13],[-23,20],[-43,-24],[-30,-29],[-27,-52],[-7,-6],[-35,-9],[-37,54],[-10,38],[3,33],[-2,72],[-18,25],[13,41],[1,33],[26,16],[1,13],[-14,17],[11,26],[-7,10],[-31,-19],[-13,25],[-26,5],[7,26],[-1,42],[-19,25],[27,15],[-4,26],[5,18],[-21,34],[-3,36],[-67,-13],[-15,12],[-1,31],[-16,44],[-37,-12],[-37,96],[-20,14],[-29,3],[-9,14],[-5,40],[13,22],[1,20],[26,19],[8,14],[-11,33],[27,50],[3,33],[-3,39],[3,14],[74,30],[10,12],[2,31],[18,34],[-29,-2],[-39,-25],[-31,-8],[-22,19],[16,23],[-5,84],[-5,36],[-9,25],[-25,2],[-32,50],[-19,16],[-21,-1],[-11,9],[0,47],[43,106],[-2,17],[-53,8],[-4,9],[20,62],[-19,17],[-9,-21],[-14,23],[-22,-21],[-34,23],[-37,49],[-27,16],[4,36],[11,19],[-10,21],[-1,20],[11,3],[12,-13],[17,7],[5,24],[15,-9],[31,32],[-5,21],[4,30],[21,2],[-10,23],[30,28],[-4,15],[-31,3],[-57,0],[-11,25],[-7,47],[-13,7],[-8,18],[-12,-18],[-10,14],[-19,-34],[-26,0],[-62,11],[-19,28],[-30,24],[-1,19],[-15,4],[0,28],[-18,16],[-6,20],[-14,4],[-24,44],[14,20],[-16,12],[-3,30],[14,12],[-31,44],[-11,5],[-17,40],[-3,30],[-8,19],[-4,26],[4,44],[18,13],[18,43],[30,-14],[2,15],[-25,17],[32,17],[-10,23],[-1,24],[14,9],[-7,20],[6,21],[-6,50],[17,-8],[-1,26],[-17,3],[-15,38],[-11,17],[-3,34],[12,35],[20,-4],[6,-24],[12,12],[-11,22],[2,15],[28,29],[44,119],[-10,20],[-34,-16],[-13,4],[-5,24],[-17,7],[15,32],[-10,89],[-32,27],[-25,65],[-13,10],[-6,17],[19,25],[6,35],[13,10],[1,24],[12,41],[-3,9],[-26,23],[-7,13],[-17,-3],[6,29],[-6,12],[7,39],[-13,33],[-24,10],[-19,-11],[-7,31],[-21,21],[-7,19],[-21,17],[-12,-9],[-2,37],[-13,13],[1,44],[-9,11],[15,28],[-21,49],[-18,14],[7,28],[-3,13],[-21,3],[-1,10],[25,46],[1,22],[-25,5],[-16,13],[5,23],[-35,-3],[-1,23],[20,41],[-3,28],[-12,33],[-8,-16],[-26,-11],[-16,5],[-7,-18],[-14,-1],[-4,-21],[-18,28],[-18,16],[17,27],[18,41],[-27,43],[-27,-21],[-18,7],[-39,1],[-22,74],[-11,5],[-28,-24],[-20,29],[-6,16],[-14,69],[-20,27],[-6,26],[-17,22],[-20,46],[-24,75],[-34,44],[-8,46],[-15,8],[-15,28],[-13,2],[-26,-18],[-12,-1],[-4,40],[0,504],[2,195],[-2,31],[0,162],[1,186],[-1,376],[1,75],[-1,449],[-1,468],[1,422],[-2,162],[2,304],[0,260],[-1,130],[1,104],[-1,218],[0,115],[0,463],[1,388],[-1,84],[0,488],[1,327]],[[339532,287456],[21,-22],[-2,-20],[15,-9],[-14,-18],[-14,-30],[-4,-22],[-10,-18],[-19,-5],[1,-18],[-15,-22],[-5,-36],[6,-31],[-2,-24],[-14,10],[-10,-28],[22,-47],[14,4],[19,-45],[-24,2],[-11,-10],[-20,29],[-15,-14],[6,-21],[-18,-24],[-23,-22],[-48,35],[-14,-9],[6,-40],[1,-41],[-12,0],[-17,24],[-12,1],[-9,-32],[-13,-22],[-20,-2],[-1,-30],[-30,-42],[-17,13],[-13,-28],[-16,-5],[-9,-21],[13,-34],[-14,-23],[-16,-3],[-6,12],[-22,18],[-10,-41],[-35,8],[-6,-8],[-26,5],[-14,-10],[19,-47],[-7,-23],[-22,13],[-7,-10],[6,-52],[-5,-10],[-20,5],[-1,-38],[10,-28],[-32,3],[-3,19],[-22,2],[-19,-74],[16,-15],[1,-35],[-7,-20],[4,-17],[-23,-23],[-26,20],[-22,26],[-9,-9],[5,-25],[-23,-32],[-11,8],[-2,21],[-10,4],[-14,-27],[8,-18],[18,-10],[-5,-30],[-8,-12],[-40,-17],[2,-14],[-23,-21],[0,-16],[-14,-18],[11,-50],[-5,-9],[13,-35],[-13,-32],[11,-5],[-14,-23],[-13,-36],[3,-22],[-22,-11],[-1,-15],[-20,-23],[-5,-25],[-16,3],[-17,-11],[-15,-48],[3,-67],[7,-41],[14,-32],[-18,-15],[-7,-20],[9,-12],[24,-10],[15,-17],[7,-26],[-16,-23],[13,-17],[35,6],[27,-21],[10,-16],[8,-31],[21,4],[20,-3],[12,-20],[2,-21],[27,-47],[48,-37],[6,-18],[21,-17],[39,-12],[20,-13],[27,-39],[4,-23],[20,-14],[-10,-32],[39,-43],[33,-12],[24,9],[27,-2],[32,-13],[9,-12],[-1,-18],[43,22],[45,4],[45,-26],[-14,-14],[-26,-12],[3,-35],[7,-10],[49,-20],[-16,-35],[1,-15],[18,-1],[37,-31],[12,-36],[-4,-25],[26,-20],[13,13],[24,-9],[-4,-23],[8,-22],[20,-1],[21,-30],[4,-28],[20,-21],[1,-32],[24,-8],[14,7],[28,-14],[23,-39],[-30,-33],[-1,-13],[29,-14],[7,-32],[25,-33],[15,-6],[23,14],[20,-15],[-1,-21],[39,-54],[27,-26],[20,3],[28,-18],[13,-16],[31,-12],[33,-21],[30,43],[40,18],[16,-21],[41,29],[17,-29],[36,6],[15,30],[25,5],[23,-5],[16,-24],[29,16],[57,15],[32,-33],[18,-1],[23,-52],[-1,-14],[27,-30],[6,-18],[26,-9],[20,-26],[-5,-14],[12,-53],[5,-11],[5,-75],[16,-18],[6,-30],[1,-45],[21,-80],[-1,-43],[21,-62],[3,-78],[5,-19],[31,-21],[51,-58],[42,-50],[10,-5],[14,-47],[1,-47],[5,-15],[9,-63],[19,-45],[0,-31],[37,-70],[17,-22],[18,-3],[4,-12],[22,-23],[27,-53],[-6,-13],[10,-38],[-1,-18],[10,-18],[-6,-30],[9,-101],[-6,-27],[13,-27],[-7,-36],[6,-36],[30,-81],[0,-79],[3,-18],[20,-38],[16,-55],[12,-58],[8,-13],[40,-42],[15,-10],[33,-6],[15,-22],[26,-12],[13,-15],[25,-61],[2,-26],[31,-64],[18,-20],[24,-15],[16,-26],[7,-34],[-18,-65],[14,-42],[24,-23],[24,-4],[22,-35],[6,-32],[25,-36],[8,-29],[11,-19],[40,-42],[8,-16],[-6,-41],[1,-34],[11,-33],[10,-48],[13,-26],[29,-19],[7,-17],[-16,-21],[2,-42],[17,-33],[18,-21],[11,-31],[3,-42],[31,-72],[8,-9],[40,-16],[32,15],[34,-1],[41,-37],[33,-64],[31,-83],[11,-16],[41,-41],[36,-52],[37,-38],[15,-27],[29,-26],[29,-19],[27,-40],[29,-19],[51,15],[22,-9],[23,-33],[38,-27],[18,-19],[23,-37],[15,-14],[78,-46],[32,-42],[42,-35],[15,-25],[26,-33],[5,-19],[32,-25],[13,-17],[5,-43],[-2,-47],[13,-17],[21,0],[14,-12],[27,-43],[27,-27],[20,-13],[4,-19],[29,-15],[29,-42],[7,-56],[18,-46],[5,-57],[11,-61],[-5,-36],[10,-50],[45,-67],[13,-15],[17,-49],[12,-46],[34,-42],[0,-37],[-4,-41],[16,-104],[37,-56],[22,-29],[20,-16],[56,-20],[18,-20],[11,-38],[26,-31],[33,-22],[16,-4],[15,8],[29,30],[36,-4],[27,-54],[24,-26],[66,-26],[15,-12],[40,-50],[10,-8],[30,-9],[32,-53],[15,-48],[17,-8],[17,-25],[0,-16],[13,-17],[35,-27],[9,-43],[21,-16],[21,-58],[18,-54],[-2,-38],[5,-24],[12,-21],[19,-14],[26,-8],[56,-33],[39,-31],[43,-19],[28,-32],[24,-80],[17,-32],[6,-30],[-15,-35],[-35,-12],[-15,-10],[1,-26],[37,-39],[37,-16],[1,-18],[-8,-18],[-29,-1],[-20,19],[-7,-15],[-19,-12],[-29,13],[-12,-6],[2,-25],[33,-37],[11,-58],[1,-30],[10,-26],[14,-14],[-3,-23],[-17,-18],[-14,5],[-18,21],[-23,-10],[-2,-21],[7,-19],[35,-46],[-6,-29],[-12,-19],[7,-23],[18,-1],[16,8],[18,-2],[16,-26],[18,36],[16,2],[-3,-25],[-18,-5],[-15,-41],[3,-9],[36,-33],[-12,-47],[19,15],[1,25],[11,25],[-3,26],[10,4],[14,-29],[-8,-41],[13,-10],[22,-4],[-12,-25],[9,-10],[22,15],[6,-28],[-8,-17],[13,-44],[40,67],[16,-11],[0,-45],[10,-9],[22,45],[29,-18],[4,-25],[-20,-22],[-28,0],[-12,-54],[4,-15],[17,-15],[20,-6],[19,5],[9,-34],[29,-44],[0,-48],[24,-4],[-17,-21],[-17,26],[-13,6],[-6,16],[-15,-16],[7,-33],[21,-10],[0,-12],[-17,-11],[-14,3],[-15,-13],[2,-13],[22,-39],[30,-20],[21,-26],[14,-30],[20,-6],[47,-32],[3,-42],[11,-20],[29,-1],[27,-17],[17,-1],[20,10],[5,29],[-13,29],[15,11],[11,-4],[20,-28],[16,-73],[19,-20],[4,-14],[-10,-22],[-3,-28],[-19,-8],[-6,-18],[10,-27],[-7,-13],[-19,15],[19,-48],[-5,-24],[14,-14],[6,-39],[37,-59],[21,-15],[9,-27],[50,-44],[28,-43],[38,-29],[22,-28],[27,0],[62,-28],[27,-23],[45,-25],[48,-54],[29,-7],[60,15],[19,0],[17,-14],[6,-23],[-16,-30],[8,-23],[13,10],[20,31],[17,-41],[-16,-41],[36,-1],[12,-17],[11,1],[4,-29],[16,7],[26,-54],[18,-20],[12,16],[12,-7],[1,-18],[-23,-23],[25,-19],[24,-7],[18,32],[16,-9],[7,-39],[16,-12],[17,14],[8,-6],[0,-25],[31,-37],[23,-4],[9,-16],[-27,-24],[29,-2],[12,-36],[10,7],[26,-35],[15,-5],[1,-16],[-24,-9],[0,-28],[27,-14],[-4,-25],[-14,-15],[7,-27],[-2,-42],[-11,-35],[-7,-53],[-9,-6],[-16,12],[-3,23],[-12,-5],[4,-62],[5,-27],[33,-44],[-12,-37],[10,-35],[17,-6],[42,-56],[-14,-23],[1,-18],[20,-1],[-1,-33],[8,-19],[-6,-32],[31,-37],[6,7],[-4,29],[14,5],[11,-13],[-2,-18],[-23,-29],[-17,-15],[-11,-39],[13,-20],[28,-6],[10,24],[24,-40],[17,0],[8,-31],[-7,-27],[1,-25],[-11,-26],[-3,-27],[10,-36],[10,21],[23,18],[7,-5],[0,-25],[9,-27],[11,-3],[8,17],[30,-16],[17,-32],[3,-23],[-11,-17],[-20,-7],[25,-25],[14,-42],[-10,-20],[-18,-13],[15,-39],[-17,-5],[6,-47],[19,-6],[-27,-28],[17,-14],[-4,-18],[-22,-6],[24,-19],[20,7],[11,-9],[-10,-28],[-44,-7],[2,-24],[36,-2],[8,-17],[17,-15],[-17,-51],[-11,-20],[12,-11],[20,8],[17,-1],[4,-21],[-4,-23],[-24,-14],[4,-31],[-23,-17],[5,-12],[-9,-60],[15,-23],[-6,-13],[-16,-1],[-22,-57],[24,-14],[6,-21],[19,-4],[28,-39],[-5,-19],[14,-15],[7,-31],[-11,-56],[24,-31],[-9,-32],[22,-20],[3,-12],[-31,-41],[-12,-10],[-26,-7],[2,-12],[27,-7],[5,-7],[-16,-30],[-15,6],[-11,27],[-12,-14],[-2,-33],[20,-27],[0,-25],[20,-22],[3,-21],[45,-62],[16,-40],[37,-38],[20,19],[12,-6],[0,-35],[53,-27],[4,-14],[-15,-16],[7,-21],[26,-13],[70,-48],[34,-9],[44,10],[24,10],[15,-8],[-9,-36],[9,-11],[26,17],[-6,-26],[12,-3],[9,29],[16,-8],[-6,-31],[5,-18],[17,-11],[-1,-27],[-15,-22],[19,-14],[7,-22],[74,-71],[27,17],[14,-25],[16,13],[10,-28],[-3,-12],[-17,-5],[-1,-29],[14,-19],[4,-26],[29,-37],[20,-38],[66,-98],[20,-18],[22,1],[1,-22],[-22,-15],[10,-22],[-22,-12],[0,-26],[-24,24],[-7,-30],[25,-16],[-3,-23],[-28,-27],[12,-54],[-2,-17],[36,-70],[20,-29],[11,-32],[29,-48],[2,-39],[-14,-41],[13,-9],[15,-27],[18,-17],[0,-25],[-18,-18],[46,-46],[4,-30],[17,4],[-1,-34],[-15,-7],[5,-19],[30,30],[5,23],[15,15],[9,-9],[7,-29],[38,-39],[-34,-58],[9,-23],[17,8],[-3,-41],[7,-25],[-12,-34],[16,-9],[10,12],[11,-11],[0,-42],[-5,-18],[12,-34],[3,-26],[-27,-27],[5,-17],[-14,-17],[-16,-31],[-6,13],[-19,-4],[16,-34],[-11,-15],[-22,-2],[6,-30],[-12,-12],[7,-21],[-4,-16],[-30,-22],[-3,-20],[14,-34],[24,-24],[6,-12],[-1,-23],[-26,-20],[3,-10],[27,4],[15,-12],[14,-45],[20,-14],[22,-48],[3,-30],[10,-8],[12,10],[8,-14],[-26,-8],[10,-20],[1,-23],[-6,-44],[10,-8],[18,10],[2,-31],[-23,-6],[-12,19],[-25,-34],[-1,-27],[23,-15],[0,-26],[7,-23],[21,-8],[7,-15],[-18,-18],[-7,-24],[-2,-50],[13,-28],[3,-18],[-7,-46],[21,-32],[70,-7],[3,-26],[25,-32],[20,-13],[38,-48],[18,-14],[31,-13],[37,-7],[36,6],[38,31],[20,38],[15,16],[28,2],[34,-34],[23,-60],[16,-27],[16,-13],[68,-36],[18,-15],[17,-32],[23,-30],[34,-60],[24,-34],[31,-24],[44,-4],[44,-11],[26,-2],[101,-2],[97,-5],[276,0]],[[347858,270260],[-23,-43],[-16,-19],[-26,-17],[-16,-26],[-22,-23],[-9,-91],[-11,-57],[1,-31],[-14,-93],[-22,-63],[-28,-43],[-37,-35],[-17,-36],[-35,-42],[-20,-16],[-72,-75],[-24,-67],[-45,-108],[-49,-86],[-8,-27],[-21,-49],[-28,-40],[-24,-30],[-18,-13],[-4,-27],[-15,-49],[-23,-48],[-34,-46],[-40,-35],[-35,-17],[-40,-10],[-8,-59],[-14,-42],[-21,-48],[-32,-48],[-14,-13],[0,-34],[-4,-45],[-9,-26],[-50,-89],[-42,-49],[-109,-31],[18,-56],[6,-96],[-32,-131],[-27,-50],[-11,-87],[13,-99],[-26,-93],[-12,-65],[-23,-192],[-5,-68],[-4,-96],[-5,-43],[-18,-35],[-26,-27],[-6,-17],[-7,-50],[-13,-60],[-28,-55],[-37,-55],[-21,-18],[-44,-17],[-17,-63],[-34,-79],[-19,-29],[4,-29],[-10,-60],[-6,-19],[-36,-76],[-18,-29],[-30,-31],[32,-54],[17,-35],[15,-45],[6,-38],[-4,-87],[-18,-93],[-22,-58],[-9,-14],[5,-19],[4,-71],[-4,-60],[6,-82],[0,-121],[-11,-91],[-6,-23],[-52,-107],[-13,-55],[-29,-74],[-7,-5],[-5,-29],[-16,-67],[-43,-103],[-28,-39],[-53,-29],[-54,-12],[-25,2],[-44,-8],[-15,-21],[13,-52],[-5,-41],[15,-27],[12,-83],[2,-42],[-5,-60],[-22,-67],[-15,-39],[-39,-55],[-17,-20],[-31,-24],[-45,-19],[-36,-7],[-28,-129],[31,-110],[23,-10],[50,-44],[38,-49],[24,-56],[5,-29],[0,-86],[-9,-50],[-17,-45],[-19,-34],[-28,-39],[-27,-30],[-42,-30],[-1,-47],[-7,-76],[-10,-122],[-7,-35],[-24,-90],[-2,-24],[-13,-75],[2,-27],[-12,-31],[-31,-134],[-27,-69],[-15,-29],[-17,-59],[-14,-61],[-14,-51],[-4,-26],[33,-11],[58,-41],[26,-29],[29,-47],[16,-34],[12,-44],[4,-55],[11,-52]],[[332842,264275],[9,46],[2,31],[-17,28],[-4,40],[-15,42],[4,57],[-10,63],[-24,33],[-14,42],[-23,47],[9,49],[-13,76],[-20,47],[-6,31],[-25,23],[-21,30],[-10,4],[-27,72],[-12,61],[-20,29],[-3,12],[-26,48],[-20,10],[-30,4],[-27,27],[4,88],[-16,30],[-14,1],[-4,59],[4,41],[25,41],[5,20],[0,43],[6,27],[-8,46],[-18,50],[-5,29],[-22,65],[-5,36],[4,16],[0,39],[-9,15],[15,31],[42,17],[29,52],[9,60],[1,42],[13,40],[0,51],[-20,53],[8,25],[4,76],[-18,5],[-5,13],[1,46],[16,47],[11,49],[8,20],[6,47],[12,47],[-9,63],[11,25],[2,49],[5,19],[19,-3],[10,13],[3,58],[-4,45],[-9,36],[0,33],[-8,54],[21,91],[12,22],[7,35],[43,118],[12,38],[-13,30],[19,53],[6,24],[-4,38],[-12,16],[-20,47],[-3,26],[-20,55],[9,46],[-11,29],[2,57],[6,43],[0,28],[-15,14],[0,18],[11,42],[-7,18],[-28,20],[-23,26],[-25,45],[-19,7],[-3,14],[16,54],[17,12],[-9,21],[-43,23],[-32,55],[-10,23],[-18,23],[-16,55],[-26,22],[-16,32],[1,31],[-4,43],[1,45],[14,31],[4,39],[8,12],[-9,73],[-26,82],[12,40],[-2,25],[-42,52],[-13,26],[31,58],[3,16],[-3,75],[6,42],[-11,56],[8,10],[-18,28],[-16,45],[12,28],[3,31],[-11,46],[17,29],[7,44],[18,38],[-2,34],[-18,50],[5,12],[56,-1],[14,5],[9,18],[-5,37],[14,6],[-18,44],[38,32],[8,38],[7,13],[20,12],[28,52],[20,17],[-11,26],[-9,58],[-8,18],[13,27],[33,10],[21,18],[7,22],[-3,21],[-15,40],[10,39],[0,25],[17,66],[29,39],[5,16],[-6,24],[6,17],[17,14],[-26,31],[-6,30],[16,25],[-14,30],[-5,21],[7,37],[0,39],[9,47],[-5,38],[9,36],[22,18],[7,25],[-16,42],[-14,55],[-6,51],[-24,109],[20,29],[14,9],[24,28],[21,42],[22,34],[24,53],[34,43],[14,32],[13,15],[28,8],[39,22],[56,26],[38,26],[7,16],[-12,31],[-35,-1],[-18,23],[1,20],[23,38],[21,10],[21,-8],[44,3],[34,-3],[31,5],[18,15],[9,19],[-2,29],[10,24],[15,15],[13,40],[-13,16],[-12,-12],[-13,4],[-3,31],[25,-6],[36,0],[11,10],[1,21],[9,23],[10,4],[25,-9],[10,19],[-20,29],[-16,15],[-21,32],[-20,15],[-35,39],[-16,23],[-32,64],[-29,25],[-33,13],[-66,40],[-67,43],[-49,19],[-15,34],[-4,49],[13,49],[10,17],[32,33],[31,50],[2,15],[-10,15],[3,28],[10,10],[18,-2],[15,9],[3,17],[-9,11],[-41,1],[-7,28],[10,29],[9,10],[16,-9],[28,1],[-5,20],[-20,20],[-10,19],[-2,31],[6,36],[26,23],[30,36],[-13,74],[-17,44],[-42,16],[-34,30],[-7,14],[-9,49],[-2,41],[12,38],[1,63],[-14,63],[8,27],[-12,15],[-6,61],[-17,21],[-7,37],[-19,7],[-5,29],[-18,21],[-12,48],[-9,11],[-18,-4],[-9,44],[-21,25],[-18,10],[-2,23],[-40,55],[-1,16],[-24,30],[-12,1],[-37,106],[-10,41],[-6,67],[-18,21],[-12,30],[25,42],[-4,25],[-24,-15],[-28,6],[-5,28],[-16,29],[25,41],[31,21],[4,12],[-16,39],[-2,32],[-17,31],[-16,21],[-33,25],[-9,19],[-7,29],[-11,88],[4,21],[-11,15],[-3,18],[6,38],[17,27],[11,32],[0,17],[-13,25],[-20,11],[-18,1],[-19,15],[-23,41],[-12,57],[19,33],[4,23],[21,-9],[22,12],[7,15],[-14,28],[-10,2],[-21,29],[-16,4],[-7,36],[-34,12],[-14,27],[-37,58],[-10,31],[11,27],[-1,23],[-10,29],[13,44],[15,20],[20,9],[5,30],[-3,15],[-20,43],[-8,9],[-28,-23],[-28,10],[-21,36],[-3,58],[-14,112],[-39,321],[-12,101],[-27,217],[-79,647],[-28,250],[-21,173],[-30,259],[-81,698],[-49,411],[-14,114],[-29,246],[-33,272],[-4,35],[-61,508],[-1,9],[-86,714],[-72,625],[-14,110],[-23,194],[-64,530],[-3,13],[-48,406],[-28,244],[-4,62],[-25,191],[-28,234],[-50,411],[-26,203],[-16,138],[-69,524],[-46,336],[-31,240],[-8,41],[-11,101],[-36,267],[-25,211],[-56,422],[-39,303],[-53,437],[-50,425],[-7,67],[-16,135],[-8,105],[-21,190]],[[330713,287363],[360,-7],[130,-3],[153,0],[154,1],[66,3],[461,11],[195,3],[125,3],[264,1],[247,5],[150,2],[356,-1],[111,1],[40,-2],[209,3],[86,0],[152,1],[204,-2],[12,2],[122,0],[295,-1],[57,1],[397,-2],[5,2],[182,1]],[[321547,287427],[-10,72],[164,-5],[553,-7],[535,-3],[64,-2],[170,-1],[58,-2],[199,-3],[167,-3],[131,1],[72,-2],[108,1],[182,-3],[80,0],[139,-2],[109,0],[446,-10],[308,-11],[323,-10],[141,-5],[105,-2],[177,-7],[239,-6],[113,-7],[86,-3],[158,-2],[168,0],[303,1],[123,-2],[61,0],[87,-2],[194,-2],[366,-3],[110,3],[22,-1],[118,5],[93,0],[427,-7],[6,0],[306,-3],[333,-3],[211,-3],[290,-2],[61,0],[124,-2],[156,-1],[279,-6],[441,-11],[70,-3]],[[323955,259806],[-172,-59],[-204,-77],[-81,-39],[-119,-17],[-129,-27],[-188,-51],[-127,-32],[-107,-2],[-132,1],[-180,14],[-105,-7],[-57,-10],[-32,-1],[-24,8],[-57,-26],[-22,-53],[-15,-24],[-49,-56],[-31,-22],[-33,-11],[-51,-2],[-50,16],[-43,31],[-21,22],[-37,58],[-43,8],[-34,16],[-23,18],[-42,49],[-9,19],[-26,29],[-30,57],[-105,-21],[-87,-24],[-119,-45],[-99,-26],[-88,-13],[-26,0],[-52,14],[-46,26],[-34,31],[-22,-54],[-21,-36],[-40,-52],[-47,-41]],[[320896,259395],[-5,137],[-11,394],[-11,362],[-10,329],[-13,393],[-7,225],[-3,140],[-7,176],[3,54],[-4,12],[-4,89],[-4,43],[3,10],[-1,95],[-3,40],[-4,140],[1,26],[-6,182],[-10,422],[-3,75],[-3,110],[-19,649],[-3,50],[-17,534],[-4,180],[-11,306],[-4,112],[-10,317],[-6,172],[-2,104],[-7,192],[-10,322],[-20,547],[-3,82],[-12,381],[-5,137],[-2,128],[-5,108],[-1,65],[-7,181],[-15,454],[-2,24],[-5,150],[-12,316],[-1,97],[-12,357],[-4,194],[-5,195],[-5,112],[-3,136],[7,93],[17,229],[23,294],[15,204],[28,348],[31,421],[30,385],[8,96],[51,712],[5,36],[11,134],[20,265],[3,74],[20,272],[18,230],[43,601],[17,248],[6,99],[19,215],[-1,7],[47,677],[3,47],[48,673],[3,51],[31,423],[16,213],[7,136],[7,53],[19,242],[6,111],[10,102],[6,92],[23,299],[33,456],[36,483],[26,360],[24,310],[12,151],[14,192],[31,409],[8,138],[16,187],[13,173],[4,81],[10,88],[16,210],[12,132],[15,184],[13,147],[7,103],[17,197],[24,292],[25,341],[13,172],[27,334],[5,85],[11,80],[4,99],[14,169],[60,776],[33,459],[17,214],[57,671],[36,386],[14,134],[10,108],[7,128],[10,113],[21,260],[17,224],[10,149],[7,99],[-7,11],[-100,52],[-38,34],[-47,63],[-26,53],[-17,70],[-28,92],[-31,70],[-25,41],[-35,83],[-7,31]],[[240847,328028],[0,-266],[0,-102],[1,-616],[0,-475],[1,-723],[1,-344],[0,-381],[-2,-709],[-1,-97],[0,-643],[0,-3],[-1,-722],[0,-32],[0,-692],[0,-12],[594,-3],[452,-3],[126,-3],[123,-1],[496,1],[138,-9],[442,1],[53,2],[150,0],[117,2],[123,3],[43,-4],[153,1],[244,5],[14,3],[221,3],[186,2],[23,-2],[86,2],[145,0],[49,-2],[134,1],[268,0],[198,2],[8,-2],[119,3],[201,1],[131,0],[274,0],[30,-2],[120,6],[459,5],[202,4],[222,2],[67,6],[161,-6],[165,-1],[49,0],[267,-1]],[[247899,322227],[2,-372],[2,-431],[1,-141],[1,-68],[-1,-432],[-1,-214],[0,-171],[3,-172],[0,-209],[-2,-238],[-5,-219],[0,-121],[-2,-114],[1,-28],[-2,-294],[1,-402],[-1,-476],[1,-358],[-1,-644],[1,-368],[-1,-327],[1,-346],[0,-378],[-1,-725],[-1,-724],[-1,-725],[3,-772],[-1,-523],[-1,-405],[-1,-473],[-3,-724],[-2,-208],[-3,-284],[-1,-233],[-6,-236],[-6,-225],[-7,-437],[-1,-268],[0,-147],[-2,-284],[1,-395],[0,-181],[-1,-39],[0,-271],[1,-588],[0,-403],[19,-176],[46,-466],[-2,-53],[-1,-363],[-1,-542],[0,-214],[3,-135],[3,-185],[-3,-197],[0,-180],[2,-244],[-3,-291],[2,-56],[-2,-429],[0,-239],[1,-88],[0,-459],[-4,-177],[-6,-449],[-4,-275],[-1,-725],[2,-4],[0,-223],[-1,-52],[0,-142],[3,-378],[-1,-655]],[[247916,299037],[-263,2],[-235,-1],[-301,0],[-322,0],[-46,-1],[-423,0],[-460,-4],[-415,0],[-27,-1],[-413,1],[-145,0],[-105,1],[-111,-3],[-109,0],[0,3],[-79,0],[-296,0],[-397,-1],[-270,-1],[-616,-1],[-73,32],[-35,4],[-29,-1],[-320,-4],[-92,2],[-442,-3],[-23,0],[-532,-3],[-332,-2],[-110,1],[-171,-1],[-157,-9],[-136,0],[-250,2],[-104,-1],[-48,-3],[-124,3],[-280,3],[-368,1],[-17,0],[-405,0],[-34,-1],[-444,-1],[-357,-1],[-523,-1],[-101,1],[-315,0],[-26,1],[-188,-1],[-421,0],[-452,-1],[-366,0],[-31,-2],[-335,0],[-327,0],[-88,-1],[-441,1],[-319,-2],[-241,0],[-66,-2],[-438,0],[-509,0],[-287,0],[-600,0],[-465,0],[-268,0],[-417,0],[-229,0],[-218,4],[-93,-1]],[[230236,299045],[-1,173],[-1,78],[-2,211],[1,56],[-3,50],[-1,84],[2,124],[-1,74],[2,144],[-1,69],[2,290],[-2,293],[1,53],[-1,439],[1,283],[-3,76],[0,253],[0,249],[-2,221],[1,214],[1,67],[1,184],[1,238],[-1,14],[2,384],[0,32],[6,81],[3,170],[2,87],[-4,79],[1,86],[-2,82],[1,167],[-2,687],[0,10],[0,285],[1,567],[0,587],[2,86],[-1,589],[-1,106],[-1,308],[-1,35],[1,484],[2,96],[-2,116],[1,353],[1,599],[2,126],[0,405],[-1,319],[5,0],[-4,757],[2,786],[0,485],[2,467],[2,594],[1,532],[-2,249],[1,424],[1,831],[-2,202],[2,156],[0,492],[2,528],[-1,220],[1,530],[1,538],[0,177],[1,235],[0,474],[-1,16],[2,289],[2,29],[-1,408],[1,37],[2,436],[2,426],[2,523],[-1,76],[2,75],[2,430],[1,412],[1,482],[1,708],[1,30],[0,465],[-4,19],[4,52],[1,196],[2,663],[2,713],[-4,70],[1,126],[2,523],[1,56],[0,460],[1,284],[-5,562],[5,143],[1,57],[-7,619],[-1,12]],[[333536,326257],[215,12],[226,10],[107,3],[92,4],[114,2],[207,8],[205,6],[133,7],[280,9],[246,11],[68,4],[275,11],[273,14],[137,8],[206,10],[63,1],[83,4],[272,14],[68,1],[74,6],[137,5],[392,19],[85,8],[68,2],[215,11],[204,8],[68,4],[287,13],[111,4],[42,51],[101,129],[248,292],[195,247],[227,278],[214,263],[44,47]],[[339518,327783],[137,-489],[16,-62],[245,-193],[441,-349],[392,-310],[50,-42],[83,-68],[160,-127],[198,1],[442,1],[359,-1],[83,63],[149,116],[322,247],[412,318],[441,341],[82,65],[360,277],[441,339],[144,109],[80,0],[218,178],[0,-7],[253,214],[205,173],[211,166],[214,172],[441,358],[208,52],[297,68],[286,74],[23,0],[49,14],[21,0],[198,52],[243,63],[293,75],[149,37],[149,39],[137,33],[155,39],[71,20],[300,75]],[[341351,307282],[-12,32],[-12,55],[-13,125],[2,7],[-26,72],[-28,30],[-65,42],[-58,54],[-31,48],[-7,15],[-41,67],[-18,41],[-29,73],[-32,46],[-78,61],[-18,22],[-147,14],[-25,-6],[-50,1],[-29,13],[-45,31],[-42,35],[-24,32],[-29,29],[-21,28],[-19,41],[-19,72],[-10,67],[-3,85],[-1,75],[-8,67],[-17,66],[-43,83],[-4,57],[7,61],[14,87],[5,42],[-4,54],[-15,60],[-17,28],[-19,8],[-1,11],[-26,9],[-14,-2],[-84,-31],[-65,-34],[-77,-64],[-37,-38],[-28,-8],[-21,2],[-30,12],[-35,9],[-28,0],[-25,-12],[-29,-2],[-21,-23],[-17,-36],[-16,-54],[-41,-75],[-31,-33],[-77,-50],[-61,-19],[-36,-33],[-28,-47],[-10,-28],[-11,-72],[-16,-48],[-16,-36],[-27,-40],[-16,-6],[-26,-19],[-19,-5],[-39,1],[-48,-10],[-60,-9],[-39,13],[-42,33],[-44,21],[-30,2],[-36,-32],[-26,-6],[-17,-22],[-9,-25],[-41,-62],[-22,-29],[-24,-9],[-40,18],[-17,17],[-26,45],[-6,39],[-7,75],[-20,44],[-27,30],[-77,66],[-38,28],[-34,15],[-76,20],[-53,5],[-13,11],[-30,5],[-45,2],[-28,6],[-34,19],[-41,11],[-33,44],[-47,57],[-34,28],[-29,18],[-43,13],[-33,-2],[-45,-13],[-71,-30],[-19,-12],[-81,-25],[-37,-29],[-34,5],[-21,-11],[-36,-29],[-26,-43],[-8,-29],[-6,-68],[-20,-96],[-14,-31],[-23,-18],[-49,-12],[-56,27],[-43,28],[-25,20],[-34,12],[-18,23],[-17,9],[-74,8],[-66,22],[-25,20],[-8,16],[-12,47],[-12,93],[-18,80],[-17,25],[-34,23],[-29,11],[-26,5],[-26,11],[-48,42],[-19,31],[-20,117],[-21,55],[-27,32],[-51,32],[-47,17],[-93,24],[-16,-1],[-33,13],[4,13],[-17,12],[-36,36],[-32,19],[-39,10],[-55,0],[-65,-33],[-37,-9],[-43,-23],[-57,-22],[-35,-11],[-23,5],[-44,-1],[-26,-5],[-83,29],[-51,23],[-22,18],[-74,43],[-73,30],[-62,16],[-59,11],[-53,17],[-26,19],[-23,32],[-21,39],[-16,48],[-5,34],[-6,71],[-1,55],[6,107],[0,45],[-8,65],[-8,27],[-31,57],[-42,97],[-12,12],[-32,66],[-31,43],[-29,52],[-23,60],[-10,36],[-8,100],[2,15],[-8,44],[-16,50],[-33,66],[-46,62],[-42,38],[-34,23],[-44,21],[-86,22],[-18,-5],[-37,12],[-24,-4],[-18,7],[-34,26],[-30,42],[-11,89],[0,59],[-6,16],[6,46],[-6,34],[-18,47],[-21,37],[-21,23],[-23,13],[-44,1],[-38,-30],[-22,-34],[-20,-44],[-29,-35],[-31,-19],[-40,-9],[-15,3],[-49,37],[-20,5],[-26,-8],[-19,-27],[-18,-34],[-25,-31],[-16,-8],[-68,-23],[-21,-17],[-25,-6],[-38,0],[-49,18],[-35,45],[-33,48],[-28,21],[-24,11],[-21,-3],[-28,7],[-32,26],[-77,152],[-24,42],[-37,38],[-51,25],[-26,0],[-28,-15],[-29,-35],[-21,-35],[-43,-88],[-35,-29],[-57,-20],[-8,-14],[-26,-8]],[[333486,311244],[0,232],[1,75],[-1,249],[0,290],[2,108],[1,203],[3,329],[3,146],[5,523],[2,8],[2,406],[0,277],[2,369],[0,121],[1,233],[0,535],[4,299],[2,327],[1,59],[4,369],[5,347],[3,243],[10,556],[7,474],[2,275],[-3,469],[1,137],[3,334],[2,312],[1,532],[0,269],[1,85],[-1,428],[0,167],[0,334],[-3,574],[0,390],[0,71],[-1,479],[0,599],[0,301],[-2,380],[1,230],[-2,622],[-2,384],[-3,373],[-1,490]],[[269261,296147],[449,-1],[26,2],[165,1],[122,-2],[128,0],[73,2],[116,-2],[253,0],[441,0],[442,1],[31,-1],[410,0],[20,2],[86,-2],[336,0],[12,2],[159,-1],[320,0],[308,-1],[74,-2],[141,0],[15,-3],[319,2],[158,-1],[1,-1],[464,0],[237,0],[13,0],[428,-1],[7,1],[545,0],[331,0],[94,-2],[159,2],[271,1],[12,1],[436,0],[16,-1],[297,-1],[411,0],[220,0],[215,-1],[117,1],[546,-1],[36,4],[35,-2],[76,1],[485,-2],[29,2],[134,-1],[171,1],[202,0],[12,-1],[0,-633],[0,-651],[0,-389],[0,-640],[0,-770],[0,-481],[0,-415],[0,-699],[0,-581],[0,-423],[3,-109],[-1,-43],[1,-409],[-3,0],[0,-672],[0,-342],[1,-50],[-1,-198],[0,-635],[0,-421],[0,-628],[0,-383],[0,-456],[1,-495],[-1,-182],[0,-481],[1,-52],[25,-6],[26,4],[52,14],[19,19],[29,40],[2,22],[11,12],[32,3],[37,-14],[14,1],[25,-13],[5,-25],[42,-47],[39,-37],[10,-2],[26,-29],[27,-48],[15,-14],[12,-26],[4,-21],[26,-50],[30,-42],[12,-24],[67,-60],[28,-20],[15,0],[18,-47],[-7,-30],[15,-48],[41,-61],[6,-20],[26,-49],[27,-16],[8,-35],[29,-5],[10,-17],[26,-22],[-6,-40],[27,-22],[21,-34],[13,-3],[11,-17],[21,-15],[49,-25],[22,-23],[22,-41],[-1,-29],[7,-21],[22,-28],[19,-5],[24,-40],[57,9],[24,-12],[27,-24],[12,3],[27,19],[16,28],[19,-4],[37,-20],[5,-11],[24,-15],[65,18],[20,-12],[13,14],[12,31],[19,20],[11,31],[-3,40],[7,33],[-3,25],[16,51],[36,9],[26,-7],[41,-25],[32,2],[42,-11],[21,5],[21,13],[24,-10],[12,-17],[25,-1],[23,-28],[13,-30],[11,-10],[47,-15],[13,8],[13,-5],[14,-27],[5,-61],[17,-2],[3,33],[9,12],[27,-48],[6,-19],[19,-31],[25,0],[6,27],[-3,22],[10,32],[13,3],[11,-31],[27,-19],[14,-25],[21,4],[15,14],[10,39],[-2,58],[4,32],[13,43],[16,31],[-13,20],[-21,17],[-1,39],[12,18],[3,25],[-11,21],[3,41],[21,28],[26,53],[22,16],[21,-1],[16,-12],[22,-5],[14,-23],[-8,-40],[1,-16],[22,-30],[37,-40],[22,-15],[19,-29],[16,-46],[14,-30],[13,-6],[25,8],[41,29],[11,4],[24,-8],[12,-17],[6,-21],[-1,-26],[15,-16],[13,0],[21,12],[7,18],[21,-11],[-1,-52],[10,-14],[-20,-23],[-31,-1],[-4,-21],[16,-20],[37,-22],[2,-26],[14,-1],[21,21],[21,-19],[-19,-31],[13,-21],[25,17],[3,-47],[9,-30],[22,-23],[-15,-22],[-8,-30],[14,-16],[12,0],[26,21],[38,-13],[-6,-10],[-1,-31],[5,-41],[12,-25],[-2,-21],[-15,-15],[-8,-34],[12,-62],[-6,-32],[13,-49],[27,-16],[16,1],[4,-55],[-17,-64],[23,-5],[3,-25],[-15,-36],[-3,-29],[7,-30],[14,-39],[4,-30],[-10,-49],[11,-26],[56,-15],[61,-27],[18,3],[15,13],[12,29],[22,26],[25,1],[11,-8],[0,-25],[-9,-9],[-7,-28],[7,-17],[31,-15],[29,23],[19,-12],[19,10],[7,19],[17,18],[20,-19],[11,0],[21,16],[17,-1],[34,-16],[21,-21],[14,-28],[33,-12],[13,2],[21,47],[7,3],[38,-17],[26,14],[15,-19],[26,20],[13,23],[-10,21],[15,20],[31,22],[22,-6],[15,-17],[16,-63],[15,-23],[24,-7],[12,18],[0,39],[14,14],[25,-8],[39,-50],[24,-37],[45,-80],[40,-34],[39,-14],[19,-14],[21,-26],[50,-10],[6,-20],[-13,-35],[6,-20],[14,-20],[12,-6],[20,5],[6,16],[4,48],[10,4],[61,-30],[21,33],[56,-24],[9,2],[30,-26],[29,-65],[29,21],[35,-40],[40,-15],[22,-26],[3,-32],[8,-12],[28,-3],[26,7],[9,11],[14,45],[16,5],[29,-4],[15,7],[13,-10],[9,-21],[22,22],[21,6],[15,-15],[21,-1],[19,30],[26,24],[20,37],[20,16],[36,38],[27,36],[17,0],[35,-21],[49,-24],[23,-2],[35,24],[12,0],[24,-19],[32,-34],[23,-13],[17,-23],[18,-40],[25,-29],[23,2],[13,-20],[-6,-17],[-27,3],[-5,-22],[18,-22],[17,-5],[52,-69],[20,-44],[8,-28],[40,-52],[11,-23],[34,-56],[34,-13],[19,-20],[10,-23],[15,-2],[38,19],[19,43],[14,5],[26,-8],[20,6],[9,11],[3,22],[10,23],[38,14],[24,-5],[6,-11],[17,-1],[15,14],[13,22],[4,30],[-6,26],[16,15],[17,-14],[8,7],[5,27],[1,97],[-10,5],[9,36],[12,17],[20,11],[20,-19],[14,7],[-3,18],[-16,14],[-7,24],[19,49],[39,17],[10,21],[13,7],[147,-42],[13,-20],[66,-68],[70,-22],[26,8],[40,-4],[18,-12],[30,7],[31,23],[24,0],[24,-31],[7,-24],[23,-18],[32,-9],[28,-21],[61,-11],[50,-4],[40,36],[19,27],[22,51],[15,23],[5,18],[21,38],[38,40],[50,-2],[26,-42],[5,-27],[-10,-47],[13,-16],[26,5],[9,-23],[-3,-33],[-16,-66],[-26,-64],[-43,-66],[-13,-18],[-9,-25],[3,-53],[19,-57],[14,-14],[36,-57],[36,-25],[23,-23],[2,-27],[-20,-19],[-10,-1],[-20,28],[-15,3],[-12,-9],[-4,-22],[9,-26],[29,-43],[21,-14],[19,-29],[6,-26],[-23,-16],[16,-24],[79,-29],[10,-7],[64,-19],[47,-1],[40,5],[62,17],[41,16],[28,28],[18,12],[9,-8],[35,-70],[12,-14],[20,-4],[21,4],[3,-14],[-9,-34],[-15,-75],[-15,-65],[-14,-42],[-17,-22],[-26,-19],[-4,-19],[11,-21],[32,-5],[23,11],[8,-10],[2,-41],[-3,-29],[-12,-58],[-16,-29],[-25,-20],[-16,12],[-13,26],[-11,-7],[-13,-42],[-3,-35],[20,-41],[16,-26],[27,-27],[34,-18],[21,-2],[40,6],[20,-8],[19,-22],[67,-41],[15,-21],[31,-32],[28,-7],[20,-14],[20,-24],[21,-7],[26,4],[58,29],[50,20],[12,24],[25,24],[12,24],[1,42],[14,24],[14,-11],[9,-20],[11,0],[15,49],[-1,58],[10,20],[23,3],[28,-49],[14,28],[3,22],[-2,32],[-20,50],[9,28],[23,4],[15,-26],[26,-5],[21,30],[-2,37],[-11,52],[29,15],[20,-3],[25,7],[35,-4],[41,42],[14,19],[25,44],[19,49],[9,39],[14,48],[16,31],[19,21],[58,25],[12,-7],[23,3],[15,-12],[83,-44],[34,-34],[8,-14],[22,-20],[23,-8],[29,-42],[10,-32],[25,-6],[8,-14],[-24,-61],[2,-23],[13,-36],[-1,-17],[-19,-46],[2,-38],[9,-20],[14,-13],[2,-24],[29,-25],[31,-2],[19,14],[15,-4],[15,-22],[24,4],[30,20],[37,30],[30,30],[82,46],[39,-8],[68,-54],[43,-41],[26,-59],[0,-78],[-4,-54],[-6,-13],[-6,-49],[-21,-50],[-6,-37],[15,-50],[21,-35],[32,-28],[49,-19],[12,-10],[46,4],[26,-3],[40,7],[16,-7],[15,4],[41,-6],[32,30],[29,45],[11,38],[27,52],[23,75],[6,37],[4,51],[9,39],[10,15],[22,-3],[8,-17],[-3,-25],[-13,-37],[-19,-35],[-5,-40],[10,-13],[21,12],[42,60],[12,29],[4,31],[-6,54],[13,5],[19,-24],[51,-80],[17,-21],[26,-19],[0,-29],[16,-1],[21,26],[33,7],[23,66],[3,50],[7,22],[-2,57],[7,34],[20,28],[27,13],[11,17],[56,16],[23,-10],[21,-32],[52,-47],[21,-49],[9,-90],[30,-119],[7,-51],[-1,-40],[-17,-29],[-29,-22],[-17,-4],[-35,2],[-18,-22],[-19,-55],[1,-46],[-3,-41],[18,-57],[27,-58],[9,-11],[0,-31],[9,-35],[-18,-52],[6,-16],[21,-15],[18,-6],[20,-55],[3,-31],[30,-50],[38,-40],[43,-24],[44,-14],[22,-3],[44,14],[19,14],[36,43],[21,46],[12,43],[4,45],[0,71],[-7,41],[-26,94],[-3,56],[9,38],[36,40],[27,14],[60,16],[34,6],[3,26],[-3,35],[-13,30],[-20,20],[-47,19],[-44,4],[-24,21],[-1,20],[11,35],[16,15],[47,25],[20,-3],[28,-24],[20,-60],[15,-34],[21,-11],[31,21],[35,30],[25,43],[16,34],[45,65],[32,87],[12,16],[3,26],[-4,68],[-11,70],[-21,69],[-5,28],[-3,52],[7,38],[20,30],[25,11],[7,-7],[-5,-40],[4,-39],[10,-24],[11,-10],[26,22],[27,14],[85,73],[37,27],[23,-3],[27,-34],[17,-32],[15,-49],[6,-29],[10,-118],[-3,-51],[6,-47],[17,-56],[28,-109],[22,-36],[36,-50],[37,-33],[19,-2],[17,11],[15,22],[3,63],[3,27],[27,38],[69,-13],[65,-22],[38,-31],[14,-32],[8,-57],[2,-36],[26,-84],[28,-18],[26,2],[36,8],[66,25],[41,5],[32,22],[18,23],[31,63],[21,75],[8,52],[1,28],[-4,44],[6,60],[29,103],[22,27],[26,-2],[17,-17],[88,-106],[54,-5],[80,5],[15,-4],[9,-34],[-17,-48],[-25,-32],[-51,-34],[-47,-72],[-14,-25],[-1,-40],[22,-24],[77,-41],[50,-37],[49,-51],[23,-4],[57,4],[64,22],[25,-17],[20,-53],[8,-29],[6,-62],[-3,-40],[29,-58],[26,-32],[44,0],[72,18],[28,-4],[14,5],[23,28],[13,1],[56,-14],[24,-13],[16,-28],[10,-32],[11,-53],[17,-37],[40,-61],[49,-62],[26,-49],[17,-16],[14,-40],[2,-29],[10,-27],[1,-42],[13,-28],[19,-14],[26,-5],[28,13],[14,21],[13,9],[32,7],[12,12],[23,55],[12,44],[9,53],[0,36],[-6,31],[7,56],[8,23],[24,87],[4,25],[19,19],[43,-2],[33,-15],[18,-2],[32,-35],[23,-15],[40,-33],[23,-27],[35,-7],[19,11],[56,18],[46,25],[22,17],[23,29],[13,26],[16,64],[8,68],[8,23],[-4,22],[7,69],[-14,8],[-22,-48],[2,-22],[-22,8],[-12,46],[8,22],[16,3],[21,19],[25,5],[30,-10],[7,13],[-10,74],[9,30],[36,12],[28,-10],[11,14],[17,0],[17,-12],[29,-31],[38,-12],[7,14],[-1,30],[-14,51],[9,5],[51,-6],[42,-21],[16,-2],[68,-36],[38,24],[18,24],[8,23],[0,32],[13,19],[17,-3],[10,-20],[-13,-64],[9,-11],[34,22],[19,6],[26,33],[12,62],[-17,4],[-15,34],[3,30],[34,-24],[15,-5],[15,-16],[3,-33],[-7,-18],[4,-26],[31,16],[65,17],[41,7],[13,9],[21,61],[15,71],[26,7],[22,-24],[31,-24],[52,-53],[26,-12],[30,-37],[43,-45],[41,-12],[23,-43],[17,-20],[22,-14],[27,-7],[29,22],[11,22],[0,34],[-7,28],[2,25],[17,14],[39,10],[17,-1],[33,-22],[37,-36],[14,-23],[20,-12],[24,9],[31,30],[11,23],[1,28],[-10,26],[-26,46],[-3,46],[9,41],[11,22],[28,24],[13,3],[42,-1],[47,-32],[27,-32],[41,2],[42,16],[34,34],[4,15],[21,31],[12,27],[11,12],[26,7],[36,-13],[35,-18],[19,-1],[19,18],[9,45],[30,69],[26,10],[16,-3],[19,25],[5,54],[28,-2],[28,-46],[17,-7],[34,4],[34,-19],[17,-35],[6,-47],[7,-27],[5,-66],[-12,-60],[7,-24],[21,-30],[33,4],[26,21],[28,30],[9,24],[16,19],[13,0],[9,-16],[-2,-105],[13,-8],[36,-1],[30,11],[48,30],[6,18],[16,12],[14,-3],[-11,-44],[-2,-39],[29,-6],[35,-24],[24,-5],[38,24],[60,-29],[24,-5],[21,4],[29,16],[50,2],[17,-9],[27,0],[21,14],[17,2],[52,30],[7,-3],[19,49],[2,21],[15,-3],[42,-27],[13,-26],[13,-10],[43,-12],[24,3],[23,12],[9,17],[0,69],[-8,34],[-13,19],[-5,25],[14,28],[20,16],[22,1],[11,-16],[6,-24],[0,-29],[-6,-33],[8,-24],[11,-12],[26,36],[19,71],[3,50],[-7,63],[-4,60],[5,23],[15,25],[21,20],[22,12],[9,35],[0,24],[15,13],[34,2],[26,-14],[22,-17],[17,-22],[47,-23],[47,-16],[13,-12],[38,-46],[29,-8],[36,-3],[32,11],[18,-12],[12,-19],[-2,-32],[-35,-57],[2,-20],[19,-35],[20,-12],[24,0],[26,27],[36,13],[21,16],[26,44],[16,-17],[4,-30],[-11,-29],[-40,-46],[-22,-10],[-9,-12],[0,-24],[35,-67],[27,-7],[8,34],[5,112],[13,21],[4,40],[16,11],[21,-20],[-3,-23],[-10,-11],[-28,-8],[-2,-33],[16,12],[31,2],[8,-10],[4,-41],[2,-49],[26,-43],[1,-62],[6,-24],[18,-14],[24,-8],[26,-1],[39,-12],[23,0],[30,25],[20,-11],[21,-49],[13,-6],[24,8],[19,44],[17,13],[9,-7],[11,-71],[5,-68],[24,-11],[19,-1],[29,-27],[-3,-25],[-31,-55],[20,-47],[20,-15],[67,17],[1,39],[-13,63],[2,13],[17,2],[12,-12],[20,-42],[4,-26],[-12,-38],[-8,3],[-20,-90],[3,-17],[36,-70],[26,-7],[-1,-23],[22,-25],[39,1],[5,-23],[32,-45],[10,4],[-4,62],[5,10],[21,-12],[6,-16],[-3,-22],[-26,-32],[-11,-24],[9,-18],[49,-42],[40,-13],[24,-1],[52,8],[-2,-32],[19,-15],[9,6],[0,22],[-9,56],[-27,63],[4,35],[22,29],[17,-8],[8,-22],[-2,-56],[14,-13],[2,-25],[-17,-45],[18,-27],[35,-15],[17,24],[26,14],[30,23],[11,30],[7,46],[18,25],[29,-5],[17,-19],[1,-37],[-15,-21],[-13,-3],[-35,4],[-45,-64],[21,-32],[33,-17],[45,-1],[22,37],[10,2],[3,-23],[10,-27],[-35,-42],[6,-16],[16,-9],[21,19],[1,31],[11,26],[19,3],[12,-12],[3,-19],[-13,-33],[-18,-16],[-42,-15],[4,-35],[39,-24],[15,-48],[6,-6],[31,-2],[24,-12],[12,33],[-3,33],[-7,18],[-34,14],[-14,20],[-9,35],[17,4],[17,-8],[68,-48],[18,-25],[-12,-28],[-37,-4],[-12,-45],[8,-5],[48,-1],[50,-19],[12,0],[27,23],[19,29],[25,5],[22,-14],[25,-35],[10,5],[6,21],[-6,39],[10,28],[9,-3],[16,-32],[-22,-55],[-19,-11],[8,-17],[10,-45],[-19,-18],[-12,3],[-19,23],[-29,-13],[-9,-15],[-1,-25],[6,-12],[28,-21],[19,-2],[22,16],[14,-4],[21,10],[16,23],[14,33],[3,33],[11,17],[17,3],[17,-8],[16,-43],[3,-21],[15,-26],[23,-16],[28,14],[6,24],[-2,18],[6,30],[-9,27],[5,20],[13,3],[26,-43],[-3,-31],[7,-12],[-5,-29],[10,-5],[26,16],[24,5],[9,-25],[-13,-18],[-38,-14],[-40,-53],[-14,-27],[8,-8],[30,2],[16,16],[18,28],[37,28],[37,21],[10,-6],[15,-32],[-2,-27],[-8,-18],[-48,-25],[-34,-29],[-6,-37],[5,-18],[17,-7],[38,8],[24,22],[16,28],[49,29],[22,-3],[12,-18],[-7,-13],[-43,-45],[-10,-21],[2,-16],[26,-31],[25,9],[7,23],[-6,49],[9,18],[19,-53],[23,-18],[24,18],[21,4],[16,17],[0,28],[-11,24],[20,8]],[[299344,279558],[27,7],[43,-16],[7,8],[11,37],[10,7],[34,-14],[6,-15],[-5,-32],[-51,-22],[13,-41],[16,11],[6,-18],[0,-31],[-7,-12],[-59,-55],[-4,-13],[18,-25],[18,-5],[11,11],[21,-49],[15,-5],[24,2],[12,14],[31,-15],[42,-85],[18,-41],[8,-6],[27,1],[21,18],[40,60],[11,8],[11,-15],[7,-35],[-3,-19],[-14,-25],[-35,-11],[-6,7],[-22,-20],[-4,-24],[16,-30],[16,-14],[10,-26],[28,-16],[34,5],[5,5],[33,-6],[8,-8],[19,4],[22,41],[-3,17],[-15,39],[3,13],[22,25],[21,2],[18,-29],[2,-32],[9,-24],[35,-23],[21,3],[21,13],[11,22],[-3,25],[13,49],[18,46],[26,30],[27,3],[10,-41],[-5,-11],[-29,-28],[-2,-48],[17,-21],[27,8],[18,16],[11,18],[1,19],[25,62],[21,36],[39,32],[20,2],[13,-20],[-1,-30],[-7,-24],[-20,-18],[-20,-36],[-7,-40],[4,-19],[47,-26],[20,-4],[20,5],[25,18],[20,41],[19,22],[16,-2],[7,-41],[16,-26],[18,9],[8,40],[-11,47],[-12,22],[-19,12],[-20,-18],[-14,-3],[-17,16],[-4,26],[15,14],[30,-21],[28,8],[43,77],[28,-20],[50,-12],[4,-6],[-3,-41],[19,-30],[14,1],[23,35],[15,-13],[-33,-48],[-1,-17],[15,-19],[14,2],[23,32],[8,-4],[9,-57],[0,-29],[8,-24],[12,-3],[13,17],[7,39],[-1,38],[29,0],[34,19],[20,20],[30,9],[23,2],[33,-20],[4,23],[-11,29],[18,0],[-2,-26],[13,-45],[28,-3],[8,-6],[0,-38],[-16,-10],[-19,11],[-23,-13],[-3,-16],[29,-29],[15,-6],[64,13],[1,-390],[0,-78],[0,-536],[0,-99],[1,-432],[-1,-153],[1,-111],[-1,-243],[1,-224],[-1,-120],[1,-703]],[[301716,256138],[-40,-4],[-38,6],[-43,20],[-33,28],[-30,39],[-30,55],[-110,21],[-450,0],[-324,-171],[-441,-282],[0,4],[-425,-274],[-19,-3],[-155,-96],[-282,-179],[-3,-4],[-441,-313],[-89,-86],[24,-25],[27,-45],[26,-72],[12,-51],[5,-37],[-1,-46],[-12,-42],[-6,-36],[-31,-79],[-16,-46],[-28,-48],[-56,-62],[-50,-20],[-42,-4],[-74,32],[-99,-133],[-34,-73],[-77,-88],[-236,-193],[-2,-1],[-255,-226],[-182,-197],[-2,0],[-127,-121],[-304,-210],[-19,-32],[16,-27],[-6,-58],[-19,-91],[-39,-94],[-35,-43],[-37,-33],[-49,-65],[-60,-101],[-85,-145],[-91,-131],[-74,-94],[-51,-61],[-41,-44],[-49,-42],[-83,-78],[-61,-74],[-8,-46],[-18,-51],[-24,-45],[-29,-35],[-37,-30],[-45,-31],[-42,-23],[-44,-21],[-56,-18],[-28,-7],[-40,-3],[-25,1],[-261,-233],[-19,-11],[-115,-76],[-329,-275],[-442,-374],[-98,-76],[-344,-246],[-441,-294],[0,8],[-268,-194],[-8,0],[-165,-124],[-67,-52],[-135,-102],[-126,-119],[-62,-58],[-80,-79],[-6,-41],[-11,-38],[-31,-65],[-37,-46],[-42,-39],[-33,-19],[-32,-9],[-29,-3],[-12,-35],[-16,-28],[-33,-45],[-14,-11],[-1,-42],[-9,-53],[-10,-34],[-18,-42],[-54,-91],[-26,-37],[-49,-48],[-23,-17],[-24,-9],[-82,-54],[-104,-78],[-62,-44],[-97,-71],[-35,-27],[-74,-56],[-91,-85],[-140,-136],[-79,-78],[-78,-82],[-89,-102],[-173,-206],[-55,-63],[-55,-68],[-64,-87],[-182,-242],[-100,-131],[-110,-176],[-118,-207],[-105,-191],[-74,-150],[-88,-414],[-26,-39],[-61,-60],[-46,-20],[-42,-76],[-46,-88],[-12,-27],[-265,-636],[-141,-419],[-8,-32],[-114,-362],[-179,-626],[-22,-98],[-112,-567],[-29,-158],[-29,-193],[-7,-65],[-9,-56],[-1,-31],[-14,-122],[-7,-125],[-15,-221],[-7,-178],[-5,-163],[2,-88],[-2,-149],[7,-58],[2,-91],[16,-320],[8,-94],[10,-89],[30,-285],[7,-81],[14,-92],[15,-90],[34,-230],[109,-589],[29,-113],[62,-235],[6,-24],[25,-75],[11,-46],[6,-88],[38,-189],[17,-94],[44,-214],[60,-364],[39,-218],[107,-725],[3,-12],[14,-132],[14,-159],[17,-232],[8,-101],[4,-88],[3,-121],[28,-40],[22,-54],[15,-75],[2,-54],[-7,-84],[-10,-49],[-13,-26],[24,-375],[-121,-8],[-73,-8],[-4,-4],[3,-80],[-6,-20],[-31,-24],[-13,11],[8,55],[-5,11],[-26,-12],[-15,8],[-8,17],[-13,4],[-9,-26],[-26,-13],[-1,-19],[-11,-8],[-27,23],[-28,5],[-2,26],[-12,2],[-23,-26],[-16,-10],[-16,10],[-51,-24],[-13,-12],[-12,-27],[-23,1],[-26,15],[-56,7],[-22,41],[-22,-22],[3,-18],[13,-16],[23,-16],[-10,-19],[12,-21],[4,-22],[-13,-6],[-41,7],[-11,-14],[-12,0],[-6,18],[-16,-10],[0,-37],[-19,-14],[-15,27],[-10,3],[-13,-10],[-12,-23],[-7,-48],[-19,5],[-25,18],[7,43],[-27,2],[-17,8],[-5,-32],[-18,-34],[-21,-20],[-22,-1],[-6,-15],[1,-24],[-13,3],[-5,-21],[25,-17],[5,-11],[-6,-43],[5,-18],[28,-6],[2,-16],[-22,-5],[-30,-22],[-7,-20],[34,-4],[20,5],[-1,-37],[-15,-28],[-18,-49],[-26,-16],[1,-14],[24,1],[12,-7],[-23,-30],[0,-34],[-5,-11],[-26,-2],[-20,23],[-13,-27],[-15,-10],[-30,17],[9,15],[-2,19],[7,26],[-17,3],[-7,-32],[-7,-3],[-11,29],[9,25],[-10,43],[-9,-20],[-4,-61],[4,-40],[-35,-3],[-12,6],[-34,49],[-27,-7],[-6,16],[6,20],[-34,10],[19,16],[2,23],[11,24],[-12,27],[-9,-3],[-9,-22],[-14,10],[8,63],[-9,22],[-28,-19],[-15,-31],[-16,6],[-2,18],[18,18],[6,22],[-11,10],[-22,-30],[-27,-26],[-5,27],[-8,12],[-15,-26],[-16,-5],[-1,48],[4,43],[-9,17],[-25,-46],[-18,-19],[-34,-8],[-10,28],[-1,47],[-12,21],[-5,23],[-17,10],[-1,21],[13,28],[-3,21],[-31,-7],[-11,5],[-8,23],[-1,42],[-5,19],[-30,16],[-14,-29],[-82,32],[32,30],[26,14],[0,16],[-12,29],[-18,-2],[5,-24],[-3,-25],[-15,-14],[-6,15],[-4,37],[-7,20],[5,42],[-36,1],[-14,-7],[-12,-22],[-12,5],[-7,20],[-21,27],[10,40],[-8,28],[-21,7],[-25,63],[-24,-9],[-17,13],[8,31],[22,-2],[11,-21],[14,14],[5,36],[-8,13],[-14,-32],[-14,-1],[5,35],[-13,15],[-16,-32],[-22,28],[-17,12],[-14,26],[5,8],[30,-3],[9,16],[-1,30],[-11,25],[-17,19],[-15,-19],[-11,-47],[-8,13],[-17,9],[-26,-7],[-1,32],[16,21],[-5,26],[-11,-20],[-15,29],[-13,-10],[7,-25],[-9,-13],[-33,5],[-14,11],[-11,22],[-6,-19],[5,-24],[8,-12],[-10,-21],[-14,24],[-1,44],[-19,3],[-9,31],[-14,-12],[-1,-49],[-41,-18],[10,34],[-5,11],[-55,2],[10,-23],[17,4],[8,-9],[-4,-22],[-15,4],[-19,-11],[-7,8],[7,30],[-22,10],[-18,-20],[-8,28],[-15,-2],[-16,-25],[-11,-4],[-9,18],[6,68],[-6,20],[-14,19],[-28,-14],[-1,-26],[24,-24],[-34,-37],[-16,24],[-23,-4],[-12,9],[-13,26],[-1,21],[11,25],[14,-1],[2,23],[-12,12],[-18,-3],[-7,38],[-13,2],[-17,-13],[-10,-18],[-6,-59],[-11,9],[6,45],[-14,18],[-23,-2],[-14,-37],[-19,-22],[-9,37],[-18,7],[-26,-9],[-41,12],[-3,36],[10,38],[-17,7],[-16,-63],[-7,2],[-12,28],[-17,17],[-31,6],[-3,-23],[-18,-13],[-22,6],[-13,-4],[-22,-21],[-15,-2],[-26,7],[-21,-14],[-18,54],[-11,-2],[-2,-25],[15,-22],[-9,-20],[-13,5],[-19,31],[-27,17],[-21,-11],[-7,-16],[-25,-31],[-12,5],[-17,28],[-18,17],[-3,35],[-25,-5],[-11,-39],[-11,1],[-13,29],[-11,5],[-38,-24],[-3,29],[-10,-3],[-7,-27],[-12,-11],[-9,9],[-10,33],[-8,5],[-13,-16],[-7,-24],[-3,-50],[-14,-54],[-10,-1],[-22,15],[-26,1],[-18,8],[-19,-7],[-21,-45],[-23,-1],[-8,25],[27,16],[8,23],[0,21],[-20,62],[-1,26],[-11,22],[-20,2],[-2,-16],[15,-19],[-7,-11],[-28,-22],[-12,-3],[-15,14],[-19,35],[-48,-12],[-33,-18],[-12,7],[-3,22],[10,27],[-7,16],[-11,-5],[-11,-22],[-3,-51],[-21,-57],[-16,-8],[-5,36],[-17,12],[-18,-24],[-10,19],[13,20],[-12,22],[-13,-10],[-12,2],[-9,39],[-16,30],[-12,-5],[-4,-47],[14,-25],[-12,-8],[-20,24],[-14,-11],[-2,-25],[-8,-27],[-22,11],[-21,62],[-25,14],[-19,35],[-15,12],[-32,3],[-35,-12],[-30,-17],[-8,12],[-2,28],[-41,32],[-19,50],[-31,33],[-25,13],[-15,25],[26,14],[24,-8],[16,6],[-7,25],[3,17],[18,14],[-4,22],[-20,-25],[-16,-1],[-53,25],[-11,-1],[-14,-14],[-13,-47],[12,-46],[-25,13],[-10,50],[-15,19],[-15,2],[-24,33],[-25,57],[-12,32],[0,16],[26,8],[-2,18],[-23,7],[-9,11],[0,35],[11,16],[5,26],[-14,30],[-21,3],[-16,-17],[-5,-24],[0,-35],[-15,-14],[-13,29],[-6,32],[1,47],[-9,14],[-21,-22],[-1,-17],[8,-21],[-1,-17],[-13,-12],[-21,2],[-21,-4],[-22,6],[-17,46],[-12,19],[-23,15],[-4,9],[1,37],[-7,17],[-49,12],[-25,40],[-22,21],[-38,22],[-9,22],[7,24],[13,24],[-4,49],[-17,30],[-17,-9],[-16,-35],[-8,34],[-11,18],[-10,-1],[-20,-25],[-12,-8],[-29,0],[-11,-15],[2,-23],[14,-31],[2,-28],[-7,-12],[-12,12],[6,18],[-10,30],[-20,9],[-18,-6],[-30,-20],[-12,17],[21,56],[-37,33],[-17,-2],[-28,-32],[-8,25],[2,18],[15,23],[-13,13],[-15,-40],[-19,-13],[-7,12],[-8,38],[-21,59],[-33,17],[-14,-18],[22,-18],[17,0],[4,-33],[-8,-10],[-26,-10],[-11,-33],[-19,3],[1,32],[-4,42],[-7,12],[-24,-18],[-9,-28],[-11,6],[-17,50],[2,16],[15,19],[-3,31],[-24,17],[-41,-1],[-33,-24],[-18,-8],[-2,-18],[-15,-8],[-4,41],[-10,28],[-9,-1],[-26,-41],[-4,-52],[-10,-8],[-22,0],[-22,-14],[-21,-20],[-36,-4],[-29,18],[-13,18],[-10,45],[6,32],[-4,30],[-22,27],[-28,1],[-27,7],[-36,15],[-26,16],[-7,18],[9,18],[25,8],[18,-9],[15,4],[5,11],[-7,36],[-26,17],[-20,-18],[-12,7],[-13,45],[-21,22],[-15,2],[-28,-24],[-14,-4],[-24,12],[-19,46],[4,16],[17,3],[23,-27],[19,4],[7,16],[-1,29],[-11,18],[-19,8],[-10,25],[-6,58],[-5,8],[-19,-5],[-31,-28],[-21,-5],[-21,4],[-42,27],[3,46],[-17,30],[-15,50],[-3,47],[-21,40],[-15,11],[-24,-15],[-19,26],[-23,-8],[-13,-25],[-21,-23],[-17,-14],[-15,0],[-19,29],[-18,11],[-20,1],[-30,-21],[-29,-9],[-44,-25],[-17,-17],[-10,9],[-8,25],[5,42],[-8,27],[-8,5],[-25,-2],[-22,15],[-17,27],[-7,25],[2,46],[-5,14],[-15,-2],[-23,-48],[5,-44],[-7,-35],[-10,-9],[-27,1],[-32,40],[7,36],[3,45],[-5,20],[-26,23],[-29,5],[-15,11],[-17,-7],[-29,-45],[-12,-4],[-34,5],[-10,6],[-27,-7],[-11,17],[-6,26],[-23,48],[-35,29],[-18,4],[-30,-22],[-7,-16],[-25,-33],[-27,-23],[-24,2],[-46,-6],[-11,12],[-15,54],[-23,22],[-13,31],[-22,35],[-18,18],[-9,36],[3,17],[19,12],[17,30],[0,30],[9,38],[-2,25],[8,27],[14,23],[8,29],[0,32],[-12,22],[-33,108],[-27,43],[-24,54],[-33,49],[-51,13],[-84,48],[-16,34],[0,42],[14,58],[-38,356],[-78,204],[-35,221],[4,178],[-110,123],[-9,245],[-69,159],[-23,160],[-42,86],[-52,43],[-53,-3],[-23,5],[-43,83],[8,27],[2,32],[15,96],[-10,53],[-18,19],[-27,20],[-34,13],[-16,1],[-34,22],[-21,0],[-22,13],[-20,19],[-33,56],[-16,75],[0,39],[10,14],[32,26],[13,18],[3,22],[-7,14],[-31,14],[-17,29],[-41,57],[-17,71],[-25,44],[-24,-8],[-28,-30],[-19,9],[-31,44],[-6,19],[8,59],[-1,30],[-11,53],[-9,32],[-9,46],[5,33],[22,31],[36,38],[19,72],[-4,22],[-29,38],[-13,27],[4,23],[27,53],[10,36],[-3,71],[-25,44],[-5,37],[10,19],[16,11],[11,20],[11,87],[0,18],[-24,152],[2,30],[-38,56],[-7,35],[14,66],[-1,76],[-19,46],[-19,36],[-29,22],[-19,0],[-51,-45],[-20,-2],[-22,25],[-12,29],[-3,25],[7,24],[24,65],[-1,36],[-25,52],[-24,13],[-34,-12],[-37,-2],[-27,13],[-25,41],[-5,23],[24,39],[34,5],[45,53],[16,35],[-12,51],[0,25],[15,68],[16,49],[11,12],[13,31],[0,73],[9,34],[7,83],[-8,31],[-5,40],[-16,84],[3,66],[34,73],[8,31],[3,40],[11,13],[-7,57],[-16,28],[-39,40],[-20,1],[-39,-5],[-22,-16],[-23,-1],[-8,12],[11,68],[2,78],[9,64],[1,54],[11,52],[17,22],[11,44],[-4,22],[-15,24],[-32,24],[-15,18],[-23,69],[-3,26],[-10,42],[-7,15],[-34,33],[-12,16],[-10,-8],[-4,-22],[-9,-10],[-27,-9],[-34,-21],[-22,9],[2,14],[15,9],[10,20],[-1,42],[-26,20],[-26,38],[-6,58],[-34,20],[-38,-23],[-12,2],[-13,31],[-12,0],[-8,-31],[13,-28],[-12,-21],[-43,-18],[-39,22],[-15,-5],[-42,37],[2,24],[15,17],[11,28],[-13,45],[-25,24],[-35,-6],[-25,12],[-19,45],[-20,-36],[-8,-41],[-19,-3],[-24,20],[-36,45],[-8,43],[-52,113],[-50,80],[-18,32],[-2,27],[-11,29],[-33,58],[-14,9],[-37,-19],[-22,9],[-17,21],[-19,36],[-14,98],[-15,62],[-11,27],[-21,12],[-13,-56],[-12,-12],[-25,-8],[-20,7],[-15,25],[-6,60],[-15,50],[-2,29],[-17,13],[-21,-6],[-42,9],[-16,15],[-5,16],[15,72],[-9,40],[-6,45],[7,36],[-4,48],[-14,43],[-34,28],[-37,57],[-11,64],[4,30],[7,23],[15,22],[11,27],[2,37],[-12,45],[-11,30],[-62,33],[-16,24],[-14,31],[7,23],[-9,25],[-22,9],[-15,19],[-7,51],[2,27],[14,43],[8,37],[4,68],[-3,8],[-33,9],[-21,-2],[-11,7],[-44,1],[-26,14],[-25,21],[-27,7],[-17,12],[-24,51],[-14,55],[-20,42],[-9,33],[-16,83],[0,32],[-10,55],[-4,52],[-6,24],[-35,38],[-61,35],[-25,33],[-14,55],[4,49],[-10,26],[-25,26],[-21,53],[-21,45],[-17,65],[-3,24],[-12,16],[-79,40],[-37,11],[-34,36],[-18,12],[-24,25],[-41,-4],[-23,1],[-32,23],[-21,46],[-40,36],[-38,26],[-41,1],[-12,20],[-8,63],[1,33],[-15,96],[-10,30],[-11,18],[-31,5],[-9,-5],[-40,-7],[-19,12],[-22,25],[-11,26],[-24,31],[-35,71],[-10,32],[-10,15],[-22,17],[-14,29],[-3,34],[14,62],[10,35],[5,58],[-9,34],[-22,36],[-32,63],[-18,26],[-6,27],[-12,15],[-11,67],[-11,27],[-33,61],[-43,72],[-26,95],[-1,13],[15,25],[12,38],[20,91],[-6,74],[-13,38],[-32,56],[-24,26],[-36,66],[-2,22],[22,20],[24,-1],[39,24],[25,31],[12,36],[-4,14],[-42,21],[-40,10],[-8,12],[-59,25],[-7,-2],[-28,14],[-7,10],[-18,64],[-8,16],[-14,9],[-17,27],[-17,57],[-6,36],[9,31],[13,20],[28,86],[2,28],[-6,28],[-27,20],[-10,2],[-37,26],[-25,10],[-19,15],[-6,48],[-40,10],[-9,13],[-4,38],[4,26],[6,113],[-13,14],[-45,-11],[-43,35],[-16,42],[-37,21],[-28,6],[-11,17],[-5,31],[-21,90],[-10,57],[-1,51],[-4,22],[19,66],[-4,28],[3,61],[-2,50],[-21,6],[-8,13],[5,37],[-4,12],[-22,30],[-24,-9],[-16,12],[-2,17],[11,35],[1,19],[-17,32],[-10,28],[3,21],[12,20],[4,19],[-4,48],[-8,38],[-23,15],[-10,21],[-1,46],[-4,28],[-23,20],[-34,5],[-27,-18],[-16,16],[-7,37],[2,22],[12,55],[-27,43],[-27,25],[-10,16],[1,56],[-21,4],[-8,13],[3,26],[25,17],[5,19],[-7,17],[-37,-15],[-6,10],[5,34],[-1,46],[-34,-5],[-13,10],[-8,32],[-19,6],[-7,-27],[-21,-12],[-18,50],[-9,6],[0,22],[29,3],[5,18],[-4,24],[-29,20],[-25,71],[-18,14],[-2,20],[15,57],[1,16],[-12,24],[13,26],[1,27],[-8,34],[2,37],[8,15],[-3,31],[-8,26],[1,23],[-18,88],[-8,11],[-14,82],[-11,96],[2,59],[-5,93],[-6,15],[-4,34],[-13,54],[-16,51],[-33,57],[-30,28],[-60,24],[-62,55],[-6,14],[-31,44],[-4,15],[6,27],[-8,24],[-23,21],[-42,13],[-19,22],[-1,27],[-19,7],[-12,14],[-12,28],[26,50],[9,23],[-4,55],[-8,21],[-22,5],[-5,26],[9,32],[-28,73],[-5,21],[-12,13],[-15,-14],[-15,11],[-5,45],[8,39],[-18,38],[-33,25],[-26,8],[12,44],[-20,10],[-16,-12],[-37,-2],[-18,11],[-13,21],[-26,30],[-12,3],[-10,18],[-30,2],[-30,14],[-17,14],[-8,31],[-1,34],[-6,45],[-12,25],[-4,21],[-29,14],[-15,-3],[-25,19],[-7,23],[-29,13],[-6,28],[-19,16],[-17,1],[-21,22],[-24,18],[-7,47],[-27,33],[-35,-5],[-13,3],[-29,29],[-1,12],[-37,27],[-43,25],[-30,7],[-21,21],[-15,35],[3,35],[-12,40],[-12,29],[-14,8],[-44,72],[-7,27],[3,23],[-6,11],[-4,34],[-10,43],[-25,28],[-23,35],[-11,104],[-60,32],[-36,30],[-58,7],[-41,-12],[-30,30],[-22,27],[-26,-28],[-25,-2],[-26,22],[-36,73],[-22,62],[-12,21],[-8,62],[-20,5],[-46,28],[-123,12],[-28,15],[-53,-25],[-16,-2],[-21,56],[-1,40],[21,72],[23,58],[27,33],[-38,204],[-2,23],[10,35],[8,48],[-11,33],[-13,16],[-29,21],[-20,1],[-22,-32],[-16,-33],[-6,-25],[8,-34],[1,-107],[-12,-29],[-15,-22],[-19,-61],[-19,7],[-33,30],[-21,42],[-7,99],[2,49],[4,27],[21,57],[16,55],[5,35],[-13,67],[-12,20],[-25,19],[-119,19],[-9,-9],[-18,-56],[-21,-6],[-7,15],[-8,83],[-5,23],[-20,41],[-2,36],[5,52],[-3,36],[-10,14],[-46,34],[-30,36],[-5,18],[7,58],[-2,40],[-13,24],[-25,13],[-19,19],[-9,17],[4,34],[38,30],[13,15],[6,26],[-5,25],[-15,16],[-24,-9],[-62,-69],[-28,-37],[-22,-12],[-22,5],[-9,30],[-13,105],[7,46],[-10,36],[-18,9],[-12,-2],[-42,-22],[-9,-8],[-29,-59],[-47,-47],[-28,-9],[-33,4],[-18,-9],[-27,-22],[-24,-1],[-7,14],[2,47],[1,94],[12,67],[-5,21],[-20,55],[-19,-1],[-13,-29],[-11,-13],[-48,-27],[-19,-49],[-4,-22],[5,-18],[2,-59],[-19,-24],[-33,12],[-31,6],[-11,9],[-28,2],[-31,-21],[-17,-4],[-18,7],[-15,-11],[-20,-62],[-17,-9],[-10,-13],[-14,0],[-22,34],[-4,27],[-19,13],[-12,21],[-30,-16],[-16,-44],[-19,1],[-15,41],[-15,18],[-29,-31],[-38,-23],[-11,6],[-8,33],[-19,42],[-18,1],[-12,-18],[-18,-9],[-16,8],[-12,33],[-12,5],[-33,-10],[-22,25],[-9,2],[-29,32],[-21,10],[-21,0],[-11,-11],[1,-19],[-10,-28],[-39,0],[-20,6],[-20,19],[-6,14],[-5,37],[5,16],[21,24],[11,24],[-45,46],[-13,0],[-18,-18],[-3,-16],[8,-31],[12,-22],[5,-28],[-17,-24],[-18,7],[-31,28],[-35,57],[-9,23],[-23,-3],[-35,-50],[-33,-25],[-17,11],[-16,-9],[-19,19],[-29,5],[-42,0],[-12,-8],[-39,-74],[-15,-9],[-14,11],[-3,20],[6,14],[-5,39],[-16,21],[-27,6],[-34,-37],[-18,12],[-10,18],[-7,32],[3,19],[-11,23],[-18,14],[-31,-4],[-5,-36],[5,-11],[-10,-44],[-15,-15],[-8,6],[-11,39],[-23,4],[-21,-22],[-28,-22],[-14,5],[-7,19],[-15,7],[-10,-6],[-29,13],[-15,-12],[-4,-17],[9,-44],[-10,-11],[-17,2],[-10,-25],[-21,8],[-10,-4],[-48,4],[-15,8],[-5,21],[-26,17],[-42,-20],[-16,11],[-23,-4],[-33,2],[-11,54],[-14,-3],[-20,-19],[-26,19],[-24,8],[-26,48],[-17,3],[-14,15],[-6,23],[-28,44],[-29,-4],[-9,7],[-5,24],[11,34],[-1,16],[-13,37],[-23,17],[-12,-19],[-4,-36],[-6,-13],[-15,-2],[-27,39],[-30,1],[-23,-19],[-21,19],[-10,24],[-12,5],[-26,-6],[-13,16],[7,47],[-7,27],[-15,4],[-8,-23],[1,-27],[-6,-12],[-30,1],[-10,22],[9,42],[-12,19],[-13,1],[-29,-29],[-23,11],[-8,31],[-7,9],[-26,10],[-17,23],[-43,-1],[-13,17],[-15,-4],[-15,-33],[6,-46],[-7,-15],[-27,-1],[-5,31],[-28,4],[-5,-22],[-22,-14],[-5,-46],[-12,-20],[-20,-8],[-17,-32],[8,-51],[-2,-24],[-14,-44],[-10,-20],[-12,-73],[-15,-46],[1,-59],[-44,-42],[8,-24],[8,-46],[-8,-33],[-10,-14],[-17,39],[-14,2],[-20,-25],[-21,1],[-16,23],[-20,-2],[-18,24],[-30,22],[-11,-15],[-12,-3],[-13,18],[-20,2],[-17,-14],[-14,3],[-14,38],[-12,9],[-25,-43],[-27,1],[-1,30],[-8,20],[-13,10],[-37,-29],[-22,3],[-39,13],[-15,-23],[5,-13],[25,-24],[-8,-43],[-27,-33],[-38,-24],[-15,-18],[-15,-28],[-29,-24],[-9,3],[-14,21],[-2,41],[-13,23],[-6,23],[-18,42],[-16,2],[-15,-31],[8,-49],[-6,-15],[-18,3],[-36,-37],[-13,0],[-17,14],[-21,-6],[-40,-22],[-28,-60],[-26,-12],[-55,-2],[-29,9],[-19,0],[-17,7],[-12,20],[-4,35],[-22,-12],[-8,-18],[-6,-40],[-9,-33],[-14,-11],[-8,-22],[-13,-8],[4,-81],[4,-13],[-27,-36],[-6,-19],[-4,-58],[9,-16],[12,-34],[-11,-29],[-26,-4],[-16,-25],[-13,-46],[-21,-29],[-26,-23],[5,-9],[-4,-27],[-18,-18],[-14,8],[-28,-59],[11,-37],[1,-97],[-9,-39],[5,-23],[-21,-31],[-13,14],[-26,16],[-29,-1],[-12,-18],[23,-84],[-9,-39],[-32,-2],[1,-34],[-15,-36],[1,-36],[7,-19],[15,-14],[-20,-12],[-5,-20],[-20,-9],[-21,10],[-9,-11],[3,-33],[-4,-21],[-16,-18],[-4,-16],[-20,-16],[-15,-5],[-2,-13],[8,-29],[0,-49],[-3,-20],[11,-16],[-10,-41],[23,-45],[-13,-15],[-29,0],[-6,-8],[-5,-37],[6,-22],[-14,-27],[-18,-24],[-9,-48],[7,-18],[14,-7],[-39,-35],[-4,-31],[3,-32],[-6,-8],[14,-51],[6,-34],[-22,-39],[2,-15],[22,-6],[2,-19],[43,-11],[4,-10],[-12,-20],[-13,7],[-21,-8],[-16,-38],[-11,-17],[-3,-48],[-24,-9],[-15,-23],[-1,-51],[19,-17],[2,-17],[-21,-7],[-54,-36],[-39,3],[-21,16],[-24,-40],[16,-51],[-27,-118],[0,-43],[-19,-13],[9,-37],[8,-54],[-6,-27],[-24,-22],[-4,-19],[-16,-9],[-3,-23],[10,-19],[3,-22],[-10,-24],[-15,-16],[2,-22],[10,-23],[23,-1],[11,-25],[20,-24],[27,2],[20,-15],[12,-16],[-2,-52],[17,-23],[-2,-23],[-36,-42],[-3,-15],[-55,-31],[-19,5],[-11,27],[-24,33],[-11,-3],[-13,-21],[1,-26],[11,-26],[-5,-38],[-17,-12],[6,-37],[-9,-6],[-19,18],[-28,4],[-24,-34],[-9,19],[-10,-17],[-1,-34],[-19,-29],[-16,-1],[-25,13],[-39,33],[-18,3],[-26,-18],[-14,1],[-17,-21],[-11,-27],[8,-65],[-1,-16],[-23,-65],[-20,-9],[-3,-64],[-21,-12],[1,-27],[10,-22],[-9,-11],[-15,7],[-11,-8],[-8,-29],[-16,-25],[-25,-7],[-2,-20],[14,-22],[-6,-35],[-26,-27],[-15,-5],[-30,31],[-36,-54],[-20,13],[-23,-14],[-13,-22],[12,-49],[-9,-32],[-28,-34],[5,-40],[0,-38],[-16,-3],[-6,21],[-1,42],[-12,1],[-4,-23],[-12,0],[-3,-65],[-11,-21],[-8,-45],[10,-32],[20,-32],[-14,-56],[-21,-20],[-29,-66],[-5,-28],[13,-53],[-6,-19],[-11,-9],[-14,4],[-10,-12],[-21,9],[-17,-3],[-29,-35],[-25,-13],[-9,-21],[-23,13],[-11,-9],[-7,28],[-19,20],[-12,-16],[-28,29],[-33,7],[-43,19],[-9,-4],[-28,7],[-27,-18],[-21,42],[-9,-20],[-21,-22],[-5,-16],[-45,-9],[-6,31],[-26,34],[-22,24],[-12,-10],[-8,-50],[-28,-48],[-27,6],[-5,19],[19,9],[5,28],[-16,72],[-34,37],[-24,8],[-20,-26],[-20,20],[-6,31],[15,10],[12,28],[1,33],[-22,10],[-25,-41],[-19,-17],[-31,7],[-13,16],[-11,48],[22,-6],[20,12],[10,19],[0,36],[-12,24],[-31,3],[-10,14],[-10,-5],[-15,-49],[-4,-46],[-12,-38],[-20,-21],[-26,9],[-25,19],[-29,6],[-17,-16],[-5,70],[-11,6],[-12,-13],[-21,-9],[-6,6],[-9,43],[-37,-10],[-12,26],[-15,7],[-14,-8],[-15,5],[9,36],[-17,17],[-3,31],[-27,6],[-28,42],[0,40],[-42,-1],[9,-22],[-27,-15],[-11,1],[-13,22],[14,59],[0,29],[-22,15],[3,14],[-23,11],[-13,20],[-23,51],[-8,23],[-16,0],[-5,15],[1,26],[-28,9],[-11,21],[-15,4],[-17,-10],[-14,10],[2,45],[-5,47],[-62,50],[-19,-20],[-16,20],[-2,16],[10,30],[-13,25],[-11,-15],[-27,-7],[-13,6],[-20,-9],[-22,-25],[-39,6],[-18,8],[-16,35],[-21,17],[-7,22],[-9,4],[-24,-11],[-37,-2],[-19,-26],[-25,15],[-38,-23],[4,21],[-11,15],[-11,34],[-28,10],[-16,15],[-30,2],[-37,26],[-19,-7],[-16,1],[-20,41],[-33,4],[-13,-27],[-6,2],[-23,65],[-12,4],[-4,23],[-27,30],[-19,41],[-2,37],[8,24],[-9,15],[-22,-14],[-24,1],[-5,19],[11,12],[-2,20],[-13,27],[-15,-5],[-18,-28],[3,-10],[-8,-32],[-8,-6],[-18,7],[-2,14],[-16,25],[5,61],[1,35],[13,-3],[6,27],[-12,24],[-1,23],[-17,54],[-18,0],[-25,-33],[-13,-7],[-25,15],[-9,28],[5,23],[-6,16],[-17,7],[-23,-19],[-20,-8],[-12,12],[-20,8],[-8,32],[-41,10],[-29,10],[-21,-14],[-8,17],[-16,-8],[-11,16],[-24,9],[-16,-2],[-3,-18],[-14,-16],[-9,9],[-23,39],[-13,2],[-35,-22],[-25,10],[0,31],[-23,21],[-43,-9],[-24,14],[-19,0],[-39,20],[-25,7],[-14,-22],[-13,1],[-28,18],[-6,10],[-26,18],[-28,6],[-26,17],[-29,23],[-14,-1],[-64,48],[-3,9],[-42,34],[-16,18],[-2,40],[-37,19],[-24,32],[-8,-8],[-23,5],[-14,26],[-17,19],[5,25],[-6,11],[-22,9],[-2,29],[-10,5],[-21,35],[-25,0],[-14,-16],[-12,4],[-2,35],[-5,18],[-13,-12],[-16,9],[-12,25],[-9,-6],[0,-23],[-13,-9],[-7,27],[0,32],[-16,-16],[-16,22],[0,19],[-12,14],[-5,-24],[-13,-4],[-27,37],[13,20],[-23,24],[6,23],[-15,14],[-21,2],[-3,23],[-12,16],[11,50],[-19,14],[-26,45],[2,18],[-6,16],[-32,21],[-26,24],[-16,25],[-9,24],[16,20],[2,34],[8,29],[-1,19],[7,33],[-24,19],[-33,-16],[-19,-19],[-12,53],[3,19],[-7,27],[-17,9],[-34,41],[-17,13],[-25,4],[-3,36],[-21,0],[-14,16],[-35,7],[-10,8],[-27,5],[-1,15],[-14,10],[-21,1],[-29,-6],[1,22],[-10,29],[-16,2],[-10,-18],[1,-33],[-33,-4],[-14,-19],[-15,3],[-86,91],[-26,41],[-18,5],[-22,-5],[-48,78],[2,22],[-11,36],[-6,32],[-190,186],[-16,30],[-21,6],[-12,-5],[-3,25],[7,29],[-29,-2],[-3,31],[-10,29],[-19,-6],[-12,6],[-3,29],[-28,1],[-11,34],[-19,-16],[-15,-27],[-22,37],[11,40],[-24,11],[2,33],[-7,4],[-22,44],[1,26],[-13,22],[-23,15],[-10,29],[-22,23],[14,21],[9,-2],[24,21],[1,17],[-23,10],[-24,20],[-7,19],[9,24],[-10,27],[6,25],[-16,47],[-11,11],[9,23],[0,25],[-20,2],[-2,21],[-11,18],[28,5],[4,10],[-26,29],[-7,0],[-35,35],[-4,15],[12,19],[5,23],[-8,34],[6,24],[-30,59],[-15,5],[-9,72],[-28,5],[-5,21],[16,20],[-14,30],[-14,-16],[-17,32],[-12,36],[-10,-6],[-19,25],[7,43],[-15,-2],[-5,12],[-19,4],[-2,17],[20,3],[14,15],[3,21],[-22,39],[-22,-27],[-8,16],[9,12],[-4,23],[-22,7],[-5,31],[2,43],[-14,38],[-23,14],[-19,27],[-2,30],[-15,17],[-10,25],[-17,0],[2,30],[-4,31],[13,9],[-7,19],[-23,-29],[-9,12],[2,33],[-18,17],[-14,-5],[-4,27],[-14,32],[5,29],[-13,28],[8,16],[-10,11],[16,19],[1,27],[-10,13],[9,31],[18,20],[-5,12],[-15,-4],[-23,7],[5,17],[5,68],[10,19],[-11,11],[-9,-13],[-23,-5],[-5,11],[17,25],[-1,15],[10,26],[0,19],[-20,5],[12,19],[1,17],[-8,34],[-14,-10],[2,36],[14,16],[-1,28],[-16,23],[-27,10],[-7,15],[6,24],[5,46],[18,10],[-33,64],[-8,9],[13,28],[-4,18],[9,12],[-5,24],[29,13],[16,62],[18,28],[3,18],[-17,21],[15,25],[-8,15],[-15,2],[-8,34],[14,25],[14,1],[3,23],[-21,4],[2,39],[-15,5],[4,17],[-6,22],[2,37],[11,41],[11,6],[13,28],[-12,3],[-3,53],[8,40],[-4,32],[7,37],[-2,35],[-18,37],[-4,21],[-14,13],[0,36],[-10,7],[-1,37],[-17,19],[9,18],[-10,30],[-18,26],[-2,17],[11,11],[6,50],[-25,17],[-20,55],[-18,14],[-1,20],[-14,12],[-5,19],[-14,17],[-25,-10],[-31,9],[-7,20],[7,13],[-7,28],[-19,6],[-12,-7],[-2,29],[9,26],[1,31],[-12,83],[-26,21],[-17,-9],[-11,28],[0,14],[-22,35],[-11,1],[-19,35],[1,16],[-13,11],[-9,20],[-20,4],[-31,16],[6,44],[-20,15],[-23,32],[29,24],[2,38],[9,17],[-1,16],[-15,-1],[-13,11],[-3,40],[-39,-10],[-23,6],[-4,11],[-24,20],[-11,25],[-18,10],[-20,34],[12,26],[6,31],[-6,13],[-3,38],[32,24],[-4,25],[-11,2],[-17,21],[1,11],[-17,17],[10,25],[1,32],[-7,17],[-27,16],[8,13],[4,33],[-13,18],[-5,30],[4,27],[9,7],[-3,29],[-10,27],[1,25],[-8,12],[14,23],[4,46],[-26,17],[6,37],[-5,14],[6,36],[-17,3],[-15,34],[-3,21],[4,54],[-6,14],[-25,18],[-5,32],[11,18],[-7,27],[-29,34],[7,45],[-11,49],[-28,38],[-10,46],[-32,1],[-5,29],[5,27],[-10,18],[-2,27],[-16,12],[-9,-29],[-16,-2],[-16,23],[-24,-3],[-18,5],[-17,31],[-16,8],[-28,-16],[-14,11],[-31,72],[2,39],[-8,7],[-7,27],[0,47],[-6,45],[3,29],[-6,22],[1,19],[-23,12],[-4,22],[-14,2],[-13,22],[-2,47],[-20,31],[-24,-21],[-12,14],[-12,-21],[-19,-11],[-19,9],[-14,32],[-18,14],[-21,-9],[9,-25],[-11,-10],[-27,5],[3,17],[-9,16],[-20,-8],[-3,18],[6,27],[-3,23],[-16,7],[-4,15],[-25,-1],[-19,-13],[5,33],[-15,27],[-13,-2],[-2,34],[-16,10],[-21,-5],[-5,33],[-20,9],[7,31],[-19,6],[-10,16],[6,36],[-4,26],[-10,14],[-10,-17],[-15,17],[9,22],[-35,-9],[-3,11],[-29,10],[-23,20],[-18,-18],[-15,-3],[-11,13],[-20,-5],[5,26],[10,22],[6,48],[-24,7],[-21,30],[-18,-46],[-10,0],[-19,48],[-11,8],[-3,40],[-17,6],[-6,24],[-12,13],[-16,-27],[-13,3],[-11,-23],[-16,-12],[-28,26],[-1,14],[11,27],[13,-2],[12,29],[-11,14],[-8,32],[-9,0],[-20,-30],[-15,-10],[-8,27],[-32,-7],[-40,-20],[-9,-19],[-14,-9],[-25,33],[-7,38],[-11,16],[-23,-13],[-13,49],[-12,16],[-21,2],[-4,35],[-15,10],[-19,-6],[-4,-35],[-22,-55],[-8,8],[0,24],[-28,-25],[-8,9],[11,36],[-10,36],[-19,19],[-20,-9],[6,27],[-32,14],[-7,38],[-23,2],[-20,-29],[-11,11],[5,25],[-23,23],[-9,27],[-19,-16],[-16,-1],[-20,9],[-32,24],[-15,-6],[-17,-17],[-21,29],[9,20],[14,9],[6,44],[0,55],[-24,3],[-14,17],[15,18],[2,31],[-16,22],[-15,-16],[-14,26],[-5,33],[-39,9],[-15,21],[-48,29],[-15,57],[-14,-20],[-13,19],[12,16],[-1,15],[-56,3],[-1,25],[-12,24],[-18,1],[-8,25],[-35,33],[-21,33],[-17,7],[16,41],[-28,58],[-16,-8],[-33,-7],[-3,24],[-20,43],[-17,10],[-18,36],[-18,6],[-18,-7],[-51,29],[-24,48],[-6,26],[-16,34],[5,40],[-8,20],[-22,6],[-14,43],[6,44],[-19,129],[-12,21],[-25,22],[-10,58],[-15,41],[-14,22],[-66,69],[-12,9],[-41,-6],[-9,11],[-13,79],[-9,16],[-69,40],[-38,18],[-103,58],[-28,27],[-13,51],[-75,86],[-16,7],[-60,-8],[-23,4],[-17,22],[-7,46],[-13,31],[-1,61],[-12,33],[-38,25],[-86,161],[-57,91],[-55,109],[-11,41],[-20,29],[-36,71],[-19,13],[-12,2],[-43,-8],[-18,6],[-7,18],[-22,72],[-18,35],[-20,1],[-29,-6],[-32,5],[-25,36],[-32,116],[0,17],[7,48],[-1,18],[-27,65],[-7,4],[-49,3],[-39,51],[-77,96],[-17,10],[-90,9],[-151,19],[-23,9],[-11,13],[-64,98],[-25,27],[-51,4],[-27,8],[-79,62],[-17,20],[-28,52],[-18,28],[-28,23],[-70,31],[-27,27],[-34,63],[-8,21],[-15,103],[-8,20],[-39,64],[-27,140],[-12,32],[-20,24],[-93,80],[-3,7],[-27,142],[-15,42],[-13,53],[-15,35],[1,21],[-10,52],[-16,42],[-58,118],[-17,44],[-19,39],[-53,189],[-31,38],[-42,43],[-13,24],[-14,78],[-11,22],[-48,41],[-48,45],[-32,27],[-16,8],[-40,8],[-15,10],[-50,48],[-13,-1],[-39,-24],[-8,-11],[-7,-31],[-10,-13],[-40,-16],[-21,6],[-21,29],[-13,10],[-20,28],[-15,5],[-8,42],[-9,18],[-21,13],[-27,44],[1,10]],[[247899,322227],[175,-1],[411,-2],[324,0],[185,0],[385,0],[19,-1],[226,0],[15,-2],[111,0],[90,3],[441,-1],[442,1],[245,2],[195,5],[281,4],[162,-1],[107,1],[366,-1],[410,1],[107,1],[335,0],[441,1],[78,2],[392,2],[327,-1],[120,-1],[490,2],[37,1],[314,1],[450,-2],[63,-2],[374,0],[446,-4],[442,-1],[23,2],[192,-1],[145,-5],[43,0],[141,-9],[114,-4],[225,-4],[115,-3],[344,-3],[210,-1],[214,1],[242,0],[313,-1],[413,-1],[357,2],[441,2],[181,1],[381,1],[321,2],[6,1],[331,-1],[284,0],[417,0],[262,0],[96,-1],[59,5],[144,3],[431,9],[178,3],[266,0],[222,1],[70,-1],[395,0],[212,1],[298,-1],[134,1],[38,-1],[131,1],[255,-2]],[[272619,316446],[2,-742],[0,-183],[2,-788],[1,-270],[1,-40],[0,-249],[1,-119],[1,-299],[-1,-224],[1,-202],[1,-273],[1,-1],[0,-256],[3,-578],[1,-230],[2,-500],[1,-157],[3,-702],[0,-106],[2,-628],[1,-95],[-1,-251],[1,-633],[1,-517],[-1,-221],[1,-62],[0,-325],[0,-287],[1,-113],[-1,-330],[2,-204],[-1,-366],[2,-571],[-1,-239],[1,-193],[-2,-415],[1,-329],[4,-635],[1,-176],[1,-275],[1,-103],[3,-479],[0,-685],[-1,-251],[0,-170],[0,-287],[1,-51],[-1,-217],[1,-203],[-1,-130],[0,-325],[-1,-411],[1,-22],[0,-519],[-1,-492],[0,-315]],[[272653,299002],[-294,2],[-293,2],[-200,4],[-71,-1],[-319,2],[-47,1],[-203,0],[-192,1],[-146,0],[-103,1],[-284,0],[-38,1],[-127,-1],[-191,19],[-222,8],[-213,-1],[-394,-6],[-54,9]],[[355813,280572],[-15,-4],[-28,-31],[-40,-26],[-37,-16],[-58,-11],[-25,2],[-28,-8],[-124,-50],[-38,-18],[-37,-25],[-52,-22],[-92,-54],[-57,-36],[-47,-34],[-30,-30],[-76,-70],[-43,-43],[-97,-89],[-41,-43],[-28,-40],[-38,-41],[-61,-76],[-48,-61],[-67,-106],[-26,-33],[-71,-105],[-15,-17],[-52,-77],[-81,-131],[-92,-162],[-73,-131],[-29,-66],[-24,-75],[-33,-74],[-41,-74],[-24,-17],[-64,-85],[-58,-84],[-54,-121],[-76,-203],[-58,-183],[-12,-75],[8,-80],[-1,-52],[-7,-28],[3,-33],[-4,-48],[-7,-57],[-22,-65],[-33,-61],[-7,-53],[-33,-157],[43,-47],[30,-50],[10,-28],[36,-59],[17,-46],[10,-48],[4,-60],[-6,-55],[-10,-45],[-33,-72],[-45,-61],[-41,-30],[-61,-18],[-26,-3],[-20,-44],[-54,-75],[-30,-17],[-18,-31],[-20,-19],[-15,-85],[-26,-63],[-37,-60],[-45,-43],[-48,-17],[-45,-1],[-50,-55],[-61,-29],[-9,-58],[-11,-47],[-29,-62],[-22,-38],[-21,-64],[2,-19],[-5,-59],[-7,-39],[-20,-60],[-19,-37],[-32,-42],[-54,-38],[-27,-9],[-58,-11],[-34,-2],[-28,7],[-47,18],[-18,-5],[-41,3],[-21,7],[-71,33],[-17,14],[-29,-58],[-39,-49],[-24,-21],[-24,-14],[-36,-12],[-45,-5],[-10,-45],[-20,-50],[-34,-63],[-9,-7],[-3,-34],[-19,-82],[-23,-46],[-19,-30],[-46,-44],[-47,-31],[-40,-19],[-46,-17],[-23,-63],[-27,-47],[-45,-51],[-29,-17],[-49,-22],[-12,1],[-32,-77],[-23,-26],[-9,-37],[-23,-53],[-25,-35],[-28,-24],[-12,-26],[-39,-54],[-90,-49],[-39,-3],[-11,-12],[-50,-23],[-51,-34],[-10,-82],[-13,-73],[-46,-116],[-66,-92],[-105,-63],[-30,-77],[-66,-88],[-56,-38],[-14,-16],[-45,-38],[-66,-50],[-42,-26],[-20,-39],[-21,-31],[-28,-31],[-33,-24],[-13,-33],[-26,-53],[-17,-24],[-57,-50],[-48,-20],[-46,-2],[-28,4],[-28,10],[-32,19],[-206,-64],[1,-35],[-5,-42],[-17,-69],[-33,-63],[-40,-50],[-21,-30],[-47,-20],[-23,-3],[-90,-24],[-41,1],[-35,10],[-37,19],[-43,-51],[-26,-19],[-29,-14],[-58,-54],[-1,-42],[-9,-63],[-14,-54],[-27,-57],[-22,-32],[-29,-26],[-38,-24],[-41,-14],[-14,-70],[-28,-54],[-28,-36],[-28,-27],[-52,-32],[-2,-19],[-17,-66],[-30,-59],[-24,-31],[-48,-42],[-14,-5],[13,-80],[0,-31],[-6,-57],[-7,-35],[-9,-22],[-7,-41],[-18,-44],[-28,-50],[-23,-31],[-33,-31],[-42,-29],[-40,-19],[-41,-8],[-57,13],[-27,-24],[-39,-27],[-56,-19],[-21,-23],[-28,-23],[-29,-17],[-16,-21],[-12,-6],[-15,-50],[-31,-50],[-27,-35],[-16,-112],[-20,-45],[-42,-69],[-49,-47],[-16,-9],[-46,-8],[-37,6],[-5,-15],[-25,-38],[-28,-27],[-43,-24],[-66,-14],[-32,4],[-15,-39],[-38,-62],[-50,-59],[-40,-57],[-36,-33],[-58,-32],[-58,-55],[18,-72],[5,-44],[0,-44],[-4,-42],[-17,-62],[-13,-32]],[[272653,299002],[430,3],[180,1],[577,5],[367,3],[402,4],[461,3],[373,4],[132,0],[346,4],[18,1],[480,2],[253,2],[288,2],[30,1],[173,1],[109,-1],[211,5],[394,3],[222,3],[5,-1],[436,3],[241,3],[203,0],[501,3],[331,-3],[75,-1],[416,0],[355,-5],[190,-2],[318,-3],[257,0],[1,-2],[114,1],[146,0],[45,-2],[228,1],[74,3],[396,-3],[327,0],[268,-1],[197,-1],[71,2],[185,0],[470,-1],[166,-1],[1,1],[254,-2],[256,-1],[377,-1],[83,1],[126,-2],[153,-1],[240,0],[27,-2],[238,-2],[166,0],[51,2],[264,0],[59,1],[138,-1],[86,1],[318,2],[457,1],[480,0],[325,2],[148,-3],[108,1],[250,0],[415,1],[236,0],[266,0],[158,1],[528,-1],[127,1],[244,0],[366,1],[127,-2],[1,2],[157,-1],[49,1],[396,-1],[439,-2],[172,2],[468,1],[72,1],[348,-2],[54,2],[154,-2],[100,1],[396,-2],[2,1],[163,0],[120,2],[88,-1],[309,0],[74,0],[390,0],[161,1],[190,-1],[219,0],[148,1],[53,-1],[424,1],[611,1],[458,0],[261,-1],[266,-3],[472,-2],[216,2],[36,-1],[177,0],[46,1]],[[298877,299036],[-1,-162],[2,-208],[-1,-220],[-2,-99],[1,-33],[0,-336],[1,-205],[-1,-179],[0,-71],[1,-484],[1,-242],[0,-24],[0,-632]],[[298878,296141],[14,-134],[4,-44],[22,-240],[16,-145],[30,-327],[46,-468],[10,-86],[39,-382],[34,-313],[4,-40],[28,-261],[44,-422],[46,-428],[17,-172],[25,-229],[22,-217],[16,-163],[23,-218],[31,-304],[38,-359],[38,-376],[3,-34],[41,-415],[2,-25],[35,-330],[6,-41],[18,-168],[9,-73],[-17,-37],[8,-46],[6,-50],[-3,-35],[-9,-413],[-6,-245],[-4,-62],[1,-49],[-5,-262],[-7,-333],[-1,-28],[-4,-206],[-15,-688],[-10,-427],[-6,-375],[-7,-337],[-15,-729],[-10,-565],[-9,-599],[-10,-475],[-2,-81],[-2,-186],[-4,-213],[-2,-164],[-3,-107],[-10,-633],[-2,-91],[-1,-124],[-4,-166],[-3,-203],[-8,-388],[-1,-106],[-4,-213],[-3,-122],[-2,-183],[-4,-179],[-12,-759],[-3,-142],[-2,-148]],[[337530,296729],[105,-5],[83,-11],[230,-4],[202,-1],[441,1],[348,5],[54,-25],[302,0],[179,1],[561,-2],[276,-2],[188,2],[248,0],[94,-1],[407,1],[479,12],[73,-8],[136,3],[210,0],[197,4],[209,0],[139,1],[143,-7],[255,1],[179,-2],[183,0],[229,-1],[41,127],[169,-5],[106,-3],[64,-3],[199,-8],[118,-3],[318,-3],[-108,-137]],[[321547,287427],[-205,-1],[-87,1],[-317,-1],[-323,3],[-107,-1],[-381,-1],[-64,-1],[-204,-1],[-230,-1],[-24,1],[-383,-1],[-130,4],[-106,-6],[-277,1],[-184,-1],[-245,-1],[-112,-4],[-214,5],[-292,-2],[-186,-3],[-199,0],[-92,-1],[-182,1],[-110,5],[-354,2],[-154,1],[-96,-1],[-105,1],[-21,-3],[-544,-3],[-144,3],[-250,2],[-124,-2],[-178,1],[-184,-2],[-140,2],[-249,3],[-187,0],[-66,1]],[[314097,287427],[-4,50],[2,32],[10,49],[22,61],[12,53],[19,22],[94,-8],[11,-23],[42,-17],[42,-5],[48,-15],[31,-23],[24,3],[32,36],[16,29],[-4,37],[-1,54],[5,39],[51,181],[16,120],[11,34],[29,42],[33,33],[40,23],[20,-5],[24,-22],[81,-66],[31,-13],[35,10],[26,19],[59,83],[7,27],[-6,61],[-8,12],[-55,15],[-28,3],[-43,74],[-14,33],[-4,24],[-17,16],[-11,36],[3,56],[26,9],[41,-25],[31,102],[31,-27],[20,16],[-2,56],[-16,50],[-24,40],[-17,38],[-30,53],[-20,17],[-40,8],[-55,-15],[-29,-5],[-42,22],[-24,38],[-27,69],[-8,26],[-1,32],[19,67],[17,26],[34,16],[27,-22],[22,0],[48,29],[16,-7],[29,10],[8,113],[11,45],[-23,61],[10,2],[49,100],[11,2],[23,46],[32,89],[-18,7],[-28,32],[-31,26],[-36,46],[-15,35],[-12,11],[-50,15],[-23,-5],[-26,-30],[-13,-48],[1,-25],[9,-44],[28,-63],[-33,-12],[-70,0],[-27,18],[-22,25],[-3,18],[31,147],[0,48],[6,20],[139,114],[20,100],[17,53],[16,24],[25,26],[20,-1],[11,10],[53,-1],[34,-33],[21,-34],[3,-34],[-15,-61],[-9,-62],[0,-33],[12,-62],[30,-47],[-26,-41],[54,-109],[34,22],[2,21],[-45,42],[36,52],[8,37],[13,21],[32,27],[2,32],[16,41],[-1,44],[16,56],[5,36],[6,8],[-4,30],[-48,53],[-34,75],[-18,69],[-7,68],[3,30],[12,49],[13,37],[11,73],[15,23],[38,22],[24,-2],[34,24],[31,6],[35,-6],[35,-26],[56,-59],[23,-33],[5,-36],[-7,-37],[23,-31],[22,-14],[32,-3],[45,-26],[18,-1],[25,23],[12,28],[13,65],[-13,19],[-17,6],[18,29],[-11,30],[-65,16],[-40,25],[-20,33],[-32,91],[-11,48],[11,45],[25,40],[60,48],[40,22],[28,30],[51,-15],[14,7],[58,62],[45,24],[26,21],[14,39],[5,36],[1,44],[-9,46],[-16,31],[-11,10],[-20,1],[-40,-29],[-19,-50],[-12,-17],[-43,-16],[-25,2],[-33,9],[-26,15],[-23,21],[-33,50],[-14,44],[-27,42],[-19,47],[-4,122],[-7,71],[0,22],[9,33],[21,30],[89,67],[34,28],[19,26],[11,2],[66,-56],[17,-30],[22,-21],[3,-19],[44,56],[22,14],[34,30],[40,-2],[56,11],[23,18],[18,26],[16,41],[20,23],[7,42],[-8,34],[11,25],[50,69],[59,27],[25,6],[37,-20],[22,-8],[25,2],[33,16],[53,42],[21,21],[9,27],[1,39],[-10,27],[-18,19],[-71,50],[-57,24],[-56,32],[-20,15],[-14,18],[-8,26],[2,51],[14,60],[11,27],[38,46],[44,43],[23,3],[52,-8],[22,3],[95,-54],[39,-65],[39,-17],[39,36],[24,28],[14,6],[-8,29],[6,26],[-19,78],[-21,46],[-53,58],[-19,28],[-37,41],[-28,22],[-64,59],[-20,38],[-4,37],[4,60],[-44,69],[-7,22]],[[316132,293251],[93,2],[4,23],[18,39],[29,51],[18,79],[10,102],[9,119],[7,59],[26,54],[21,23],[31,20],[52,26],[52,19],[47,40],[47,33],[25,39],[6,20],[5,72],[-2,46],[-5,23],[-16,40],[-31,59],[-40,51],[-20,19],[-46,33],[-63,73],[-33,29],[-55,55],[-46,52],[-25,34],[-19,33],[-1,20],[24,61],[12,13],[32,-19],[29,-7],[94,14],[51,-15],[44,-28],[47,-23],[31,-7],[53,8],[47,25],[35,39],[22,3],[43,-20],[26,10],[13,20],[1,52],[-7,64],[-11,27],[-15,16],[-40,-13],[-83,60],[-20,29],[-55,54],[-42,37],[-30,81],[1,38],[14,38],[19,25],[35,15],[67,-4],[75,-26],[55,-6],[24,4],[22,10],[32,32],[13,22],[21,66],[12,80],[-2,27],[-13,38],[-40,90],[-60,114],[-10,40],[0,46],[6,22],[20,30],[37,44],[14,29],[13,61],[1,48],[-4,19],[-19,32],[-30,42],[-17,38]],[[316817,296133],[190,-3]],[[317007,296130],[-23,-83],[-8,-40],[8,-48],[20,-34],[34,-21],[43,-4],[39,23],[16,18],[41,58],[35,60],[36,80]],[[317248,296139],[92,1],[318,47],[180,-6],[243,-6],[62,-4],[343,-8],[184,-2],[194,-4],[334,2],[31,1],[300,1],[295,-1],[189,-3],[327,0],[175,-5],[183,0],[212,-4],[341,-1],[142,-3],[96,0],[118,-2],[143,-5],[274,-6],[42,-3],[37,53],[10,19],[9,39],[1,45],[9,27],[7,48],[-7,118],[-4,27],[-17,86],[-3,48],[-12,104],[-13,61],[-25,97],[-1,35],[-10,42],[-25,57],[-10,49],[-7,95],[97,-1],[109,-5],[301,-48],[83,-11],[190,-19],[-13,-177],[133,7],[585,21],[88,1],[258,4],[274,9],[345,5],[145,2],[303,0],[424,3],[210,3],[249,9],[65,0],[197,8],[88,5],[173,3],[138,4],[175,7],[103,0],[147,5],[235,11],[128,4],[84,-102],[10,-5],[42,24],[5,39],[23,-5],[-1,-20],[127,69],[340,-9],[187,-6],[93,-6],[138,-20],[201,-20],[250,-24],[326,-24],[142,-16],[200,-13],[355,-27],[153,-11],[127,1],[200,-10],[26,0],[74,-6],[124,-7],[36,0],[74,-4],[271,-8],[237,-8],[46,4],[209,21],[62,3],[273,20],[35,8],[86,0],[23,11],[60,3],[357,-11],[235,-12],[291,-21],[124,-13],[196,-31],[217,-23],[158,-18],[283,-12],[228,-7],[214,-10],[298,-19],[167,2],[157,-3],[149,-4],[477,-22],[154,2],[335,-4],[109,0],[102,-4],[259,-4],[445,-23],[294,-11],[92,-3],[261,-5],[28,54],[12,13],[15,38]],[[240838,342356],[-1,77],[-8,308],[-13,489],[-1,582],[-3,143],[-1,676],[4,384],[-2,65],[3,332],[193,1],[441,3],[34,2],[287,3],[83,-17],[38,-12],[161,-32],[156,0],[124,-2],[278,2],[209,0],[301,8],[142,39],[72,-8],[63,0],[126,-13],[46,-2],[192,-2],[77,0],[160,23],[101,12],[55,10],[92,-2],[141,0],[148,-1],[2,-2],[445,1],[18,-2],[423,-8],[131,3],[177,3],[315,0],[142,4],[226,4],[98,2],[199,3],[37,-1],[376,4],[65,1],[254,1],[188,0],[79,1],[78,-37],[265,1],[331,2],[251,0],[171,1],[175,0],[157,1],[259,0],[211,1],[125,-3],[111,-1],[436,1],[369,1],[78,-4],[71,6],[282,3],[83,0],[442,1],[12,2],[204,-2],[158,1],[68,-2],[441,-1],[442,-1],[63,1],[378,2],[2,2],[440,-2],[88,1],[240,-1],[161,-3],[364,-3],[30,-5],[70,-3],[74,-13],[56,2],[48,-3],[211,0],[408,-3],[457,-1],[442,-4],[593,-3],[135,-1],[299,-1],[297,-3],[442,0],[404,0],[38,-1],[256,1],[52,42],[133,0],[98,-3],[458,0],[373,0],[396,0],[349,-1],[534,0],[78,1],[364,0],[9,1],[157,-1],[212,1],[134,-3],[371,0],[289,-3],[74,-2],[201,2],[179,-5],[22,2],[304,-2],[363,-1],[365,-2],[411,-1],[79,1],[374,-1],[228,-3]],[[265534,345389],[4,-487],[2,-222],[-2,-47],[2,-573],[0,-392],[0,-83],[1,-354],[-1,-194],[0,-260],[0,-170],[1,-710],[0,-198],[1,-641],[3,-404],[-1,-704],[0,-341],[-1,-376],[-2,-473],[2,-655],[0,-312],[1,-601],[-1,-94],[1,-194],[0,-677],[1,-503],[2,-190],[0,-300],[2,-697],[0,-50],[0,-485],[1,-185]],[[81635,198943],[2,54],[5,47],[11,58],[15,58],[5,28],[7,122],[6,39],[9,32],[26,71],[34,63],[23,31],[49,46],[43,25],[30,64],[20,36],[42,83],[9,0],[18,42],[26,43],[35,34],[15,8],[43,33],[50,25],[33,13],[30,119],[13,71],[41,113],[51,99],[19,31],[39,47],[16,46],[35,61],[22,25],[10,20],[-38,101],[-28,58],[-29,56],[-24,52],[-18,49],[-15,24],[-17,38],[-9,38],[-13,88],[-19,45],[-14,70],[-13,107],[-22,140],[-7,95],[-4,79],[7,69],[-2,43],[1,57],[5,47],[15,70],[9,17],[3,35],[8,32],[24,70],[52,105],[31,46],[38,37],[51,37],[31,16],[80,29],[33,7],[52,-1],[26,-8],[52,-24],[10,-14],[38,-10],[29,-14],[45,-33],[19,-28],[38,-4],[45,-20],[16,-19],[23,-13],[48,-51],[31,-59],[19,-12],[37,-37],[14,-21],[27,-58],[6,-18],[39,-21],[50,-66],[17,-26],[25,-8],[70,-56],[33,-34],[24,-28],[25,-35],[8,-21],[30,-18],[19,-20],[49,-42],[28,16],[32,4],[74,-19],[69,-37],[45,-32],[36,-12],[43,-11],[49,-24],[33,-30],[44,-13],[43,-23],[24,-27],[25,-6],[36,-21],[7,-10],[52,-29],[45,-45],[22,-13],[31,-40],[52,-31],[23,-18],[47,-48],[64,-39],[25,-21],[17,-20],[24,-22],[40,-25],[38,-30],[52,-27],[32,-23],[14,-20],[26,-20],[45,-49],[22,-27],[37,-29],[27,-34],[13,-27],[24,-15],[40,-43],[32,-45],[16,-13],[27,-46],[13,-14],[40,-28],[20,-19],[23,-43],[25,-26],[18,-38],[29,-37],[26,-39],[52,-65],[19,-28],[15,-37],[20,-40],[19,-59],[28,-32],[26,-36],[31,-52],[17,-48],[36,-83],[-10,0],[11,-52],[3,-49],[1,-105],[-16,-101],[4,-68],[1,-98],[28,-19],[42,5],[67,-12],[31,-20],[28,-24],[50,-70],[40,-72],[35,-99],[38,-141],[13,-63],[7,-75],[-10,-104],[31,-26],[31,-41],[29,-57],[22,-55],[7,-38],[10,-10],[28,-55],[10,-29],[23,-22],[45,-33],[61,-49],[18,-2],[42,-30],[20,-19],[26,-36],[12,-26],[49,-40],[19,-23],[16,-28],[33,-40],[48,-87],[19,-49],[12,-91],[-2,-80],[-5,-40],[-7,0],[-28,-138],[-28,-111],[-19,-55],[-18,-42],[-26,-45],[-59,-96],[-63,-88],[-70,-91],[-95,-98],[-50,-45],[-24,-47],[-44,-60],[-67,-87],[-16,-41],[-28,-41],[-36,-33],[-44,-30],[-63,-46],[-61,-55],[-28,-11],[-45,-28],[-50,-37],[-29,-14],[-31,-10],[-43,-51],[-21,-18],[-19,-8],[-23,0],[-14,-23],[15,-6],[-94,-85],[-25,-13],[-26,-21],[-34,-12],[-40,-25],[-31,-14],[-41,-8],[-31,-30],[-42,-18],[-51,-2],[-60,15],[-41,0],[-18,3],[-43,21],[-55,33],[-25,-14],[-12,-1],[-17,-33],[-47,-47],[-40,-36],[-13,-40],[-40,-59],[-26,-44],[-37,-36],[-41,-42],[-52,-31],[-56,-22],[-20,-20],[-46,-25],[-23,-54],[-13,-24],[-17,-37],[-43,-60],[-36,-41],[-36,-25],[-95,-43],[-41,-65],[-23,-21],[-38,-52],[-13,-45],[-10,-17],[0,-24],[-7,-60],[-35,-151],[-5,-28],[-14,-43],[-26,-47],[-40,-63],[-16,-45],[-12,-113],[-22,-58],[-21,-49],[-29,-52],[-64,-72],[-27,-54],[-87,-130],[-52,-61],[-29,-27],[-10,0],[-26,-26],[-49,-26],[-54,-4],[-56,8],[-42,20],[-27,28],[-32,43],[-27,67],[-34,132],[-35,34],[-19,4],[-93,58],[-94,112],[-71,80],[-79,16],[-50,26],[-36,15],[0,10],[-25,15],[-109,100],[-30,34],[-16,25],[-28,78],[-23,84],[-48,102],[-13,53],[-20,112],[-32,111],[-6,38],[0,62],[3,37],[-5,30],[3,72],[12,97],[9,120],[13,122],[27,173],[0,92],[-2,30],[3,46],[12,76],[23,101],[5,36],[3,64],[0,127],[6,58],[-3,27],[-39,131],[-11,47],[-14,36],[-8,31],[-7,82],[-21,103],[-4,56],[-7,45],[-12,58],[-18,28],[-25,30],[-31,60],[-31,131],[-18,65],[4,2],[-9,59],[-9,128],[-9,38],[-6,62],[-6,79],[-10,68],[-16,71],[-20,60],[-11,18],[-15,5],[-49,37],[-22,21],[-42,53],[-12,23],[-15,44],[-17,78],[-4,89],[-7,13],[-25,68],[-24,113],[-17,32],[-20,60],[-14,49],[-3,46]],[[80062,204806],[-43,25],[-33,40],[-135,0],[0,75],[-16,1],[-37,11],[-42,41],[-28,36],[-34,61],[-11,34],[-43,54],[-50,91],[-81,131],[-24,54],[-31,94],[-7,41],[6,0],[-6,80],[-13,29],[-24,66],[-7,49],[-2,61],[3,76],[-1,65],[7,49],[0,22],[24,89],[11,57],[17,115],[24,67],[19,30],[21,56],[30,64],[62,59],[14,41],[59,94],[51,30],[46,8],[33,0],[30,18],[0,9],[24,15],[44,12],[52,-1],[59,-23],[52,-35],[59,-79],[49,-50],[57,-53],[46,-58],[32,-32],[27,-40],[28,-54],[15,-60],[10,-52],[-7,0],[9,-69],[15,-49],[43,-63],[84,27],[80,5],[30,39],[66,51],[9,-3],[36,26],[36,0],[14,22],[41,39],[66,11],[92,-30],[42,9],[29,10],[20,-3],[42,-22],[24,-26],[44,-33],[33,-11],[49,-28],[67,-67],[44,-62],[9,-21],[30,-46],[35,-37],[90,-147],[31,-8],[58,-45],[54,-57],[35,-58],[15,-45],[19,0],[27,-14],[22,-19],[45,-26],[34,-28],[28,-34],[23,-2],[47,-20],[21,-18],[23,-5],[0,133],[145,0],[28,-76],[24,-76],[18,-71],[17,-97],[16,-106],[10,-115],[0,-85],[-8,-52],[6,-46],[2,-66],[-4,-81],[-17,-70],[-25,-71],[-21,-95],[-13,-41],[-23,-55],[-19,-40],[-29,-49],[-30,-42],[-47,-60],[-15,-30],[-15,-19],[0,34],[-18,-40],[-3,-23],[-37,-50],[-48,-48],[-46,-28],[-40,-12],[-41,2],[-26,5],[-34,-19],[-16,-26],[-52,-44],[-81,-56],[-36,-20],[-30,-1],[-53,17],[-15,-5],[-50,4],[-48,17],[-17,10],[-51,-41],[-67,-59],[-74,-56],[0,22],[-51,-44],[-52,-37],[-40,-18],[-46,-5],[-73,1],[-11,-5],[-50,-14],[-34,8],[-42,-20],[-43,-11],[0,14],[-76,12],[-85,18],[-59,42],[-57,68],[-23,12],[-87,124],[-13,-119],[21,-60],[6,-41],[4,-67],[-12,-86],[-23,-85],[-22,-34],[-58,-112],[-31,-34],[-45,-35],[-44,-12],[-41,3],[-22,8],[-34,-21],[-37,-6],[-43,7],[-18,10],[-48,-11],[-17,7],[-19,-6],[-112,-12],[-57,3],[-114,-21],[-98,-7],[-60,8],[0,265],[20,0],[-20,39],[-19,78],[-3,38],[1,49],[6,52],[40,150],[32,68],[44,59],[59,73],[48,40],[59,22],[44,42],[24,14],[34,49],[72,68],[53,33],[43,41],[80,8],[71,-9],[19,2],[33,77],[31,45],[41,35],[39,23],[47,14],[-15,44],[-42,210],[-36,-17],[-88,0],[-65,37]],[[73872,209444],[-39,40],[-22,46],[-25,59],[-7,32],[-2,78],[9,46],[25,78],[38,64],[16,10],[27,26],[36,0],[43,20],[41,15],[37,1],[72,18],[60,-2],[54,13],[54,8],[45,-11],[42,-3],[30,23],[62,35],[35,65],[38,53],[21,19],[12,-29],[15,38],[15,69],[25,75],[28,63],[24,38],[34,38],[25,18],[15,32],[37,63],[25,25],[52,19],[16,0],[80,70],[39,37],[19,8],[48,0],[82,-25],[47,-24],[49,-50],[21,-26],[45,-78],[31,-28],[22,-48],[10,-16],[35,-40],[18,-52],[14,-60],[24,-63],[19,-55],[21,-88],[36,-165],[24,-47],[19,-14],[47,-46],[31,-35],[27,-42],[12,-28],[18,-77],[1,-22],[11,-39],[14,-34],[19,-64],[17,-28],[89,-135],[13,-6],[22,12],[47,14],[55,6],[34,-13],[35,-30],[32,-33],[20,-34],[17,-11],[43,-19],[18,-27],[19,-40],[27,-75],[7,-55],[-16,-81],[-24,-56],[34,-74],[14,-49],[14,-78],[8,-67],[0,-16],[11,-28],[3,-50],[22,-23],[7,-29],[42,-85],[21,-66],[13,-90],[5,-89],[-3,-90],[-10,-71],[-24,-80],[-30,-50],[-21,-30],[-42,-49],[-42,-36],[-8,-26],[-19,-41],[-41,-53],[-38,-36],[-48,-26],[-67,-6],[-40,7],[-39,18],[-32,25],[-19,28],[-29,-13],[-16,-22],[-47,-45],[-69,-36],[-68,-14],[-67,10],[-77,47],[-29,24],[-23,36],[-24,51],[-5,3],[-27,61],[-16,23],[-31,21],[-14,18],[-23,-11],[-43,-3],[-50,5],[-18,9],[-19,18],[-40,9],[-36,18],[-17,-20],[-21,-13],[-48,-14],[-14,3],[-45,-5],[-31,0],[-43,-5],[-25,-23],[-23,-7],[-73,-11],[-45,3],[-67,-23],[-66,-5],[-43,9],[-44,22],[-51,54],[-36,68],[-17,52],[-67,426],[-20,44],[-15,5],[-47,27],[-40,32],[-16,21],[-23,43],[-24,80],[-16,128],[-20,17],[-5,27],[-37,37],[-21,44],[-17,52],[-28,42],[-34,92],[-15,63],[-5,77],[5,44],[-39,0],[9,161],[-67,84]],[[69683,211149],[-52,10],[-16,-8],[-24,-2],[-54,13],[-39,20],[-113,37],[-41,-10],[-45,-5],[-44,6],[-23,16],[-38,38],[-55,63],[-50,63],[-27,32],[-30,61],[-34,27],[-50,69],[-24,3],[-61,24],[-50,41],[-43,48],[-47,17],[-64,54],[-53,76],[-40,100],[-49,111],[-17,62],[-18,0],[-15,49],[-8,46],[-3,62],[1,78],[13,71],[-4,40],[0,94],[37,106],[58,91],[58,87],[13,0],[12,35],[13,21],[7,98],[12,49],[40,85],[16,37],[33,50],[48,46],[0,10],[79,45],[69,35],[109,81],[49,66],[35,35],[47,31],[53,77],[43,52],[58,34],[48,11],[28,17],[97,1],[49,-34],[32,-10],[32,13],[31,28],[80,19],[96,-11],[61,-12],[24,-22],[38,39],[34,23],[34,10],[46,-17],[35,-25],[86,-79],[75,-18],[47,-44],[43,-52],[62,-95],[42,-77],[49,-95],[42,-135],[13,-28],[15,-52],[11,-176],[3,-66],[-3,-76],[-16,-101],[-10,-41],[0,-19],[-32,-65],[-20,-103],[-20,-81],[-22,-67],[-25,-64],[10,-57],[3,-44],[-2,-68],[-4,-44],[9,-96],[-3,-52],[-16,-90],[-29,-70],[-37,-70],[-17,-46],[-43,-60],[-38,-39],[-31,-30],[-9,-36],[-25,-43],[-30,-41],[-47,-39],[-14,-26],[-102,-113],[-102,-82],[-39,-17],[-35,0],[-31,10],[-109,56],[-36,24]],[[77233,206995],[10,49],[-8,0],[30,81],[26,105],[39,104],[35,74],[26,43],[21,26],[14,25],[-11,94],[1,59],[4,43],[10,38],[18,49],[14,25],[32,49],[39,40],[32,23],[43,11],[35,2],[22,6],[45,-24],[39,16],[21,1],[52,-12],[55,-29],[43,-36],[45,-43],[84,-16],[36,3],[0,9],[55,-27],[66,-2],[33,-13],[32,-19],[25,1],[28,-16],[21,4],[60,5],[15,-10],[13,35],[27,48],[34,45],[67,44],[40,6],[27,-2],[67,-29],[54,-40],[34,-34],[22,-38],[34,-95],[4,-23],[28,16],[30,9],[28,2],[41,-7],[54,-35],[20,-25],[45,3],[101,47],[38,15],[23,1],[39,-15],[45,8],[38,-10],[37,-17],[66,-3],[32,-10],[56,-51],[70,-39],[38,-47],[29,-53],[28,-65],[12,-65],[0,-40],[19,-109],[1,-62],[-8,-54],[-7,0],[-10,-59],[-25,-61],[-28,-50],[-36,-27],[-40,-19],[-18,-41],[-31,-49],[-64,-67],[-34,-28],[-50,-70],[0,19],[-22,-25],[-20,-11],[-54,-65],[-29,-29],[-30,-13],[-28,-2],[-56,-60],[-44,-55],[-25,-13],[-134,0],[0,-36],[-24,-2],[-62,7],[-15,14],[-39,3],[-18,14],[-21,9],[-34,31],[-35,15],[-37,7],[-26,13],[-38,52],[-14,2],[-94,52],[-22,25],[-49,19],[-50,-1],[-41,24],[-34,33],[-43,53],[-39,5],[-69,-3],[-28,-8],[-51,-23],[0,-14],[-16,-9],[-55,-2],[-39,3],[-39,-4],[-35,-9],[-46,1],[-92,-6],[-54,-15],[-86,13],[-43,-3],[-38,7],[-38,1],[-112,26],[-47,46],[-52,79],[-33,66],[-19,51],[-9,49],[1,91]],[[11273,245485],[-11,117],[-2,101],[24,65],[41,84],[50,50],[38,29],[0,-27],[33,11],[57,-13],[126,-67],[23,-25],[28,-4],[12,45],[-16,11],[-49,24],[-58,32],[-79,87],[-38,80],[-6,76],[-11,0],[6,84],[16,64],[22,74],[53,97],[56,36],[52,25],[95,103],[120,102],[0,-15],[183,155],[58,41],[24,6],[48,3],[59,-7],[69,-26],[35,-17],[18,0],[108,-100],[81,-140],[40,-99],[19,-157],[3,-118],[-6,-111],[-3,0],[-36,-163],[-175,-561],[-28,-65],[-42,-35],[-14,3],[-103,-44],[-84,-13],[-51,-3],[-98,32],[-70,-81],[-35,-25],[-72,-63],[-156,-64],[-106,30],[-108,92],[0,39],[-19,25],[-69,103],[-15,26],[-37,91]],[[78134,205595],[-22,97],[8,138],[14,91],[39,100],[40,57],[85,70],[54,50],[50,25],[62,-2],[33,1],[65,11],[48,-6],[41,-17],[23,3],[47,-5],[60,-13],[22,2],[30,-5],[29,-12],[23,-16],[58,-25],[48,-26],[74,-76],[86,-119],[67,-138],[47,-69],[55,-116],[14,-36],[49,-104],[27,-140],[0,-111],[-68,-213],[-47,-120],[-46,-86],[-76,-89],[-51,-27],[-49,-21],[-59,-75],[-46,-45],[-45,-12],[-42,6],[-39,20],[-29,-8],[-33,-4],[-27,6],[-26,-15],[-69,-24],[-39,7],[-43,21],[-30,19],[-20,19],[-30,53],[-45,95],[-21,36],[-29,90],[-9,34],[-8,69],[-17,49],[-9,114],[3,75],[10,40],[-14,61],[-96,40],[-37,54],[-34,61],[-27,75],[-26,54],[-3,32]],[[66855,211194],[-3,28],[3,45],[7,45],[19,55],[-1,23],[24,82],[16,113],[21,70],[26,47],[28,41],[56,41],[21,5],[30,58],[41,62],[82,97],[36,33],[54,26],[4,38],[25,128],[13,25],[9,98],[29,111],[39,74],[58,48],[40,8],[43,-2],[89,-32],[41,-25],[24,-25],[42,-78],[10,-31],[17,-25],[36,-37],[31,-52],[23,-59],[26,-75],[11,-60],[15,-23],[5,-60],[-7,-36],[-8,-27],[0,-18],[-22,-67],[-28,-59],[-26,-37],[-22,-51],[18,-114],[-1,-87],[-7,-67],[-22,-91],[-22,-40],[-32,-47],[-46,-50],[-119,-91],[-102,-29],[-58,-120],[-13,-30],[-7,-67],[-12,-30],[-4,-42],[-12,-70],[-29,-75],[-36,-61],[-25,-23],[-31,-20],[-78,-22],[-35,3],[-38,21],[-35,17],[-39,30],[-32,13],[-24,20],[-19,34],[-25,33],[-29,75],[-25,53],[-18,61],[-10,80],[-9,89],[-2,76],[1,49]],[[45383,222718],[-5,13],[-7,84],[8,111],[13,107],[19,8],[33,51],[51,50],[75,31],[19,56],[62,41],[66,23],[2,-28],[82,26],[52,2],[0,20],[60,-22],[101,-66],[78,-86],[42,-81],[16,-77],[-9,0],[10,-59],[3,-80],[-18,-79],[18,-12],[40,-95],[19,-194],[19,-7],[47,-82],[15,-23],[0,39],[23,-36],[6,-29],[1,-43],[35,-68],[7,-79],[-4,-89],[-27,-95],[-41,-64],[0,23],[-28,-31],[28,-62],[0,-19],[26,-36],[14,-71],[2,-89],[-14,-69],[23,0],[-7,-49],[-15,-31],[-29,-24],[-92,-96],[-74,-20],[-79,14],[-59,60],[-46,87],[-16,59],[14,0],[-14,39],[-13,57],[9,74],[21,105],[42,76],[23,35],[-33,29],[-28,48],[-14,130],[-17,-22],[-34,-23],[-31,-8],[0,-25],[-55,-4],[-72,28],[-59,61],[-47,67],[-13,57],[10,0],[-12,49],[-13,73],[17,116],[19,74],[-31,-28],[-51,4],[-69,36],[-45,56],[-21,35],[-13,12],[-15,35]],[[2818,249191],[-25,43],[-11,80],[18,145],[38,128],[56,102],[57,94],[33,0],[40,46],[0,13],[51,21],[71,20],[89,-5],[39,-18],[45,-35],[37,-42],[-28,0],[63,-66],[50,-70],[24,-48],[41,-70],[22,-167],[6,-172],[-7,-81],[-16,-50],[14,0],[-20,-76],[-40,-85],[-71,-66],[-66,-41],[-44,-3],[-143,32],[-117,22],[0,-13],[-73,38],[-56,109],[-15,83],[0,29],[-62,103]],[[18245,235524],[-6,75],[1,42],[20,130],[9,70],[15,79],[18,51],[41,49],[25,23],[43,29],[28,15],[67,0],[37,-20],[42,13],[41,2],[27,-15],[50,-47],[25,-28],[37,-61],[18,-60],[18,-101],[16,-88],[2,-39],[-35,-139],[-45,-95],[-59,-52],[-78,-23],[-43,-39],[-12,0],[-15,-13],[-54,-28],[0,-15],[-23,0],[-73,17],[-37,39],[-20,0],[-10,14],[-46,106],[-24,109]],[[26224,233946],[-9,82],[11,70],[22,72],[47,96],[66,65],[64,25],[0,-26],[66,7],[73,-8],[79,-55],[41,-75],[26,-98],[5,-74],[-34,-180],[13,0],[-23,-77],[-23,-52],[-46,-64],[-65,-42],[-67,-17],[-45,15],[-71,52],[-45,59],[-50,71],[-35,154]],[[60916,218148],[-6,91],[-1,76],[18,124],[60,79],[74,40],[89,12],[112,-21],[45,-50],[0,-24],[16,-13],[26,-59],[11,-55],[6,-86],[-3,-47],[-6,-48],[-9,-45],[-11,-22],[-8,-30],[-22,-44],[-68,-62],[-133,-23],[-83,22],[-73,95],[-34,90]],[[51099,221192],[0,89],[13,68],[11,32],[15,26],[13,10],[35,53],[55,39],[52,13],[74,1],[22,-4],[49,-36],[52,-55],[34,-73],[16,-107],[-19,-142],[-31,-95],[-35,-47],[-33,-34],[-42,-23],[-57,-1],[-76,27],[-58,49],[-38,35],[0,28],[-26,53],[-18,48],[-8,46]],[[65819,210031],[-10,51],[-2,52],[4,55],[14,58],[14,47],[29,56],[19,27],[55,51],[44,18],[38,5],[27,-5],[81,-51],[31,-36],[21,-38],[14,-35],[19,-71],[6,-41],[2,-92],[-1,-52],[-7,-46],[-40,-78],[-14,-10],[-36,-41],[-35,-30],[-37,-22],[-55,-4],[-44,13],[-42,23],[-37,49],[-34,57],[-24,90]],[[39494,229352],[-29,78],[2,85],[6,46],[20,89],[14,31],[39,51],[30,28],[39,22],[22,7],[34,2],[0,12],[39,-19],[58,-45],[38,-46],[33,-56],[16,-82],[6,-55],[6,0],[1,-59],[-10,-49],[-6,-45],[-17,-53],[-17,-18],[-29,-37],[-59,-33],[-59,-7],[0,15],[-83,22],[-50,31],[-44,85]],[[30189,232411],[0,38],[5,56],[20,76],[28,57],[21,28],[35,33],[37,20],[25,8],[38,1],[25,-5],[46,-22],[39,-37],[20,-27],[23,-44],[20,-62],[7,-39],[4,-65],[-7,-72],[-10,-44],[-22,-54],[-26,-41],[-16,-19],[-34,-30],[-39,-19],[-46,-7],[-43,9],[-27,12],[-44,38],[-29,39],[-13,26],[-20,49],[-13,58],[-4,39]],[[265577,350882],[-5,318],[4,717],[2,7],[-1,589],[-1,310],[1,502],[-2,103],[2,213],[1,456],[0,57],[0,666],[-2,671],[0,321],[-1,247],[2,132],[-2,76],[1,609],[3,332],[-1,173],[1,338],[-2,526],[1,322],[-1,341],[2,259],[-1,210],[3,280],[-1,131],[1,104],[1,598],[1,128],[2,723],[3,407],[3,248],[-3,161],[-5,453],[-2,194],[-3,630],[-1,485],[-2,315],[1,258],[-2,95],[0,365],[-1,8],[-4,693],[-1,34],[1,105],[-1,568],[0,64],[1,267],[-2,193],[-1,354],[-1,407],[0,188],[1,180],[-2,242],[1,329]],[[265565,368584],[128,-2],[152,0],[401,0],[174,-1],[201,1],[439,-1],[179,-1],[265,1],[46,-2],[386,0],[78,3],[372,-1],[558,0],[393,-1],[461,1],[353,-1],[335,0],[488,-1],[502,-1],[441,0],[119,-2],[236,2],[531,1],[439,1],[442,0],[441,0],[442,3],[154,-2],[325,1],[404,-1],[89,1],[352,-3],[3,2],[150,-1],[77,1],[153,-1],[59,1],[330,1],[234,-1],[311,0],[155,1],[281,-2],[13,2],[171,-1],[271,0],[232,0],[209,0],[438,0],[243,-1],[139,1],[262,-1],[243,0],[213,-1],[225,0],[383,2],[160,-1],[466,0],[319,0],[375,1],[508,1],[442,2],[107,0],[334,0],[0,1],[442,0],[0,1],[442,0],[441,-1],[487,2],[387,-1],[623,0],[283,1],[428,1],[487,0],[539,0],[299,1],[549,-2],[527,1],[325,0]],[[292005,350824],[-261,1],[-278,3],[-273,-1],[-355,0],[-184,-2],[-94,3],[-17,-2],[-74,1],[-283,0],[-238,-1],[-80,0],[-202,-1],[-215,2],[-73,-1],[-123,2],[-314,0],[-66,-4],[-116,-1],[-580,2],[-292,1],[-293,-1],[-327,2],[-437,0],[-423,2],[-239,1],[-42,-1],[-294,0],[-365,2],[-400,5],[-256,4],[-221,2],[-147,2],[-184,0],[-404,3],[-329,2],[-294,2],[-296,1],[-249,-1],[-336,1],[-318,1],[-198,0],[-169,1],[-346,3],[-369,1],[-239,-2],[-474,3],[-248,3],[-288,1],[-402,2],[-305,4],[-165,0],[-52,1],[-249,0],[-112,2],[-589,2],[-108,-2],[-146,1],[-257,2],[-102,-2],[-124,1],[-159,-2],[-209,2],[-261,-1],[-273,-1],[-135,0],[-98,3],[-66,-1],[-175,1],[-235,0],[-30,1],[-130,-1],[-305,1],[-166,-2],[-135,0],[-145,2],[-77,-1],[-240,2],[-368,-1],[-424,1],[-67,1],[-229,1],[-147,-2],[-365,1],[-289,3],[-8,-2],[-196,0],[-241,1],[-123,-1],[-154,1],[-414,0],[-192,1],[-175,-1],[-108,1],[-203,-1],[-15,2],[-219,-1],[-108,1],[-192,-1],[-138,1],[-549,-1],[-180,1],[-46,-1],[-420,0],[-95,1],[-183,-1],[-438,0],[-69,-1],[-76,2],[-199,0],[-97,-2],[-23,2],[-442,0],[-422,-1],[-19,1],[-432,0],[-124,1],[-327,-1],[-159,0]],[[343561,302160],[-192,-220],[-102,-114],[-38,-50],[-217,-251],[-69,-78],[-245,-275],[-198,-229],[-169,-192],[-13,-47],[-17,-21],[-38,-9],[-8,-11],[-22,6],[7,-38],[-26,-15],[2,-20],[-24,-17],[-33,-6],[-42,-25],[-25,1],[-31,-12],[-21,-15],[-34,-12],[-13,1],[-43,-26],[-32,-15],[-24,4],[-12,-22],[-16,6],[-36,-36],[-16,3],[-9,-17],[-26,0],[-50,-26],[-2,-20],[-16,-16],[-18,15],[-41,-29],[-8,-24],[-16,-10],[-21,-27],[-13,17],[-26,-16],[5,-22],[-8,-11],[-30,0],[-14,-19],[-18,7],[-27,-27],[-74,-65],[-45,-31],[-4,-16],[-16,-20],[-32,-17],[-21,-25],[-14,-6],[-25,-25],[-36,-59],[-32,-7],[-9,-13],[-17,7],[-16,-9],[-4,-27],[-27,-11],[-17,-14],[-30,-38],[-21,12],[-13,-14],[-22,-9],[-79,-64],[-23,-6],[-16,-28],[-2,-20],[16,-44],[-3,-117],[16,-22],[1,-30],[-19,-2],[-10,-12],[3,-47],[9,-19],[-1,-39],[3,-60],[-9,-15],[-17,2],[-13,10],[-33,-10],[-4,-37],[-7,-15],[0,-26],[-7,-27],[-39,17],[-26,-26],[-21,-43],[-17,2],[-5,-18],[-16,-29],[-21,3],[-17,-17],[-11,21],[-24,-11],[-55,-4],[-11,-13],[-23,9],[-6,-28],[5,-18],[-6,-25],[-14,-11],[-10,-27],[-12,1],[-14,-19],[-31,7],[-11,-36],[-21,8],[-15,-12],[-9,-28],[12,-86],[17,-7],[11,-20],[-14,-72],[16,-73],[-69,-118],[33,-49],[-10,-13],[-18,-7],[-9,-14],[-2,-28],[-19,-5],[-18,-22],[-20,-14],[-19,-4],[-27,-16],[1,-23],[-35,-8],[-18,2],[-19,-20],[-19,1],[-14,-18],[-18,-7],[-32,0],[-14,-16],[-20,-5],[-28,-26],[-36,9],[-15,-6],[-19,3],[-34,-15],[-15,-20],[-13,-31],[-22,-5],[-10,12],[-22,5],[-16,33],[-33,-8],[-19,5],[-23,-19],[-46,13],[-22,-12],[-21,15],[-11,-22],[7,-28],[-4,-30],[-11,1],[-35,-18],[-10,-18],[-31,-20],[-8,-23],[12,-19],[1,-60],[-15,-13],[-6,-42],[-22,-21],[-14,-24],[-16,-38],[-17,-19],[-33,-11],[15,-51],[-14,-21],[11,-19],[-9,-18],[12,-18],[0,-57],[-22,-59],[-26,-5],[-49,-1],[-24,-13],[-17,7],[-29,-5],[-64,-1],[-104,-54],[-63,-25],[-14,0],[-37,-22],[-29,-6],[-20,-14],[-65,-29],[-27,-1],[-25,-13],[-24,-3],[-89,-46],[-45,-15],[-8,-14],[-29,-24],[-24,3],[-21,-20],[-15,0],[-21,-20],[-20,-4],[-9,-17],[-23,-24],[1,-12],[-59,-38],[-44,-20],[-41,-7],[-25,6],[-15,-11],[-80,-2],[-39,6],[-34,15],[-6,9],[-58,-8],[-10,5],[-41,-20],[-31,-9],[-2,-17],[-12,-8],[-27,-28],[-29,-8],[-36,-17],[-19,-30],[-49,-26],[-19,7],[-26,-11],[-31,-21],[-10,4],[-28,-18],[-15,-36],[-21,-18],[-38,-15],[-21,11],[-26,-11],[-4,-35],[-27,-22],[-23,-35],[-34,-13],[-8,-23]],[[317248,296139],[42,174],[24,80],[7,83],[6,25],[18,52],[25,77],[8,45],[10,106],[5,25],[15,35],[22,29],[58,32],[19,7],[42,6],[20,-6],[14,-12],[21,-33],[57,-124],[20,-52],[59,-99],[30,-40],[30,-25],[16,-3],[71,11],[33,16],[28,32],[18,28],[28,81],[11,45],[6,86],[12,72],[25,53],[14,23],[43,49],[38,60],[17,32],[-35,32],[-4,14],[7,28],[0,38],[-5,18],[-22,34],[-26,28],[-49,77],[-13,35],[-3,41],[3,39],[10,41],[23,46],[33,45],[43,25],[11,0],[29,-20],[56,-4],[24,-22],[35,0],[21,39],[10,42],[3,29],[-3,28],[-20,52],[-21,18],[-39,6],[-41,0],[-39,17],[-29,34],[-27,64],[-5,26],[4,19],[-1,99],[9,24],[21,25],[14,6],[26,-1],[22,25],[52,2],[22,59],[13,65],[10,34],[19,45],[10,36],[28,186],[24,101],[7,43],[5,61],[-1,38],[-6,26],[-29,54],[-26,27],[-31,14],[-27,-9]],[[322155,303674],[18,10],[26,6],[40,-12],[23,-11],[39,-34],[35,-22],[19,-24],[6,-17],[38,-49],[23,-6],[23,10],[21,62],[5,21],[12,17],[1,25],[11,18],[64,34],[24,21],[11,53],[-5,52],[-7,31],[-3,39],[-7,30],[-24,48],[-32,34],[-37,62],[-9,23],[-8,42],[1,33],[8,35],[19,33],[28,39],[10,23],[48,83],[15,21],[26,15],[18,1],[34,-11],[30,-19],[28,-37],[16,-34],[16,-58],[40,-41],[13,-30],[2,-28],[9,-19],[21,-17],[48,-9],[89,-2],[26,7],[19,15],[38,43],[40,31],[71,17],[14,0],[42,-14],[42,9],[51,28],[32,24],[13,5],[34,-12],[28,-31],[12,-56],[-12,-57],[-35,-75],[-18,-44],[-1,-51],[9,-63],[21,-39],[25,-14],[46,-8],[42,2],[51,13],[41,18],[32,40],[29,49],[15,42],[20,42],[-1,50],[-12,73],[-3,39],[-48,53],[-13,10],[-38,42],[-3,20],[-13,28],[-9,40],[20,27],[13,37],[1,31],[38,47],[9,24],[5,39],[1,44],[6,31],[28,25],[28,-2],[28,-27],[13,-47],[0,-28],[-8,-32],[10,-3],[14,-52],[17,-38],[29,-43],[38,-34],[48,-35],[36,-20],[44,-42],[22,11],[27,23],[53,68],[35,35],[26,31],[55,42],[31,10],[38,6],[10,-3],[41,2],[41,-13],[23,-14],[37,-15],[27,-19],[50,-70],[26,-15],[12,-21],[28,-29],[32,-21],[8,5],[54,-19],[30,-26],[38,-25],[68,-63],[27,-34],[15,-12],[34,-45],[71,-60],[64,-60],[50,-23],[36,-9],[70,-14],[18,7],[21,-5],[34,-37],[50,-115],[12,-37],[8,-40],[4,-51],[20,-42],[44,-19],[18,-1],[53,17],[18,10],[47,46],[28,38],[13,32],[1,30],[16,36],[16,53],[24,144],[23,94],[1,53],[-11,71],[4,25],[17,40],[22,29],[77,73],[42,26],[84,45],[29,11],[13,-3],[69,6],[47,10],[21,0],[21,7],[64,58],[13,26],[28,38],[13,33],[25,36],[34,37],[31,49],[32,28],[74,36],[23,20],[31,2],[20,-13],[27,-27],[25,-15],[17,-55],[12,-65],[23,-44],[9,-28],[2,-30],[15,-25],[11,-36],[62,-147],[38,-69],[26,-42],[13,-12],[28,-8],[15,2],[37,30],[40,45],[27,23],[11,17],[20,13],[23,-1],[49,-12],[37,-14],[13,-19],[6,-27],[0,-35],[-11,-43],[-40,-119],[-14,-67],[3,-39],[12,-34],[11,-11],[24,-6],[37,7],[40,24],[78,65],[26,65],[-7,34],[4,56],[-7,114],[6,38],[11,25],[24,35],[31,11],[28,-8],[17,3],[88,-31],[29,1],[20,9],[40,26],[26,24],[8,15],[0,36],[-9,41],[-39,68],[-11,43],[-4,33],[1,109],[-4,36],[0,78],[5,49],[-2,80],[12,61],[30,27],[48,10],[61,-2],[44,5],[46,16],[31,24],[31,39],[19,33],[12,61],[1,22],[-9,31],[-18,19],[-53,26],[-15,11],[-20,26],[-10,28],[-3,54],[6,22],[32,44],[16,11],[28,5],[34,-7],[30,-22],[56,-73],[20,-32],[17,4],[18,33],[8,45],[13,33],[23,25],[22,11],[63,-8],[44,-10],[22,2],[22,12],[24,34],[11,37],[4,29],[-17,39],[-67,29],[-44,5],[-30,10],[-23,18],[-15,27],[-5,28],[-2,50],[4,33],[16,33],[19,18],[21,8],[20,-1],[29,-18],[21,-24],[37,-50],[45,-52],[81,-56],[33,-39],[48,-95],[8,-29],[1,-35],[-12,-72],[-11,-43],[-8,-53],[2,-86],[9,-70],[16,-69],[13,-28],[34,-39],[39,-33],[48,-30],[0,-8],[28,-28],[15,-27],[22,-18],[89,-55],[39,-31],[29,-7],[26,3],[54,27],[36,7],[57,1],[62,-20],[61,-43],[26,-27],[10,-23],[22,-70],[21,-54],[23,-44],[31,-45],[19,-9],[16,4],[18,36],[2,29],[-7,65],[10,48],[16,21],[23,14],[43,15],[37,8],[76,21],[16,-4],[29,2],[36,10],[26,2],[14,9],[53,69],[17,39],[10,41],[6,51],[9,127],[4,27],[25,82],[11,46],[3,52],[-2,57],[-14,146],[-2,49],[5,111],[13,70],[23,59],[47,92],[33,46],[67,68],[15,19],[32,62],[14,41],[5,62],[-1,43],[8,48],[22,57],[26,27],[31,13],[50,11],[38,18],[26,0],[29,-21],[23,-26],[-4,-15],[22,-33],[43,-27],[20,0],[19,10],[28,25],[66,52],[41,34],[50,37],[42,45],[10,31],[54,93],[11,29],[28,100],[17,86],[3,30],[1,64],[3,29],[26,115],[25,72],[10,53],[7,16],[49,84],[26,25],[39,29],[49,16],[70,4],[46,9],[51,15],[67,40],[26,23],[19,25],[20,38],[22,51],[7,38],[15,52],[19,30],[34,30],[76,45],[34,30],[19,28],[23,57],[4,29],[-1,98],[-10,45],[-23,66],[-38,90],[-8,32],[-4,44],[1,141],[2,63],[4,21],[-3,45],[-21,68],[-37,67],[-7,43],[0,20],[17,102],[31,53],[25,55],[48,36],[30,13],[22,2],[36,-9],[90,-30],[66,5],[55,16],[11,11],[102,32],[59,5],[37,-4],[37,-9],[33,-14],[34,-24],[12,-15],[30,-53],[15,-44],[25,-49],[18,-28],[28,-32],[29,-20],[59,-26],[38,6],[16,-3],[45,18],[63,37],[37,31],[18,28],[43,44],[27,33],[19,32],[8,2],[70,58],[23,24],[35,17],[38,24],[41,43],[36,19],[69,48],[40,46],[27,20],[43,6],[62,-8],[51,-15],[22,1],[29,10],[56,34],[50,39],[38,23],[19,5],[38,-14],[51,-8],[55,-20],[39,-19],[50,-7],[23,8],[8,13],[2,37],[-7,41],[-24,63],[-23,44],[-10,39],[0,26],[15,39],[38,46],[44,39],[12,20],[19,17],[12,21],[15,43],[6,36],[-7,43],[-24,29],[-37,30],[-39,17],[-90,12],[-36,-1],[-47,4],[-18,9],[-30,57],[-7,38],[6,27],[22,46],[17,27],[37,43],[27,47],[15,13],[32,40],[10,25],[9,41],[-4,37],[-27,82],[-29,40],[-10,37],[-27,54],[-53,92],[-19,17],[-5,14],[-23,22],[-38,87],[-3,27],[22,43],[22,22],[42,22],[37,29],[47,57],[15,27],[44,51],[43,29]],[[316817,296133],[-21,47],[-20,33],[-34,73],[-18,63],[-18,79],[0,51],[19,56],[27,40],[23,22],[30,16],[42,5],[62,-28],[34,-5],[55,-18],[28,-22],[25,-59],[18,-69],[9,-72],[-5,-43],[-13,-57],[-16,-44],[-27,-46],[-10,-25]],[[402952,190542],[2,91],[10,56],[21,58],[25,44],[-6,46],[-2,46],[17,84],[17,62],[20,45],[7,21],[19,42],[4,37],[11,53],[-2,65],[5,69],[18,57],[24,63],[30,44],[40,33],[70,40],[68,-4],[39,-21],[46,-35],[34,-50],[29,28],[43,24],[44,9],[20,-2],[34,-11],[33,-16],[15,29],[27,32],[38,30],[23,11],[48,6],[27,-3],[31,-13],[59,-298],[2,-26],[31,-60],[18,-10],[66,-3],[38,9],[49,45],[58,27],[54,-22],[25,-102],[74,-55],[28,2],[18,6],[22,-11],[28,10],[10,-19],[29,-4],[37,-1],[24,-18],[49,12],[23,-5],[21,-26],[24,-11],[34,-5],[65,-4],[4,-51],[-16,-64],[17,-131],[4,-10],[-48,-109],[-44,-90],[9,-105],[-11,-35],[-24,-30],[-25,-22],[-57,-21],[-48,0],[-43,12],[-33,20],[-25,25],[-15,5],[-28,21],[-32,-13],[-55,-2],[-34,-45],[-34,-27],[-31,-17],[7,-50],[1,-41],[-3,-39],[-10,-54],[-14,-47],[-18,-38],[-23,-38],[-53,-50],[-29,-15],[-28,-7],[-30,0],[-25,7],[-26,15],[-49,46],[-32,53],[-15,35],[-20,69],[-3,33],[-25,10],[-28,17],[-44,53],[-30,58],[-15,53],[-28,-6],[-46,4],[-23,-4],[-23,5],[-31,-10],[-31,-16],[-38,-5],[-39,4],[-42,23],[-60,61],[-8,-3],[-24,-70],[-36,-60],[-32,-33],[-26,-16],[-59,-16],[-58,12],[-49,41],[-40,52],[-18,48],[-15,57],[-8,50]],[[403653,187014],[-3,21],[1,65],[6,48],[10,43],[13,41],[16,37],[16,28],[-17,67],[-6,45],[-5,65],[5,49],[15,71],[25,92],[26,60],[37,55],[37,44],[23,19],[59,29],[48,7],[27,-4],[51,-26],[20,-8],[23,30],[54,46],[35,7],[41,21],[53,9],[29,-3],[25,-8],[64,15],[23,-3],[34,-11],[32,-21],[21,-19],[34,-45],[29,-52],[11,-2],[40,36],[3,16],[22,49],[39,52],[56,41],[47,15],[23,0],[61,-5],[46,-18],[35,-21],[31,-25],[58,-59],[29,-49],[9,-22],[61,-63],[32,-39],[24,-46],[25,-79],[10,-64],[2,-46],[-15,-80],[-12,-51],[-16,-41],[-22,-40],[-31,-41],[-32,-33],[-43,-30],[-36,-15],[-20,-5],[-28,-29],[-31,-24],[-47,-47],[-40,-25],[-14,-16],[-41,-32],[-46,-25],[-51,-6],[-31,-13],[-63,-36],[-72,-19],[-29,-23],[-30,-16],[-87,-41],[-24,-18],[-70,-7],[-45,-21],[-45,-6],[-35,6],[-50,33],[-35,-8],[-29,0],[-26,6],[-51,24],[-13,-6],[-26,-28],[-31,-20],[-25,-10],[-28,-4],[-54,10],[-36,22],[-32,36],[-30,51],[-22,53],[-12,45],[-9,45]],[[1146928,170604],[2,94],[7,67],[20,79],[47,117],[38,43],[97,77],[87,77],[38,9],[-77,89],[-58,127],[-32,116],[-8,49],[1,156],[17,170],[59,192],[132,207],[268,79],[1,10],[73,125],[27,81],[27,104],[8,20],[0,112],[2,90],[15,86],[12,29],[47,134],[96,217],[58,83],[43,44],[62,80],[40,37],[35,18],[57,-14],[51,-1],[68,-20],[82,-100],[52,-116],[20,-34],[17,-80],[22,-64],[7,-56],[-14,-95],[-12,-45],[-36,-174],[-31,-131],[-11,-24],[0,-89],[-4,-10],[-1,-51],[-12,-99],[14,-30],[-11,-56],[-39,-30],[-18,-38],[-43,-18],[-36,-3],[4,-24],[-7,-50],[-10,-31],[-28,-55],[-61,-78],[-21,-20],[-23,-11],[-70,-19],[-39,-8],[-54,-14],[-17,-243],[-6,-19],[-3,-41],[2,-83],[11,-48],[-2,-8],[6,-51],[1,-60],[-60,-312],[-76,-142],[-51,-114],[-39,-52],[-44,-24],[-64,-15],[-14,-45],[-28,-100],[-30,-77],[-22,-32],[-36,-74],[-87,-112],[-105,-45],[-104,-6],[-88,39],[-27,47],[-21,16],[-40,52],[-36,115],[-17,104]],[[1145486,166327],[-5,89],[3,61],[14,75],[44,123],[57,56],[-8,60],[10,84],[39,77],[40,58],[50,43],[51,41],[49,22],[76,-1],[31,45],[50,64],[55,47],[66,27],[47,2],[53,-4],[25,-23],[20,-46],[34,7],[64,4],[52,-13],[38,-27],[77,-29],[47,-103],[34,-149],[-8,-135],[-3,-43],[-79,-195],[8,-67],[-5,-21],[-36,-75],[-50,-55],[-48,-27],[-46,-13],[-11,-44],[-40,-77],[-38,-41],[-46,-31],[-61,-20],[-37,-16],[-35,12],[-13,8],[-78,-76],[-68,-36],[-65,37],[-30,-1],[-42,-21],[-21,1],[-21,28],[-108,17],[-68,77],[-43,106],[-21,118]],[[1147556,189199],[1,40],[-7,31],[27,140],[12,51],[-1,39],[14,66],[6,59],[29,104],[60,95],[-2,101],[7,47],[16,57],[14,34],[17,28],[80,104],[34,38],[26,35],[70,63],[26,6],[35,-1],[61,6],[42,-20],[42,0],[24,-8],[54,-25],[56,-62],[13,-42],[18,-38],[55,-133],[24,-104],[13,-78],[-11,-41],[1,-56],[-9,-36],[-1,-41],[-6,-91],[-29,-131],[-39,-105],[-70,-133],[-42,-26],[-42,-37],[-40,-30],[-27,-39],[-62,-76],[-22,-36],[-28,-20],[-91,-81],[-79,0],[-93,22],[-62,59],[-29,35],[-20,18],[-23,56],[-4,34],[-13,30],[-10,50],[-15,42]],[[1147289,193289],[-24,157],[3,80],[40,162],[80,211],[35,53],[60,53],[77,26],[55,8],[49,-2],[99,-32],[21,-15],[55,-73],[86,-190],[53,-183],[14,-101],[6,-101],[-3,-62],[-19,-106],[-51,-124],[-47,-130],[-27,-33],[-102,-104],[-55,-37],[-44,8],[-39,0],[-24,7],[-59,43],[-45,28],[-57,56],[-58,117],[-54,157],[-22,118],[-3,9]],[[1147307,179116],[-53,205],[-4,191],[44,161],[93,125],[96,110],[105,50],[75,7],[159,-24],[103,-61],[52,-89],[22,-58],[32,-167],[5,-49],[5,-88],[-3,-23],[-34,-127],[-17,-58],[-62,-93],[-60,-85],[-31,-29],[-77,-68],[-33,-15],[-55,-3],[-98,2],[-88,39],[-74,51],[-102,96]],[[1147914,186494],[1,54],[-2,64],[12,53],[37,96],[39,116],[49,136],[52,90],[99,39],[102,-2],[130,-59],[60,-73],[24,-76],[20,-171],[4,-150],[-21,-185],[-31,-112],[-46,-83],[-76,-76],[-26,-16],[-70,-11],[-55,-17],[-52,9],[-58,35],[-87,90],[-63,92],[-31,72],[-11,85]],[[1146372,198607],[-19,89],[5,80],[34,91],[48,85],[41,70],[65,91],[27,17],[63,27],[42,4],[47,-9],[50,-18],[38,-26],[45,-62],[88,-105],[21,-65],[39,-70],[12,-47],[8,-90],[-17,-53],[-8,-80],[-23,-51],[-21,-59],[-29,-64],[-45,-128],[-97,-80],[-97,-15],[-89,37],[-20,11],[-45,34],[-47,30],[-45,42],[-10,58],[-8,15],[-14,44],[-30,107],[-9,90]],[[1147977,185050],[-12,38],[11,46],[16,49],[19,41],[48,88],[48,69],[55,30],[23,6],[17,18],[56,24],[22,5],[21,-10],[14,-15],[52,-31],[17,1],[45,-12],[13,-8],[15,-30],[14,-47],[41,-17],[19,-31],[20,-50],[13,-47],[20,-56],[-37,-41],[4,-69],[-1,-102],[-4,-38],[-9,-50],[-17,-51],[-22,-52],[-30,-58],[-29,-26],[-12,-37],[-5,-38],[-42,-40],[-47,-33],[-32,-18],[-34,-14],[-69,20],[-46,49],[-31,23],[-18,26],[-24,25],[-8,29],[-18,27],[-15,33],[-27,45],[-13,50],[-16,52],[-10,88],[-3,109],[8,30]],[[1145756,200611],[-14,142],[15,96],[35,118],[52,56],[63,60],[87,31],[107,5],[111,-42],[73,-78],[49,-93],[33,-102],[21,-89],[-17,-95],[-21,-75],[6,-21],[-13,-41],[-34,-79],[-36,-61],[-36,-42],[-39,-35],[-39,-40],[-7,-3],[-61,1],[-66,-5],[-42,6],[-60,20],[-37,42],[-24,47],[-38,60],[-44,51],[-10,79],[-14,87]],[[1147764,181331],[-16,132],[8,144],[22,83],[41,51],[8,30],[30,34],[68,53],[70,51],[80,24],[109,-57],[71,-94],[52,-84],[0,-8],[34,-48],[3,-97],[-3,-200],[-22,-101],[-23,-75],[-46,-71],[-71,-63],[-68,-27],[-76,-11],[-64,10],[-46,41],[-41,10],[-58,63],[-36,80],[-26,130]],[[1144624,203582],[-8,99],[8,105],[20,88],[43,99],[45,58],[61,46],[41,8],[86,12],[84,-12],[65,-35],[63,-81],[42,-77],[22,-109],[7,-87],[-1,-124],[-27,-89],[-27,-61],[-38,-58],[-67,-85],[-27,-31],[-98,-34],[-41,-7],[-30,3],[-13,13],[-44,8],[-32,30],[-30,10],[-23,28],[-25,35],[-16,40],[-2,48],[-14,44],[-22,91],[-2,25]],[[1148819,177377],[-4,133],[43,166],[57,115],[72,93],[153,23],[110,-68],[46,-63],[49,-132],[9,-169],[-14,-95],[-13,-37],[-49,-110],[-28,-27],[-131,-135],[-154,-30],[-119,132],[-27,170],[0,34]],[[1143734,162538],[0,33],[10,74],[10,35],[27,66],[42,73],[36,36],[20,31],[23,29],[19,16],[30,16],[44,10],[23,1],[49,-6],[19,-8],[13,14],[57,46],[35,20],[38,4],[20,-4],[25,10],[32,5],[25,47],[35,47],[27,23],[24,74],[11,54],[17,50],[17,36],[15,23],[13,34],[5,70],[8,32],[0,51],[13,89],[9,48],[20,56],[31,56],[15,49],[20,46],[16,25],[38,48],[40,33],[24,14],[30,6],[24,-1],[51,-15],[34,-18],[38,-31],[41,-44],[36,-51],[24,-60],[46,-70],[13,-32],[49,-3],[48,-17],[48,-34],[20,-29],[41,-69],[15,-36],[12,-62],[8,-67],[1,-27],[-9,-60],[-12,-42],[-11,-22],[-5,-36],[-18,-66],[-14,-29],[-9,-62],[-12,-56],[-16,-42],[-12,-74],[-13,-40],[-49,-101],[-15,-21],[-34,-36],[-29,-17],[-13,-2],[-17,-36],[-37,-63],[-42,-44],[-22,-12],[-11,-25],[-27,-48],[-29,-41],[-18,-20],[-16,-8],[-14,-33],[-33,-50],[-27,-29],[-17,-11],[-19,-44],[-20,-25],[-25,-21],[1,-24],[-7,-57],[-7,-82],[0,-75],[-7,-39],[3,-77],[-3,-41],[4,-42],[-1,-42],[-10,-92],[-26,-87],[-24,-44],[-7,-53],[-13,-6],[-26,-53],[-30,-34],[-4,-23],[-19,-49],[-21,-40],[-39,-59],[-24,-27],[-44,-33],[-38,-15],[-35,5],[-36,-14],[-36,-4],[-39,4],[-27,-14],[-20,-5],[-25,4],[-20,-17],[-45,-14],[-28,-4],[-30,2],[-25,8],[-38,28],[-32,39],[-16,27],[-19,42],[-11,34],[-7,36],[-5,53],[4,61],[9,62],[4,0],[19,63],[29,56],[-15,60],[-5,56],[1,26],[-13,11],[-20,27],[-31,63],[-13,43],[-9,50],[-3,90],[6,58],[9,38],[4,51],[9,54],[20,45],[6,34],[-36,51],[-31,58],[-17,48],[-8,35],[-10,77],[-2,37]],[[382006,347174],[35,14],[53,35],[19,-14],[24,9],[28,-2],[23,-15],[19,26],[38,6],[28,21],[16,47],[-2,22],[-23,21],[-6,52],[8,23],[22,-14],[37,-40],[16,-24],[28,-12],[28,9],[21,-8],[22,26],[28,13],[28,-78],[17,-14],[5,-19],[32,-7],[10,-22],[33,-19],[-7,-36],[21,-30],[6,-23],[-6,-26],[-17,-26],[-9,-49],[18,-16],[17,-35],[10,-3],[12,-25],[-6,-21],[30,-21],[1,-20],[10,-13],[-8,-23],[2,-37],[21,-16],[22,-25],[18,-9],[17,5],[59,-29],[42,30],[20,-2],[5,20],[-32,40],[6,52],[-11,15],[3,42],[34,34],[7,34],[18,24],[8,66],[-11,27],[61,25],[11,16],[2,22],[-9,11],[20,32],[10,45],[-6,39],[-17,1],[-20,26],[0,31],[-6,13],[9,27],[18,11],[9,29],[-15,18],[14,20],[5,26],[21,20],[-15,66],[-20,34],[-4,23],[-10,16],[-26,4],[-6,55],[23,26],[22,39],[5,27],[30,9],[15,36],[16,26],[23,-11],[21,27],[29,-14],[20,-2],[13,-14],[34,14],[14,-28],[23,-14],[-4,-29],[10,-31],[42,-38],[3,-30],[19,-19],[43,-31],[19,15],[24,8],[13,-11],[29,2],[18,13],[17,-5],[59,-49],[1,-42],[38,-8],[47,30],[7,16],[-14,21],[9,37],[11,19],[35,10],[7,15],[-11,20],[-20,5],[-17,24],[-2,21],[16,8],[11,37],[-9,24],[-19,4],[-25,36],[-29,66],[-37,4],[-48,36],[-21,1],[-3,57],[-30,10],[-8,16],[4,45],[-28,28],[-19,0],[-40,43],[-5,22],[20,39],[1,28],[-13,16],[-24,10],[-5,21],[4,23],[24,29],[17,4],[16,48],[25,17],[12,58],[13,13],[26,46],[27,9],[-25,26],[-17,29],[12,19],[-2,17],[29,13],[22,34],[3,17],[42,47],[0,13],[18,19],[15,29],[-4,9],[20,40],[32,21],[11,-4],[49,16],[13,36],[24,21],[6,22],[20,8],[16,16],[21,4],[5,20],[20,30],[2,20],[21,18],[6,15],[38,38],[10,32],[-5,14],[22,25],[15,5],[17,-10],[20,1],[33,26],[21,-25],[28,19],[-2,9],[32,40],[31,30],[19,13],[8,17],[52,35],[37,41],[13,27],[12,-5],[21,8],[18,-17],[42,-1],[29,19],[4,17],[42,19],[61,37],[10,21],[3,32],[24,-2],[15,24],[4,18],[-19,2],[-14,23],[0,23],[21,24],[-1,12],[-27,37],[-17,4],[-22,30],[6,43],[-8,19],[7,19],[-19,48],[-17,3],[5,28],[-3,32],[24,12],[25,-10],[18,15],[-3,50],[33,42],[-1,25],[66,73],[-9,15],[12,12],[15,-8],[17,5],[24,29],[12,38],[26,30],[31,6],[16,10],[35,4],[16,13],[23,6],[16,24],[28,15],[27,30],[11,5],[17,27],[21,19],[3,17],[38,31],[12,20],[-24,10],[18,32],[23,21],[2,28],[-21,13],[7,51],[-18,19],[-2,15],[25,29],[9,20],[49,42],[-10,40],[-20,17],[-16,34],[-16,-19],[-16,45],[-13,17],[-33,-7],[-7,30],[-25,-18],[-52,-5],[-26,11],[-25,-15],[-11,11],[15,14],[-2,45],[18,49],[27,19],[17,1],[30,37],[-21,27],[-37,10],[-9,26],[-4,40],[-10,1],[-5,27],[-16,9],[5,32],[43,31],[10,20],[-11,14],[17,44],[10,2],[23,32],[23,22],[9,36],[-2,23],[-18,10],[-32,-12],[-49,3],[-13,22],[29,31],[-1,33],[10,19],[-1,26],[31,22],[4,37],[28,38],[39,5],[52,-10],[13,4],[3,32],[-11,19],[17,62],[18,37],[30,109],[-8,23],[-25,13],[-23,43],[-41,35],[-1,19],[-22,24],[-23,15],[-30,49],[-16,12],[2,22],[-8,15],[16,13],[7,18],[30,39],[4,23],[19,23],[-13,19],[20,18],[11,33],[-5,7],[22,28],[11,40],[8,56],[15,16],[-8,23],[4,41],[13,41],[27,34],[4,36],[25,32],[4,37],[58,21],[10,22],[19,4],[5,18],[-2,44],[11,23],[-15,33],[4,25],[-10,33],[47,65],[-1,15],[28,39],[20,10],[25,37],[16,7],[17,-11],[18,21],[18,1],[27,-13],[13,19],[13,4],[11,36],[29,1],[9,8],[-5,48],[56,52],[38,52],[6,38],[19,27],[19,15],[9,-10],[25,9],[12,-6],[29,12],[13,14],[25,4],[2,12],[84,649],[73,556],[53,409],[257,425],[103,168],[344,565],[195,319],[345,562],[261,423],[77,125],[321,519],[287,461],[185,297],[117,189],[92,145],[145,232],[24,-18],[41,-15],[3,-13],[34,21],[26,-3],[44,10],[45,-37],[20,6],[22,-14],[20,-3],[84,-34],[14,-20],[31,-16],[8,-29],[28,1],[6,-29],[18,3],[38,-19],[67,52],[16,-4],[21,-32],[44,-24],[-10,-39],[24,-4],[-1,-45],[-25,-42],[-10,-56],[19,-25],[-2,-17],[-23,2],[-25,-39],[2,-67],[1,-143],[-5,-145],[20,-55],[-15,-51],[2,-27],[12,-19],[-4,-62],[14,-40],[-5,-48],[-9,-39],[35,-67],[25,-27],[24,-6],[18,-15],[118,-76],[29,-20],[6,-14],[47,-30],[19,-42],[25,9],[11,-27],[31,23],[28,-37],[13,-2],[33,-27],[0,-28],[28,-20],[13,-1],[12,-34],[22,-1],[18,15],[16,-5],[25,5],[21,26],[18,10],[34,0],[14,7],[26,35],[26,20],[40,24],[17,19],[33,23],[20,23],[26,1],[81,33],[44,1],[60,30],[62,54],[15,0],[18,14],[34,16],[33,-17],[13,2],[26,26],[27,10],[10,-9],[33,-3],[42,-36],[27,16],[33,3],[39,17],[35,-1],[27,7],[36,21],[49,68],[1,15],[-15,33],[1,21],[16,19],[11,38],[14,20],[28,21],[27,-6],[35,-16],[36,-10],[39,19],[31,39],[44,22],[50,1],[25,-12],[21,-1],[55,20],[36,-19],[22,-56],[34,-13],[27,9],[40,-13],[14,4],[38,31],[18,3],[71,-11],[43,8],[11,21],[-6,24],[-27,35],[-2,18],[13,35],[-13,91],[11,33],[5,45],[8,24],[21,33],[31,31],[40,15],[53,13],[33,3],[78,-28],[20,4],[22,18],[30,7],[15,-4],[34,-29],[22,-14],[60,0],[47,18],[23,-11],[12,-18],[3,-32],[16,-18],[28,-16],[32,3],[92,-61],[58,-10],[18,-11],[8,-18],[-5,-51],[6,-21],[19,-24],[19,-35],[20,-22],[29,-10],[23,-38],[102,-64],[36,-31],[16,-29],[13,-40],[53,-24],[70,-49],[49,-38],[30,-29],[34,-45],[31,-59],[30,-41],[59,-19],[56,-41],[18,-29],[4,-26],[-2,-39],[11,-10],[34,-63],[13,-41],[11,-13],[16,-38],[21,-18],[32,-18],[17,-27],[14,-43],[33,-35],[13,-24],[9,-97],[18,-31],[29,-19],[23,-3],[70,-42],[36,-32],[27,-16],[16,-2],[29,-16],[23,-34],[74,-51],[2,-389],[2,-725],[-2,-401],[3,-674],[3,-519],[8,-559],[1,-20],[4,-302],[6,-667],[3,-426],[2,-607],[1,-469],[0,-183],[-1,-571],[3,-28],[10,-26],[11,5],[12,-20],[19,-7],[18,-17],[6,-19],[29,-38],[-18,-34],[-25,-7],[-16,-30],[-5,-38],[-37,-24],[-18,6],[-19,-15],[-36,-56],[-13,-4],[-1,-76],[28,-25],[-7,-12],[38,-79],[35,-36],[19,-11],[19,-30],[11,-45],[29,-31],[-36,-27],[-44,4],[-12,-22],[-73,-72],[-15,-50],[9,-77],[-6,-66],[-13,-14],[10,-70],[46,-27],[40,-113],[-98,-9],[24,-194],[-53,-13],[51,-94],[123,-1],[51,-57],[26,18],[9,13],[37,-49],[23,-11],[25,-2],[8,31],[-20,14],[-1,13],[-22,25],[-12,45],[-4,27],[21,1],[38,-56],[17,10],[41,-70],[13,-55],[24,-36],[-4,-20],[45,-69],[15,-42],[32,-39],[12,5],[61,-68],[20,16],[-15,41],[18,11],[25,-21],[83,-88],[66,3],[23,-26],[75,-43],[17,13],[31,5],[45,-16],[58,-44],[71,-5],[27,24],[13,35],[-11,23],[49,18],[17,-20],[13,1],[13,16],[29,5],[24,-11],[9,-34],[57,-72],[20,-33],[8,-40],[-21,-17],[9,-46],[16,-24],[5,-39],[-12,-16],[-4,-39],[-26,1],[-8,-26],[0,-45],[10,-26],[-3,-22],[25,-16],[-3,-12],[20,-19],[16,-43],[-23,7],[-16,-27],[-34,24],[-17,1],[-21,27],[-20,-7],[13,-21],[0,-35],[-14,7],[-35,47],[-26,-24],[3,-27],[23,-15],[-14,-10],[-35,10],[-13,-17],[-15,9],[-13,-15],[-1,-22],[-20,-3],[-17,13],[-13,-25],[9,-45],[22,-35],[28,-31],[17,-49],[-10,-21],[4,-34],[21,-18],[5,-18],[-13,-13],[7,-24],[2,-37],[13,-34],[15,-12],[26,-1],[12,-41],[21,-31],[22,-19],[30,-45],[39,-48],[3,-28],[12,-38],[13,-12],[-7,-21],[-20,1],[-12,-13],[-15,-38],[3,-24],[30,-20],[-22,-44],[9,-23],[-8,-27],[-33,-30],[-11,-30],[-25,-10],[-22,-23],[18,-43],[-6,-23],[-15,-23],[-9,-56],[-19,-2],[-1,-34],[-31,-13],[-12,-19],[-11,16],[-13,0],[-3,-24],[-14,-28],[22,-15],[5,-25],[20,1],[0,-38],[6,-32],[11,-10],[-5,-18],[39,-92],[29,-8],[23,-48],[24,-31],[13,-28],[-1,-18],[22,-61],[11,-43],[-5,-49],[8,-10],[31,-9],[23,-44],[18,-21],[21,-7],[8,-25],[-3,-25],[-20,-13],[0,-39],[42,-32],[44,-13],[37,-61],[48,-50],[11,-22],[15,1],[11,-17],[18,-8],[37,39],[33,-3],[12,39],[-8,25],[37,8],[48,25],[6,32],[-26,20],[-4,22],[12,48],[27,11],[2,21],[-11,15],[12,26],[-1,33],[26,26],[41,-4],[35,-19],[24,-29],[29,-11],[11,-16],[4,-33],[34,-23],[21,-30],[15,1],[18,18],[54,27],[43,-33],[80,-5],[32,-16],[49,-93],[57,-79],[57,-115],[64,-219],[258,-700],[41,-53],[45,-94],[100,-105],[-12,-90],[-28,-101],[-7,-59],[5,-39],[21,-56],[0,-54],[33,-74],[116,-19],[167,-182],[-60,-103],[-30,-9],[-29,-21],[-40,-19],[-41,-13],[-36,-30],[-41,-60],[-49,-109],[-62,-48],[-55,-33],[-47,-71],[-39,-39],[-15,-8],[-16,-52],[-36,-61],[-72,-84],[-26,-36],[-23,-23],[-17,-56],[-13,-23],[-49,-60],[-49,-38],[-10,-5],[-21,-44],[-27,-32],[-57,-47],[-61,-32],[-17,-31],[-31,-44],[-63,-53],[-14,-9],[-48,-45],[-44,-30],[-43,-18],[-55,-5],[-55,-22],[-55,-6],[-23,2],[-10,-30],[-27,-45],[-22,-30],[-52,-44],[-28,-15],[-57,-19],[-33,-1],[-54,5],[-24,10],[-50,-40],[-41,-23],[-26,-9],[-65,-15],[-6,-25],[-1,-63],[-9,-53],[-17,-49],[-22,-45],[-21,-28],[-20,-16],[-22,-52],[-69,-93],[-24,-27],[-47,-40],[-52,-28],[-50,-40],[-28,-14],[-15,-20],[-49,-34],[-48,-23],[-22,-6],[-80,-37],[-61,-14],[-33,1],[-65,18],[-51,29],[-18,17],[-17,-16],[-58,-24],[-69,-7],[-50,7],[-43,18],[-60,43],[-18,21],[-39,54],[-11,-16],[-37,-36],[-37,-23],[-24,-42],[26,-44],[11,-49],[0,-80],[-20,-79],[-31,-64],[-50,-55],[-65,-38],[-57,-20],[-57,-1],[-33,8],[-51,23],[-65,66],[-30,45],[-29,-52],[-32,-37],[-65,-39],[-17,-77],[-28,-63],[-32,-39],[-35,-31],[-53,-33],[-38,-13],[-62,-5],[-74,16],[-15,7],[-39,-16],[-46,-12],[-152,-53],[13,-56],[10,-26],[3,-33],[0,-56],[-6,-50],[-20,-51],[-33,-60],[-67,-70],[-50,-27],[8,-100],[-4,-45],[-6,-27],[2,-34],[-6,-42],[3,-20],[-8,-74],[-8,-35],[-14,-39],[-21,-37],[-31,-39],[-31,-33],[-72,-44],[-23,-9],[-55,-8],[-61,9],[-46,-103],[-11,-17],[-51,-52],[-34,-28],[-28,-16],[-51,-15],[-35,-1],[-20,-11],[-54,-17],[-43,-3],[-20,9],[-58,7],[-35,15],[-127,15],[-35,-61],[-20,-27],[-38,-34],[-54,-20],[-23,-2],[-3,-34],[-12,-44],[-14,-25],[-68,-69],[-27,-35],[-38,-35],[-15,-34],[-43,-70],[-47,-44],[-28,-18],[-59,-21],[-60,-4],[-59,13],[-45,-25],[-34,-13],[-65,-8],[-69,19],[-37,17],[-38,30],[-24,26],[-51,-11],[-75,-109],[59,2],[34,-8],[33,-17],[39,-25],[32,-29],[27,-37],[21,-41],[17,-44],[17,-86],[-4,-78],[-16,-63],[-21,-39],[-33,-48],[-68,-69],[-31,-25],[-41,-22],[-44,-11],[-45,-1],[-53,-78],[-59,-72],[-14,-13],[12,-67],[2,-44],[-3,-44],[-14,-54],[-41,-89],[-27,-40],[-18,-20],[-58,-40],[-33,-12],[-46,-7],[-43,1],[-46,9],[-35,16],[-21,15],[-52,14],[-28,15],[-45,33],[-44,59],[-22,44],[-19,71],[-75,8],[-36,13],[-32,18],[-33,27],[-37,40],[-28,54],[-22,70],[-2,83],[7,48],[-41,23],[-35,29],[-41,43],[-8,-37],[-24,-61],[-21,-37],[-19,-19],[-24,-39],[-39,-39],[-41,-28],[-47,-18],[-11,-19],[-68,-53],[-30,-16],[-38,-12],[-37,-3],[-52,4],[-40,13],[-34,23],[-40,37],[-30,34],[-22,40],[-13,37],[-46,-37],[-45,-22],[19,-19],[51,-72],[19,-59],[13,-50],[-1,-39],[4,-28],[-3,-41],[-17,-70],[-24,-54],[-26,-44],[-34,-45],[-74,-68],[-53,-35],[-39,-16],[-51,-7],[-41,4],[-39,16],[-36,21],[-45,45],[-54,76],[-24,65],[-13,66],[-9,53],[1,55],[15,84],[19,67],[-47,32],[-30,36],[-177,-84],[-37,-14],[-37,-33],[-75,-49],[-15,-7],[-1,-16],[-21,-65],[-14,-20],[6,-63],[-5,-51],[-12,-54],[-19,-47],[-38,-55],[-56,-42],[-55,-25],[-64,-5],[-42,7],[-39,-16],[-34,-4],[-50,6],[-45,16],[-40,21],[-33,26],[-30,-43],[-46,-35],[-9,-43],[-16,-43],[-20,-44],[-33,-44],[-38,-37],[-40,-26],[-23,-10],[-44,-9],[-49,2],[-44,7],[-38,15],[-25,-29],[-54,-34],[-66,-14],[-50,0],[-47,12],[-69,-43],[-124,-84],[-317,-214],[-441,-294],[-43,-23],[-69,-52],[-29,-34],[-65,-107],[-60,-92],[-33,-37],[-46,-64],[-23,-35],[-53,-72],[-33,-50],[-24,-45],[-31,-33],[-20,-64],[-22,-38],[-26,-30],[-86,-67],[-25,-10],[-10,-30],[-38,-61],[-13,-36],[-22,-42],[-13,-17],[-2,-49],[-17,-61],[-32,-59],[-30,-39],[-57,-40],[-40,-17],[-15,-24],[-46,-43],[-28,-19],[-71,-28],[-47,-14],[-36,-5],[-28,9],[-28,-15],[-42,-9],[-14,-72],[-18,-37],[-33,-55],[-28,-40],[25,-52],[22,-103],[0,-35],[-18,-102],[-8,-30],[-22,-29],[-2,-58],[-9,-13],[7,-25],[1,-74],[-4,-40],[52,50],[49,33],[24,6],[76,3],[66,-15],[19,-9],[34,-31],[41,-50],[16,-26],[28,-56],[13,-77],[1,-58],[-11,-76],[-16,-32],[-36,-57],[-34,-37],[-63,-38],[-37,-13],[-35,-4],[-30,1],[-55,12],[-23,11],[-39,30],[-52,53],[-18,26],[-14,31],[-11,39],[-11,80],[1,63],[-55,-52],[-6,-40],[-28,-47],[-42,-51],[-17,-13],[-4,-37],[-16,-88],[-10,-38],[-32,-60],[54,-10],[40,-14],[52,-32],[43,-53],[14,-24],[34,-82],[8,-33],[5,-49],[-9,-67],[-12,-33],[0,-51],[-6,-51],[3,-68],[-5,-45],[-11,-43],[-16,-37],[-29,-48],[-46,-49],[-32,-22]],[[351351,331009],[351,220],[463,289],[195,123],[361,221],[441,273],[376,230],[66,43],[441,272],[245,265],[87,289],[1,135],[-13,58],[-34,79],[-48,52],[-103,11],[-47,64],[-129,95],[-30,55],[-12,125],[41,73],[23,105],[21,52],[-28,57],[-69,19],[-168,51],[-4,20],[34,56],[28,92],[-5,31],[-9,18],[-27,29],[35,34],[10,4],[26,47],[19,18],[6,32],[-15,108],[-22,65],[1,59],[14,93],[-30,63],[15,66],[-11,96],[0,91],[-51,48],[-192,451],[-85,201],[-184,437],[269,162],[215,125],[232,131],[438,251],[439,251],[135,94],[83,54],[224,0],[442,-7],[441,-2],[0,-6],[442,-2],[441,-4],[462,1],[421,1],[442,0],[189,-1],[334,2],[360,3],[441,-4],[442,1],[0,-6],[442,3],[443,-11],[365,1],[423,1],[80,317],[184,381],[271,554],[87,171],[354,721],[3,3],[214,546],[225,172],[78,63],[141,372],[92,28],[131,2],[14,-3],[137,63],[55,39],[95,106],[9,239],[109,92],[6,-9],[39,-1],[22,18],[52,9],[184,186],[130,71],[26,21],[66,-1],[26,-7],[17,-19],[73,36],[35,36],[36,25],[27,54],[31,-5],[146,155],[179,217],[46,228],[147,256],[59,65],[80,92],[107,143],[121,141],[40,43],[115,118],[133,167],[265,328],[100,88],[20,21],[169,188],[36,94],[59,5],[34,38],[62,17],[0,30],[90,122],[38,-16],[112,117],[-20,59],[87,72],[33,23],[64,26],[50,54],[45,5],[36,57],[55,-1],[31,30],[21,3],[81,59],[90,19],[19,107],[59,36],[44,-10],[30,43],[113,14],[17,30],[116,69],[77,69],[21,45],[0,32],[23,33],[72,35],[78,6],[30,0],[120,-6],[25,54],[45,40],[38,10],[38,-5],[14,24],[22,-1],[36,34],[41,25],[28,7],[33,-24],[14,11],[41,5],[7,-22],[23,-35],[105,6],[12,-62],[55,-26],[47,-1],[31,45],[72,30],[64,-21],[39,7],[9,31],[31,-38],[278,-4],[200,-4],[243,-7],[167,-10],[56,-5],[70,-4],[139,-11],[94,2],[160,-1],[248,0],[151,-4],[381,22],[593,35],[252,9],[142,3],[309,-2],[127,3],[380,18],[334,15],[222,7],[111,3]],[[374302,332341],[-102,-455],[-56,-245],[-46,-202],[-120,-532],[-19,-88],[-27,-118],[-66,-295],[-61,-267],[-160,-714],[-114,-512],[-88,-395],[40,-212],[34,0]],[[379509,323290],[1,-477],[31,-32],[9,-45],[6,-66],[0,-57],[-18,-69],[-40,-106],[-50,-54],[-102,-98],[-97,-62],[-20,-18],[-51,-28],[-63,-15],[-107,-44],[-132,-83],[-104,-68],[-181,-106],[-260,-152],[-359,-211],[-83,-48],[-441,-279],[-78,-35],[-364,-175],[-386,-187],[-56,-26],[-441,-187],[-279,-153],[-163,-69],[-492,-289],[-64,-33],[-141,-56],[-82,-26],[-104,-40],[-441,-208],[-87,-65],[-61,0],[-74,16],[-49,16],[-62,-16],[-123,-48],[-98,-49],[-123,-33],[-86,-32],[-74,-33],[-111,17],[-123,32],[-254,33],[-288,0],[-221,-5],[-54,-8],[-149,-55],[-101,-63],[-54,-55],[-24,-8],[-35,-66]],[[230236,299045],[2,-247],[-2,-363],[1,-302],[1,-354],[-1,-169],[1,-82],[0,-169],[7,-419],[2,-172],[6,-404],[0,-97],[3,-172],[6,-126],[1,-182],[-1,-335],[-5,-198],[-1,-83],[3,-83],[-5,-167],[0,-84],[6,-169],[-1,-300],[-19,-7],[-33,-25],[-28,-51],[-43,-125],[-8,-42],[-24,-42],[-13,-33],[-4,-29],[-15,-67],[-12,-8],[-25,0],[-30,-23],[-17,-26],[-4,-30],[9,-22],[15,-12],[10,-34],[-26,-47],[-15,-60],[-21,-41],[-13,-39],[-9,-49],[4,-46],[-12,-47],[-26,-25],[-1,-33],[-15,-21],[-11,-2],[-28,18],[-47,2],[-59,-39],[-73,-30],[-43,-5],[-14,5],[-19,-11],[-25,14],[-12,0],[-16,19],[-39,33],[-17,21],[-17,52],[1,24],[-7,26],[-26,2],[-45,27],[-9,23],[-18,16],[-36,-2],[-20,21],[7,32],[18,21],[11,34],[-10,40],[-35,64],[-14,17],[-9,28],[-19,27],[-20,5],[-37,68],[-49,54],[-20,36],[-20,50],[-18,5],[-17,-12],[-29,9],[-36,16],[-25,7],[-24,-3],[-21,-21],[-17,-32],[-73,-68],[-12,3],[-15,22],[-18,47],[-21,10],[-22,-5],[-53,-53],[-53,-18],[-21,3],[-13,16],[-3,19],[14,28],[19,21],[-4,17],[-25,30],[-22,6],[-59,-18],[-29,24],[-34,-6],[-26,10],[-18,-9],[-35,1],[-44,-32],[-51,-29],[-40,-48],[-21,-15],[-19,12],[-22,52],[-12,8],[-19,-35],[-15,-6],[-55,-51],[-9,-12],[-14,-37],[-8,-9],[-27,-2],[-35,-39],[-34,19],[-41,-23],[-22,-6],[-31,-2],[-56,-14],[-12,-9],[-41,-46],[-20,-52],[2,-18],[12,-16],[6,-31],[19,-23],[13,-50],[14,-19],[3,-27],[-23,-38],[-4,-31],[5,-26],[28,-1],[21,-28],[13,-11],[2,-27],[-20,-30],[-32,-33],[-10,-16],[-8,-36],[13,-89],[-13,-23],[-2,-22],[11,-46],[15,-36],[27,-44],[-4,-11],[58,-151],[20,-34],[-2,-105],[17,-18],[11,-29],[24,-37],[51,-57],[25,-44],[14,-16],[17,-9],[2,-26],[-25,-24],[-44,-12],[-33,-25],[-13,-27],[-30,-8],[-10,-21],[2,-18],[16,-38],[20,-34],[1,-21],[-18,-45],[-10,-40],[-19,-26],[-11,-30],[21,-38],[23,-49],[1,-14],[-7,-81],[3,-42],[10,-36],[11,-23],[-12,-33],[4,-70],[-10,-69],[-21,-88],[-1,-20],[15,-42],[36,-46],[30,-27],[7,-36],[-19,-67],[-14,-32],[4,-86],[34,-40],[15,-30],[25,-65],[9,-32],[17,-7],[24,-50],[-2,-87],[-17,-53],[-39,-24],[-17,-16],[1,-13],[23,-24],[19,-58],[-2,-25],[5,-23],[2,-69],[17,-53],[-4,-24],[-14,-24],[-8,-26],[-16,-5],[-25,-33],[-5,-15],[-6,-68],[0,-21],[9,-26],[-3,-16],[18,-48],[-6,-36],[27,-46],[-4,-44],[12,-33],[1,-40],[32,-63],[2,-23],[11,-24],[83,-108],[19,-62],[10,-58],[5,-54],[23,-58],[17,-61],[23,-107],[15,-85],[1,-27],[-7,-129],[3,-44],[11,-44],[12,-81],[8,-28],[7,-45],[-1,-52],[3,-35],[8,-24],[-2,-52],[11,-55],[3,-65],[16,-13],[10,-34],[2,-57],[6,-27],[4,-82],[-3,-57],[-16,-106],[5,-26],[-20,-62],[-23,-21],[-46,-20],[-22,-3],[-42,3],[-37,-8],[-21,-19],[-45,-70],[-5,-25],[13,-25],[72,-45],[33,-32],[19,-27],[12,-28],[5,-41],[-6,-28],[-17,-31],[-23,-21],[-40,-47],[-26,-63],[-10,-39],[-3,-29],[6,-76],[11,-41]],[[153684,430765],[316,148],[550,258],[379,-274],[410,-296],[37,-20],[44,-4],[60,-190],[168,-186],[48,-41],[136,-11],[308,-346],[4,-162],[0,-354],[-159,-123],[-94,-148],[334,-204],[35,-28],[-35,-63],[-92,-183],[92,-150],[146,-226],[424,-88],[493,-101],[72,-330],[407,-363],[302,-1],[138,-261],[220,-279],[-72,-223],[-3,-117],[258,-74],[77,-25],[-80,-229],[277,-357],[619,-327],[294,-157],[536,-270],[332,-474],[80,-117],[84,-108],[78,-76],[92,-96],[127,-127],[197,-193],[212,-186],[155,-131],[269,-231],[-288,-245],[4,-11],[264,-421],[92,-152],[56,-81],[101,-117],[95,-107],[160,-183],[71,-82],[34,-45],[77,-95],[53,-70],[98,-236],[255,-636],[732,-909],[397,-799],[349,-496],[349,-669],[121,-162],[416,-553],[139,-185],[247,-459],[162,-312],[-183,-304],[-238,-394],[892,-201],[239,-54],[-71,-260],[-44,-176],[-11,-56],[-104,-440],[-10,5],[-24,-96],[426,-184],[472,-220],[-53,-167],[-36,-95],[-17,-38],[140,-284],[48,-281],[12,-97],[35,-215],[261,12],[543,48],[93,6],[301,-276],[121,-103],[118,-62],[229,-124],[479,-270],[127,-78],[85,-43],[133,-114],[97,-81],[60,-47],[65,-16],[181,-34],[476,-102],[176,-34],[73,-20],[101,-20],[147,-142],[340,-359],[77,-76],[118,-44],[170,-72],[262,-47],[146,-575],[289,-78],[347,-175],[504,114],[147,-279],[89,-164],[16,-20],[51,-112],[45,-139],[-39,-51],[-17,-117],[-16,-281],[40,3],[-32,-69],[-219,-467],[-139,-98],[-17,-28],[-18,-67],[-31,-67],[-29,-70],[-3,-122],[5,-109],[7,-70],[66,-89],[63,-102],[-21,-241],[-23,-219],[-10,-124],[24,-101],[34,-109],[34,-121],[18,-76],[36,-114],[146,-229],[15,-130],[34,-358],[24,-171],[55,-78],[57,-76],[33,-55],[7,-34],[2,-70],[-19,-37],[-58,-77],[-100,-104],[-48,-64],[-79,-89],[-49,-68],[-59,-61],[-29,-52],[-50,-75],[-56,-103],[-35,-71],[-29,-124],[-18,-43],[-40,-68],[-47,-71],[1,-80],[-18,-85],[-78,-139],[-42,-85],[-38,-61],[-38,-48],[-18,-29],[-39,-85],[-58,-85],[-115,-147],[-111,-152],[-248,-233],[-229,-249],[-335,-274],[-169,-54],[-69,-18],[-74,-96],[111,-138],[-11,-82],[49,-107],[-374,-11],[-554,-16],[-399,-10],[-598,-15],[-539,-14],[-1018,-26],[-339,-9],[-218,-7],[-651,-19],[-217,-6],[-427,-18],[-1280,-54],[-427,-18],[-234,-11],[-354,-14],[-531,-21],[-690,-43],[-511,-31],[-1016,-62],[-338,-20],[-28,67],[-10,32],[-18,86],[-33,105],[-80,312],[-98,342],[-60,162],[-51,315],[-37,160],[-34,188],[-30,93],[-12,158],[-3,66],[-6,49],[28,46],[15,31],[40,70],[56,62],[51,67],[70,104],[56,73],[83,132],[61,91],[63,125],[102,183],[7,36],[-91,13],[-115,52],[-75,62],[-22,55],[-23,72],[-3,34],[-10,18],[-120,122],[-71,89],[-49,96],[-1,119],[-11,42],[2,55],[28,90],[32,65],[-21,65],[-17,125],[10,57],[-8,31],[-29,-4],[-97,-32],[-91,3],[-145,59],[-41,30],[-41,64],[-35,110],[9,71],[24,74],[49,61],[80,64],[-2,63],[2,59],[26,70],[29,67],[38,46],[-4,74],[6,63],[18,81],[67,90],[-10,43],[-3,54],[19,75],[37,100],[-34,29],[-17,40],[-105,12],[-89,58],[-53,94],[-18,59],[0,59],[5,39],[23,86],[48,56],[49,48],[59,34],[13,13],[-29,40],[-21,47],[-9,40],[-2,85],[39,88],[-62,9],[-4,-11],[-103,-73],[-79,-23],[-100,-2],[-101,27],[-109,84],[-22,24],[-18,38],[-19,80],[4,61],[17,70],[16,29],[-22,23],[-38,79],[-13,43],[-12,59],[-2,55],[-35,-64],[-15,-59],[-20,-117],[-101,-190],[-174,-306],[-138,-250],[-100,-167],[-373,160],[-187,67],[-125,46],[-124,49],[-184,108],[-106,58],[-234,155],[-31,24],[-55,51],[-31,33],[-58,70],[-36,52],[-18,42],[-25,41],[-14,42],[-2,36],[8,43],[18,60],[23,55],[34,58],[34,42],[39,40],[73,46],[36,16],[72,42],[90,45],[44,43],[34,43],[22,38],[12,44],[9,49],[1,39],[-14,40],[-136,166],[-386,560],[-68,100],[-25,23],[-70,51],[-64,59],[-81,66],[-163,117],[-170,125],[-109,105],[-46,64],[-461,582],[-369,467],[-369,466],[-414,506],[-214,261],[-652,796],[-394,481],[-396,484],[-258,297],[-14,25],[-237,584],[-413,1019],[-673,1515],[-28,58],[-32,54],[-17,40],[-287,627],[-25,47],[-72,162],[-29,57],[-98,207],[-100,272],[-27,56],[-27,113],[-36,38],[-258,60],[-54,22],[-76,37],[-47,31],[-48,19],[-54,16],[-99,84],[-49,102],[-12,110],[5,107],[23,81],[20,32],[-28,117],[18,88],[-64,28],[-35,91],[1,128],[37,71],[25,88],[15,120],[25,105],[123,105],[253,137],[79,32],[39,21],[-18,157],[-52,-53],[-52,-40],[-28,-14],[-23,-1],[-111,-58],[-91,-27],[-148,-9],[-188,58],[-53,30],[-77,56],[-38,34],[-10,17],[-67,10],[-37,9],[-81,36],[-69,62],[-36,42],[-32,72],[-7,67],[-18,25],[-34,35],[-22,37],[-44,45],[-33,24],[-76,27],[-65,26],[-38,43],[-93,116],[-75,128],[-44,87],[-8,37],[-13,28],[-108,-82],[-96,-38],[-170,35],[-103,67],[-167,156],[-179,143],[-117,60],[-125,40],[-153,118],[-53,61],[-52,27],[-91,32],[-126,76],[-151,126],[-142,136],[-77,52],[-87,55],[-80,80],[-101,37],[-155,39],[-161,93],[-147,148],[-22,178],[-27,79],[-87,89],[-243,205],[-230,172],[-217,164],[-147,235],[22,222],[22,49],[-3,91],[-53,86],[-56,62],[-271,263],[-250,181],[-142,116],[-164,149],[-132,67],[-146,47],[-178,52],[-247,77],[-342,128],[-284,108],[-145,95],[-228,152],[-159,120],[-130,121],[-127,78],[-187,95],[-243,112],[-129,68],[-112,56],[-127,67],[-106,22],[-173,63],[-436,172],[-156,75],[-263,122],[-332,171],[-228,151],[-161,104],[-141,80],[-73,61],[-105,75],[-69,39],[-71,45],[-77,41],[-101,58],[-181,94],[-112,62],[-62,28],[-56,43],[-58,41],[-93,45],[-93,60],[-98,72],[-130,49],[-380,221],[-582,309],[-66,39],[-59,-2],[-37,-12],[-45,8],[-81,21],[-78,-6],[-188,10],[-86,8],[-84,-6],[-205,-5],[-173,6],[-96,12],[-97,23],[-100,39],[-93,30],[-116,19],[-74,18],[-53,-1],[-93,2],[-126,0],[-142,27],[-92,29],[-102,37],[-36,18],[0,132],[-565,181],[-783,263],[-420,159],[-510,193],[-1,-2],[-471,142],[-1067,323],[-1114,254],[-958,154],[-672,0],[-792,-200],[-925,-98],[-1303,-139],[-809,-94],[-710,-2],[-396,-423],[-545,-581],[-465,-156],[-475,47],[-358,297],[1,297],[480,548],[361,497],[-239,395],[-596,297],[-1137,96],[-776,194],[-644,265],[-430,176],[-716,344],[-538,-3],[-716,-200],[-775,-300],[-236,-92],[-949,-338],[-724,-291],[-224,-37],[-351,-94],[-210,-164],[-284,-317],[-103,-202],[-35,-231],[0,-260],[-190,-260],[-243,-130],[-415,-216],[-587,-188],[-467,-29],[-484,43],[-294,144],[-216,271],[-416,347],[-772,100],[-595,-50],[-1247,50],[-76,5],[-266,-73],[-757,-207],[-408,-378],[-291,-269],[-175,-385],[-182,-401],[-186,-409],[-656,-283],[-689,-297],[-951,-404],[-654,-284],[-108,-34],[-87,-34],[-72,-24],[-66,-33],[-78,-28],[-65,-19],[-423,-167],[-207,-66],[-49,-25],[-62,-16],[-675,-295],[-70,-18],[-860,-232],[-97,-37],[-118,-35],[-206,-85],[-246,-64],[-166,-22],[-207,-13],[-457,-41],[-622,-52],[-788,-83],[-684,-72],[-1314,-139],[-577,-61],[-755,-80],[-259,-252],[-317,-309],[37,-32],[30,-43],[26,-65],[18,-72],[4,-67],[-3,-58],[-21,-69],[-30,-73],[-69,-89],[-57,-37],[48,-41],[44,-55],[22,-55],[15,-59],[-3,-57],[-32,-79],[-39,-71],[-96,-75],[-108,-52],[-118,-3],[-103,13],[-38,22],[-65,-89],[-74,-91],[-50,-50],[-108,-54],[-213,-104],[-58,-25],[74,-105],[22,-72],[17,-74],[-17,-77],[-35,-72],[-25,-36],[-82,-63],[-82,-41],[-148,-27],[-126,-9],[-17,-54],[-43,-76],[-65,-67],[-92,-50],[-135,-36],[-90,21],[-83,13],[-131,28],[-74,30],[-40,35],[-37,-160],[-82,-90],[-84,-69],[-48,-22],[-8,-45],[0,-59],[26,-45],[14,-91],[30,-37],[20,-64],[6,-77],[-6,-59],[-49,-77],[-72,-98],[-58,-86],[-59,-54],[-92,-30],[-64,-11],[-113,-234],[-86,-148],[-45,-96],[-47,-169],[-2,-69],[-21,-81],[-39,-75],[-45,-48],[-46,-27],[-46,-19],[-6,-85],[-32,-105],[-50,-76],[-76,-53],[-88,-36],[-112,-26],[-30,-82],[-62,-67],[-67,-56],[-31,-39],[-80,-43],[-97,-21],[-68,-3],[-67,-58],[-64,-51],[-66,-50],[-526,-64],[-175,9],[-193,-25],[-104,0],[-126,-18],[-137,-76],[-101,-38],[-87,-20],[-139,18],[-88,31],[-101,92],[-166,-49],[-46,-147],[-56,-127],[-39,-191],[-47,-183],[-99,-154],[-7,-20],[-36,-51],[-33,-70],[-61,-55],[-64,-44],[-72,-23],[-105,-19],[-112,15],[36,-108],[2,-127],[-103,-103],[-109,-93],[-54,-101],[-72,-100],[-110,-32],[2,-35],[-16,-76],[-69,-81],[-95,-58],[-119,-46],[-66,6],[-185,38],[-98,30],[-457,-171],[-42,15],[-136,-49],[25,-90],[-16,-151],[-21,-121],[-9,-102],[-79,-81],[-46,-20],[-136,-43],[-159,10],[-112,-21],[-73,13],[-98,-2],[-22,-52],[-105,-132],[-139,-189],[-70,-117],[-139,-98],[-85,-21],[-337,-72],[-57,-66],[-96,-86],[-90,-45],[-8,-17],[-5,-52],[-47,-97],[-44,-41],[-15,-49],[-52,-115],[-111,-221],[19,-67],[58,-86],[38,-129],[-47,-189],[-123,-167],[-190,-163],[14,-107],[3,-111],[-74,-109],[-93,-69],[1,-249],[3,-748],[2,-249],[-404,-419],[-348,-361],[-482,-500],[-137,-145],[-388,-393],[-280,-281],[-232,-231],[-444,-457],[-256,-264],[-435,-449],[-144,-149],[-146,-153],[-437,-457],[-247,-259],[-405,-424],[-302,-312],[-209,-214],[-381,-386],[-234,-246],[-731,-780],[-2000,-17],[-621,-10],[-615,1],[-263,1],[-812,-11],[-39,-55],[-70,-60],[-84,-45],[-31,-2],[37,-85],[8,-44],[17,-65],[-4,-54],[-23,-49],[-94,-102],[-52,-22],[-112,-23],[-93,-4],[-79,0],[-49,15],[-29,16],[-759,-90],[-286,-34],[-2,-31],[-41,-72],[-66,-77],[-46,-46],[-25,-55],[-57,-39],[-43,-15],[-38,-5],[-64,-189],[23,-53],[-9,-44],[17,-21],[150,-34],[22,-9],[19,10],[32,-26],[49,-57],[41,-42],[38,-74],[66,-109],[61,24],[56,17],[56,6],[142,-29],[58,-30],[37,-34],[43,-30],[42,-39],[90,-140],[32,-100],[8,-51],[-1,-27],[11,-51],[30,-117],[22,-64],[7,22],[49,42],[63,38],[61,20],[68,2],[27,-4],[19,25],[40,43],[50,35],[72,41],[21,28],[11,45],[95,184],[39,48],[62,46],[79,34],[79,14],[60,-2],[123,-42],[115,-79],[29,-38],[19,-39],[13,-51],[2,-75],[-2,-70],[-5,-50],[-26,-28],[-46,-29],[-2,-31],[7,-51],[-7,-74],[-20,-62],[-4,-64],[31,-74],[36,-81],[12,-85],[3,-60],[-14,-121],[-10,-29],[86,7],[73,-22],[39,-25],[22,-22],[20,16],[74,15],[64,-10],[53,-13],[32,-13],[17,-17],[21,4],[57,-21],[68,-43],[60,-65],[26,-59],[17,-66],[4,-131],[-32,-101],[-55,-48],[-84,-63],[-12,-3],[20,-37],[57,-35],[69,-55],[36,-11],[85,-33],[110,-79],[52,-41],[27,-37],[28,-51],[17,-61],[5,-85],[-26,-76],[-48,-98],[-63,-85],[-77,-97],[-103,-119],[-89,-75],[-68,-30],[-52,-16],[-59,-9],[-82,10],[-117,33],[-101,56],[-65,70],[-52,103],[-31,20],[-45,62],[-51,110],[-1,17],[-27,10],[-64,-20],[-80,15],[-82,33],[-54,41],[-38,38],[-43,55],[-18,56],[4,53],[17,101],[1,46],[-10,48],[-14,19],[-47,47],[-15,21],[-55,-22],[-42,-1],[-42,11],[-78,-16],[-77,4],[-56,-5],[-45,5],[-76,34],[-32,25],[13,14],[-74,104],[-14,-103],[-22,-57],[-93,-106],[-27,-19],[-19,-1],[16,-29],[7,-40],[-10,-53],[-19,-55],[-47,-71],[-96,-93],[-106,-42],[-102,11],[-113,30],[-106,56],[-43,41],[-34,-75],[-44,-74],[-55,-54],[-84,-44],[-84,-23],[-111,9],[-73,29],[-26,25],[-15,-29],[-11,-93],[-42,-84],[-60,-68],[-89,-82],[-107,-80],[-78,-46],[-74,-17],[-47,-5],[-57,20],[-68,48],[-90,84],[-46,79],[-28,71],[1,24],[-23,24],[-25,78],[-22,99],[0,84],[-3,55],[3,72],[26,111],[32,56],[64,64],[39,34],[-14,29],[1,28],[10,35],[20,48],[68,48],[56,47],[47,32],[-42,36],[-20,37],[-10,90],[8,128],[-54,93],[-38,132],[12,75],[51,83],[89,78],[110,45],[29,70],[57,76],[102,55],[41,9],[0,80],[30,88],[39,77],[-32,21],[-59,67],[-40,108],[-2,43],[-50,50],[-16,48],[-15,108],[-35,45],[-10,73],[-79,63],[-46,-37],[69,-103],[12,-83],[-19,-110],[-60,-97],[8,-24],[7,-67],[-30,-91],[-127,-209],[-50,-41],[-101,-26],[-114,1],[-47,17],[-4,-70],[-32,-110],[-59,-63],[-63,-48],[-23,-81],[-45,-55],[-30,-19],[-27,-66],[53,-78],[17,-108],[-14,-65],[-61,-109],[-44,-59],[-62,-37],[-48,-13],[-97,-13],[-123,34],[-67,35],[-66,92],[-23,65],[-15,111],[14,63],[-32,25],[-17,-17],[-129,5],[-39,19],[-64,45],[-74,1],[-37,26],[-49,-71],[-76,-63],[-146,-105],[-85,-13],[-93,-2],[-109,43],[-65,52],[-48,62],[-29,103],[2,63],[20,67],[-16,99],[4,40],[-108,109],[-21,59],[-4,80],[34,127],[38,80],[-58,85],[-19,65],[5,100],[14,62],[-38,112],[-14,82],[7,34],[25,60],[47,87],[51,47],[60,81],[25,12],[2,45],[15,48],[44,66],[57,68],[-76,-4],[-96,7],[-19,-21],[-69,-64],[-223,-142],[-412,-219],[-93,-34],[-33,-62],[-20,-18],[-40,-21],[-98,-69],[-95,-31],[-22,-20],[-48,-5],[3,-14],[67,-11],[121,-49],[45,56],[67,50],[89,54],[86,20],[50,-1],[75,-25],[69,-42],[64,-60],[41,-58],[13,-46],[11,-80],[-11,-67],[-37,-71],[-47,-56],[-67,-54],[-77,-34],[-92,-12],[-89,10],[-84,49],[-44,-67],[-47,-39],[-84,-34],[-103,-26],[-50,-3],[-17,-38],[31,-79],[4,-56],[-13,-59],[-15,-39],[17,-113],[-29,-79],[-62,-77],[-67,-47],[-79,-31],[-114,-8],[-88,23],[-17,0],[-43,-62],[-39,-38],[-67,-30],[0,-27],[36,-13],[62,-31],[57,-50],[44,-70],[29,-83],[2,-55],[-25,-108],[-53,-63],[-69,-70],[-33,-15],[-48,-16],[-57,-5],[-27,9],[-7,-17],[-30,-34],[-35,-23],[-31,-7],[-81,27],[-41,-2],[-75,-15],[-98,17],[-49,18],[-35,25],[-26,35],[-24,-25],[-41,-16],[-87,-19],[-59,-7],[-53,0],[-45,17],[19,-95],[0,-86],[-29,-56],[-46,-63],[-78,-56],[-25,-12],[25,-24],[67,-17],[83,-34],[54,-45],[40,-66],[29,-77],[10,-58],[50,-9],[64,-56],[74,-87],[42,-98],[-5,-73],[-16,-66],[-20,-73],[-49,-63],[-51,-43],[-124,-36],[-116,9],[-68,33],[-22,23],[-16,-26],[-26,-22],[-154,-67],[-43,1],[3,-19],[-62,-102],[-95,-81],[-111,-48],[-74,30],[-19,-13],[-26,-6],[-51,3],[-99,25],[-66,23],[-75,75],[-27,50],[-8,-12],[-58,-16],[-101,37],[-6,-14],[-48,-22],[-65,-38],[-39,-6],[19,-17],[52,-92],[12,-27],[16,-128],[-21,-83],[-48,-74],[-52,-39],[-60,-23],[-88,-17],[-199,47],[-92,76],[-23,-18],[-43,-9],[-90,11],[-29,11],[-10,-128],[-37,-77],[-94,-121],[-105,-42],[-45,4],[16,-20],[7,-90],[1,-65],[-24,-80],[-56,-82],[-96,-58],[-95,-16],[-73,6],[-57,10],[-50,26],[-79,73],[-52,94],[-14,101],[19,100],[50,69],[-33,24],[-14,20],[-36,87],[-9,70],[24,103],[52,108],[32,45],[-62,22],[-105,72],[-68,70],[-46,72],[-36,105],[-19,139],[28,89],[49,69],[33,28],[39,23],[54,11],[51,32],[-40,31],[-44,45],[-21,32],[-91,-3],[-109,25],[-108,67],[-67,107],[1,77],[14,112],[29,72],[85,86],[12,20],[-44,-9],[-38,13],[-39,24],[-52,45],[-45,52],[-37,-46],[-81,-51],[-70,-30],[-46,5],[-37,-41],[-54,-36],[-103,-35],[-76,-11],[-26,6],[-3,-61],[-45,-70],[-63,-56],[-87,-48],[-130,-20],[-36,-4],[-54,28],[-77,58],[-75,73],[-55,63],[-337,-17],[1,-58],[-22,-45],[-37,-46],[-62,-41],[-46,-3],[-18,-39],[-19,-23],[-41,-32],[-18,-1],[-16,-56],[25,-8],[26,-35],[18,7],[24,-5],[37,-22],[46,-57],[75,-62],[46,-89],[35,-22],[37,-35],[32,-37],[31,-66],[26,-39],[44,-39],[54,-54],[56,-83],[14,-73],[9,-82],[36,-93],[-10,-36],[-54,-53],[-57,-75],[-48,-82],[-92,-72],[-118,-28],[-74,14],[-105,15],[-58,26],[-51,-14],[-186,5],[-66,8],[-46,10],[-48,-5],[-77,-22],[-162,-27],[-145,-7],[-132,-19],[-103,-18],[-49,0],[-29,14],[-31,-37],[-32,-31],[-44,-24],[-93,-26],[-30,-2],[-11,-41],[-42,-83],[-36,-52],[-44,-33],[-47,-27],[-43,-10],[-104,9],[-128,48],[-154,74],[-139,46],[-159,11],[-143,-4],[-138,-8],[-137,3],[-143,-8],[-128,-4],[-116,-10],[-57,-18],[-106,8],[-86,-8],[-100,-20],[-135,-23],[-103,-41],[-87,-46],[-101,-50],[-80,-52],[-30,-33],[-13,-44],[12,-60],[-27,-71],[-18,-56],[-3,-59],[-28,-67],[-66,-111],[-67,-68],[-73,-81],[-108,-86],[-138,-69],[-32,-36],[-70,-56],[-150,-28],[-84,21],[-21,12],[-20,-21],[-33,-16],[-136,-45],[-84,-20],[-61,-38],[-125,-38],[-164,-8],[-117,21],[-33,17],[-30,-17],[-33,-13],[-60,-10],[-126,11],[-102,37],[-187,96],[-46,11],[-106,62],[-83,98],[-131,203],[-38,83],[-36,21],[-45,74],[-30,121],[-15,76],[-27,58],[-39,113],[-10,109],[-5,78],[-20,51],[2,85],[32,91],[27,84],[71,113],[74,54],[172,112],[95,67],[92,52],[47,4],[100,65],[93,22],[92,3],[34,50],[60,99],[41,77],[35,83],[101,165],[10,84],[17,79],[54,88],[44,43],[69,116],[26,239],[23,89],[34,62],[48,72],[46,39],[66,22],[8,19],[28,36],[69,38],[76,79],[36,29],[69,12],[93,29],[129,20],[72,-1],[124,-30],[78,-30],[78,-41],[66,-41],[45,-20],[34,6],[107,67],[45,38],[100,114],[46,27],[34,33],[56,36],[107,51],[170,14],[85,-14],[135,29],[113,94],[43,57],[132,135],[55,51],[58,34],[75,34],[88,4],[49,-5],[19,-7],[35,-1],[84,42],[42,27],[67,28],[64,14],[55,4],[141,-38],[46,-16],[66,-13],[115,-16],[125,-8],[159,24],[63,16],[126,65],[85,30],[106,44],[68,23],[63,42],[299,176],[54,40],[178,121],[163,78],[131,74],[109,38],[92,19],[33,14],[25,23],[128,149],[407,429],[87,107],[15,28],[28,32],[5,30],[33,72],[44,38],[62,36],[55,62],[69,56],[81,51],[144,74],[83,44],[86,41],[111,43],[105,19],[56,6],[27,25],[22,37],[34,42],[46,43],[129,54],[50,44],[83,60],[83,75],[117,185],[49,71],[105,99],[196,212],[67,93],[78,95],[48,77],[76,95],[65,93],[61,72],[47,45],[61,42],[76,48],[70,48],[77,65],[132,79],[39,69],[62,93],[33,44],[49,34],[59,26],[83,24],[48,3],[20,6],[20,18],[41,22],[20,52],[18,19],[76,39],[32,-13],[75,61],[151,178],[113,128],[170,118],[115,59],[137,22],[203,49],[281,107],[175,77],[214,45],[44,6],[53,32],[114,15],[181,46],[181,70],[407,184],[181,70],[180,23],[407,0],[407,46],[226,0],[249,-23],[158,-23],[339,0],[136,-23],[113,69],[90,116],[45,92],[45,231],[46,139],[22,139],[40,74],[23,22],[43,57],[18,37],[46,111],[92,254],[93,133],[93,75],[200,122],[87,78],[66,93],[90,132],[127,148],[217,124],[186,61],[149,85],[131,97],[135,113],[75,105],[43,51],[28,17],[84,105],[84,80],[123,73],[107,49],[113,64],[145,63],[132,63],[190,75],[136,78],[199,84],[278,173],[128,107],[142,110],[174,80],[89,21],[65,33],[156,86],[190,91],[216,119],[204,136],[122,87],[132,135],[122,113],[99,89],[75,55],[89,55],[56,47],[91,40],[44,126],[23,73],[29,105],[229,564],[473,1164],[188,554],[200,593],[66,150],[33,91],[67,285],[83,181],[49,256],[67,195],[66,316],[83,256],[463,1461],[79,263],[180,595],[55,255],[83,213],[13,79],[21,73],[62,128],[14,67],[169,529],[95,355],[-300,338],[-72,-15],[-75,-4],[-83,12],[-663,-243],[-723,-261],[2,-54],[-34,-73],[-37,-68],[-47,-51],[-58,-34],[-61,-23],[-62,-10],[-45,-77],[-63,-71],[-87,-72],[-99,-51],[-133,-45],[-104,-20],[-130,-10],[-124,6],[-105,23],[-85,34],[-18,-25],[-76,-46],[-94,-37],[-103,1],[-110,29],[-102,48],[-89,72],[-54,59],[-41,87],[-9,58],[1,48],[38,71],[-895,1450],[-494,652],[-29,12],[-99,12],[-107,-2],[-228,42],[-62,19],[-30,21],[-60,-115],[-104,-94],[-224,-144],[-163,-78],[-127,-41],[-160,17],[-127,74],[-104,81],[-35,88],[-49,24],[-36,37],[-51,79],[-45,33],[-83,96],[-50,-70],[-35,-44],[-50,-38],[-83,-47],[-76,-15],[-129,4],[-89,23],[-139,85],[-86,61],[-45,78],[-57,128],[-25,79],[24,58],[-27,44],[-24,51],[-6,33],[-751,-171],[-188,-43],[38,-54],[16,-72],[-10,-101],[-19,-64],[-35,-81],[-53,-108],[-82,-139],[-47,-102],[-52,-88],[-40,-79],[-38,-106],[-165,-269],[-56,-104],[-87,-151],[-9,-42],[0,-58],[-42,-75],[-59,-69],[-87,-88],[-110,-83],[-98,-45],[-112,-35],[-110,-3],[-180,43],[-107,-48],[-76,-29],[-100,1],[-160,77],[-63,53],[-34,72],[-31,103],[-33,178],[6,82],[28,114],[-201,210],[-70,-51],[-163,-96],[-78,-37],[-53,-19],[-58,-28],[-69,-9],[-98,-20],[-62,-15],[-59,-27],[-81,-31],[-13,-34],[-64,-74],[-36,-31],[-48,-29],[-63,-31],[-138,-39],[-39,-6],[-3,-50],[-16,-36],[-36,-61],[-39,-33],[-67,-35],[-82,-25],[-65,-11],[-63,1],[-98,-22],[-43,-2],[-41,13],[-75,-16],[-63,5],[-124,28],[-55,23],[-32,39],[-63,63],[-37,51],[-21,41],[-12,39],[-2,117],[5,15],[-51,13],[-36,-2],[-74,13],[-7,-8],[-67,-30],[-118,1],[-28,8],[-38,-21],[-58,-18],[-66,3],[-72,27],[-19,12],[-35,-9],[-102,-11],[-61,10],[-117,28],[-60,27],[-51,47],[-29,33],[-55,-4],[-41,5],[-41,15],[-69,34],[-58,47],[-84,90],[-26,62],[-11,78],[19,43],[5,38],[18,42],[66,54],[85,50],[9,26],[29,29],[43,29],[64,36],[59,24],[68,9],[73,7],[52,17],[80,39],[64,10],[89,-5],[35,-9],[61,25],[66,4],[62,0],[76,-5],[49,-11],[-5,27],[8,20],[53,92],[36,36],[61,34],[28,10],[-1,35],[14,55],[18,39],[90,100],[44,37],[-19,42],[-7,40],[3,48],[-28,56],[-25,38],[-32,63],[-20,80],[-5,59],[2,94],[20,190],[3,79],[-15,56],[-58,138],[-41,70],[-46,64],[-93,185],[-35,39],[-134,179],[-23,-87],[-32,29],[-106,109],[-93,121],[-103,167],[-71,191],[-69,169],[-78,194],[-25,134],[16,160],[75,109],[46,71],[19,45],[54,110],[102,103],[63,54],[8,69],[4,151],[28,64],[140,134],[42,31],[80,40],[74,20],[35,29],[25,29],[95,66],[15,62],[24,44],[12,61],[19,55],[83,100],[-466,695],[-34,5],[-25,38],[-80,108],[-79,169],[-12,95],[-23,8],[-83,93],[-30,118],[-29,12],[-83,94],[-78,159],[-63,87],[-29,23],[-28,-39],[-118,-33],[-104,-1],[-142,32],[-71,4],[-75,-15],[-90,6],[-166,72],[-107,120],[-36,187],[7,48],[-52,5],[-176,29],[-170,37],[-155,-49],[-202,7],[-123,13],[0,-11],[-32,-57],[-194,-131],[-197,-100],[10,-73],[-2,-86],[-36,-70],[-150,-118],[-278,-70],[-97,26],[-40,-19],[-140,-11],[-282,62],[-142,101],[-69,-26],[-221,-31],[-131,-31],[-230,-63],[-206,-31],[-142,-20],[-225,-20],[-317,-33],[-231,-47],[-213,-14],[-271,-4],[-241,40],[-458,81],[-40,14],[-15,-19],[-7,-32],[58,-15],[62,-31],[46,-65],[115,-55],[83,-68],[20,-5],[38,13],[117,14],[119,-9],[91,-44],[137,-132],[32,-103],[-16,-81],[-24,-48],[-34,-39],[-180,-109],[-124,-17],[-140,66],[-117,64],[-23,0],[-77,-27],[-100,-8],[-81,9],[-50,11],[-238,189],[-107,137],[-48,129],[-34,6],[-58,29],[-150,86],[-133,92],[-155,146],[-136,162],[-83,135],[-35,109],[-62,60],[-91,68],[-91,84],[-18,128],[-51,114],[-51,154],[52,91],[52,53],[67,45],[131,77],[75,22],[-70,14],[-96,32],[-93,62],[-44,36],[-12,-9],[-48,25],[-136,135],[-14,6],[-117,215],[-97,108],[-92,130],[-56,98],[-24,48],[-95,37],[-121,63],[-107,97],[-78,91],[-81,116],[-53,72],[-73,1],[-121,15],[-167,34],[-156,53],[-169,74],[-102,35],[-105,98],[-140,98],[-202,139],[-151,134],[-125,135],[-105,138],[-45,45],[-57,72],[-15,104],[-43,-6],[-65,-2],[-64,5],[-72,32],[-88,64],[-127,-6],[-64,8],[-63,35],[-74,51],[-60,60],[-17,59],[-68,45],[-48,58],[-72,78],[-44,78],[-23,72],[8,81],[48,73],[68,87],[22,23],[0,24],[14,28],[39,42],[65,56],[54,27],[69,23],[124,24],[126,12],[24,43],[37,35],[49,38],[62,42],[161,55],[12,48],[72,70],[62,28],[70,25],[72,18],[14,42],[48,61],[39,37],[43,28],[-22,21],[-33,57],[-17,50],[10,43],[-37,28],[-27,32],[-25,43],[-35,72],[2,63],[27,65],[37,63],[-46,61],[-25,47],[0,63],[25,105],[-31,30],[-50,18],[-106,65],[-32,43],[-16,38],[-33,14],[-59,60],[-27,39],[-19,45],[6,50],[-67,47],[-16,26],[-15,44],[-5,73],[8,65],[27,54],[67,87],[45,40],[25,76],[65,89],[-34,20],[-43,-16],[-36,-39],[-77,-58],[-199,-107],[-248,-18],[-198,43],[-233,40],[-240,77],[-201,103],[-80,86],[-108,138],[-94,167],[-80,227],[-73,195],[-53,30],[-74,80],[-39,58],[-13,67],[-80,36],[-79,39],[-73,31],[-70,46],[-60,64],[-48,105],[-92,84],[-38,46],[-20,58],[-9,52],[-30,48],[-37,48],[-22,53],[-31,100],[4,98],[-68,32],[-237,170],[-121,78],[-111,63],[-39,31],[-131,215],[-80,147],[-94,235],[-28,104],[8,129],[23,110],[52,144],[18,68],[-7,93],[0,108],[17,94],[32,77],[36,104],[10,136],[-8,95],[27,103],[58,108],[55,100],[92,104],[99,64],[110,57],[20,189],[43,237],[45,98],[16,60],[6,53],[-40,43],[-33,46],[-77,65],[-41,91],[14,78],[105,201],[166,200],[154,90],[70,15],[132,-8],[165,-32],[10,45],[22,65],[64,70],[92,62],[99,31],[25,58],[74,81],[77,47],[110,37],[21,40],[42,63],[120,102],[66,62],[34,78],[135,159],[180,185],[157,172],[272,218],[36,121],[70,166],[138,169],[-31,90],[17,68],[50,80],[82,93],[-16,122],[43,163],[96,113],[122,80],[225,30],[-92,114],[-31,81],[8,82],[-33,58],[-14,116],[42,102],[89,73],[99,43],[101,35],[139,27],[126,-7],[97,-31],[35,48],[50,44],[60,37],[68,5],[56,21],[-56,81],[-24,18],[-26,38],[-7,46],[13,47],[-29,21],[-53,96],[16,93],[18,38],[33,51],[80,84],[55,28],[59,17],[89,19],[8,50],[52,75],[22,20],[-22,57],[4,50],[11,42],[57,94],[22,24],[-26,48],[9,96],[13,35],[-36,27],[-20,91],[7,30],[62,81],[-35,82],[-13,68],[24,43],[69,76],[177,97],[205,46],[76,3],[24,15],[-11,99],[68,83],[126,117],[103,119],[189,198],[402,299],[354,166],[513,137],[428,69],[274,12],[126,-20],[292,-80],[220,-92],[39,11],[127,-14],[183,-44],[122,-58],[112,-30],[168,-65],[158,-122],[101,-133],[151,-49],[170,-69],[58,-18],[79,-43],[135,-108],[237,-189],[344,-181],[472,53],[57,67],[135,104],[135,130],[48,25],[123,47],[70,63],[12,76],[60,146],[73,91],[163,132],[227,72],[237,17],[138,129],[120,149],[444,558],[364,457],[-38,11],[-70,2],[-133,-36],[-165,-32],[-96,24],[-109,-21],[-111,11],[-133,39],[-62,43],[-49,56],[-57,26],[-72,27],[-89,68],[-42,81],[-147,190],[2,49],[35,107],[105,120],[82,49],[114,108],[117,72],[22,24],[107,49],[99,18],[66,37],[106,33],[142,19],[105,-9],[118,-47],[99,24],[96,4],[111,-9],[132,-39],[64,-36],[46,2],[76,-21],[105,-70],[71,-78],[16,-105],[26,-23],[61,-86],[9,-73],[178,-58],[139,-32],[157,-29],[300,-73],[84,-12],[81,-26],[64,-60],[49,-61],[51,-98],[51,-65],[52,-32],[75,-38],[70,-17],[67,7],[61,24],[57,5],[49,0],[99,22],[96,48],[110,18],[97,-2],[65,-12],[71,-21],[66,-26],[96,19],[164,60],[62,11],[82,-3],[141,-15],[86,-3],[203,5],[186,13],[103,24],[53,40],[35,73],[41,54],[84,72],[81,132],[35,24],[142,54],[33,20],[13,61],[-4,61],[63,82],[85,97],[98,47],[163,44],[55,34],[42,69],[241,301],[95,96],[54,77],[33,147],[-11,89],[-27,72],[-39,50],[-58,106],[-18,48],[-30,163],[-27,119],[-29,76],[-60,91],[-59,72],[-37,68],[-72,104],[-27,58],[-6,53],[-96,139],[-12,51],[-54,189],[-22,122],[29,165],[-24,27],[-26,54],[-3,63],[11,154],[-4,242],[-58,50],[-308,248],[-263,237],[-259,203],[-308,143],[-51,-48],[-52,-59],[-72,-39],[-106,-29],[-106,-3],[-110,5],[-128,39],[-266,145],[-358,164],[-201,99],[-627,306],[-92,15],[-141,65],[-369,187],[-230,113],[-181,67],[-87,40],[-112,-49],[-142,-70],[-200,-105],[-106,-100],[-52,-92],[-4,-78],[-15,-99],[-44,-131],[-28,-146],[-19,-45],[-142,-168],[-130,-101],[-134,-38],[-77,-54],[-108,-106],[-152,-97],[-239,-69],[-164,44],[-303,100],[-643,220],[-197,66],[-73,3],[-102,17],[-94,43],[-94,86],[-106,104],[-87,83],[-93,173],[-50,46],[-102,49],[-139,73],[-91,90],[-277,124],[-269,83],[-158,23],[-167,-13],[-163,0],[-132,26],[-93,41],[-62,-39],[-67,-29],[-103,-24],[-116,-12],[-225,-29],[-213,25],[-510,41],[-301,-8],[-315,-57],[-388,-142],[-546,-229],[-477,-212],[-174,-39],[-370,-43],[-163,-5],[-104,-14],[-61,-3],[-108,-11],[-510,146],[-562,181],[-441,77],[-57,0],[-636,132],[-84,18],[-196,25],[-403,35],[-341,60],[-328,73],[-135,21],[17,-59],[8,-117],[-27,-56],[-61,-120],[-134,-125],[-72,-30],[-206,-18],[-211,46],[-150,96],[-129,136],[-10,166],[81,112],[97,66],[78,45],[-250,134],[-311,204],[-180,91],[-59,72],[-76,153],[-100,238],[-115,232],[15,158],[30,68],[-33,136],[16,120],[43,65],[91,71],[96,68],[-19,80],[-235,215],[-400,207],[-210,113],[-76,94],[-161,114],[16,105],[-190,72],[-356,229],[-219,231],[-113,169],[-40,100],[42,256],[117,252],[108,193],[110,122],[101,59],[-429,114],[-427,58],[-286,3],[-454,53],[-310,76],[-416,147],[-206,114],[-165,126],[-160,117],[-161,69],[-101,38],[-233,63],[-90,88],[-56,47],[-116,1],[-118,24],[-94,30],[-86,44],[-36,32],[-19,-2],[-71,11],[-126,37],[-93,49],[-52,46],[-27,51],[-3,41],[-150,193],[-47,154],[10,160],[28,146],[74,139],[159,168],[151,92],[125,68],[133,54],[124,53],[128,36],[299,131],[581,183],[700,251],[750,383],[247,154],[212,166],[603,301],[620,346],[399,214],[340,151],[505,219],[576,232],[368,168],[420,203],[619,262],[498,210],[625,238],[588,213],[502,153],[542,156],[478,132],[204,57],[230,66],[173,35],[282,81],[213,45],[272,53],[260,45],[193,36],[80,17],[139,22],[152,10],[378,29],[188,9],[562,20],[280,4],[289,0],[250,-5],[88,-3],[173,-13],[155,-19],[158,-29],[99,-23],[47,-15],[374,238],[412,261],[708,417],[558,361],[236,153],[301,167],[142,100],[74,57],[-56,28],[-70,70],[-32,24],[-163,54],[-279,111],[-168,60],[-69,16],[-72,5],[-143,26],[-71,30],[-673,150],[-226,23],[-294,51],[-459,59],[-579,121],[-459,203],[-282,250],[-40,143],[105,109],[37,31],[134,63],[102,36],[46,7],[-81,223],[-202,493],[-147,344],[-121,171],[-276,421],[-207,276],[-194,159],[-180,96],[-175,70],[-228,98],[-336,154],[-207,86],[-375,176],[-34,33],[-363,252],[-856,524],[-693,423],[-1036,659],[-60,28],[-102,31],[-78,17],[-132,22],[-182,18],[-101,-79],[-156,15],[-127,2],[-194,15],[-126,24],[-128,43],[-82,36],[-127,48],[-104,65],[-59,28],[-165,70],[-30,28],[-118,133],[-40,76],[-17,48],[-36,73],[-50,60],[-78,69],[-84,46],[-90,58],[-122,69],[-150,82],[-160,75],[-159,67],[-159,78],[-297,89],[-160,58],[-196,35],[-275,46],[-307,16],[-131,-47],[-109,-24],[-57,1],[-201,31],[-76,29],[-82,54],[-99,53],[-23,23],[-20,40],[0,73],[49,70],[76,81],[98,74],[66,37],[81,9],[52,12],[83,57],[71,42],[183,93],[60,24],[43,8],[64,1],[81,12],[322,86],[127,37],[112,28],[299,104],[32,21],[12,32],[-4,65],[16,66],[22,45],[0,55],[5,67],[29,63],[47,53],[50,38],[33,38],[65,62],[14,50],[-11,69],[-2,86],[33,106],[-5,58],[-30,81],[39,103],[110,153],[-36,80],[-1,69],[24,38],[4,27],[-7,40],[4,51],[38,169],[-10,75],[-25,53],[-56,148],[-19,84],[-53,124],[11,114],[60,103],[16,37],[42,50],[34,28],[93,44],[197,50],[116,21],[72,1],[156,-28],[110,-10],[133,2],[100,-14],[165,-3],[86,-13],[209,-6],[341,-7],[154,-11],[186,-18],[192,-14],[265,-5],[126,11],[202,-15],[209,13],[223,9],[105,14],[130,11],[66,-1],[147,33],[191,19],[154,26],[85,-1],[223,21],[203,49],[143,-29],[238,10],[178,4],[247,23],[366,67],[198,34],[291,6],[387,25],[358,26],[133,8],[206,61],[229,96],[60,23],[89,41],[280,108],[149,65],[129,88],[106,62],[281,119],[218,117],[53,22],[68,41],[71,58],[53,48],[78,64],[55,38],[115,88],[42,48],[60,84],[49,87],[40,32],[128,90],[56,57],[46,40],[525,392],[84,81],[64,107],[31,44],[66,107],[56,131],[44,175],[24,167],[-21,146],[-4,65],[5,179],[11,156],[-6,90],[-17,74],[-11,99],[28,258],[25,90],[20,46],[33,43],[24,60],[8,86],[35,113],[61,104],[92,222],[24,91],[42,107],[64,103],[99,95],[105,96],[115,113],[90,96],[126,107],[156,111],[139,109],[121,100],[71,72],[102,117],[298,288],[359,389],[313,308],[606,400],[332,172],[322,181],[351,158],[410,187],[238,89],[205,37],[199,-19],[182,-29],[293,-44],[420,-61],[427,-37],[569,11],[357,58],[732,240],[866,324],[843,454],[264,169],[660,422],[502,365],[660,395],[230,181],[250,166],[184,106],[567,166],[425,93],[597,150],[307,68],[289,43],[198,20],[180,7],[57,6],[155,40],[109,24],[105,14],[127,9],[121,3],[179,22],[80,2],[130,-4],[133,-26],[174,-60],[24,-19],[61,-70],[30,-53],[94,-104],[23,-17],[100,-40],[122,-38],[112,-29],[206,-35],[226,-29],[242,-22],[129,1],[211,18],[245,47],[293,65],[165,44],[66,20],[189,51],[144,52],[385,170],[115,56],[237,98],[66,32],[161,87],[48,22],[192,143],[72,40],[75,60],[118,72],[140,109],[86,112],[67,40],[100,89],[65,83],[99,84],[91,81],[98,76],[72,71],[125,117],[99,87],[217,175],[128,99],[99,94],[99,78],[105,102],[100,63],[138,76],[62,39],[40,34],[59,59],[152,86],[428,100],[119,38],[12,35],[45,63],[89,51],[96,34],[95,28],[93,23],[125,17],[60,2],[117,-11],[139,-23],[119,-37],[117,-40],[98,-74],[30,9],[75,-1],[82,-21],[62,-21],[85,-46],[156,-24],[135,-30],[398,-104],[89,-31],[132,-11],[172,-40],[172,-100],[89,-74],[74,-73],[56,-78],[80,-83],[42,16],[86,16],[111,5],[117,-4],[346,-53],[66,-22],[192,-5],[182,-28],[194,-66],[153,-64],[133,-45],[263,-60],[121,-12],[173,-8],[163,-17],[112,-38],[81,-40],[27,-24],[56,-2],[66,-9],[313,-109],[183,-73],[181,-75],[134,-60],[146,-76],[143,-78],[120,-82],[119,-75],[177,-107],[119,-63],[142,-57],[438,-267],[163,-28],[717,-207],[787,-227],[90,25],[133,10],[76,-2],[50,18],[184,11],[472,-36],[429,-16],[131,28],[285,82],[220,75],[253,70],[193,-4],[92,3],[138,15],[187,-12],[87,-31],[160,18],[57,46],[156,-24],[74,-25],[17,-14],[219,25],[104,-7],[156,-33],[115,-34],[120,-57],[71,-2],[61,-14],[67,-27],[212,19],[69,-3],[115,-19],[95,0],[139,-18],[130,-31],[135,-45],[91,-41],[109,-5],[163,-46],[39,-18],[133,-23],[181,-44],[265,-106],[147,-128],[92,-68],[48,-68],[12,-65],[-16,-32],[219,-193],[707,-594],[589,-494],[57,-7],[142,-38],[60,-33],[98,-79],[53,-66],[-10,-90],[-21,-69],[-80,-85],[-66,-58],[16,-94],[85,-6],[272,-53],[62,-9],[635,9],[94,47],[65,24],[112,27],[118,-1],[125,24],[86,2],[83,-9],[86,26],[97,23],[137,22],[133,29],[42,35],[131,92],[60,23],[71,18],[117,23],[84,6],[46,13],[70,8],[144,-1],[220,-8],[86,-10],[131,42],[82,-2],[139,-11],[114,-15],[57,25],[67,18],[107,16],[139,-8],[138,-12],[12,60],[97,98],[40,44],[71,54],[109,27],[184,35],[152,5],[163,-5],[88,-14],[103,-33],[91,-62],[35,14],[46,-8],[193,78],[95,23],[78,11],[134,9],[91,-3],[100,-16],[59,-17],[158,48],[97,20],[104,9],[85,-1],[125,-6],[159,-16],[203,-27],[131,-30],[116,-6],[144,-16],[90,-18],[222,-53],[85,-34],[70,3],[74,-6],[190,-40],[102,-34],[50,-1],[96,-12],[84,-14],[99,-28],[181,-65],[100,-49],[143,-86],[120,-13],[102,0],[87,4],[250,-16],[100,-10],[84,-28],[96,-38],[79,-37],[62,-35],[58,-40],[70,-98],[113,-17],[92,-19],[186,-47],[119,-33],[85,-29],[-67,72],[-21,35],[-4,46],[9,46],[41,75],[37,41],[70,49],[84,37],[94,28],[91,15],[198,9],[112,-4],[90,-13],[79,-18],[273,-73],[85,-30],[105,-48],[30,63],[28,30],[88,49],[107,42],[74,25],[80,17],[100,16],[95,4],[186,-20],[89,-22],[111,-46],[137,-83],[78,-74],[38,-49],[11,-39],[-14,-76],[123,1],[71,-4],[60,-10],[124,-34],[70,-23],[51,-28],[55,-45],[42,-66],[76,36],[94,14],[110,8],[172,7],[112,-2],[90,-22],[269,-109],[73,-44],[57,-51],[110,-20],[116,-42],[68,-27],[78,-47],[67,-53],[64,-93],[6,-75],[148,45],[112,21],[130,12],[86,0],[94,-15],[28,38],[240,-47],[151,-48],[66,0],[196,-104],[231,-196],[113,-49],[70,0],[72,19],[149,2],[145,-14],[158,-2],[172,-7],[186,-15],[148,29],[150,-29],[337,-73],[226,-82],[73,-10],[198,1],[233,-22],[289,-45],[188,-54],[196,-63],[82,-41],[75,-12],[222,-89],[217,-94],[260,-131],[189,-83],[238,-25],[249,-90],[185,-75],[145,-64],[166,-59],[108,-4],[146,8],[116,-6],[146,-2],[134,-43],[101,-56],[93,-97],[60,-100],[26,-63],[94,-7],[99,36],[138,38],[255,10],[228,-47],[204,-62],[147,-39],[86,-17],[39,20],[38,36],[61,77],[102,76],[255,151],[135,57],[68,25],[128,25],[135,4],[102,-19],[38,13],[125,28],[167,66],[200,24],[83,42],[203,65],[115,34],[108,10],[73,-4],[43,22],[39,43],[81,48],[42,50],[141,38],[49,16],[60,8],[85,6],[98,-2],[129,-17],[48,19],[168,25],[181,17],[97,14],[93,8],[60,27],[75,45],[69,10],[121,3],[97,-6],[122,-20],[122,-32],[104,-31],[61,-29],[117,-11],[90,41],[89,33],[115,17],[110,13],[95,6],[155,-4],[108,-31],[98,-18],[94,-34],[65,-41],[66,-66],[59,-13],[132,-41],[79,-50],[91,-31],[115,-30],[161,-55],[120,-44],[112,-54],[196,-42],[150,-67],[191,-42],[116,-43],[682,-272],[152,-97],[42,-33],[268,-98],[79,-45],[52,-37],[17,-27],[81,-24],[94,-42],[65,-55],[61,-21],[58,-26],[123,-66],[325,-155],[78,-31],[124,-36],[101,-33],[118,-53],[162,-59],[194,-44],[199,-55],[200,-39],[245,-75],[302,-120],[489,-242],[173,-99],[71,-33],[21,-34],[572,-74],[147,-14],[144,-21],[223,-54],[163,-44],[76,-28],[1,-818],[0,-519],[0,-746],[0,-697],[-1,-676],[0,-356],[0,-507],[0,-771],[0,-720],[0,-771],[0,-720],[0,-746],[0,-750],[0,-740],[0,-746],[0,-745],[0,-746],[0,-745],[0,-847],[0,-644],[1,-746],[0,-745],[0,-745],[0,-746],[0,-745],[0,-746],[0,-745],[0,-561],[0,-484],[0,-446],[0,-745],[0,-624],[0,-536],[0,-362],[0,-533],[0,-437],[0,-481],[0,-435],[1,-664],[0,-781],[0,-398],[0,-574],[0,-518],[0,-576],[0,-398],[0,-521],[0,-738],[0,-552],[0,-710],[0,-510],[0,-708],[0,-620],[0,-386],[0,-704],[0,-550],[0,-601],[0,-698],[0,-776],[0,-547],[0,-629],[0,-625],[0,-323],[0,-669],[0,-721],[0,-498],[0,-341],[0,-514],[0,-586],[0,-502],[0,-512],[0,-599],[-1,-85],[1,-423],[1,-474],[-1,-309],[1,-464],[0,-418],[-2,-77],[2,-335],[0,-266],[0,-657],[0,-492],[0,-759],[0,-327],[0,-710],[0,-573],[0,-414],[0,-585],[0,-407],[0,-501],[0,-417],[0,-715],[0,-635],[0,-496],[911,-262],[738,-213],[222,501],[567,-242],[255,-108],[885,-377],[883,772],[144,128],[616,28],[800,37],[744,35],[16,-196],[-94,-306],[-135,-436],[-188,-609],[492,-463],[26,-52],[26,-21],[52,-27],[332,-150],[500,-226],[332,-107],[139,-560],[-1,-20],[69,-103],[44,-59],[36,-68],[127,-105],[87,-65],[1102,-935],[625,-530],[248,-210],[443,-383],[959,-829],[176,-694],[178,-702],[19,-89],[-98,-463],[279,15],[645,538],[560,312],[558,311],[298,166],[131,116],[481,21],[385,16],[336,558],[-27,69],[96,65],[-17,701],[-9,342],[383,-94],[226,93],[239,352],[-8,78],[-3,119],[-400,235],[331,141],[235,94],[654,106],[209,33],[308,152],[16,10],[465,219]],[[85851,416556],[-17,27],[-9,71],[26,126],[57,108],[-15,43],[-4,43],[49,100],[46,86],[123,83],[136,95],[-8,31],[3,36],[46,114],[48,101],[86,113],[46,37],[10,30],[15,85],[81,121],[70,81],[111,88],[119,64],[45,27],[31,121],[34,55],[63,56],[57,45],[125,26],[95,40],[104,-1],[148,212],[32,39],[82,89],[149,14],[124,1],[111,76],[113,56],[92,-2],[395,319],[79,104],[361,358],[90,65],[22,36],[12,41],[43,41],[46,22],[-4,39],[11,46],[33,51],[53,43],[79,39],[85,32],[107,-9],[56,-2],[134,-53],[48,46],[99,83],[173,89],[218,93],[245,161],[92,47],[96,35],[111,32],[-58,51],[-28,73],[-2,75],[-5,75],[23,78],[47,87],[59,81],[75,65],[63,48],[22,46],[65,89],[72,87],[66,75],[90,46],[96,33],[16,22],[33,85],[45,81],[59,76],[80,61],[97,47],[75,52],[52,97],[220,274],[290,334],[248,277],[106,127],[65,85],[76,68],[35,24],[35,10],[15,25],[19,74],[34,76],[52,67],[48,39],[48,25],[82,25],[76,14],[0,56],[7,88],[20,72],[36,50],[53,48],[27,44],[6,66],[49,75],[73,76],[163,131],[68,63],[58,46],[23,13],[70,110],[55,82],[51,60],[52,39],[73,36],[58,16],[39,23],[84,11],[62,-14],[76,-24],[90,-51],[57,-66],[43,-112],[-1,-59],[-13,-61],[57,35],[92,28],[106,-5],[76,-31],[81,-38],[72,-46],[72,-100],[51,-86],[4,-66],[35,-39],[44,-59],[30,-84],[6,-71],[-13,-113],[43,3],[60,-7],[53,-17],[89,-51],[74,-72],[9,-23],[41,-48],[46,-59],[12,-93],[4,-57],[-25,-71],[-42,-58],[-40,-40],[-89,-52],[-99,-29],[-122,-4],[-11,-29],[31,-13],[81,-5],[85,4],[81,-14],[111,-41],[70,-51],[48,-48],[50,-60],[88,-29],[130,-44],[107,-55],[68,-48],[63,-61],[65,44],[79,70],[108,43],[102,10],[81,-12],[76,-22],[77,-49],[56,-71],[31,-97],[7,-91],[-18,-59],[-48,-51],[-54,-62],[-67,-49],[53,-35],[52,-57],[72,-99],[30,-62],[17,-80],[4,-63],[-38,-73],[11,-41],[-30,-160],[-32,-71],[-35,-65],[-76,-100],[-60,-61],[-64,-45],[-72,-39],[-138,-52],[-68,-15],[-82,14],[-85,25],[-91,49],[-40,39],[-72,114],[-2,9],[-78,-89],[-107,-100],[-53,-54],[-76,-42],[-115,-36],[-140,-36],[-162,-35],[-266,-60],[-43,-13],[-34,-24],[-17,-27],[-62,-51],[-69,-36],[-46,-10],[-70,1],[-55,7],[-77,18],[-77,40],[-33,-6],[-140,6],[-75,-80],[55,5],[67,-20],[90,-37],[44,-34],[77,-71],[76,-25],[44,-29],[58,-57],[20,-41],[26,-73],[18,-17],[51,-25],[55,15],[57,-22],[74,-78],[32,-45],[28,-54],[26,-60],[-17,-75],[-14,-74],[-31,-62],[-66,-146],[4,-14],[102,-51],[76,-23],[80,-20],[75,-41],[61,-53],[36,-50],[34,-78],[27,-115],[90,-414],[39,-197],[18,-27],[43,-36],[58,-59],[40,-70],[11,-57],[2,-86],[-50,-105],[-29,-39],[8,-48],[-15,-52],[-3,-40],[-25,-48],[-62,-63],[-54,-46],[-60,-69],[-42,-53],[-97,-74],[-81,-83],[-60,-66],[-72,-63],[-34,-39],[21,-215],[71,-35],[50,-43],[63,-62],[28,-48],[-3,-65],[-8,-82],[-37,-73],[-57,-85],[-64,-63],[-81,-59],[-110,-50],[-79,-16],[-121,-12],[-80,17],[-83,30],[-78,50],[-43,59],[-23,62],[-6,59],[10,69],[-27,27],[-25,8],[-33,-19],[-57,-54],[-274,-222],[-36,-36],[-20,-122],[-11,-32],[-89,-88],[-80,-89],[-78,-80],[-54,-60],[-70,-62],[-60,-29],[-60,-18],[-89,-13],[-148,-13],[-103,-17],[-222,-14],[82,-52],[48,-38],[48,-54],[22,-60],[13,-65],[3,-104],[-10,-67],[-55,-108],[-60,-79],[-86,-86],[-150,-90],[-98,-37],[-118,-36],[-69,3],[-94,-2],[-61,-11],[-82,-29],[-82,-44],[-63,-25],[-84,-28],[-32,-14],[-22,-71],[-24,-32],[3,-64],[-39,-58],[-34,-27],[-55,-54],[-46,-79],[-33,-40],[-42,-37],[-49,-28],[-37,-15],[-86,-13],[-32,8],[-16,-14],[-40,-18],[-69,-24],[-102,-12],[-60,2],[-78,25],[-55,27],[-25,-8],[-82,-1],[-58,14],[-43,23],[-80,53],[-35,40],[-35,-40],[5,-46],[-18,-48],[-32,-28],[5,-20],[56,-75],[18,-76],[-5,-75],[-41,-86],[-49,-75],[-23,-19],[-21,-33],[-44,-40],[-89,-31],[-29,-31],[-35,-21],[-116,-33],[-78,-16],[-48,-2],[-7,5],[-45,-82],[-74,-94],[-61,-54],[-101,-53],[-86,-40],[-83,-17],[-63,4],[38,-101],[7,-81],[-32,-86],[-47,-107],[-48,-82],[-60,-45],[-42,-12],[-80,1],[-18,-27],[-61,-40],[-51,-21],[-64,-6],[-13,-49],[-32,-58],[-61,-62],[-69,-31],[-62,-23],[-50,-7],[-101,17],[48,-53],[17,-70],[-3,-28],[50,0],[187,23],[35,-8],[26,20],[51,21],[99,11],[47,0],[81,-20],[100,-40],[92,-128],[23,-113],[-15,-68],[-27,-57],[-27,-34],[-22,-55],[-80,-129],[-64,-71],[-85,-64],[-80,-43],[-34,-7],[-27,-39],[-56,-51],[-51,-29],[-61,-20],[-48,0],[-34,10],[-26,-13],[-50,-11],[-57,-6],[-57,10],[-79,-17],[-78,-2],[-83,20],[-85,-11],[-91,20],[-78,38],[-28,-18],[-95,-46],[-81,-22],[-80,-10],[-71,3],[-75,15],[-68,27],[-113,54],[-51,22],[-54,-60],[-79,-46],[-88,-25],[-94,-3],[-80,12],[-73,26],[-89,46],[-295,-167],[-86,-129],[-80,-107],[-100,-75],[-113,-61],[-129,-43],[-133,-3],[-112,26],[-81,40],[-57,40],[-102,63],[-35,50],[-31,51],[-26,65],[-14,60],[-6,67],[3,59],[25,64],[90,114],[24,67],[119,143],[30,71],[191,208],[50,38],[188,126],[78,57],[71,69],[181,152],[119,80],[82,35],[67,13],[50,4],[67,-4],[61,-14],[43,-15],[41,7],[61,2],[53,-17],[194,-106],[29,-5],[50,25],[61,57],[54,31],[100,46],[142,44],[4,37],[-11,33],[-2,76],[20,63],[29,57],[27,40],[-347,381],[-181,186],[-64,70],[-26,54],[-2,54],[20,270],[-185,163],[-220,99],[-123,25],[-143,45],[-63,47],[-46,54],[-30,54],[-25,65],[-16,65],[97,199],[-66,730],[-108,90],[-104,117],[-21,94],[-84,11],[-78,-8],[-125,-2],[-112,76],[-29,-11],[-85,29],[-142,92],[-151,117],[-44,64]],[[34985,390337],[1,69],[21,106],[30,74],[63,88],[108,83],[179,101],[64,34],[4,12],[-35,13],[-82,44],[-58,59],[-43,76],[-14,88],[2,79],[17,64],[28,59],[43,66],[53,58],[77,52],[43,6],[74,-3],[150,-20],[43,-21],[51,64],[42,35],[61,34],[74,27],[76,6],[47,-8],[35,-16],[-12,80],[14,81],[26,78],[41,75],[53,80],[45,43],[46,27],[41,18],[42,9],[38,-12],[26,16],[89,78],[-34,70],[-29,86],[1,88],[11,52],[24,47],[-9,16],[0,38],[30,84],[21,71],[33,65],[42,50],[27,36],[27,25],[8,30],[37,53],[46,52],[88,58],[23,26],[24,37],[40,49],[26,38],[34,29],[79,48],[30,7],[35,-4],[18,97],[16,36],[42,39],[77,57],[128,42],[407,208],[27,20],[29,52],[38,19],[-32,66],[-22,102],[-12,78],[27,85],[43,86],[71,101],[86,85],[24,21],[14,42],[10,52],[12,40],[66,58],[115,63],[43,-1],[28,26],[33,23],[29,8],[28,-3],[10,41],[22,52],[48,53],[41,37],[59,23],[60,15],[95,57],[59,17],[75,48],[80,-5],[40,35],[36,10],[76,39],[104,43],[36,4],[37,-2],[25,-9],[54,-27],[25,-21],[97,21],[72,6],[115,-12],[41,-14],[41,-23],[39,-26],[86,-84],[43,-54],[14,-39],[36,-14],[62,2],[78,9],[110,5],[148,-22],[54,-28],[57,-39],[45,-45],[48,-88],[22,-54],[8,-55],[-5,-73],[-13,-84],[-33,-84],[-31,-62],[-40,-67],[-44,-39],[-45,-47],[-19,-25],[31,-59],[20,28],[67,45],[62,17],[83,9],[46,-2],[26,13],[35,10],[29,0],[41,25],[41,32],[60,35],[58,13],[35,-6],[26,20],[68,16],[3,22],[43,54],[61,48],[78,49],[71,13],[102,-12],[34,-13],[35,16],[42,12],[9,36],[28,64],[68,75],[113,68],[69,21],[72,-2],[86,-21],[206,140],[27,17],[-16,29],[-16,67],[-27,182],[9,85],[38,85],[65,82],[47,31],[107,62],[57,24],[-4,51],[23,72],[25,43],[17,14],[-94,373],[-61,63],[-59,49],[-68,50],[-56,72],[2,67],[-17,31],[-18,67],[2,70],[20,61],[25,133],[64,72],[68,34],[41,15],[17,16],[8,57],[-1,60],[19,65],[29,62],[57,54],[75,40],[61,29],[37,4],[14,58],[53,72],[80,60],[103,36],[56,1],[25,35],[47,16],[67,12],[84,10],[33,-3],[40,43],[52,32],[107,28],[114,6],[98,12],[19,31],[40,33],[64,40],[104,17],[125,-9],[99,0],[319,-27],[110,-13],[211,-15],[103,6],[69,11],[129,-2],[98,3],[80,5],[75,-4],[63,-15],[111,-43],[37,-35],[26,-40],[3,-26],[40,13],[48,-5],[38,-9],[27,-19],[62,68],[62,35],[96,17],[87,-6],[54,-17],[2,59],[-42,27],[-43,63],[-28,14],[-22,46],[-12,43],[-23,18],[-37,58],[-12,94],[12,91],[22,58],[31,31],[-3,36],[4,23],[18,47],[18,24],[6,67],[24,59],[52,54],[45,57],[60,52],[73,39],[56,33],[55,25],[26,55],[96,67],[110,22],[54,35],[74,12],[104,24],[103,-15],[70,-41],[80,-15],[102,-38],[84,-48],[84,-62],[71,0],[6,93],[54,121],[30,74],[65,101],[65,93],[37,57],[48,41],[96,45],[111,13],[105,-16],[55,-30],[130,43],[152,2],[129,-13],[110,-36],[86,-81],[40,-80],[23,-79],[10,-45],[-8,-20],[14,-21],[47,-51],[44,-56],[48,-87],[17,-6],[77,-11],[103,-33],[93,-33],[76,-62],[33,-55],[2,-33],[-1,-87],[-38,-103],[-57,-64],[-72,-49],[-123,-52],[-18,-2],[-7,-27],[60,-6],[116,4],[28,35],[69,53],[89,28],[52,10],[61,49],[128,36],[107,-6],[50,-5],[29,9],[56,3],[53,-4],[12,39],[54,69],[59,59],[77,23],[63,9],[60,3],[31,67],[54,54],[140,110],[91,45],[137,51],[101,51],[45,13],[23,-7],[43,-1],[99,-16],[104,-36],[71,-46],[75,-81],[25,-104],[4,-77],[-10,-98],[-16,-66],[-18,-49],[-79,-93],[-47,-30],[-49,-16],[-44,-19],[-31,-65],[-47,-45],[-71,-16],[-75,2],[-16,-15],[-20,-62],[-12,-58],[-20,-32],[-16,-83],[-17,-41],[-16,-15],[-53,-31],[-11,-23],[4,-41],[-48,-121],[-60,-46],[-87,-40],[-99,-9],[-48,-11],[-46,-19],[-108,-29],[-68,-22],[-46,0],[-40,10],[-108,-17],[-83,8],[-40,14],[-71,17],[-81,4],[-47,-10],[-39,-3],[-45,-45],[-49,-25],[-36,-11],[-45,-46],[-126,-83],[-118,0],[-117,74],[-75,54],[-62,49],[-21,30],[-63,6],[-16,-2],[-8,-28],[-28,-23],[-34,-17],[-161,-110],[-181,-83],[-153,-28],[-154,56],[-90,120],[-53,112],[-15,40],[-20,72],[-38,7],[-83,-21],[-40,2],[-18,-25],[-34,-28],[-37,-19],[-78,-30],[-89,-12],[-49,10],[-138,-220],[-208,-47],[-90,-110],[-171,-204],[18,-83],[63,-101],[54,-222],[-27,-157],[-163,-277],[-91,-81],[-91,-26],[-28,-34],[-36,-5],[-25,-39],[-38,-39],[-32,-27],[-30,-13],[-27,-91],[-33,-59],[-31,-29],[-62,-21],[-22,-46],[-61,-65],[-94,-70],[-76,-23],[-48,-7],[-39,-54],[-82,-38],[-67,-28],[-29,-24],[-41,-16],[-44,-4],[-86,-54],[-36,-13],[-36,-5],[-15,4],[-23,-25],[-33,-27],[-44,-19],[-21,-1],[-50,-69],[-86,-97],[-192,-238],[-95,-113],[-84,-114],[-70,-63],[-99,-37],[-39,-20],[1,-43],[-29,-46],[-56,-49],[-170,-136],[-109,-84],[-63,-51],[-81,-45],[-58,-14],[-39,5],[-29,12],[-26,-24],[-74,-39],[-52,-13],[-42,4],[-17,15],[-33,-12],[-54,-7],[-47,-17],[-88,-6],[-106,22],[-36,11],[-15,10],[-25,-21],[-76,-36],[-118,-11],[-94,14],[-57,20],[-14,15],[-25,-32],[-42,-22],[-45,-5],[-16,7],[-65,-33],[-50,-5],[-6,4],[-400,-240],[3,-25],[-24,-60],[-44,-68],[-29,-21],[-31,-47],[-113,-66],[-145,-26],[-135,12],[-20,-28],[-50,-45],[-37,-25],[-26,8],[-8,-48],[-36,-58],[-113,-150],[-260,-162],[-248,-69],[-271,-11],[-351,57],[-214,58],[-147,81],[-271,35],[-193,46],[-30,2],[-32,15],[-23,19],[-63,105],[-21,-30],[-34,-36],[-33,-18],[-46,-20],[-65,-14],[-73,-20],[-39,-7],[-17,-31],[-71,-55],[10,-28],[11,-52],[-15,-77],[-52,-108],[-92,-68],[-72,-32],[-57,-15],[-66,-1],[-23,19],[-52,-95],[-32,-42],[-35,-76],[-69,-88],[-32,-24],[-49,-15],[41,-85],[5,-52],[1,-55],[-10,-39],[-22,-36],[-40,-41],[10,-5],[46,-69],[21,-47],[23,-118],[-20,-81],[-25,-48],[-42,-56],[-58,-51],[-54,-16],[-14,10],[-12,-33],[-37,-32],[-56,-38],[-100,-43],[-86,9],[-44,-19],[-30,-4],[-66,30],[-96,52],[-80,76],[-35,48],[-20,-3],[-15,-18],[-40,-25],[-33,-4],[-3,-15],[-21,-37],[-38,-15],[-6,-16],[7,-50],[-25,-45],[-69,-61],[-68,-38],[-57,-18],[-40,-4],[9,-17],[-11,-32],[-48,-62],[-86,-59],[-101,-62],[-93,-12],[-117,8],[-62,10],[-25,15],[-33,-54],[-46,-47],[-91,-60],[-100,-20],[-41,-36],[-66,-43],[-62,-35],[-93,-11],[-12,-23],[-89,-93],[-84,-36],[-127,-20],[-47,12],[-9,-39],[-45,-42],[-87,-68],[-65,-44],[-11,-21],[-75,-49],[-95,-46],[-138,-58],[-140,9],[-84,37],[-68,59],[-32,39],[-25,81]],[[3264,385150],[-9,73],[6,61],[32,128],[42,62],[42,55],[24,52],[35,54],[39,47],[39,26],[28,12],[56,14],[57,7],[136,50],[125,25],[54,18],[72,-6],[52,-31],[25,-31],[22,20],[30,13],[63,13],[45,-5],[43,-12],[19,-24],[22,16],[50,14],[59,6],[64,-3],[67,-16],[52,-24],[38,-29],[44,-40],[40,-49],[28,-48],[18,-42],[1,-16],[21,-2],[45,-17],[43,-49],[27,-102],[35,-10],[18,-23],[43,20],[49,7],[44,2],[50,-5],[43,-15],[41,-22],[27,20],[84,30],[107,11],[43,19],[84,-8],[28,13],[53,11],[97,-11],[36,-11],[69,-54],[35,-51],[33,-58],[13,-42],[9,-62],[-3,-74],[-10,-34],[-22,-19],[12,-29],[1,-42],[-27,-67],[-28,-52],[-16,-17],[2,-13],[34,-15],[22,-26],[58,19],[37,3],[29,34],[65,41],[73,22],[78,4],[3,15],[35,50],[40,46],[62,44],[68,16],[82,-5],[59,-15],[19,-19],[61,-1],[42,27],[13,0],[37,113],[32,35],[23,5],[4,69],[-13,96],[3,125],[20,92],[11,83],[29,94],[66,81],[68,59],[82,54],[71,26],[64,11],[68,-6],[103,-33],[82,-15],[59,-24],[17,-14],[124,-50],[81,-57],[34,-68],[83,-76],[49,-91],[8,-51],[-1,-84],[3,-68],[-12,-46],[-17,-32],[15,-87],[57,79],[57,47],[70,-4],[31,44],[45,100],[26,102],[19,95],[32,109],[98,207],[74,79],[87,44],[82,8],[72,0],[71,16],[146,-10],[24,8],[31,47],[70,67],[137,63],[77,32],[60,-1],[87,-14],[65,-18],[75,-42],[35,-25],[48,-43],[29,-34],[24,-45],[23,-89],[20,-126],[-12,-102],[71,-113],[13,-62],[4,-70],[-17,-77],[24,17],[59,26],[118,13],[106,5],[91,-13],[50,35],[84,1],[116,-20],[70,39],[23,6],[-23,76],[-9,49],[-3,56],[20,42],[-26,41],[-39,87],[-10,67],[3,38],[-18,28],[-26,76],[-4,116],[-36,58],[-6,69],[27,167],[25,54],[65,99],[42,56],[40,68],[43,65],[60,22],[73,41],[63,32],[73,11],[79,-20],[35,-16],[39,-6],[42,2],[44,-32],[51,6],[43,11],[50,1],[43,-11],[127,-61],[52,-49],[35,-84],[1,-31],[46,-30],[66,-66],[18,-31],[9,-26],[-1,-23],[44,15],[71,19],[147,-2],[83,-65],[30,-81],[34,-136],[20,-25],[39,8],[60,-28],[93,-68],[45,-41],[26,12],[66,17],[95,-18],[31,-23],[25,11],[81,6],[41,-27],[29,6],[57,-2],[45,-33],[35,10],[59,2],[43,-5],[39,-22],[40,45],[71,62],[84,49],[83,35],[103,1],[48,-13],[54,-28],[37,79],[62,79],[70,51],[83,31],[50,-9],[20,24],[29,8],[58,43],[83,19],[79,-4],[67,-7],[37,37],[99,45],[134,30],[138,3],[49,-8],[65,99],[86,63],[115,11],[119,-12],[102,104],[138,55],[101,14],[108,-4],[44,-20],[14,-39],[80,25],[61,-15],[47,-21],[7,-19],[72,48],[51,50],[62,20],[38,5],[46,108],[79,112],[97,91],[92,36],[88,12],[51,-5],[50,-22],[48,80],[78,98],[102,47],[71,-1],[35,-12],[-40,45],[-42,66],[-42,101],[-28,88],[2,68],[43,112],[41,54],[65,55],[92,35],[140,16],[65,4],[15,83],[55,111],[53,69],[41,19],[30,8],[13,30],[82,110],[57,35],[92,10],[72,-1],[40,-3],[35,-17],[25,21],[53,18],[53,32],[76,27],[101,8],[89,-5],[78,-23],[65,-44],[47,-41],[46,-46],[2,-17],[35,6],[87,-25],[63,-44],[36,-31],[26,-13],[29,-33],[4,-37],[77,-29],[85,-63],[61,-106],[17,-88],[-2,-49],[-11,-40],[35,-58],[12,-30],[20,-76],[2,-109],[-8,-39],[-29,-64],[-32,-86],[-26,-42],[-67,-93],[-26,-26],[-11,-42],[-21,-51],[-31,-48],[-25,-23],[-12,-43],[-1,-49],[-10,-48],[-13,-25],[33,-14],[26,11],[60,10],[59,4],[13,-3],[134,84],[94,22],[111,-9],[132,-63],[47,-17],[17,-11],[29,2],[158,-16],[80,20],[136,59],[114,54],[131,37],[50,-2],[58,-30],[21,-19],[86,31],[122,23],[96,-34],[82,-90],[38,-110],[15,-23],[34,7],[59,-1],[33,-17],[83,14],[136,-16],[96,-51],[22,-15],[94,36],[92,0],[111,-32],[41,11],[128,24],[93,-1],[98,-7],[179,-32],[98,-12],[86,-4],[61,-12],[104,-2],[69,-9],[39,-9],[8,13],[57,37],[107,1],[100,-38],[85,-72],[49,-75],[24,-65],[7,-42],[-1,-28],[-20,-59],[-47,-107],[-45,-51],[-53,-37],[-34,-2],[-29,-73],[-63,-66],[-72,-46],[-95,-29],[-92,7],[-97,44],[-19,-13],[-45,-7],[-46,7],[-50,-19],[-56,9],[-19,12],[-34,-47],[7,-57],[-2,-85],[-25,-107],[-64,-90],[-92,-52],[-77,-19],[-55,-3],[-33,13],[-16,13],[-81,53],[-75,83],[-44,80],[-6,118],[-15,4],[-45,-24],[-172,1],[-19,-37],[-121,-91],[-44,-15],[-129,-6],[-90,19],[-32,11],[-71,-39],[-139,-41],[-111,3],[-43,28],[-73,1],[-118,34],[-78,57],[-37,50],[-48,5],[-24,11],[-25,-16],[-125,-1],[-105,35],[-88,-46],[-76,8],[-36,15],[-25,0],[-10,-25],[-137,-51],[-136,9],[-57,21],[-33,22],[-13,-7],[-63,10],[-121,30],[-126,57],[-54,39],[-32,30],[-25,15],[-32,50],[-19,1],[-35,56],[-56,16],[-26,30],[-24,-20],[-71,-16],[-125,-15],[-43,13],[-31,-17],[-64,-14],[-106,24],[-47,-3],[-94,-30],[-104,-14],[-94,35],[-107,-48],[-23,-5],[-7,-71],[-26,-80],[-45,-57],[-18,-53],[-33,-63],[-100,-68],[-157,-39],[-68,12],[-59,-34],[-77,-32],[-97,30],[-40,-3],[-49,5],[-60,19],[-88,43],[-67,56],[-52,-21],[-79,-35],[-51,3],[-13,-8],[-135,-60],[-48,-1],[-25,-11],[-129,1],[-149,62],[-66,39],[-24,-6],[-70,4],[-102,43],[-28,52],[-26,-18],[-41,-7],[-80,-22],[-79,-33],[-64,-50],[-173,-70],[-102,-18],[-40,15],[-17,-15],[-39,-19],[-154,5],[-164,46],[-64,5],[-62,0],[-77,-15],[-117,36],[-68,0],[-69,-39],[-110,-14],[-108,34],[-39,25],[-17,-20],[-69,-73],[-69,-57],[-62,-37],[-74,-15],[-54,17],[-16,-13],[-68,-38],[-101,-1],[-51,30],[-18,-32],[-26,-34],[-95,-37],[-116,-24],[-106,-3],[-46,18],[-27,22],[-10,-13],[-22,-6],[-11,-26],[-26,-34],[-60,-43],[-70,-25],[-9,-24],[-60,-49],[-144,-55],[-134,-7],[-54,22],[12,-35],[13,-123],[-29,-76],[-27,-62],[-44,-57],[-80,-58],[-114,-9],[-72,20],[-38,17],[-6,-45],[-16,-45],[-26,-51],[-54,-65],[-80,-54],[-84,-31],[-50,-9],[-57,4],[-47,19],[-35,19],[-8,-16],[-50,-48],[-72,-33],[-42,11],[-37,-38],[-51,-44],[-62,-30],[-106,-9],[-94,24],[-62,36],[-14,16],[-25,-63],[-41,-64],[-41,-49],[-48,-43],[-76,-25],[-67,-27],[-78,-29],[-75,-16],[-105,1],[-122,29],[-82,-35],[-76,-21],[-31,13],[-31,-28],[-41,-22],[-57,-70],[-78,-46],[-64,-8],[-22,12],[-75,-70],[-62,-81],[-82,-62],[-82,-39],[-77,-13],[-16,7],[-13,-24],[-29,-33],[-53,-42],[-73,-49],[-126,-24],[-46,20],[-33,-29],[-75,-41],[-83,-36],[-100,-4],[-67,25],[-47,43],[-17,-40],[-42,-39],[-54,-58],[-84,-48],[-88,-8],[-95,11],[-100,37],[-83,61],[-75,59],[-57,71],[-35,83],[0,98],[-12,21],[-8,44],[-1,72],[7,53],[26,38],[-1,37],[7,54],[43,108],[62,120],[75,61],[28,35],[51,78],[71,56],[7,26],[-21,7],[-22,18],[-49,56],[-25,67],[-10,81],[10,87],[24,65],[41,69],[-3,46],[-17,-34],[-30,-31],[-96,-75],[-43,-13],[-3,-17],[10,-45],[0,-71],[-6,-15],[16,-13],[12,-31],[2,-42],[-15,-54],[-6,-45],[-10,-21],[11,-29],[-3,-50],[-23,-63],[-22,-51],[-45,-91],[-20,-10],[3,-15],[-11,-31],[-44,-78],[-63,-63],[-102,-57],[-84,-11],[-44,7],[-73,-24],[-52,-39],[-107,-57],[-99,-22],[-86,-4],[-82,19],[-47,30],[-61,-10],[-54,4],[-78,38],[-57,73],[-52,94],[-36,-34],[-23,-12],[-20,-20],[-94,-109],[-102,-46],[-113,-2],[-45,11],[-46,21],[-9,22],[-44,-8],[-10,-54],[-22,-44],[-65,-56],[-75,-36],[-157,-46],[-74,-2],[-113,21],[-99,50],[-39,43],[-40,54],[-6,56],[-51,23],[-60,38],[-96,-86],[-43,-14],[-4,-24],[18,-45],[3,-120],[-9,-79],[-36,-83],[-47,-67],[-57,-43],[-64,-45],[-75,-18],[-102,10],[-80,27],[-72,33],[-68,46],[-41,39],[-31,51],[-29,-11],[-27,2],[-85,33],[-62,43],[-53,45],[-21,32],[-3,18],[-48,7],[-99,29],[-68,38],[-42,27],[-93,72],[-22,45],[-27,116],[-8,50],[-2,54],[8,76],[40,66],[0,99],[28,65],[71,85],[45,33],[44,26],[25,5],[-40,38],[-29,54],[-31,30],[-101,59],[-128,58],[-29,16],[-80,59],[-58,64],[-44,59],[-45,69],[-33,77]],[[25704,452420],[-39,38],[37,278],[35,288],[71,233],[52,42],[18,123],[53,96],[105,110],[-18,82],[0,96],[71,123],[35,96],[-18,55],[0,96],[-55,95],[35,82],[106,123],[70,55],[70,41],[74,1],[96,-4],[48,-6],[32,25],[109,19],[96,-16],[106,-42],[70,-53],[44,-41],[129,-99],[77,-139],[22,-152],[-24,-91],[-28,-73],[1004,-316],[305,-49],[727,-191],[170,69],[125,101],[100,63],[324,176],[178,96],[171,61],[130,-1],[185,77],[71,26],[153,71],[126,12],[606,0],[190,-59],[265,-148],[228,-207],[265,-207],[152,-147],[75,-237],[133,-321],[276,-111],[196,-98],[198,-26],[323,-15],[153,-17],[116,-45],[90,-78],[113,-77],[99,-61],[100,-119],[294,-46],[487,-95],[704,-19],[535,-76],[632,-114],[219,-57],[121,-57],[73,-57],[33,-96],[-29,-210],[-62,-121],[-18,-128],[-94,-144],[-66,-71],[-42,-37],[-93,-156],[-143,-159],[130,-130],[49,-142],[-64,-161],[-224,-170],[-138,-57],[-120,-9],[-111,21],[-172,66],[-81,88],[-30,93],[8,70],[36,75],[48,70],[-218,77],[-153,68],[-138,21],[-267,-2],[-312,-25],[-117,-29],[-65,-24],[-149,-166],[-154,-143],[-136,-78],[-112,-35],[-45,-17],[16,-53],[68,-169],[26,-153],[-58,-153],[-89,-85],[-112,-36],[-114,-11],[-94,-126],[-138,-87],[-168,-18],[-315,67],[-307,122],[-85,49],[-91,109],[-2,91],[7,114],[-51,99],[-22,133],[-62,100],[-181,155],[-280,182],[-174,91],[-81,58],[-40,35],[-87,-17],[-129,6],[-49,8],[-40,26],[-94,-6],[-71,11],[-40,26],[-109,-9],[-132,21],[-111,53],[-55,46],[-68,89],[-22,64],[-1,67],[27,51],[34,48],[-196,236],[-269,211],[-289,137],[-360,115],[-416,137],[-323,86],[-302,29],[-193,-7],[-66,-15],[-119,-85],[-96,-36],[-72,-10],[-63,-2],[-27,-68],[-62,-68],[-52,-37],[-29,-15],[-47,-68],[-85,-66],[-102,-40],[-110,-17],[-52,0],[-127,-85],[-129,-60],[-130,-29],[-164,10],[-110,38],[-72,33],[-94,-9],[-122,26],[-97,44],[-104,80],[-140,40],[-108,56],[-79,32],[-99,13],[-137,76],[-100,82],[-42,61],[-16,47],[-103,95],[-77,121],[-86,157],[-47,169],[-35,67]],[[41309,433365],[-84,160],[7,107],[26,94],[36,51],[40,34],[75,46],[122,10],[127,-12],[39,28],[52,23],[71,20],[73,4],[65,43],[56,25],[95,19],[117,-11],[77,-29],[48,14],[54,10],[74,2],[92,-10],[91,-24],[55,33],[61,18],[63,-7],[116,-31],[89,-40],[94,-67],[102,43],[75,22],[85,4],[19,45],[31,55],[39,53],[49,44],[66,31],[12,27],[33,52],[43,41],[58,39],[114,33],[42,70],[66,60],[66,47],[84,39],[135,7],[123,-19],[48,57],[43,47],[72,53],[94,36],[83,22],[34,40],[52,44],[60,39],[81,20],[98,6],[122,-24],[93,-49],[51,-57],[53,2],[58,-16],[76,-35],[56,65],[62,58],[67,49],[75,24],[2,101],[17,56],[76,72],[71,47],[73,35],[100,19],[98,13],[110,-57],[129,-87],[108,-95],[24,-43],[60,-134],[33,-50],[54,-63],[22,-48],[5,-63],[-40,-73],[44,-23],[37,-30],[19,-26],[40,55],[32,35],[40,24],[114,41],[63,13],[82,-2],[101,-24],[68,-50],[42,35],[61,29],[59,22],[82,9],[74,-5],[78,-31],[82,-41],[76,-56],[62,-68],[23,-54],[-7,-79],[59,-3],[56,-19],[59,-35],[50,-53],[41,-50],[27,-58],[19,-55],[0,-54],[-14,-54],[-32,-56],[15,-54],[-2,-29],[-26,-50],[-36,-52],[45,-56],[17,-40],[15,-53],[-2,-47],[-12,-57],[-29,-56],[-35,-54],[33,-41],[11,-35],[2,-41],[-5,-45],[30,-28],[23,-34],[8,-39],[-3,-57],[-12,-63],[19,-37],[4,-41],[-10,-57],[-21,-53],[-24,-30],[20,-28],[8,-35],[-5,-32],[46,-26],[23,-40],[27,-71],[85,-18],[63,-24],[63,-36],[61,-70],[32,-60],[5,-51],[175,-115],[-1,-15],[-33,-80],[-75,-78],[-21,-27],[2,-24],[-23,-89],[-56,-125],[-122,-143],[-150,-64],[-79,-37],[-148,-30],[-81,-7],[-115,-59],[-146,-7],[-129,28],[-12,8],[-27,-30],[-94,-91],[-105,-65],[-77,-14],[-44,-54],[-144,-124],[-154,-168],[-153,-140],[-168,-102],[-161,-57],[-147,-8],[-205,22],[-68,11],[-70,21],[-160,79],[-112,97],[-62,78],[-33,74],[-75,76],[-47,15],[-51,5],[-59,18],[-85,54],[-139,73],[-42,-17],[-71,-16],[-163,17],[-199,-16],[-219,6],[-99,31],[-123,75],[-142,110],[-27,23],[-41,-1],[-134,26],[-150,56],[-45,53],[-33,56],[-61,59],[-128,97],[-128,80],[-122,51],[-100,40],[-136,48],[-88,-3],[-127,9],[-123,42],[-111,98],[-83,78],[-106,112],[-250,31],[-61,48],[-47,64],[-31,-3],[-91,3],[-95,16],[-54,28],[-61,47],[-59,66],[-21,63],[-5,60],[2,90],[-5,76],[4,38],[19,39],[-59,43],[-40,49],[-26,66],[-5,75],[-68,18],[-46,29],[-34,42],[-6,49],[-69,32]],[[1241898,391157],[-22,68],[5,90],[16,78],[43,93],[37,45],[82,54],[60,18],[39,-2],[62,72],[73,57],[63,29],[43,32],[38,47],[74,63],[123,42],[84,77],[131,54],[103,8],[107,2],[183,50],[103,10],[86,-13],[71,-38],[100,-32],[83,16],[100,2],[87,-19],[113,-48],[33,-21],[31,21],[66,25],[45,4],[86,0],[100,-19],[52,-14],[88,16],[55,7],[106,-11],[49,-17],[115,-47],[64,-38],[67,-35],[47,-47],[33,-72],[40,15],[44,2],[59,-6],[49,-13],[48,-17],[55,-25],[47,-44],[35,-43],[46,-45],[47,-52],[22,-62],[21,-50],[17,-90],[8,-95],[6,-10],[28,-4],[30,33],[32,21],[48,8],[66,-22],[84,-35],[55,-43],[46,-50],[35,-61],[13,-41],[23,-18],[52,-23],[38,-46],[27,-48],[42,-51],[33,-67],[4,-42],[9,-44],[-10,-37],[-30,-59],[-64,-81],[-89,-60],[-77,-10],[-126,13],[-26,9],[-46,27],[-36,0],[-78,-19],[-44,-3],[8,-35],[26,-39],[30,-53],[-4,-66],[-22,-93],[-56,-102],[-22,-20],[-107,-66],[-56,-14],[-56,-3],[-84,35],[-67,46],[-70,77],[-74,35],[-81,53],[-50,26],[-96,-7],[-72,-22],[-103,-26],[-104,-2],[-58,29],[-86,32],[-58,41],[-7,-54],[-29,-56],[-62,-38],[-90,-61],[-84,-69],[-92,-62],[-44,-23],[-35,-10],[-68,-9],[-66,19],[-54,31],[-36,32],[-77,83],[-71,111],[-4,10],[-94,-22],[-180,5],[-73,26],[-82,54],[-45,40],[-49,58],[-36,53],[-58,69],[-104,107],[-81,63],[-78,49],[-86,60],[-201,147],[-17,12],[-54,-6],[-48,-11],[-44,6],[-35,16],[-30,21],[-53,50],[-110,76],[-38,32],[-30,46]],[[21190,436022],[-17,51],[17,51],[48,127],[98,76],[0,101],[49,76],[65,51],[65,26],[140,69],[146,15],[165,-43],[80,-49],[65,-90],[32,-38],[33,-89],[16,-114],[16,-139],[114,-26],[81,-12],[98,-38],[81,-51],[33,-38],[32,-51],[16,-63],[-16,-38],[15,-221],[69,-112],[126,-141],[188,-141],[68,-57],[130,-60],[427,-197],[108,-21],[130,38],[33,0],[48,-13],[163,0],[163,-50],[97,-64],[49,-63],[49,-38],[48,-64],[65,-50],[66,-39],[65,-50],[130,-64],[65,-25],[81,-51],[81,-76],[46,-75],[1,-62],[-41,-93],[-82,-92],[-68,-41],[-14,-21],[-80,-58],[-97,-36],[-105,-19],[-74,19],[-99,-33],[-132,33],[-101,43],[-62,51],[-33,85],[-67,19],[-67,-24],[-97,-23],[-149,21],[-95,-18],[-40,-34],[-42,-20],[-67,-21],[-109,3],[-103,29],[-97,35],[-94,48],[-128,105],[-102,28],[-99,48],[-106,54],[-63,-14],[-98,13],[-105,46],[-115,77],[-53,75],[-20,104],[-2,111],[-192,129],[-154,81],[-134,81],[-99,11],[-70,32],[-105,57],[-47,60],[-34,79],[-9,89],[18,103],[31,46],[-24,93],[33,153],[49,63],[-17,38],[-81,64],[-32,38],[-17,38],[-178,177]],[[31654,390197],[-18,48],[7,63],[20,91],[33,55],[38,30],[24,65],[25,58],[37,61],[56,70],[72,45],[106,33],[4,6],[-29,37],[-43,47],[-51,65],[-34,100],[-13,101],[17,109],[77,109],[79,54],[13,16],[69,55],[52,37],[106,47],[69,6],[17,-5],[57,10],[75,-12],[57,-20],[23,-17],[24,11],[64,-6],[49,-14],[77,-25],[42,-42],[26,-33],[42,-62],[9,-38],[-1,-35],[34,28],[46,30],[48,3],[95,11],[47,3],[14,-16],[36,26],[-18,17],[-17,30],[-37,85],[-17,55],[-2,51],[22,126],[15,57],[-68,34],[-46,50],[-50,86],[-14,34],[0,37],[9,93],[13,44],[18,40],[-3,41],[43,92],[78,65],[45,23],[41,37],[99,35],[57,10],[39,-2],[59,-19],[41,-17],[144,-91],[38,-49],[42,-75],[11,-29],[85,-33],[32,-14],[60,-45],[34,-45],[68,-134],[16,-39],[8,-69],[-6,-30],[18,-77],[-1,-47],[-18,-66],[-25,-72],[-29,-39],[-40,-21],[1,-25],[-21,-63],[-26,-48],[-19,-25],[-29,-16],[20,-13],[46,-85],[4,-30],[-7,-21],[29,-8],[50,-72],[6,-52],[14,-44],[1,-81],[-3,-111],[-4,-26],[-12,-22],[14,-27],[8,-74],[-7,-78],[-76,-95],[-31,-21],[6,-27],[-25,-79],[-11,-67],[-41,-81],[-73,-61],[-80,-41],[-73,-18],[-124,29],[-84,44],[-82,47],[-68,55],[-46,68],[-11,8],[-20,-7],[-39,9],[-41,20],[-29,-42],[-68,-53],[-98,-36],[-103,-14],[-53,-2],[-97,2],[5,-18],[-11,-93],[-16,-40],[-55,-74],[-17,-16],[-32,-50],[-28,-32],[-47,-39],[-56,-29],[-59,-24],[-76,-23],[-117,-5],[-100,9],[-30,7],[-20,-7],[-41,-2],[-80,17],[-60,18],[-65,29],[-64,41],[-48,94],[-14,96],[0,63],[-8,27]],[[1263790,383651],[-75,145],[5,144],[24,123],[16,66],[12,34],[45,78],[89,60],[80,27],[127,-7],[129,-28],[67,-6],[135,-85],[117,17],[80,-29],[61,-34],[60,0],[50,-35],[87,-31],[98,-6],[101,-34],[109,-69],[69,-60],[41,5],[55,-28],[55,18],[88,-32],[72,-43],[62,-66],[38,-87],[-5,-131],[26,-44],[77,-39],[71,-107],[49,-78],[70,-83],[59,-35],[37,7],[104,-30],[74,-57],[59,-63],[36,-78],[43,-52],[62,4],[97,-22],[83,-50],[55,41],[91,2],[100,-16],[95,-70],[55,-62],[36,-50],[52,-10],[106,-61],[45,-73],[63,-38],[84,-134],[5,-130],[-29,-61],[-7,-26],[-36,-55],[-50,-62],[-116,-63],[-110,18],[-72,27],[-25,-17],[-174,-37],[-111,1],[-52,22],[5,-28],[-71,-5],[-102,7],[-40,28],[-4,-26],[-52,-39],[-94,-36],[-132,8],[-131,60],[-107,63],[-73,99],[-29,115],[-71,75],[-134,101],[-110,92],[-131,131],[-93,39],[-67,94],[-17,91],[-30,25],[-72,72],[-73,87],[-11,-12],[-71,-4],[-38,26],[-16,-14],[-120,-24],[-118,28],[-99,88],[-75,92],[-116,80],[-144,31],[-92,76],[-59,77],[-110,53],[-58,52],[-49,73],[-40,0]],[[1258717,385202],[-13,71],[0,63],[33,158],[65,103],[93,78],[97,48],[57,32],[53,40],[104,50],[21,2],[15,44],[28,44],[54,67],[64,56],[54,35],[97,42],[71,6],[48,-1],[31,14],[43,13],[48,24],[-6,24],[-2,64],[13,77],[29,65],[57,63],[33,31],[21,6],[11,45],[14,36],[16,87],[39,61],[26,32],[37,67],[45,55],[70,55],[50,35],[45,22],[56,39],[47,14],[75,-1],[95,-19],[33,-10],[38,-28],[119,-65],[54,-31],[94,-71],[54,-53],[67,-120],[17,-84],[0,-50],[-5,-73],[-1,-50],[-26,-89],[-91,-134],[-29,-12],[-1,-20],[-63,-132],[-18,-16],[136,-67],[24,15],[78,20],[27,-1],[53,-10],[64,-25],[59,-30],[62,-37],[41,-50],[16,-31],[26,-39],[17,-40],[0,-71],[-47,-125],[-33,-60],[-50,-56],[-64,-40],[-101,-17],[-98,15],[-99,35],[-46,-23],[-92,-15],[-30,5],[-23,-41],[-40,-40],[-51,-36],[-69,-26],[-56,-2],[-52,4],[-22,12],[-42,-27],[-57,-26],[-85,-14],[-85,18],[-11,13],[-53,-23],[-101,-15],[-71,6],[-78,21],[-61,36],[-22,-217],[33,-41],[6,-79],[-7,-54],[-14,-74],[-40,-69],[-27,-30],[-48,-44],[-39,-26],[-92,-24],[-66,4],[-64,7],[-35,19],[-96,82],[-35,31],[-24,43],[-19,-4],[-25,8],[-41,46],[-53,87],[-8,25],[-42,26],[-5,13],[-39,2],[-42,13],[-29,13],[-38,25],[-103,95],[-34,51],[-14,50]],[[57316,399598],[-33,90],[1,104],[19,88],[47,84],[49,36],[49,31],[26,10],[-11,19],[-9,35],[4,52],[21,59],[33,63],[29,47],[19,13],[-16,39],[-16,121],[21,92],[49,72],[64,60],[92,54],[71,6],[58,-7],[70,-22],[50,-29],[38,-28],[20,3],[84,-12],[100,-39],[31,-27],[37,19],[32,-10],[77,-10],[48,-33],[51,-46],[18,11],[80,-16],[71,-47],[18,-19],[15,19],[22,10],[62,2],[132,-51],[70,-43],[62,-44],[8,-23],[104,6],[69,-5],[52,-17],[67,-39],[40,-55],[15,17],[42,13],[71,-13],[74,-31],[55,-45],[82,-57],[134,-114],[59,-62],[45,-54],[24,-62],[8,-52],[3,-57],[-18,-76],[-24,-58],[-42,-48],[-71,-43],[-77,-15],[-118,-16],[-58,10],[-18,7],[-28,-28],[-46,-35],[-86,-69],[-89,-42],[-117,-12],[-51,14],[-63,-42],[-63,-117],[-49,-78],[-48,-33],[-24,-25],[-57,-26],[-101,3],[-88,35],[-24,14],[-25,-19],[-56,-9],[-20,3],[-28,-34],[-142,-25],[-93,24],[-71,61],[-76,103],[-42,132],[-30,7],[-35,22],[-33,32],[-20,43],[-16,21],[-48,7],[-68,38],[-56,52],[-30,43],[-13,-19],[-40,-28],[-113,-28],[-108,-2],[-108,70],[-76,80]],[[1245149,388226],[-6,48],[6,111],[8,19],[23,24],[53,102],[6,49],[26,46],[31,38],[73,67],[29,15],[89,24],[25,39],[26,31],[32,27],[48,20],[33,3],[18,21],[34,8],[78,-6],[36,-8],[60,-21],[3,15],[32,41],[29,27],[61,38],[67,28],[48,77],[37,32],[90,41],[84,33],[64,-4],[45,-14],[27,26],[35,16],[49,4],[43,-16],[34,-3],[115,6],[40,7],[91,6],[57,8],[92,-30],[76,-86],[78,-52],[28,-51],[3,-37],[-6,-47],[-20,-97],[-16,-48],[-26,-41],[-42,-56],[-46,-54],[-70,-58],[-41,-13],[1,-15],[35,-49],[12,-36],[10,-136],[-3,-39],[6,-61],[13,-84],[18,-63],[15,-24],[10,-56],[-38,-93],[-32,-71],[-45,-57],[-53,-49],[-66,-39],[-60,-14],[-60,3],[-34,5],[-42,17],[-38,-41],[-32,-14],[-22,-3],[-97,14],[-51,20],[-95,59],[-58,65],[-76,20],[-40,13],[-51,40],[-35,-1],[-86,-19],[-63,-10],[-68,6],[-53,16],[-41,25],[-109,7],[-90,13],[-71,47],[-36,17],[-98,4],[-27,14],[-34,24],[-52,67],[-21,35],[-20,46],[-12,42]],[[1261863,386095],[-20,68],[10,95],[61,129],[90,97],[109,66],[113,16],[46,27],[144,-5],[92,-46],[80,-85],[50,-21],[77,-74],[34,-74],[36,-101],[241,-40],[52,6],[100,-15],[85,-42],[42,32],[92,48],[100,33],[97,16],[57,-3],[103,-62],[116,-57],[149,-78],[94,-69],[73,-85],[26,-133],[-4,-92],[-11,-80],[-79,-140],[-67,-102],[-74,-86],[-85,-82],[-81,-36],[-92,-38],[-104,1],[-88,31],[-120,76],[-107,58],[-103,91],[-45,91],[-27,-19],[-115,-29],[-147,14],[-102,54],[-35,55],[-76,39],[-90,93],[-27,37],[-35,-12],[-152,-43],[-150,3],[-144,48],[-75,71],[-78,106],[-21,127],[16,83],[-31,38]],[[30783,415966],[-16,36],[-7,65],[46,86],[70,100],[69,67],[36,10],[7,18],[31,43],[40,32],[53,16],[67,4],[31,-2],[29,27],[82,36],[104,21],[50,1],[105,-12],[102,-37],[30,14],[44,29],[28,13],[35,8],[4,20],[53,70],[56,38],[114,41],[80,1],[94,4],[78,-13],[78,-29],[90,-82],[82,-100],[15,-72],[-22,-101],[-39,-92],[-60,-74],[-61,-60],[-60,-31],[13,-75],[-4,-58],[-60,-92],[-58,-97],[-89,-85],[-38,-4],[-21,-24],[-41,-22],[-54,-51],[-69,-84],[-82,-79],[-126,-84],[-130,-34],[-34,3],[16,-47],[0,-40],[-18,-71],[-64,-67],[-106,-90],[-160,-38],[-158,2],[-121,64],[-31,31],[-52,120],[-23,76],[0,93],[58,103],[79,73],[95,55],[71,8],[-32,22],[-59,6],[-79,30],[-87,85],[-51,90],[-34,106],[30,70],[-19,10]],[[94543,426009],[-3,35],[6,54],[26,59],[19,29],[52,52],[-12,67],[-1,35],[13,43],[28,46],[54,63],[29,11],[43,-1],[87,45],[58,18],[62,12],[41,3],[102,-5],[78,-20],[63,-43],[32,-13],[32,13],[28,35],[71,48],[72,35],[151,10],[58,-6],[161,-68],[7,8],[80,32],[65,5],[74,-11],[85,-33],[68,-45],[40,-30],[98,-23],[69,-76],[108,-101],[68,-66],[36,-60],[14,-55],[7,-53],[-8,-50],[-24,-51],[-51,-79],[-29,-33],[-30,-25],[-71,-34],[-68,-10],[-18,-8],[-54,-88],[-47,-43],[-59,-43],[-126,-51],[-68,-4],[-107,30],[-148,67],[-63,52],[-27,26],[-129,-64],[-87,-37],[-84,-10],[-108,10],[-45,-45],[-46,-32],[-62,-27],[-76,-15],[-93,2],[-71,15],[-79,31],[-64,48],[-44,64],[-25,63],[-18,86],[-30,14],[-64,52],[-28,62],[-18,78]],[[23043,387328],[-38,109],[-8,65],[10,44],[18,25],[-16,31],[10,76],[46,116],[70,92],[50,111],[23,19],[51,127],[46,75],[96,67],[81,21],[39,28],[61,26],[26,4],[78,57],[63,38],[64,19],[20,23],[67,25],[59,12],[75,-17],[33,23],[65,2],[70,-18],[83,-47],[40,-35],[21,-27],[22,-15],[127,-35],[78,-47],[87,-72],[65,-78],[25,-61],[3,-59],[-10,-25],[56,-161],[-1,-63],[-15,-39],[-48,-77],[-76,-70],[-56,-13],[-20,-38],[-57,-56],[-86,-50],[-61,-24],[-20,-4],[-70,-81],[-82,-57],[-105,-23],[-69,6],[-24,-23],[-56,-24],[-62,-15],[-26,2],[-24,-27],[-44,-37],[-58,-24],[-120,-11],[-90,12],[-21,12],[-48,-15],[-94,-3],[-72,17],[-56,25],[-25,28],[-27,-8],[-32,5],[-44,35],[-67,102]],[[1266806,385446],[-56,83],[-3,105],[55,153],[-11,27],[26,187],[74,106],[73,45],[126,15],[29,15],[50,18],[44,84],[71,58],[101,28],[58,2],[170,37],[86,15],[73,-17],[88,-68],[51,-59],[46,-7],[78,-29],[62,-37],[39,-43],[24,-46],[5,-41],[102,-49],[98,-101],[36,-86],[9,-100],[-31,-142],[-38,-84],[-15,-23],[-1,-42],[-37,-105],[-52,-66],[-90,-105],[-98,-45],[-77,1],[-30,-50],[-33,-31],[-162,-89],[-171,-39],[-171,46],[-94,53],[-8,-6],[-80,24],[-52,27],[-85,25],[-98,68],[-49,93],[-69,58],[-63,137]],[[290,383387],[-5,71],[3,59],[-1,108],[30,83],[61,96],[38,36],[75,46],[49,19],[78,14],[61,-15],[66,-24],[68,-44],[44,-41],[85,-103],[35,-48],[16,-41],[56,77],[49,52],[58,49],[46,37],[74,29],[89,23],[60,-13],[129,-69],[22,-24],[12,3],[45,-10],[27,55],[31,49],[37,47],[56,49],[104,36],[65,24],[64,17],[91,4],[52,-15],[58,-21],[36,-24],[52,19],[67,-9],[69,-32],[87,-70],[38,-39],[18,7],[33,-7],[69,-29],[64,-44],[57,-66],[23,-51],[28,-78],[-2,-76],[-16,-72],[-49,-64],[-55,-43],[-142,-63],[-17,1],[-20,-36],[-38,-34],[-50,-34],[-65,-36],[-86,-6],[-78,19],[-79,37],[-61,44],[-45,-28],[-42,-13],[-15,2],[-6,-22],[-22,-26],[-63,-52],[-84,-40],[-65,-18],[-80,-12],[-48,2],[-19,8],[-28,-16],[-62,-10],[-128,36],[-66,52],[-36,41],[-13,29],[-25,-7],[-43,25],[-42,35],[-35,52],[-29,14],[-26,25],[-27,41],[-30,55],[-24,37],[-16,-7],[-7,-36],[-56,-91],[-31,-39],[-37,-29],[-43,-26],[-55,-22],[-37,7],[-36,-21],[-55,-23],[-60,-12],[-55,5],[-56,19],[-61,32],[-26,25],[-49,85],[-28,94]],[[29382,389043],[-51,114],[14,145],[38,94],[5,52],[28,129],[51,156],[83,115],[110,88],[55,24],[10,24],[39,51],[66,73],[56,41],[87,41],[33,12],[15,-2],[36,31],[76,51],[70,32],[74,9],[103,3],[66,-17],[66,-22],[39,0],[63,-15],[57,-42],[17,-18],[60,-16],[63,-46],[42,-75],[55,-104],[22,-96],[5,-91],[2,-85],[-5,-29],[-29,-41],[-40,-72],[-55,-123],[-95,-138],[-140,-110],[-118,-41],[-151,-42],[-56,-5],[-23,1],[-100,-107],[-126,-123],[-90,-60],[-106,-16],[-122,28],[-67,61],[-4,16],[-39,11],[-99,39],[-90,95]],[[78877,409997],[-8,53],[4,60],[18,47],[-8,43],[-4,62],[8,58],[24,63],[24,38],[22,24],[-9,52],[30,86],[48,71],[59,62],[77,38],[96,17],[80,2],[69,-11],[77,-23],[76,-38],[59,-59],[45,-101],[17,-91],[46,-53],[32,-81],[6,-97],[-16,-97],[-47,-63],[-31,-24],[14,-24],[52,-9],[108,-38],[60,-47],[26,-30],[39,-70],[7,-33],[54,-40],[64,-70],[20,-79],[0,-71],[-11,-34],[21,-57],[-2,-58],[-19,-67],[-64,-78],[-46,-46],[-97,-132],[-126,-119],[-98,-32],[-200,-19],[-113,-3],[-103,16],[-103,68],[-39,97],[5,69],[20,66],[-42,30],[-24,54],[-5,47],[4,58],[16,64],[19,52],[32,40],[22,20],[-4,48],[1,54],[5,60],[8,32],[-64,13],[-62,18],[-65,38],[-43,40],[-34,47],[-15,39],[-12,48]],[[66024,424591],[-17,58],[1,79],[23,72],[23,34],[20,14],[-4,70],[2,55],[19,63],[25,56],[32,62],[49,71],[65,58],[70,47],[128,39],[83,-8],[88,-18],[64,-30],[58,-41],[35,-39],[41,8],[52,-1],[51,-7],[65,-19],[93,-33],[83,-61],[94,4],[100,-19],[77,-24],[74,-57],[52,-82],[20,-113],[-3,-47],[-47,-91],[-43,-50],[-59,-52],[-48,-33],[3,-28],[-8,-94],[-25,-65],[-25,-43],[-41,-49],[-114,-87],[-4,-11],[2,-48],[-9,-38],[-36,-74],[-47,-55],[-70,-67],[-150,-51],[-115,0],[-120,36],[-103,70],[-39,77],[-23,114],[47,148],[22,51],[25,37],[-48,-16],[-112,-15],[-73,4],[-76,24],[-57,37],[-63,51],[-69,68],[-38,59]],[[9,381673],[-9,53],[3,95],[16,88],[32,71],[32,55],[39,51],[46,51],[35,26],[48,29],[35,15],[68,18],[48,6],[34,-6],[3,66],[48,150],[20,21],[35,25],[23,52],[33,56],[42,63],[56,60],[102,80],[53,25],[73,1],[116,-37],[80,-38],[34,-25],[32,-40],[14,-3],[64,-44],[36,-34],[38,-49],[60,-114],[16,-55],[18,-80],[6,-55],[-15,-133],[-16,-67],[-34,-46],[-50,-62],[-111,-64],[-27,-6],[-18,-12],[-26,-52],[-40,-41],[-33,-25],[-30,-6],[-27,-27],[-46,-32],[-60,-22],[-71,-117],[-103,-147],[-175,-178],[-223,-23],[-166,50],[-85,110],[-45,146],[-28,177]],[[33072,412553],[-42,87],[2,74],[7,91],[22,73],[31,52],[34,39],[83,64],[95,24],[121,10],[74,-4],[107,-19],[101,-27],[235,-33],[38,4],[78,1],[178,36],[104,-6],[98,-41],[26,-25],[42,3],[84,-17],[58,-28],[72,-71],[41,-71],[28,-55],[16,-157],[-22,-55],[-129,-168],[-65,-44],[-143,-86],[-50,-65],[-47,-50],[-70,-81],[-100,-39],[-93,-18],[-107,25],[-49,14],[-77,12],[-102,25],[-116,62],[-66,45],[-103,117],[-25,34],[-65,10],[-80,28],[-90,75],[-28,63],[-106,92]],[[68252,402228],[-10,23],[4,28],[16,50],[30,65],[41,76],[49,55],[61,45],[62,34],[179,86],[90,36],[112,17],[75,-14],[94,-25],[90,-49],[69,-42],[64,34],[58,24],[75,12],[28,-1],[59,-20],[150,-108],[56,-36],[137,-161],[64,-58],[58,-93],[27,-54],[1,-59],[-6,-40],[-25,-88],[-62,-125],[-94,-101],[-118,-69],[-111,-45],[-48,-12],[-65,25],[-121,2],[-86,23],[-98,57],[-59,92],[-37,101],[-18,66],[-13,18],[-46,-33],[-160,-99],[-66,-17],[-74,10],[-54,2],[-42,-8],[-76,29],[-71,71],[-84,110],[-73,102],[-32,64]],[[82673,407756],[-38,138],[0,103],[38,103],[75,103],[189,103],[150,172],[113,138],[151,103],[96,30],[91,0],[152,-30],[225,-69],[75,-172],[-75,-206],[-38,-172],[37,-241],[0,-206],[-188,-207],[-189,-34],[-188,34],[-301,35],[-263,103],[-112,172]],[[115586,428791],[3,40],[17,68],[32,76],[23,35],[60,77],[22,42],[29,38],[45,41],[53,33],[-17,44],[-11,65],[2,30],[12,55],[15,37],[25,41],[-30,60],[-12,49],[-1,51],[13,59],[19,43],[41,55],[41,37],[64,38],[38,16],[82,18],[54,3],[61,-6],[80,-22],[57,-28],[54,-40],[30,-32],[34,-53],[18,-49],[7,-55],[-2,-35],[-21,-72],[44,-14],[68,-33],[36,-26],[46,-47],[39,-57],[21,-42],[16,-64],[0,-47],[38,-50],[21,-42],[15,-64],[0,-50],[-14,-60],[-14,-33],[-33,-48],[-39,-38],[-46,-33],[-58,-27],[-53,-16],[-32,-36],[-13,-26],[-46,-59],[-42,-35],[-65,-36],[-85,-25],[-84,-7],[-67,-31],[-50,-18],[-46,-9],[-66,-5],[-54,5],[-86,22],[-44,21],[-76,28],[-62,40],[-40,38],[-25,34],[-26,51],[-11,45],[-4,35]],[[27709,388570],[-25,113],[2,134],[21,137],[45,129],[107,109],[112,86],[113,52],[76,7],[37,-1],[0,16],[102,174],[48,66],[59,59],[36,20],[70,9],[67,-3],[108,-19],[58,-20],[83,-34],[49,-37],[62,-36],[56,-62],[8,-40],[5,-64],[-17,-87],[-35,-129],[-56,-101],[-54,-57],[-70,-42],[-62,-33],[-35,-4],[1,-20],[-11,-124],[-33,-106],[-44,-109],[-42,-66],[-36,-51],[-51,-60],[-50,-43],[-67,-51],[-72,-30],[-133,-14],[-106,11],[-94,40],[-100,50],[-32,22],[-30,40],[-37,69],[-33,100]],[[1246935,390394],[-24,58],[2,48],[8,59],[19,60],[27,47],[46,54],[54,32],[97,37],[91,19],[125,-20],[71,-31],[116,-69],[21,-15],[27,13],[28,1],[29,-9],[68,-43],[40,-19],[17,-2],[49,-27],[43,-44],[65,42],[95,26],[67,15],[50,-13],[25,-12],[43,-33],[126,-47],[56,-29],[33,-27],[45,-46],[40,-60],[14,-53],[6,-54],[-4,-81],[2,-125],[-12,-48],[-37,-67],[-43,-54],[-51,-36],[-64,-37],[-59,-28],[-56,-4],[-63,23],[-52,22],[-20,4],[-41,-11],[-62,4],[-40,20],[-38,29],[-69,-3],[-70,4],[-162,52],[-72,28],[-65,40],[-60,41],[-52,18],[-106,17],[-50,21],[-68,39],[-58,58],[-76,83],[-40,54],[-31,79]],[[1262283,384892],[-15,108],[10,66],[28,69],[23,35],[61,78],[72,53],[78,25],[78,-1],[113,-31],[64,-33],[19,8],[64,-2],[69,-28],[67,-17],[128,-60],[64,-66],[77,-44],[81,-84],[36,-103],[36,-41],[97,-71],[49,-76],[18,-76],[-6,-111],[-43,-74],[-43,-58],[-10,-18],[-52,-27],[-75,-29],[-115,-31],[-106,2],[-93,52],[-56,36],[-74,-2],[-34,28],[-14,-18],[-61,3],[-94,20],[-78,47],[-73,82],[-19,59],[-16,60],[-44,17],[-96,83],[-61,69],[-54,101]],[[993,384581],[-15,47],[-11,72],[21,129],[16,87],[26,90],[43,75],[42,67],[89,87],[110,52],[22,20],[27,14],[53,4],[154,-4],[65,-22],[89,-55],[50,-29],[82,-63],[54,-54],[16,-43],[19,-38],[38,-58],[23,-53],[16,-53],[19,-14],[23,-31],[0,-53],[-20,-67],[-24,-100],[-15,-82],[-26,-47],[-50,-64],[-56,-67],[-30,-27],[-54,-31],[-88,-37],[-77,-24],[-88,-16],[-34,8],[-35,-6],[-43,6],[-46,21],[-97,78],[-42,56],[-47,42],[-76,49],[-94,94],[-29,40]],[[56379,405768],[-7,44],[4,46],[42,103],[24,25],[-27,30],[-26,45],[-15,59],[1,46],[19,83],[20,41],[62,66],[68,38],[116,37],[59,9],[61,-7],[36,-14],[34,-20],[33,-34],[92,-76],[21,-25],[5,-27],[63,-49],[34,-48],[36,-88],[51,-61],[31,-69],[12,-66],[6,-61],[-7,-47],[-16,-53],[-24,-52],[-28,-74],[-54,-89],[-23,-30],[-127,-73],[-88,-29],[-78,-4],[-91,25],[-59,20],[-65,51],[-45,17],[-28,21],[-41,48],[-54,114],[-18,76],[-9,52]],[[1253956,388140],[-15,37],[18,85],[22,71],[27,55],[44,44],[58,46],[50,23],[58,21],[51,0],[65,-3],[54,-23],[30,-23],[29,9],[40,5],[49,-17],[83,-43],[38,-32],[9,-13],[35,4],[47,-19],[46,-24],[59,-41],[33,-26],[44,-44],[20,-27],[40,-77],[14,-52],[-5,-76],[-32,-78],[-58,-90],[-39,-30],[-34,-70],[-24,-26],[-43,-21],[-95,-42],[-69,-18],[-60,-10],[-51,-14],[-83,-1],[-74,26],[-46,22],[-29,21],[-81,72],[-38,59],[-68,140],[-41,47],[-54,102],[-24,51]],[[38929,461026],[-13,95],[0,96],[13,85],[8,25],[57,41],[80,79],[46,30],[51,13],[44,18],[119,37],[69,14],[150,-12],[101,-14],[115,-48],[68,-41],[102,-120],[27,-82],[10,-108],[-19,-53],[-46,-51],[-74,-111],[-81,-58],[-94,-39],[-121,-40],[-191,11],[-163,42],[-176,96],[-82,95]],[[62933,456015],[-63,108],[-16,164],[59,144],[95,78],[133,69],[160,32],[161,-27],[146,-48],[93,-72],[37,-45],[35,-54],[0,-38],[-14,-47],[-17,-35],[8,-58],[-4,-58],[-42,-82],[-48,-58],[-42,-39],[-108,-54],[-190,-23],[-237,45],[-146,98]],[[5937,385400],[-6,38],[1,43],[7,50],[24,63],[30,37],[54,87],[35,54],[55,51],[40,18],[34,8],[47,22],[43,-9],[89,-28],[137,-69],[31,-11],[35,-34],[30,-37],[21,-44],[22,-62],[16,-29],[10,-32],[10,-57],[4,-64],[-13,-68],[-57,-100],[-34,-43],[-66,-50],[-79,-49],[-53,-23],[-41,-13],[-35,-4],[-104,-3],[-62,22],[-92,90],[-39,41],[-31,39],[-50,95],[-9,35],[-4,36]],[[36428,465274],[-190,25],[3,730],[72,24],[84,20],[121,-5],[112,-21],[89,-41],[123,-90],[49,-61],[20,-64],[2,-53],[65,-77],[3,-65],[-20,-53],[-31,-46],[-33,-38],[-250,-145],[-87,-32],[-132,-8]],[[67596,424145],[-11,73],[33,126],[19,51],[28,55],[39,38],[50,29],[114,47],[45,35],[68,-9],[59,-19],[99,-26],[94,-35],[31,-21],[38,-39],[33,-49],[62,-121],[12,-46],[5,-49],[-2,-90],[-17,-36],[-43,-55],[-57,-54],[-87,-56],[-110,-32],[-72,-13],[-113,6],[-14,-15],[-44,22],[-82,30],[-52,24],[-24,38],[-26,59],[-57,84],[-18,48]],[[2853,382873],[-26,64],[-2,73],[9,47],[21,68],[62,77],[54,40],[106,48],[96,5],[38,-18],[40,31],[65,10],[47,-2],[23,-6],[60,-30],[60,-34],[22,-29],[40,-39],[27,-49],[16,-3],[23,-31],[52,-125],[-1,-56],[-11,-94],[-26,-74],[-70,-70],[-108,-49],[-107,-19],[-89,9],[-61,23],[-37,32],[-28,-6],[-50,-1],[-58,12],[-60,30],[-39,41],[-40,31],[-13,20],[-35,74]],[[22430,433310],[-33,77],[17,155],[66,77],[181,103],[66,52],[83,38],[148,39],[117,-22],[89,-50],[85,-74],[41,-102],[12,-108],[-14,-28],[-62,-101],[-88,-107],[-48,-31],[-94,-35],[-145,-46],[-133,-11],[-106,19],[-66,39],[-116,116]],[[12815,386850],[-21,90],[-2,91],[20,91],[87,125],[92,63],[72,31],[100,0],[44,6],[56,-23],[70,-35],[69,-61],[63,-67],[30,-50],[24,-86],[-2,-60],[-53,-96],[-24,-56],[-38,-73],[-63,-69],[-63,-45],[-46,-22],[-46,-9],[-48,-2],[-82,31],[-91,57],[-132,139],[-16,30]],[[36613,464825],[-13,36],[1,45],[15,52],[29,62],[55,72],[75,71],[90,35],[125,13],[85,5],[86,-7],[117,-52],[41,-25],[45,-45],[54,-71],[33,-82],[6,-77],[-24,-64],[-66,-61],[-75,-39],[-144,-50],[-66,-19],[-53,-5],[-64,1],[-84,20],[-65,20],[-73,36],[-60,46],[-36,48],[-34,35]],[[61367,453184],[-5,74],[12,62],[55,78],[50,43],[41,24],[122,36],[76,9],[110,-13],[45,2],[64,-21],[68,-36],[57,-42],[41,-45],[35,-58],[20,-77],[-27,-92],[-36,-51],[-83,-78],[-66,-41],[-63,-24],[-33,-8],[-109,-9],[-115,10],[-98,35],[-95,61],[-37,40],[-26,62],[-3,59]],[[39194,397199],[-2,53],[8,57],[13,35],[40,70],[26,40],[30,21],[69,42],[120,14],[94,-4],[29,-11],[42,-25],[17,16],[28,-8],[43,-36],[26,-33],[39,-80],[12,-122],[8,-35],[0,-89],[-10,-49],[-25,-66],[-18,-28],[-55,-58],[-64,-42],[-74,-25],[-42,-4],[-43,5],[-91,26],[-36,19],[-33,30],[-43,47],[-42,54],[-23,38],[-21,43],[-13,46],[-9,59]],[[32442,415973],[-14,56],[5,51],[25,55],[60,68],[61,49],[54,27],[114,43],[72,9],[59,-3],[48,-12],[51,-22],[41,-24],[44,-40],[24,-53],[20,-59],[33,-71],[6,-29],[-5,-51],[-72,-105],[-62,-73],[-81,-44],[-72,-33],[-89,-23],[-48,-1],[-71,14],[-51,27],[-67,54],[-51,73],[-25,47],[-9,70]],[[14176,387204],[-18,45],[-7,71],[72,152],[104,72],[111,39],[46,4],[38,9],[27,-8],[58,-28],[89,-66],[60,-67],[60,-130],[1,-65],[-25,-63],[-73,-120],[-52,-52],[-83,-53],[-38,-14],[-67,-14],[-72,-1],[-85,44],[-65,66],[-37,54],[-44,125]],[[63717,404238],[-7,39],[7,33],[21,42],[41,72],[52,58],[40,39],[71,32],[70,8],[39,-4],[23,5],[102,-8],[29,-9],[37,-24],[36,-35],[51,-73],[42,-68],[7,-42],[-11,-73],[-30,-80],[-10,-45],[-81,-64],[-57,-37],[-90,-41],[-40,-8],[-60,9],[-71,27],[-66,32],[-51,41],[-39,49],[-42,85],[-13,40]],[[57997,402121],[-21,73],[-4,68],[22,65],[21,41],[39,50],[53,56],[40,32],[22,11],[71,15],[64,-3],[81,-13],[33,-13],[70,-54],[40,-46],[40,-70],[46,-108],[-1,-22],[-23,-69],[-34,-51],[-46,-59],[-39,-43],[-102,-45],[-58,-11],[-60,0],[-78,28],[-75,43],[-48,40],[-37,44],[-16,41]],[[1261610,385191],[-1,59],[16,54],[24,61],[32,46],[70,65],[40,18],[39,24],[132,4],[123,-47],[87,-116],[24,-110],[3,-73],[-12,-71],[-49,-89],[-62,-47],[-76,-33],[-169,3],[-51,31],[-66,43],[-36,48],[-20,20],[-32,49],[-13,35],[-3,26]],[[1259310,386632],[-7,33],[-5,45],[6,43],[25,53],[61,69],[33,28],[49,33],[40,21],[94,29],[58,-6],[59,-22],[30,-16],[60,-61],[43,-60],[16,-31],[12,-37],[3,-46],[-1,-73],[-12,-54],[-27,-47],[-24,-31],[-48,-40],[-46,-30],[-54,-26],[-64,-16],[-47,-6],[-36,4],[-44,18],[-40,30],[-57,58],[-52,68],[-25,70]],[[30706,1540],[-76,-11],[-47,7],[-30,11],[-18,22],[-21,-5],[-35,-14],[-50,1],[-54,-8],[-20,-8],[-19,-20],[-19,-41],[-13,-50],[-9,-47],[-21,-42],[-31,-38],[-74,-82],[-126,-138],[-47,-23],[-73,10],[-51,29],[-24,33],[-17,41],[-24,4],[-40,23],[-29,41],[-30,65],[-9,33],[-7,4],[-46,5],[-50,23],[-48,45],[-32,50],[-31,42],[-19,68],[-4,44],[0,35],[30,109],[24,63],[44,73],[43,60],[36,38],[29,5],[9,-3],[22,45],[23,13],[43,8],[16,-3],[119,17],[58,16],[14,43],[31,46],[18,13],[20,5],[21,46],[25,35],[33,31],[4,38],[56,85],[37,22],[40,14],[35,2],[48,-8],[48,-34],[11,-17],[81,-85],[72,23],[79,-11],[80,-35],[92,-161],[19,-140],[37,-56],[16,-95],[-4,-112],[-30,-92],[-34,-65],[-36,-25],[-39,-13],[-26,-4]],[[34134,2789],[19,-26],[17,-55],[10,-47],[1,-52],[18,-44],[6,-25],[-3,-84],[5,-37],[16,27],[25,16],[41,13],[28,26],[35,20],[42,4],[119,-20],[8,13],[77,-16],[21,-7],[51,16],[73,-9],[34,-26],[30,-39],[28,-72],[8,-48],[-2,-181],[2,-68],[-2,-95],[-11,-105],[-16,-52],[-18,-37],[-27,-35],[-34,-37],[-41,-16],[-37,-8],[-38,9],[-55,29],[-28,-27],[-69,-40],[-33,-5],[-61,25],[-47,30],[-20,35],[-31,116],[-18,45],[-22,29],[-51,29],[-19,29],[-14,52],[-8,47],[-5,70],[-1,48],[-76,-71],[-47,-19],[-25,-5],[-24,1],[-26,12],[-17,19],[-13,26],[-18,-15],[-36,-12],[-49,-7],[-43,5],[-27,13],[-44,52],[-76,121],[-30,66],[-11,49],[0,86],[2,61],[10,69],[7,35],[11,25],[38,48],[15,27],[34,22],[52,29],[59,16],[109,-28],[15,15],[39,25],[19,5],[37,3],[33,-12],[50,-36],[29,-40]],[[28573,20521],[3,84],[13,94],[41,84],[51,68],[58,35],[72,3],[60,-10],[75,-23],[30,-21],[30,-33],[19,-66],[9,-203],[1,-9],[-1,-104],[-29,-95],[-44,-61],[-59,-24],[-90,-5],[-85,13],[-79,40],[-46,61],[-26,96],[-3,76]],[[38873,317],[5,131],[22,73],[30,69],[37,57],[45,40],[47,21],[56,10],[19,-2],[61,-37],[41,-41],[26,-49],[17,-46],[23,-97],[10,-76],[-2,-93],[-13,-73],[-16,-73],[-20,-45],[-46,-60],[-23,-14],[-78,-12],[-56,3],[-76,24],[-41,41],[-40,87],[-19,80],[-9,82]],[[317014,362869],[17,-5],[164,-73],[2,-2],[200,-93],[132,-56],[309,210],[442,298],[441,299],[102,66],[340,230],[442,296],[111,77],[145,96],[85,26],[542,175],[441,144],[19,6],[117,-72],[306,-193],[95,-60],[346,-218],[442,-280],[0,-47],[315,-180],[9,0],[117,-66],[0,7],[442,-281],[0,-13],[441,-248],[0,-12],[180,-111],[-9,0],[271,-184],[441,-278],[442,-288],[485,-304],[175,-104],[223,-153],[210,-138],[-30,0],[261,-163],[442,-288],[0,17],[420,-290],[21,-29],[442,-292],[0,-7],[441,-259],[221,-137],[26,0],[195,-128],[0,-20],[442,-296],[0,-38],[371,-243],[-26,0],[96,-75],[0,31],[442,-296],[0,-13],[441,-305],[0,17],[99,-83],[343,-230],[441,-301],[298,-193],[-15,0],[159,-101],[441,-296],[0,-12],[440,-315],[941,-645],[61,-272],[122,-532],[72,-305],[56,-238],[29,-128],[142,-193],[220,-303],[203,-282],[163,-228],[287,-45],[108,209],[88,70],[90,-11],[73,58],[115,-9],[57,-44],[114,-42],[61,0],[37,9],[38,38],[100,191],[114,36],[58,-76],[41,-4],[46,12],[23,16],[25,7],[37,-13],[20,-53],[19,-19],[23,-78],[-123,-496],[25,-269],[70,-204],[46,-87],[-47,-40],[14,-271],[63,-68],[-37,-89],[79,-181],[31,-130],[252,-220],[-1,-180],[105,-92],[74,-263],[182,21],[274,339],[236,-94],[370,110],[294,-94],[218,-278],[34,-44],[226,-292],[9,-6],[-235,-418],[-168,-300],[-315,-586],[483,-14],[57,3],[385,-281],[441,-321],[345,-250],[97,-73],[442,-325],[428,-326],[13,-19],[442,-316],[519,-390],[291,-226],[70,-498],[3,-8],[101,-716],[103,-725],[105,-724],[13,-98],[91,-627],[-9,0],[37,-194],[0,-48],[71,-482],[-5,0],[106,-724],[99,-725],[1,-3],[101,-721],[69,-492],[0,-37],[106,-754],[91,-669],[128,-946],[44,-315],[54,-409],[25,-198],[-162,-527],[-108,-351],[-115,-373],[-63,-208],[-160,-516],[-216,-725],[-3,0],[-63,-211],[-53,-153],[-74,-295],[-18,-34],[-24,-31],[-7,-41],[16,-52],[24,-41],[-11,-61],[-43,-83],[-65,-83],[-32,-73],[-26,-133],[-22,-92],[0,-31],[6,-125],[-2,-43],[-14,-89],[-17,-60],[-15,-76],[-3,-26],[6,-35],[16,-42],[20,-68],[13,-87],[-2,-39],[-56,-165],[-2,-90],[-38,-101],[-57,-206],[3,-163],[-15,-57],[-16,-75],[-21,-47],[-86,-88],[-19,-37],[-35,-45],[-22,-24],[-32,-42],[-15,-65],[-26,-20],[-55,-13],[-36,37],[-26,14],[-33,-2],[-33,-14],[-66,-73],[-22,-50],[-111,-181],[-43,-74],[-135,-220],[-284,-450],[-158,-58],[-170,-65],[-79,-28],[-50,-43],[-104,-44],[-88,-6],[-43,-14],[-132,-70],[-58,-56],[-63,-102],[-8,-17],[-30,-97],[-12,-54],[-51,-129],[-3,-21],[-13,-159],[-12,-190],[13,-69],[19,-145],[14,-39],[7,-33],[-7,-45],[-12,-50],[-10,-22],[-16,-98],[-48,-198],[-13,-79],[60,-216],[26,-97],[44,-156]],[[333536,326257],[1,372],[-172,-2],[-447,-2],[-126,1],[-149,-1],[-124,1],[-220,-1],[-537,2],[-217,0],[-460,-3],[-161,0],[-65,-1],[-207,-1],[-451,0],[-430,1],[-158,3],[-280,3],[-398,3],[-206,-2],[-262,0],[-153,1],[-270,-4],[-127,0],[-165,-2],[-208,1],[-315,-1],[-171,1],[-169,0],[-206,1],[-138,2],[-317,1],[-210,4],[-232,-2],[-441,-2],[0,6],[-293,-3]],[[298878,296141],[207,1],[218,-3],[289,3],[93,-1],[122,2],[27,-1],[291,-2],[77,0],[350,-3],[214,0],[278,1],[25,-1],[432,0],[546,4],[177,-2],[253,-1],[377,1],[217,-3],[15,3],[181,-2],[46,-2],[115,1],[51,-2],[190,2],[135,-2],[65,1],[241,-2],[167,1],[149,-1],[118,1],[87,-1],[130,0],[127,-1],[143,1],[366,-2],[66,2],[389,1],[280,1],[167,3],[73,-2],[125,1],[143,-4],[125,-1],[35,-3],[88,3],[113,0],[363,3],[364,3],[274,-1],[54,-2],[391,2],[462,2],[212,2],[161,1],[107,-1],[362,-1],[140,-2],[275,-10],[473,2],[189,1],[123,-1],[132,0],[188,2],[128,0],[194,2],[64,1],[182,1],[246,-1],[214,2],[209,-1],[116,1],[118,-2],[62,2],[192,-1],[123,1],[256,-1],[549,-1],[173,-2],[230,-1],[325,1],[-3,-24],[-23,-37],[5,-28],[-4,-17],[57,-26],[2,-28],[-15,-8],[-17,6],[-14,-19],[5,-18],[14,10],[30,-27],[7,-21],[19,-25],[-9,-11],[2,-47],[7,-39],[-15,-4],[0,-23],[-14,-1],[-6,-30],[60,-87],[17,-1],[39,-18],[10,-23],[15,10],[41,-11],[49,-24],[2,-18],[17,-21],[9,5],[9,-26],[17,-28],[-11,-36],[9,-16],[-8,-58],[0,-38],[-13,-13],[-20,-38],[5,-34],[-14,-39],[9,-18],[-24,-71],[29,-24],[21,-37],[14,-54],[-21,-29],[2,-12],[-19,-25],[-11,-3],[9,-53],[-13,-13],[-16,-40],[-43,-3],[-22,-14],[-11,-14],[-18,2],[-16,-9],[-3,-22],[-11,-21],[2,-25],[-13,-23],[1,-17],[-28,-20],[7,-35],[11,-11],[-3,-24],[-20,-14],[-3,-14],[-36,7],[-12,-35],[-12,1],[-10,-32],[-16,-15],[-16,12],[-51,-28],[-10,-22],[-14,-9],[-19,1],[-9,-25],[-19,-8],[-6,-23],[-14,3],[-2,-31],[-10,-26],[-20,-5],[-5,-16],[-14,9],[-19,-3],[-30,-62],[-3,-35],[-17,-52],[14,-26],[-1,-40],[-13,-11],[-1,-32],[-35,-19],[0,-14],[-29,-39],[-18,2],[-19,-23],[-9,-20],[-63,-25],[-30,-7],[-3,-24],[-16,-18],[1,-24],[-9,-33],[-26,-17],[-15,0],[-30,-43],[6,-18],[2,-50],[-9,-14],[-26,-26],[-18,-4],[-10,-41],[9,-16],[-15,-37],[3,-24],[-13,-2],[-10,-22],[-17,-10],[0,-38],[-10,-21],[-2,-34],[-20,-42],[-8,-3],[-31,-48],[-18,-50],[-15,-30],[364,5],[270,4],[460,7],[241,4],[145,0],[233,3],[439,7],[125,-1]],[[314097,287427],[17,-62],[28,-50],[36,-26],[14,-24],[17,-17],[83,-57],[14,-22],[14,-40],[6,-39],[-1,-96],[-6,-39],[-13,-40],[-44,-39],[-17,-21],[-42,-40],[-80,-58],[-29,-29],[-12,-19],[35,-70],[4,-19],[-5,-34],[-12,-25],[-14,-12],[-27,5],[-33,26],[-23,29],[-20,34],[-28,-31],[-25,-17],[-44,-17],[-54,-27],[-65,-53],[-32,-19],[-15,-1],[-32,16],[-17,39],[-7,43],[-4,58],[10,36],[-4,36],[-15,48],[-14,29],[-23,20],[-32,18],[-21,5],[-22,-6],[-34,-27],[-15,-17],[-14,-36],[-4,-46],[4,-46],[12,-32],[18,-29],[44,-99],[21,-59],[1,-18],[-8,-34],[-22,-23],[-25,-47],[-5,-23],[-2,-37],[14,-65],[48,-116],[18,-62],[0,-48],[-8,-29],[-14,-23],[-26,-22],[-29,-18],[-41,-11],[-25,-3],[-34,4],[-22,12],[-43,32],[-15,42],[-1,68],[9,22],[59,58],[15,31],[-1,28],[-13,44],[-27,82],[-7,30],[-29,3],[-40,-15],[-21,-22],[-20,-45],[-6,-20],[-1,-32],[22,-104],[10,-13],[12,-51],[-16,-31],[-43,-19],[-27,-4],[-13,-12],[-13,-31],[-4,-35],[3,-24],[76,-122],[25,-20],[34,-11],[25,-1],[44,8],[47,15],[33,5],[35,-2],[30,-22],[17,-36],[4,-41],[-12,-56],[-13,-29],[-35,-55],[-29,-29],[-31,-39],[-23,-43],[-17,-23],[-32,-34],[-26,-14],[-27,-6],[-31,6],[-21,15],[-23,44],[-6,44],[8,78],[9,22],[38,43],[6,41],[-5,32],[-9,23],[-38,56],[-11,5],[-20,-7],[-22,-20],[-20,-40],[-20,-15],[-34,-75],[4,-32],[1,-56],[14,-81],[-16,-69],[-2,-28],[3,-54],[20,-67],[21,-42],[20,-55],[44,-61],[29,-51],[12,-28],[18,-72],[-2,-32],[-15,-44],[-34,-39],[-50,-35],[-38,-60],[-12,-61],[-10,-23],[-12,-89],[5,-82],[10,-54],[7,-14],[37,-46],[18,-52],[8,-38],[-3,-34],[-16,-53],[-15,-31],[-19,-26],[-60,-60],[-57,-55],[-16,-11],[-47,-9],[-25,-13],[-70,-54],[12,-22],[-41,-93],[0,-42],[23,-74],[10,-49],[0,-30],[-14,-39],[-28,-14],[-31,0],[-28,16],[-25,39],[-2,41],[8,52],[35,83],[19,97],[-2,10],[-49,-16],[-34,-16],[-42,-12],[-34,-2],[-26,5],[-44,17],[-30,4],[-22,-4],[-20,-14],[-18,-26],[-5,-50],[3,-28],[9,-23],[43,-56],[14,-13],[15,-35],[14,-67],[-1,-40],[-11,-34],[-30,-66],[-9,-14],[-35,-36],[-25,-4],[-109,15],[-24,-16],[-47,-16],[-23,-26],[-13,-48],[-17,-107],[-7,-56],[2,-57],[-9,-54],[-20,-60],[-29,28],[-39,4],[-29,12],[-25,16],[-43,43],[-14,17],[-11,31],[-15,63],[-9,8],[-30,9],[-22,1],[-21,-12],[-28,-53],[0,-48],[6,-47],[14,-34],[54,-94],[23,-25],[62,-45],[14,-17],[37,22],[13,-14],[33,4],[19,13],[28,3],[46,-17],[34,6],[42,-10],[15,-14],[13,-28],[5,-70],[-13,-46],[-17,-35],[-24,-33],[-27,-25],[-21,-11],[-39,-6],[-47,13],[-26,18],[-22,28],[-32,26],[-37,51],[-27,22],[-31,8],[-99,-97],[-57,-60],[-15,-36],[0,-41],[11,-36],[24,-44],[19,-24],[37,-33],[40,-44],[26,-7],[45,11],[27,19],[39,-7],[21,-22],[21,-50],[0,-22],[-14,-49],[-26,-47],[-15,-33],[-8,-33],[-2,-35],[7,-51],[0,-25],[-7,-20],[-28,-30],[-53,-16],[-42,7],[-39,-22],[-27,-8],[-27,-1],[-29,14],[-43,8],[-43,-7],[-18,-8],[28,-110],[0,-14],[32,-33],[33,-69],[-4,-56],[-18,-41],[-25,-15],[-30,-3],[-31,11],[-28,25],[-10,26],[-3,24],[-35,113],[-19,50],[-52,-45],[-32,-50],[-20,-10],[-49,0],[-31,-3],[-29,-14],[-30,-39],[-8,-45],[7,-43],[14,-23],[25,-14],[31,-9],[76,-28],[38,-21],[56,-38],[25,-29],[10,-17],[-5,-26],[-21,-33],[-31,-64],[-36,-55],[-42,-55],[-45,-67],[-34,-63],[-7,-25],[-1,-28],[7,-46],[13,-53],[52,-94],[21,-51],[15,-15],[61,-40],[18,-8],[44,-11],[28,-20],[28,-38],[12,-47],[-10,-45],[-9,-18],[-22,-26],[-45,-26],[-37,-10],[-12,4],[-96,87],[-44,-7],[-57,-4],[-23,-5],[-65,-30],[-15,22],[-42,44],[-17,8],[-23,-7],[-18,-30],[-18,-56],[1,-20],[14,-25],[-3,-21],[-12,-29],[5,-30],[-10,-46],[0,-42],[14,-38],[37,-59],[23,-30],[27,-20],[36,-4],[23,2],[40,14],[51,41],[25,12],[23,-6],[16,-11],[37,-42],[19,-37],[15,-41],[4,-22],[21,-11],[-1,-32],[-15,-50],[-36,-26],[-51,-12],[-28,-22],[-40,-25],[-20,-6],[-23,2],[-37,17],[-42,35],[-43,30],[-29,29],[-38,74],[-55,96],[-57,-18],[-50,-7],[-38,-2],[-25,-8],[-22,-17],[-23,-25],[-17,-30],[-9,-27],[-4,-32],[3,-36],[25,-48],[18,-17],[28,-13],[57,-16],[34,-13],[40,-29],[24,-26],[49,-60],[39,-43],[17,-35],[13,-50],[1,-28],[-7,-53],[-13,-25],[-56,-57],[-31,-8],[-53,9],[-18,-8],[-28,-31],[-33,-24],[-17,-8],[-56,-12],[-19,-7],[-15,-16],[-14,-42],[1,-27],[21,-67],[25,-51],[31,-39],[81,-88],[14,-31],[0,-40],[-25,-39],[-18,-18],[-14,-31],[-31,-84],[-25,-22],[-25,-10],[-33,-37],[-6,-78],[-6,-24],[63,-25],[25,-5],[27,4],[56,23],[34,30],[28,49],[-6,19],[-3,40],[-13,55],[-6,76],[3,20],[19,53],[23,2],[25,-29],[73,-67],[41,-49],[19,-73],[6,-37],[-1,-28],[-10,-32],[-23,-36],[-15,-42],[-25,-18],[-21,4],[-30,-12],[-62,-37],[-14,-12],[-15,0],[-16,13],[-29,-10],[-26,4],[-21,-24],[-12,-32],[-2,-22],[16,-35],[29,-29],[19,-24],[50,-40],[38,-18],[53,-6],[30,7],[78,50],[25,28],[24,36],[35,66],[7,45],[-2,42],[-7,34],[2,34],[9,29],[28,52],[30,23],[36,-3],[28,-28],[8,-28],[-2,-97],[-15,-43],[-46,-89],[-44,-46],[-32,-38],[-31,-50],[-19,-44],[-33,-66],[-17,-21],[-53,-51],[-7,-14],[4,-70],[-9,-53],[8,-74],[0,-96],[30,-54],[6,-22],[20,-29],[0,-32],[-9,-37],[37,-41],[11,-48],[14,-41],[15,-24],[22,-21],[11,20],[7,51],[16,37],[15,98],[5,20],[22,35],[37,22],[33,-1],[22,-8],[15,-15],[13,-30],[2,-46],[-24,-110],[-22,-44],[-24,-32],[-7,-27],[-19,-17],[0,-17],[-23,2],[-7,-25],[-12,-9],[-31,-5],[7,-61],[10,-68],[9,-102],[-2,-125],[-9,-82],[-8,-32],[-12,-17],[-39,-30],[-35,-10],[-44,-4],[-59,4],[-25,5],[-9,26],[-26,35],[-32,8],[-51,-5],[-26,-19],[-15,-22],[-23,-55],[-1,-23],[4,-75],[8,-13],[59,-40],[37,-65],[39,-13],[35,-21],[44,-51],[16,-13],[32,-40],[12,-28],[3,-27],[-8,-16],[-3,-30],[-10,-35],[0,-20],[-10,-21],[-29,-28],[-44,-14],[-22,-16],[-22,-22],[-14,-49],[1,-42]],[[320896,259395],[-70,-37],[-53,-17],[-50,-12],[-59,-6],[-39,3],[-66,19],[-106,46],[-57,37],[-27,24],[-43,48],[-13,-10],[-65,-26],[-66,-8],[-61,9],[-86,22],[-32,14],[-38,0],[-68,9],[-36,8],[-48,16],[-46,21],[-47,27],[-47,-12],[-33,-4],[-49,1],[-40,10],[-46,19],[-79,53],[-38,37],[-35,50],[-55,-86],[-48,-60],[-67,-61],[-47,-34],[-62,-34],[40,-174]],[[294824,319819],[280,-5],[135,1],[131,-6],[432,-10],[400,-6],[209,-6],[202,-3],[35,1],[415,-10],[155,-2],[339,-9],[89,1],[231,-6],[318,-7],[49,-1],[464,-10],[253,-4],[184,-1],[187,1],[1,-2],[403,4],[285,2],[40,-1],[557,7],[187,2],[300,8],[439,12],[168,4],[229,2],[79,0],[120,2],[244,5],[274,10],[221,-1],[168,-2],[182,1],[242,3],[202,1],[67,2],[204,5],[225,7],[106,6],[270,12],[183,6],[305,6],[65,0],[216,2],[51,-1],[206,4],[225,6],[255,10],[96,5],[164,7],[100,6],[166,1],[184,6],[309,12],[342,9],[78,3],[294,8],[94,5],[222,10],[210,6],[28,4],[252,11],[156,13],[261,14],[75,5],[32,-70],[28,-38],[55,-40],[27,-27],[12,-26],[-1,-12],[-21,-70],[3,-28],[7,-15],[25,-25],[38,-12],[59,-10],[57,-21],[46,-12],[22,-26],[3,-29],[-3,-45],[-12,-54],[3,-40],[16,-31],[30,-27],[49,-29],[18,-24],[9,-21],[23,-94],[20,-31],[25,-20],[38,-16],[30,-7],[52,4],[27,-2],[8,-13],[-1,-46],[-33,-44],[2,-24],[18,-17],[28,-1],[3,-14],[-9,-27],[-18,-39],[1,-37],[6,-15],[55,-24],[13,-19],[26,-9],[36,12],[-11,-51],[6,-30],[22,-43],[10,-4],[29,6],[28,16],[2,-18],[-9,-24],[8,-16],[33,-1],[20,8],[12,15],[1,17],[14,22],[55,-21],[22,-25]],[[298877,299036],[0,186],[1,177],[-1,333],[1,112],[-1,77],[-1,250],[2,748],[1,17],[0,452],[2,256],[-1,150],[2,147],[0,126],[-2,165],[1,124],[-1,43],[-1,337],[-2,260],[2,32],[-1,113],[1,400],[2,248],[4,345],[2,161],[2,220],[1,152],[1,20],[0,164],[0,351],[1,251],[1,249],[3,244],[1,169],[-1,338],[0,206],[-2,263],[-1,407],[1,167],[3,239],[1,380],[1,63],[0,171],[3,251],[2,166],[5,361],[2,203],[1,208],[2,96],[-1,113],[0,249],[-1,427],[-1,90],[2,48],[2,453],[1,231],[-1,45],[-4,17],[12,40],[49,79],[8,36],[1,47],[-18,33],[-45,23],[-32,-4],[-30,-21],[-41,-14],[-53,0],[-30,22],[-8,28],[8,66],[-22,36],[-30,19],[-23,4],[-30,-6],[-59,-55],[-30,-20],[-34,-8],[-43,1],[-17,5],[-43,20],[-35,38],[-15,28],[-23,72],[-15,36],[-18,21],[-22,4],[-29,-7],[-39,-1],[-48,19],[-34,36],[-12,31],[0,15],[28,68],[5,36],[-7,47],[-16,41],[-20,32],[-30,35],[-40,32],[-81,47],[-13,14],[-38,57],[-13,23],[-19,59],[-7,36],[-7,50],[-4,88],[-4,36],[0,38],[16,38],[18,20],[34,15],[21,15],[13,22],[8,31],[-7,48],[-14,34],[-14,15],[-31,7],[-14,-5],[-62,-44],[-40,-1],[-23,9],[-17,17],[-15,36],[0,58],[-6,17],[-24,30],[-35,17],[-29,29],[-13,29],[-5,44],[-15,36],[-28,33],[-36,20],[-55,20],[-62,45],[-26,32],[-14,28],[-13,53],[-1,49],[-7,50],[-13,30],[-17,22],[-65,41],[-18,18],[-35,44],[-31,43],[-24,48],[-19,81],[2,30],[19,85],[15,23],[40,20],[16,-4],[38,-22],[16,-3],[31,7],[23,18],[22,41],[14,53],[1,28],[-5,27],[-18,45],[-8,44],[7,51],[13,43],[18,38],[19,31],[6,18],[23,53],[22,38],[33,33],[29,11],[66,6],[24,9],[22,20],[17,30],[4,20],[3,96],[-10,106],[3,38],[19,40],[35,38],[27,-2],[39,-30],[33,-37],[36,-32],[51,-23],[38,4],[27,11],[30,21],[38,47],[11,34],[10,56],[-6,51],[-16,42],[-16,16],[-23,-4],[-26,-11],[-25,-28],[-26,-22],[-26,-13],[-24,-1],[-30,21],[-49,59],[-4,34],[3,27],[18,27],[36,12],[71,0],[32,6],[20,15],[15,23],[15,55],[-1,88],[-7,23],[-18,30],[-28,17],[-52,-5],[-37,12],[-25,22],[-57,72],[-11,43],[9,33],[36,48],[11,37],[-2,36],[-8,22],[-17,22],[-32,26],[-40,18],[-29,-1],[-51,-22],[-32,-6],[-65,25],[-34,-6],[-13,-13],[-20,-35],[-6,-26],[4,-55],[-6,-29],[-30,-37],[-15,-6],[-40,-2],[-86,-17],[-35,2],[-18,7],[-29,22],[-45,23],[-36,6],[-48,28],[-17,22],[-14,51],[5,44],[-14,42],[-28,16],[-21,0],[-43,-31],[-26,-9],[-36,0],[-34,18],[-15,14],[-9,37],[3,25],[17,55],[-2,51],[-15,30],[-26,18],[-27,9],[-38,-4],[-37,7],[-31,21],[-26,37],[-15,33],[-28,51],[-9,9],[-61,39],[-42,36],[-15,23],[-9,34],[0,36]],[[223176,368590],[170,2],[37,-2],[405,1],[334,-1],[571,-2],[420,1],[128,-2],[256,0],[57,-2],[442,-3],[152,-2],[131,2],[158,-1],[225,1],[197,0],[384,5],[519,1],[488,1],[265,0],[351,2],[221,2],[325,-3],[116,0],[92,-7],[84,-3],[74,3],[192,-3],[79,1],[157,-3],[292,1],[243,-1],[154,-3],[604,-4],[145,2],[92,0],[176,3],[266,-1],[108,1],[333,0],[67,-2],[375,2],[35,2],[163,0],[179,-3],[183,1],[323,1],[3,1],[438,-2],[47,1],[577,0],[621,1],[521,0],[89,0],[353,0],[442,0],[27,0],[404,-2],[10,3],[284,-4],[471,-3],[129,-3],[523,-1],[359,-1],[560,1],[324,1],[441,1],[209,2],[105,-2],[117,1],[48,2],[407,1],[439,3],[139,-1],[264,1],[193,2],[183,-3],[104,2],[242,2],[199,-1],[558,1],[617,2],[150,2],[91,-2],[351,2],[509,0],[203,1],[284,2],[328,0],[165,4],[59,-3],[218,0],[317,0],[124,-3],[140,0],[104,-2],[428,0],[212,-1],[29,-2],[412,1],[128,-1],[220,0],[94,-1],[441,1],[292,1],[591,-1],[36,2],[406,-1],[50,2],[391,0],[278,-2],[259,2],[347,0],[520,0],[468,0],[57,-1],[174,-1],[184,1],[132,-1],[273,4],[531,0],[439,0],[312,0],[445,0],[14,-1],[464,0],[402,0],[29,-2],[409,0],[78,-1],[138,2],[274,0],[412,-3],[110,2],[316,0],[48,-3],[187,1],[31,1],[296,1],[28,1],[440,0],[461,0],[180,-1],[9,1],[252,0],[94,-1],[351,1],[96,-2],[209,1],[81,-1],[311,1],[22,-1],[429,0],[59,1],[189,-2],[201,0],[158,-1],[284,0],[46,1],[319,0],[76,-1],[318,1],[317,2],[159,0],[567,0],[296,1],[110,-1],[195,2],[243,1],[274,-1]],[[265577,350882],[5,-407],[5,-725],[0,-386],[1,-439],[1,-232],[2,-77],[1,-361],[-1,-6],[2,-164],[3,-513],[-1,-157],[1,-566],[0,-650],[2,-77],[-1,-190],[-1,-5],[0,-459],[3,-73],[-65,-6]],[[401537,190005],[56,71],[13,24],[39,42],[48,31],[66,15],[19,14],[39,13],[39,7],[55,-18],[38,-29],[23,-32],[34,2],[53,11],[43,5],[134,-26],[32,-8],[31,-13],[36,-22],[28,-1],[16,-6],[25,6],[44,-10],[35,3],[30,-3],[50,-27],[41,-36],[36,-52],[37,-42],[32,-61],[15,-46],[9,-51],[4,-43],[-4,-76],[-6,-39],[-19,-64],[-22,-39],[-24,-36],[-47,-47],[-19,-11],[-28,-8],[-34,-3],[-48,-35],[-35,-15],[-30,-6],[-27,2],[-22,-23],[-22,-14],[-33,-15],[-31,-6],[-28,5],[-39,-21],[-46,-16],[-42,0],[-16,5],[-37,-44],[-34,-21],[-28,-12],[-21,-2],[-25,-22],[-56,-18],[-28,0],[-21,8],[-58,-3],[-29,10],[-33,20],[-13,-6],[-10,-17],[-43,-32],[-35,-16],[-56,-12],[-33,5],[-23,10],[-45,27],[-70,36],[-41,47],[-36,51],[-34,70],[-26,77],[-6,34],[-5,55],[-2,103],[3,72],[24,92],[11,23],[8,31],[-129,-121],[-42,-32],[-39,-10],[-42,2],[-8,-19],[-43,-62],[-43,-35],[-2,-23],[-15,-69],[-21,-58],[-18,-30],[-25,-26],[-4,-48],[-21,-69],[-9,-56],[-12,-31],[-32,-47],[-46,-35],[-29,-14],[3,-26],[-2,-67],[-23,-79],[-32,-72],[-47,-55],[-41,-23],[-19,-6],[-23,-47],[-40,-52],[-24,-22],[-62,-21],[-28,-2],[-37,-29],[-38,-27],[-40,-18],[-39,-13],[-81,-12],[-50,4],[-50,12],[-28,-53],[-37,-47],[-41,-46],[-19,-12],[-37,-11],[-81,10],[-29,11],[-22,15],[-17,17],[-56,43],[-56,-76],[-39,-48],[-37,-38],[-41,-25],[-19,-2],[-61,-1],[-66,9],[-29,9],[-16,9],[-49,-55],[-69,-49],[-25,-10],[-25,-4],[-56,2],[-50,18],[-51,33],[-3,10],[-36,31],[-71,22],[-11,-10],[-37,-13],[-23,-3],[-65,-1],[-29,-7],[-31,0],[-33,-30],[-47,-11],[-46,2],[-41,13],[-34,22],[-32,37],[-47,-52],[-14,-9],[-41,-11],[-30,0],[-13,-32],[-27,-43],[-22,-27],[-34,-27],[-18,-7],[-10,-16],[-26,-25],[-32,-21],[-33,-15],[-29,-8],[-26,1],[-36,9],[-30,18],[-26,22],[-25,31],[-18,37],[-23,60],[-8,36],[-6,47],[4,70],[6,37],[11,42],[24,63],[-23,-15],[-39,-10],[-46,13],[-34,25],[-17,-8],[-79,-11],[-39,-43],[-50,-36],[-19,-9],[-35,1],[-54,33],[-45,39],[-12,20],[-36,-5],[-34,15],[-19,13],[-22,-8],[-17,1],[-43,13],[-19,-14],[-30,-4],[-44,7],[-41,-40],[-46,-31],[-18,-1],[-26,-18],[-25,-6],[-38,-3],[-14,-11],[-36,-17],[-52,-16],[-33,0],[-32,14],[-25,-49],[-36,-36],[-36,-21],[-23,-1],[-49,18],[-13,-5],[-43,-6],[-29,4],[-19,9],[-33,0],[-70,31],[-13,-2],[-19,12],[-39,-9],[-23,4],[-27,13],[-45,0],[-26,9],[-24,19],[-20,-1],[-51,6],[-30,12],[-31,-6],[-33,10],[-37,0],[-52,9],[-45,20],[-21,-33],[-27,-30],[-23,-21],[-37,-18],[-45,-9],[-30,1],[-25,7],[-32,15],[-28,21],[-32,34],[-21,26],[-26,63],[-31,22],[-23,45],[-16,39],[-12,47],[-9,76],[3,62],[-1,46],[-5,63],[3,64],[14,89],[10,43],[-5,72],[0,76],[7,61],[14,49],[-12,52],[-7,50],[2,55],[10,64],[14,51],[25,50],[27,18],[12,22],[-1,43],[-6,23],[-6,41],[3,51],[7,28],[-4,89],[7,62],[18,70],[41,95],[15,27],[-6,9],[-26,70],[-10,40],[-6,44],[-9,41],[-60,19],[-49,36],[-30,31],[-22,36],[-35,84],[-28,83],[-24,79],[-21,46],[-33,94],[-14,52],[-12,84],[0,35],[7,53],[9,47],[16,45],[24,49],[17,25],[78,61],[109,37],[46,46],[50,40],[50,51],[-16,53],[-15,59],[-15,85],[-4,38],[-1,41],[4,48],[18,0],[9,32],[29,79],[20,35],[87,119],[24,27],[29,24],[75,37],[52,16],[27,14],[43,14],[58,8],[66,-4],[84,-11],[102,-16],[61,-24],[0,-13],[15,-8],[54,-41],[41,-27],[52,-12],[8,-6],[28,3],[42,-9],[47,-21],[37,-12],[21,12],[0,18],[64,19],[67,5],[49,0],[51,-14],[48,17],[67,4],[64,-8],[55,-14],[24,-12],[42,-27],[22,-22],[38,-20],[32,14],[17,2],[54,22],[21,18],[41,15],[28,6],[38,-1],[32,4],[16,9],[47,13],[58,3],[40,-7],[25,5],[38,-5],[34,-17],[34,9],[74,-7],[58,-17],[25,-11],[30,-1],[34,-9],[63,-31],[66,-23],[36,46],[36,28],[18,10],[46,10],[25,-3],[11,8],[49,12],[58,1],[32,-4],[42,-15],[14,3],[29,-6],[25,6],[58,-1],[35,-13],[37,-26],[33,-20],[38,-14],[57,-5],[11,7],[43,7],[39,-2],[62,-20],[24,-13],[36,1],[47,-12],[38,19],[26,8],[39,-2],[26,-6],[94,0],[69,-4],[31,-14],[18,-3],[28,-13],[12,2],[51,2],[53,-14],[25,4],[40,1],[37,-4],[17,-6],[54,-27],[27,-2],[35,18],[53,11],[72,-25],[48,-24],[39,-32],[33,-3],[22,-7],[30,15],[29,9],[28,2],[31,-4],[32,-9],[47,-21],[68,-72],[25,5],[63,-11],[47,-19],[50,-27],[15,-3],[47,-1],[37,-5],[71,-20],[27,-21],[0,-28],[22,-5],[37,-25],[32,-30],[28,-41],[21,-51],[38,-22],[27,-23],[35,-49],[10,-22],[17,20],[42,36],[15,4],[16,39],[25,39],[21,20],[36,25],[19,7],[58,-17],[76,-29],[72,-44],[63,-41],[76,-53],[66,-48],[56,-44],[35,-12],[12,-13],[25,-7],[29,-27],[28,5],[39,-3],[73,-17],[20,60],[16,30],[20,28],[28,25],[27,20],[29,12],[28,2],[50,-11],[38,-24],[43,-37],[18,-6],[42,-27],[40,-45],[30,-47],[58,-1],[38,19],[52,10],[40,24],[19,6],[29,2],[53,-15],[44,-34],[31,-39],[16,-29],[16,-42],[18,-35],[13,-38],[12,-57],[24,-84],[11,-116],[-1,-57],[-10,-54],[-13,-44],[-33,-85],[-23,-76],[-29,-57],[-43,-45],[-56,-32],[-30,-4],[-25,3],[-35,14],[-12,-19],[-23,-21],[-37,-17],[-47,-13],[-37,9],[-34,15],[-31,26],[-19,25],[-18,33],[-27,-3],[-27,6],[-27,17],[-41,31],[-21,25],[-41,56],[-20,7],[-71,46],[-33,37],[-12,24],[-25,25],[-50,-6],[-39,10],[-45,7],[14,-58],[4,-47],[-6,-84],[-7,-37],[-18,-61],[-32,-60],[-24,-24],[-29,-23],[-36,-18],[0,14],[-44,-9],[-30,-17],[-47,-10],[-28,-46],[-8,-30],[-18,-44],[-20,-74]],[[392907,189768],[-3,87],[0,68],[5,53],[10,30],[42,72],[32,36],[33,24],[29,14],[67,-5],[35,-18],[39,-36],[26,-40],[26,-53],[13,-47],[10,-53],[8,0],[25,-17],[20,18],[19,11],[48,12],[30,-4],[32,-15],[32,-23],[30,-34],[51,-80],[21,-41],[21,-51],[17,-71],[9,-48],[6,-53],[2,-47],[-6,-90],[-7,-44],[-13,-49],[-20,-46],[-44,-87],[-25,-54],[-27,-40],[-30,-33],[-85,-62],[-31,-16],[-11,3],[-18,-8],[-24,-1],[-19,7],[-32,-6],[-49,20],[-29,18],[-23,30],[-21,10],[-37,26],[-55,64],[-13,21],[-39,43],[-24,36],[-18,37],[-19,59],[-10,58],[-7,66],[1,32],[7,33],[20,56],[12,27],[3,58],[-8,9],[-24,49],[-6,34],[-4,51]],[[394519,191095],[-5,76],[7,60],[12,58],[21,47],[27,42],[31,34],[30,28],[25,16],[28,12],[36,8],[30,-3],[39,-14],[37,-30],[31,-37],[31,-41],[32,-59],[13,-49],[9,-49],[4,-57],[-2,-42],[-6,-36],[-20,-71],[-21,-41],[-25,-36],[-24,-27],[-31,-30],[-22,-15],[-42,-15],[-31,-1],[-47,11],[-28,19],[-40,34],[-35,44],[-17,26],[-27,53],[-16,61],[-4,24]],[[292395,336713],[-516,1],[-1,-25],[16,-17],[36,-21],[-8,-14],[4,-22],[15,-16],[-17,-12],[10,-24],[-6,-18],[11,-27],[-31,-23],[-9,-20],[-23,-13],[2,-28],[-11,-17],[11,-37],[21,-36],[2,-21],[66,-11],[16,-25],[-14,-44],[24,-18],[7,-16],[18,-8],[1,-15],[19,-28],[19,-4],[14,-22],[-2,-15],[21,-2],[7,-13],[43,7],[3,-28],[10,-26],[-10,-24],[0,-20],[11,-20],[-6,-23],[-28,-33],[12,-20],[1,-42],[8,-12],[-9,-30],[11,-6],[-27,-49],[-10,-11],[12,-28],[-6,-18],[16,-26],[-8,-21],[18,-22],[-10,-14],[15,-14],[-16,-18],[8,-20],[-17,-6],[3,-27],[-24,-9],[-13,-17],[-42,-14],[-6,21],[-34,-11],[-22,10],[-14,16],[-49,-17],[2,-22],[23,19],[8,-18],[-8,-21],[10,-28],[3,-33],[-16,-24],[-15,-3],[9,-34],[28,0],[24,-31],[27,-19],[29,1],[14,-64],[-33,-17],[-22,-5],[-23,-32],[9,-13],[2,-32],[37,-46],[9,19],[25,2],[29,-8],[15,12],[33,-21],[32,-36],[45,22],[12,-6],[15,17],[38,4],[34,-13],[6,-26],[-4,-28],[19,-30],[0,-13],[-15,-14],[10,-39],[-7,-34],[6,-18],[25,-24],[-5,-50],[4,-20],[-7,-42],[6,-10],[-13,-21],[18,-29],[-13,-10],[10,-22],[16,1],[2,-25],[14,3],[20,-9],[26,-52],[6,-53],[18,-27],[-12,-37],[-23,-23],[-2,-23],[-12,-9],[-13,-38],[-20,-11],[-11,-34],[26,-8],[4,-33],[-4,-41],[-19,-65],[-23,-13],[-20,10],[-13,-6],[-43,-49],[-1,-16],[-54,-16],[-16,8],[-17,-18],[-7,-33],[23,-19],[-5,-35],[-12,-11],[14,-34],[20,-20],[17,-8],[14,-21],[13,-32],[-3,-27],[-13,-38],[-38,-14],[-19,-26],[5,-9],[-4,-29],[-23,-10],[-7,-23],[17,-40],[38,-11],[8,-16],[4,-41],[10,-17],[-21,-22],[-14,-4],[3,-28],[-4,-21],[-20,-11],[-16,-17],[1,-20],[9,-25],[-12,-4],[-16,22],[-15,-14],[-21,-38],[-18,-11],[-5,-32],[11,-9],[-7,-33],[13,-38],[-23,-11],[10,-20],[13,3],[28,-18],[-6,-11],[11,-30],[-27,0],[-11,-23],[-19,-14],[20,-34],[-32,-23],[-11,-26],[12,-12],[-2,-61],[20,5],[-13,-47],[-34,-3],[5,-41],[16,-9],[-15,-29],[-22,21],[-13,-16],[-1,-29],[-7,-12],[-23,42],[-35,5],[-3,-21],[16,-30],[-10,-24],[-19,-7],[6,-27],[-36,-18],[-4,-32],[18,-11],[-7,-42],[-17,-54],[-24,2],[5,-21],[-3,-26],[-21,-10],[-24,15],[-13,-7],[-10,-44],[-13,-3],[1,-23],[-32,-6],[13,-25],[-5,-26],[26,-43],[-17,-25],[1,-19],[-19,-35],[16,-58],[-5,-35],[19,6],[9,-28],[-13,-19],[13,-15],[-5,-24],[-12,-11],[-2,-22],[29,-2],[9,-30],[22,-4],[12,19],[14,-2],[3,-20],[-18,-1],[-2,-22],[16,0],[16,26],[16,-24],[1,-20],[36,-10],[1,-39],[33,0],[15,-24],[-6,-29],[28,8],[6,-24],[15,-12],[15,-26],[-14,-10],[4,-31],[44,23],[17,-8],[12,-24],[0,-53],[25,-26],[16,-7],[8,-38],[10,1],[22,-38],[-10,-49],[-12,-12],[-24,4],[-12,-18],[6,-28],[15,-7],[21,40],[17,0],[19,-20],[17,-44],[16,-64],[-4,-20],[8,-13],[19,-1],[8,-12],[-16,-33],[16,-19],[18,-8],[1,-15],[-46,-71],[6,-23],[39,0],[33,-6],[1,-61],[-4,-57],[-7,-34],[-1,-31],[-37,-23],[-11,-27],[19,-26],[33,-2],[20,-42],[-13,-33],[-1,-40],[13,-10],[14,12],[18,-5],[32,12],[35,-11]],[[383239,333087],[-13,-31],[-36,-60],[17,-91],[23,-61],[9,-48],[5,-120],[-4,-47],[-9,-44],[19,-56],[13,-61],[8,-51],[23,-52],[9,-38],[9,-67],[41,-45],[70,27],[76,45],[70,18],[55,0],[125,-36],[146,-54],[69,-99],[56,-153],[41,-262],[0,-63],[-34,-108],[-35,-72],[-35,-54],[-48,-82],[-77,-54],[-55,-45],[-83,-126],[-40,-180],[-80,-397],[-42,-224],[-24,-104],[-112,-557],[5,-38],[1,-52],[17,-56],[75,-52],[50,-43],[30,-52],[13,-70],[0,-78],[-10,-69],[-13,-74],[65,-121],[7,-17],[50,-92],[385,-45],[299,-33],[12,0],[130,-20],[184,-21],[159,-21],[99,73],[72,25],[48,9],[33,2],[38,-9],[38,13],[43,4],[77,-18],[53,-24],[53,-13],[189,-114],[95,-80],[101,-105],[54,-80],[95,-176],[75,-169],[27,-45],[41,-80],[40,-112],[30,-99],[24,-116],[25,-89],[54,-259],[8,-53],[16,-83],[3,-41],[10,-28],[11,-56],[3,-54],[0,-97],[11,-101],[0,-42],[8,-45],[4,-128],[0,-171],[-5,-85],[-6,-42],[-3,-69],[-18,-95],[-22,-68],[-36,-85],[-16,-30],[-9,-46],[-25,-64],[-31,-59],[-28,-39],[-3,-29],[-19,-77],[1,-50],[-12,-102],[-15,-73],[-26,-59],[-36,-57],[-41,-43],[-33,-26],[-74,-33],[-34,-6],[-5,-17],[-51,-76],[-35,-32],[-58,-34],[-54,-11],[-64,5],[-40,14],[-58,41],[-46,56],[-29,60],[-14,53],[-8,81],[1,41],[6,36],[15,40],[21,42],[25,37],[27,28],[76,47],[24,77],[18,44],[18,28],[-16,74],[-2,45],[-33,11],[-56,-24],[-55,-16],[-62,-31],[-41,-9],[-77,4],[-37,-22],[-38,-12],[-94,-54],[-43,-69],[-19,-22],[-55,-37],[-51,-17],[-42,-5],[-40,6],[-39,13],[-75,55],[-32,-13],[-40,-6],[-52,4],[-63,-37],[-82,-26],[-28,-5],[-35,-61],[-66,-102],[-58,-65],[-29,-25],[-63,-40],[-62,-21],[-21,-4],[-30,4],[-36,-21],[15,-24],[17,-38],[16,-50],[11,-50],[7,-47],[49,19],[42,10],[57,8],[40,-2],[55,-26],[53,-43],[46,-67],[25,-68],[18,-126],[0,-155],[-9,-89],[47,-7],[8,16],[52,58],[52,41],[52,18],[53,-6],[22,-6],[29,11],[39,8],[56,3],[69,-20],[34,-22],[58,-83],[23,-67],[24,-13],[35,6],[83,-10],[53,-29],[40,-41],[38,7],[20,13],[46,23],[32,5],[43,0],[-19,36],[-28,62],[-18,91],[-1,52],[14,75],[24,68],[41,64],[55,42],[48,27],[74,6],[65,-16],[68,-41],[61,-74],[52,-71],[17,-31],[42,-95],[50,-119],[18,-52],[31,-72],[12,-37],[41,-85],[17,-40],[25,-70],[28,-86],[7,-39],[3,-71],[-8,-70],[-16,-80],[-40,-108],[-20,-34],[-53,-61],[-39,-35],[-41,-28],[-69,-35],[-93,-30],[-46,-8],[-47,1],[-49,6],[-42,16],[-75,4],[-130,-11],[-93,28],[-89,35],[-63,23],[-134,79],[-39,26],[-43,33],[-161,81],[-31,24],[-70,81],[-74,71],[-31,20],[-48,-21],[-60,-18],[-78,20],[-43,25],[-20,-19],[-52,-31],[-55,-18],[-53,-2],[-56,29],[-62,57],[-67,106],[-117,8],[-94,2],[-123,-4],[-171,-18],[-106,-18],[-27,-20],[-36,-4],[-6,-24],[-23,-58],[-19,-31],[-18,-21],[-47,-38],[5,-53],[-19,-80],[-19,-60],[-35,-57],[-48,-56],[-56,-31],[-79,-14],[-62,11],[-85,30],[-66,56],[-39,50],[-27,56],[-20,54],[-12,95],[2,49],[11,55],[17,44],[26,41],[29,29],[-28,38],[-23,38],[-47,100],[-12,41],[-9,71],[0,48],[6,39],[21,48],[-23,-14],[-56,-27],[-72,-52],[-60,-23],[-52,-5],[-31,2],[-41,10],[-30,16],[-54,46],[-40,56],[-24,50],[-16,50],[-9,54],[6,42],[16,50],[-70,17],[-67,50],[-45,45],[-12,-12]],[[367586,304999],[-38,-84],[-38,-77],[-177,-375],[-13,-22],[-28,-75],[-34,-83],[-40,-126],[-29,-75],[-33,-69],[-28,-69],[-25,-44],[-32,-44],[-56,-58],[-35,-31],[-41,-19],[-37,-10],[-24,-3],[-47,4],[-48,18],[-55,43],[-28,1],[-154,-288],[-14,-68],[-15,-40],[-14,-64],[-19,-49],[-31,-49],[-18,-61],[-17,-42],[-22,-74],[-16,-33],[-29,-99],[2,-31],[-3,-53],[-8,-44],[-24,-69],[-28,-44],[-30,-138],[15,-27],[23,-56],[9,-40],[5,-53],[-5,-84],[-5,-26],[-19,-61],[-24,-50],[-40,-60],[-6,-3],[-69,-154],[-18,-32],[-12,-47],[-21,-50],[-23,-71],[-2,-73],[-5,-12],[-23,-107],[0,-61],[-50,-114],[-23,-31],[-66,-140],[11,-52],[-14,-125],[-44,-106],[-79,-66],[-45,-72],[-84,-142],[1,-33],[-44,-115],[-16,-26],[14,-58],[-3,-109],[-39,-115],[-9,-24],[-7,-61],[-17,-42],[-58,-117],[-55,-103],[-55,-69],[-31,-53],[-64,-34],[-41,-88],[-67,-91],[-52,-31],[-19,-37],[-53,-76],[-57,-315],[-13,-54],[-66,-305],[5,-10],[91,-550],[93,-563],[44,-176],[64,-198],[36,-146],[15,-58],[35,-113],[68,-362],[11,-68]],[[360686,310252],[14,-35],[31,-47],[14,-43],[35,-40],[37,-20],[43,-7],[10,-9],[14,-55],[-2,-7],[18,-46],[18,-7],[16,-49],[22,16],[18,-38],[3,-37],[16,-35],[3,-28],[-9,-59],[-19,-5],[-17,6],[-1,-29],[21,-18],[5,-17],[-4,-27],[-8,-7],[13,-49],[0,-25],[-6,-58],[0,-52]],[[247899,266198],[-267,1],[-441,7],[-305,1],[-184,-1],[-170,1],[-203,1],[-21,-2],[-442,1],[-324,-1],[-559,1],[-406,-4],[-35,-1],[-495,5],[-69,-2],[-194,0],[-126,-2],[-441,-3],[-299,0],[-143,1],[-428,0],[-210,1],[-245,3],[-158,0],[-283,-2],[-358,-4],[-84,-3],[-262,1],[-179,97],[-117,60],[-173,91],[-274,145],[-287,150],[-414,218],[-60,30],[-210,112],[-13,6],[-338,175],[-280,147],[-42,21],[-442,228],[-366,191],[-51,26],[-425,218],[-306,158],[-163,83],[-418,213],[-240,122],[-249,126],[-427,215],[-52,26],[-280,141],[-200,102],[-116,58],[-93,45],[-98,51],[-490,240],[-442,217],[-303,158],[-20,12],[-118,59],[-113,60],[-180,92],[-450,233],[-522,268],[-59,30],[-442,225],[-121,63],[-263,135],[-247,124],[-487,247],[-207,105],[-441,224],[-471,235],[-47,22],[-75,39],[-333,166],[-175,86],[-224,112],[-547,271],[-116,56],[4,33],[-5,25],[-10,15],[13,13],[15,-4],[16,11],[7,24],[-6,12],[-23,11],[-2,23],[-8,12],[38,64],[0,26],[-12,31],[7,15],[29,17],[14,30],[-4,35],[-8,26],[-30,-34],[-19,-13],[-18,22],[2,30],[7,13],[29,23],[5,32],[-7,20],[12,32],[3,32],[-10,33],[-19,20],[-6,77],[8,30],[28,22],[30,-19],[32,17],[-1,32],[10,19],[17,14],[36,39],[3,11],[-5,28],[23,33],[26,27],[10,26],[1,21],[9,25],[2,33],[50,121],[2,32],[26,51],[11,33]]]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment