Skip to content

Instantly share code, notes, and snippets.

@r-suen
Last active August 28, 2017 18:03
Show Gist options
  • Save r-suen/277e54e0879f56373668e638f6f0039e to your computer and use it in GitHub Desktop.
Save r-suen/277e54e0879f56373668e638f6f0039e to your computer and use it in GitHub Desktop.
Dynamic Map 1:50m

Dynamic map using D3 and TopoJSON with data from Natural Earth. The goal is to implement a performant nonintrusive background map at 1:50 million scale.

Natural Earth data is processed from the command-line to convert shape file to GeoJSON to TopoJSON. The data is reduced, quantized, and projected to Mercator to reduce file size and remove client side projection calculation.

The map is rendered using dynamic simplification and viewport clipping. The zoom level is based on a map tile of 256 x 256 pixels. Map panning is constrained to the y-axis.

Zoom in and out to see the map simplification along with states and cities at higher zoom levels.

<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<title>Dynamic Map 1:50m</title>
<script src='https://cdnjs.cloudflare.com/ajax/libs/d3/4.10.0/d3.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/topojson/3.0.0/topojson.min.js'></script>
</head>
<style>
body {
margin: 0;
overflow: hidden;
}
</style>
<body>
<div id='map'></div>
<script>
var style = {
'background': {
'fill-color': '#000'
},
'countries': {
'fill-color': '#555',
'line-color': '#333',
'line-width': 1
},
'states': {
'line-color': '#777'
},
'places': {
'circle-color': '#999',
'circle-radius': 2.5,
'circle-stroke-color': '#000',
'circle-stroke-width': 1,
'text-color': '#999',
'text-stroke-color': '#000',
'text-stroke-width': 1,
'text-font': 'Helvetica',
'text-size': '13px',
'text-justify': 'center',
'text-baseline': 'bottom'
}
};
const convertZoomLevelToMercator = (zoomLevel) =>
Math.pow(2, 8 + zoomLevel) / 2 / Math.PI;
const convertZoomLevelFromMercator = (zoomLevelInMercator) =>
Math.log(zoomLevelInMercator * 2 * Math.PI) / Math.LN2 - 8;
var bbox;
var width = window.innerWidth,
height = window.innerHeight;
var dpr = window.devicePixelRatio;
var canvas = d3.select('#map').append('canvas')
.attr('width', width * dpr)
.attr('height', height * dpr)
.style('width', width + 'px')
.style('height', height + 'px');
var ctx = canvas.node().getContext('2d');
ctx.scale(dpr, dpr);
var minZ;
var transform = d3.geoIdentity()
.clipExtent([[0, 0], [width, height]]);
var simplify = d3.geoTransform({
point: function(x, y, z) {
if (z >= minZ) {
this.stream.point(x, y);
}
}
});
var zoom = d3.zoom()
.on('zoom', zoomed);
var path = d3.geoPath()
.projection({
stream: function(s) {
return simplify.stream(transform.stream(s));
}
})
.context(ctx);
var pathPlace = d3.geoPath()
.pointRadius(style.places['circle-radius'])
.projection(transform)
.context(ctx);
var land,
border,
states,
places;
d3.json('world-50m.json', function(error, data) {
if (error) throw error;
bbox = topojson.bbox(data),
bbox.width = bbox[2] - bbox[1],
bbox.height = bbox[3] - bbox[1];
data = topojson.presimplify(data);
land = topojson.merge(data, data.objects.countries.geometries);
border = topojson.mesh(data, data.objects.countries, function(a, b) { return a !== b; });
d3.json('states-50m.json', function(error, data) {
if (error) throw error;
data = topojson.presimplify(data);
states = topojson.mesh(data, data.objects.states, function(a, b) { return a !== b; });
d3.json('places-10m.json', function(error, data) {
if (error) throw error;
places = topojson.feature(data, data.objects.places);
let p = d3.geoMercator()([0, 0]),
s = height / bbox.height;
zoom
.scaleExtent([s, 1 << 10]);
canvas
.call(zoom)
.call(zoom.transform, d3.zoomIdentity
.translate(width / 2, height / 2)
.scale(s)
.translate(-p[0], -p[1]));
});
});
});
function zoomed() {
let t = d3.event.transform;
let z = Math.floor(convertZoomLevelFromMercator(t.k * 256 / Math.PI));
minZ = 1 / (t.k * t.k);
t.y = (bbox.height * t.k >= height) ? Math.min(Math.max(-(bbox.height * t.k - height), t.y), 0)
: Math.max(Math.min(height - bbox.height * t.k, t.y), 0);
transform.translate([t.x, t.y]).scale(t.k);
ctx.clearRect(0, 0, width, height);
ctx.fillStyle = style.background['fill-color'];
ctx.fillRect(0, 0, width, height);
drawMap(z);
if (z >= 4) drawPlaces(z)
}
function drawMap(zoom) {
ctx.fillStyle = style.countries['fill-color'];
ctx.lineWidth = style.countries['line-width'];
ctx.beginPath();
path(land);
ctx.fill();
if (zoom >= 4) {
ctx.strokeStyle = style.states['line-color'];
path(states);
ctx.stroke();
}
ctx.strokeStyle = style.countries['line-color'];
ctx.beginPath();
path(border);
ctx.stroke();
}
function drawPlaces(zoom) {
let rank = { 4: 1, 5: 3, 6: 5 };
rank = (rank[zoom] && zoom >= 4 ) ? rank[zoom] : zoom;
ctx.font = style.places['text-size'] + ' ' + style.places['text-font'];
ctx.textAlign = style.places['text-justify'];
ctx.textBaseline = style.places['text-baseline'];
ctx.fillStyle = style.places['text-color'];
ctx.lineWidth = style.places['text-stroke-width'];
ctx.strokeStyle = style.places['text-stroke-color'];
ctx.beginPath();
places.features.filter(d => d.properties.scalerank <= rank).forEach(drawPlace);
ctx.fillStyle = style.places['circle-color'];
ctx.lineWidth = style.places['circle-stroke-width'];
ctx.strokeStyle = style.places['circle-stroke-color'];
ctx.fill();
ctx.stroke();
}
function drawPlace(data) {
let p = pathPlace.centroid(data);
pathPlace(data);
ctx.strokeText(data.properties.name, p[0], p[1] - 5);
ctx.fillText(data.properties.name, p[0], p[1] - 5);
}
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","bbox":[226.56779599653322,20.940184466309177,698.4774556000208,319.07672634713066],"transform":{"scale":[0.0047191437874727505,0.0029813952327605426],"translate":[226.56779599653322,20.940184466309177]},"objects":{"states":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[2]],[[3]],[[4,5,6]]],"properties":{"code_hasc":"AU.WA"}},{"type":"MultiPolygon","arcs":[[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14,15,-5,16]],[[17]],[[18]],[[19]]],"properties":{"code_hasc":"AU.NT"}},{"type":"MultiPolygon","arcs":[[[20]],[[21,22,23,-6,-16,24]]],"properties":{"code_hasc":"AU.SA"}},{"type":"MultiPolygon","arcs":[[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36,-25,-15,37]],[[38]],[[39]],[[40]]],"properties":{"code_hasc":"AU.QL"}},{"type":"MultiPolygon","arcs":[[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]]],"properties":{"code_hasc":"AU.TS"}},{"type":"MultiPolygon","arcs":[[[50]],[[51]],[[52,-23,53]]],"properties":{"code_hasc":"AU.VI"}},{"type":"Polygon","arcs":[[54]],"properties":{"code_hasc":"AU.CT"}},{"type":"Polygon","arcs":[[55,56]],"properties":{"code_hasc":"AU.JB"}},{"type":"Polygon","arcs":[[-56,57,-54,-22,-37,58],[-55]],"properties":{"code_hasc":"AU.NS"}},{"type":"Polygon","arcs":[[59,60,61]],"properties":{"code_hasc":"BR."}},{"type":"Polygon","arcs":[[62,63,-60,64]],"properties":{"code_hasc":"BR."}},{"type":"Polygon","arcs":[[65,66,67]],"properties":{"code_hasc":"BR.RR"}},{"type":"Polygon","arcs":[[68,69,-65,-62,70,-67]],"properties":{"code_hasc":"BR.AM"}},{"type":"MultiPolygon","arcs":[[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78,79,80,81,82,83,-69,-66,84]]],"properties":{"code_hasc":"BR.PA"}},{"type":"Polygon","arcs":[[85,86,87,88,89,90]],"properties":{"code_hasc":"BR.MS"}},{"type":"MultiPolygon","arcs":[[[91]],[[-79,92]]],"properties":{"code_hasc":"BR.AP"}},{"type":"Polygon","arcs":[[93,94,-91,95,-63,-70,-84]],"properties":{"code_hasc":"BR.MT"}},{"type":"Polygon","arcs":[[96,97,98,-89,99]],"properties":{"code_hasc":"BR.PR"}},{"type":"Polygon","arcs":[[100]],"properties":{"code_hasc":"BR.DF"}},{"type":"Polygon","arcs":[[101,102,103,104,-86,-95,105]],"properties":{"code_hasc":"BR.GO"}},{"type":"Polygon","arcs":[[106,107,-106,-94,-83,108,109]],"properties":{"code_hasc":"BR.TO"}},{"type":"MultiPolygon","arcs":[[[110]],[[111,112,-100,-88,113]]],"properties":{"code_hasc":"BR.SP"}},{"type":"MultiPolygon","arcs":[[[114]],[[115]],[[116,-110,-81,117]]],"properties":{"code_hasc":"BR.MA"}},{"type":"MultiPolygon","arcs":[[[118]],[[119,-112,120,121]]],"properties":{"code_hasc":"BR.RJ"}},{"type":"Polygon","arcs":[[122,123,124,-107,-117,125]],"properties":{"code_hasc":"BR.PI"}},{"type":"Polygon","arcs":[[126,-121,-114,-87,-105,-103,127]],"properties":{"code_hasc":"BR.MG"}},{"type":"Polygon","arcs":[[128,129,-122,-127]],"properties":{"code_hasc":"BR.ES"}},{"type":"MultiPolygon","arcs":[[[130]],[[131]],[[132,133,134,-129,-128,-102,-108,-125,135]]],"properties":{"code_hasc":"BR.BA"}},{"type":"Polygon","arcs":[[136,137,138,-123,139]],"properties":{"code_hasc":"BR.CE"}},{"type":"Polygon","arcs":[[140,-134,141]],"properties":{"code_hasc":"BR.SE"}},{"type":"Polygon","arcs":[[142,-142,-133,143]],"properties":{"code_hasc":"BR.AL"}},{"type":"Polygon","arcs":[[144,-137,145]],"properties":{"code_hasc":"BR.RN"}},{"type":"Polygon","arcs":[[146,-144,-136,-124,-139,147]],"properties":{"code_hasc":"BR.PE"}},{"type":"Polygon","arcs":[[148,-148,-138,-145]],"properties":{"code_hasc":"BR.PB"}},{"type":"MultiPolygon","arcs":[[[149]],[[150]],[[151,152,153,-98]]],"properties":{"code_hasc":"BR.SC"}},{"type":"Polygon","arcs":[[154,-153]],"properties":{"code_hasc":"BR.RS"}},{"type":"Polygon","arcs":[[155,156,157,158]],"properties":{"code_hasc":"CA.AB"}},{"type":"MultiPolygon","arcs":[[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179,180]],[[181,182]],[[183,184,185,-157,186,187,188,189,190,191]]],"properties":{"code_hasc":"CA.BC"}},{"type":"Polygon","arcs":[[192,193,194,195,196,197]],"properties":{"code_hasc":"CA.MB"}},{"type":"MultiPolygon","arcs":[[[198]],[[199]],[[200]],[[201,202,203,204,205,206,207]]],"properties":{"code_hasc":"CA.NB"}},{"type":"MultiPolygon","arcs":[[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216,217]]],"properties":{"code_hasc":"CA.NF"}},{"type":"MultiPolygon","arcs":[[[218]],[[219]],[[220]],[[-202,221]],[[222]]],"properties":{"code_hasc":"CA.NS"}},{"type":"MultiPolygon","arcs":[[[223,224,-158,-186,225,226]],[[227,228]],[[229]],[[230]],[[231]],[[232,233]],[[234,235]],[[236]],[[237]],[[238]],[[239,240]],[[241,242]]],"properties":{"code_hasc":"CA.NT"}},{"type":"MultiPolygon","arcs":[[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]],[[270]],[[271]],[[272]],[[273]],[[274]],[[275]],[[276]],[[277]],[[278]],[[279]],[[280]],[[281]],[[282]],[[283]],[[284]],[[285]],[[286]],[[287]],[[288]],[[289]],[[290]],[[291]],[[292]],[[293]],[[294]],[[295]],[[296]],[[297]],[[298]],[[-197,-224,299]],[[300]],[[-228,301]],[[302]],[[303]],[[304]],[[305]],[[306]],[[307]],[[308]],[[309]],[[310]],[[311]],[[312]],[[313]],[[314]],[[315]],[[316]],[[317]],[[318]],[[-235,319,-233,320]],[[321]],[[322]],[[323]],[[324]],[[325]],[[326]],[[-240,327]],[[328]],[[-242,329]],[[330]],[[331]],[[332]],[[333]],[[334]]],"properties":{"code_hasc":"CA.NU"}},{"type":"MultiPolygon","arcs":[[[335]],[[336]],[[337]],[[338]],[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346,347]],[[348,349,350,351,352,353,354,355,356,-193,357]]],"properties":{"code_hasc":"CA.ON"}},{"type":"Polygon","arcs":[[358]],"properties":{"code_hasc":"CA.PE"}},{"type":"MultiPolygon","arcs":[[[359]],[[360]],[[361]],[[362]],[[-207,363,364,365,366,367]],[[368]],[[-217,369,-349,370,-348,371]]],"properties":{"code_hasc":"CA.QC"}},{"type":"Polygon","arcs":[[372,373,-159,-225,-196]],"properties":{"code_hasc":"CA.SK"}},{"type":"MultiPolygon","arcs":[[[374]],[[-226,-185,375,376]]],"properties":{"code_hasc":"CA.YT"}},{"type":"MultiPolygon","arcs":[[[377]],[[378]],[[379]],[[380]],[[381]],[[382]],[[383]],[[384]],[[385]],[[386]],[[387]],[[388]],[[389]],[[390]],[[391]],[[392]],[[393]],[[394]],[[395]],[[396]],[[397]],[[398]],[[399]],[[400]],[[401]],[[402]],[[403]],[[404]],[[405]],[[406]],[[407]],[[408]],[[409]],[[410]],[[411]],[[412]],[[413]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[421]],[[422]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]],[[434]],[[435]],[[436]],[[437]],[[-376,-184,-182,-181,438]]],"properties":{"code_hasc":"US.AK"}},{"type":"MultiPolygon","arcs":[[[439]],[[440,441,442,443,444]]],"properties":{"code_hasc":"US.AL"}},{"type":"Polygon","arcs":[[445,446,447,448,449,450]],"properties":{"code_hasc":"US.AR"}},{"type":"Polygon","arcs":[[451,452,453,454,455]],"properties":{"code_hasc":"US.AZ"}},{"type":"MultiPolygon","arcs":[[[456]],[[457]],[[458]],[[459]],[[460]],[[461]],[[462,463,-454,464]]],"properties":{"code_hasc":"US.CA"}},{"type":"Polygon","arcs":[[465,466,467,468,469,470]],"properties":{"code_hasc":"US.CO"}},{"type":"Polygon","arcs":[[471,472,473,474]],"properties":{"code_hasc":"US.CT"}},{"type":"Polygon","arcs":[[475,476]],"properties":{"code_hasc":"US.DC"}},{"type":"Polygon","arcs":[[477,478,479]],"properties":{"code_hasc":"US.DE"}},{"type":"MultiPolygon","arcs":[[[480]],[[481]],[[482]],[[483]],[[484]],[[485]],[[486]],[[487]],[[488]],[[489]],[[490]],[[491,-445,492]]],"properties":{"code_hasc":"US.FL"}},{"type":"MultiPolygon","arcs":[[[493]],[[494,-493,-444,495,496,497]]],"properties":{"code_hasc":"US.GA"}},{"type":"MultiPolygon","arcs":[[[498]],[[499]],[[500]],[[501]],[[502]],[[503]],[[504]],[[505]]],"properties":{"code_hasc":"US.HI"}},{"type":"Polygon","arcs":[[506,507,508,509,510,511]],"properties":{"code_hasc":"US.IA"}},{"type":"Polygon","arcs":[[512,513,514,515,516,-188,517]],"properties":{"code_hasc":"US.ID"}},{"type":"Polygon","arcs":[[518,519,520,521,-507,522]],"properties":{"code_hasc":"US.IL"}},{"type":"Polygon","arcs":[[523,524,-520,525,526]],"properties":{"code_hasc":"US.IN"}},{"type":"Polygon","arcs":[[527,-466,528,529]],"properties":{"code_hasc":"US.KS"}},{"type":"MultiPolygon","arcs":[[[530,531]],[[532,533,534,535,-521,-525,536]]],"properties":{"code_hasc":"US.KY"}},{"type":"MultiPolygon","arcs":[[[537]],[[538]],[[539]],[[540]],[[541,542,-448,543]]],"properties":{"code_hasc":"US.LA"}},{"type":"MultiPolygon","arcs":[[[544]],[[545]],[[546,-475,547,548,549,550]]],"properties":{"code_hasc":"US.MA"}},{"type":"MultiPolygon","arcs":[[[551,552]],[[-479,553,554,555,-477,556,557,558]]],"properties":{"code_hasc":"US.MD"}},{"type":"MultiPolygon","arcs":[[[559]],[[560]],[[561,-204,562,563,-364,-206]]],"properties":{"code_hasc":"US.ME"}},{"type":"MultiPolygon","arcs":[[[564]],[[565]],[[-355,566,567,-527,568]],[[569]],[[570]],[[571]],[[572]],[[573,574]],[[575]],[[576]]],"properties":{"code_hasc":"US.MI"}},{"type":"Polygon","arcs":[[577,578,-511,579,580,-194,-357]],"properties":{"code_hasc":"US.MN"}},{"type":"Polygon","arcs":[[-522,-536,581,-532,582,-451,583,-530,584,-508]],"properties":{"code_hasc":"US.MO"}},{"type":"MultiPolygon","arcs":[[[585]],[[586,-544,-447,587,-442]]],"properties":{"code_hasc":"US.MS"}},{"type":"Polygon","arcs":[[588,589,-518,-187,-156,-374,590]],"properties":{"code_hasc":"US.MT"}},{"type":"MultiPolygon","arcs":[[[591]],[[592]],[[593]],[[594]],[[595]],[[596,597]],[[598,-497,599,600,601]]],"properties":{"code_hasc":"US.NC"}},{"type":"Polygon","arcs":[[602,-591,-373,-195,-581]],"properties":{"code_hasc":"US.ND"}},{"type":"Polygon","arcs":[[-509,-585,-529,-471,603,604]],"properties":{"code_hasc":"US.NE"}},{"type":"Polygon","arcs":[[605,-550,606,-365,-564]],"properties":{"code_hasc":"US.NH"}},{"type":"MultiPolygon","arcs":[[[607]],[[608,609,610]]],"properties":{"code_hasc":"US.NJ"}},{"type":"Polygon","arcs":[[611,612,-452,-468,613]],"properties":{"code_hasc":"US.NM"}},{"type":"Polygon","arcs":[[-455,-464,614,-515,615]],"properties":{"code_hasc":"US.NV"}},{"type":"MultiPolygon","arcs":[[[616]],[[617]],[[618]],[[619]],[[620]],[[621,-548,-474,622,-610,623,624,-353,625,-351,-367]]],"properties":{"code_hasc":"US.NY"}},{"type":"Polygon","arcs":[[626,-537,-524,-568,627,628]],"properties":{"code_hasc":"US.OH"}},{"type":"Polygon","arcs":[[-450,629,-614,-467,-528,-584]],"properties":{"code_hasc":"US.OK"}},{"type":"Polygon","arcs":[[630,-516,-615,-463,631]],"properties":{"code_hasc":"US.OR"}},{"type":"Polygon","arcs":[[-609,632,-480,-559,633,-629,634,-624]],"properties":{"code_hasc":"US.PA"}},{"type":"MultiPolygon","arcs":[[[635]],[[636]],[[637,-472,-547]]],"properties":{"code_hasc":"US.RI"}},{"type":"Polygon","arcs":[[638,-498,-599]],"properties":{"code_hasc":"US.SC"}},{"type":"Polygon","arcs":[[-580,-510,-605,639,-589,-603]],"properties":{"code_hasc":"US.SD"}},{"type":"Polygon","arcs":[[640,-600,-496,-443,-588,-446,-583,-531,-582,-535]],"properties":{"code_hasc":"US.TN"}},{"type":"MultiPolygon","arcs":[[[641]],[[642]],[[643]],[[644]],[[645]],[[-449,-543,646,-612,-630]]],"properties":{"code_hasc":"US.TX"}},{"type":"Polygon","arcs":[[647,-469,-456,-616,-514]],"properties":{"code_hasc":"US.UT"}},{"type":"MultiPolygon","arcs":[[[-555,648]],[[-552,649]],[[-557,-476,650,-597,651,-601,-641,-534,652]]],"properties":{"code_hasc":"US.VA"}},{"type":"Polygon","arcs":[[-549,-622,-366,-607]],"properties":{"code_hasc":"US.VT"}},{"type":"MultiPolygon","arcs":[[[653]],[[654]],[[655]],[[656]],[[657]],[[658]],[[659]],[[660,-191]],[[-631,661,-189,-517]]],"properties":{"code_hasc":"US.WA"}},{"type":"MultiPolygon","arcs":[[[662]],[[663]],[[664]],[[665]],[[-574,666,-523,-512,-579,667]],[[668]],[[669]]],"properties":{"code_hasc":"US.WI"}},{"type":"Polygon","arcs":[[-558,-653,-533,-627,-634]],"properties":{"code_hasc":"US.WV"}},{"type":"Polygon","arcs":[[-604,-470,-648,-513,-590,-640]],"properties":{"code_hasc":"US.WY"}}]}},"arcs":[[[87813,89710],[-8,22],[-58,-165],[-17,-113],[12,-21],[11,-6],[34,156],[11,36],[0,37],[5,12],[10,42]],[[88495,86971],[-17,40],[-21,-8],[-3,-20],[14,-33],[24,-40],[7,25],[-4,36]],[[91253,84267],[-11,14],[-11,-4],[0,-20],[-12,-20],[6,-24],[5,-12],[9,1],[4,20],[13,23],[-3,22]],[[91435,83861],[-20,31],[-13,-25],[8,-49],[13,-18],[11,9],[-1,39],[2,13]],[[92581,84005],[0,5676]],[[92581,89681],[0,3103]],[[92581,92784],[-17,5],[-121,104],[-144,101],[-117,48],[-108,63],[-71,19],[-92,8],[-194,-31],[-66,23],[-105,118],[-32,29],[-59,32],[-153,152],[-71,33],[-45,11],[-39,32],[-36,65],[-48,181],[-29,85],[-66,138],[-43,46],[-43,-6],[-48,47],[-42,-50],[-33,-10],[-54,4],[-189,58],[-27,-67],[-35,-10],[-65,3],[-98,-20],[-178,25],[-85,28],[-34,25],[-63,-16],[-107,23],[-38,38],[-28,34],[-56,155],[-61,51],[-50,1],[-56,12],[-113,149],[-116,145],[-39,16],[-43,24],[-57,12],[-28,13],[-132,-37],[-84,-5],[-105,-22],[-90,-71],[-70,-41],[-78,-156],[-49,-58],[-86,-71],[-25,3],[-21,19],[-35,-49],[-1,-64],[-10,-54],[1,-142],[5,-166],[32,37],[25,36],[53,-2],[47,-62],[27,-91],[24,-102],[-4,-109],[-16,-190],[11,-40],[16,-16],[6,-94],[3,-290],[-12,-108],[-73,-219],[-48,-190],[-36,-86],[-30,-137],[-25,-190],[-7,-96],[-9,-177],[9,-100],[-3,-58],[-31,-159],[-69,-148],[-11,-54],[0,-58],[-17,-67],[-55,-134],[-57,-116],[-9,-56],[-11,-233],[-21,-106],[-96,-268],[-114,-230],[-30,-93],[-14,-32],[8,-4],[12,12],[15,23],[7,2],[6,-19],[-1,-43],[4,-25],[10,14],[12,49],[36,127],[10,65],[46,19],[14,-17],[17,-33],[5,-90],[-23,-40],[-21,-18],[-35,-66],[-23,-106],[-36,-98],[1,-35],[16,-26],[27,14],[24,56],[28,53],[-5,92],[-4,25],[3,21],[9,20],[13,16],[14,-23],[12,-54],[8,7],[19,123],[15,33],[30,39],[26,-30],[12,-26],[-4,-86],[7,-84],[-4,-62],[-67,-163],[-60,-200],[-37,-99],[-30,-149],[-20,-52],[-26,-83],[-1,-95],[2,-64],[21,-137],[19,-72],[61,-163],[3,-71],[0,-53],[9,-81],[0,-57],[-8,-52],[-26,-91],[34,-158],[49,-202],[19,-30],[31,-27],[5,42],[-15,140],[22,73],[-7,82],[19,-14],[30,-16],[22,-43],[12,-41],[56,-164],[32,-61],[45,-45],[92,-55],[88,-71],[43,-68],[52,-60],[37,-64],[36,-44],[179,-162],[30,-30],[39,-4],[48,6],[44,-9],[46,37],[34,4],[84,-40],[44,-36],[77,-78],[34,-22],[78,-25],[88,-33],[107,-135],[76,8],[69,14],[55,-41],[129,-25],[71,-34],[134,-90],[37,-30],[54,-64],[48,-80],[47,-108],[29,-97],[12,-49],[28,-79],[19,-63],[14,-29],[52,-42],[77,-118],[26,-24],[4,-37],[-16,-21],[-21,-14],[-14,-124],[-13,-86],[-1,-60],[5,-57],[30,-89],[22,-38],[30,-45],[27,-14],[23,-38],[37,-39],[15,-39],[23,-78],[21,-60],[16,2],[31,139],[21,74],[37,86],[35,128],[29,59],[14,38],[12,17],[2,-24],[-3,-29],[14,-97],[-6,-69],[2,-26],[7,-11],[14,8],[27,38],[14,13],[9,-3],[0,-62],[13,-39],[-5,-27],[-24,2],[-10,-33],[-19,-39],[-22,-27],[-27,-64],[-8,-25],[10,-11],[17,1],[14,-27],[6,-36],[-12,-59],[12,-22],[25,6],[39,94],[17,-9],[14,-38],[25,-11],[25,7],[17,27],[35,27],[46,-3],[23,7],[49,-5],[24,8],[-5,-14],[-26,-17],[-30,-4],[-35,2],[-15,-18],[-5,-48],[9,-34],[5,-15],[23,6],[20,-1],[3,-47],[7,-41],[12,-33],[0,-32],[-13,9],[-31,74],[-15,-61],[-22,-46],[5,-65],[13,-66],[20,-9],[16,11],[25,-39],[14,-29],[-3,-24],[4,-18],[17,5],[67,59],[14,31],[14,-12],[4,-33],[-1,-34],[-15,5],[-35,-3],[-8,-19],[3,-16],[-16,-39],[23,-25],[19,-2],[14,-17],[0,-24],[4,-10],[11,14],[34,7],[35,30],[16,7],[6,-17],[2,-35],[-42,-35],[-1,-35],[-18,-39],[-1,-39],[27,-33],[5,-32],[16,-13],[30,0],[20,-27],[23,-9],[6,-60],[0,-42],[9,-10],[23,17],[-7,48],[0,45],[-6,24],[9,-2],[5,-10],[9,-30],[25,13],[6,31],[3,32],[12,10],[17,-48],[22,-13],[-1,-61],[8,-43],[3,-33],[14,-16],[4,-34],[-12,-24],[-6,-44],[20,-9],[20,22],[13,54],[9,25],[12,-13],[7,-37],[25,-21],[23,29],[27,41],[33,-35],[30,-66],[-5,-41],[4,-41],[38,-22],[31,16],[28,45],[59,33],[49,47],[22,31],[43,50],[27,51],[38,91],[88,112],[6,20],[-12,37],[-11,48],[-13,81],[-3,119],[12,-8],[14,-43],[14,9],[16,27],[1,-26],[-10,-16],[-16,-55],[1,-29],[13,-24],[20,-28],[22,-18],[13,-16],[2,-20],[21,-20],[29,-7],[18,3],[111,45]],[[95019,84453],[-13,23],[-16,-24],[-3,-24],[-13,-7],[6,-23],[7,-7],[7,-28],[17,33],[2,38],[6,19]],[[94868,84379],[-18,2],[-5,-2],[-4,-22],[6,-20],[19,-5],[8,5],[-6,42]],[[94950,84375],[-5,4],[0,-42],[9,-20],[4,43],[-8,15]],[[94905,83479],[13,21],[14,-2],[12,-45],[8,7],[6,11],[5,20],[-19,34],[-9,5],[-8,19],[-13,62],[2,21],[11,21],[30,20],[14,-9],[5,2],[-6,31],[-11,23],[-39,-10],[-34,4],[-57,-23],[-30,-3],[-8,-8],[17,-18],[11,-24],[-5,-57],[4,-72],[33,-35],[14,-35],[22,-23],[14,3],[-2,22],[6,38]],[[94761,83489],[-7,6],[-27,-9],[0,-18],[3,-14],[8,-8],[17,-35],[12,21],[6,41],[-12,16]],[[94792,82403],[-48,36],[26,-49],[55,-43],[9,-11],[-2,21],[-28,36],[-12,10]],[[93020,82440],[25,12],[11,16],[7,18],[1,21],[-31,9],[-56,-31],[-56,26],[-16,0],[-10,-18],[8,-52],[20,8],[18,-19],[-3,-57],[-10,-31],[29,-57],[13,-12],[14,1],[11,40],[3,44],[14,40],[8,42]],[[95293,84840],[0,4841]],[[95293,89681],[-2712,0]],[[92581,84005],[17,6],[32,51],[3,63],[12,23],[7,-40],[-2,-86],[11,-17],[34,13],[23,17],[33,57],[6,27],[14,18],[5,-26],[-7,-37],[-4,-42],[7,-37],[38,-3],[26,-8],[-12,-15],[-17,-4],[-27,-34],[-18,-37],[29,-35],[-1,-9],[-27,1],[-37,-34],[-32,-48],[24,-88],[49,-86],[27,-29],[3,-29],[13,-54],[8,-45],[2,-35],[13,-37],[30,-35],[40,-13],[19,-13],[20,-32],[18,-40],[-38,-77],[3,-42],[7,-50],[45,-36],[25,-96],[16,-14],[36,3],[14,-9],[-3,-76],[4,-29],[15,-12],[19,10],[13,33],[27,31],[9,-17],[-4,-33],[-3,-43],[25,-10],[20,-2],[2,-35],[-3,-28],[8,-12],[52,-6],[14,-29],[8,-24],[6,13],[9,56],[29,33],[87,0],[48,-22],[21,13],[33,10],[35,-26],[22,-20],[35,26],[12,27],[9,-58],[21,-20],[22,-12],[28,10],[11,-3],[-25,-43],[2,-40],[-2,-58],[5,-53],[8,-38],[-60,-76],[-59,-12],[-44,16],[-18,-12],[-38,-62],[-37,-22],[-3,-15],[45,-45],[17,8],[26,41],[15,15],[13,-3],[8,-32],[11,-17],[22,9],[67,70],[38,68],[19,-18],[34,-38],[31,8],[19,22],[27,82],[21,41],[52,11],[26,16],[27,27],[37,-2],[75,10],[71,52],[29,33],[35,9],[20,13],[36,4],[58,-37],[26,34],[12,23],[52,45],[57,14],[41,-46],[59,-33],[41,-51],[31,-24],[29,-41],[11,2],[-23,38],[-3,22],[18,10],[-2,11],[-25,30],[-31,47],[1,29],[12,15],[14,-7],[20,-23],[24,-13],[21,19],[7,68],[15,45],[34,6],[20,-1],[21,-62],[-11,-54],[-13,-11],[6,-20],[52,-88],[30,3],[20,86],[34,45],[35,-4],[18,12],[15,52],[-123,213],[-6,23],[16,39],[7,45],[-40,108],[-15,6],[-14,-30],[-22,-18],[-18,13],[-20,8],[-72,60],[0,156],[19,92],[-11,62],[-21,107],[-24,40],[-18,26],[-62,147],[-20,35],[-21,50],[7,48],[8,33],[23,39],[91,78],[42,55],[71,66],[16,45],[10,37],[51,43],[37,25],[10,-7],[8,-8],[9,-1],[9,5],[-1,33],[-4,19],[3,23],[26,29],[42,-1],[24,-7],[26,31],[24,21],[39,41],[69,50],[53,33],[63,121],[27,40]],[[93068,82292],[40,5],[49,-37],[22,15],[11,-3],[35,-34],[23,-10],[16,-26],[15,28],[36,32],[11,34],[14,16],[5,10],[-21,35],[-3,39],[-23,-3],[-27,63],[-103,105],[-92,-90],[-40,-61],[-27,-84],[-6,-68],[-10,-44],[4,-11],[6,-6],[7,2],[28,47],[12,12],[18,34]],[[94870,82294],[-22,29],[-1,-22],[11,-17],[27,-72],[12,-16],[7,-9],[5,-26],[1,-39],[15,-6],[-12,88],[-43,90]],[[93663,82257],[-6,7],[-24,-75],[7,-23],[-10,-38],[16,-5],[13,-29],[4,14],[1,53],[10,31],[-11,65]],[[95171,95105],[72,14],[28,-21],[35,17],[24,57],[-17,28],[-17,5],[-53,-24],[-50,18],[-14,24],[-10,52],[-43,28],[-20,-32],[-52,-22],[-18,33],[-37,-9],[-34,13],[-48,-7],[-50,-58],[-14,-27],[11,-48],[18,-35],[137,-50],[73,-42],[59,8],[16,9],[16,21],[-12,38],[0,10]],[[96197,91295],[7,2824]],[[96204,94119],[-8,-16],[-9,-6],[-1,2400]],[[96186,96497],[-102,-26],[-71,-80],[-54,-153],[-101,-175],[-28,-63],[-12,-63],[-2,-49],[14,-94],[19,-92],[3,-51],[-38,-173],[-55,-162],[-25,-51],[-66,-108],[-63,-81],[-16,-42],[-4,-21],[29,10],[14,-33],[20,-11],[15,43],[18,8],[1,-73],[10,-35],[-7,-16],[-6,-14],[-27,-16],[-30,24],[-23,32],[-31,27],[-12,28],[-31,1],[-13,7],[-62,54],[-40,1],[-62,-19],[20,-74],[25,-44],[20,-50],[34,-176],[-7,-151],[-16,-63],[-52,-125],[-23,-77],[-30,-79],[-14,46],[-9,49],[-28,70],[-13,158],[-55,241],[-38,3],[-32,-9],[-57,27],[-38,34],[-35,0],[-19,11],[-25,-9],[39,-189],[35,5],[37,-7],[17,3],[25,-2],[19,-87],[12,-97],[-8,-62],[-3,-64],[8,-73],[3,-53],[47,-174],[39,-89],[46,-71],[-5,-68],[-15,-84],[-4,-65],[22,-20],[20,-40],[-24,-184],[-15,-55],[-24,-54],[0,70],[2,69],[-33,88],[-43,63],[-29,59],[-26,135],[-35,114],[-33,43],[-29,9],[-29,18],[-46,45],[-45,39],[-33,50],[-29,26],[-93,230],[-42,78],[-9,31],[-18,26],[3,36],[15,25],[14,103],[-8,23],[-16,-12],[-38,-57],[-24,20],[-19,24],[-51,-106],[-21,-24],[-26,-43],[-28,-36],[-12,-4],[-21,7],[2,-28],[14,-23],[13,-6],[23,34],[25,30],[15,3],[7,-12],[-25,-119],[-17,-104],[-7,-31],[-21,-105],[-10,-31],[-43,-74],[-46,-86],[-13,-104],[-17,-67],[-21,-41],[-34,-38],[-92,-14],[-39,-106],[-22,-131],[18,-8],[20,-2],[7,-41],[-4,-62],[-92,-77],[-43,-81],[-37,-35],[-34,-14],[-46,4],[-56,-3],[-137,-128],[-33,-4],[-98,40],[-33,-7],[-149,-175],[-99,-83],[-32,-15],[-43,-14],[-34,20],[-25,19],[-50,21],[-196,-14],[-169,27],[-115,19],[-56,18]],[[95293,89681],[904,0],[0,1614]],[[99975,90449],[-25,148],[-8,-3],[-10,-22],[2,-86],[10,-54],[26,9],[5,8]],[[99946,90384],[-6,8],[-13,-51],[-4,-52],[5,-48],[15,-10],[11,4],[-12,88],[4,61]],[[99836,89549],[-7,15],[-14,-26],[-9,-94],[7,-54],[16,-50],[2,-28],[-6,-57],[45,-65],[12,-34],[4,-44],[-17,-47],[-13,-9],[12,-27],[12,-13],[11,-5],[7,4],[5,93],[18,33],[-2,45],[-63,238],[-18,89],[-2,36]],[[99254,88363],[11,14],[9,-2],[9,9],[-4,34],[14,38],[6,27],[-10,22],[-7,7],[-16,-18],[-46,-110],[8,-36],[26,15]],[[99065,87758],[-9,2],[-8,-9],[7,-21],[1,-29],[10,9],[8,40],[-9,8]],[[98887,87692],[-10,15],[-7,-37],[1,-40],[12,-13],[4,52],[0,23]],[[98621,86718],[-7,6],[-10,0],[-15,-10],[13,-66],[7,35],[12,28],[0,7]],[[98588,86646],[-6,3],[-8,-6],[5,-21],[8,-17],[11,-12],[-4,46],[-6,7]],[[97787,85677],[7,48],[13,37],[-5,25],[-8,18],[-20,-17],[-13,-45],[-23,-35],[-5,-20],[27,1],[13,-7],[6,-7],[8,2]],[[95732,85118],[-11,9],[-4,-21],[15,-20],[10,-30],[21,26],[3,26],[-34,10]],[[95747,84848],[-23,44],[-12,-6],[-11,24],[-22,11],[-13,0],[-24,11],[-4,-14],[5,-43],[20,-49],[19,-30],[50,-15],[39,-21],[5,4],[28,55],[-41,8],[-16,21]],[[99968,90830],[-40,50],[-56,12],[-23,51],[-82,-15],[-29,17],[-43,-34],[-12,16],[-23,-33],[-24,44],[-36,24],[-23,27],[-16,0],[-59,53],[12,56],[18,36],[-13,92],[-27,27],[-24,-2],[-10,29],[-18,-15],[-10,-31],[-53,37],[-7,43],[-16,29],[-25,28],[-18,-19],[-9,-67],[-22,-46],[-34,-25],[-18,-25],[-3,-25],[-20,-27],[-38,-27],[-43,-11],[-74,6],[-38,-47],[-58,-3],[-90,25],[-52,4],[-25,-25],[-25,7],[-14,16],[-10,26],[-29,36],[-49,46],[-28,37],[-7,29],[-19,32],[-6,6],[-2403,1]],[[95293,84840],[21,30],[52,51],[79,35],[36,-6],[59,41],[57,20],[30,57],[10,43],[3,34],[29,80],[58,26],[75,80],[61,35],[16,22],[27,24],[52,1],[91,-40],[42,-40],[54,-65],[26,-111],[15,-89],[77,-183],[21,-91],[20,-121],[17,-75],[-6,-82],[18,-148],[39,-203],[13,-69],[-7,-100],[-24,-189],[11,-65],[11,-91],[-18,-66],[-17,-45],[-2,-64],[19,-119],[16,-64],[17,-81],[-9,-155],[36,-53],[14,-27],[29,0],[13,12],[3,-31],[-11,-29],[-5,-33],[-8,-17],[-17,-6],[-14,-18],[-21,-19],[3,-68],[35,-132],[20,-51],[13,21],[14,17],[2,-38],[-5,-39],[27,-129],[30,-175],[9,-158],[47,-31],[25,-39],[15,-47],[26,0],[18,20],[-12,35],[-3,27],[51,66],[17,51],[7,48],[10,45],[5,61],[-1,97],[7,92],[18,29],[17,19],[23,2],[34,15],[-8,59],[-14,46],[-2,28],[4,38],[24,28],[19,17],[11,50],[33,69],[-1,47],[18,59],[17,116],[5,103],[17,68],[-11,146],[12,60],[16,50],[19,99],[15,90],[20,26],[42,30],[44,-33],[31,-46],[34,-11],[45,-23],[34,60],[19,68],[81,90],[45,57],[34,33],[33,42],[-3,43],[-8,34],[7,52],[5,61],[-6,74],[23,111],[8,89],[25,87],[-2,90],[-4,34],[-4,50],[20,63],[18,46],[26,50],[36,77],[25,15],[22,1],[-3,79],[44,155],[23,127],[-15,172],[-16,99],[3,49],[58,119],[33,22],[-7,57],[-4,88],[26,69],[29,51],[32,31],[32,24],[41,24],[53,10],[27,39],[14,31],[42,10],[19,-5],[23,-13],[16,21],[11,28],[23,75],[48,75],[33,12],[19,38],[27,10],[23,5],[32,29],[54,67],[48,11],[22,18],[48,73],[19,39],[19,59],[-24,5],[-23,-12],[-14,57],[32,80],[37,55],[45,60],[43,83],[11,64],[12,26],[15,90],[37,53],[2,96],[19,132],[22,121],[15,36],[18,58],[20,-7],[15,-19],[30,58],[16,25],[10,-15],[-20,-110],[12,-64],[12,-8],[17,-2],[20,52],[28,55],[51,50],[41,46],[12,-1],[-5,-36],[1,-53],[17,-9],[15,27],[27,81],[6,169],[0,142],[18,146],[27,39],[17,36],[30,49],[20,46],[25,22],[79,97],[23,11],[35,3],[42,44],[21,41],[46,153],[23,55],[46,53],[21,17],[31,37],[11,53],[3,32],[18,57],[28,68],[41,38],[37,84],[2,135],[20,68],[13,29],[29,28],[12,22],[-25,180],[24,362],[-14,114],[25,113],[56,196],[13,69],[8,82],[18,51]],[[96581,81966],[-25,28],[-17,-15],[-3,-30],[1,-14],[21,-24],[23,55]],[[96600,81718],[-18,30],[-19,-9],[-6,-18],[7,-24],[24,-5],[12,26]],[[96548,81699],[-7,13],[-14,-29],[16,-33],[13,16],[-8,33]],[[98112,99853],[-14,68],[-23,-12],[-24,11],[-15,-45],[0,-12],[18,12],[6,-15],[5,-19],[6,-5],[4,-27],[15,-34],[9,1],[9,43],[4,34]],[[98136,99750],[-19,0],[-7,-5],[-3,-32],[-13,-14],[7,-11],[2,-20],[8,-23],[14,25],[11,80]],[[98338,99404],[-17,6],[-6,-3],[1,-33],[-3,-15],[15,-31],[21,15],[8,23],[-20,19],[1,19]],[[97415,98174],[35,3],[20,-16],[17,3],[20,35],[25,20],[16,-3],[15,7],[13,25],[33,22],[14,15],[13,22],[14,17],[87,60],[62,28],[78,-13],[22,-17],[22,-24],[19,23],[19,34],[-4,-37],[7,-32],[19,-26],[21,-16],[35,1],[34,-7],[15,-15],[15,-2],[21,19],[20,10],[14,-24],[23,-56],[13,-19],[59,17],[17,0],[29,-58],[19,1],[55,46],[23,58],[-2,107],[2,37],[5,37],[1,74],[-6,74],[-1,57],[3,58],[-3,109],[8,71],[-4,50],[0,23],[8,21],[4,24],[-3,31],[3,36],[-3,30],[-12,-4],[-4,-23],[2,-30],[-2,-23],[-7,-22],[-22,-25],[7,-14],[11,-13],[-8,-33],[-14,27],[-8,37],[4,12],[-8,9],[-19,43],[-13,58],[-5,55],[1,59],[-11,45],[-15,43],[-3,56],[1,102],[12,94],[7,128],[-10,17],[-32,8],[-16,17],[-27,-64],[-15,-67],[12,-26],[26,15],[8,-15],[2,-17],[-2,-17],[-32,-37],[-36,-17],[-12,21],[4,63],[-3,15],[-26,24],[-13,-91],[-33,-67],[1,32],[14,56],[-2,25],[-5,32],[-14,12],[-6,25],[0,36],[-4,59],[-22,26],[-53,-65],[-4,22],[1,19],[27,37],[-12,29],[-10,33],[-15,87],[-24,72],[-12,5],[-41,-12],[-45,-61],[-41,7],[-68,-4],[-44,22],[-9,-67],[-9,-24],[4,-21],[34,-14],[36,0],[-6,-25],[-9,-10],[-16,6],[-45,-22],[-31,10],[-21,-32],[-37,-109],[-21,-51],[-13,-20],[-15,-11],[-9,-16],[-66,-248],[-9,-58],[-12,-145],[52,70],[19,44],[10,55],[18,-67],[-3,-22],[-47,-82],[-7,-24],[-2,-28],[-11,29],[-18,4],[7,-58],[-6,-57],[-55,-123],[-42,-117],[-42,-143],[-3,-19],[-1,-31],[-20,-95],[-11,-71],[-5,-62],[20,-125],[2,-70],[30,31],[68,41]],[[98378,98004],[-15,48],[-19,-30],[-2,-15],[22,-11],[8,1],[6,7]],[[97337,97998],[-11,52],[-11,-65],[12,-10],[10,-22],[2,4],[-2,41]],[[98405,97873],[28,38],[16,41],[-21,34],[-16,6],[-10,-39],[-31,14],[-34,-3],[-25,-30],[-3,-15],[15,-15],[42,1],[39,-32]],[[98306,97531],[54,112],[28,18],[8,12],[-2,49],[-12,22],[22,28],[-3,18],[-5,-1],[-26,38],[-32,18],[-10,-13],[-8,-18],[-6,-25],[-41,-98],[5,-27],[-9,-41],[-19,3],[-14,-25],[22,-24],[28,-66],[20,20]],[[97079,97754],[-9,2],[-7,-35],[4,-50],[-15,-49],[8,-50],[-1,-53],[5,-24],[18,-26],[3,-46],[16,-2],[27,36],[9,91],[-4,55],[10,50],[-9,42],[-23,35],[-32,24]],[[97497,96752],[10,29],[2,11],[-25,-22],[-43,4],[27,-42],[21,8],[8,12]],[[97549,96669],[-46,40],[-16,-18],[1,-30],[3,-14],[40,-3],[18,25]],[[98892,96152],[-3,17],[-38,12],[-30,41],[-43,69],[-26,24],[-54,19],[-107,-8],[-206,25],[-39,16],[-77,47],[-74,73],[-71,100],[-162,270],[-127,30],[-24,0],[-19,-8],[-23,17],[0,34],[21,35],[15,33],[27,-45],[12,12],[5,85],[0,53],[-8,29],[-17,21],[-18,-14],[-2,-29],[-24,-69],[-29,-60],[-26,-19],[-16,20],[-25,21],[-21,-77],[-23,-67],[-29,-7],[-26,1],[-22,-29],[-41,-45],[8,-35],[12,-37],[23,-14],[-7,-50],[-13,-41],[-32,-11],[-23,7],[-13,32],[-17,57],[-70,71],[-34,-39],[-39,-59],[19,5],[39,-2],[33,-53],[14,-32],[16,-69],[-21,-49],[-19,-35],[-29,-32],[-106,108],[-22,15],[-21,21],[37,18],[21,-6],[23,32],[-36,45],[-29,12],[-36,27],[-69,69],[-87,145],[-38,41],[-44,33],[-61,-38],[-33,-9],[-44,-60],[-73,-39],[-69,-79],[-47,-40],[-33,-8],[-47,16],[-80,-70],[-60,-8],[-39,71],[-31,-5],[-21,-10],[-63,-116],[-61,-58],[-14,-3]],[[96204,94119],[21,13],[30,4],[37,22],[46,42],[35,4],[24,-31],[29,-15],[50,3],[69,33],[29,29],[11,36],[12,21],[13,6],[7,31],[-2,57],[11,62],[25,69],[19,37],[14,5],[14,-24],[12,-54],[12,-29],[9,-7],[12,11],[13,29],[33,21],[77,24],[31,32],[11,54],[1,88],[4,55],[8,24],[17,21],[24,18],[13,26],[1,28],[39,49],[77,69],[58,62],[38,56],[27,53],[15,50],[29,53],[43,55],[40,22],[35,-11],[14,-19],[-6,-27],[0,-30],[6,-33],[14,-22],[22,-13],[43,-10],[62,-6],[47,16],[32,40],[37,28],[67,23],[54,24],[32,-2],[24,-12],[20,-24],[36,7],[47,33],[45,23],[46,4],[16,-33],[17,-9],[35,8],[15,12],[8,-10],[7,-29],[11,-19],[15,-10],[13,3],[11,14],[16,0],[25,-17],[27,1],[50,37],[14,16],[17,80],[34,216],[16,47],[-11,63],[-9,28],[25,15],[521,417]],[[98729,94865],[-11,16],[-26,-5],[-29,21],[-13,34],[3,39],[-7,44],[-12,16],[5,128],[-16,50],[-31,-15],[-15,-40],[-2,-44],[-13,2],[-17,-23],[-5,-42],[-2,-84],[18,-107],[83,-97],[26,18],[1,24],[19,31],[44,34]],[[99093,94784],[8,-26],[21,-15]],[[99122,94743],[5,8],[-3,12],[-7,14],[-17,0],[-7,7]],[[99093,94784],[-13,14],[-58,216],[-25,58],[-29,89],[-11,81],[-9,88],[-10,149],[-10,106],[-23,102],[-8,73],[-3,140],[11,107],[-7,57],[0,54],[-6,34]],[[99968,90830],[19,52],[-2,159],[14,76],[-4,99],[-43,107],[-34,131],[0,113],[-23,217],[-14,59],[-11,91],[-48,221],[-2,87],[8,103],[-8,100],[-12,68],[-12,127],[-47,196],[-69,146],[-4,111],[-9,49],[-14,62],[-41,67],[-26,29],[-9,39],[-24,0],[-1,13],[16,12],[-7,20],[-63,36],[-43,46],[-43,112],[-19,59],[-23,57],[-14,26],[-6,29],[-9,71],[-23,12],[-20,22],[10,67],[-11,78],[-2,53],[-11,34],[-13,-13],[-10,6],[-13,18],[20,6],[12,8],[-43,77],[-39,77],[-10,52],[-16,65],[-15,145],[-13,83],[9,59],[-2,12],[-9,4],[-5,-8],[-18,20],[-5,21],[8,25]],[[33563,81546],[60,42]],[[33623,81588],[-31,25],[-115,142],[-23,20],[-27,3],[-16,20],[-26,15],[-49,57],[-26,45],[-17,41],[-19,1],[-15,-11],[-47,6],[-24,13],[-26,40],[-33,72],[-13,21],[-26,21],[-31,17],[-37,27],[-17,1],[-15,5],[-12,-12],[-5,-26],[-19,-16],[-46,-8],[-69,-19],[-70,-4],[-35,2],[-29,1],[-50,-10],[-36,-1],[-32,25],[-46,32],[-22,8],[-15,1],[-15,-4],[-18,-16],[-25,-38],[-19,14],[-14,17],[1,-83],[0,-123],[0,-109],[0,-88],[1,-101],[0,-72],[13,-27],[8,-31],[-10,-40],[2,-38],[7,-25],[9,-26],[-20,13],[-9,7],[-11,19],[-26,26],[-17,26],[-21,21],[-26,47],[-21,26],[-22,16],[-37,55],[-31,11],[-81,8],[-84,0],[-77,0],[-12,-1],[1,-45],[2,-32],[-26,-34],[-2,-41],[-7,-29],[-9,-35],[-18,-23],[-26,-8],[-42,-20],[-63,-20],[-60,-1],[-59,2],[36,-71],[36,-70],[-1,-62],[-29,-53],[-16,-33],[-24,-46],[-30,-31],[-17,-42],[2,-26],[-3,-16],[-11,-10],[-12,-16],[-15,-17],[-19,-22],[0,-22],[-7,-24],[-11,-28],[0,-22],[-11,-35],[-11,-26],[-11,-16],[-17,-24],[1,-20],[12,-10],[5,-22],[-1,-22],[-14,-14],[-17,-7],[-22,-41],[-16,-21],[-10,-12],[-6,-14],[6,-10],[7,-14],[2,-22],[-4,-21],[0,-19],[11,-5],[11,3],[11,-11],[15,-5],[17,-3],[9,-12],[-1,-22],[-11,-44],[-10,-18],[-1,-9]],[[31463,80233],[341,229],[690,271],[171,144],[898,669]],[[35135,81028],[31,39],[7,32],[-13,41],[-8,63],[8,47],[-19,7],[-6,39],[19,43],[-1,26],[21,84],[-12,32],[-13,11],[13,65],[-4,65],[-10,32],[1,98],[28,84],[-9,121],[9,35],[-15,15],[4,44],[-4,36],[15,22],[311,2],[0,18],[17,30],[31,-11],[31,20],[33,-2],[20,15],[28,115],[-35,74],[-23,32],[0,70],[12,78],[23,7],[16,65],[14,37],[-2,57],[21,69],[-26,114],[-28,54],[-12,70],[-12,27],[-34,21],[-23,48],[-1,33],[-23,66],[-10,72],[-83,90],[-20,30]],[[35402,83410],[-57,-50],[-49,-35],[-16,4],[-86,14],[-29,7],[-19,-8],[-65,1],[-25,-27],[-21,-32],[-46,-80],[-7,-41],[-17,-12],[-27,4],[-26,-5],[-52,-33],[-49,-35],[-24,2],[-21,-22],[-37,-52],[-17,-20],[-8,-27],[-8,-40],[-15,-8],[-19,7],[-21,20],[-29,-13],[-36,-37],[-23,-29],[-13,-13],[-31,-20],[-30,-4],[-45,29],[-37,-12],[-59,-11],[-50,-21],[-18,-55],[-10,-37],[-29,-23],[-24,-28],[-28,-43],[-14,-14],[-25,-12],[-24,-15],[-3,-27],[-8,-35],[-2,-9],[-16,-43],[-8,-3],[-8,9],[-6,6],[-7,-8],[-1,-19],[4,-31],[-9,-32],[-23,-34],[-12,-35],[-1,-36],[-5,-24],[-10,-12],[-5,-22],[-1,-30],[7,-36],[14,-41],[-3,-64],[-20,-87],[-12,-62],[-2,-39],[3,-28],[13,-27],[24,-68],[5,-51],[-8,-58],[-1,-45],[6,-30],[-9,-40],[-18,-38],[-12,-1],[-17,11],[-20,31],[-23,6],[-21,-20],[-66,9],[-102,19],[-41,21],[-24,8],[-29,7],[-16,12]],[[33563,81546],[25,-43],[15,0],[30,-41],[28,-15],[29,-52],[3,-58],[88,6],[32,-9],[20,7],[50,73],[27,-15],[13,-41],[32,-17],[25,15],[8,-26],[59,-65],[7,5],[8,52],[24,30],[16,-18],[41,-90],[-7,-45],[12,-29],[32,-36],[27,17],[28,2],[37,-36],[17,10],[11,-15],[50,5],[29,-7],[-2,-121],[16,13],[23,-15],[22,-71],[-21,-45],[23,-52],[50,-23],[8,-46],[40,-12],[1,-41],[15,-39],[191,4],[23,5],[32,21],[14,26],[12,52],[24,32],[6,34],[25,-6],[24,17],[21,90],[40,20],[12,75],[40,22],[25,30],[13,-9],[11,-54],[23,-8],[13,-20],[32,18],[0,21]],[[35932,76208],[30,515]],[[35962,76723],[-272,-2],[-77,2],[-31,44],[-12,60],[-15,23],[-11,52],[-17,40],[-1,34],[-22,75],[-1,27],[23,47],[2,26],[-9,15],[-39,17],[-15,42],[-38,15],[-28,-4],[-24,-79],[-27,-36],[-8,-26],[-39,-12],[-14,-17],[-35,2],[-6,23],[-65,43],[-23,42],[-13,105],[5,36],[-4,57],[-13,64],[-1,83],[-29,-23],[-24,-6],[-25,0],[1,-9],[-18,-60],[-28,-46],[-34,-39],[-19,-10],[-12,-30],[-21,-17],[-31,-56],[-27,-27],[9,-37],[30,11],[20,-36],[-3,-58],[-14,-25],[-2,-60],[-9,-34],[-22,-23],[-10,-47],[-18,-36],[-3,-32],[17,-37],[-12,-38],[-2,-34],[11,-32],[1,-55],[12,-28],[2,-25],[-16,-64],[1,-28],[27,-34],[-20,-75],[-2,-47],[-29,-144],[-3,-26],[-30,-38],[-20,-51],[23,-64],[-5,-45],[12,-38],[-6,-17],[-41,-35],[-47,0],[-37,-44],[-8,-32],[-47,6],[-26,-27]],[[34598,75769],[6,-56],[-5,-34],[-59,-11],[-38,0],[-64,-9],[-30,-14],[-7,-9],[-1,-11],[6,-25],[6,-45],[-8,-62],[-32,-97],[-23,-96],[-3,-66],[1,-71],[2,-46],[-17,-36],[-88,-113],[-30,-54],[-11,-37],[-34,-68],[8,-21],[20,1],[18,18],[15,38],[11,8],[16,0],[81,0],[19,6],[12,13],[9,16],[15,44],[16,22],[32,-1],[50,-1],[29,-4],[17,13],[21,10],[44,-24],[12,0],[14,10],[47,79],[28,34],[23,44],[34,0],[27,-38],[8,-127],[8,-38],[14,-10],[17,-1],[20,-20],[21,-26],[19,-9],[78,28],[21,-13],[79,-34],[80,-44],[23,-54],[33,-15],[27,-40],[21,4],[32,2],[20,-7],[10,-8],[11,-19],[19,-53],[21,-21],[28,-21],[19,-26],[15,-31],[8,-27],[-1,-22],[-9,-42],[-11,-39],[-12,-13],[-9,-5],[27,-9],[23,13],[35,3],[15,-11],[23,5],[28,-28],[18,9],[12,0],[11,21],[8,25],[26,29],[-2,44],[-5,40],[-3,45],[-2,35],[-11,35],[-17,33],[-5,14],[-2,17],[11,11],[20,3],[25,1],[17,10],[22,2],[26,29],[13,17],[1,13],[-8,32],[-4,29],[7,18],[8,13],[21,66],[10,23],[9,7],[2,13],[-7,24],[-9,30],[-20,32],[-3,26],[-15,15],[-38,38],[7,60],[1,31],[0,23],[-13,32],[-22,93],[-8,47],[-7,107],[0,36],[10,49],[22,107],[12,17],[28,26],[4,72],[-3,76],[-1,30],[5,13],[12,6],[10,9],[1,22],[-1,24],[21,13],[19,9],[17,32],[30,50],[12,9],[6,21],[26,42],[40,16],[40,18],[0,1]],[[35962,76723],[5,147],[-4,42],[3,85],[35,39],[-3,91],[13,34],[23,35],[18,-3],[39,47],[15,90],[22,34],[19,4],[28,51],[23,30],[31,23],[24,37],[22,10],[52,68],[27,17],[35,32],[34,20],[19,-9],[8,21],[24,7],[24,19],[25,60],[55,46],[24,9],[-1,60],[33,21],[42,-30],[4,43],[25,41],[3,27],[-110,380],[-463,1586],[-24,34],[-19,51],[-6,56],[21,75],[48,92],[24,59],[3,36]],[[36182,80340],[-19,37],[-7,33],[0,44],[-11,47],[-21,52],[-7,60],[7,70],[-7,108],[-13,68],[-9,52],[-14,81],[-23,28],[-923,8]],[[31463,80233],[-3,-17],[9,-51],[5,-33],[19,-35],[59,-74],[53,-50],[25,-5],[19,-19],[12,-28],[4,-31],[-3,-28],[-10,-40],[-11,-50],[-9,-28],[8,-33],[14,-46],[28,-69],[27,-74],[3,-22],[3,-45],[12,-92],[7,-50],[-3,-20],[6,-16],[16,-14],[41,-13],[27,-27],[42,-52],[35,-56],[29,-17],[52,-51],[30,-33],[12,-10],[30,-23],[53,-9],[44,-8],[25,-15],[37,-7],[25,-17],[27,0],[51,-18],[18,-26],[15,-32],[20,-27],[23,-7],[27,5],[31,0],[38,-9],[18,21],[8,26],[24,25],[16,-1],[17,-6],[23,23],[15,-3],[9,-13],[2,-31],[6,-17],[11,-97],[18,-161],[17,-146],[18,-162],[20,-166],[19,-169],[16,-138],[14,-119],[8,-73],[13,-96],[5,-84],[6,-24],[-4,-21],[-11,-29],[0,-12],[1,-17],[-1,-15],[-12,-16],[-9,-9],[-8,-14],[-3,-19],[-6,-19],[-3,-20],[-8,-15],[-3,-20],[6,-19],[3,-20],[-3,-19],[-3,-22],[-7,-21],[-10,-13],[-24,-14],[-24,-34],[-29,-31],[-36,-58],[-8,-27],[0,-75],[1,-82],[2,-123],[2,-62],[20,-4],[18,-1],[19,-5],[17,-4],[15,-9],[12,-11],[13,-8],[11,3],[10,-10],[12,-9],[11,-8],[17,-6],[15,15],[9,15],[10,7],[10,-2],[6,1],[7,13],[9,0],[12,-2],[12,-2],[5,-4],[1,-8],[-3,-13],[-4,-12],[3,-20],[1,-23],[0,-29],[-9,-17],[-9,-31],[-11,-25],[-16,-16],[-15,-7],[-12,10],[-12,2],[-8,-9],[-15,-1],[-15,-3],[-16,-3],[-29,7],[-10,-9],[-14,-1],[-17,9],[1,-119],[0,-112],[1,-79],[14,2],[18,-14],[27,-2],[21,-15],[12,-1],[22,7],[22,15],[23,3],[59,0],[63,-1],[71,0],[71,0],[61,0],[19,1],[-11,-26],[-13,-34],[6,-26],[6,-27],[7,-14],[19,15],[16,45],[14,35],[13,17],[16,2],[18,-6],[18,-14],[31,-63],[31,-54],[16,-18],[17,-17],[13,-6],[17,2],[15,14],[9,26],[35,90],[26,67],[9,42],[0,103],[-1,90],[3,12],[5,4],[57,-22],[78,110],[57,82],[25,26],[13,7],[34,-5],[39,-11],[20,-12],[21,-25],[34,-35],[28,-20],[11,-2],[11,6],[24,21],[13,39],[-12,46],[2,29],[25,-2],[20,-47],[14,-38],[29,-30],[29,-43],[19,-41],[24,-24],[35,-29],[28,-18],[26,2],[19,-20],[25,-36],[18,-29],[12,-10],[24,2],[30,-4],[30,-35],[28,-43],[14,-72],[9,-64],[9,-13],[9,-10],[12,-7],[28,-4],[49,-34],[34,-35],[32,-7],[9,-10],[12,-32]],[[38082,77514],[-32,9],[41,-120],[37,-55],[0,-32],[1,-78],[39,-98],[37,-40],[51,-12],[29,60],[-35,169],[-10,1],[-47,90],[-52,62],[-8,6],[-51,38]],[[38746,76939],[28,2],[40,-9],[27,-22],[30,-5],[29,3],[100,25],[60,7],[22,8],[21,11],[16,13],[4,26],[-15,42],[-11,45],[-10,62],[-8,13],[-13,-4],[8,56],[-3,22],[-6,22],[-16,45],[-24,57],[-7,12],[-19,20],[-15,25],[3,24],[8,24],[-9,30],[-29,44],[-17,11],[-16,4],[-14,-4],[-26,-44],[-3,34],[-7,36],[-9,19],[-33,-2],[-19,-19],[-30,-21],[-6,57],[-18,39],[-19,12],[-30,8],[-17,17],[-32,-13],[-30,-26],[-16,-2],[-14,21],[-69,4],[-31,21],[-20,-6],[-28,-43],[-5,-29],[-17,-58],[-15,-69],[-11,-63],[10,-54],[18,2],[22,8],[4,-4],[2,-17],[-5,-14],[-35,2],[-23,-32],[-4,-50],[5,-103],[3,-21],[15,-30],[5,-26],[-3,-28],[6,-50],[15,-44],[55,-55],[65,-20],[186,54]],[[38438,76893],[-83,93],[-28,-31],[-5,-17],[4,-18],[-1,-8],[9,-32],[47,-26],[23,-5],[29,8],[5,23],[0,13]],[[38802,76883],[-80,15],[-36,-23],[8,-21],[27,-31],[33,-23],[30,-10],[31,12],[8,27],[-2,27],[-19,27]],[[38713,76702],[13,25],[-43,99],[-24,15],[-25,3],[-34,-30],[-52,2],[-16,-7],[-2,-43],[22,-47],[44,3],[75,-38],[42,18]],[[38506,76763],[-5,70],[-55,-29],[4,-72],[26,-20],[22,-38],[8,-47],[0,-64],[9,-11],[7,-4],[7,4],[2,96],[3,58],[-28,57]],[[38588,76642],[-32,16],[-7,-15],[0,-60],[10,-33],[41,-9],[5,-9],[12,-7],[6,21],[-1,34],[-34,62]],[[37213,75673],[-6,4],[6,72],[-22,64],[11,24],[-12,34],[9,19],[-1,34],[9,60],[47,-5],[25,17],[40,-6],[49,49],[9,0],[27,55],[1,17],[22,-8],[25,30],[10,25],[40,7],[5,-19],[25,6],[2,28],[29,-3],[5,60],[30,-8],[9,36],[-17,15],[14,100],[46,77],[40,14],[6,15],[-8,88],[4,72],[25,66],[11,53],[-3,39],[12,34],[19,83],[26,-5],[39,58],[21,45],[-1,76],[8,26],[24,17],[6,40],[-3,69],[35,-2],[9,25],[-6,15],[9,55],[36,37],[33,2],[24,12],[20,-17],[29,9]],[[38065,77383],[-10,10],[-4,67],[-14,22],[-12,15],[-62,-17],[-98,72],[-34,18],[107,4],[34,38],[75,-25],[91,-92],[35,-19],[70,-63],[29,-41],[52,-50],[11,-22],[30,-23],[15,30],[2,18],[-24,37],[6,23],[16,30],[6,40],[2,31],[9,55],[33,73],[1,24],[-5,32],[16,27],[16,15],[55,79],[43,-44],[26,-13],[17,-18],[36,-12],[29,18],[55,27],[40,-28],[82,-65],[-25,114],[-19,105],[-14,43],[-14,114],[-14,31],[-11,35],[18,-13],[16,-16],[20,-44],[15,-77],[59,-204],[17,-18],[49,-23],[85,-163],[33,0],[22,38],[20,22],[5,-45],[29,-18],[-31,-22],[-5,-20],[-3,-34],[21,-45],[-12,-40],[43,-50],[-4,-38],[16,-31],[19,-32],[22,-16],[4,-27],[14,-12],[11,-4],[22,31],[23,-37],[23,-14],[10,7],[13,16],[13,6],[11,-2],[29,-24],[26,38],[15,8],[-4,-21],[-8,-19],[6,-16],[13,-10],[39,9],[20,16],[22,31],[31,3],[24,-4],[16,18],[24,0],[13,27],[38,38],[8,26],[30,12],[29,16],[30,4],[31,-3],[1,32],[23,9],[28,-7],[12,21]],[[39838,77377],[-41,44],[-5,36],[11,15],[-23,66],[5,43],[-5,49],[-14,21],[-21,5],[4,34],[25,2],[2,57],[-20,103],[-30,53],[-11,-6],[2,70],[-8,11],[2,49],[-17,17],[-7,32],[-28,23],[-20,36],[28,52],[-23,31],[4,35],[-9,51],[-23,47],[-25,66],[-10,0],[-26,32],[-7,62],[-18,21],[1,13],[-12,117],[-67,113],[-7,-6],[-7,47],[-15,53],[-23,30],[-9,41],[-28,60],[-22,27],[-44,-4],[-136,171],[-144,184],[3,8]],[[39020,79388],[-1,0],[1,0]],[[39020,79388],[37,21],[26,4],[27,-4],[20,12],[12,30],[12,17],[13,5],[12,16],[10,26],[-7,25],[-23,25],[-6,34],[10,45],[-3,27],[-15,10],[-5,19],[8,30],[-7,21],[-21,14],[-8,32],[7,48],[-5,24],[-19,-2],[-17,9],[-16,20],[-12,36],[-10,51],[-46,59],[-82,66],[-39,72],[4,78],[-13,80],[-31,85],[2,67],[34,49],[15,56],[-6,61],[-11,70],[-16,78],[-29,95],[-38,101],[-33,63],[-29,27],[-36,61],[-45,96],[-32,98],[-27,149],[-18,54]],[[38564,81548],[-321,-26],[-1143,-108],[-413,-47],[-8,0],[-57,-43],[-28,8],[-20,-60],[-27,-13],[-37,-7],[-8,-21],[-2,-52],[-6,-13],[-59,-45],[-55,-80],[-30,-17],[-18,-69],[-3,-56],[-10,-30],[13,-99],[-42,-88],[-35,-172],[-16,-35],[-10,-43],[-24,-58],[-23,-34]],[[35932,76208],[15,26],[16,21],[13,2],[10,-4],[17,-18],[14,-16],[24,1],[28,-3],[5,-13],[3,-17],[-6,-44],[10,-13],[23,-7],[5,-23],[5,-13],[7,-15],[8,-2],[10,9],[15,5],[17,7],[10,15],[15,1],[17,-3],[7,-9],[5,-16],[4,-36],[11,-1],[22,-8],[23,-15],[31,-3],[30,1],[14,-11],[14,-23],[26,-64],[14,-15],[15,-11],[13,2],[26,-11],[21,-15],[8,4],[16,33],[9,7],[12,2],[40,17],[21,-5],[23,-11],[22,-4],[16,8],[12,-10],[13,-7],[9,5],[20,4],[48,18],[62,21],[17,-7],[10,-15],[3,-42],[2,-30],[-14,-27],[-18,-30],[-16,-37],[-19,-11],[2,-19],[13,-20],[13,-12],[7,-13],[8,-50],[6,-9],[5,-2],[6,2],[13,13],[49,40],[22,-6],[82,-11],[13,-23],[17,-5],[30,-23],[12,-1],[10,5],[13,-4],[20,-22],[8,-2],[3,24],[13,24],[15,22],[7,6],[26,-8],[13,7],[2,8]],[[37715,85570],[2,40],[-4,99],[7,31],[13,16],[25,-21],[37,23],[-1,36],[-17,36],[-14,51],[7,23],[32,13],[44,7],[35,-9],[48,56],[21,-2],[53,43],[10,25],[45,22],[21,29],[61,41],[29,5],[42,15],[28,43],[53,16],[31,43],[21,72]],[[38344,86323],[-10,77],[1,222]],[[38335,86622],[-21,62],[-29,42],[-72,69],[-41,59],[-18,55],[-8,72],[-22,70],[-36,68],[-16,54],[3,40],[-5,35],[-19,48],[-6,24],[-10,12],[-18,9],[-7,22],[2,35],[-17,49],[-37,63],[-28,60],[-20,58],[-49,71],[-119,128],[-47,95]],[[37695,87922],[-47,58],[-63,52],[-42,77],[-17,90],[-28,77],[-41,44],[-27,85],[-16,131],[-23,82],[-35,35]],[[37356,88653],[-39,-39],[-21,-36],[-27,-26],[-29,-21],[-14,9],[-15,12],[-28,19],[-33,32],[-17,12],[-30,13],[-34,10],[-28,-7],[-24,-7],[-15,-21],[-8,-44],[0,-38],[-5,-56],[-18,-31],[-6,-24],[-1,-29],[2,-33],[5,-24],[-3,-29],[-8,-20],[2,-37],[-4,-49],[-12,-31],[-6,-36],[0,-36],[-9,-36],[-1,-40],[8,-35],[3,-36],[-9,-26],[-17,-15],[-13,-41],[-1,-53],[-14,-29],[-15,-24],[-17,0],[-26,-14],[-23,2],[-37,-2],[-17,-8],[-9,-19],[-23,-26],[-13,-44],[-16,-9],[-23,14],[-8,17],[-9,24],[-16,27],[-21,-1],[-21,15],[-21,2],[-28,3],[-28,-14],[-34,-15],[-29,-10],[-28,10],[-19,-9],[-25,-5],[-28,-3],[-22,-27],[-24,-16],[-13,5],[-16,18],[-18,-4],[-23,-14],[-9,-32],[2,-20],[5,-21],[9,-29],[-5,-30],[2,-27],[4,-24],[4,-27],[-3,-26],[-1,-27],[-2,-25],[-3,-28],[12,-39],[10,-32],[-6,-27],[2,-18],[8,-31],[10,-37],[-1,-69],[-9,-41],[-10,-11],[-3,-12],[5,-16],[-5,-17],[-2,-17],[5,-14],[-7,-29],[-14,-9],[-5,-8],[-5,-32],[-4,-37],[2,-29],[-7,-25],[-10,-15],[-10,-27],[-10,-21],[-4,-28],[-7,-37],[20,-7],[8,-21],[14,-28],[18,-7],[22,-10],[8,-21],[-51,-75],[-30,-44],[18,-61],[30,-101],[29,-99],[23,-75],[5,-14],[20,-5],[-4,-38],[-1,-26],[-15,-1],[17,-91],[26,-130],[20,-99],[6,-16],[14,-5],[3,-11],[-17,-16],[-10,-31],[-23,-87],[-27,-107]],[[36298,85428],[36,3],[10,38],[32,27],[7,15],[15,-9],[15,-3],[52,-32],[36,-39],[30,-70],[28,-38],[29,-66],[14,-35],[23,2],[54,-9],[16,9],[32,-18],[24,-33],[45,-16],[23,13],[12,27],[45,22],[14,21],[54,20],[23,55],[59,41],[47,51],[32,-2],[53,-16],[26,-24],[10,-23],[24,-20],[53,-2],[31,33],[9,47],[22,0],[25,-18],[27,-4],[19,-20],[13,-38],[27,-27],[39,-76],[23,-26],[19,2],[-22,192],[-32,24],[-39,105],[4,16],[32,7],[43,31],[37,-7],[33,9],[57,-6],[48,15],[25,-4],[4,-2]],[[38544,75905],[-30,22],[-17,-9],[-16,-57],[5,-47],[22,-16],[17,4],[6,6],[15,77],[-2,20]],[[37213,75673],[4,12],[2,19],[10,15],[14,1],[7,6],[13,10],[11,22],[24,18],[43,26],[19,0],[18,8],[12,8],[12,-14],[43,-40],[21,-21],[14,-17],[11,-16],[8,-4],[5,10],[5,12],[15,8],[36,14],[17,5],[23,-13],[20,-21],[9,-8],[15,22],[10,30],[7,13],[15,-3],[29,4],[22,10],[14,-1],[18,-13],[10,-27],[27,-24],[24,-22],[15,-30],[21,-49],[7,-21],[1,-36],[30,-103],[11,-19],[7,-33],[12,-38],[0,-31],[9,-31],[17,-26],[12,-17],[21,-44],[14,-42],[35,-93],[2,-27],[14,-15],[5,-20],[15,-25],[16,-20],[6,-28],[12,-30],[25,-23],[9,-10],[29,-83],[3,-37],[26,-1],[40,43],[33,62],[43,202],[7,186],[18,98],[50,203],[3,38],[8,45],[16,49],[18,79],[0,15],[-11,21],[17,2],[15,13],[10,50],[12,34],[23,47],[47,15],[35,6],[40,26],[29,34],[23,114],[-7,72],[2,51],[-12,20],[-33,33],[-7,17],[-67,86],[-15,40],[-36,55],[-36,103],[-52,95],[-19,23],[-28,6],[-17,15],[-41,77],[-54,25],[-5,45],[-32,102],[-28,56],[-17,19],[-45,101],[-5,45],[0,78],[-30,47],[-21,20]],[[38564,81548],[-31,93],[-18,69],[-2,40],[-16,63],[-29,86],[-14,60],[-4,151],[-10,79],[-19,89],[-3,66],[14,45],[2,38],[-16,47],[17,51],[2,34],[-6,33],[2,59],[11,86],[1,73],[-10,59],[2,53],[12,47],[15,28],[24,11]],[[38488,83008],[-24,84],[-9,57],[-1,58],[-21,79],[-40,99],[-18,95],[3,93],[-5,49],[-12,6],[-10,46],[-11,130],[-41,184],[-23,69],[-17,14],[-12,-1],[-56,20],[-36,48],[-22,60],[-10,70],[-11,43],[-12,16],[-5,17],[3,18],[-6,31],[-14,45],[-35,36],[-54,26],[-35,32],[-15,36],[-16,24],[-17,12],[-37,43],[2,29],[-41,31],[-4,35],[20,34],[-19,74],[-33,64],[-46,54],[-25,48],[-3,43],[-13,49],[-24,57],[-14,48],[-2,52],[29,223],[19,82]],[[36298,85428],[-8,-31],[-3,-50],[-13,-30],[-22,10],[-26,-10],[-65,-75],[-42,-40],[-15,-24],[-6,-77],[-13,-85],[-6,-104],[3,-25],[36,-80],[0,-40],[3,-35],[-2,-27],[-9,-1],[-14,12],[-22,10],[-13,0],[-126,-7],[-144,-9],[-119,-7],[-104,-6],[-4,-68],[-6,-114],[-4,-81],[-6,-128],[-42,-80],[-45,-87],[-16,-22],[55,-3],[38,-2],[-7,-232],[-12,-23],[-11,-75],[-7,-43],[-19,-34],[-4,-38],[3,-26],[11,-16],[7,-40],[-6,-40],[-11,-37],[-14,-36],[-27,-21],[-38,-40],[-1,-1]],[[39214,89306],[-38,67],[-12,-7],[17,-50],[-26,-2],[-39,-18],[-17,21],[9,49],[-14,21],[-27,2],[-24,-6],[-26,-36],[11,65],[56,16],[24,15],[8,25],[-43,116],[-37,15],[-4,16],[20,0],[11,32],[-2,27]],[[39061,89674],[-20,-7],[-81,2],[-8,17],[-49,-7],[-31,19],[-26,40],[-47,33],[-11,29],[-32,0],[-38,-34],[-9,-19],[-39,-45],[-20,-14],[-73,21],[-38,0],[-16,18],[-27,-32],[-25,0],[-31,24],[-27,85],[-11,-4],[-39,30],[-13,-19],[-39,-4],[-53,59],[-12,41],[3,40],[12,57],[-14,24],[-41,26],[-25,-52],[-111,0],[-41,-10],[-57,-71],[-78,-10],[-26,-16],[-30,0],[-9,-12],[-43,-22],[-30,15],[-24,-8],[-39,10],[-47,-57],[-23,-12],[-31,26],[-17,0],[-45,-16],[-2,0]],[[37528,89819],[0,-18],[-23,-75],[-23,-66],[-12,-112],[-8,-42],[-20,-11],[-17,-37],[-22,-3],[-10,-14],[-11,-12],[-15,3],[-14,22],[-24,1],[-16,9],[-18,19],[-17,-9],[-11,-17],[-24,0],[2,-76],[41,-112],[11,-52],[-5,-30],[12,-104],[31,-178],[9,-116],[-11,-55],[0,-38],[15,-33],[8,-9],[0,-1]],[[37695,87922],[22,-2],[29,-34],[76,16],[24,-16],[29,23],[23,-7],[39,10],[16,-10],[13,21],[16,-21],[7,-30],[23,-11],[24,14],[34,32],[39,5],[15,23],[16,-7],[28,18],[58,-18],[52,46],[54,28],[36,14],[30,64],[18,3],[29,-14],[59,11],[19,-16],[23,21],[51,-7],[46,-14],[4,26],[13,11],[2,26],[54,37],[28,78],[7,79],[-13,51],[15,70],[16,37],[-5,63],[-9,16],[57,115],[23,30],[-1,37],[19,54],[15,12],[-4,42],[-22,58],[4,70],[24,15],[38,-3],[20,-9],[59,-3],[15,17],[50,-7],[38,33],[-16,35],[-7,129],[16,14],[29,-66],[45,40],[11,-11],[13,94],[28,23],[2,24],[3,5]],[[39447,84583],[-166,2],[-99,-2],[-21,-5],[5,-35],[-13,-60],[23,-51],[-11,-22],[17,-99],[126,0],[103,4],[3,18],[32,26],[0,60],[-13,62],[-3,75],[17,27]],[[39769,82986],[44,57],[5,31],[-23,24],[-10,65],[2,29],[28,17],[-4,48],[-27,27],[-26,122],[3,106],[12,63],[15,37],[13,53],[27,35],[8,22],[27,27],[-12,57],[0,33],[15,77],[-5,29],[-29,59]],[[39832,84004],[-16,26],[-33,7],[-33,-13],[-5,-31],[-22,-37],[-39,-29],[-20,39],[8,38],[-7,22],[10,62],[-27,15],[-30,-26],[-29,-3],[-18,18],[-12,88],[12,7],[11,42],[-24,53],[1,55],[19,25],[11,123],[-10,20],[-64,27],[-15,-7],[-31,56],[-22,2]],[[39447,84583],[-17,-27],[3,-75],[13,-62],[0,-60],[-32,-26],[-3,-18],[-103,-4],[-126,0],[-17,99],[11,22],[-23,51],[13,60],[-5,35],[21,5],[99,2],[166,-2]],[[39447,84583],[-10,53],[4,40],[-8,38],[-25,53],[-6,42],[15,38],[41,44],[33,129],[2,29],[-24,25],[5,24],[-29,34],[-34,64],[-9,38],[-14,-9],[-9,63],[21,36],[15,-14],[37,25],[5,60],[-18,38],[-8,40],[3,27],[20,92],[-12,11],[-38,44],[-102,105],[-43,33],[-27,-6],[-63,-47],[-219,-7],[-47,31],[-21,8],[-21,32],[-27,59],[-24,9],[-21,-41],[-20,-6],[-18,29],[-20,17],[-33,7],[-52,1],[-40,12],[-46,25],[-37,40],[-27,54],[-12,39],[3,33],[-13,34],[-14,13],[-19,3],[-22,21],[-23,40],[-16,36],[-8,34],[0,23],[2,7],[-5,11],[-13,3],[-12,24]],[[38488,83008],[28,-110],[29,-62],[40,-50],[8,43],[-20,46],[1,41],[-23,66],[2,50],[9,20],[57,43],[24,3],[17,21],[69,53],[50,11],[42,24],[6,-57],[19,-63],[49,-131],[36,-40],[5,46],[22,18],[31,43],[8,27],[-2,35],[11,48],[2,54],[-4,70],[10,16],[16,-22],[10,-79],[20,-11],[32,20],[34,-5],[43,-46],[19,5],[-4,39],[31,7],[21,26],[20,-2],[25,24],[52,31],[7,-18],[-19,-83],[24,-18],[26,64],[35,2],[44,-24],[61,-50],[36,-14],[43,0],[23,-17],[32,-55],[16,-15],[48,-22],[40,-6],[20,-18]],[[39856,81778],[57,6]],[[39913,81784],[-31,67],[-54,50],[-15,7],[-64,84],[20,61],[-4,15],[-36,26],[-29,102],[-20,28],[-12,39],[6,31],[18,17],[19,41],[72,22],[32,28],[-7,31],[-42,30],[-9,20],[8,37],[27,-5],[17,16],[7,30],[-40,35],[-11,24],[-23,22],[-4,17],[-3,105],[10,39],[47,39],[0,48],[-23,55],[0,41]],[[39020,79388],[0,0]],[[39020,79388],[27,-12],[17,-20],[15,-32],[20,-19],[24,-6],[29,10],[34,24],[33,11],[32,-3],[21,14],[9,31],[27,27],[46,23],[28,25],[10,26],[12,90],[15,155],[-3,167],[-19,180],[-20,111],[-21,42],[-18,26],[-15,8],[-1,18],[15,28],[17,10],[20,-6],[12,8],[3,25],[-1,45],[12,40],[14,-2],[20,63],[13,1],[7,33],[39,60],[22,58],[19,32],[9,-2],[35,-38],[38,-18],[51,-8],[25,28],[7,51],[-11,50],[-1,49],[-11,22],[12,36],[-47,0],[-40,20],[-14,23],[-13,48],[-12,77],[5,41],[-48,72],[-6,28],[14,15],[30,2],[28,47],[5,67],[23,50],[58,43],[8,28],[-20,45],[-15,7],[-5,39],[48,54],[13,45],[-2,26],[37,80],[19,9],[29,-5],[30,16],[17,30],[26,22]],[[40063,88571],[0,27],[-13,-14],[-33,11],[-12,-21],[45,-87],[9,12],[7,16],[5,23],[-5,14],[-3,19]],[[40192,87801],[18,9],[37,72],[4,20],[29,10],[97,-14],[15,55],[-24,26],[-8,37],[-26,18],[-33,-2],[-35,14],[-42,30],[-22,27],[-2,77],[-18,35],[25,77]],[[40207,88292],[-51,15],[-80,101],[-33,12],[-29,45],[-3,38],[-10,23],[-19,1],[-41,-21],[-54,-1],[-39,17],[-198,164],[-72,66],[-81,135],[-137,151],[-72,90],[-14,24],[-11,1],[-23,19],[9,16],[16,1],[-7,53],[-28,36],[-16,28]],[[38335,86622],[123,-142],[29,-16],[17,5],[21,29],[297,61],[30,5],[6,15],[-9,29],[1,38],[14,49],[12,25],[10,0],[16,-18],[22,-37],[13,14],[5,63],[8,37],[10,9],[10,-30],[8,-70],[14,-37],[29,-8],[106,-3],[34,-23],[22,-5],[21,17],[18,2],[18,-19],[25,0],[14,-13],[0,-23],[13,-16],[21,-1],[16,7],[12,16],[18,-2],[23,-13],[18,4],[10,18],[29,41],[26,29],[3,15],[-10,41],[-8,70],[12,28],[30,25],[13,54],[-31,89],[-2,55],[23,34],[6,78],[21,31],[18,76],[-2,30],[32,2],[24,-23],[39,18],[10,-11],[14,27],[30,16],[4,35],[-20,75],[-14,5],[-6,46],[-12,20],[2,48],[12,42],[-12,34],[18,42],[-19,37],[-11,59],[18,46],[28,16],[1,17],[27,23],[18,50],[-23,35],[31,35],[2,48],[22,21],[40,-19],[3,24],[38,-10],[33,-27],[15,20],[20,-4],[15,-28],[0,-37],[-17,-14],[39,-41],[12,1],[14,-4],[17,19],[17,-20],[19,18],[42,-21],[8,-23],[56,-49],[41,-9],[27,-23]],[[40292,78233],[-30,46],[10,-54],[-5,-37],[4,-29],[20,-28],[7,-4],[-2,34],[1,11],[-5,61]],[[40176,77458],[-19,23],[-6,12],[-16,-9],[3,-13],[5,2],[5,-39],[27,5],[1,19]],[[41092,78146],[-7,45],[16,40],[-8,47],[-24,36],[-24,58],[-31,15],[1,19],[-35,62],[-44,8],[-27,13],[-15,-13],[-22,58],[-16,21],[-15,41],[4,43],[-21,64],[-35,55],[-12,49],[-30,47],[11,73],[17,6],[10,45],[-15,66],[-11,11],[6,34],[-7,22],[15,25],[15,51],[6,77],[8,30],[-8,73],[-24,39],[-40,98],[-16,13],[5,43],[-8,27],[11,138],[21,32],[12,30],[34,32],[-5,88],[4,21],[-18,64],[-1,26],[-19,37],[-46,17],[-20,-13],[-31,23],[-48,20],[-30,-43],[-35,-26],[-42,4],[-41,26],[-26,2],[-7,30],[-9,-10],[-22,38],[-1,17],[-27,41],[-15,49],[-43,18],[-39,49],[-40,71],[-31,-15],[-28,38],[-35,24],[-82,30],[-53,56],[-21,95],[-11,135],[-23,50],[-1,27],[-23,59],[-6,62],[-20,67],[-32,43],[-16,67],[12,41],[1,52],[10,28],[2,73],[20,22],[10,43],[-12,34],[-7,145],[0,80],[-12,13],[0,28],[-16,48],[5,15],[-3,50]],[[39838,77377],[10,19],[59,30],[40,47],[26,-8],[30,12],[32,101],[7,71],[14,-10],[13,-32],[17,-58],[32,-20],[15,23],[32,36],[28,39],[12,26],[20,4],[-17,31],[17,-3],[21,-22],[18,46],[14,49],[3,51],[-13,29],[-11,19],[-13,36],[-15,6],[-14,12],[16,26],[12,25],[25,-68],[18,-19],[25,-11],[14,49],[2,45],[-41,20],[0,36],[-13,20],[-8,24],[-6,49],[-9,41],[-25,182],[0,29],[30,-32],[56,-92],[17,-99],[22,-97],[24,-30],[15,0],[22,11],[1,31],[-3,19],[-24,48],[-10,26],[10,27],[54,-80],[24,-28],[20,5],[41,-37],[83,-7],[6,-43],[16,-17],[46,4],[88,38],[31,31],[48,28],[24,35],[104,62],[75,7],[38,-29],[9,6]],[[40404,88182],[9,14],[-17,-1],[-20,13],[-30,11],[-12,-21],[26,-29],[9,-22],[7,5],[9,15],[19,15]],[[41356,87221],[-24,117],[8,47],[0,7],[10,159],[-3,41],[-37,44],[-139,82],[-37,34],[-83,140],[-5,33],[4,47],[13,27],[-14,29],[-16,53],[-25,-3],[-138,0],[-75,17],[-38,-3],[-18,-13],[-20,-21],[-5,-27],[10,-41],[-6,-25],[-21,1],[-22,12],[-4,24],[2,18],[8,25],[5,32],[-10,27],[-43,4],[-50,25],[-61,10],[-49,18],[-22,-23],[22,-11],[32,5],[35,-18],[-8,-23],[-49,-29],[-55,18],[-30,34],[-66,-3],[-81,26],[-14,27],[3,52],[15,11],[16,24],[-15,22],[-14,10],[-35,9]],[[40192,87801],[30,-23],[21,5],[18,-28],[21,-7],[27,-25],[45,-7],[23,4],[38,-39],[59,-34],[24,-21],[76,0],[31,-4],[36,-28],[63,12],[21,19],[236,-180],[-1,-37],[-26,-4],[2,-21],[18,-55],[2,-41],[23,-34],[12,-90],[25,-82],[-13,-20],[13,-21],[30,5],[11,-12],[10,-41],[19,-27]],[[41086,86965],[37,23],[9,80],[-5,34],[5,34],[82,46],[15,-7],[38,23],[59,-9],[30,32]],[[41266,78221],[3,78],[-36,92],[-15,24],[-7,55],[21,75],[8,55],[21,49],[16,111],[15,39],[19,25],[13,71],[-20,49],[-28,53],[-3,37],[6,53],[13,41],[-1,49],[19,45],[2,28],[16,49],[-2,66],[13,28],[23,25],[9,88],[-1,39],[10,107],[0,51],[25,116],[3,60],[8,55],[15,37],[4,43],[28,23],[40,13],[19,37],[-7,45],[-21,47],[-22,92],[15,62],[-1,33]],[[41486,80366],[-32,4],[-14,13],[0,41],[22,60],[-13,60],[34,34],[6,35],[-5,60],[-14,45],[-47,58],[-26,58],[-16,-6],[-11,39],[-28,-7],[-20,52],[-23,11],[-16,41],[-47,38]],[[41236,81002],[-10,35],[-20,39],[-9,34],[-18,17],[-16,-4],[-38,9],[0,73],[-19,19],[-16,39],[-20,-19],[-38,-2],[-32,41],[-48,6],[-37,50],[-17,43],[-26,-7],[-13,39],[-41,-21],[-29,13],[-24,-15],[-2,-21],[-28,-18],[-4,-20],[-26,-10],[-17,21],[-58,-2],[-11,-38],[-10,-16],[-27,28],[-20,-11],[-17,13],[-10,39],[-35,-9],[-6,35],[14,32],[17,89],[14,26],[-10,71],[3,41],[-15,35],[-3,30],[-12,17],[-33,111],[-25,11],[-37,65],[-30,19],[-28,-13],[-32,-6],[-37,19],[-24,28],[-8,24],[-32,24],[-10,35],[-20,11],[-24,-9],[-34,17],[-82,-56],[-37,-78],[-10,-65],[-13,-35],[-27,-39],[-46,-2]],[[41092,78146],[37,24],[25,34],[48,18],[49,9],[15,-10]],[[41585,85549],[-2,-2],[-64,-40],[-14,18],[-18,-14],[-40,27],[-18,-4],[-19,13],[-36,0],[40,61],[3,22],[-21,7],[-23,-25],[-31,36],[-14,2],[-24,61],[4,18],[31,36],[7,24],[-8,92],[31,30],[-2,56],[-48,11],[-31,-11],[-12,22],[21,27],[18,-9],[24,48],[-8,27],[32,56],[6,74],[-10,91],[-27,9],[6,29],[-39,57],[-8,104],[-37,45],[-17,118],[-12,14],[-94,-3],[-42,82],[17,30],[0,54],[-16,46],[12,11],[-21,57],[5,9]],[[39832,84004],[15,57],[-29,130],[32,-31],[12,-28],[48,9],[16,-11],[18,-40],[31,-53],[27,2],[43,-42],[28,-57],[38,-11],[66,-59],[13,-40],[84,-84],[60,-37],[12,-13],[33,-2],[16,15],[97,22],[16,13],[-5,14],[-18,81],[-6,44],[4,17],[13,18],[35,20],[64,26],[14,-4],[18,-40],[48,-31],[83,20],[19,36],[78,94],[16,-4],[44,50],[51,36],[26,0],[27,37],[44,-4],[42,-31],[133,190],[8,110],[53,31],[39,-22],[25,-31],[17,11],[18,-6],[21,28],[28,-11],[28,20],[12,20],[18,-11],[44,25],[28,-3],[20,38],[11,-2],[39,51],[20,2],[22,55],[-23,100],[-35,42],[-23,54],[-1,20],[-35,11],[-7,24],[-2,65],[12,44],[-17,22],[-52,-4],[-16,31],[-15,100],[3,65],[-12,24],[-2,41],[34,13],[5,69],[21,0],[9,34],[30,47],[22,24],[7,25],[-13,51],[6,29]],[[41585,85549],[7,16],[155,159],[1,1]],[[41748,85725],[-21,158],[-1,104],[13,217],[-10,90],[-16,59],[-18,39],[-47,47],[-43,115],[-18,121],[-29,44],[-6,68],[-23,73],[-61,109],[-39,32],[-19,31],[-12,64],[-38,105],[-4,20]],[[41979,83317],[-11,29],[-12,-4],[-4,-20],[-9,-19],[4,-14],[8,-9],[22,2],[2,35]],[[42027,83133],[-12,10],[-1,-31],[30,-39],[6,-47],[16,22],[4,24],[0,9],[-43,52]],[[42184,81309],[74,79]],[[42258,81388],[-20,46],[15,19],[-11,39],[20,71],[19,20],[0,17],[36,63],[-1,110],[-16,56],[4,61],[12,39],[-10,24],[-47,37],[-12,0],[-29,-22],[-24,5],[-17,52],[3,34],[18,41],[20,24],[15,68],[24,34],[-8,57],[12,22],[35,19],[16,41],[42,16],[8,-18],[17,9],[49,-20]],[[42428,82352],[-17,76],[-66,217],[-81,183],[-19,57],[-66,124],[-49,59],[-14,1],[-16,-5],[-7,-95],[-39,-58],[-11,-10],[-16,61],[-14,17],[-19,3],[21,27],[6,31],[-21,61],[-1,56],[-37,62],[-22,45],[-11,57],[-6,52],[16,-14],[8,11],[6,17],[-4,24],[-12,46],[2,114],[-4,26],[12,28],[13,-48],[7,14],[-35,307],[13,139],[6,157],[16,154],[17,137],[1,11],[-24,160],[-31,158],[-18,129],[-12,140],[-12,67],[-3,69],[13,163],[5,31],[-37,73],[-41,35],[-22,35],[-50,132],[-5,37]],[[41236,81002],[13,11],[50,-13],[16,4],[1,29],[30,2],[7,17],[27,19],[0,87],[10,28],[2,28],[44,32],[4,60],[-16,39],[17,24],[37,-6],[46,-30],[28,-51],[14,-71],[18,-21],[41,-7],[22,-14],[17,-18],[11,-20],[7,-27],[1,-34],[15,-21],[29,-9],[15,-20],[2,-32],[24,-31],[48,-29],[33,3],[23,36],[48,36],[79,41],[39,39],[12,8],[14,0],[13,-18],[10,-14],[12,2],[6,21],[1,39],[14,22],[30,3],[12,16],[-4,28],[8,49],[18,70]],[[42483,79134],[-94,51],[-17,13],[-37,49],[-58,193],[-40,73],[-10,34],[0,36],[-15,56],[-52,94],[-20,9],[-14,-15],[-24,32],[-5,25],[-21,39],[-8,64],[25,-6]],[[42093,79881],[-17,47],[-21,101],[9,32],[-9,39],[-23,25],[-1,54],[13,13],[3,62],[23,30],[16,7],[4,27],[-15,65],[-15,15],[-1,36],[-19,41]],[[42040,80475],[-36,22],[-14,19],[-31,69],[-9,-13],[-23,17],[-11,-49],[-40,-35],[-19,-28],[-13,-36],[-55,-35],[-37,-49],[-58,-13],[-32,7],[-34,21],[-32,7],[-27,-13],[-83,0]],[[41266,78221],[22,-14],[96,-8],[121,-35],[72,8],[82,23],[58,60],[49,33],[29,33],[48,35],[102,92],[36,53],[63,73],[63,30],[35,76],[27,35],[67,128],[76,90],[51,90],[98,58],[22,53]],[[42729,81863],[-67,47],[-40,40],[-51,72],[-47,114],[-10,15],[-17,-8],[1,58],[-41,91],[-12,14],[0,-26],[7,-20],[4,-21],[-1,-25],[-11,18],[-24,69],[8,51]],[[42258,81388],[11,13],[155,116],[69,52],[53,35],[19,27],[5,34],[18,34],[32,34],[23,16],[15,-1],[13,18],[8,38],[12,19],[17,0],[12,11],[3,10],[6,19]],[[43109,81099],[-2,8],[-55,145],[-77,150],[-50,78],[-20,8],[-19,-15],[13,41],[-11,37],[-51,110],[-51,73],[-52,125],[-4,3],[-1,1]],[[42184,81309],[20,-39],[19,-39],[38,-22],[45,-79],[3,-39],[18,-18],[20,57],[16,2],[32,-18],[15,28],[24,20],[64,95],[55,32],[17,24],[11,-32],[21,-13],[77,15],[42,-41],[28,-5],[24,-28],[8,-26],[35,-34],[2,-24],[31,-34],[13,4],[27,-15],[24,-2],[25,23],[33,-25],[42,-15],[24,23],[27,2],[45,13]],[[43163,79939],[-22,15],[-64,-13],[-14,11],[-49,-33],[-60,-17],[-16,9],[-62,11],[-99,-26],[-12,-52],[-27,-2],[-33,37],[-7,49],[22,69],[-27,6],[1,47],[8,24],[-21,69],[-26,2],[-16,21],[-18,-21],[8,-52],[-14,-28],[-46,-8],[-14,-20],[-16,22],[-33,15],[-19,19],[-16,-41],[-21,-19],[-53,-9],[2,-62],[23,-17],[11,-60],[66,-133],[0,-30],[-26,-12],[-48,34],[-16,-7],[-50,22],[-35,23],[-11,56],[-15,24],[-48,42],[-16,7],[-23,36],[-32,-17],[-14,9],[-46,-43],[-26,-15]],[[42483,79134],[17,42],[66,12],[28,14],[34,40],[48,23],[61,-7],[68,5],[55,-19],[129,36],[21,17],[27,41],[47,151],[28,168],[14,129],[33,100],[4,53]],[[43198,80442],[-1,21],[2,19],[-6,28],[-1,27],[12,60],[1,48],[-17,58],[-23,152],[-56,244]],[[42040,80475],[16,28],[16,7],[2,23],[19,13],[22,-15],[10,7],[19,-24],[15,40],[1,22],[13,11],[10,-19],[17,-3],[6,-17],[18,24],[10,-30],[24,6],[24,-41],[31,-23],[26,-43],[47,-35],[35,-62],[16,2],[11,-25],[28,-13],[31,36],[40,26],[0,52],[-55,32],[-4,34],[14,56],[-18,26],[-35,88],[39,-19],[19,8],[7,91],[20,32],[29,26],[39,-28],[15,-2],[47,-67],[-9,-35],[27,-43],[36,-6],[8,-41],[26,-6],[21,6],[15,-21],[15,21],[13,-21],[15,21],[33,-4],[10,11],[14,-52],[15,6],[37,-17],[10,2],[37,-28],[18,-96],[37,2],[31,-37],[62,13],[26,50],[37,18]],[[43163,79939],[13,135],[15,59],[1,46],[13,10],[9,127],[-4,51],[-12,67],[0,8]],[[39091,90627],[-21,24],[4,-128],[11,-43],[12,-31],[15,-20],[11,28],[-9,62],[-27,75],[4,33]],[[39061,89895],[-6,7],[-19,-66],[38,-64],[13,26],[-10,50],[-11,35],[-5,12]],[[39061,89674],[-11,103],[-18,25],[-10,0],[-10,22],[14,43],[15,31],[-2,60],[-6,49],[0,49],[19,93],[6,97],[8,35],[4,39],[-12,36],[7,59],[-22,99],[12,144],[-5,135],[-8,71],[-14,56],[-31,72],[-1,72],[-67,67],[-75,94],[-69,111],[-64,137]],[[38721,91473],[-31,-30],[-16,-29],[-26,-12],[-37,27],[13,41],[-5,20],[-35,-39],[1,-49],[28,-56],[19,5],[19,-83],[-3,-85],[33,-54],[14,-39],[30,-14],[-3,-36],[-8,-11],[-31,-25],[-30,-9],[-39,-2],[-22,5],[-4,11],[-24,-3],[-64,-25],[-40,-20],[-47,-81],[-70,-149],[-45,-82],[-22,-15],[-29,-35],[-36,-55],[-25,-27],[-13,3],[-16,-12],[-18,-25],[-17,-7],[-16,13],[-36,-1],[-12,-20],[-22,-51],[-22,-34],[-24,-17],[-16,-1],[-11,6],[-11,-8],[-12,3],[-13,-3],[-20,-22],[-29,-3],[-38,16],[-32,-8],[-25,-30],[-23,-7],[-16,1],[-12,-8],[-11,-14],[-12,3],[-10,6],[-9,-7],[-15,5],[-13,13],[-11,-6],[-13,-35],[-12,-9],[-16,1],[-17,11],[-10,16],[-3,21],[-13,14],[-22,6],[-14,-5],[-3,-17],[-14,-6],[-25,4],[-15,-5],[-26,3]],[[37448,90301],[6,-1],[24,-21],[24,-76],[12,-51],[-3,-42],[-8,-30],[3,-44],[8,-119],[2,-48],[13,-34],[-1,-16]],[[38721,91473],[-10,21],[-87,240],[-80,344],[-97,262],[-38,95],[-52,106],[-70,124],[-93,124],[-102,111],[-36,51],[-36,70],[-9,-29],[8,-48],[-5,-36],[-1,-47],[20,-8],[31,29],[15,-20],[12,-20],[37,-12],[70,-122],[53,-45],[29,-77],[5,-40],[-1,-83],[17,-21],[38,7],[8,-23],[-4,-26],[8,-57],[51,-50],[25,-60],[-9,-155],[10,-6],[21,24],[10,-10],[11,-68],[-5,-35],[-25,-9],[-86,76],[-29,-3],[-4,-60],[-42,-27],[-16,-50],[-5,-34],[-15,-13],[1,58],[4,57],[38,66],[-10,27],[-17,30],[-13,69],[2,89],[-10,-27],[-13,-16],[-5,96],[-25,36],[-8,37],[6,41],[-13,29],[-63,78],[-63,53],[-14,25],[-7,59],[-10,61],[-28,54],[-22,107],[1,46],[7,68],[12,45],[-19,30],[-25,58],[-20,65],[-51,247],[-43,150],[-33,73],[-48,77],[-135,195],[-9,-3],[-19,-16],[-17,-18],[-4,-13],[-2,-18],[2,-43],[1,2],[6,3],[5,-6],[11,-9],[5,-33],[-4,-70],[5,-66],[8,-44],[10,-22],[7,-14],[8,-5],[10,-3],[20,-14],[16,-57],[13,-63],[19,-21],[16,-5],[12,13],[11,22],[13,28],[14,4],[12,-6],[11,-17],[12,-37],[12,-31],[10,-34],[13,-33],[5,-30],[2,-26],[0,-23],[-10,-26],[-8,-33],[-11,-26],[0,-63],[-4,-19],[-5,-3],[-8,11],[-10,26],[-4,27],[-4,20],[-2,25],[-20,23],[-24,21],[-10,37],[-12,36],[-18,12],[-15,17],[-9,13],[-18,-26],[-40,-26],[-38,-44],[-34,-56],[-16,-59],[-14,-64],[-14,-50],[-4,-22],[-14,-10],[-21,-26],[-13,-23],[-20,-14],[-34,-15],[-37,-26],[-45,-62],[-32,-68],[-16,-46],[-17,-31],[-93,-53],[-42,-62],[-17,19],[-25,-19],[-24,-30],[-8,-23],[-10,-24],[-10,-27],[-6,-26],[-25,-46],[-32,-49],[-14,-14],[-8,4],[-7,19],[-4,18],[-12,12],[-15,23],[-16,27],[-20,19],[-23,6],[-16,-1],[-4,-11],[0,-38],[5,-86],[-13,-33],[-19,-35],[-21,-47],[-70,-101],[-94,-144],[-34,-44],[-31,-3],[-29,5],[-27,19],[-20,66],[-8,11],[-51,-2],[-51,-11],[-17,-40],[14,-27],[48,-58],[26,-52],[5,-46],[23,-41],[41,-36],[45,-66],[50,-97],[31,-72],[10,-46],[20,-35],[29,-25],[25,-52],[21,-79],[29,-63],[37,-46],[21,-39],[4,-30],[11,-20],[16,-9],[8,-16],[0,-23],[4,-16],[10,-9],[16,3],[22,15],[13,-3],[5,-20],[-6,-23],[-16,-25],[6,-28],[43,-45],[32,-17],[20,-28],[19,-44],[31,-31],[43,-18],[11,-16],[-1,-22],[8,-15],[26,-11],[14,-21],[2,-30],[8,-29],[14,-26],[16,-10],[17,7],[16,-10],[15,-26],[19,-13],[21,2],[11,-6],[36,-12],[20,-22],[17,-50],[15,-19],[13,11],[22,-17],[31,-44]],[[20552,49945],[-97,0],[-128,0],[-129,0],[-128,0],[-129,0],[-128,0],[-129,0],[-128,0],[-129,0],[-99,0]],[[19328,49945],[3,-15],[-2,-17],[-22,-41],[-10,-39],[-8,-15],[-49,-31],[-7,-16],[-3,-14],[-12,-17],[-16,-43],[-26,-44],[-7,-20],[0,-23],[4,-49],[-1,-18],[-7,-5],[-24,-4],[-11,-9],[-5,-14],[-1,-12],[16,-29],[13,-65],[1,-49],[-14,-101],[2,-16],[8,-22],[0,-26],[-5,-30],[-14,-51],[-22,-172],[-62,-139],[-16,-24],[-13,-6],[-11,0],[-19,21],[-5,3],[-5,-7],[-13,-24],[-12,-30],[-2,-6],[1,-10],[3,-14],[-4,-17],[-7,-17],[-3,-7],[-4,0],[-5,1],[-3,1],[-4,-4],[-10,-19],[-61,-75],[-2,-10],[16,-30],[-3,-21],[-6,-20],[-53,-82],[-44,-24],[-18,-21],[-4,-16],[-7,-51],[-2,-9],[-4,-5],[-24,-23],[-12,-23],[-23,-20],[-8,-19],[-10,-76],[-20,-38],[-10,-36],[-14,-23],[-13,-31],[-20,-28],[-20,-83],[-12,-25],[-14,-7],[-12,9],[-10,13],[-5,15],[-2,23],[-4,5],[-25,1],[-8,-16],[-30,-116],[-12,-32],[-50,-93],[-23,-85],[-8,-2],[-12,11],[-61,2],[-49,-51],[-11,-19],[-10,-31],[26,-63],[1,-24],[-8,-9],[-38,-27],[-36,-44],[-8,16],[-4,30],[-5,11],[-40,23],[-9,-2],[-6,-18],[-1,-25],[6,-33],[-12,-27],[-7,-35],[-19,-48],[10,-40],[-4,-27],[-8,-26],[-16,-34],[-5,-40],[-15,-34],[-7,-8],[-31,-5],[-8,-11],[-11,-50],[-3,-43],[-16,-25],[-11,-6],[-2,-45],[-9,-25],[-34,-46],[-23,-19],[-7,24],[-2,52],[-7,-3],[-65,-53],[-14,-25],[-28,-89],[-10,-7],[-48,-9],[-17,8],[-9,-6],[-13,-24],[-29,-73],[-11,-14],[-12,-5],[0,-41],[-8,-29],[1,-8],[9,-2],[44,0],[2,-15],[-23,-53],[-22,-7],[-6,-12],[-4,-38],[-17,-22],[-8,-38],[0,-312],[0,-316],[0,-318],[0,-322],[0,-325],[0,-328],[0,-331],[0,-334],[0,-339],[0,-341],[0,-346],[0,-349],[0,-353],[0,-356],[0,-361],[0,-365]],[[17538,40834],[189,0],[188,0],[188,0],[189,0],[188,0],[188,0],[189,0],[188,0],[188,0],[189,0],[188,0],[189,0],[188,0],[188,0],[189,0],[188,0]],[[20552,40834],[0,326],[0,323],[0,320],[0,317],[0,314],[0,310],[0,308],[0,305],[0,301],[0,300],[0,296],[0,294],[0,291],[0,289],[0,286],[0,284],[0,281],[0,279],[0,277],[0,274],[0,273],[0,270],[0,268],[0,266],[0,264],[0,262],[0,260],[0,258],[0,257],[0,254],[0,253],[0,251]],[[16503,50118],[-13,19],[-6,-2],[-6,-13],[-19,-128],[8,3],[26,40],[-6,15],[20,38],[5,27],[-9,1]],[[16522,50023],[-4,8],[-47,-51],[-31,-68],[-14,-41],[63,102],[31,34],[2,16]],[[15702,49682],[9,66],[-37,-10],[-13,-13],[-1,-32],[7,-30],[28,11],[7,8]],[[16286,49552],[5,15],[-67,-57],[-29,-34],[-11,-24],[-7,-14],[-34,-37],[-6,-16],[8,-13],[23,8],[38,27],[34,45],[46,100]],[[15537,49497],[-12,3],[-19,-8],[-21,-22],[-38,-56],[-4,-13],[4,-11],[10,-9],[3,-14],[-9,-41],[30,-26],[27,22],[12,26],[14,46],[7,52],[0,36],[-4,15]],[[16038,49184],[-7,6],[-7,-84],[9,-30],[2,-16],[-1,-16],[16,38],[7,26],[2,35],[0,10],[-21,31]],[[15976,49134],[-3,39],[-20,-64],[-30,-135],[4,-32],[14,-45],[12,-3],[19,21],[17,38],[4,14],[11,40],[5,35],[-12,42],[-21,50]],[[15369,48727],[150,94],[150,46],[109,55],[68,17],[24,12],[16,19],[19,46],[32,111],[24,70],[50,121],[40,86],[9,35],[-8,11],[0,20],[30,83],[57,74],[44,36],[94,58],[57,56],[18,39],[25,38],[10,26],[20,96],[38,92],[39,175],[8,-15],[4,-52],[5,-11],[8,-6],[8,20],[7,46],[25,109],[-8,32],[-8,3],[-33,-15],[-12,20],[-16,40],[-11,15],[-6,-7],[-97,-38],[-60,-36],[-79,-57],[-94,-59],[-54,-41],[-45,-41],[-31,-36],[-6,-30],[1,-15],[61,-97],[26,-52],[10,-40],[5,-43],[-4,-52],[-3,4],[-5,50],[-9,44],[-11,35],[-7,12],[-72,17],[-59,-5],[-29,41],[-9,5],[-16,-13],[-36,-56],[-50,-45],[5,-12],[33,-23],[17,-34],[-3,-5],[-12,2],[-10,-7],[-21,-44],[-11,-12],[-25,19],[-10,2],[-10,-30],[14,-67],[0,-16],[-25,25],[-9,-8],[-8,-22],[-7,-9],[-21,4],[-22,-20],[-8,8],[-3,29],[-8,7],[-34,-49],[-8,-1],[-17,37],[-5,3],[-9,-17],[-5,-91],[2,-26],[5,-9],[30,-21],[85,-23],[8,-16],[-65,9],[-16,-13],[-18,-31],[-19,0],[-10,-10],[-11,-23],[-27,-83],[-18,-21],[-32,-13],[-16,-16],[-7,7],[-7,24],[-8,15],[-22,8],[-20,-6],[-15,-23],[-9,-28],[-4,-33],[9,-43],[0,-17],[-4,-19],[-7,-16],[-11,-13],[-5,7],[-1,25],[-6,18],[-18,14],[-14,-24],[-10,-34],[-11,-25],[-63,0],[-29,32],[-13,2],[-15,-7],[-2,-17],[13,-45],[-3,-61],[-4,-16],[-29,-9],[-5,-15],[18,-74],[9,-14],[13,-5],[57,-7],[19,11],[28,45],[-1,-17],[-10,-51],[-2,-31],[19,-35],[-18,-10],[-68,-8],[1,22],[5,32],[-40,28],[-30,4],[-28,-4],[-24,-17],[-39,-66],[-25,-66],[1,-36],[14,-38],[17,-25],[43,-23],[55,-2],[62,30],[155,136]],[[15150,48095],[-5,13],[-12,0],[-19,-13],[-14,-29],[-18,-88],[2,-16],[6,-15],[28,-32],[10,3],[3,23],[17,53],[4,15],[0,61],[-2,25]],[[14214,47719],[-5,2],[-10,-16],[-7,-26],[-4,-68],[3,-28],[3,-10],[26,43],[-6,103]],[[15016,47377],[-23,11],[8,-42],[2,-25],[-4,-23],[-3,-45],[-1,-107],[22,-68],[36,-2],[-1,34],[-15,152],[-7,70],[-6,26],[-8,19]],[[14845,47292],[-10,36],[-40,-86],[-15,-25],[-30,-92],[-5,-39],[1,-23],[6,-8],[9,6],[9,10],[58,102],[16,48],[1,71]],[[14731,46912],[-4,6],[-13,-10],[-12,-21],[-20,-59],[-7,-25],[-4,-40],[4,-7],[9,4],[6,7],[32,97],[9,48]],[[13996,46750],[31,74],[9,66],[-4,77],[-49,30],[-25,-24],[-11,5],[-17,23],[21,10],[28,38],[25,49],[35,9],[47,34],[-35,62],[-6,36],[44,97],[5,25],[14,5],[33,-8],[4,8],[0,20],[-20,57],[2,11],[18,9],[35,0],[8,56],[-32,51],[-60,-65],[-27,-66],[-15,-61],[-19,-34],[-56,-77],[-85,-166],[-22,-24],[-22,-66],[-7,-32],[1,-21],[9,-11],[25,-8],[0,-33],[-97,-57],[-11,-12],[-13,-40],[7,-6],[54,7],[57,-20],[36,-14],[14,-19],[29,-23],[12,1],[30,27]],[[14961,46954],[14,251],[-1,80],[-21,53],[-14,87],[-16,39],[-16,-52],[-1,-87],[-5,-69],[-5,-33],[6,-130],[-7,9],[-18,57],[-21,4],[-37,-64],[-19,-53],[-3,-55],[-24,-57],[-3,-21],[2,-21],[20,-58],[9,-39],[7,-80],[8,-32],[19,5],[34,36],[35,40],[33,53],[24,137]],[[14775,46812],[-1,6],[-32,0],[-8,-8],[-6,-17],[-2,-25],[5,-31],[19,-58],[0,-25],[4,-11],[13,30],[6,27],[2,112]],[[14570,46772],[-6,3],[-20,-10],[-65,-134],[-47,-50],[-31,-66],[-32,-43],[19,-70],[18,8],[60,57],[48,55],[27,36],[57,153],[-4,22],[-24,39]],[[14453,46137],[-9,30],[-21,45],[-14,18],[-7,-9],[-19,-5],[-20,-46],[-16,-18],[-11,-1],[-5,17],[-1,22],[2,27],[-1,13],[-6,-3],[-6,-13],[-6,-23],[-2,-24],[4,-24],[15,-32],[45,-67],[15,-13],[15,3],[24,32],[6,9],[18,62]],[[13724,46000],[28,48],[66,-30],[12,5],[13,19],[14,39],[15,59],[3,65],[-6,23],[-12,26],[-105,102],[-3,10],[2,9],[10,10],[21,-1],[83,-25],[5,-18],[6,-81],[11,-43],[1,-32],[-7,-78],[0,-31],[59,-6],[36,-29],[37,-54],[9,2],[-5,96],[-6,30],[-35,117],[-21,103],[-10,102],[-2,167],[-8,56],[-17,35],[-101,60],[-52,-3],[-47,-55],[-22,-38],[17,-46],[11,-2],[33,9],[25,17],[12,1],[-2,-11],[-72,-87],[-53,-39],[-16,-44],[0,-34],[-4,-20],[-42,-120],[-9,-47],[-5,-68],[0,-69],[10,-112],[5,-12],[17,0],[30,14],[71,11]],[[14245,45713],[-7,1],[-3,-17],[2,-36],[10,-60],[4,-14],[39,11],[6,4],[1,12],[-3,18],[-12,28],[-37,53]],[[14460,45261],[3,65],[-44,110],[-56,55],[-12,-18]],[[14351,45473],[25,-53],[54,-93],[30,-66]],[[14460,45261],[-1,-29],[14,-64],[41,-134],[-1,-39],[-6,-57],[-19,-95],[-6,-51],[-2,-59],[3,-54],[8,-52],[11,-47],[15,-45]],[[14517,44535],[-20,87],[-9,81],[3,93],[13,82],[9,56],[5,38],[2,33],[-1,39],[-14,50],[-45,167]],[[14517,44535],[3,-53],[-2,-54],[-10,-44],[-13,-37],[-35,22],[-60,-34],[-19,-92],[-52,-29],[-28,-66],[-57,-33],[-46,-22],[-35,-38],[-41,-45],[-41,-48],[-31,-37],[-23,3],[-52,5],[-3,-82],[-16,-50],[6,-44],[-29,-23],[-43,-33],[13,-85],[9,-64],[-38,-19],[-54,-27],[18,-58],[14,-47],[-21,-68],[-43,-116],[-32,-82],[-43,-129],[-37,-114],[-31,-94],[-25,-64],[-36,-116],[-47,-131],[-44,-104],[7,-67],[-44,-85],[-39,-85],[-44,-99],[-44,-49],[-31,-34],[-45,-51],[-23,-44],[-10,-39],[-11,-26],[-8,-38],[-6,-43],[-9,-27],[-54,-65],[-17,-41],[-38,-48],[-31,-20],[-11,-15],[-39,-144],[6,-51],[5,-52],[-5,-26],[-63,-110],[-32,-45],[-33,-48],[-68,61],[-70,63],[-49,23],[-68,32],[23,67],[-9,50],[-22,22],[-35,-2],[0,167],[-34,119],[-71,2],[-38,41],[-56,61],[-46,49],[-48,78],[-25,-11],[11,-70],[-18,-119],[-15,-100],[-31,-51],[-52,-86],[-40,-65],[-56,-93],[-39,-65],[-41,-69],[-54,-89],[-22,-117],[-49,-43],[-53,-45],[-4,-8]],[[11795,40833],[290,1],[287,0],[286,0],[287,0],[287,0],[287,0],[287,0],[287,0],[286,0],[287,0],[287,0],[287,0],[287,0],[287,0],[286,0],[287,0]],[[16387,40834],[144,0],[144,0],[144,0],[144,0],[144,0],[144,0],[143,0],[144,0]],[[19328,49945],[-29,0],[-129,0],[-128,0],[-129,0],[-128,0],[-56,0]],[[18729,49945],[-73,0],[-128,0],[-97,0]],[[18431,49945],[-32,0],[-128,0],[-129,0],[-128,0],[-129,0],[-128,0],[-129,0],[-128,0],[-129,0],[-128,0],[-129,0],[-128,0],[-129,0],[-128,0],[-31,0]],[[16698,49945],[-12,-25],[-29,-34],[-12,0],[-12,10],[-7,16],[-7,33]],[[16619,49945],[-11,0]],[[16608,49945],[-9,-46],[2,-20],[10,-25],[-1,-9],[-21,7],[-10,-6],[-4,-13],[2,-53],[-12,-30],[14,-12],[35,-10],[36,-2],[10,-21],[11,-56],[-26,51],[-16,5],[-47,-19],[-31,3],[-4,-11],[1,-11],[7,-12],[4,-38],[8,-109],[10,-39],[3,-22],[-2,-5],[-42,76],[-3,24],[4,20],[-4,43],[-19,13],[-12,-7],[-21,36],[-7,3],[-99,-62],[-10,-9],[-17,-30],[-24,-50],[-7,-43],[9,-37],[9,-18],[10,0],[11,14],[23,59],[9,37],[23,-5],[38,-47],[10,-17],[-38,18],[-17,-2],[-16,-19],[-17,-38],[-9,-44],[0,-137],[5,-27],[19,-20],[12,-33],[-1,-14],[-12,-27],[-16,-22],[-16,-11],[-4,3],[25,61],[-1,22],[-27,59],[-5,17],[0,58],[-4,12],[-22,16],[-25,45],[-42,16],[-40,-5],[-21,-22],[-66,-111],[-24,-46],[-1,-39],[-45,-138],[0,-30],[-15,-43],[-18,-6],[-4,-41],[36,-89],[23,-75],[2,-24],[-1,-37],[-5,-81],[5,-36],[-23,47],[-4,35],[5,35],[-3,39],[-13,56],[-22,58],[-46,29],[-80,-16],[-9,-8],[-6,-20],[-4,-86],[-5,11],[-9,46],[-7,65],[-10,15],[-17,1],[-13,-10],[-9,-22],[-21,-2],[-37,17],[-18,-7],[-21,0],[-43,-20],[-51,-5],[-14,-15],[1,-28],[10,-15],[53,-12],[52,-31],[51,-15],[-2,-15],[-23,-5],[-118,34],[-37,-5],[-6,-5],[-1,-34],[14,-32],[22,-30],[7,-23],[-13,-10],[-21,6],[-10,-18],[11,-71],[-10,-73],[-14,69],[-20,38],[-99,16],[-17,21],[-13,-1],[-63,-37],[-27,-22],[-25,-33],[-45,-75],[-36,-48],[-2,-89],[8,-58],[17,-64],[64,-138],[22,-27],[20,-9],[94,-12],[70,-17],[14,-8],[-104,-11],[-91,7],[-32,22],[-40,89],[-10,38],[-11,27],[-7,1],[-14,-10],[-4,-12],[-6,-29],[-21,-46],[-10,-53],[-5,-79],[1,-35],[11,-45],[30,-88],[-39,2],[4,-75],[15,-81],[37,-48],[37,-35],[34,-46],[59,-30],[20,63],[50,19],[15,28],[18,51],[22,49],[26,47],[8,3],[-12,-40],[-43,-88],[-2,-31],[-11,-33],[-57,-49],[-10,-19],[-10,-49],[-4,-32],[6,-31],[58,-94],[13,-50],[0,-23],[-4,-27],[-13,-46],[-3,0],[4,70],[-2,27],[-7,30],[-9,23],[-13,16],[-124,214],[-12,13],[-46,19],[-24,23],[-13,29],[-20,78],[-28,156],[-33,125],[-27,-162],[-50,-125],[97,-124],[2,-19],[-9,-66],[3,-21],[9,-29],[24,-43],[-1,-4],[-28,15],[-44,97],[-17,31],[-10,4],[-1,-57],[24,-147],[19,-144],[7,-41],[17,-41],[-16,3],[-78,64],[-26,-41],[-22,-209],[-38,-82],[-65,-67],[-64,-32],[-15,-60],[-13,-73],[17,-86],[28,-41],[26,-19],[25,9],[1,31],[-17,86],[22,8],[88,103],[19,8],[36,-40],[21,2],[47,32],[16,39],[46,75],[-7,-44],[-49,-93],[-28,-29],[-49,-6],[-30,15],[-13,-4],[-27,-24],[-22,-39],[-23,-85],[-5,-40],[1,-29],[5,-27],[10,-24],[19,-18],[27,-11],[9,-10],[-36,-49],[-16,0],[-56,72],[-11,5],[-5,-14],[-5,-1],[-16,36],[-13,16],[-46,109],[-7,53],[-3,78],[-5,49],[-8,20],[-53,37],[-31,76],[-37,-66],[-41,-63],[-27,-111],[-49,-20],[-57,-63],[-22,-56],[31,-116],[45,-88],[6,-105],[6,-23],[77,-26],[49,-53],[-51,-4],[-31,8],[-56,36],[-62,-72],[-32,-67],[-10,-57],[11,-48],[1,-49],[6,-66],[6,-29],[13,-37],[27,-25],[23,-77],[10,-53],[48,-161],[18,-70],[33,-97],[66,-153],[-21,9],[-11,13],[-10,-2],[-10,-16],[-10,-34],[-9,-51],[-5,22],[-1,97],[-7,83],[-11,57],[-33,116],[-19,46],[-13,-42],[10,-73],[19,-58],[3,-80],[-18,-95],[-11,-76],[-3,-58],[-1,-54],[3,-48],[7,-52],[12,-57],[-1,-7]],[[26896,43706],[-77,136],[-78,138],[-78,138],[-78,137],[-105,192],[-105,192],[-106,190],[-105,189],[-92,174],[-92,174],[-92,173],[-92,172],[-77,150],[-77,150],[-77,149],[-77,148],[-115,186],[-116,185],[-115,184],[-116,183],[0,339],[0,336],[-1,332],[0,329],[0,327],[0,323],[-1,320],[2,319]],[[25026,49671],[-1,121],[-1,154],[-71,-1],[-129,0],[-128,0],[-129,0],[-128,0],[-37,0]],[[24402,49945],[-92,0],[-128,0],[-129,0],[-128,0],[-129,0],[-128,0],[-129,0],[-128,0],[-129,0],[-128,0]],[[23154,49945],[-11,-312],[-12,-314],[-12,-317],[-12,-319],[-12,-323],[-12,-326],[-12,-329],[-12,-331],[-12,-335],[-12,-339],[-12,-342],[-12,-345],[-12,-349],[-12,-352],[-12,-357],[-12,-360],[0,-222],[0,-225],[0,-226],[0,-227],[0,-229],[0,-231],[0,-232],[0,-234],[0,-235],[0,-238],[0,-239],[0,-241],[0,-243],[-1,-244],[0,-247],[0,-248]],[[22962,40834],[136,0],[136,0],[135,0],[136,0],[135,0],[136,0],[136,0],[135,0],[136,0],[135,0],[136,0],[136,0],[135,0],[136,0],[135,0],[145,-1]],[[25141,40833],[-4,46],[3,450],[-4,197],[-9,108],[-15,59],[-27,18],[34,17],[21,28],[10,41],[9,67],[12,31],[15,-5],[13,6],[12,19],[37,95],[39,27],[2,52],[-15,292],[0,38],[18,-73],[19,-227],[26,-101],[20,-22],[83,-11],[89,25],[33,4],[30,-14],[29,28],[8,28],[8,120],[8,68],[53,241],[25,134],[31,209],[11,59],[64,276],[12,74],[5,57],[-2,40],[-11,61],[-22,83],[-19,63],[-19,44],[-19,32],[-19,21],[1,6],[22,-10],[23,-22],[42,-56],[16,-13],[46,-8],[2,21],[-22,41],[4,4],[33,-33],[69,-48],[274,-156],[64,-14],[92,28],[75,67],[81,85],[85,62],[136,58],[39,27],[79,29]],[[33583,52954],[-41,36],[16,-91],[13,-28],[17,10],[-3,54],[-2,19]],[[34262,50741],[-8,52],[-26,44],[-13,3],[-6,-4],[7,-29],[-1,-49],[22,-7],[8,5],[17,-15]],[[34272,50690],[-35,36],[15,-55],[7,-14],[5,-7],[6,5],[2,35]],[[34406,52051],[-6,24],[-33,9],[-17,44],[-17,34],[-13,10]],[[34320,52172],[-27,6],[-23,14],[-16,-41],[-30,-55],[-2,23],[14,68],[-55,120],[-36,8],[-48,56],[-68,49],[-79,92],[-103,77],[-21,1],[-47,-64],[13,-29],[12,-40],[-11,12],[-8,17],[-28,27],[23,53],[-11,20],[-32,26],[-31,38],[-26,25],[-22,-32],[-59,41],[-50,11],[-10,-21],[-3,-32],[-18,-8],[-32,9],[-13,-17]],[[33473,52626],[-14,-9],[-12,-7],[-11,-6],[-7,10],[-6,13],[-7,9],[-16,-13],[-9,-25],[-16,-25],[-6,-19],[3,-23],[7,-21],[3,-26],[-8,-29],[-7,-17],[-5,-19],[2,-18],[10,-9],[9,-11],[3,-24],[-5,-26],[-6,-3]],[[33375,52328],[-3,-23],[-6,-29],[-16,28],[-20,4],[-32,-38],[-24,-45],[-4,2]],[[33270,52227],[0,-10],[2,-17],[5,-16],[1,-17],[-2,-12],[-1,-9],[2,-12],[3,-24],[-5,-18],[-1,-61],[-1,-116],[-1,-88],[-1,-111],[0,-82],[-1,-114],[-1,-109],[-1,-103],[-39,-59],[-49,-75],[-41,-50],[-23,-6],[-14,7],[-6,20],[-31,21],[-57,23],[-48,35],[-18,0],[-15,-6],[-20,-17],[-13,-26],[-2,-15]],[[32892,51160],[128,-89],[40,-42],[20,-34],[11,-25],[4,-18],[0,-73],[1,-52],[0,-52],[0,-64],[38,0],[41,0],[0,-50],[28,0],[33,0],[52,0],[38,0],[1,22],[10,20],[64,61],[17,-23],[37,-5],[39,-18],[32,14],[8,-46],[24,-24],[42,-18]],[[33600,50644],[22,8],[61,-39],[21,4],[45,51],[109,56],[28,36],[27,116],[18,19],[37,-12],[42,-58],[35,-30],[68,-26],[-13,39],[52,-3],[51,51],[-19,36],[-26,74],[-18,142],[-52,95],[-70,93],[17,22],[21,14],[45,-28],[30,2],[34,18],[-11,72],[-12,49],[7,45],[20,87],[27,19],[11,110],[15,60],[-2,48],[27,31],[5,49],[99,14],[20,19],[69,18],[14,14],[12,27],[-68,59],[8,6]],[[37360,51056],[-14,25],[-15,-1],[1,-22],[19,-41],[9,-30],[1,-18],[3,-14],[14,-16],[12,-28],[-6,52],[-24,93]],[[37262,49510],[-47,42],[-10,17],[-13,9],[-10,-14],[-13,-45],[2,-15],[13,-2],[7,6],[2,14],[6,7],[9,0],[34,-44],[18,-7],[7,9],[-5,23]],[[37401,49395],[22,48],[12,13],[-78,52],[-9,3],[-5,-6],[-1,-48],[3,-38],[6,-5],[18,22],[18,-46],[14,5]],[[36966,48668],[-10,8],[-10,0],[-8,-9],[-2,-15],[9,-30],[24,-16],[17,4],[-1,15],[-9,26],[-10,17]],[[36989,48047],[-22,76],[-15,37],[-15,12],[-30,11],[-63,12],[-27,11],[-4,51],[4,26],[9,21],[12,6],[26,-12],[10,2],[8,11],[6,19],[3,26],[0,34],[-5,41],[-21,95],[-27,53],[-35,42],[-9,17],[-4,19],[-5,62],[-18,50],[-56,126],[-22,28],[0,22],[-9,59],[-16,48],[-47,109],[-12,39],[-5,31],[1,43],[-2,19],[-11,36],[-15,34],[-3,17],[6,30],[6,10],[1,27],[-5,45],[20,-29],[44,-100],[33,-61],[22,-20],[16,-27],[16,-59],[23,-57],[20,-19],[9,11],[8,28],[-1,36],[-11,43],[1,12],[26,-31],[44,-26],[16,3],[33,39],[27,-4],[44,-23],[8,10],[-7,35],[-17,33],[-41,46],[-97,92],[-30,63],[6,-2],[21,-27],[22,-14],[23,-2],[9,8],[-3,18],[-3,48],[-59,94],[14,-3],[68,-43],[41,59],[57,-21],[34,-20],[-1,13],[8,26],[-1,41],[4,6],[16,-14],[3,-15],[-1,-74],[5,-8],[11,12],[7,19],[2,54],[-7,54],[-11,50],[-25,72],[3,31],[-6,34],[6,1],[24,-32],[2,-13],[-2,-29],[3,-15],[20,-33],[34,-39],[12,-5],[4,9],[-1,24],[10,-6],[21,-35],[21,-22],[18,-7],[20,-24],[20,-41],[21,-34],[24,-27],[9,-2],[-3,44],[5,51],[0,43],[5,9],[18,-46],[10,-17],[11,-6],[14,3],[95,-16],[28,11],[33,30],[41,47],[15,42],[2,53],[-4,37],[-29,46],[-26,31],[-16,30],[-4,31],[-6,19],[-18,26],[-78,73],[19,3],[45,-16],[29,-4],[2,11],[-12,21],[-23,21],[-2,10],[1,13],[24,16],[31,-8],[26,11],[-3,18],[-20,57],[-6,36],[-28,30],[-55,47],[-14,19],[3,3],[51,-34],[25,-9],[16,0],[19,-34],[28,-11],[28,21],[42,-58],[15,-7],[26,6],[17,-10],[28,-39],[21,-20],[4,2],[5,16],[2,46],[-5,40],[-7,25],[-23,57],[-14,19],[-13,8],[-23,-3],[-10,9],[-21,44],[-38,45],[-24,17],[15,24],[6,47],[-8,14],[-41,15],[-2,8],[-14,10],[-34,16],[23,7],[42,-11],[5,8],[-6,33],[-11,33],[-50,87],[-1,9],[8,42],[10,32],[12,23],[28,1],[20,-10],[30,-58],[67,-180],[59,-51],[50,-56],[11,12],[6,13],[-2,13],[-25,46],[-13,38],[-34,117],[-13,55],[-7,58],[2,100],[4,17],[10,23],[20,-20],[34,-49],[21,-47],[17,-77],[11,-30],[11,1],[10,16],[3,38],[9,50],[6,51],[-5,56],[-4,31],[-69,227],[7,40],[2,25],[-2,26],[-22,108],[-21,67],[-12,29],[-13,17],[-16,7],[-14,-10],[-13,-26],[-11,-13],[-9,-1],[-18,5],[-46,55],[-10,3],[-7,-8],[-8,-29],[7,-145],[4,-48],[-9,-37],[10,-62],[0,-24],[-6,-9],[-12,6],[-17,31],[-24,57],[-26,51],[-45,69],[-20,14],[-8,-3],[-9,-10],[-12,-29],[0,-26],[5,-35],[19,-83],[37,-123],[30,-88],[6,-38],[-8,-16],[-7,-33],[-12,-95],[-15,-79],[-17,-35],[-44,-39],[-8,9],[-5,54],[-51,153],[-9,66],[-7,24],[-9,17],[-23,20],[6,-35],[24,-79],[-3,-7],[-30,63],[-23,35],[-29,9],[-17,-2],[-16,9],[-71,149],[-2,49],[-13,40],[-34,73],[-19,25],[-25,5],[-24,-13],[-15,3],[-37,22],[-41,10],[-17,-4],[-11,-10],[-21,-28],[-2,-20],[1,-12],[10,-30],[25,-39],[20,-14],[49,-19],[35,-29],[28,-43],[12,-26],[51,-134],[65,-47],[32,-39],[22,-49],[3,-17],[-32,25],[-16,6],[-27,-10],[-12,-16],[-37,5],[-51,-8],[-7,13],[-7,65],[-6,35],[-8,12],[-12,7],[-23,7],[-60,-24],[-11,-13],[-15,-9],[-66,21],[-14,-2],[13,-15],[65,-48],[7,-139],[-4,-22],[-18,19],[-31,20],[-21,-5],[-9,-13],[-9,11],[-22,73],[-12,9],[-19,3],[-40,26],[-80,18],[-15,19],[-54,-7],[-157,-40],[-56,4],[-68,-24],[-12,-11],[-95,5],[-28,-6],[2,-31],[-3,-7],[-28,33],[-24,22],[-31,19],[-99,32],[-53,7],[-31,-22],[-12,-23],[-19,-73],[-12,-91],[0,-17],[6,-31],[21,-45],[94,-116],[75,-119],[32,-62],[31,-22],[50,-52],[2,-6],[-49,7],[-34,-15],[-35,-5],[-67,13],[-67,0],[-1,-26],[32,-50],[67,-86],[6,0],[-20,40],[-6,30],[9,20],[10,12],[38,5],[9,-17],[14,-92],[29,-107],[16,-77],[27,-59],[13,-9],[12,11],[40,14],[41,54],[14,5],[4,-5],[-15,-16],[-12,-25],[-5,-24],[15,-75],[17,-21],[3,-15],[-35,0],[-28,-21],[-9,-34],[2,-60],[9,-36],[23,-47],[28,-31],[16,8],[32,42],[19,-12],[-2,-13],[-30,-68],[-9,-50],[1,-24],[64,-240],[32,-129],[42,-198],[10,-32],[22,-58],[9,-16],[28,0],[18,-7],[-26,-26],[-9,-18],[-1,-20],[7,-20],[10,-14],[33,-32],[24,-53],[14,-62],[-2,-22],[-7,-21],[0,-11],[18,-13],[45,-75],[6,-14],[17,-99],[20,-44],[20,-23],[30,-28],[94,-69],[54,-61],[38,4],[11,42],[52,29],[10,-31],[-13,-37],[11,-15],[43,-13],[8,5],[13,21],[-2,20]],[[37019,47775],[-15,0],[-3,-8],[6,-30],[16,-34],[22,-10],[-6,51],[-20,31]],[[35321,44406],[3,21],[-46,-15],[-16,-13],[-2,-14],[3,-21],[9,-25],[21,-19],[12,10],[24,26],[4,15],[-12,35]],[[35095,43086],[25,27],[7,96],[-47,-5],[-55,-65],[-10,-47],[1,-8],[7,-9],[14,12],[13,-17],[14,-6],[31,22]],[[36495,48118],[-1,-205],[0,-224],[-122,0],[-123,0],[-122,0],[-123,0],[-122,0],[-123,0],[-122,0],[-123,0],[-123,0],[-122,0],[-123,0],[-122,0],[-123,0],[-122,0],[-123,0],[-122,0],[-46,-8],[-8,-7],[-2,-19],[2,-5],[24,2],[12,-9],[-1,-27],[-5,-34],[-24,-124],[-36,-37],[-15,-28],[-3,-29],[-2,-8],[-33,-23],[-2,-6],[2,-15],[13,-32],[19,-32],[17,-18],[26,-17],[87,-30],[30,-17],[4,-14],[-42,-68],[-4,-18],[-1,-22],[5,-90],[-2,-20],[-15,-56],[-20,-52],[-15,-7],[-23,4],[-32,22],[-4,9],[-17,135],[-10,13],[-40,19],[-12,31],[-2,149],[1,56],[24,138],[-8,150],[-9,30],[-30,37],[-3,13],[-16,119],[-4,68],[3,23],[11,33],[0,31],[-65,92],[-28,7],[-30,-93],[-2,-19],[3,-13],[17,-22],[3,-26],[-9,-18],[-32,-44],[-51,-116],[-31,-46],[-31,-32],[-39,-23],[-39,-14],[-16,0],[-7,5],[-23,80],[-12,16],[-12,0],[-18,-16],[-27,-8],[-8,31],[-6,9],[-17,-2],[-29,-20],[-17,-22],[-19,-78],[-15,-16],[-40,-55],[-5,4],[-9,83],[-6,26],[-10,-7],[-8,-15],[-10,-36],[-7,-51],[0,-36],[18,-44],[3,-16],[-10,-190],[3,-22],[15,-42],[3,-51],[5,-27],[9,-16],[3,-29],[-9,-29],[-18,-46],[-12,-15],[-12,-6],[-6,11],[-10,37],[-28,21],[-5,17],[-12,127],[-5,18],[-38,31],[-13,-9],[-12,4],[-16,-4],[-24,-17],[-11,-27],[-1,-62],[5,-69],[8,-48],[17,-73],[1,-88],[9,-116],[-2,-21],[-11,-23],[-14,-7],[-15,-20],[-16,-68],[-11,-32],[-88,-47],[-5,-10],[-1,-17],[7,-77],[-5,-53],[-18,-35],[-68,-158],[-1,-22],[9,-31],[15,-34],[51,-77],[1,-14],[-2,-24],[-20,-90],[-9,-49],[-3,-45],[6,-38],[7,-10],[12,-6],[67,45],[9,-1],[15,-55],[26,-25],[1,-30],[-16,-24],[-2,-15],[-25,-104],[-25,-76],[-13,-55],[-7,-44],[4,-19],[5,-10],[21,-3],[11,9],[41,105],[90,130],[43,27],[22,-42],[-2,-40],[-16,-84],[6,-41],[-17,-109],[9,-53],[-2,-18],[-22,-67],[-1,-15],[8,-14],[12,8],[35,53],[114,206],[25,34],[22,22],[60,28],[5,8],[22,77],[16,30],[20,20],[167,21],[92,-12],[143,6],[130,76],[48,18],[16,-2],[12,-24],[27,-109],[23,-117],[5,-37],[-1,-21],[-22,-83],[6,-45],[7,-22],[24,-36],[81,-81],[15,-28],[-12,-54],[-3,-30],[3,-37],[-1,-25],[-45,-24],[-18,-19],[-16,-26],[-33,-93],[-53,-132],[-2,-19],[3,-34],[11,-21],[23,-24],[8,-14],[-6,-28],[-77,-32],[-15,-22],[-25,-5],[-11,-2],[4,-41],[27,-58],[-4,-14],[-51,-40],[-10,-11],[-1,-9],[0,-30],[-5,-52],[25,-31],[30,-8],[9,-31],[-9,-45],[-48,-142],[-1,-14],[5,-27],[21,-42],[8,-30],[16,-37],[14,-23],[8,-117],[13,-52],[13,-41],[10,-86],[-1,-12],[-10,-34],[-2,-35],[18,-68],[-6,-104],[1,-35],[4,-25],[39,-79],[5,-21],[-1,-27],[-5,-3],[-29,27],[-24,-9],[-14,-6],[-9,-16],[-15,-47],[-12,-16],[-8,-2],[-18,16],[-10,-24],[-16,-56],[-28,-128],[-48,-73],[-5,-21],[2,-20],[7,-23],[83,-172],[22,-36],[53,-56],[3,-21],[-1,-20],[-12,-46],[-48,10],[-7,-10],[-7,-40],[1,-20],[4,-19],[12,-23],[21,-16],[123,-44],[14,-11],[3,-9],[-2,-16],[-10,-25],[-17,-29],[-22,-22],[-19,-7],[-79,46],[-50,37],[-11,2],[-13,-15],[-17,-74],[-98,-42],[-58,-17],[-12,-18],[0,-32],[5,-34],[10,-19],[9,-7],[114,46],[10,-3],[10,-17],[-2,-22],[-33,-44],[-11,-23],[-8,-46],[-4,-56],[0,-122],[5,-40],[23,-54],[14,-17],[-2,-38],[-18,-12],[-81,58],[-19,-21],[-12,-49],[8,-260],[9,-46],[29,-39],[1,-15],[-1,-11],[-6,-10],[-45,-41],[-11,-22],[-5,-25],[2,-14],[29,-13],[22,-26],[18,-18],[9,-30],[-7,-20],[-44,-33],[-17,-40],[0,-12],[9,-16],[61,-38]],[[34230,40541],[35,37],[19,38],[5,55],[-33,73],[-56,55],[-16,24],[10,14],[53,-44],[45,-20],[38,1],[30,87],[4,120],[-17,100],[23,-50],[28,-27],[24,65],[2,53],[13,50],[26,66],[27,58],[-30,61],[-36,37],[8,27],[49,29],[7,28],[-5,39],[7,0],[34,-60],[30,8],[37,129],[-27,74],[-42,34],[-33,14],[-47,-2],[-18,11],[9,24],[44,1],[68,-19],[51,-30],[22,-2],[24,12],[7,11],[-24,21],[-2,7],[9,22],[19,69],[-1,16],[-19,40],[30,9],[40,-19],[13,21],[25,84],[16,85],[-69,116],[-35,24],[-52,61],[-14,49],[-30,62],[19,0],[53,-101],[26,-23],[20,6],[7,17],[-3,28],[17,-4],[72,-59],[30,-11],[39,-4],[4,20],[-24,141],[-42,108],[-75,66],[-27,39],[-33,63],[12,11],[72,-82],[50,-33],[69,-26],[30,4],[55,164],[31,16],[25,-9],[48,47],[18,45],[-4,33],[-16,19],[-9,31],[20,90],[-11,50],[-35,45],[-25,22],[-27,7],[-25,39],[-12,6],[-35,-10],[12,24],[17,13],[29,6],[32,-12],[32,2],[51,28],[21,35],[0,10],[-11,20],[-16,64],[-11,24],[10,17],[25,27],[19,10],[24,-9],[27,12],[89,151],[-4,78],[-13,60],[5,67],[0,83],[-48,23],[-160,-39],[-91,-59],[-5,-18],[26,-39],[-23,-3],[-27,15],[-11,15],[31,62],[84,55],[37,66],[42,6],[12,12],[23,38],[-7,13],[-42,5],[-33,45],[21,26],[75,23],[53,5],[27,26],[-22,28],[-63,34],[-2,49],[47,20],[41,-12],[17,5],[12,120],[8,25],[-45,21],[0,23],[29,18],[50,16],[16,21],[3,36],[10,19],[29,3],[31,-44],[18,-37],[27,14],[2,46],[31,53],[12,9],[9,74],[26,-66],[19,14],[22,3],[-7,64],[-13,51],[17,31],[13,47],[35,64],[-10,31],[-41,65],[-22,104],[-5,36],[-21,59],[-29,57],[18,-6],[65,-105],[39,-36],[85,-19],[20,-30],[31,-12],[19,34],[2,61],[26,19],[26,-20],[24,18],[-14,38],[-78,156],[-22,63],[-6,44],[26,-61],[97,-140],[10,-21],[21,-60],[20,-39],[52,14],[27,28],[12,78],[21,86],[32,94],[85,46],[30,8],[53,-32],[9,-44],[41,-14],[29,5],[10,85],[31,45],[30,38],[30,19],[43,8],[24,41],[0,17],[-25,43],[-23,63],[-41,45],[-57,2],[-79,27],[-3,25],[-18,28],[-42,27],[-23,20],[-37,102],[-22,44],[-26,8],[-37,-4],[-24,9],[-18,18],[-10,28],[-8,10],[-49,28],[-89,77],[-47,2],[-29,-8],[-22,6],[-15,21],[-43,38],[-12,22],[-8,27],[-6,53],[-5,20],[-8,11],[-36,-11],[-40,-35],[8,37],[63,62],[18,35],[-17,29],[-40,47],[-5,25],[17,13],[-7,22],[-22,22],[3,9],[2,9],[55,-32],[49,-69],[31,-70],[16,-19],[63,-26],[37,-31],[53,-55],[58,-81],[63,-106],[81,-83],[98,-60],[72,-31],[46,-1],[2,-10],[-41,-19],[-34,-4],[-42,14],[-13,-33],[1,-14],[14,-24],[35,-22],[174,30],[60,23],[66,194],[15,62],[4,45],[-7,29],[-26,33],[-74,66],[-10,18],[-1,9],[32,13],[10,19],[17,73],[33,-48],[63,-116],[52,-53],[43,-15],[52,-7],[18,1],[6,38],[27,75],[26,20],[48,10],[43,93],[17,65],[16,37],[-2,25],[3,22],[11,31],[6,27],[-3,62],[-25,106],[18,97],[-8,44],[-4,69],[16,46],[5,26],[-14,16],[-96,38],[-38,1],[-10,23],[29,7],[53,-1],[64,23],[29,26],[12,36],[-3,29],[-19,21],[-36,-4],[-34,-20],[2,19],[51,47],[15,24],[28,30],[6,40],[-7,41],[-97,161],[-80,102],[-80,90],[-129,171],[-13,8],[-23,4],[-1,-1]],[[35685,53449],[-41,24],[-35,-2],[-23,-22],[-1,-9],[55,9],[21,-5],[42,-37],[-18,42]],[[33730,53215],[-15,23],[3,-23],[19,-58],[12,-9],[-19,67]],[[35331,52408],[-13,6],[-3,-10],[-19,-28],[-1,-14],[16,-13],[35,6],[-13,36],[-2,17]],[[34406,52051],[47,36],[52,70],[40,-14],[18,2],[46,44],[12,21],[7,19],[23,-4],[33,-16],[59,4],[64,24],[-6,37],[-9,26],[49,-8],[31,26],[11,-12],[8,-17],[61,-45],[79,-94],[10,12],[4,35],[10,58],[30,40],[36,9],[50,-30],[19,26],[24,51],[22,67],[-2,23],[-28,21],[-26,30],[107,12],[11,13],[12,26],[-11,26],[-10,13],[-20,-15],[-35,14],[-31,34],[-34,19],[-21,2],[-24,16],[-21,24],[-23,7],[-70,61],[-72,39],[-75,62],[-77,40],[-79,47],[-17,4],[-20,-2],[-46,46],[-22,-6],[-23,8],[-27,-10],[-18,-19],[14,49],[4,45],[-7,19],[-12,23],[-46,-4],[-18,-16],[-21,-24],[-10,-39],[-23,-27],[-13,38],[0,29],[-17,38],[-20,-66],[-36,24],[-16,71],[8,20],[11,54],[-18,28],[-13,-8],[-27,79],[-33,29],[-34,80],[-41,61],[-11,40],[-67,93],[-26,-2],[-19,3],[-29,38],[-4,78],[-13,-10],[-12,3],[-7,24],[-9,4],[-25,-23],[-30,13],[-23,-18],[-29,-114],[-16,-41],[-27,-12],[-7,24],[-11,24],[-26,-48],[-21,-176],[0,-43],[28,-149],[70,-134],[-22,-5],[-62,94],[7,-23],[10,-23],[21,-38],[31,-36],[42,-21],[29,-3],[20,-20],[29,-35],[5,-19],[-25,22],[-43,21],[11,-28],[11,-15],[227,-243],[46,-40],[91,-51],[13,-34],[-13,-21],[35,19],[-2,28],[-6,20],[-2,35],[3,33],[36,16],[30,62],[-14,-84],[27,-48],[104,-63],[87,-7],[28,-30],[-75,-20],[-88,11],[-54,-22],[-75,14],[-80,-14],[-24,19],[-20,40],[-26,-18],[-12,-3],[-12,-14],[26,-68],[80,-102],[49,-89],[14,-19],[11,-36]],[[35288,52097],[10,6],[40,-34],[22,2],[-1,24],[-35,26],[-16,19],[20,18],[0,13],[-24,29],[-13,32],[10,31],[39,-31],[16,0],[22,7],[20,-9],[12,-15],[68,-119],[4,-15],[-74,25],[-8,-17],[48,-72],[-4,-38],[24,-60],[23,-35],[16,-20],[24,-19],[16,29],[5,51],[41,-7],[39,10],[29,22],[5,12],[0,20],[-9,35],[-16,29],[31,37],[-4,17],[-52,41],[-30,43],[-27,52],[-55,60],[-86,43],[-28,0],[-32,-13],[-32,3],[-32,16],[-31,-2],[-15,9],[-14,-1],[-12,-17],[-26,-48],[-12,-32],[-14,-154],[4,-82],[22,-76],[32,-50],[19,-41],[78,-241],[15,-55],[18,-47],[34,-46],[43,-79],[14,-16],[24,-7],[25,4],[-7,28],[1,28],[29,108],[-1,22],[-15,86],[-30,138],[-7,77],[4,22],[-12,39],[-13,29],[-51,55],[-26,13],[-24,20],[-58,68]],[[17333,29995],[0,447],[0,276],[0,273],[1,270],[0,268],[0,266],[0,263],[77,99],[77,99],[77,99],[77,98],[77,98],[77,98],[77,98],[77,97],[77,96],[77,97],[77,96],[77,96],[77,95],[77,95],[77,95],[77,95],[77,94],[77,94],[77,94],[77,93],[77,93],[77,93],[77,93],[77,92],[77,92],[76,92],[77,91],[77,91],[77,91],[77,91],[77,90],[77,90],[139,2],[138,1],[138,1],[138,2],[87,170],[87,170],[87,168],[87,168],[91,101],[73,38],[131,38],[131,39],[132,38],[131,38],[131,39],[132,38],[131,38],[131,38],[132,38],[131,39],[131,38],[132,38],[131,38],[132,37],[131,38],[131,38],[4,162],[-6,251],[0,259],[0,257],[1,255],[0,253],[0,251],[0,249],[0,246],[0,245],[0,243],[0,241],[0,239],[0,237],[0,236],[0,233],[0,232],[0,231]],[[22962,40834],[-150,0],[-151,0],[-151,0],[-150,0],[-151,0],[-150,0],[-151,0],[-151,0],[-150,0],[-151,0],[-151,0],[-150,0],[-151,0],[-151,0],[-150,0],[-151,0]],[[16387,40834],[-7,-19],[-11,-18],[-34,-1],[-6,-5],[0,-14],[6,-37],[-1,-26],[-32,-95],[-25,-92],[-6,-31],[-6,-96],[-7,-20],[-47,-20],[-20,-71],[-39,-92],[-3,-20],[0,-18],[32,-86],[-1,-33],[-23,-128],[-10,-7],[-57,-1],[-10,13],[-6,23],[-7,63],[-81,16],[-24,17],[-28,34],[-17,0],[-99,-48],[-47,-48],[-11,0],[-9,7],[-8,17],[-14,55],[-18,-7],[-11,-12],[-5,-34],[-14,-2],[-18,9],[-4,12],[0,34],[-6,15],[-12,9],[-17,4],[-51,-19],[-43,37],[-31,-12],[-20,10],[-8,-5],[-9,-26],[0,-36],[-7,-26],[-2,-24],[3,-65],[-11,-101],[-5,-11],[-28,12],[-11,-19],[-1,-10],[4,-12],[17,-33],[3,-70],[-2,-39],[-15,-132],[-13,-34],[-16,-61],[-18,-29],[-22,-18],[-50,1],[-43,-22],[-14,-19],[-17,-36],[-29,-31],[-56,-93],[-8,-69],[-8,-34],[-14,-28],[-34,-24],[-8,-19],[-8,-45],[-32,-64],[-10,-43],[-49,-85],[-16,-5],[-19,10],[-29,44],[-12,5],[-8,-9],[-12,-39],[-8,-8],[-32,-13],[-37,6],[-22,-10],[-14,-18],[-4,-13],[2,-18],[7,-19],[2,-18],[-4,-17],[-15,-59],[1,-29],[16,-53],[-3,-15],[-14,-24],[0,-14],[2,-16],[27,-30],[3,-21],[-7,-24],[-71,-69],[-13,-19],[-1,-21],[-9,-57],[-6,-15],[-23,-25],[-5,-17],[-2,-29],[-4,-21],[-19,-58],[-3,-35],[5,-31],[0,-37],[29,-112],[2,-23],[-6,-10],[-31,-2],[-28,-23],[-13,-68],[-11,-33],[-22,-30],[-24,-48],[-23,-16],[-2,-18],[12,-27],[46,-60],[13,-33],[18,-85],[-3,-38],[-10,-36],[-17,-34],[-9,-31],[-26,-21],[-6,-16],[-5,-31],[-4,-17],[-9,-3],[-31,21],[-12,-9],[-6,-19],[2,-18],[11,-18],[35,-26],[7,-13],[1,-21],[-7,-16],[-43,-16],[-24,-30],[-45,-76],[-45,-33],[-29,-46],[-10,-41],[-17,-20],[-7,-34],[-18,-49],[-3,-17],[8,-29],[0,-28],[-5,-29],[-15,-44],[-9,-15],[-5,-28],[2,-28],[-26,-85],[-48,-51],[-28,-12],[-12,7],[-15,40],[-19,24],[-22,15],[-54,0],[-10,-8],[-2,-21],[4,-21],[18,-70],[4,-29],[-4,-21],[-7,-12],[-42,-36],[-48,-119],[-16,-20],[-65,-68],[-24,-16],[-46,-4],[-10,-15],[-4,-16],[0,-20],[5,-18],[24,-47],[2,-32],[0,-51],[5,-14],[30,-58],[8,-19],[1,-21],[-9,-20],[-41,-22],[-6,-17],[-1,-69],[-12,-17],[-9,4],[-30,16],[-13,-7],[-5,-13],[-1,-21],[3,-25],[50,-63],[9,-22],[8,-47],[59,-117],[23,-109],[22,-69],[0,-35],[-30,-102],[-25,-59],[-34,-61],[-13,-17],[-6,-27],[4,-34],[60,-81],[-1,-27],[-8,-18],[-34,6],[-28,-41],[-11,-6],[-30,37],[-16,31],[-17,50],[-24,17],[-14,-4],[-6,-19],[9,-50],[7,-30],[-1,-19],[-6,-13],[-31,2],[-57,25],[-55,58],[-26,1],[-27,-8],[-10,-14],[-1,-42],[-6,-46],[-9,-29],[-1,-25],[6,-19],[19,-45],[8,-32],[1,-38],[-2,-47],[-3,-43],[-9,-12],[-12,-6],[-33,-4],[-9,-1],[-3,-25],[3,-27],[9,-81],[7,-28],[10,-6],[9,-2],[6,-8],[1,-23],[-2,-44],[3,-33],[4,-35],[-5,-24],[-22,-55],[-12,-23],[-1,-23],[-1,-18],[-8,-32],[-2,-27],[2,-23],[5,-40],[-4,-40],[-16,-52],[-23,-50],[-32,-50],[-7,-35],[-1,-39],[-19,0],[-86,0],[-86,0],[-87,0],[-86,0],[-87,0],[-86,0],[-87,0],[-13,-13],[-7,-26],[-9,-64],[0,-57],[1,-34],[1,-23],[20,-55],[13,-76],[1,-20],[-7,-62],[-4,-26],[-5,-23],[-6,-36],[0,-34],[2,-80],[-11,-78],[-8,-30],[-10,-19],[-40,-63],[-11,-46],[-3,-55],[0,-369],[0,-374],[0,-379],[1,-362]],[[12583,30899],[96,17],[77,66],[153,179],[31,16],[8,-13],[-53,-177],[-8,-18],[-62,-66],[-71,-33],[-6,-13],[-13,-63],[4,-24],[16,-12],[53,1],[32,-10],[4,-25],[-23,-6],[-27,-24],[-32,-43],[-19,-40],[66,-268],[23,27],[35,-62],[62,39],[12,-21],[7,-138],[10,-33],[17,-25],[87,-24],[108,24],[11,-13],[-10,-92],[-1,-37],[6,-83],[7,-45],[13,-22],[50,18],[16,41],[17,70],[17,41],[53,40],[6,28],[-20,106],[-22,56],[-44,146],[-3,37],[69,-65],[76,-91],[66,-50],[55,-9],[39,-29],[24,-50],[17,-52],[34,-166],[23,-28],[94,10],[22,-5],[15,-16],[-3,-21],[-20,-26],[-27,-8],[0,-11],[10,-28],[15,-15],[46,-19],[31,60],[21,4],[69,-67],[106,-178],[42,-49],[37,-9],[31,32],[24,-8],[32,-101],[12,-54],[19,-47],[79,-105],[50,-23],[31,20],[37,43],[30,17],[39,-12],[30,5],[14,-21],[51,-121],[16,-1],[16,36],[26,87],[0,44],[-33,107],[-245,302],[-75,129],[-37,48],[-39,26],[-75,23],[-29,26],[-50,23],[-118,41],[-22,20],[-16,24],[-42,156],[-21,51],[-40,77],[-45,47],[-62,18],[-40,73],[-45,140],[-37,97],[-41,82],[-46,106],[-12,56],[14,74],[7,25],[46,39],[18,-9],[-17,-39],[-38,-57],[-5,-21],[10,-16],[180,43],[39,-43],[13,-37],[-3,-19],[-48,-8],[-11,-35],[-8,-67],[-1,-52],[4,-40],[11,-50],[52,-82],[57,-35],[43,-47],[24,-44],[65,-75],[26,-62],[14,-48],[2,-23],[-12,-18],[10,-41],[47,-37],[21,-3],[66,35],[12,28],[-7,73],[10,-3],[25,-93],[14,-31],[15,-6],[15,12],[15,30],[8,89],[2,148],[3,59],[17,-102],[12,-47],[64,-219],[44,-120],[49,-118],[71,-89],[164,-147],[93,-40],[47,-36],[23,-32],[15,-40],[25,-45],[5,3],[-10,96],[-7,27],[-60,59],[-6,45],[7,69],[10,45],[15,22],[25,-15],[35,-53],[45,-82],[96,-208],[8,-38],[24,-169],[55,-74],[100,-86],[25,-54],[-88,-46],[-18,-32],[-3,-19],[17,-49],[-40,-48],[-15,-30],[1,-88],[12,-62],[26,-61],[15,-11],[39,35],[33,46],[113,212],[46,102],[26,81],[64,249],[28,143],[22,147],[23,106],[22,64],[109,254],[56,106],[47,66],[54,53],[61,38],[42,3],[65,-106],[1,-71],[-28,-118],[-29,-81],[3,-50],[38,-97],[-2,-33],[8,-100],[26,19],[10,-4],[15,-36],[19,-70],[24,-57],[29,-46],[7,-30],[-28,-21],[-18,0],[-12,-10],[-9,-20],[12,-21],[62,-54],[12,-51],[20,-35],[25,-13],[16,14],[18,43],[1,68],[-8,111],[-1,89],[19,209],[17,45],[68,62],[-4,50],[-78,218],[-17,53],[-8,40],[2,34],[14,28],[27,20],[68,8],[19,-19],[133,-6],[24,-16],[20,-42],[30,-104],[34,-32],[11,-29],[21,-124],[10,-146],[10,-61],[15,-38],[21,-12],[52,14],[24,-12],[96,12],[95,-10],[99,26],[64,30],[59,47],[112,111],[45,60],[40,68]],[[20551,24907],[1,431],[0,858],[0,834],[0,810],[0,789],[0,767],[-94,0],[-94,0],[-95,0],[-94,0],[-94,0],[-94,0],[-94,0],[-94,0],[0,125],[-46,106],[-34,1],[-33,1],[-1,-109],[-1,-124],[-165,0],[-159,-1],[-159,0],[-159,0],[-159,0],[-160,0],[-159,0],[-138,-1],[-6,158],[38,89],[38,89],[39,89],[13,63],[-62,0]],[[18486,29882],[-41,-96],[-34,-117],[-5,-30],[-8,-86],[-11,-143],[-4,-88],[10,-54],[9,-11],[175,-105],[309,-115],[282,-79],[128,7],[76,37],[75,17],[137,8],[173,55],[35,-5],[77,-37],[23,-30],[122,4],[24,-18],[22,-33],[-28,-61],[-117,-135],[-311,-242],[-76,-52],[-108,-55],[-63,-8],[-80,31],[-30,-1],[-79,48],[-75,30],[-142,29],[-205,21],[-28,-6],[-42,-37],[-31,-11],[-200,29],[-180,-37],[-204,-375],[-33,-116],[7,-47],[25,-51],[101,-147],[36,-35],[151,-79],[150,-97],[119,-90],[58,-32],[56,-4],[45,-30],[-9,-29],[-37,-33],[1,-46],[19,-23],[74,-24],[79,29],[39,-10],[12,-32],[-11,-25],[-75,-54],[-359,154],[-168,14],[-117,66],[-64,-2],[-76,-66],[-10,-20],[-1,-27],[23,-88],[82,-53],[41,-149],[-44,-2],[-146,32],[-64,-14],[-86,-57],[-25,-69],[-11,-49],[-1,-59],[2,-169],[8,-91],[4,-20],[107,-282],[67,-60],[47,-89],[1,-38],[-11,-38],[-44,-92],[-17,-47],[-10,-45],[7,-71],[25,-97],[73,-158],[175,-318],[89,-135],[86,-73],[120,-156],[308,-261],[275,-264],[102,70],[28,54],[13,47],[11,65],[10,83],[13,179],[2,93],[-3,92],[-6,83],[-10,74],[-21,91],[-31,106],[-66,181],[-7,53],[19,20],[35,-16],[51,-54],[65,-43],[80,-35],[21,42],[14,-8],[23,-68],[4,-45],[-3,-50],[2,-111],[12,-66],[48,-141],[25,-51],[41,-23],[96,15],[90,81],[123,79],[178,197],[56,84],[6,72],[-32,154],[-77,217],[-61,78],[-24,47],[40,33],[26,55],[40,-80],[29,-89],[41,-75],[14,-6],[3,16],[-7,38],[-3,37],[1,37],[5,22],[25,11],[13,-13],[55,-105],[53,-162],[82,-105],[22,-53],[70,-45],[-1,-32],[4,-125],[-25,-53],[-83,-112],[-41,-135],[9,-104],[46,15],[124,11],[26,14],[2,3]],[[17618,23002],[2,7],[78,-162],[47,-9],[33,15],[10,20],[7,32],[3,71],[2,173],[4,22],[11,-10],[17,-41],[85,-257],[36,-71],[24,-21],[104,-39],[70,1],[78,24],[58,37],[95,106],[75,121],[69,129],[230,480],[98,140],[37,80],[17,57],[14,72],[5,68],[-6,62],[-11,43],[-23,37],[-141,156],[-74,48],[-74,68],[-175,241],[-121,114],[-156,221],[-295,351],[-35,70],[-16,51],[-83,394],[-32,90],[-77,92],[-97,23],[-27,26],[-4,134],[-35,221],[-17,148],[-23,392],[-6,39],[-17,72],[-30,77],[-94,90],[-69,47],[-94,38],[-23,-26],[-23,-61],[-23,-6],[-15,10],[-123,267],[-118,107],[-51,97],[-37,45],[-29,14],[-48,-9],[-34,-43],[-32,-68],[-23,-73],[-61,-305],[-26,-105],[-23,-52],[-59,-188],[-17,-38],[-226,-240],[-111,-136],[-26,-48],[-25,-28],[-142,19],[-18,-8],[-5,-20],[16,-71],[7,-46],[2,-44],[-2,-72],[2,-13],[53,-71],[-8,-14],[-7,-28],[-4,-41],[6,-29],[16,-16],[19,-67],[22,-117],[17,-65],[23,-43],[42,-114],[29,-46],[25,-58],[1,-26],[-10,-20],[-4,-45],[5,-139],[0,-71],[4,-61],[10,-48],[11,-32],[105,-102],[6,-29],[1,-34],[-3,-39],[-6,-27],[-16,-22],[-28,-7],[-24,-59],[-6,-28],[9,-81],[48,-130],[16,-64],[51,-292],[93,-182],[26,-197],[70,-211],[0,-29],[-23,-73],[-65,-50],[-31,-77],[-21,-89],[-95,-513],[-16,-39],[-5,-60],[-19,-40],[4,-38],[370,-156],[255,-49],[263,-137],[74,-8],[57,27],[56,71],[75,124],[98,120],[184,175],[115,37],[-46,138],[-6,42],[0,30]],[[17214,20004],[-24,9],[-26,-22],[6,-50],[59,-136],[3,-39],[-1,-32],[-7,-38],[15,-48],[24,-19],[8,18],[2,42],[-5,122],[-7,58],[-11,50],[-15,45],[-21,40]],[[18042,20323],[-86,122],[-61,-12],[-81,-91],[-67,-30],[-23,-30],[-3,-32],[22,-87],[28,-69],[68,-137],[113,-267],[75,-101],[73,-72],[74,-162],[42,-72],[35,-5],[37,31],[4,44],[-38,220],[-27,88],[-53,226],[-101,375],[-31,61]],[[20551,18544],[0,476]],[[20551,19020],[-60,-91],[-13,-34],[-12,-54],[-9,-73],[2,-57],[12,-40],[80,-127]],[[20551,20400],[0,207],[0,1011],[0,67]],[[20551,21685],[-52,20],[-64,48],[-47,61],[-24,50],[-38,118],[-58,88],[-104,96],[-133,149],[-238,152],[-150,26],[-150,-50],[-48,-41],[-49,-64],[-102,-151],[-28,-55],[-33,-120],[19,-80],[55,-92],[81,-85],[162,-114],[147,-184],[52,-35],[142,-28],[72,17],[51,-10],[34,-25],[51,-67],[74,-134],[54,-125],[14,-59],[-19,-56],[-26,-7],[-88,129],[-44,44],[-49,3],[-66,44],[-64,18],[-13,-2],[-67,-123],[-36,-22],[-16,13],[-16,33],[-29,91],[-17,33],[-28,23],[-117,27],[-113,46],[-25,-28],[-15,-53],[-3,-32],[-2,-108],[-7,-44],[10,-90],[12,-70],[16,-47],[77,-142],[11,-37],[-37,8],[-87,69],[-11,-24],[-21,-79],[-9,-8],[-12,33],[-6,46],[-15,191],[-13,97],[-35,-20],[-44,-58],[-16,-8],[-9,18],[3,33],[44,162],[0,57],[-29,98],[-122,163],[-49,44],[-17,-17],[-16,-45],[-13,-72],[-32,-98],[-19,-22],[-21,-3],[-20,20],[-18,44],[-11,46],[-10,85],[-23,65],[-14,11],[-124,-135],[-101,-242],[-110,38],[-49,-8],[-150,-89],[-19,-56],[-10,-71],[1,-40],[6,-40],[19,-81],[37,-122],[16,-40],[24,-32],[31,-26],[79,-14],[205,-5],[40,-19],[224,-239],[26,-39],[32,-77],[8,-32],[-2,-21],[-275,191],[-118,41],[-180,-31],[-34,-30],[-8,-54],[38,-141],[20,-53],[51,-50],[124,-72],[167,-63],[108,-1],[92,-50],[55,-58],[-184,3],[-222,27],[-32,-18],[-63,-76],[-4,-56],[26,-67],[9,-49],[-18,-113],[6,-44],[41,-94],[74,-102],[45,-15],[88,35],[249,36],[49,-13],[-31,-44],[-43,-33],[-193,-57],[-40,-26],[-8,-35],[-3,-52],[2,-68],[14,-71],[60,-147],[176,-123],[69,-16],[70,8],[71,55],[32,47],[16,59],[8,54],[1,94],[3,37],[13,61],[41,144],[30,45],[138,-83],[58,-19],[58,26],[85,86],[110,259],[141,261],[-1,56],[-54,87],[-10,37],[7,26],[54,17],[51,-13],[48,19],[11,23],[18,94],[24,166],[30,123],[33,81],[34,41],[49,3],[49,-24],[81,8],[137,31]],[[19479,18001],[-46,68],[-313,-101],[-17,-32],[-8,-43],[56,-117],[69,-52],[159,-41],[56,47],[36,53],[21,47],[9,87],[-22,84]],[[18879,16680],[23,85],[1,34],[-11,36],[-35,57],[-178,189],[-34,88],[13,76],[64,153],[65,129],[14,63],[-31,65],[-59,-21],[-22,6],[-21,30],[5,57],[66,188],[21,100],[0,52],[-12,51],[-27,69],[-44,87],[-74,70],[-160,94],[-6,72],[1,55],[-4,134],[-5,61],[-19,104],[-14,48],[-24,33],[-34,18],[-44,0],[-72,-89],[-33,-57],[-46,-123],[-8,-83],[4,-102],[12,-158],[20,-163],[28,-168],[8,-105],[-11,-41],[-19,-2],[-59,68],[-38,25],[-30,49],[-20,75],[-12,80],[-7,153],[-11,83],[-32,46],[-47,-1],[-19,26],[-8,55],[6,45],[47,94],[6,105],[-6,63],[-51,116],[-12,39],[-31,180],[-12,46],[-26,41],[-26,-5],[-24,-65],[-36,-125],[-24,-108],[-13,-90],[-10,-40],[-17,27],[-21,94],[-1,73],[5,108],[-1,66],[-30,78],[4,35],[53,95],[7,42],[0,66],[-3,30],[-22,-5],[-17,76],[-21,60],[-53,111],[-75,13],[-62,53],[-13,-1],[-15,-87],[-17,-173],[-15,-99],[-22,-50],[-27,-199],[-13,-64],[-13,-26],[-10,-7],[-16,39],[-36,284],[-58,72],[-33,13],[-32,-8],[-80,-77],[-65,-29],[-45,33],[-74,115],[-29,31],[-40,-14],[-18,-43],[-15,-71],[-1,-43],[11,-16],[19,-82],[-1,-34],[-18,-48],[0,-37],[6,-25],[-1,-19],[-10,-10],[-18,10],[-66,55],[8,-60],[31,-126],[77,-252],[29,-75],[17,-23],[227,-81],[16,-25],[107,-346],[31,-79],[32,-64],[154,-211],[14,-49],[24,-148],[15,-37],[33,-56],[111,-303],[102,-220],[51,-138],[70,-139],[82,-60],[245,-106],[177,139],[42,9],[21,-39],[18,-64],[27,26],[66,20],[14,-15],[28,-73],[-19,-40],[-80,-74],[-4,-37],[1,-36],[28,-85],[34,-55],[98,-42],[44,11],[47,59],[60,122],[138,213]],[[19397,15814],[-82,76],[-55,-2],[-97,-107],[-112,-331],[-15,-119],[42,-22],[31,-36],[19,-52],[36,-57],[83,-86],[10,33],[-2,70],[7,65],[30,14],[28,47],[57,142],[39,28],[14,31],[8,47],[24,83],[-1,43],[-32,85],[-32,48]],[[20551,15050],[0,369]],[[20551,15419],[-59,55],[-166,108],[-35,52],[3,31],[13,39],[28,49],[129,-11],[31,21],[11,32],[7,46],[4,60],[0,203],[-7,117],[-18,105],[-52,75],[-94,98],[-63,44],[-51,-16],[-50,11],[-218,184],[-68,1],[-59,-45],[-82,-174],[-85,-68],[-36,-79],[-36,-43],[-10,-63],[-3,-48],[6,-43],[15,-40],[6,-33],[-15,-98],[-6,-94],[-25,-135],[-4,-78],[1,-51],[4,-55],[16,-99],[8,-20],[50,-16],[66,-51],[150,-149],[331,-188],[101,18],[44,-37],[81,-16],[137,32]],[[20551,13634],[0,874]],[[20551,14508],[-6,-2],[-81,58],[-38,7],[-102,-37],[-25,-27],[-56,-107],[-43,-44],[-18,23],[-22,94],[-41,116],[-24,30],[-73,-20],[-112,-196],[-129,59],[-133,114],[-52,21],[-15,-33],[-21,-86],[3,-43],[40,-132],[88,-139],[65,-79],[129,-115],[152,-64],[57,-69],[36,-99],[99,-156],[59,-65],[78,-56],[63,3],[81,127],[41,43]],[[29779,47727],[-13,5],[-28,-6],[-23,-20],[-14,-24],[93,-69],[19,9],[0,12],[-14,37],[-4,24],[-6,19],[-10,13]],[[29373,47106],[-22,10],[-62,-21],[-26,-15],[-77,-57],[-147,-84],[-50,-42],[-10,-31],[26,-65],[15,-27],[16,-16],[155,-30],[60,14],[71,134],[41,91],[16,72],[0,35],[-6,32]],[[29612,46664],[-1,24],[-19,-5],[-11,-14],[-8,-21],[-2,-16],[7,-16],[23,9],[11,39]],[[29947,44316],[-15,12],[-11,-1],[2,-29],[15,-57],[8,-49],[2,-43],[7,-38],[11,-32],[12,-16],[16,1],[4,104],[-5,49],[-11,41],[-16,33],[-19,25]],[[29600,44263],[-15,6],[-19,-12],[10,-63],[16,-26],[39,-27],[7,-16],[12,-8],[19,0],[20,-23],[23,-48],[8,-6],[-16,69],[-17,51],[-87,103]],[[29914,44212],[-25,87],[-20,83],[-27,156],[-16,5],[-14,-37],[40,-183],[2,-20],[-2,-18],[-12,-27],[-12,32],[-56,206],[-15,32],[-12,19],[-9,3],[-24,-4],[-48,58],[81,-244],[0,-18],[-15,-12],[-6,7],[-65,154],[-37,59],[-25,-18],[-6,-16],[2,-18],[63,-156],[59,-111],[24,-71],[10,-66],[5,-49],[-1,-54],[3,-15],[4,3],[3,20],[1,57],[-13,116],[-11,57],[-12,47],[5,10],[23,-27],[20,-56],[16,-86],[11,-74],[9,-119],[4,4],[4,24],[11,16],[17,10],[9,15],[7,40],[7,18],[25,15],[10,12],[7,44],[-1,22],[3,15],[8,7],[-9,46]],[[29738,43875],[-10,11],[-7,-1],[8,-77],[-10,-27],[0,-14],[4,-13],[5,-3],[12,24],[7,25],[2,25],[0,24],[-4,17],[-7,9]],[[29633,43773],[-8,15],[-15,-17],[0,-44],[14,-34],[11,2],[10,18],[-2,23],[-10,37]],[[29679,43121],[-5,7],[-13,-6],[-5,58],[-5,6],[-9,-36],[7,-31],[-1,-21],[2,-16],[13,-35],[8,-8],[5,3],[4,44],[-1,35]],[[32860,41737],[-18,68],[-25,-9],[-8,14],[-7,1],[11,-63],[1,-43],[-5,-43],[8,-22],[32,-1],[1,50],[4,18],[7,9],[-1,21]],[[29507,41191],[-9,3],[-3,-11],[8,-39],[13,-5],[14,-43],[13,15],[-5,24],[-17,37],[-14,19]],[[29574,41053],[-31,6],[13,-56],[12,-27],[13,-18],[25,-6],[18,23],[-16,41],[-34,37]],[[34292,40483],[-10,66],[-35,-24],[-54,-51],[-22,-33],[-7,-37],[-1,-51],[16,-8],[41,-5],[35,71],[10,11],[27,61]],[[33139,40604],[-27,8],[-12,-21],[-1,-58],[9,-44],[31,-92],[28,-103],[16,-25],[33,17],[20,29],[20,50],[8,38],[-7,56],[-24,50],[-27,34],[-67,61]],[[30036,40132],[-42,11],[0,-14],[17,-40],[65,-35],[47,-10],[-11,34],[-28,27],[-48,27]],[[34164,39504],[-7,11],[-7,-2],[-22,-54],[-31,-21],[-11,-21],[-91,-110],[-10,-48],[-1,-39],[30,-19],[61,-17],[52,0],[50,23],[10,25],[26,45],[-6,54],[-2,67],[-11,33],[-16,26],[-14,47]],[[25662,39024],[-12,2],[-28,-51],[-6,-26],[36,-17],[25,46],[-2,22],[-13,24]],[[34105,38989],[6,9],[8,-11],[7,9],[4,29],[7,20],[17,25],[6,19],[0,18],[-15,29],[-9,1],[-72,-66],[-20,-67],[-1,-34],[7,-31],[11,-15],[15,1],[17,16],[12,48]],[[29730,38445],[24,28],[39,93],[15,47],[5,63],[-11,85],[-5,79],[-15,59],[-27,74],[-24,88],[-21,99],[-17,65],[-14,32],[-15,17],[-15,1],[-25,-35],[-32,-73],[-27,-45],[-34,-30],[-18,-42],[-3,-41],[-1,-132],[1,-67],[5,-55],[7,-44],[17,-62],[48,-133],[28,-52],[18,-12],[47,10],[19,-3],[15,-16],[16,2]],[[34167,38293],[58,11],[35,-4],[15,17],[14,50],[-18,71],[-21,28],[-33,8],[-54,-24],[-19,-15],[-17,-38],[8,-28],[26,-9],[5,-11],[-7,-22],[0,-18],[8,-16]],[[31401,38231],[-16,9],[-60,-13],[-74,-48],[-38,-46],[2,-14],[16,-7],[19,7],[32,32],[87,16],[27,18],[9,28],[-4,18]],[[32505,38303],[-21,4],[-40,-7],[-44,-22],[-24,-24],[-22,-54],[-4,-58],[-40,-87],[-46,-29],[-25,-61],[26,-4],[36,13],[54,26],[49,35],[70,76],[22,71],[23,52],[7,39],[-6,17],[-15,13]],[[28990,37881],[12,29],[4,44],[-5,59],[-8,54],[-10,48],[-27,81],[-83,138],[-31,75],[-23,45],[-135,198],[-16,10],[-18,-4],[-37,-30],[-38,-5],[-97,80],[-4,-14],[-5,-85],[-9,-48],[-43,-102],[-3,-23],[1,-30],[3,-23],[48,-95],[110,-350],[26,-18],[54,39],[25,13],[18,-2],[79,-74],[74,9],[68,-43],[31,-1],[25,8],[14,17]],[[30233,37334],[26,46],[26,-3],[15,37],[35,116],[3,19],[-1,37],[-19,48],[-19,25],[-40,37],[-46,16],[-24,-25],[-70,-107],[-64,-126],[-21,-70],[9,-29],[27,-20],[55,-21],[91,11],[17,9]],[[30594,37416],[-31,11],[-42,-24],[-41,-46],[-93,-149],[70,-100],[112,116],[33,75],[-8,117]],[[30304,36772],[-22,51],[-65,-18],[-8,-15],[-3,-19],[11,-23],[66,-23],[28,-2],[15,8],[1,9],[-23,32]],[[28111,35359],[10,14],[13,-8],[21,-56],[48,-163],[14,-15],[20,2],[70,105],[26,58],[14,81],[15,32],[56,41],[53,14],[70,42],[25,32],[56,154],[6,9],[64,62],[97,139],[25,21],[95,46],[34,34],[32,51],[37,95],[43,147],[33,235],[3,47],[-4,27],[-12,29],[-55,96],[4,16],[52,-6],[115,-59],[69,42],[25,7],[5,-3],[26,-73],[27,12],[41,71],[26,57],[12,44],[-3,24],[-27,9],[65,41],[57,66],[-12,43],[-61,96],[-62,83],[-73,124],[-18,19],[-10,1],[-40,-23],[-58,-59],[-179,-135],[-55,-29],[-70,-17],[-10,-32],[-16,-206],[-32,-37],[-108,-43],[-31,-25],[-2,-41],[7,-72],[-15,-35],[-36,2],[-36,15],[-57,48],[-27,45],[-10,49],[-6,104],[-7,49],[-20,64],[-89,165],[-36,50],[-36,14],[-14,16],[-24,61],[-36,148],[-14,43],[-24,43],[-49,66],[-50,53],[-83,61],[-47,21],[-31,-21],[-21,-139],[-45,-413],[-7,-29],[-9,-17],[-11,-7],[-150,54],[-83,-6],[-81,93],[-21,7],[-41,-3],[-30,-15],[-8,-10],[-5,-40],[2,-43],[10,-46],[37,-124],[30,-78],[14,-24],[140,-139],[34,-45],[17,-48],[0,-48],[-7,-63],[-24,-152],[-6,-140],[0,-69],[9,-108],[35,-262],[12,-128],[23,-463],[11,-134],[18,-123],[16,-74],[45,-149],[35,-59],[43,-42],[10,5],[8,17],[16,64],[61,58],[19,56],[14,63],[8,81],[-8,36],[-29,53],[-5,22],[1,19],[55,84],[42,201]],[[28184,34999],[-15,13],[-17,-7],[-15,-33],[-11,-60],[-19,-45],[-42,-56],[-8,-21],[-12,-76],[-2,-75],[-9,-68],[-1,-34],[8,-50],[36,-12],[28,20],[5,13],[10,30],[6,35],[33,97],[20,77],[27,157],[0,30],[-7,32],[-15,33]],[[28470,34742],[39,46],[39,26],[62,14],[9,9],[0,22],[-9,33],[-21,43],[-15,1],[-34,-30],[-13,-16],[-14,-34],[-7,-3],[-9,12],[-2,15],[4,18],[-6,6],[-41,-13],[-7,-11],[3,-37],[30,-54],[-26,-16],[-8,-20],[-38,34],[-21,8],[-33,-24],[-3,-123],[-4,-45],[-16,-30],[-9,-33],[-14,-24],[-30,-25],[-24,-62],[-5,-28],[3,-21],[15,-29],[86,63],[52,59],[49,72],[26,53],[2,35],[-6,35],[-16,34],[12,40]],[[28652,34171],[30,15],[23,-2],[5,18],[-24,57],[-15,11],[-27,-41],[-19,-51],[-6,-31],[-2,-33],[5,-6],[30,63]],[[21127,33302],[38,10],[48,-2],[-8,94],[-19,60],[-14,17],[-7,-32],[-28,-76],[-10,-71]],[[34812,33240],[-37,33],[-20,-41],[14,-12],[21,-49],[28,-44],[11,-35],[47,-17],[16,2],[6,13],[-26,54],[-60,96]],[[21185,32814],[-15,103],[-6,-9],[-10,-50],[-21,-23],[-24,-56],[0,-118],[9,-54],[-2,-76],[24,-46],[17,54],[5,91],[-4,45],[17,46],[8,12],[5,37],[-3,44]],[[20803,32084],[34,13],[25,-10],[19,52],[7,52],[-3,17],[-8,8],[-53,-58],[-19,-35],[-7,-30],[5,-9]],[[31515,32336],[-146,1],[-80,-9],[-32,-19],[-28,-30],[-32,-97],[-20,-101],[-1,-43],[5,-38],[7,-24],[99,-34],[81,42],[69,50],[90,8],[27,19],[10,14],[8,25],[10,116],[1,61],[-3,47],[-65,12]],[[20756,32073],[-11,5],[-42,-76],[9,-65],[38,66],[6,42],[0,28]],[[27605,32396],[-12,1],[-21,-19],[-47,-76],[-9,-33],[-5,-38],[0,-45],[4,-46],[15,-91],[-28,-74],[-6,-41],[3,-24],[15,-56],[4,-36],[16,-50],[39,-98],[40,23],[36,80],[9,54],[-3,57],[3,83],[9,109],[3,78],[-5,49],[-15,91],[-13,42],[-17,40],[-15,20]],[[30896,31648],[158,114],[15,41],[7,37],[5,41],[0,85],[-3,33],[-15,81],[-1,26],[12,271],[-1,146],[-11,122],[-23,97],[-34,73],[-26,42],[-114,103],[-81,27],[-86,5],[-108,27],[-50,-6],[-26,-12],[-18,-20],[-22,-65],[-24,-110],[-20,-125],[-24,-221],[-1,-26],[23,-182],[31,-123],[55,-183],[62,-180],[15,-30],[28,-32],[70,-51],[58,13],[25,-7],[32,-24],[35,-5],[57,18]],[[29900,31815],[-25,14],[-33,-68],[0,-38],[6,-91],[61,-23],[25,55],[12,54],[-46,97]],[[22197,31540],[-16,5],[-32,-21],[-45,-46],[-35,-49],[-23,-52],[-3,-36],[18,-20],[26,-10],[62,7],[30,20],[39,75],[8,43],[1,28],[-5,23],[-25,33]],[[31136,31614],[-24,9],[-34,-81],[-71,-91],[-28,-66],[-1,-32],[3,-51],[7,-62],[25,-67],[27,-11],[38,15],[27,48],[30,135],[20,65],[6,48],[-10,22],[1,22],[4,14],[-1,25],[-8,36],[-11,22]],[[23009,31305],[-12,2],[-17,-23],[-97,-80],[-13,-24],[11,-33],[36,-44],[24,-44],[18,-68],[56,35],[21,32],[7,28],[4,39],[-3,94],[-19,20],[-16,66]],[[23500,31016],[-9,42],[-12,12],[-24,49],[-9,6],[-14,-31],[-11,-51],[-5,-8],[-7,2],[-16,33],[-7,-1],[-6,-22],[-3,-43],[0,-65],[8,-101],[0,-37],[-4,-28],[4,-26],[10,-23],[14,-11],[32,9],[25,41],[13,53],[24,42],[9,29],[-12,129]],[[23567,30742],[-7,79],[-37,-21],[-16,-29],[-14,-65],[-2,-16],[3,-25],[15,-57],[11,-21],[24,24],[11,33],[9,53],[3,45]],[[26431,30464],[-25,16],[-15,-56],[-13,-12],[-5,-37],[-26,-7],[2,-59],[7,-29],[24,-22],[19,8],[18,59],[9,46],[7,59],[-2,34]],[[29831,30965],[-21,9],[-24,-25],[-9,-43],[-5,-44],[5,-22],[11,-21],[15,-49],[18,-76],[30,-51],[64,-47],[10,-17],[29,-134],[9,-23],[33,-13],[4,-18],[-12,-33],[0,-34],[12,-35],[16,-27],[42,-25],[38,4],[9,10],[9,24],[11,63],[2,14],[-18,56],[-45,86],[-29,71],[-5,23],[-3,30],[-11,36],[-33,88],[-22,84],[-22,46],[-61,43],[-47,50]],[[26519,30197],[7,84],[-27,113],[-9,21],[-10,7],[-10,-14],[-31,-89],[-8,-56],[11,-28],[24,-34],[16,-17],[21,14],[8,-24],[8,23]],[[30499,30568],[-38,15],[-29,-8],[-18,-31],[-14,-43],[-17,-108],[6,-51],[2,-91],[4,-34],[6,-17],[40,-32],[23,4],[35,35],[75,10],[18,32],[5,19],[0,24],[-6,28],[-37,83],[-17,56],[-13,67],[-25,42]],[[23213,30226],[-25,12],[-5,-3],[3,-37],[-2,-18],[-7,-13],[22,-30],[3,-23],[-7,-18],[-30,-33],[-8,-30],[1,-27],[12,-23],[21,3],[44,45],[20,62],[9,45],[-14,7],[-12,19],[-12,39],[-13,23]],[[24918,29986],[40,92],[-1,44],[-5,74],[-11,56],[-18,38],[-25,19],[-32,1],[-13,-16],[10,-57],[8,-17],[1,-50],[-5,-84],[-7,-51],[-18,-30],[-12,-1],[-4,27],[6,56],[-4,72],[-14,88],[-11,41],[-19,-21],[-9,-34],[3,-55],[-5,-50],[5,-53],[12,-80],[19,-53],[23,-27],[28,2],[31,31],[27,38]],[[33235,30031],[-7,8],[-79,-62],[-6,-50],[39,-55],[31,-30],[24,-4],[24,9],[23,60],[-28,54],[-21,70]],[[30187,29792],[16,69],[2,36],[-21,42],[-81,77],[-49,67],[-25,15],[-33,-15],[-40,31],[-16,-4],[18,-55],[64,-158],[53,-16],[17,-33],[15,10],[8,-27],[2,-41],[18,-31],[17,0],[35,33]],[[29765,29692],[12,79],[8,25],[-12,37],[-45,75],[-99,30],[-50,-35],[23,107],[5,45],[-7,18],[-21,-5],[-34,-30],[-20,-37],[-6,-42],[-7,-9],[-9,24],[-9,-6],[-21,-63],[-15,-23],[-99,-37],[-5,-17],[5,-29],[15,-42],[23,-14],[56,19],[4,-11],[4,-52],[4,-21],[39,6],[25,-12],[13,27],[14,63],[19,-12],[27,9],[30,-23],[47,-55],[37,-20],[49,31]],[[24337,29892],[10,16],[17,-14],[14,-45],[8,-8],[13,8],[42,81],[32,83],[34,60],[55,53],[119,172],[35,116],[37,178],[33,136],[29,94],[31,74],[50,83],[45,-61],[19,-15],[16,25],[16,62],[-8,28],[-20,35],[-32,41],[-45,3],[-21,12],[-35,65],[-28,78],[-39,26],[-73,130],[-41,48],[-59,13],[-124,-101],[-77,14],[-62,-21],[-71,-107],[-54,-61],[-105,-88],[-7,-13],[-5,-30],[-2,-47],[-5,-31],[-7,-16],[-17,2],[-17,31],[-32,26],[-50,-6],[-21,-18],[-17,-29],[-8,-34],[-2,-39],[-4,-30],[-8,-21],[-18,-1],[-28,20],[-11,25],[6,30],[-5,17],[-49,0],[-20,-17],[-37,-55],[-16,-55],[-21,-100],[2,-26],[13,-61],[18,-42],[111,-25],[53,-24],[56,-69],[67,-120],[14,-36],[2,-26],[-5,-29],[-21,-69],[-7,-48],[7,-22],[26,-3],[-14,-26],[-12,-39],[-4,-24],[1,-38],[21,-8],[26,19],[50,110],[21,21],[34,17],[-37,-76],[-38,-160],[-4,-55],[1,-31],[10,-86],[9,-35],[11,-24],[36,-50],[58,-35],[30,-4],[30,28],[26,54],[58,88],[9,36],[-1,17],[-23,24],[-3,22],[9,33]],[[27510,29239],[34,11],[33,-13],[23,13],[15,40],[10,41],[5,43],[-13,30],[-53,26],[-37,-13],[-39,-35],[-18,16],[-44,-26],[-22,-36],[-18,-50],[0,-31],[47,-36],[18,-27],[59,47]],[[23473,28698],[-4,11],[-65,-53],[-25,-32],[-9,-23],[-5,-47],[-4,-72],[13,-35],[30,3],[31,27],[47,79],[-13,23],[-1,52],[6,49],[-1,18]],[[17333,29995],[117,200],[46,54],[87,52],[296,115],[38,30],[78,120],[53,70],[64,67],[80,57],[157,86],[25,29],[29,8],[32,-11],[143,49],[38,-3],[27,10],[34,35],[49,13],[-2,-24],[-56,-136],[2,-22],[23,-1],[70,23],[16,-39],[23,1],[53,18],[57,42],[61,65],[74,56],[113,137],[62,114],[59,140],[32,98],[6,54],[12,27],[19,-1],[7,21],[-17,120],[-10,30],[-12,21],[-54,24],[-148,-28],[-26,96],[-83,81],[-15,35],[-3,26],[6,84],[-11,26],[-68,95],[-2,27],[44,39],[47,66],[37,16],[46,-9],[59,23],[70,56],[49,25],[28,-5],[37,10],[48,26],[63,8],[141,-2],[42,19],[59,9],[114,-3],[20,-4],[36,-43],[24,-15],[41,-1],[117,-32],[41,1],[38,-25],[48,-49],[30,-9],[11,31],[20,13],[30,-4],[55,-53],[131,-154],[47,0],[34,-48],[9,-1],[9,20],[32,113],[10,18],[22,10],[21,58],[23,86],[16,24],[123,4],[43,24],[13,24],[13,68],[8,131],[5,48],[18,70],[12,20],[11,-20],[30,-181],[11,-29],[20,10],[6,9],[31,134],[43,100],[108,182],[18,66],[6,49],[-6,44],[-19,39],[-29,31],[-40,24],[-37,-9],[-35,-40],[-11,-2],[13,35],[71,149],[18,59],[17,39],[16,20],[14,32],[13,44],[60,118],[17,56],[67,175],[32,68],[25,39],[10,4],[-6,-32],[-86,-231],[-44,-147],[-6,-35],[-3,-54],[-2,-180],[7,-27],[29,-23],[39,81],[14,12],[10,-5],[5,-21],[22,19],[39,60],[13,1],[-29,-115],[-21,-56],[-8,-40],[20,-59],[-11,-30],[-49,-88],[-26,-91],[-23,-138],[-2,-54],[4,-57],[-4,-46],[-31,-95],[-34,-65],[-26,-77],[-6,-40],[4,-109],[21,-48],[38,-64],[11,-66],[-18,-68],[-3,-31],[11,6],[76,-35],[19,12],[28,-14],[39,-42],[29,-19],[40,3],[21,-10],[27,-19],[13,-20],[24,-80],[13,-12],[40,9],[23,18],[11,-7],[-2,-113],[8,-40],[40,-82],[42,-9],[28,-23],[32,-46],[23,-42],[22,-67],[10,-85],[-8,-25],[-47,-33],[-29,17],[-63,61],[-67,79],[-25,72],[-7,93],[-13,41],[-52,-39],[-22,1],[-28,16],[-29,36],[-31,55],[-46,10],[-60,-35],[-37,-10],[-36,59],[2,43],[17,63],[-17,38],[-88,13],[-24,-8],[-47,25],[-19,-5],[-13,-30],[-96,-129],[-10,-26],[24,-104],[89,-286],[9,-17],[165,-49],[100,-53],[182,-159],[35,-13],[118,-106],[48,-27],[45,19],[65,54],[34,49],[24,60],[20,84],[25,184],[9,156],[15,58],[55,108],[28,42],[18,13],[15,-25],[10,-4],[7,9],[7,68],[10,7],[33,-9],[35,28],[5,21],[-7,84],[10,35],[43,74],[41,28],[47,13],[88,-13],[74,-35],[55,-59],[45,65],[91,158],[54,111],[45,52],[92,62],[20,33],[34,4],[46,-26],[52,10],[59,46],[40,20],[138,-87],[21,-4],[52,-42],[33,-13],[39,1],[29,-13],[19,-27],[74,2],[132,30],[91,38],[54,49],[44,28],[34,6],[34,-9],[33,-24],[34,-44],[74,-23],[12,-12],[-1,-24],[-16,-37],[-41,-71],[-30,-69],[-5,-44],[0,-53],[10,-31],[17,-8],[28,33],[37,74],[107,278],[25,39],[14,35],[98,100],[46,17],[54,-61],[24,-39],[12,-37],[-1,-36],[6,-52],[-6,-32],[-14,-42],[-39,-59],[-64,-75],[-58,-23],[-52,32],[-60,64],[-25,-25],[-74,-181],[-18,-68],[0,-18],[34,21],[2,-22],[-21,-87],[-13,-29],[-42,-139],[-6,-42],[27,-9],[12,-17],[16,2],[76,84],[38,-38],[89,-53],[-35,-80],[-8,-80],[4,-17],[29,-12],[57,66],[28,10],[20,-27],[21,-2],[23,23],[21,34],[39,97],[19,59],[22,87],[7,13],[105,6],[59,-78],[-1,27],[-14,61],[-73,233],[1,28],[39,-12],[18,-19],[11,-28],[10,-65],[7,-19],[109,-110],[32,-16],[-20,117],[-40,415],[-9,144],[-9,48],[-43,157],[1,55],[47,132],[8,35],[5,108],[9,21],[38,1],[41,-34],[48,-23],[7,22],[-26,130],[1,11],[46,-33],[21,-5],[8,8],[34,66],[4,49],[-1,73],[-4,52],[-11,29],[-14,12],[-17,9],[-15,-4],[-48,11],[-28,-14],[-28,-40],[-20,-9],[-23,30],[-36,-5],[-40,-88],[-17,8],[-5,14],[1,19],[18,57],[143,302],[21,61],[5,89],[3,0],[14,-89],[-9,-43],[-74,-175],[-8,-64],[2,-17],[20,-18],[104,43],[41,-9],[27,-31],[14,-38],[10,-210],[19,-136],[-12,-122],[-28,-195],[-22,-115],[-51,-118],[-5,-42],[57,-360],[10,-30],[13,-13],[45,-5],[33,-31],[51,43],[28,11],[36,-38],[78,-152],[30,-48],[39,-90],[47,-132],[52,-97],[83,-90],[51,-73],[10,-26],[-47,-6],[-12,-13],[-9,-69],[4,-129],[0,-72],[-6,-64],[-10,-58],[-15,-52],[-14,-30],[-13,-11],[-8,5],[-5,20],[-12,123],[-17,91],[-22,47],[-45,32],[-79,23],[-33,-43],[-4,-36],[11,-144],[27,-61],[72,-122],[46,-98],[0,-18],[-42,0],[-10,-20],[-9,-122],[3,-45],[6,-52],[30,-38],[91,-46],[71,-56],[2,20],[-57,165],[-6,38],[22,35],[54,-95],[36,-79],[5,-27],[-32,-10],[-1,-32],[6,-60],[-3,-41],[-36,-52],[-43,29],[-36,54],[-31,15],[-44,1],[-33,-12],[-20,-26],[-24,-59],[-29,-90],[-36,-91],[-13,-10],[-11,10],[-23,88],[-10,10],[-141,-122],[-60,-69],[-30,-53],[-36,-31],[-43,-9],[-34,-25],[-26,-39],[-21,-56],[-16,-74],[-29,-93],[-67,-186],[-18,-120],[-2,-46],[4,-120],[63,-203],[11,-59],[22,-43],[31,-28],[23,-8],[51,26],[-31,-64],[-2,-34],[30,-111],[-6,-5],[-84,85],[-22,-5],[-30,-53],[-57,-188],[-1,-118],[18,-164],[6,-99],[-16,-85],[6,-23],[18,-24],[7,-26],[-7,-94],[12,-50],[40,-97],[40,-86],[24,-26],[20,5],[21,26],[22,48],[38,49],[28,14],[21,-27],[35,-184],[12,-47],[-12,-21],[-69,2],[-29,-15],[-18,-18],[-12,-71],[10,-38],[67,-132],[31,-139],[94,-194],[95,-92],[45,-30],[38,-6],[16,12],[20,97],[4,103],[51,128],[41,10],[26,-19],[83,7],[19,36],[-1,39],[-9,65],[5,55],[57,105],[51,72],[45,90],[68,187],[15,53],[10,56],[17,207],[3,78],[-7,225],[-5,42],[-18,51],[6,20],[54,58],[42,115],[23,37],[54,62],[9,23],[13,39],[30,164],[50,147],[3,31],[-10,69],[7,22],[20,25],[17,-13],[15,-51],[17,-15],[18,22],[13,38],[19,94],[27,77],[-2,23],[-14,20],[-73,21],[-41,-15],[-38,-38],[-26,-38],[-25,-60],[-9,6],[-13,49],[-27,71],[-18,65],[20,29],[96,-2],[21,19],[25,45],[-28,77],[-65,128],[-141,246],[-41,63],[10,18],[16,5],[48,-11],[45,-33],[55,14],[24,27],[-8,26],[15,43],[89,98],[57,-20],[58,-94],[44,-48],[55,7],[16,10],[-6,23],[-41,54],[-37,59],[-4,17],[46,-24],[102,37],[50,10],[36,-10],[33,16],[32,39],[10,25],[-29,16],[-28,0],[-24,24],[-19,48],[-14,62],[-8,76],[-21,31],[-34,-13],[-14,-22],[8,-30],[-10,-4],[-27,21],[-22,1],[-5,22],[148,242],[47,212],[33,87],[3,23],[-21,58],[-1,44],[10,128],[-5,102],[-14,178],[13,55],[32,49],[19,62],[13,21],[9,50],[12,31],[13,13],[9,-16],[5,-46],[12,-43],[34,-77],[32,-120],[6,-40],[-5,-95],[3,-41],[31,-145],[10,-101],[9,-157],[16,-111],[34,-93],[61,-191],[22,-38],[24,-19],[43,4],[31,62],[42,113],[53,103],[97,139],[28,53],[55,136],[23,135],[16,190],[14,113],[11,38],[5,57],[-1,76],[-4,59],[-8,43],[-11,24],[-30,8],[-36,-12],[-11,-19],[-19,-89],[-8,-5],[-33,65],[-5,37],[13,121],[-2,226],[4,49],[35,233],[60,177],[150,336],[9,38],[16,137],[7,28],[10,17],[12,6],[16,-14],[55,-103],[48,-110],[34,-57],[19,-5],[20,-20],[22,-35],[15,-39],[7,-43],[10,-166],[9,-80],[23,-110],[9,-31],[116,-280],[9,-35],[50,-328],[17,-152],[2,-91],[-6,-82],[3,-68],[13,-53],[14,-38],[25,-38],[13,-54],[8,-6],[20,0],[26,37],[19,6],[123,-42],[0,-22],[-72,-71],[1,-36],[6,-49],[23,-55],[28,-17],[6,-35],[1,-43],[9,-71],[-9,-25],[-67,-98],[-39,4],[-10,-12],[-33,-80],[-13,-117],[-1,-48],[5,-77],[4,-22],[-2,-35],[-8,-48],[-1,-44],[7,-37],[-4,-45],[-16,-53],[-6,-44],[16,-133],[1,-41],[-16,-57],[-11,-22],[8,-14],[28,-6],[33,18],[39,43],[47,0],[56,-41],[57,-21],[99,9],[23,12],[98,123],[76,63],[34,-6],[169,25],[74,-12],[38,5],[74,68],[-5,56],[-32,94],[-41,19],[-37,32],[34,49],[100,66],[24,105],[7,48],[-12,43],[6,22],[23,0],[60,-37],[66,24],[97,81],[10,17],[17,62],[-2,26],[-85,156],[-45,61],[-58,64],[-2,33],[82,7],[63,17],[29,21],[15,29],[20,62],[4,50],[-2,66],[-7,47],[-74,132],[-34,41],[-58,49],[-25,37],[-28,-5],[-30,-47],[-31,-10],[-56,37],[-31,-1],[-15,13],[-1,29],[27,83],[15,32],[6,25],[-11,41],[2,13],[9,14],[51,180],[11,14],[11,-7],[22,-51],[13,-21],[7,3],[-1,26],[-23,156],[-3,42],[0,37],[12,78],[26,84],[32,75],[48,101],[65,107],[25,53],[35,122],[7,47],[-9,127],[-26,208],[-17,118],[-7,28],[-49,83],[-28,19],[-46,-2],[-15,16],[-24,66],[-33,116],[-25,73],[-19,31],[-35,36],[-53,106],[-27,41],[-93,44],[-75,143],[-30,46],[-32,25],[-36,3],[-20,-22],[-11,-87],[-7,-29],[-27,-59],[-54,-174],[-24,-60],[-15,-13],[-32,9],[-16,-5],[-35,-55],[-13,-36],[2,-14],[27,-20],[-12,-28],[-47,-79],[-19,-41],[-3,-14],[-46,-54],[-46,-15],[-59,89],[-22,60],[1,19],[28,23],[12,-11],[24,-55],[12,-17],[36,8],[30,38],[11,33],[4,23],[82,175],[28,36],[12,41],[10,70],[17,76],[39,127],[42,155],[9,61],[-22,29],[-11,3],[-32,-23],[-85,-72],[-9,1],[-22,38],[-19,86],[-5,8],[-46,-34],[-84,-75],[-57,-64],[-28,-53],[-35,-84],[-41,-116],[-49,-37],[-56,42],[-82,15],[-172,-13],[-22,10],[-9,15],[14,64],[-3,17],[-12,12],[-2,19],[18,67],[31,46],[85,62],[57,53],[34,45],[11,38],[1,42],[-16,83],[-9,30],[-199,411],[-75,164],[-39,101],[-34,66],[-29,32],[-49,18],[-68,4],[-88,-15],[-45,-52],[-83,-140],[-58,-82],[-25,-28],[-22,-78],[-19,-15],[-42,-13],[-43,-41],[-100,-142],[-52,-57],[-47,-31],[-43,-6],[-16,9],[29,71],[-12,5],[-35,-17],[-34,0],[-60,-51],[-59,7],[-43,-10],[-51,-29],[-56,-14],[-89,1],[-32,7],[-5,13],[43,62],[74,76],[-10,-65],[3,-17],[24,-22],[117,40],[132,84],[33,8],[37,30],[41,50],[57,103],[108,232],[35,59],[46,54],[234,78],[80,-1],[162,23],[86,41],[24,30],[8,102],[-8,51],[-47,154],[-29,113],[-182,474],[-24,108],[-10,64],[-33,66],[-82,103],[-83,87],[-49,19],[-44,-21],[-29,-25],[-43,-86],[-2,9],[30,135],[-7,14],[-25,-17],[-57,-61],[-18,11],[-11,17],[-15,0],[-20,-18],[-35,-50],[-9,-25],[-9,-75],[-6,-14],[-69,44],[-12,14],[29,30],[9,22],[28,111],[2,23],[-20,15],[-66,-42],[-8,4],[32,110],[13,52],[1,27],[-42,123],[-27,52],[-38,19],[-23,-13],[-26,-31],[-19,4],[-12,40],[-22,29],[-31,17],[-41,-7],[-49,-32],[-129,-116],[-41,-18],[-76,-16],[-9,-17],[1,-15],[10,-15],[-3,-13],[-16,-11],[-17,10],[-17,31],[-30,9],[-43,-12],[-64,-45],[-127,-118],[-138,-99],[-81,-129],[30,116],[-2,40],[-15,34],[-3,34],[32,83],[43,29],[44,-3],[1,-13],[-18,-21],[-16,-30],[-8,-44],[8,-8],[39,23],[25,27],[192,152],[57,29],[43,29],[12,17],[-14,38],[-77,94],[-1,15],[52,-9],[65,-82],[36,-38],[34,-24],[47,41],[60,104],[48,60],[68,33],[40,35],[67,97],[11,51],[6,204],[-2,50],[-9,48],[-15,49],[-28,27],[-41,5],[-33,20],[-70,108],[-30,15],[-127,-32],[-50,-30],[-22,2],[-13,23],[-13,11],[-50,10],[-8,19],[3,30],[10,40],[12,23],[18,29],[29,20],[58,21],[6,54],[-3,18],[-19,36],[-22,-4],[-38,-43],[-19,-1],[-16,23],[-23,8],[-29,-8],[-16,18],[-4,46],[-10,34],[-33,53],[-19,40],[1,30],[19,23],[23,50],[25,79],[5,34],[-16,-9],[-21,-31],[-26,-53],[-39,-48],[-87,-62],[-16,2],[8,16],[58,65],[22,42],[3,31],[-49,67],[-1,22],[13,19],[3,17],[-17,32],[-28,28],[-55,4],[-5,15],[21,34],[7,21],[-18,28],[-12,4],[-63,-13],[17,71],[9,25],[20,35],[35,33],[0,13],[-12,28],[-20,34],[-88,103],[-61,122],[-8,37],[15,80],[0,20],[-16,35],[-35,-9],[-7,14],[8,37],[2,54],[-5,72],[-26,112],[-47,152],[-36,137],[-25,123],[-18,60],[-33,4],[-25,39],[17,20],[11,23],[7,36],[-7,111],[-22,186],[-9,101]],[[24535,24981],[-48,16],[-45,-114],[-2,-107],[3,-60],[6,-52],[16,-44],[46,-52],[21,38],[8,47],[7,18],[30,40],[14,46],[-2,53],[-9,80],[-11,51],[-12,23],[-22,17]],[[20551,24907],[119,173],[42,108],[34,54],[71,78],[23,64],[17,26],[6,26],[-5,28],[-3,65],[13,21],[46,25],[13,26],[17,82],[22,138],[18,149],[29,279],[58,369],[20,228],[7,42],[13,28],[37,42],[29,59],[34,19],[8,-6],[9,-50],[21,-81],[103,-157],[5,-24],[-12,-37],[-4,-25],[2,-16],[21,-14],[-71,-201],[-47,-192],[-29,-240],[-5,-70],[-4,-150],[-10,-40],[-16,-36],[-7,-47],[3,-58],[-3,-50],[-19,-103],[-73,-735],[0,-72],[10,-55],[26,-31],[42,-8],[13,-17],[-15,-26],[-28,-80],[-3,-37],[18,-75],[93,33],[68,67],[115,159],[12,-8],[12,-80],[25,-50],[37,16],[104,116],[121,204],[81,100],[57,136],[38,127],[25,98],[1,38],[-6,39],[6,51],[17,62],[9,56],[8,119],[15,154],[4,76],[108,679],[20,118],[13,55],[75,257],[40,185],[4,123],[5,36],[2,56],[-2,78],[-9,66],[-15,56],[-16,78],[-22,170],[-2,42],[16,59],[105,201],[64,239],[30,42],[81,148],[88,84],[29,36],[28,53],[8,2],[17,-10],[5,-14],[1,-22],[-24,-112],[-2,-44],[12,-8],[90,191],[48,76],[67,79],[114,182],[16,15],[62,-17],[17,12],[10,18],[4,24],[3,107],[17,53],[97,-23],[28,5],[17,17],[14,34],[21,114],[20,223],[1,80],[-9,133],[-14,49],[-19,15],[-52,-15],[-36,-42],[-19,-54],[-17,-117],[-8,-22],[-8,23],[-17,107],[-11,48],[-14,31],[-26,-8],[-38,-46],[-72,-120],[-25,-29],[-16,5],[-34,40],[-53,76],[-22,55],[10,36],[6,44],[3,54],[-2,39],[-7,25],[-17,30],[-37,6],[-53,-24],[-42,-41],[-74,-109],[-17,-15],[-22,24],[-10,32],[15,45],[37,59],[46,97],[12,19],[12,-2],[4,18],[5,52],[-2,89],[-22,178],[-3,42],[9,-10],[63,-174],[32,-49],[69,-77],[30,-57],[89,-16],[32,31],[21,54],[0,25],[-23,63],[-4,32],[-1,40],[2,35],[5,32],[16,29],[28,-13],[8,8],[15,30],[10,48],[1,66],[-21,145],[-37,47],[-114,87],[-39,45],[-76,32],[-29,42],[-18,13],[-80,-7],[-93,27],[-106,-52],[-74,-24],[-86,-83],[-32,21],[-34,54],[-161,-64],[-19,-47],[6,-30],[38,-99],[3,-21],[-2,-18],[-73,-16],[-82,-53],[-82,-27],[-61,8],[-40,-20],[-39,-43],[-21,-40],[-4,-36],[-1,-40],[4,-80],[-5,-56],[-18,-44],[-36,-40],[-36,5],[-31,44],[-28,81],[-54,224],[-27,38],[-69,162],[-26,39],[-128,64],[-151,26],[-57,49],[-53,93],[-65,89],[-159,109],[-147,61],[-153,26],[-115,42],[-33,-21],[-51,8],[-55,60],[-63,12],[-237,22],[-109,40],[-59,11],[-47,-6],[-33,-16],[-31,-54],[-32,-83],[-65,-221],[-19,-94],[7,-161],[-5,-93],[-21,-203],[-4,-18],[-115,-76],[-75,-24],[-113,-5],[-139,11],[-138,-24],[-73,-28],[-73,-45],[-124,-119],[-7,-12],[-10,-40],[-12,-67],[-31,-87],[-43,-101]],[[21972,25008],[-15,8],[-29,-37],[-42,-84],[-68,-170],[-82,-170],[-12,-102],[-21,-76],[-104,-182],[-68,-74],[-51,-37],[-9,-52],[36,-149],[41,-120],[24,-44],[76,-39],[256,-80],[59,-2],[61,38],[85,165],[35,19],[21,37],[18,61],[10,63],[1,127],[-9,186],[-12,71],[-51,238],[-54,130],[-10,83],[-22,66],[-38,81],[-26,45]],[[29733,23789],[51,22],[326,-41],[67,31],[205,187],[53,63],[26,82],[24,129],[11,29],[74,76],[31,93],[10,48],[16,109],[33,61],[39,35],[12,32],[-6,136],[17,63],[36,76],[14,51],[-29,61],[-65,37],[-185,-38],[-248,-86],[-144,25],[-72,39],[-175,139],[-56,22],[-54,3],[-97,-113],[-35,-61],[-11,-47],[-23,-137],[-19,-165],[-10,-137],[-11,-104],[-33,-35],[-98,-42],[-33,-57],[-15,-48],[-14,-77],[0,-81],[8,-71],[6,-18],[12,-2],[-27,-86],[-10,-96],[0,-134],[3,-86],[8,-38],[18,-24],[43,-17],[63,4],[88,99],[70,9],[106,80]],[[27607,27952],[12,33],[69,-42],[59,-47],[91,-113],[54,-39],[166,1],[28,21],[-13,68],[-7,19],[6,29],[18,40],[35,43],[14,-39],[11,-95],[24,-393],[10,-120],[5,-114],[0,-108],[-12,-68],[-43,-41],[-57,6],[-30,-10],[-36,-22],[-27,-33],[-17,-45],[-35,-137],[-25,-76],[-66,-138],[-29,-47],[14,-55],[60,-63],[36,-60],[42,-176],[25,-29],[92,24],[123,138],[78,119],[20,13],[1,-22],[-20,-56],[-89,-148],[-41,-108],[-19,-77],[9,-34],[50,-34],[7,-40],[-68,-47],[-35,1],[-28,34],[-30,2],[-55,-61],[-16,-35],[-32,-106],[-17,-92],[-18,-58],[-7,-45],[-4,-143],[2,-84],[8,-72],[13,-60],[36,-112],[21,-32],[37,-15],[82,56],[221,199],[-5,-64],[-247,-270],[-87,-70],[-22,-98],[132,-380],[121,-90],[60,-112],[99,-5],[92,71],[2,-19],[-42,-134],[4,-34],[52,-80],[96,-94],[118,-75],[23,-40],[30,-27],[56,-24],[137,-12],[78,11],[102,58],[60,104],[19,62],[32,199],[26,277],[38,114],[62,63],[42,68],[23,73],[7,92],[-11,111],[8,113],[27,116],[21,65],[47,74],[0,40],[-14,45],[-31,62],[-75,192],[-98,210],[-69,180],[-4,53],[145,-282],[45,10],[2,39],[-30,138],[-35,123],[-36,78],[6,30],[69,136],[-13,23],[-33,-11],[-14,12],[-9,25],[-7,37],[0,52],[5,68],[0,50],[-7,33],[7,14],[20,-6],[17,-28],[30,-90],[96,-249],[61,-94],[20,-8],[57,61],[13,-4],[-62,-193],[-6,-49],[13,-73],[8,-25],[34,-53],[29,-29],[16,12],[26,99],[11,69],[22,27],[47,-35],[31,-84],[39,55],[58,131],[-5,131],[0,131],[3,95],[70,174],[49,75],[9,1],[-2,-26],[-10,-57],[-26,-58],[-24,-89],[-22,-110],[13,-256],[36,-135],[35,34],[47,78],[36,7],[58,-8],[117,157],[64,4],[-6,-64],[-48,-31],[-70,-87],[-109,-104],[-50,-118],[-9,-56],[1,-61],[7,-53],[11,-47],[21,-46],[106,-139],[74,-60],[56,-19],[94,1],[109,25],[59,41],[68,99],[86,97],[30,18],[36,-3],[41,-22],[39,8],[123,144],[33,74],[20,89],[15,87],[9,83],[-4,68],[-103,290],[-45,49],[-29,109],[-44,206],[-38,109],[-3,22],[8,5],[22,-49],[39,-142],[28,-122],[52,-102],[85,-121],[73,-58],[63,5],[53,18],[43,29],[25,25],[8,20],[17,91],[-1,62],[-10,69],[-21,78],[-92,86],[-50,68],[-32,25],[-94,25],[4,27],[70,36],[78,-12],[-2,43],[-36,115],[-12,100],[10,81],[-2,66],[-27,138],[-32,124],[12,19],[72,-179],[19,-196],[29,-174],[33,-96],[26,-37],[80,-14],[44,-103],[38,-32],[15,-1],[33,38],[-2,41],[-47,182],[-99,294],[40,-34],[28,-69],[36,-70],[42,-103],[27,94],[43,69],[25,159],[41,76],[24,59],[-3,-100],[-36,-201],[10,-81],[27,-41],[86,-170],[60,57],[37,50],[19,-13],[46,7],[75,27],[73,48],[70,68],[55,79],[38,90],[23,62],[8,34],[13,90],[-10,59],[-53,136],[-30,62],[-29,27],[-79,-27],[-25,16],[-26,42],[-83,186],[-45,79],[-45,51],[-11,27],[97,-3],[27,-54],[22,-103],[42,-107],[81,-49],[112,105],[55,-4],[43,-105],[47,-72],[19,-15],[10,8],[36,76],[11,66],[-1,153],[-5,46],[-32,114],[-78,171],[-51,63],[-57,35],[-62,57],[-22,47],[-21,65],[-22,44],[-27,36],[36,53],[13,-1],[13,-32],[36,-126],[27,-54],[15,-12],[15,5],[16,25],[14,44],[-1,107],[-45,421],[7,-2],[28,-113],[81,-440],[20,-88],[39,-90],[87,-137],[67,-72],[76,-60],[41,-23],[46,15],[31,71],[40,13],[50,-18],[32,9],[36,28],[31,52],[53,59],[119,111],[15,23],[14,42],[13,60],[-2,59],[-16,59],[-20,36],[-24,13],[-24,32],[-46,83],[-14,15],[-72,35],[-66,18],[-41,33],[-79,90],[-110,166],[2,40],[43,19],[35,-25],[49,-115],[46,-44],[71,-35],[99,-31],[42,5],[8,6],[5,28],[4,48],[-17,62],[-18,30],[-51,141],[33,36],[46,16],[27,-38],[24,-86],[26,-48],[30,-10],[26,-22],[22,-34],[6,-23],[-32,-45],[-3,-28],[13,-68],[24,-75],[25,-47],[19,-3],[61,50],[42,87],[106,260],[14,51],[37,191],[7,85],[-6,59],[-9,36],[-11,13],[-23,0],[-142,-78],[-64,10],[-29,22],[-22,33],[-18,41],[-13,49],[-24,28],[-90,1],[-51,28],[-86,67],[-31,37],[-7,48],[53,-8],[87,-63],[82,-18],[137,138],[45,22],[25,-20],[31,-6],[109,9],[38,17],[55,53],[85,114],[16,34],[10,35],[3,37],[-1,90],[-9,31],[-29,21],[-122,-24],[-37,-19],[-46,24],[-37,-9],[-48,-36],[-52,-64],[-78,61],[-63,-40],[-64,35],[-127,145],[14,25],[174,-124],[34,8],[55,45],[87,89],[24,36],[1,140],[-14,93],[-26,105],[-40,-14],[-93,-65],[-38,-9],[-28,10],[-37,42],[-18,1],[-149,-82],[-33,-4],[-4,8],[7,17],[135,128],[100,14],[62,22],[37,39],[18,28],[1,85],[33,86],[30,34],[19,2],[33,-31],[33,-5],[27,22],[34,47],[40,13],[36,28],[28,6],[77,-13],[34,18],[8,16],[-14,27],[-71,65],[-11,62],[40,81],[21,62],[-1,46],[-21,104],[-6,42],[7,3],[52,-84],[8,11],[5,116],[7,-6],[17,-97],[-8,-129],[30,-51],[96,-39],[-16,203],[-2,105],[-42,173],[-35,56],[1,12],[25,22],[15,2],[15,-27],[36,-134],[72,-140],[13,-3],[-1,51],[-9,94],[33,44],[32,-44],[17,-37],[40,5],[18,18],[6,41],[-19,173],[4,43],[42,114],[4,-7],[-8,-55],[-9,-137],[9,-59],[34,-76],[71,-111],[27,-22],[16,15],[26,53],[-8,32],[-28,33],[-21,60],[-14,86],[15,46],[58,4],[58,-71],[33,35],[40,92],[72,147],[41,-40],[51,111],[-68,88],[21,184],[-89,-7],[-50,14],[-34,-16],[-36,5],[34,44],[64,18],[6,55],[50,-1],[38,-11],[68,2],[4,-64],[45,-36],[25,-40],[21,24],[62,27],[83,125],[-36,75],[-10,70],[-12,60],[-7,53],[-15,37],[-119,210],[20,1],[50,-50],[98,-75],[55,-31],[39,20],[19,1],[18,-27],[32,31],[67,29],[78,-173],[46,34],[44,107],[93,186],[49,107],[16,49],[-2,48],[-44,51],[-23,10],[-59,-96],[-54,-48],[-33,5],[-33,37],[10,21],[132,147],[23,108],[1,47],[-88,72],[-28,4],[-61,-34],[-36,-64],[-29,-23],[-41,-7],[-13,12],[45,108],[-5,33],[-23,21],[-11,51],[88,94],[66,95],[9,38],[-44,28],[-32,6],[-67,-14],[-37,-19],[-10,21],[38,49],[15,34],[11,46],[7,44],[2,41],[-31,33],[-38,94],[-15,97],[-34,9],[-13,-18],[-46,30],[-60,-41],[-22,-44],[-66,
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment