Skip to content

Instantly share code, notes, and snippets.

@mbostock
Last active February 9, 2016 02:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mbostock/7061976 to your computer and use it in GitHub Desktop.
Save mbostock/7061976 to your computer and use it in GitHub Desktop.
Virginia Counties
license: gpl-3.0
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.state {
fill: #ccc;
}
.county-border {
fill: none;
stroke: #fff;
stroke-width: 1.01px;
stroke-linejoin: round;
stroke-linecap: round;
}
</style>
<body>
<script src="//d3js.org/d3.v3.min.js"></script>
<script src="//d3js.org/d3.geo.projection.v0.min.js"></script>
<script src="//d3js.org/topojson.v1.min.js"></script>
<script>
var width = 960,
height = 500;
var projection = d3.geo.conicConformal()
.parallels([38 + 02 / 60, 39 + 12 / 60])
.rotate([78 + 30 / 60, 0])
.scale(8000)
.translate([0, 0]);
var path = d3.geo.path()
.projection(projection);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
d3.json("va-counties.json", function(error, topo) {
if (error) throw error;
var state = topojson.feature(topo, topo.objects.states),
bounds = path.bounds(state);
projection
.translate([width / 2 - (bounds[0][0] + bounds[1][0]) / 2, height / 2 - (bounds[0][1] + bounds[1][1]) / 2]);
svg.append("path")
.datum(state)
.attr("class", "state")
.attr("d", path);
svg.append("path")
.datum(topojson.mesh(topo, topo.objects.counties, function(a, b) { return a !== b; }))
.attr("class", "county-border")
.attr("d", path);
});
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"name":"Frederick County"},"id":"51069","arcs":[[0,1,2,3],[4]]},{"type":"Polygon","properties":{"name":"Loudoun County"},"id":"51107","arcs":[[5,6,7,8,9]]},{"type":"Polygon","properties":{"name":"Clarke County"},"id":"51043","arcs":[[-9,10,11,-1,12]]},{"type":"Polygon","properties":{"name":"Winchester City"},"id":"51840","arcs":[[-5]]},{"type":"Polygon","properties":{"name":"Shenandoah County"},"id":"51171","arcs":[[13,14,15,16,-3]]},{"type":"MultiPolygon","properties":{"name":"Fairfax County"},"id":"51059","arcs":[[[17,18,19,20,21,22,-6,23],[24]],[[25]]]},{"type":"Polygon","properties":{"name":"Warren County"},"id":"51187","arcs":[[26,27,28,-14,-2,-12]]},{"type":"Polygon","properties":{"name":"Fauquier County"},"id":"51061","arcs":[[29,30,31,32,-27,-11,-8]]},{"type":"Polygon","properties":{"name":"Prince William County"},"id":"51153","arcs":[[-23,33,34,-30,-7],[35,36]]},{"type":"Polygon","properties":{"name":"Arlington County"},"id":"51013","arcs":[[37,-20,38,-18,39]]},{"type":"Polygon","properties":{"name":"Falls Church City"},"id":"51610","arcs":[[-19,-39]]},{"type":"Polygon","properties":{"name":"Fairfax City"},"id":"51600","arcs":[[-25],[-26]]},{"type":"Polygon","properties":{"name":"Rappahannock County"},"id":"51157","arcs":[[40,41,42,-28,-33]]},{"type":"Polygon","properties":{"name":"Rockingham County"},"id":"51165","arcs":[[-16,43,44,45,46,47],[48]]},{"type":"Polygon","properties":{"name":"Alexandria City"},"id":"51510","arcs":[[49,-21,-38]]},{"type":"Polygon","properties":{"name":"Page County"},"id":"51139","arcs":[[-43,50,51,-44,-15,-29]]},{"type":"Polygon","properties":{"name":"Manassas Park City"},"id":"51685","arcs":[[52,-36]]},{"type":"Polygon","properties":{"name":"Manassas City"},"id":"51683","arcs":[[-53,-37]]},{"type":"Polygon","properties":{"name":"Culpeper County"},"id":"51047","arcs":[[53,54,55,56,-41,-32]]},{"type":"Polygon","properties":{"name":"Madison County"},"id":"51113","arcs":[[-57,57,58,-51,-42]]},{"type":"Polygon","properties":{"name":"Highland County"},"id":"51091","arcs":[[59,60,61]]},{"type":"Polygon","properties":{"name":"Stafford County"},"id":"51179","arcs":[[62,63,64,65,66,67,-54,-31,-35]]},{"type":"Polygon","properties":{"name":"Harrisonburg City"},"id":"51660","arcs":[[-49]]},{"type":"Polygon","properties":{"name":"Greene County"},"id":"51079","arcs":[[68,69,-45,-52,-59]]},{"type":"Polygon","properties":{"name":"Augusta County"},"id":"51015","arcs":[[70,71,72,73,-60,74,-47],[75],[76]]},{"type":"Polygon","properties":{"name":"King George County"},"id":"51099","arcs":[[77,78,79,80,-64,81]]},{"type":"Polygon","properties":{"name":"Orange County"},"id":"51137","arcs":[[82,83,84,-69,-58,-56]]},{"type":"Polygon","properties":{"name":"Spotsylvania County"},"id":"51177","arcs":[[-68,85,-66,86,87,88,-83,-55]]},{"type":"Polygon","properties":{"name":"Fredericksburg City"},"id":"51630","arcs":[[-86,-67]]},{"type":"Polygon","properties":{"name":"Albemarle County"},"id":"51003","arcs":[[-85,89,90,91,92,-71,-46,-70],[93]]},{"type":"MultiPolygon","properties":{"name":"Westmoreland County"},"id":"51193","arcs":[[[94]],[[95,96,97,-78,98]]]},{"type":"Polygon","properties":{"name":"Bath County"},"id":"51017","arcs":[[-61,-74,99,100,101]]},{"type":"Polygon","properties":{"name":"Caroline County"},"id":"51033","arcs":[[-81,102,103,104,105,-87,-65]]},{"type":"Polygon","properties":{"name":"Staunton City"},"id":"51790","arcs":[[-76]]},{"type":"Polygon","properties":{"name":"Essex County"},"id":"51057","arcs":[[106,107,-103,-80,108]]},{"type":"Polygon","properties":{"name":"Louisa County"},"id":"51109","arcs":[[-89,109,110,111,-90,-84]]},{"type":"Polygon","properties":{"name":"Richmond County"},"id":"51159","arcs":[[112,113,114,-97]]},{"type":"Polygon","properties":{"name":"Waynesboro City"},"id":"51820","arcs":[[-77]]},{"type":"Polygon","properties":{"name":"Rockbridge County"},"id":"51163","arcs":[[115,116,117,118,-100,-73,119],[120],[121]]},{"type":"Polygon","properties":{"name":"Charlottesville City"},"id":"51540","arcs":[[-94]]},{"type":"Polygon","properties":{"name":"Nelson County"},"id":"51125","arcs":[[122,123,124,-120,-72,-93]]},{"type":"MultiPolygon","properties":{"name":"Accomack County"},"id":"51001","arcs":[[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147,148,149,150]],[[151]]]},{"type":"Polygon","properties":{"name":"Northumberland County"},"id":"51133","arcs":[[152,-113,-96,153]]},{"type":"Polygon","properties":{"name":"Hanover County"},"id":"51085","arcs":[[-106,154,155,156,157,-110,-88]]},{"type":"Polygon","properties":{"name":"Fluvanna County"},"id":"51065","arcs":[[158,159,-91,-112,160]]},{"type":"Polygon","properties":{"name":"King and Queen County"},"id":"51097","arcs":[[-108,161,162,163,164,-104]]},{"type":"Polygon","properties":{"name":"Alleghany County"},"id":"51005","arcs":[[-119,165,166,167,-101],[168]]},{"type":"Polygon","properties":{"name":"King William County"},"id":"51101","arcs":[[-165,169,170,-155,-105]]},{"type":"Polygon","properties":{"name":"Goochland County"},"id":"51075","arcs":[[171,172,173,-161,-111,-158]]},{"type":"MultiPolygon","properties":{"name":"Lancaster County"},"id":"51103","arcs":[[[174]],[[175,-114,-153,176]]]},{"type":"Polygon","properties":{"name":"Covington City"},"id":"51580","arcs":[[-169]]},{"type":"Polygon","properties":{"name":"Amherst County"},"id":"51009","arcs":[[177,178,179,180,-116,-125]]},{"type":"Polygon","properties":{"name":"Botetourt County"},"id":"51023","arcs":[[181,182,183,-166,-118]]},{"type":"Polygon","properties":{"name":"Lexington City"},"id":"51678","arcs":[[-121]]},{"type":"Polygon","properties":{"name":"Buckingham County"},"id":"51029","arcs":[[184,185,186,-123,-92,-160]]},{"type":"MultiPolygon","properties":{"name":"Middlesex County"},"id":"51119","arcs":[[[187]],[[188,-162,-107,189]]]},{"type":"Polygon","properties":{"name":"Buena Vista City"},"id":"51530","arcs":[[-122]]},{"type":"Polygon","properties":{"name":"Cumberland County"},"id":"51049","arcs":[[-174,190,191,192,-185,-159]]},{"type":"Polygon","properties":{"name":"Henrico County"},"id":"51087","arcs":[[193,194,195,196,197,198,-172,-157]]},{"type":"Polygon","properties":{"name":"Powhatan County"},"id":"51145","arcs":[[199,200,-191,-173]]},{"type":"Polygon","properties":{"name":"Craig County"},"id":"51045","arcs":[[201,202,203,204,-167,-184]]},{"type":"Polygon","properties":{"name":"New Kent County"},"id":"51127","arcs":[[205,206,207,-194,-156,-171]]},{"type":"Polygon","properties":{"name":"Bedford County"},"id":"51019","arcs":[[208,209,210,211,212,-182,-117,-181],[213]]},{"type":"Polygon","properties":{"name":"Richmond City"},"id":"51760","arcs":[[214,-198]]},{"type":"MultiPolygon","properties":{"name":"Gloucester County"},"id":"51073","arcs":[[[215]],[[216,217,218,-163,-189]]]},{"type":"MultiPolygon","properties":{"name":"Chesterfield County"},"id":"51041","arcs":[[[219]],[[-215,-197,220,221,222,223,224,225,226,227,-200,-199]]]},{"type":"Polygon","properties":{"name":"Appomattox County"},"id":"51011","arcs":[[228,229,230,-178,-124,-187]]},{"type":"MultiPolygon","properties":{"name":"Northampton County"},"id":"51131","arcs":[[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259,-149]]]},{"type":"Polygon","properties":{"name":"Buchanan County"},"id":"51027","arcs":[[260,261,262,263]]},{"type":"MultiPolygon","properties":{"name":"Mathews County"},"id":"51115","arcs":[[[264]],[[-218,265]]]},{"type":"Polygon","properties":{"name":"Amelia County"},"id":"51007","arcs":[[-228,266,267,268,-192,-201]]},{"type":"Polygon","properties":{"name":"Charles City County"},"id":"51036","arcs":[[269,270,-195,-208]]},{"type":"Polygon","properties":{"name":"Giles County"},"id":"51071","arcs":[[-204,271,272,273,274]]},{"type":"Polygon","properties":{"name":"Lynchburg City"},"id":"51680","arcs":[[-180,275,-209]]},{"type":"MultiPolygon","properties":{"name":"James City County"},"id":"51095","arcs":[[[276]],[[277,278,279,280,-270,-207,281,282,283]]]},{"type":"Polygon","properties":{"name":"Campbell County"},"id":"51031","arcs":[[-231,284,285,286,-210,-276,-179]]},{"type":"Polygon","properties":{"name":"Roanoke County"},"id":"51161","arcs":[[-213,287,288,289,-202,-183],[290,291]]},{"type":"Polygon","properties":{"name":"Prince Edward County"},"id":"51147","arcs":[[-193,-269,292,293,294,-229,-186]]},{"type":"MultiPolygon","properties":{"name":"York County"},"id":"51199","arcs":[[[295]],[[296,297,298,299,-279,300,-283]]]},{"type":"Polygon","properties":{"name":"Montgomery County"},"id":"51121","arcs":[[301,302,303,304,-272,-203,-290]]},{"type":"Polygon","properties":{"name":"Bedford City"},"id":"51515","arcs":[[-214]]},{"type":"Polygon","properties":{"name":"Roanoke City"},"id":"51770","arcs":[[305,-292]]},{"type":"Polygon","properties":{"name":"Tazewell County"},"id":"51185","arcs":[[306,307,308,-261,309]]},{"type":"Polygon","properties":{"name":"Salem City"},"id":"51775","arcs":[[-306,-291]]},{"type":"Polygon","properties":{"name":"Hopewell City"},"id":"51670","arcs":[[310,-222,311]]},{"type":"Polygon","properties":{"name":"Prince George County"},"id":"51149","arcs":[[312,313,314,315,316,-223,-311]]},{"type":"Polygon","properties":{"name":"Williamsburg City"},"id":"51830","arcs":[[317,-284,-301,-278]]},{"type":"Polygon","properties":{"name":"Dickenson County"},"id":"51051","arcs":[[318,319,320,-263]]},{"type":"Polygon","properties":{"name":"Bland County"},"id":"51021","arcs":[[321,322,323,-307,324,-274]]},{"type":"Polygon","properties":{"name":"Colonial Heights City"},"id":"51570","arcs":[[325,-225]]},{"type":"Polygon","properties":{"name":"Nottoway County"},"id":"51135","arcs":[[326,327,-293,-268,328]]},{"type":"Polygon","properties":{"name":"Dinwiddie County"},"id":"51053","arcs":[[329,-316,330,331,332,-329,-267,-227]]},{"type":"Polygon","properties":{"name":"Charlotte County"},"id":"51037","arcs":[[333,334,335,-285,-230,-295]]},{"type":"Polygon","properties":{"name":"Pulaski County"},"id":"51155","arcs":[[336,-303,337,338,339,-322,-273,-305]]},{"type":"Polygon","properties":{"name":"Petersburg City"},"id":"51730","arcs":[[-330,-226,-326,-224,-317]]},{"type":"Polygon","properties":{"name":"Surry County"},"id":"51181","arcs":[[340,341,342,-314,343]]},{"type":"Polygon","properties":{"name":"Franklin County"},"id":"51067","arcs":[[344,345,346,347,-288,-212]]},{"type":"Polygon","properties":{"name":"Newport News City"},"id":"51700","arcs":[[348,349,-280,-300]]},{"type":"Polygon","properties":{"name":"Wise County"},"id":"51195","arcs":[[350,351,352,353,-320],[354]]},{"type":"MultiPolygon","properties":{"name":"Poquoson City"},"id":"51735","arcs":[[[355]],[[356,357,-298,358]]]},{"type":"Polygon","properties":{"name":"Radford City"},"id":"51750","arcs":[[-337,-304]]},{"type":"Polygon","properties":{"name":"Isle of Wight County"},"id":"51093","arcs":[[359,360,361,362,-341,363]]},{"type":"Polygon","properties":{"name":"Russell County"},"id":"51167","arcs":[[364,365,366,-351,-319,-262,-309]]},{"type":"Polygon","properties":{"name":"Pittsylvania County"},"id":"51143","arcs":[[367,368,369,370,371,-345,-211,-287]]},{"type":"Polygon","properties":{"name":"Floyd County"},"id":"51063","arcs":[[-348,372,373,-338,-302,-289]]},{"type":"Polygon","properties":{"name":"Lunenburg County"},"id":"51111","arcs":[[-328,374,375,-334,-294]]},{"type":"Polygon","properties":{"name":"Hampton City"},"id":"51650","arcs":[[-349,-299,-358,376]]},{"type":"Polygon","properties":{"name":"Sussex County"},"id":"51183","arcs":[[377,378,-331,-315,-343]]},{"type":"Polygon","properties":{"name":"Wythe County"},"id":"51197","arcs":[[379,380,381,-323,-340]]},{"type":"Polygon","properties":{"name":"Halifax County"},"id":"51083","arcs":[[-336,382,383,-368,-286]]},{"type":"Polygon","properties":{"name":"Brunswick County"},"id":"51025","arcs":[[-333,384,385,386,-375,-327]]},{"type":"Polygon","properties":{"name":"Smyth County"},"id":"51173","arcs":[[-324,-382,387,388,-365,-308]]},{"type":"Polygon","properties":{"name":"Southampton County"},"id":"51175","arcs":[[389,-361,390,391,392,-378,-342,-363]]},{"type":"MultiPolygon","properties":{"name":"Norfolk City"},"id":"51710","arcs":[[[393,394,395]],[[396,397]]]},{"type":"Polygon","properties":{"name":"Norton City"},"id":"51720","arcs":[[-355]]},{"type":"MultiPolygon","properties":{"name":"Virginia Beach City"},"id":"51810","arcs":[[[398]],[[399]],[[400]],[[401]],[[402]],[[403,404,-397,405]]]},{"type":"Polygon","properties":{"name":"Carroll County"},"id":"51035","arcs":[[406,407,408,409,410,-380,-339,-374]]},{"type":"Polygon","properties":{"name":"Washington County"},"id":"51191","arcs":[[411,412,413,414,-366,-389,415,416,417]]},{"type":"MultiPolygon","properties":{"name":"Portsmouth City"},"id":"51740","arcs":[[[-395,418,419]],[[420,421,422]]]},{"type":"Polygon","properties":{"name":"Suffolk City"},"id":"51800","arcs":[[-422,423,424,-391,-360,425]]},{"type":"Polygon","properties":{"name":"Greensville County"},"id":"51081","arcs":[[-379,-393,426,-385,-332],[427]]},{"type":"Polygon","properties":{"name":"Lee County"},"id":"51105","arcs":[[428,429,-353]]},{"type":"Polygon","properties":{"name":"Mecklenburg County"},"id":"51117","arcs":[[-387,430,-383,-335,-376]]},{"type":"Polygon","properties":{"name":"Scott County"},"id":"51169","arcs":[[-367,-415,431,-429,-352]]},{"type":"Polygon","properties":{"name":"Patrick County"},"id":"51141","arcs":[[432,433,-407,-373,-347]]},{"type":"Polygon","properties":{"name":"Chesapeake City"},"id":"51550","arcs":[[434,-419,-394,435,-404,436,-424,-421]]},{"type":"Polygon","properties":{"name":"Henry County"},"id":"51089","arcs":[[437,-433,-346,-372],[438]]},{"type":"Polygon","properties":{"name":"Grayson County"},"id":"51077","arcs":[[-411,439,-409,440,-416,-388,-381]]},{"type":"Polygon","properties":{"name":"Emporia City"},"id":"51595","arcs":[[-428]]},{"type":"Polygon","properties":{"name":"Martinsville City"},"id":"51690","arcs":[[-439]]},{"type":"Polygon","properties":{"name":"Franklin City"},"id":"51620","arcs":[[-390,-362]]},{"type":"Polygon","properties":{"name":"Galax City"},"id":"51640","arcs":[[-440,-410]]},{"type":"Polygon","properties":{"name":"Danville City"},"id":"51590","arcs":[[441,-370]]},{"type":"MultiPolygon","properties":{"name":"Bristol City"},"id":"51520","arcs":[[[-412]],[[-418,442,-413]]]}]},"states":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","properties":{"name":"Virginia"},"id":"51","arcs":[[[398]],[[399]],[[400]],[[401]],[[402]],[[231]],[[232]],[[233]],[[234]],[[355]],[[235]],[[236]],[[237]],[[238]],[[239]],[[295]],[[240]],[[241]],[[215]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[219]],[[254]],[[255]],[[256]],[[257]],[[258]],[[125]],[[126]],[[264]],[[127]],[[187]],[[128]],[[174]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147,259,149,150]],[[151]],[[94]],[[175,114,97,78,108,189,216,265,218,163,169,205,281,296,358,356,376,349,280,270,195,220,311,312,343,363,425,422,434,419,395,435,404,397,405,436,424,391,426,385,430,383,368,441,370,437,433,407,440,416,442,413,431,429,353,320,263,309,324,274,204,167,101,61,74,47,16,3,12,9,23,39,49,21,33,62,81,98,153,176]]]}]}},"arcs":[[[669024,931124],[-134,-690],[-74,-108],[-255,-532],[-35,-109],[-83,-508],[10,-195],[49,-219],[-4,-344],[-81,-1212],[-59,-571],[-127,-1081],[-8,-99],[-65,-799],[-42,-509],[-224,-328],[-102,-133],[-89,-117],[-60,-78],[-44,-136],[-8,-28],[0,-143],[0,-12],[0,-9],[13,-101],[108,-259],[48,-161],[5,-383],[-76,-493],[-108,-236],[-86,-189],[-52,-54],[-144,-282],[-79,-138],[-34,-62],[-26,-302],[-10,-122],[-44,-511],[-26,-316],[-64,-755],[-126,-102],[-17,-14],[-167,-136],[-181,96],[-180,-27],[-120,-62],[-167,-281],[-36,-128],[-121,-429],[-119,-421],[-4,-15],[-17,-117],[13,-93],[84,-587],[63,-618],[13,-422],[-14,-157],[-20,-78],[-133,-148],[-415,-343],[-38,-63],[-21,-101],[-7,-274],[13,-149],[13,-42],[8,-28],[195,-595],[32,-86],[66,-74],[17,-20],[21,-54],[-3,-188],[-35,-539],[-32,-94],[-66,-16],[-505,431],[-46,55],[-146,47],[-98,0],[-34,-39],[-11,-54],[-2,-41],[-12,-225],[80,-391],[2,-7],[134,-439],[26,-107],[57,-231],[32,-131],[-7,-118],[-91,-406],[-28,-62],[-105,-8],[-205,133],[-164,47],[-160,24],[-35,-15],[-63,-134],[-7,-15],[-3,-125],[13,-78],[168,-493],[14,-16],[243,-493],[81,-187],[24,-172],[10,-126],[4,-39],[-1,-58],[-1,-34],[-5,-267],[-14,-86],[-63,-70],[-87,15],[-321,228],[-76,0],[-35,-32],[-39,-109],[-39,-138],[-3,-10],[-7,-227],[25,-110],[42,-133],[434,-1047],[43,-103],[-220,-140],[-327,-907],[-11,-31],[-8,-406],[-10,-516],[163,-2056],[279,-314],[-84,-879],[-86,-894],[-156,159],[-14,-17],[-307,-374],[-61,-73],[-105,-63],[-76,-117],[-67,-133],[-56,-227],[-84,-339],[-30,-121],[27,-305],[49,-414],[0,-1],[35,-133],[160,-485],[63,-203],[4,-52],[6,-65],[-31,-110],[-70,-164],[-199,-86],[-209,95],[-45,-16],[-98,-109],[-146,-204],[-94,-195],[-45,-141],[-25,-101],[-3,-110],[14,-179],[74,-528],[2,-12],[4,-8],[7,-15],[269,-300],[41,-45],[58,-76],[32,-41],[91,-282],[17,-211],[-56,-117],[-73,-8],[-268,47],[-84,71],[-34,62],[-35,63],[-15,0],[-24,0],[-129,-195],[-38,-110],[-77,-539],[3,-129],[1,-35],[87,-165],[41,-78],[141,-441],[107,-333],[22,-78],[9,-31],[0,-165],[-14,-62],[-418,-1219],[-206,-469],[108,-860],[7,-235],[-49,-219],[-178,-453],[-38,-55],[-209,-85],[-73,-110],[-45,-94],[-25,-164],[-10,-172],[5,-43],[16,-121],[65,-950],[1,-4],[3,-1048],[-4,-187],[-49,-555],[-10,-55],[-52,-109],[-565,-1227],[-94,-312],[-84,-281],[-48,-158],[-98,-703],[0,-2],[-368,-796],[-18,-39],[-87,0],[-45,-39],[-67,-125],[-21,-74],[-59,-207],[-2,-129],[0,-54],[-1,-59],[21,-149],[41,-188],[87,-187],[122,-132],[54,-58],[80,-86],[12,-14],[77,-133],[3,-40],[16,-197],[228,-2882],[-4,-204],[-10,-125],[-735,-2843],[-223,-866],[-223,-872],[-41,-93],[-77,-102],[-87,-31],[-36,10],[-216,126],[-117,406],[-129,37],[-130,-74],[-97,-220],[-115,-242],[-78,-289],[-121,-137],[-129,-66],[-96,-249],[-117,-221],[-67,-291],[-97,-272],[-75,-397],[-50,-346],[-51,-369],[-103,-265],[-5,-384],[-30,-390],[-116,-355],[-85,-263],[-35,-396],[-86,-259],[-95,-209],[-116,-205],[-102,-227],[-95,-229],[-133,-5],[-71,-423],[-48,-358],[-63,-472],[-79,-588],[-50,-381],[-116,-893],[-41,-311],[-9,-73],[-64,-476],[-43,-323],[-29,-215],[-36,-268],[-130,-964],[-44,-322],[-53,-395],[-160,-1183],[-53,-396],[-92,-678],[-48,-352],[-70,-517],[-55,-405],[-96,-701],[-48,-352],[-48,-358],[-61,-444],[-80,-590],[-53,-385],[-61,-300]],[[654924,853094],[-107,-507],[-49,-321],[7,-201],[7,-188],[-51,-361],[-131,-357],[-89,-226],[-65,-166],[-100,-252],[-78,-261],[-102,-366],[-410,-1488],[-75,-289],[-45,-357],[-31,-402],[-162,-553],[-401,-61],[-207,-26],[-4,-1],[-132,-21],[-1373,-242],[-490,-87],[-656,-134],[-1005,-207],[-448,-92],[-601,-131],[-498,-101],[-422,-83],[-290,-59],[-180,-37],[-163,-32],[-748,-151],[-266,-53],[-1003,-201],[-284,-56],[-917,-187],[-290,-57],[-274,-54],[-163,-33],[-380,-75],[-199,-40],[-254,-50],[-547,-108],[-360,-71],[-344,-69],[-146,-28],[-129,-26],[-175,-34],[-177,-36],[-371,-57],[-573,-113],[-177,-35],[-201,-39],[-178,-39],[-177,-38],[-194,-42],[-135,-27],[-139,-28],[-45,-10],[-172,-32],[-115,-22],[-346,-51],[-182,-36],[-592,-115],[-179,-34],[-15,-3],[-127,-24],[-119,-23],[-216,-2]],[[635664,843386],[119,205],[114,474],[-102,12],[-66,8],[-133,217],[-135,693],[-25,131],[-60,71],[-83,100],[-152,460],[62,396],[41,418],[-10,75],[-35,254],[-153,250],[60,310],[116,175],[157,-78],[137,31],[137,153],[90,261],[-80,152],[-26,50],[-131,120],[71,276],[111,440],[13,48],[-33,410],[-113,395],[-95,263],[-184,349],[-287,467],[-108,181],[29,410],[127,233],[138,-231],[134,-279],[146,1],[133,243],[173,239],[220,144],[158,133],[77,378],[-242,231],[-163,161],[-366,139],[-217,28],[-110,158],[-6,40],[-39,289],[-51,592],[-58,500],[-7,66],[-12,39],[-98,317],[-25,57],[-83,193],[-164,379],[-103,179],[-158,265],[-86,-288],[-60,-372],[-204,-521],[-34,-88],[-64,-23],[-86,-32],[-88,-32],[-41,49],[-18,21],[-84,101],[-8,100],[-9,105],[-13,167],[16,209],[4,43],[56,710],[60,310],[11,59],[56,323],[39,456],[39,331],[-71,290],[-197,-5],[-2,-152],[-3,-305],[-62,-396],[-118,-63],[-83,282],[-81,369],[-51,313],[-1,7],[-125,250],[-102,253],[-129,277],[-126,239],[-83,100],[-60,71],[-44,135],[-167,507],[-34,105],[-19,504],[-93,300],[-59,54],[-113,104],[-120,49],[-68,326],[67,369],[17,93],[134,44],[218,-140],[112,-146],[199,-196],[61,-60],[14,-6],[252,-105],[237,87],[1,1],[1,3],[87,274],[13,41],[-94,225],[-135,130],[-175,197],[-115,136],[-147,149],[-16,17],[-2,35],[-21,421],[-5,200],[-6,202],[-45,352],[20,465],[-18,392],[136,205],[160,-104],[37,-63],[111,-184],[125,-52],[89,29],[96,31],[217,369],[-97,251],[-132,510],[-16,61],[-18,368],[-3,50],[125,10],[74,-9],[93,-11],[33,37],[129,145],[160,20],[108,-116],[5,-5],[36,24],[215,145],[149,99],[187,271],[-42,439],[-97,271],[-7,20],[-100,272],[-60,100],[-113,189],[-139,492],[-81,176],[-66,142],[-54,35],[-117,76],[-123,275],[-54,75],[-87,120],[-141,58],[-137,187],[-20,27],[51,414],[236,436],[160,231],[148,13],[94,247],[91,189],[74,152],[33,458],[-110,431],[-29,-9],[-52,-16],[-75,-22],[-83,-200],[-9,-23],[-9,-4],[-184,-77],[-103,241],[-13,71],[-44,251],[-45,403],[42,355],[57,473],[50,451],[41,542],[-81,307],[-88,390],[-10,47],[-67,140],[-38,78],[-15,31],[-22,8],[-207,74],[-86,140],[-28,44],[-138,32],[-83,-117],[-26,-36],[-63,-4],[-67,-4],[5,-93],[12,-180],[11,-186],[83,-481],[-38,-506],[-73,-330],[-38,-381],[-139,-42],[-159,217],[-8,10],[-136,184],[-138,157],[-26,35],[-131,179],[-166,31],[-302,-36],[-58,-20],[-3,-1],[-136,-47],[-156,-109],[-104,-168],[-56,-98],[-76,-132],[-175,-263],[-235,209],[-79,180],[-49,112],[-59,-96],[-71,-114],[-52,-58],[-128,-141],[-367,-407],[-231,-388],[-162,-194],[-288,-141],[-120,-131],[-167,-102],[-161,92],[-85,258],[-149,173],[-128,-46],[-164,142],[-56,48],[-33,473],[-69,314],[-186,400],[-85,186],[-33,74],[-24,43],[-132,245],[-51,131],[-143,371],[-158,201],[-92,120],[-33,43],[-72,93],[-163,-119],[7,-63],[29,-305],[3,-33],[89,-285],[123,-609],[88,-481],[0,-2],[0,-8],[-7,-263],[-4,-122],[-40,-345],[-1,-10],[-85,-400],[-138,-158],[-5,-6],[-147,127],[-73,164],[-27,59],[-73,105],[-37,52],[-209,431],[-2,4],[-4,0],[-190,-8],[-26,-1],[-42,-53],[-142,-181],[-98,-11],[-21,-2],[-119,-110],[-13,-12],[-100,-92],[-221,-281],[-267,-492],[-47,-86],[-18,-47],[-124,-320],[-53,-335],[-172,-500],[-103,-218],[-98,-233],[-94,-445],[-175,-64],[-128,261],[-163,103],[-184,-232],[-6,-359],[111,-313],[-70,-327],[-158,-328],[-146,-105],[-92,225],[-152,40],[-127,-92],[-8,-6],[-64,-368],[-16,-390],[35,-159],[52,-239],[-38,-329],[-96,-382],[-134,-246],[-109,-178],[-71,-144],[-32,-67],[-89,-288],[-18,-28],[-58,-86],[-65,-98],[-119,-314],[-56,-304],[74,-276],[111,-244],[-3,-433],[2,-432],[-43,-385],[-1,0],[-122,-110],[-114,-20],[-28,-5],[-181,-60],[-161,-129],[-45,-73],[-81,-127],[-14,-22],[-2,-5],[-117,-254],[-118,-139],[-35,-41],[-120,-86],[-48,-327],[-57,-326],[36,-174],[10,-53],[23,-109],[57,-411],[-125,-96],[-116,-205],[-122,-360],[-118,-84],[-145,-73],[-127,-62],[-128,-15],[-36,-335],[-19,-527],[74,-411],[105,-86],[6,-5],[3,-3],[10,3],[123,39],[20,-31],[75,-116],[14,-21],[116,-255],[-2,-98],[-3,-251],[-48,-426],[5,-368],[-91,-236],[-167,-432],[-97,-232],[-120,-205],[-85,-269],[-107,-181],[-121,-217],[44,-367],[73,-214],[15,-45],[27,-302],[9,-96],[37,-327],[45,-80],[61,-107],[7,-37],[52,-260],[32,-356],[25,-276],[8,-92],[-21,-26],[-92,-117],[-223,-52],[-116,-154],[-53,-340],[-20,-209],[-12,-123],[-97,-34],[-38,-13],[-104,-192],[-4,-7],[-84,-147],[-20,-35],[17,-47],[17,-44],[79,-213],[-10,-357],[-45,-335],[-621,615],[-460,450],[-337,256],[-1320,1225],[-646,574],[-510,453],[-340,301],[-247,220],[-373,314],[-521,525],[-2967,2861],[-574,525],[-260,266],[-1460,1307]],[[608427,860059],[459,1360],[606,778],[260,870],[450,721],[575,735],[322,1279],[409,913],[209,922],[94,1191],[256,587],[319,405],[51,196],[254,975],[576,1485],[541,1306],[324,747],[266,892],[1816,2822],[218,-415],[400,-167],[437,1047],[677,712],[534,337],[2358,6110],[197,1567],[132,1696],[1110,3772],[1583,1945],[503,1284],[712,1805],[-246,607],[-407,883],[-466,625],[-152,917],[-488,358],[-369,833],[-451,991],[-176,977],[-33,1098],[346,1156],[-205,679],[-315,-516],[-307,1249],[-298,128],[-457,113],[134,1030],[2207,5983],[1417,4561],[21,882],[61,226],[120,450],[-88,754],[91,1232],[539,909],[-627,1556],[-795,1878],[-352,620],[-252,-79],[-286,520],[255,1314],[1433,4303],[370,1128],[-128,639],[434,990],[139,-301],[250,549],[369,614],[73,236],[407,1313],[194,1174],[249,1251],[722,1551],[502,1687],[608,1251],[324,719],[316,1476],[-21,1086],[522,-103],[421,1924],[350,1813],[395,1752],[381,1375],[98,1240],[-79,843],[505,856],[208,-247],[214,1313],[-67,312],[-72,841],[-9,113],[-737,321],[-514,224],[-994,730],[-917,673],[750,2022],[336,1088],[279,888],[387,1406],[118,876],[118,507],[250,759],[567,2544],[-173,103],[-142,405],[-633,379],[142,499],[85,1268],[-209,761],[-917,2337],[-86,2142],[364,1208],[-68,412],[555,1082],[356,1263],[275,1171],[-109,1353],[-399,1269],[-125,1041],[544,1007],[167,1196],[-115,1223],[34,881],[145,1115],[-2,831],[46,1360],[-432,633],[238,1454],[4649,-8469],[594,-1084],[3733,-6801],[5055,-9209],[2638,-5262],[13,-24],[4178,-7751],[5508,-10218],[5114,-9437],[314,-579],[527,-973],[4913,-9068]],[[649818,907341],[-92,-406],[-64,-353],[-57,-369],[-45,-311],[-59,-405],[142,-5],[226,-12],[-267,-1188],[-265,-1179],[-185,-743],[87,-271],[155,-238],[249,-353],[152,-251],[54,-90],[425,-427],[113,-113],[126,-131],[-9,-49],[-465,-2704],[-98,-457],[-10,-350],[-1,-474],[-162,-2771],[-511,-737],[90,-459],[64,-358],[46,-316],[14,-343],[-37,-417],[21,-339],[75,-626],[-14,-394],[110,-286],[119,-90],[115,-218],[183,-283],[165,-101],[165,78],[0,-1],[459,-577],[10,-19],[98,-176],[202,-258],[136,-399],[-11,-954],[-101,-633],[101,-431],[109,259],[228,682],[478,1628],[356,1094],[250,767],[108,498],[79,538],[240,1276],[61,347],[176,911],[133,666],[79,330],[234,590],[129,313],[119,253],[140,343],[88,218],[1,1],[55,136],[178,651],[2,8],[105,507],[70,446],[115,655],[89,542],[59,306],[115,484],[107,297],[121,288],[158,331],[218,459],[346,761],[141,279],[102,212],[116,337],[126,413],[58,114],[197,393],[-56,98],[-1,1],[-66,113],[-156,287],[-159,236],[-241,406],[-329,530],[-287,502],[-392,655],[-106,178],[-166,276],[-153,262],[-141,242],[-42,70],[-69,116],[-128,216],[202,933],[114,560],[-61,68],[-424,475],[-114,132],[-257,-618],[-103,-247],[-60,-313],[-26,-172],[-56,29],[-7,3],[-1213,899],[-269,125],[-346,258],[-150,105],[-149,104],[-664,465],[-80,-297],[-79,-341],[-99,-376],[-99,-366],[-79,-342],[-120,-494],[-101,-334],[-115,-476],[-88,-314]],[[752842,860180],[-277,-491],[-124,-220],[-117,-207],[-132,-233],[-184,-328],[-111,-195],[-101,-296],[-89,-259],[-128,-375],[-117,-340],[-156,-458],[-86,-249],[-93,-271],[-124,-364],[-417,-1215],[-330,-961],[-112,-326],[-91,-289],[-96,-255],[-150,-435],[-213,-614],[-121,-349],[-186,-537],[-98,-283],[-96,-277],[-89,-257],[-89,-248],[-109,-287],[-96,-250],[-103,-300],[-87,-262],[-173,-518],[-115,-344],[-93,-281],[-69,-295],[-186,-570],[-95,-320],[-27,-108],[-108,-426],[-94,-292],[-33,-95],[-242,-706],[-307,-739],[-148,-417],[-167,-496],[-138,-407],[-95,-280],[-408,-1206],[-214,-629],[-155,-457],[-219,-629],[-282,-816],[-212,-580],[-86,-258],[-91,-246],[-229,-659],[-87,-259],[-172,-507],[-275,-812],[-159,-483],[-91,-269],[-668,-1929],[-209,-601],[-134,-385],[-102,-294],[-153,-443],[-98,-281],[-143,-435],[-141,-438],[-198,-616],[-217,-594],[-190,-515],[-84,-245],[-21,-65],[-108,-336],[-233,-673],[-86,-246],[-205,-594],[-116,-334],[-53,-154],[-32,-96],[-209,-628],[-102,-299],[-71,-211],[-33,-97],[-214,-634],[-93,-274],[-261,-718],[-88,-271],[-83,-253],[-94,-285],[-123,-374],[-451,-1374],[-83,-254],[-103,-314],[-140,-406],[-279,-804],[-98,-283],[-120,-345],[-120,-345],[-94,-268],[-346,-955],[-92,-256],[-106,-292],[-122,-338],[-197,-548],[-99,-283],[-119,-357],[-130,-393],[-194,-530],[-94,-271],[-108,-310],[-264,-729],[-314,-978],[-106,-332],[-21,-61],[-252,-747],[-172,-510],[-241,-749],[-269,-787],[-418,-1144],[-847,-2536],[-436,-1286],[-142,-419],[-621,-1824],[-117,-348],[-149,-385],[-209,-617],[-333,-985],[-114,-338],[-280,-757],[-308,-891],[-123,-393],[-200,-642],[-92,-295],[-111,-311],[-243,-733],[-1304,-3872],[-422,-1240]],[[727985,788492],[-174,158],[-135,-22],[-131,105],[-102,192],[-148,135],[-138,235],[-139,193],[-118,-24],[-101,-245],[-92,-230],[-111,-183],[121,-78],[134,-258],[-83,-263],[-126,-84],[-99,242],[-121,-118],[-70,298],[-102,462],[70,288],[104,325],[122,522],[80,359],[-65,336],[-157,205],[-121,155],[-185,218],[-90,231],[59,303],[49,352],[65,340],[109,256],[105,298],[63,314],[61,341],[-200,311],[-109,156],[-121,-4],[-123,43],[65,353],[121,287],[117,221],[78,391],[-75,284],[-47,376],[-52,355],[13,371],[39,421],[-73,407],[-62,306],[68,294],[71,284],[98,249],[14,339],[-77,494],[-66,294],[-71,346],[-48,446],[0,428],[-102,297],[-39,446],[-134,154],[-122,123],[-84,280],[-143,-13],[-112,-206],[-177,-183],[-106,-223],[-111,143],[-137,-164],[-116,-128],[-120,118],[-121,84],[-99,194],[-121,-68],[-123,164],[-56,330],[-86,238],[-111,134],[-220,234],[-100,185],[-158,-136],[-117,-93],[-116,71],[-147,214],[-122,114],[-120,-145],[-147,-38],[-118,307],[-102,313],[-118,138],[-92,245],[-74,311],[-112,165],[-114,167],[-131,163],[-132,18],[-129,42],[-120,98],[2,379],[3,486],[-120,270],[-116,199],[-131,81],[-119,82],[-100,208],[-92,266],[-67,288],[-90,244],[-74,274],[-61,299],[-99,233],[-57,327],[-71,335],[-71,310],[-78,319],[-79,314],[-167,160],[-132,70],[-146,42],[-81,279],[-117,229],[-40,339],[-90,255],[-13,404],[-90,235],[-69,280],[-1,388],[-3,389],[-16,381],[-80,279],[-58,312],[16,401],[-101,194],[-97,224],[-130,226],[-52,417],[-119,113],[-29,396],[-21,342],[-57,360],[-119,214],[-121,-16],[-114,-159],[-127,38],[-123,-9],[-128,58],[-113,222],[-9,21],[-90,218],[-78,261],[-126,24],[-121,101],[-128,91],[-96,209],[-113,134],[-81,268],[-86,282],[-91,258],[-104,180],[-52,333],[-101,231],[-73,280],[-77,279],[-101,220],[-118,73],[-132,52],[-118,42],[-101,193],[-135,-18],[-124,-52],[-114,-124],[-100,-207],[-123,-42],[-120,105],[-115,166],[-115,149],[-120,23],[-122,6],[-120,-163],[-261,118]],[[713847,821083],[-296,203],[-308,212],[-296,204],[-201,139],[-293,195],[-437,292],[-145,97],[-192,127],[-878,593],[-326,221],[-216,146],[-208,140],[-1114,745],[-136,92],[-146,99],[-163,110],[-307,208],[-688,461],[-538,362],[-45,30],[-301,203],[-335,226],[-118,79],[-379,257],[-247,168],[-120,82],[-246,167],[-161,116],[-238,157],[-147,97],[-115,87],[-223,144],[-134,86],[-169,111],[-218,134],[-282,210],[-350,218],[-117,69],[-389,183],[-252,178],[-231,162],[-261,171],[-356,235],[-128,84],[-655,451],[0,1],[-270,179],[-123,80],[-270,175],[-198,133],[-149,102],[-170,116],[-235,161],[-177,107],[-170,113],[-169,110],[-180,117],[-118,77],[-356,232],[-148,97],[-270,179],[-72,48],[-120,79],[-229,151],[-335,223],[-118,78],[-126,85],[-288,194],[-196,132],[-439,299],[-122,84],[-477,329],[-174,113],[-167,108],[-148,88],[-172,103],[-319,225],[-4,3],[-206,143],[-672,428],[-117,76],[-6,4],[-240,175],[-239,159],[-172,117],[-290,197],[-140,96],[-364,247],[-232,154],[-287,190],[-231,154],[-149,100],[-125,85],[-54,37],[-142,96],[-581,395],[-214,146],[-574,386],[-415,279],[-575,392],[-367,249],[-128,93],[-315,196],[-119,82],[-214,148],[-303,210],[-287,187],[-195,127],[-227,150],[-256,170],[-185,121],[-330,217],[-136,88],[-200,130],[-126,82],[-423,270],[-119,85],[-240,170],[-779,553],[-153,97],[-250,159],[-152,120],[-473,304],[-191,123],[-124,84],[-170,114],[-305,191],[-137,98],[-211,151],[-565,370],[-130,105],[-224,129],[-132,79],[-122,72],[-253,169],[-133,89],[-157,105],[-319,216],[-153,103],[-116,79],[-131,91],[-140,91],[-121,81],[-444,305],[-295,204],[-224,87]],[[677434,845355],[142,450],[388,126],[133,702],[50,445],[56,507],[137,196],[132,36],[132,26],[144,152],[139,130],[146,89],[180,150],[115,87],[128,42],[140,120],[120,120],[180,64],[147,-83],[209,-50],[136,-203],[112,619],[38,421],[119,820],[106,297],[135,130],[192,241],[139,91],[127,268],[111,262],[80,286],[-133,102],[29,358],[119,235],[103,232],[158,121],[112,129],[132,217],[149,142],[196,204],[150,198],[113,112],[114,196],[229,341],[165,338],[118,52],[131,285],[144,425],[138,162],[139,212],[90,322],[22,441],[41,326],[192,176],[156,54],[115,228],[111,234],[187,269],[77,264],[45,347],[44,323],[175,278],[162,-83],[174,-42],[126,330],[138,481],[92,254],[76,432],[0,402],[149,760],[12,455],[56,304],[76,404],[153,366],[74,405],[105,414],[162,586],[72,290],[88,354],[78,290],[126,414],[118,350],[97,316],[194,609],[86,266],[134,201],[147,190],[149,67],[131,61],[131,-26],[125,7],[153,14],[140,-35],[160,118],[387,108],[111,205],[24,385],[19,382],[102,253],[138,345],[144,509],[33,523],[10,363],[49,395],[108,435],[112,383],[68,365],[76,389],[40,351],[2,371],[16,385],[72,377],[-5,349],[47,553],[67,340],[72,403],[123,495],[88,505],[74,384],[71,337],[77,525],[87,459],[54,343],[70,364],[68,352],[6,31],[64,315],[70,299],[126,206],[98,222],[189,436],[135,312],[93,215],[141,525],[87,348],[78,267],[202,481],[127,231],[178,294],[109,273],[161,471],[92,296],[172,601]],[[693324,885929],[102,1029],[558,1372],[-48,2085],[197,1853],[278,1243],[370,2219],[509,1959],[768,2562],[454,3916],[395,2443],[-64,2307],[381,1736],[194,1871],[679,2432],[151,1264],[591,2307],[424,554],[463,1568],[375,1903],[442,3391],[-389,391],[23,1785],[280,654],[622,537],[30,336],[87,964],[267,693],[185,-95],[-51,2056],[319,1292],[308,945],[1,1525],[218,1721],[315,2009],[783,3010],[627,2832],[538,1475],[882,1143],[698,1008],[48,69],[103,148],[756,13],[139,-20],[600,-89],[937,-731],[594,-42],[475,392],[364,682],[312,587],[638,415],[574,-791],[1017,-2116],[746,-671],[959,-1265],[800,-574],[615,-138],[695,-156],[5,-7],[412,-645],[1145,-920],[851,-283],[706,259],[1032,-567],[985,85],[630,489],[873,677],[1122,118],[491,-1651],[-1,-1381],[-124,-699],[123,-586],[-1,-1550],[443,-1688],[521,-962],[136,-591],[295,-1273],[423,-1160],[236,-648],[326,-1388],[946,-1223],[544,-461],[885,-749],[1345,-1949],[1426,-751],[638,-337],[878,-1321],[276,-655],[362,-857],[201,-477],[427,-1009],[1752,-3080],[293,-1587],[-137,-1117],[-621,-1456],[-736,-1415],[-484,-1569],[-30,-647],[-114,-664],[-34,-1114],[82,-806],[27,-261],[-80,-1036],[-186,-964],[-514,-1168],[-511,-608],[-1708,-967],[-757,-526],[-503,-999],[-547,-2116],[-463,-2293],[-262,-1644],[-259,-2907],[-163,-1393],[-282,-704],[31,-1947],[45,-1837],[159,-1371],[43,-730],[228,-1320],[275,-1224],[286,-659],[477,-535],[242,-49],[481,-489],[492,-478],[722,-536],[367,-278],[404,-306],[693,-853],[585,-1363],[365,-1254],[87,-349],[162,-788],[209,-1278],[295,-1021],[214,-579],[2,-4],[112,-238],[42,-360],[-81,-473],[3,-454],[403,-1397],[248,-1016],[148,-856],[147,-341],[742,-771],[448,-167],[399,-154],[292,-222],[406,32],[893,-425],[404,-275],[268,-354],[449,-299],[464,-312],[396,4],[330,-62],[444,-258],[416,-249],[501,-101],[502,69],[501,-282],[662,-425],[399,-169],[321,46],[276,119],[754,-295],[502,-59],[506,177],[1026,180],[878,-79],[1048,192],[242,-115],[482,-367],[111,-159],[87,-606],[422,-363],[407,-424]],[[677434,845355],[-24,-84],[-112,-386],[-96,-490],[-105,-543],[-117,-276],[-119,-208],[-338,-585],[-192,-184],[-142,-242],[-112,-366],[-150,-319],[-145,-168],[-192,98],[-189,-22],[-122,-19],[-112,-145],[-120,-110],[-346,-718],[-158,-293],[-128,-261],[-114,-116],[-140,-292],[-110,-359],[49,-366],[29,-494],[-165,-232],[-109,-271],[-112,-214],[-117,-322],[-65,-299],[-121,-460],[-101,-379],[-152,-392],[-136,-242],[-105,-167],[-22,-36],[-117,-86],[-89,-283],[-24,-586],[-78,-289],[-164,-471]],[[672452,833678],[-139,297],[-458,979],[-522,1116],[-1014,2168],[-691,1473],[-156,306],[-375,731],[-116,245],[-359,751],[-103,217],[-196,410],[-247,516],[-282,592],[-238,500],[-210,441],[-106,219],[-110,231],[-112,236],[-146,286],[-108,210],[-562,1103],[-183,374],[-27,16],[-106,65],[-123,-54],[-283,-126],[-304,-133],[-320,-141],[-211,-98],[-125,-58],[-297,-137],[-212,-98],[-233,-108],[-227,-104],[-148,-69],[-142,-71],[-118,-82],[-123,-85],[-116,-81],[-388,-246],[-320,-134],[-294,-125],[-168,-70],[-356,-13],[-179,223],[-155,194],[-236,294],[-493,615],[-307,377],[-270,331],[-163,200],[-138,169],[-109,134],[-346,433],[-835,1051],[-156,190],[-22,27],[-1000,1222],[-1265,1552],[-727,890],[-53,65]],[[669024,931124],[3887,-7211],[35,-65],[4765,-8840],[3800,-7051],[977,-1814],[3172,-5886],[3791,-7036],[1847,-3426],[2026,-3866]],[[635664,843386],[-144,-244],[-112,-152],[-28,-38],[-174,-127],[-124,-60],[-105,-180],[-101,-306],[-68,-205],[-36,-109],[-65,-435],[-93,-296],[-86,-295],[-17,-60],[-102,-218],[-162,-57],[-145,131],[-10,8],[-26,25],[-125,224],[-163,129],[-167,20],[-177,-287],[-18,-348],[-3,-52],[30,-87],[56,-160],[116,-346],[106,-280],[225,-497],[45,-360],[-130,-133],[-21,-241],[-9,-95],[71,-294],[81,-252],[13,-25],[112,-225],[124,-61],[124,-129],[73,-141],[82,-159],[100,-203],[191,-539],[120,-174],[161,-226],[40,-56],[103,-241],[5,-29],[123,-645],[-170,-339],[-121,-298],[-15,-378],[73,-329],[1,-72],[3,-277],[-48,-208],[-14,-60],[-45,-196],[-102,-405],[-34,-333],[-119,-212],[-221,117],[-124,325],[-149,360],[-31,84],[-56,150],[-103,242],[-104,229],[-201,543],[-92,149],[-32,51],[-261,400],[-18,26],[-135,57],[-50,-21],[-52,-22],[-137,-57],[-219,-393],[-15,-441],[98,-318],[51,-166],[81,-195],[54,-134],[93,-560],[23,-76],[65,-227],[97,-250],[136,-348],[178,-458],[108,-279],[298,-766],[272,-698],[536,-1380],[246,-634],[136,-348],[222,-573],[444,-1142],[352,-905],[728,-1867],[15,-38],[311,-798],[-102,-433],[-100,-476],[-125,-459],[-127,-410],[-108,-566],[-51,-310],[-12,-399],[-70,-310],[-95,-456],[-13,-361],[-76,-503],[-72,-535],[8,-408],[-106,-318],[-87,-313],[-85,-277],[-123,-228],[-150,-198],[-75,-268],[-128,-278],[-123,-162],[-153,-247],[-201,-174],[-182,-224],[-131,-313],[-34,-334],[-176,-851],[-48,-324],[-53,-529],[-70,-395],[-149,-1047],[-68,-541],[-58,-362],[-27,-339],[-85,-302],[-150,-620],[-104,-249],[-84,-258],[-76,-362],[-106,-239],[-31,-388],[-103,-292],[-67,-339],[-94,-278],[-149,-272],[-72,-332],[-147,-465],[-53,-354],[-24,-664],[443,13],[150,38],[155,-3],[64,-426],[-52,-386],[-34,-431],[-75,-268],[-59,-458],[-61,-296],[-58,-373],[-94,-357],[-110,-426],[-103,-264],[-142,-600],[-73,-296],[-90,-233],[-75,-289],[-73,-402],[-190,-368],[-180,-504],[-92,-228],[-69,-410],[-236,-369],[-271,-319],[-82,-251],[-91,-260],[-180,-282],[-104,-195],[-260,-610],[-181,-390],[-144,-366],[-107,-477],[-120,-131],[-152,-317],[-65,-344],[-212,-441],[-103,-349],[-131,-394],[-128,-537],[-208,-426],[-73,-303],[-108,-389],[-206,-553],[-107,-198],[-109,-198],[-86,-491],[-83,-322],[-150,-389],[-122,-334],[-154,-603],[-105,-251],[-156,-391],[-69,-361],[-133,-408],[-111,-402],[-101,-279],[-130,-427],[-103,-272]],[[627093,782630],[-96,-210],[-125,-356],[-157,-289],[-119,-249],[-90,-261],[-123,-441],[-124,-384],[-120,-344],[-93,-226],[-132,-224],[-150,-298],[-117,-195],[-114,-215],[-146,-373],[-157,-397],[-131,-240],[-161,-237],[-116,-212],[-89,-295],[-97,-221],[-134,-221],[-93,-364],[-157,-336],[-110,-185],[-91,-220],[-63,-331],[-124,-306],[-123,-260],[-101,-248],[-125,-248],[-73,-325],[-135,-356],[-125,-204],[-91,-246],[-149,-410],[-130,-397],[-184,-348],[-107,-312],[-188,-521],[-149,-560],[-109,-454],[-91,-339],[-110,-152],[-117,-317],[-128,-706],[-170,-480],[-241,-557],[-250,-662],[-106,-267],[-104,-384],[-91,-386],[-188,-421],[-288,-575],[-100,-347],[-86,-262],[-115,-223],[-122,-158],[-155,-425],[-91,-314],[-75,-386],[-81,-350],[-99,-370],[-118,-278],[-130,-235],[-138,-375],[-59,-427],[-137,-345],[-118,-259],[-150,-210],[-115,-304],[-152,-370],[-108,-373],[-98,-389],[-99,-391],[-75,-297],[-170,-469],[-179,-301],[-111,-389],[-108,-505],[-106,-182],[-113,-168],[-114,-276],[-177,-217],[-92,-242],[-107,-187],[-127,-249],[-148,-329],[-139,-223],[-121,-274],[-165,-206],[-118,-185],[-119,-154],[-196,-275],[-227,-432],[-317,-148],[-314,-24],[-141,-128],[-203,-474],[-218,-487],[-120,-337],[-134,-370],[-335,-1059],[-174,-481],[-218,-862],[-402,-1246],[-913,898],[-332,292],[-623,597],[-292,278],[-12,11],[-991,934],[-1003,945],[-247,234],[-279,265],[-158,-792],[-144,-1026],[-42,-810],[-80,-262],[-140,-302],[-65,-543],[-86,-249],[-159,-428],[-151,-748],[-139,-505],[-302,-1028],[-522,-1423],[-284,-812],[-164,-602],[-87,-288],[-122,-216],[-158,-662],[-143,-324],[-135,-571],[-144,-239],[-362,-1499],[-343,-1157],[-343,-1292],[-195,-732],[-54,-351],[-347,-1000],[-368,-1792],[-87,-686],[-125,-514],[-64,-400],[-118,-459],[-381,-1973],[-228,-1564],[-134,-594],[-97,-755],[-104,-434],[-107,-739],[-116,-685],[-80,-686],[-159,-787],[-91,-538],[-50,-334],[-128,-387],[-133,-827],[-8,-478],[-57,-192],[-56,-189],[-170,-748],[-150,-638],[-160,-709],[-83,-489],[-105,-954],[-78,-436],[-170,-611],[-72,-568],[-180,-785],[-68,-519],[-205,-322],[-109,-529],[-95,-506],[-28,-467],[-90,-485],[-321,-689],[-104,-239],[-110,-361],[-190,-289],[-232,-549],[-219,-600],[-167,-283],[-123,-212],[-118,-312],[-114,-612]],[[596844,705566],[-906,1846],[-275,560],[-542,1102],[-111,227],[-595,1215],[-234,478],[-124,252],[-382,775],[-279,519],[-79,159],[-196,398],[-252,510],[-158,322],[-159,322],[-429,868],[-123,249],[-3,5],[-139,269],[-235,463],[-35,69],[-86,166],[-272,536],[-518,1016],[-511,1002],[-234,459],[-227,445],[-6,12],[-173,336],[-129,255],[-116,216],[-26,53],[-381,757],[-207,386],[-246,472],[-135,257],[-4,7],[-1300,2500],[-362,696],[-564,1084],[-411,788],[-174,334],[-130,247],[-291,563],[-344,746],[-106,224],[-98,215],[-104,229],[-216,398],[-177,367],[-104,147],[-8,10],[-132,234],[-152,307],[-221,449],[-889,1817],[-380,775],[-134,269],[-247,507],[-228,529],[-121,264],[-149,311],[-288,602],[-143,265],[-117,195],[-256,502],[-459,901],[-552,1122],[-323,650],[-386,777],[-116,251],[-146,293],[-429,875],[-345,696],[-118,243],[-1172,2383],[-749,1525],[-372,755],[-265,536],[-318,644],[-368,754],[-162,320],[-404,830],[-315,633],[-522,1072],[-252,506],[-246,501],[-425,846],[-922,1893],[-809,1659],[-430,883]],[[569866,759671],[1229,5537],[1384,5603],[1848,6604],[3790,18569],[795,2627],[826,3517],[1153,1998],[1723,2257],[657,1521],[186,1195],[510,1400],[-18,1488],[1113,3200],[424,599],[121,171],[1535,1186],[735,1557],[-61,-1181],[-311,-7017],[72,-1917],[325,-609],[540,1494],[954,2178],[723,-119],[347,999],[864,2451],[926,182],[1259,3323],[1280,4219],[955,4996],[523,2102],[968,-451],[536,2016],[244,1858],[480,1244],[871,277],[202,-2576],[526,268],[371,97],[117,-1934],[1013,-2008],[179,1221],[816,1280],[865,3740],[653,2635],[1438,4403],[785,1901],[632,1731],[702,1365],[-820,1138],[-701,1687],[-388,236],[-633,1701],[157,330],[1935,5161],[565,1519],[641,1419]],[[777327,818248],[-141,-302],[-25,-54],[-101,-231],[-135,-303],[-7,-16],[-94,-211],[-97,-214],[-152,-343],[-156,-353],[-98,-222],[-180,-407],[-125,-284],[-211,-476],[-105,-239],[-120,-271],[-101,-228],[-483,-1094],[-102,-231],[-225,-509],[-164,-368],[-123,-273],[-111,-247],[-125,-285],[-197,-443],[-111,-250],[-108,-245],[-225,-507],[-151,-341],[-151,-339],[-149,-338],[-134,-302],[-105,-239],[-220,-495],[-142,-326],[-129,-289],[-109,-249],[-139,-315],[-208,-470],[-245,-553],[-105,-238],[-148,-336],[-6,-13],[-252,-572]],[[771112,804227],[-213,77],[-229,121],[-138,72],[-136,71],[-178,94],[-174,91],[-124,66],[-301,158],[-168,88],[-323,141],[-69,-375],[-64,-346],[-37,-200],[-64,-348],[-59,-320],[-91,-491],[-93,-510],[-58,-311],[-92,-620],[54,-306],[78,-344],[59,-299],[63,-318],[88,-448],[105,-534],[77,-409],[158,162],[132,65],[194,32],[34,3],[104,7],[121,21],[121,20],[139,19],[131,22],[58,43],[91,67],[43,-22],[77,-39],[193,-69],[364,-164],[127,-137],[186,-195],[158,-165],[118,-125],[123,-129],[190,-199],[144,-155],[131,-136],[192,-203],[258,-271],[230,-23],[9,-1],[87,-25],[103,-280],[110,-141],[118,135],[222,243],[126,44],[149,-29],[11,766]],[[773777,798168],[126,-280],[178,-403],[228,-512],[102,-230],[112,-253],[143,-324],[173,-387],[317,-711],[49,-110],[56,-126],[110,-246],[104,-231],[419,-933],[104,-237],[227,-508],[199,-439],[133,-294],[120,-265],[94,-209],[119,-289],[126,-304],[112,-250],[43,-95],[108,-234],[102,-228],[118,-281],[136,-320],[114,-232],[94,-213],[125,-270],[107,-239],[174,-394],[140,-319],[8,-608],[1,-15]],[[778398,787179],[-210,-183],[-345,-305],[-298,-261],[-120,-111],[-124,-104],[-163,-59],[-66,287],[-331,12],[-85,-353],[-58,-329],[71,-308],[60,-296],[-369,-219],[-286,-861],[-126,-372],[-125,-109],[-125,-108],[-205,-241],[38,-327],[-97,-216],[-180,-344],[-233,-481],[-115,-208],[-106,-289],[-79,-262],[-3,-347],[55,-316],[334,-2],[120,-872],[-96,-225],[-132,-398],[116,-244],[-88,-245],[-104,-338],[-1,-3],[-26,37],[-84,116],[-3,-11],[-80,-242],[-154,-577],[-80,-315],[-2,-216],[-2,-181],[-5,-415],[-76,-475],[39,-428],[50,-618],[32,-381],[117,-144],[142,-916],[87,-561],[66,-423],[253,113],[11,-433],[9,-375],[430,176],[216,89],[200,85],[258,103],[249,127],[273,110],[207,84],[128,31],[133,78],[224,152],[143,116],[182,180],[226,262],[115,-90],[41,-282],[8,-59],[130,105],[147,104],[141,84],[128,62],[166,63],[127,34],[155,20],[119,6],[80,4],[125,-9],[159,-28],[144,-41],[303,-97],[35,-12],[113,-37],[453,-150],[146,-49],[151,-59],[124,-41],[123,-41],[145,-50],[128,-46],[142,-52],[82,-25],[48,-14],[144,-51],[158,-59],[121,-41],[39,-12],[79,-24],[126,-55],[150,-78],[176,-114],[44,-34],[143,-110],[154,-144],[124,-130],[182,-206],[217,-247],[295,-392],[81,-269],[219,-215],[178,-203],[225,-310],[100,-144],[31,-44],[107,-156],[136,-188],[136,-136],[126,-191],[87,-150],[39,-67]],[[785480,768820],[-205,-788],[-144,-330],[-177,-407],[100,-425],[75,-317],[170,-597],[268,-653],[177,-885],[-146,-875],[51,-862],[284,-574],[-261,-368],[235,-511],[-105,-888],[20,-711],[-87,-603],[19,-586],[227,-580],[-101,-781],[101,-581],[-37,-730],[-57,-711],[171,-789],[270,-977],[168,-780],[-44,-680],[-79,-279],[73,-285],[124,-667],[6,-351],[11,-489],[-6,-352],[2,-669],[2,-553],[2,-410],[-1,-367],[6,-429],[-36,-342],[-35,-329],[-54,-873],[-84,-765],[-219,-1057],[-341,-1016],[-215,-331],[-114,-169],[-120,-170],[-116,-269],[-280,-100],[-126,60],[-213,-56],[-119,-7],[-334,-56],[-212,10],[-129,18],[-137,4],[-147,12],[-197,26],[-305,42],[-320,833],[-144,44],[-123,87],[-115,101],[-118,26],[-114,-123],[-68,-313],[-101,-274],[-6,-349],[-158,-856],[-306,-323],[-127,-110],[-134,-161],[-115,-168],[-131,-150],[-101,-202],[-214,-381],[-151,-165],[-99,-205],[-116,-183],[-92,-228],[-101,-196],[-274,-537],[-334,-272],[-120,-10],[-126,-87],[-273,-196],[-301,157],[-246,91],[-317,185],[-358,263],[-220,400],[-260,426],[-232,764],[-174,421],[-295,-45],[-216,85],[-267,210],[44,-1054],[266,-371],[115,-994],[246,-1017],[141,-902],[52,-743],[99,-918],[-17,-721],[-116,-582],[-98,-459],[-170,-723],[-81,-254],[-81,-308],[-259,-781],[-98,-249],[-288,-677],[-610,-276],[-386,194],[-302,107],[-295,667],[-280,407],[-231,118],[-217,292],[-227,451],[-256,746],[-88,731],[213,584],[29,1239],[-279,1306],[-234,300],[-71,-217],[-160,-485],[-96,-903],[-229,-648],[-17,-781],[-183,-617],[-148,584],[-336,-156],[-449,-178],[-393,-2],[-262,194],[-362,-220],[-478,-132],[-307,362],[-32,-1154],[386,-426],[421,-149],[285,-3],[225,-497],[346,166],[326,-325],[275,-313],[338,-583],[305,-1010],[348,-555],[317,-121],[187,-656],[326,-566],[357,-357],[7,-986],[93,-1022],[133,-1018],[310,-142],[267,-350],[191,-565],[215,-573],[315,-440],[229,-550],[9,-357],[-12,-357],[74,-300],[132,-249],[171,-716],[-42,-331],[57,-322],[31,-339],[155,-873],[34,-387],[71,-570],[-319,-113],[-244,21],[-402,36],[-555,68],[-270,-25],[-411,-106],[-444,166],[-414,600],[-178,982],[-474,-175],[-271,-356],[-137,-889],[269,-268],[211,-664],[-356,-534],[-182,-1211],[-339,-832],[-375,-388],[-324,-148],[-131,-59],[-133,-55],[-217,-135],[-123,-60],[-114,-138],[-125,-170],[-363,-278],[-121,-46],[-117,-68],[-142,-131],[-162,-98],[-95,-220],[-387,-209],[-131,16],[-123,20],[-141,10],[-136,-36],[-121,-69],[-123,-93],[-122,-154],[-131,-208],[-218,144],[-131,804],[202,1004],[-345,952],[-332,731],[-301,782],[-223,1004],[-176,1022],[327,271],[419,-25],[469,323],[217,659],[219,630],[192,460],[152,892],[190,566],[181,311],[274,500],[-194,1481],[-271,189],[-206,511],[-317,501],[-260,96],[-337,-216],[-321,-238],[-372,-150],[-212,379],[-354,-114],[-320,124],[-276,32],[-259,351],[262,862],[35,1262],[-196,-347],[-181,-652],[-194,-533],[-228,82],[-189,354],[-315,347],[-381,669],[-312,624],[-12,25],[-165,404],[-26,68],[-329,856],[59,-404]],[[762815,727665],[-231,684],[-96,174],[-20,35],[-123,144],[-120,-49],[-123,53],[-109,148],[-113,142],[-119,92],[-115,215],[-117,425],[2,346],[-58,410],[-115,642],[-90,247],[-95,243],[-91,269],[-97,202],[-86,242],[-1,7],[-90,503],[-121,177],[-131,164],[-165,164],[-160,165],[-127,175],[-130,242],[-95,288],[-103,217],[-132,115],[-120,90],[-161,314],[-153,288],[-95,290],[-114,318],[-100,223],[-146,271],[-22,25],[-90,103],[-137,60],[-140,-42],[-122,22],[-117,189],[-133,172],[-141,180],[-155,344],[-101,268],[-117,234],[-152,239],[-115,149],[-127,139],[-229,237],[-149,209],[-150,174],[-132,132],[-166,134],[-138,140],[-125,240],[-71,272],[-58,400],[-71,361],[-89,156],[-20,35],[-36,4],[-85,10],[-122,-75],[-297,-183],[-172,-123],[-109,-135],[-120,-229],[-90,-280],[-59,-340],[-65,-468],[-115,-197],[-115,-88],[-143,-116],[-137,-45],[-143,20],[-147,-27],[-126,-118],[-142,-99],[-131,2],[-124,50],[-126,83],[-176,129],[-109,146],[-92,328],[10,363],[70,331],[84,254],[92,216],[123,229],[119,196],[138,185],[117,152],[140,186],[19,340],[-33,397],[-98,305],[-113,149],[-130,16],[-113,-113],[-129,-182],[-148,-115],[-146,-69],[-181,-96],[-264,-128],[-131,36],[-97,212],[-12,379],[46,368],[68,330],[88,559],[-4,354],[-77,313],[-109,184],[-118,140],[-123,120],[-137,97],[-141,58],[-145,21],[-141,-1],[-145,30],[-141,75],[-128,156],[-129,143],[-143,49],[-182,-35],[-149,5],[-192,63],[-123,96],[-118,149],[-111,245],[-97,321],[-184,479],[-123,122],[-114,-160],[-119,-239],[-112,-283],[-90,-301],[-89,-407],[-64,-344],[-54,-344],[-55,-449],[-38,-345],[-95,-569],[-106,-174],[-122,-86],[-124,-70],[-131,-205],[-63,-348],[-15,-404],[-55,-308],[-119,-144],[-152,39],[-131,141],[-217,339],[-106,283],[-258,856],[-64,211],[-100,378],[-88,372],[-72,390],[-53,404],[-34,434],[-14,426],[6,347],[31,463],[49,335],[74,347],[122,428],[70,319],[-10,374],[-18,521],[-23,442],[-34,336],[-53,325],[-71,307],[-103,339],[-104,254],[-135,255],[-110,293],[-114,317],[-115,180],[-349,411],[-115,136],[-118,265],[11,358],[64,324],[90,329],[54,349],[15,376],[-92,246],[-133,25],[-140,-5],[-153,57],[-155,142],[-128,4],[-138,-5],[-158,-142],[-134,63],[-90,357],[-113,265],[-138,285],[-138,14],[-113,-133],[-98,-261],[-53,-310],[-3,-349],[35,-340],[62,-339],[-2,-374],[-141,-15],[-138,41],[-146,-27],[-98,-259],[-122,-121],[-137,-35],[-167,61],[-26,346],[20,377],[55,315],[65,355],[99,298],[120,284],[118,284],[98,203],[92,315],[-60,353],[-112,142],[-137,174],[-141,178],[-134,207],[-129,178],[-129,173],[-125,183],[-146,100],[-69,333],[-57,376],[-34,398],[110,169],[127,148],[124,-85],[126,108],[35,398],[1,363],[-39,370],[-153,308],[-131,61],[-43,320],[54,604],[86,297],[148,236],[86,294],[-106,219],[-122,208],[-170,264],[-145,235],[-158,183],[-140,82],[-107,201],[-127,176],[-70,294],[-1,5],[-123,164],[-131,102],[-111,122],[-169,220],[-107,245],[-105,186],[-114,231],[-141,27],[-94,-239],[-106,-176],[-121,94],[-9,389],[20,462],[0,488],[9,369],[37,426],[-40,401],[-95,280],[-97,229],[-113,263],[-81,329],[-1,423],[3,360],[-79,340],[-91,492],[-36,332],[-53,318],[-72,575],[-93,271],[-72,273],[-154,483],[-69,402],[-103,220],[-422,25],[-126,-67],[-112,-179],[-42,-77],[-65,-118],[-85,-306],[70,-533],[-59,-299],[-74,-371],[-28,-348],[-91,-256],[-117,-119],[-212,-42],[-124,40],[-134,-2],[-70,384],[-140,156],[-128,-123],[-70,-342],[-110,-206],[-139,-54],[-113,140],[-124,144],[-199,54],[-122,-62],[-152,-145],[-133,-12],[-122,1],[-119,136],[-152,24],[-130,45],[-121,267],[-91,256],[-16,386],[-143,43],[-125,-49],[-181,-111],[-54,-398],[-46,-413],[-126,89],[-113,112],[-126,15],[-130,20],[-104,-188],[-120,-29],[-117,123],[-125,39],[-142,110],[-141,88],[-146,29],[-143,-23],[-64,304],[-12,387],[33,374],[88,256],[182,550],[123,427],[89,382],[46,373],[16,400],[37,341],[-64,288],[-59,215],[-33,122],[-119,328],[-133,126],[-111,140],[-134,63],[-117,88],[-293,241],[-125,17],[-156,85],[-115,153],[-115,156],[-100,189],[-111,205],[-114,201],[-24,370],[-13,401],[-61,311],[-52,309],[30,347],[96,304],[90,287],[83,316],[1,4],[40,389],[-106,177],[-115,135],[-111,163],[-121,206],[-123,165],[-126,198],[-253,455],[-87,274],[47,375],[91,226],[64,365],[10,383],[-42,564],[94,222],[132,-13],[125,66],[34,336],[-85,277],[-50,320],[55,359],[-90,234],[-131,78],[-125,-59],[-101,-219],[-169,-131],[-183,-109],[-148,-172],[-135,-178],[-117,-128],[-148,-136],[-138,-169],[-133,-154],[-135,-79],[-131,8],[-172,60],[-143,43],[-129,33],[-150,-115],[-126,99],[-101,184],[-197,318],[-120,94],[-137,119],[-135,410],[-59,304],[-42,363],[50,486],[61,312],[64,318],[74,359],[-114,119]],[[752842,860180],[202,-387],[239,-235],[218,-448],[113,-168],[123,51],[339,-396],[491,-196],[378,148],[262,-106],[614,-816],[428,-476],[51,-56],[464,-501],[395,-702],[29,-52],[169,-400],[72,-168],[244,-576],[460,-801],[59,-102],[21,-42],[628,-1223],[435,-401],[58,-54],[104,-74],[577,-409],[231,-137],[645,-381],[499,-314],[14,-23],[53,-86],[361,-589],[326,-435],[184,-591],[141,-897],[14,-89],[-4,-98],[-40,-953],[-2,-28],[-10,-173],[-12,-190],[-127,-626],[-67,-312],[-215,-439],[-16,-33],[-216,-363],[-82,-304],[-163,-596],[-133,-750],[-80,-452],[-48,-561],[-19,-229],[-28,-324],[-17,-362],[83,-262],[73,-740],[75,-264],[92,-645],[148,-310],[129,-102],[175,-489],[73,-298],[74,-819],[261,-1751],[81,-698],[96,-240],[32,-21],[235,-158],[222,-311],[196,-512],[172,-536],[137,-354],[60,-153],[139,127],[76,301],[142,584],[233,166],[148,-228],[198,-909],[106,-705],[269,-648],[263,-292],[248,-61],[517,-284],[236,-275],[246,-151],[228,266],[123,56],[255,-187],[197,-394],[133,-131],[15,-15],[224,-224],[403,-221],[242,58],[215,322],[283,55],[363,-228],[117,98],[385,4],[213,305],[255,-72],[116,-52],[239,-108],[248,48],[369,-215],[117,-192],[278,-210],[90,229],[361,255],[126,-6],[343,-396],[252,-202],[247,-60],[273,12],[267,-51],[248,-30],[234,-204],[242,-325],[289,-644],[252,-792],[187,-604],[101,-184],[106,-279],[282,-678],[164,-574],[128,-660],[127,-693],[136,-574],[112,-635],[211,-1247],[70,-289],[100,-199],[218,-393],[282,-693],[422,-1016]],[[755569,795845],[-78,-842],[-38,-412],[-63,-601],[-189,-40],[-175,7],[-22,1],[-45,346],[-86,295],[-102,221],[-111,195],[-117,121],[-120,65],[-126,21],[-129,4],[-122,6],[-137,-39],[-165,-85],[-379,-194],[-121,-62],[-292,-149],[-415,-538],[-167,-787],[-109,-515],[-160,-754],[-94,-474],[-3,-15],[-108,-548],[-75,-379],[-24,-365],[111,-376],[16,-55],[121,42],[126,42],[85,-247],[43,-354],[47,-357],[5,-344],[82,-210],[105,-19],[332,-62],[84,-242],[309,-1057],[307,-265],[160,-288],[1,-348],[3,-834],[1,-345],[1,-395],[1,-263],[54,-72],[87,178],[152,312],[266,-130],[125,95],[46,-67],[54,143],[34,89],[170,-48],[274,79],[90,-371],[392,97],[98,-1122],[217,105],[-92,619],[221,43],[366,-16],[58,426],[-2,367],[309,-118],[198,-72],[123,-47],[137,-24],[214,-103],[134,-43],[-8,858],[104,-5],[47,1061],[172,-69],[302,-121],[145,-58],[275,-109],[2,426],[1,42],[32,-13],[173,-64],[138,-51],[476,-183],[131,-49],[62,802],[-80,685],[-130,1075],[154,980],[171,324],[19,723],[-106,486],[42,453],[54,573],[36,374],[-11,357],[-9,230],[-16,391],[-57,362],[-46,287],[-52,325],[-117,162],[-136,27],[-209,39],[-128,24],[-245,50],[-138,26],[-122,23],[-206,40],[-184,36],[-72,14],[-271,53],[-153,30],[-146,29],[-108,21],[-305,60],[114,1196],[-139,33],[-188,110],[-169,-131],[-206,-143],[-118,-72],[-132,-67],[-215,-111],[-149,-109],[-172,-258]],[[755170,788136],[-54,-421],[-80,-269],[-126,-488],[-5,5],[-199,175],[-143,126],[-138,108],[-138,106],[-131,105],[-158,125],[2,390],[190,-235],[119,19],[217,-6],[39,369],[144,83],[274,-51],[159,-119],[28,-22]],[[672452,833678],[-105,-319],[-109,-215],[-105,-381],[-103,-185],[-173,-216],[-60,-309],[-192,-347],[-111,-216],[-114,-284],[-176,-332],[-174,-81],[-138,-272],[-59,-413],[11,-353],[46,-506],[-71,-407],[-149,-250],[-124,-160],[-27,-358],[-55,-453],[-63,-367],[-51,-309],[-157,-542],[-58,-362],[-107,-282],[-50,-383],[-138,-319],[-98,-354],[-21,-382],[-91,-244],[-87,-277],[-113,-117],[-154,45],[-175,60],[-115,-161],[-135,-189],[-62,-306],[-155,-484],[-135,-358],[-75,-647],[-66,-348],[-31,-461],[-32,-451],[-35,-363],[-88,-260],[-117,-195],[-133,-64],[-140,80],[-179,-188],[-152,-214],[-228,-51],[-119,-50],[-135,-204],[-251,-439],[-129,-254],[-85,-263],[-169,-189],[-138,-63],[-146,-35],[-130,-49],[-166,50],[-128,-138],[-4,-356],[-43,-406],[-91,-252],[-130,-295],[-80,-335],[5,-404],[45,-334],[51,-318],[-62,-315],[-187,-537],[-93,-213],[-93,-377],[-84,-277],[-91,-335],[-67,-336],[-141,-108],[-125,-303],[-95,-422],[-240,-448],[-28,-468],[-16,-178],[-14,-159],[1,-346],[-38,-353],[-43,-373],[68,-144],[70,-146],[168,-322],[122,-338],[11,-505],[990,-727],[0,-394],[139,-32],[90,-235],[-67,-600],[-23,-338],[122,-165],[-29,-404],[-46,-1805],[-168,-18],[-192,129],[-196,172],[-114,227],[-617,-648],[-82,-1040],[-266,-230],[-189,488],[-205,-469],[-151,10],[-122,-8],[-488,-9],[-321,-12],[-183,-34],[-140,-30],[-120,-121],[-74,-440],[-132,-992],[-87,-349],[-797,-366],[-144,31],[-435,80],[-180,80],[-524,257],[-7,-453],[-234,-754],[-306,-92],[-425,-344],[-425,-298],[-223,-387],[-118,-267],[-92,-362],[-167,-322],[-176,-342],[-49,-811],[40,-350],[-7,-520]],[[657463,794497],[58,-428],[-13,-501],[-87,-116],[-29,-39],[-216,101],[-255,-380],[-373,-426],[-252,-81],[-215,152],[-71,-1050],[-150,-842],[-57,-374],[-76,-494],[-60,-414],[-310,-67],[-87,-259],[-206,-247],[-281,-807],[-214,-229],[-268,-321],[-168,-618],[-53,-386],[40,-391],[-273,-646],[166,-664],[-344,-199],[-215,-185],[-213,-514],[-251,-144],[-71,-713],[-50,-386],[-101,-285],[-27,-440],[58,-446],[28,-432],[-112,-614],[-16,-213],[-9,-133],[36,-357],[7,-407],[-10,-586],[-234,-141],[-291,118],[-351,-79],[-249,-340],[63,-308],[118,-405],[-40,-532],[-56,-1072],[-104,-707],[-69,-700],[-94,-681],[-63,-469],[12,-416],[-36,-505],[100,-297],[-132,-362],[-123,-452],[-64,-621],[-22,-727],[-181,-519],[-166,-389],[-167,-205],[0,-300],[0,-240],[-203,-254],[-321,-219],[-111,-701],[-107,-990],[-76,-709],[-311,-538],[-216,-685],[-259,-362],[-295,-329],[-242,-318],[-138,98],[-293,157],[-217,-23],[-44,-26],[-350,-210],[-339,-362],[-207,-365],[-168,-459],[-123,-392],[-198,-475],[-288,-17],[-169,184],[-127,129],[-147,12],[-117,-162],[-137,-137],[-85,-110],[-74,-94],[-129,-218],[-33,-389],[-114,-159],[-64,-299],[-91,-300],[-49,-403],[-145,-122],[-123,43],[-141,20],[-40,62],[-115,178],[-132,68],[-22,-47],[-81,-168],[-141,-251],[-93,-423],[-93,-250],[-168,-218],[-178,-87],[-79,-110],[-30,-42],[-127,-311],[-111,-166],[-148,127],[-134,221],[-100,335],[-146,141],[-184,-33],[-140,-76],[-194,-160],[-13,-6],[-159,-71],[-160,47],[-23,23],[-123,120],[-119,345],[-110,215],[-158,99],[-118,146],[-114,126],[-222,92],[-130,20],[-126,10],[-149,55],[-153,-75],[-20,1],[-104,6],[-193,-166],[-115,-135],[-4,-5],[-171,-223],[-107,-177],[-111,-235]],[[639165,758385],[-160,655],[-255,1038],[-222,946],[-79,435],[-29,470],[-50,368],[-5,360],[91,449],[84,347],[49,343],[41,505],[-29,518],[-28,371],[-104,488],[-122,243],[-112,167],[-129,233],[-81,319],[-88,287],[-182,-135],[-317,264],[-139,-111],[-131,-140],[-116,79],[-115,156],[-136,166],[-272,234],[-185,43],[-104,274],[-144,32],[-118,176],[-134,92],[-123,101],[-121,100],[-139,159],[-115,231],[-129,88],[-122,-18],[-175,-23],[-123,146],[-90,235],[-99,197],[-123,193],[-184,6],[-129,-26],[-123,276],[-117,75],[-114,135],[-196,517],[-93,278],[-158,143],[-106,225],[-88,229],[-113,184],[-30,375],[-73,272],[-94,336],[-56,351],[-110,199],[-60,328],[-105,306],[-111,171],[-105,234],[-110,206],[-186,66],[-86,-26],[-44,-13],[-131,-37],[-127,87],[-45,80],[-75,133],[-104,202],[-91,163],[-89,160],[-972,1788],[-746,1352],[-103,188],[-1357,2460],[-961,1741]],[[713847,821083],[-143,-647],[-62,-378],[-17,-535],[14,-425],[-69,-358],[-49,-425],[-117,-105],[-137,-296],[-105,-433],[-112,-483],[-97,-447],[-60,-348],[-66,-339],[47,-395],[64,-359],[-87,-397],[-57,-535],[47,-362],[-33,-328],[-136,-467],[-73,-494],[9,-361],[-99,-563],[-90,-271],[-112,-450],[-55,-337],[-122,-615],[-66,-323],[-110,-453],[-228,-886],[-192,-814],[-162,-764],[-87,-360],[-132,-574],[-75,-387],[-87,-370],[-116,-410],[-47,-406],[-1023,-1357],[-416,-551],[-95,-867],[-104,-458],[-141,-563],[-82,-502],[-18,-361],[-46,-334],[-71,-312],[-51,-440],[-58,-370],[-2,-360],[14,-698],[-34,-431],[-43,-405],[-61,-334],[-37,-339],[10,-515],[-17,-411],[-22,-629],[-71,-541],[-48,-404],[-15,-501],[0,-475],[-92,-866],[12,-408],[14,-497],[-63,-532],[-34,-532],[-114,-756],[-188,-1254],[-556,3],[-704,4],[3,-571],[5,-905],[5,-845],[8,-1531],[424,-1841],[225,-981],[1,-2],[62,-307],[166,-713],[152,-655],[294,-1260],[87,-359],[737,-3256],[16,-71],[623,-2759],[18,-79],[207,-875],[96,-434],[97,-433],[81,-375],[158,-739],[185,-859],[251,-1046],[27,-110],[27,-114],[74,-303],[63,-298],[114,-528],[6,-31],[136,-563],[146,-607],[77,-329],[102,-455],[91,-405],[339,-1539],[313,-1799],[677,-2573],[103,-411],[33,-144],[199,-843],[131,-498],[129,-566],[98,-430],[359,-1588],[142,-624],[72,-313],[166,-730],[208,-914],[349,-1548],[93,-403],[304,-1310],[116,-499],[127,-545],[126,-541],[358,-1586],[130,-578],[118,-511],[172,-734],[103,-451],[135,-594],[105,-457],[156,-673],[288,-1232],[71,-303],[101,-444],[138,-662],[78,-404],[346,-1592],[142,-607],[15,-64],[365,-1499],[83,-343],[291,-1258],[2,-12],[611,-2685],[160,-631],[68,-301],[116,-515],[516,-2295],[560,-2436],[98,-410],[118,-495],[181,-762],[63,-275],[3,-13],[363,-1636],[128,-519],[285,-1192],[19,-80],[251,-1161],[453,-1862],[31,-126],[40,-168],[125,-516],[281,-1163],[117,-466],[402,-1605],[85,-366],[130,-533],[97,-385],[203,-933],[133,-598],[390,-1654],[164,-678],[279,-1223],[71,-313],[394,-1717],[153,-661],[164,-711],[97,-424],[632,-2739],[202,-876],[178,-770],[73,-322],[805,-3526],[118,-357],[458,-1609]],[[728532,689019],[-601,-1768],[-331,-953],[-507,-1459],[-369,-1059],[-319,-913],[-642,-1784],[-743,-2068],[-175,-484],[-389,-1018],[-324,-848],[-334,-730],[-191,-413],[-480,-1050],[-106,-233],[-136,-284],[-100,-204],[-108,-253],[-135,-319],[-154,-362],[-697,-1638],[-5,-15],[-463,-1112],[-235,-563],[-145,-350],[-407,-975],[-109,-260],[-109,-260],[-91,-218],[-747,-1781],[-312,-746],[-209,-496],[-269,-639],[-440,-1046],[-580,-1376],[-259,42],[-91,-862],[-125,-926],[-499,-149],[-79,-285],[14,-394],[-89,-242],[-97,-426],[-3,-373],[17,-348],[107,-234],[113,-113],[-28,-362],[-139,-300],[117,-188],[108,-184],[5,-42],[1,-14],[34,-305],[-43,-401],[-24,-353],[31,-357],[75,-280],[90,-255],[36,-120],[48,-160],[83,-214],[8,-20],[0,-33],[6,-345],[46,-328],[17,-126],[-112,-139],[-103,-180],[-28,-442],[48,-382],[-37,-159],[-2,-7],[-47,-115],[-73,-110],[-96,-23],[-190,54],[-45,-93],[-31,-696],[3,-204],[280,-703],[39,-95],[20,-46],[134,-211],[107,-250],[1,-31],[43,-1018],[16,-388],[21,-513],[-147,-867],[-35,-210],[-132,-782],[-8,-44],[15,-355],[23,-571],[7,-156],[3,-14],[111,-455],[-3,-130],[-1,-35],[-48,-406],[-66,-204],[-37,-39],[-252,-180],[-100,-156],[-21,-110],[-131,-1267],[72,-2010]],[[716248,638903],[-118,-72],[-143,-93],[-330,98],[-126,162],[-144,195],[-143,207],[-155,139],[-188,256],[-110,146],[-113,137],[-132,157],[-123,190],[-99,204],[-123,191],[-127,204],[-118,126],[-144,138],[-123,140],[-143,137],[-125,166],[-133,82],[-116,142],[-152,50],[-115,87],[-119,52],[-148,-36],[-114,162],[-117,76],[-108,170],[-183,83],[-143,271],[-131,231],[-141,297],[-242,304],[-142,99],[-129,-6],[-544,112],[-143,190],[-197,330],[-130,169],[-255,148],[-214,43],[-167,-24],[-194,-131],[-120,-97],[-168,-254],[-125,78],[-126,100],[-134,-305],[-34,-446],[-87,-359],[-167,-375],[-95,-216],[-118,45],[-154,63],[-119,49],[-141,59],[-151,113],[-176,226],[-184,67],[-119,-23],[-136,-90],[-230,-137],[-119,-85],[-148,-147],[-189,-117],[-176,-160],[-235,-259],[-214,-155],[-159,-217],[-178,-739],[-73,-283],[-93,-296],[-99,-302],[-104,-231],[-143,-162],[-144,13],[-171,-38],[-159,43],[-101,243],[-80,432],[-17,355],[-16,356],[-70,295],[-91,408],[-51,383],[-34,437],[10,369],[-38,371],[-64,319],[-102,243],[-152,177],[-415,168],[-152,115],[-246,7],[-145,-14],[-139,70],[-112,135],[-183,327],[-165,420],[-85,298],[-58,360],[-25,359],[-74,430],[-113,372],[-142,223],[-110,260],[-63,386],[-81,482],[-51,818],[57,783],[109,736],[-43,664],[-44,392],[-46,492],[-19,357],[31,608],[21,562],[9,680],[35,407],[-56,373],[-125,178],[-130,70],[-129,166],[-112,123],[-131,94],[-169,184],[-164,171],[-129,118],[-137,34],[-150,77],[-117,125],[-169,496],[-108,307],[-58,299],[-110,532],[-32,399],[-5,387],[91,272],[142,224],[121,358],[-18,430],[-89,283],[-144,377],[-131,168],[-155,90],[-110,344],[-30,352],[12,538],[-9,393],[-16,517],[-81,606],[-64,374],[33,402],[35,378],[-36,401],[-133,69],[-168,-51],[-222,-240],[-178,15],[-78,257],[50,575],[50,314],[-4,379],[-109,284],[-198,192],[-115,161],[-241,502],[-110,221],[-143,347],[-116,200],[-117,199],[-113,372],[-158,522],[-147,436],[-65,463],[-16,529],[19,569],[14,386],[60,620],[14,479],[-92,424],[-197,694],[-90,250],[-146,374],[-173,584],[-226,1066],[-95,313],[-96,254],[-176,548],[-18,431],[-47,418],[-66,278],[-2,6],[-24,339],[-93,360],[-158,158],[-156,-119],[-145,-249],[-113,-149],[-181,-3],[-9,-1],[-136,243],[-120,473],[-113,447],[-270,626],[-101,317],[-97,240],[-240,327],[-225,432],[-115,224],[-120,-24],[-165,-164],[-218,2],[-160,160],[-111,259],[-187,490],[-176,486],[-113,372],[-142,557],[-34,512],[-57,372],[-94,389],[-57,310],[-101,255],[-131,230],[-26,456],[-53,510],[-86,297],[-121,276],[-98,257],[-135,92],[-185,-194],[-124,53],[-148,163],[-89,262],[-3,473],[47,353],[-97,240],[-193,-103],[-124,265],[-114,408],[-86,435],[-112,383],[-36,414],[3,359],[-30,360],[3,620],[-58,298],[-36,488],[-115,455],[-103,384],[-68,315],[-203,683],[-190,268],[-130,168],[-150,275],[-116,274],[-181,499],[-98,270],[-186,565],[-38,401],[85,274],[43,491],[-18,368],[100,578],[97,228],[143,225],[141,197],[128,123],[148,160],[157,131],[241,-128],[96,270],[70,417],[62,395],[165,352],[76,415],[-67,327],[-148,299],[-234,138],[-126,228],[-155,277],[-163,182],[-92,363],[-33,523],[-155,142],[-203,372],[33,508],[30,472],[65,357],[128,318],[150,246],[286,449],[204,-100],[185,257],[174,-125],[156,-5],[99,232],[-22,456],[74,466],[27,337],[14,390],[67,382],[-97,439],[-159,167],[-158,-143],[-170,36],[-136,306],[-193,170],[-194,269],[-112,754],[-47,418],[-35,500],[-83,333],[123,196],[104,291],[-43,341],[-278,-42],[-166,-165],[-147,-59],[-209,-234],[-112,228],[-26,502],[41,405],[-183,289],[-121,276],[-52,308],[181,531],[206,185],[120,148],[155,69],[124,46],[96,456],[18,464],[-108,444],[56,311],[148,36],[59,410],[-12,514],[37,349],[-115,339],[-153,517],[-104,369],[-46,452],[-71,307],[-83,340],[-113,377],[-84,252],[-78,265],[-75,430],[-92,424],[-45,442],[-99,397],[-185,333],[-101,317],[-15,416],[-101,304],[-131,-80],[-148,-347],[-47,-477],[-132,-167],[-220,181],[-157,5],[-197,-77],[-142,-349],[-154,-283],[-123,28],[-116,311],[-124,376],[-153,239],[-127,216],[-114,695],[-59,348],[-90,511],[125,219],[84,250],[-43,342],[-21,344],[-39,389],[134,117],[150,60],[128,306],[271,468],[323,620],[108,152],[144,299],[-66,339],[-154,-34],[-188,168],[-109,220],[-227,160],[-111,208],[-198,177],[-171,31],[-121,-10],[-5,0],[-64,339],[-33,387],[117,770],[112,387],[-7,438],[-167,457],[-143,296],[3,546],[-144,347],[-123,90],[-224,46],[-141,122],[-120,101],[-129,-7],[-166,283],[-265,97],[-133,35],[-164,-17],[-217,-168],[-152,114],[-177,-98],[-186,54],[-185,129],[-138,220],[-126,69],[-227,-192],[-133,-54],[62,-636],[-89,-333],[-150,-99],[-135,58],[-162,215]],[[680601,736720],[-298,366],[-102,242],[-115,161],[-116,87],[-144,148],[-131,-217],[-67,-444],[-102,-279],[-238,-160],[-134,206],[-30,361],[-114,235],[-119,51],[-151,60],[-106,-175],[-83,-511],[-64,-470],[-122,-47],[-199,159],[-118,136],[-95,253],[-107,182],[-125,178],[-121,46],[-132,335],[-115,161],[-149,-37],[-121,114],[-140,109],[-137,159],[-174,135],[-133,144],[-166,220],[-79,443],[-101,255],[-135,-5],[-192,-80],[-97,240],[-249,44],[-167,332],[-184,276],[-124,53],[-144,347],[-111,271],[-154,102],[-129,130],[-138,52],[-216,124],[-110,158],[-192,119],[-281,119],[-109,233],[-8,202],[-9,240],[-78,331],[-71,279],[-60,348],[-115,161],[-134,151],[-106,329],[-78,365],[-135,43],[-123,39],[-339,345],[-38,55],[-539,1761],[12,21],[103,181],[367,648],[52,16],[41,93],[23,111],[19,93],[17,132],[-3,204],[-26,98],[-183,688],[-140,528],[-367,17],[-66,39],[-27,47],[-14,102],[-45,563],[0,219],[24,51],[60,127],[92,197],[18,39],[0,9],[-3,147],[-76,321],[-145,516],[-73,24],[-201,1],[-110,-39],[-118,-125],[-87,94],[-69,196],[-10,211],[31,321],[25,93],[50,113],[5,12],[184,242],[45,117],[14,139],[35,354],[17,312],[14,422],[-1,67],[-2,113],[-24,63],[-25,-16],[-97,-62],[-45,0],[-152,298],[-24,117],[0,164],[52,344],[148,826],[1,7],[53,298],[14,117],[-3,102],[-1,23],[-23,69],[-87,252],[-40,102],[-9,23],[-52,39],[-38,-31],[-125,-320],[-86,-94],[-166,-23],[-3,1],[-333,172],[-10,16],[-136,219],[-38,102],[-3,20],[-67,370],[-80,441],[-12,68],[-9,117],[-25,358],[-4,49],[9,69],[31,225],[98,708],[8,61],[497,2509],[-7,112],[0,13],[-13,62],[-63,313],[-31,86],[-62,70],[-63,71],[-119,314],[-85,226],[-24,141],[10,477],[35,266],[125,242],[86,-40],[14,-39],[-10,-187],[55,-227],[31,-47],[158,143],[5,5],[146,164],[125,422],[0,78],[-2,9],[-8,35],[-229,988],[-45,110],[-186,30],[-60,10],[-108,33],[-182,55],[-21,6],[-42,24],[-10,47],[-10,59],[-17,112],[-195,1245],[-27,172],[-1,9],[-195,2026],[-11,115],[482,520],[97,104],[27,95],[18,61],[-3,165],[-38,78],[-201,305],[-20,30],[-552,840],[-191,171],[-27,25],[-103,52],[-4,3],[-5,-1],[-155,-15],[-20,-13],[-73,-49],[-35,-52],[-7,-11],[-118,-328],[-37,-58],[-8,-12],[-35,-32],[-371,-342],[0,-1],[-36,-20],[-19,-11],[-62,94],[0,126],[5,53],[36,353],[49,344],[-6,13],[-29,57],[-57,62],[-337,364],[-58,62],[-5,6],[-28,8],[-59,-24],[-2,-6],[-8,-21],[-28,-74],[-14,-305],[4,-188],[42,-268],[16,-107],[-3,-117],[-31,-47],[-32,-16],[-336,243],[-45,86],[-10,133],[-10,391],[59,250],[58,172],[18,55],[38,156],[28,368],[-31,265],[-31,157],[-10,21],[-59,129],[-139,304],[-208,446],[-29,58],[-129,261],[-208,417],[-74,148],[-193,354],[-887,1626],[-267,376],[-41,48],[-25,30],[-309,63],[-45,31],[-50,100],[-3,6],[-33,66],[-385,970],[-5,18],[-85,319],[-66,312],[-69,204],[-248,394],[-22,36],[-48,31],[-49,32],[-49,-24],[-15,-37],[-89,-228],[-42,-47],[-31,8],[-66,78],[-287,399],[-42,72],[-31,53],[-179,426],[-85,200],[-50,140],[-26,71],[-37,22],[-15,9],[-225,1],[-65,24],[-164,62],[-5,5],[-633,707],[-80,219],[-246,751],[-13,52],[-100,392],[-254,1002],[-90,415],[-437,1603],[-312,610],[-113,254],[-57,129],[-10,38],[-135,509],[-49,188],[-56,258],[-34,305],[-104,704],[-66,289],[-42,133],[-21,29],[-35,46],[-114,152],[-86,164],[-139,579],[-54,299],[-67,381],[-28,197],[-4,30],[-55,453],[-2,71],[-15,478],[-7,264],[0,268],[0,397],[3,43],[-818,-12]],[[762815,727665],[117,-803],[1,-6],[164,-642],[123,-481],[346,-1537],[289,-1163],[660,-1504],[415,-1230],[-36,-957],[-468,-2188],[-706,-752],[-863,1050],[-583,-1460],[-249,-1197],[-11,-914],[449,-2846],[-118,-1949],[18,-1066],[-431,-339],[199,-1056],[-71,-581],[-198,-478],[-458,-502],[-162,-729],[-141,-147],[-76,-80],[44,-270],[185,-1144],[498,-889],[514,66],[-28,-1126],[-1103,-1692],[-219,-722],[-160,466],[-508,131],[-17,28],[-270,456],[-474,172],[-542,193],[-134,763],[-488,-359],[92,-239],[210,-546],[637,-1385],[272,-342],[491,415],[110,93],[-67,-952],[160,-1184],[96,-1024],[29,-869],[155,-1313],[72,-705],[203,-785],[191,-920],[-123,-81],[-192,-120],[-122,-144],[-55,-579],[-32,-402],[-271,-431],[-122,-87],[-144,-200],[-164,-236],[-162,-202],[-131,-155],[-122,-168],[-116,-165],[-108,-258],[-93,-276],[-150,-628],[-83,-270],[-74,-270],[-22,-395],[19,-374],[63,-355],[-12,-911],[-79,-588],[-167,-619],[-93,-254],[-43,-329],[-4,-347],[-409,-548],[-284,-510],[-135,-242],[99,955],[271,1752],[-166,693],[-181,835],[-35,1089],[-514,49],[-260,166],[-173,876],[-223,308],[-238,324],[-451,1408],[-289,780],[-146,333],[-117,266],[-288,-150],[-262,-655],[166,-575],[269,-163],[31,-856],[449,-412],[-129,-812],[501,-1206],[210,-1040],[400,-736],[232,-506],[510,-1982],[-197,-1020],[172,-832],[187,106],[123,70],[498,-137],[-73,-715],[-418,-1126],[-65,-365],[-55,-306],[-231,-735],[-142,-820],[-426,-818],[-487,-507],[16,-354],[-106,-320],[88,-409],[-77,-335],[-109,-1009]],[[755908,671390],[-200,-68],[-182,185],[-198,252],[-119,67],[-140,-26],[-117,-111],[-48,0],[-73,0],[-126,-113],[-46,-356],[101,-515],[49,-81],[86,-142],[89,-361],[-143,1],[-77,-3],[-54,-2],[-180,0],[-134,-9],[-319,389],[-143,128],[-152,242],[-96,202],[-105,220],[-111,168],[-356,-69],[-126,55],[-141,97],[-161,40],[-143,271],[-52,653],[-83,262],[-229,482],[-73,338],[147,-78],[137,15],[124,52],[129,111],[-122,220],[-120,213],[-119,29],[-125,137],[-166,178],[-96,271],[-130,139],[-167,69],[-35,-20],[-117,-65],[-144,-234],[-130,54],[-140,90],[-139,127],[-97,88],[-181,129],[-125,-19],[-118,164],[-144,93],[-133,252],[-129,49],[-18,-4],[-132,-29],[-125,-40],[-115,-96],[-134,-8],[-135,84],[-100,293],[-133,97],[-37,137],[-44,163],[-154,211],[-104,236],[-19,26],[-94,134],[-134,60],[-156,-112],[-83,-257],[-118,-157],[-180,-52],[-159,42],[-156,181],[-90,347],[-102,258],[-16,39],[-111,193],[-81,292],[-9,349],[-75,403],[-121,160],[-111,202],[-120,103],[-115,-170],[-144,48],[-127,0],[-126,-24],[-115,221],[12,409],[156,485],[-117,132],[-133,120],[-134,112],[-108,290],[95,334],[-81,281],[-119,27],[-133,-51],[-121,14],[-52,314],[-50,384],[-150,211],[-131,181],[-16,377],[-104,300],[61,323],[-6,377],[-153,8],[-130,151],[-97,201],[-31,573],[140,29],[91,291],[-82,260],[-49,423],[-117,57],[-91,280],[-136,204],[-116,127],[-129,-6],[-136,61],[62,306],[-87,269],[-115,140],[-98,268],[-118,275],[-111,192],[-190,321],[-115,189],[-127,-15],[-138,-61],[-39,416],[-129,344],[-132,204],[-123,-99],[-154,-73],[-111,307],[-83,378],[-119,32],[-105,206],[-109,166],[-82,324],[-50,339],[-113,160],[-143,74],[67,295],[41,346],[-122,-67],[-145,1],[-35,366],[-138,5],[-114,152],[-114,-100],[-120,117],[-119,221],[-212,144],[-88,246],[-99,324],[-40,334],[-76,424],[-117,160],[-141,-67],[-63,349],[-68,319],[-81,270],[-136,61],[-121,30],[-129,99],[-103,241],[-110,135],[-112,159],[-120,34],[-115,167],[-80,290],[-102,285],[-6,451],[-47,384],[-99,234],[-121,207],[-117,-133],[-151,51],[-138,-104],[-126,-64],[-153,111],[-121,41],[-104,-192],[-132,-36],[-121,-99],[-106,-182],[-135,-124],[-123,103],[-135,-68],[-118,-174],[-71,277],[-64,306],[-77,279],[-115,145],[-13,360],[-81,280],[-128,255],[-42,375],[-137,134],[-58,310],[-62,331],[27,334],[-64,315],[-114,94],[-141,149],[-121,125],[-97,287],[-116,186],[-124,41],[-129,-107],[-122,15],[-130,176],[-130,-75],[-108,-172],[-123,-106],[-111,210],[-121,22],[-140,7],[-145,-114],[-113,-129],[-165,-88],[-170,-226],[-106,-376],[-129,-220],[-137,-202],[-121,-280],[-79,-271],[-10,-433],[-16,-373],[-79,-390],[-762,-1557],[-101,-259],[-1079,-2735],[-228,-521],[-191,-439],[-925,-2150],[-262,-610],[-136,-320],[-273,-637],[-41,129]],[[737063,762956],[576,-791],[-64,-209],[52,-84],[41,-24],[43,-65],[119,-181],[90,-138],[144,-243],[122,-200],[156,-220],[114,431],[218,-369],[-72,-275],[188,-235],[-56,-195],[110,-387],[22,-78],[-2,-763],[64,-56],[328,-288],[313,-351],[105,-194],[131,-142],[107,-314],[132,-199],[170,-168],[243,23],[383,-830],[90,303],[127,309],[92,282],[98,370],[80,311],[65,329],[0,369],[34,353],[108,209],[80,123],[58,96],[10,38],[0,75],[-46,291],[-40,783],[-101,998],[-903,1155],[-256,2302],[-14,128],[-166,-233],[-141,-195],[-119,307],[-225,513],[-391,752],[-208,-759],[-100,-371],[129,-852],[-1,-342],[-374,-1741],[-113,240],[-108,244],[-97,202],[-170,197],[-152,108],[-119,-89],[-64,164],[-86,225],[-756,1238],[-14,85],[32,950],[10,387],[16,503],[26,628],[19,418],[-156,112],[-664,163],[-542,126],[-360,100],[-680,-1942],[369,-472]],[[735117,765901],[-365,-937],[-145,-328],[-187,-463],[-175,-646],[-188,-559],[-120,-288],[-257,-811],[-74,57],[-221,-39],[-315,163],[-103,36],[-111,39],[-66,107],[-57,92],[-6,-32],[-14,-81],[-288,-1283],[-214,-985],[-61,-319],[-81,-329],[-171,-740],[-55,-238],[-573,-1925],[-87,-296],[-216,-736],[-129,-509],[-95,-410],[-96,-371],[-106,-415],[-231,-626],[-149,-258],[-12,-20],[-156,-160],[-69,-71],[-370,-384],[24,-228],[66,-419],[90,-617],[68,-455],[110,-280],[-344,-41],[-366,-117],[24,-606],[-133,-144],[-1,-17],[43,-772],[-4,-32],[-19,-22],[11,-145],[1,-12],[-48,-90],[118,-521],[12,-440],[18,-608],[4,-44],[9,-47],[49,-16],[0,-122],[48,-19],[59,-16],[188,-90],[111,-201],[46,-85],[-8,-359],[-81,-469],[-141,-557],[-11,-71],[-43,-284],[116,54],[35,16],[133,-56],[186,-294],[151,-352],[144,-122],[95,-39],[90,13],[72,84],[61,65],[85,52],[47,39],[20,-61],[794,-2423],[87,-266],[20,-60],[68,273],[18,74],[133,419],[65,376],[9,35],[70,263],[31,341],[14,490],[-31,407],[-81,307],[-119,287],[-11,30],[-187,496],[4,93],[5,11],[61,157],[2,111],[-31,85],[-38,31],[-103,4],[-42,-75],[-54,-147],[-204,550],[141,514],[-41,169],[-74,226],[60,173],[-12,84],[-45,195],[-431,1788],[-141,629],[9,21],[74,93],[-109,746],[-69,477],[151,252],[4,7],[687,1146],[430,-441],[163,-170],[137,-179],[91,-261],[64,-631],[43,-422],[117,-526],[72,-322],[77,-348],[247,-1115],[163,-730],[25,-41],[13,45],[126,353],[193,536],[4,90],[33,481],[52,734],[60,-8],[75,50],[39,42],[34,-81],[127,232],[117,199],[82,-84],[149,-221],[136,-99],[161,-1],[150,-94],[86,-320],[133,-146],[133,-47],[116,-102],[122,-107],[228,-200],[57,-80],[39,-290],[163,91],[34,19],[145,161],[111,125],[787,876],[223,271],[571,652],[161,166],[136,141],[85,1068],[14,167],[72,-21],[7,89],[30,346],[8,91],[137,1446],[75,1095],[29,432],[-40,997],[-59,395],[105,210],[59,762],[142,1777],[-8,11],[-491,673],[-558,918],[-22,35],[162,494],[17,52],[-2,3],[-112,188],[-58,120],[39,102],[-77,144],[-110,-246],[-289,432],[-46,90],[-12,137],[10,114],[158,659]],[[785833,786427],[-77,-11],[-126,-19],[-45,-7],[-119,-20],[-147,-19],[-62,-12],[-65,-14],[-143,18],[-148,133],[-113,123],[-112,138],[-125,155],[-116,175],[-158,239],[-151,241],[-136,156],[-145,-36],[-113,-158],[-135,-111],[-219,-42],[-128,67],[-122,58],[-139,-87],[-120,-63],[-175,-50],[-176,-45],[-137,74],[-126,27],[-112,-110],[-131,-98],[-147,86],[-101,59],[-391,95],[-3,-396],[27,-341],[26,-380],[3,-44],[25,-375],[34,-331],[1,-405],[-16,-392],[-51,-398],[-12,-341],[3,-393],[5,-354],[-3,-418],[-51,-352],[-60,-323],[-82,-284],[-94,-108],[-24,-27],[-278,595],[-299,656],[-78,179],[-216,496],[-271,521],[-23,40],[-103,179],[-211,656],[-133,264],[-111,255],[-70,326],[-117,158],[-116,215],[-144,-48],[-48,387],[-102,202],[-122,55],[-113,178],[-107,113],[-41,45]],[[773777,798168],[-169,485],[-202,411],[-140,269],[-153,356],[-214,498],[-168,412],[-124,283],[-112,232],[-239,546],[-104,237],[-34,78],[-152,342],[-131,289],[-102,232],[-192,442],[-150,328],[-108,238],[-171,381]],[[777327,818248],[119,-292],[122,-473],[125,-846],[16,-111],[132,-571],[164,-505],[349,-861],[293,-715],[315,-1042],[131,-577],[123,-577],[38,-326],[18,-345],[374,-842],[363,-893],[97,-201],[106,-155],[106,-164],[105,-163],[105,-172],[113,-141],[112,-135],[103,-171],[107,-150],[109,-152],[119,-74],[116,-96],[119,-76],[120,-18],[119,-59],[120,-20],[122,-20],[122,-12],[119,17],[120,-17],[122,-63],[113,-102],[128,-101],[117,-73],[119,-74],[120,-8],[121,24],[114,-86],[2,-1],[115,-128],[101,-190],[80,-281],[0,-345],[37,-328],[60,-305],[54,-305],[63,-309],[64,-289],[46,-342],[19,-280],[4,-68],[18,-73],[16,-375],[-11,-155],[0,-325],[0,-29],[5,-147],[72,-277],[105,-493],[117,-423],[32,-116],[102,-509],[99,-500],[83,-347],[93,-154],[104,-46],[107,61],[171,-84],[78,-139],[29,-57],[10,-90],[41,-97],[67,-168],[142,-433],[46,-301],[8,-277],[-12,-277],[11,-58],[-1,-144],[55,-324],[71,-330],[98,-202],[119,-23],[117,81],[119,65],[47,316],[5,350],[-80,257],[49,271],[7,38],[119,21],[101,-207],[100,-205],[24,-55],[71,-165],[93,-255],[89,-243],[64,-156],[29,-71],[76,-270],[66,-288],[58,-309],[55,-313],[50,-315],[35,-328],[17,-340],[-30,-335],[-116,-99],[-119,-42],[-119,-40],[-120,21],[77,-263],[102,-187],[80,256],[119,58],[100,-197],[24,-343],[97,-208],[84,-250],[94,-214],[60,-297],[56,-309],[55,-308],[57,-303],[60,-302],[33,-337],[22,-339],[28,-335],[13,-343],[5,-350],[-13,-339],[-5,-343],[-16,-342],[-25,-338],[-26,-337],[-34,-340],[-47,-317],[-46,-316],[-848,-486],[0,-519],[-119,-9],[-116,78],[-110,139],[-116,80],[-97,200],[-118,90],[-146,-14]],[[680601,736720],[-501,-940],[-174,-327],[-134,-253],[-255,-470],[-109,-202],[-102,-188],[-390,-719],[-184,-331],[-208,-373],[-162,-313],[-679,-1256],[-109,-202],[-221,-411],[-220,-410],[-203,-378],[-211,-390],[-155,-291],[-240,-438],[-123,-222],[-110,-200],[-233,-419],[-285,-532],[-164,-307],[-162,-302],[-714,-1306],[-152,-277],[-179,-326],[-137,-250],[-181,-331],[-143,-262],[-500,-928],[-199,-363],[-116,-245],[-50,-106],[-231,-428],[-186,-345],[-138,-255],[-151,-279],[-599,-1146],[-124,-225],[-247,-451],[-115,-211],[-598,-1100],[-316,-579],[-132,-245],[-197,-365],[-511,-949],[-257,-476],[-334,-615],[-620,-1137],[-166,-291],[-167,-294],[-298,-521],[-182,-335],[-15,-26],[-441,-800],[-438,-810],[-228,-420],[-1015,-1877],[-350,-647],[-236,-436],[-137,-254],[-153,-283],[-254,-469],[-536,-989],[-183,-340],[-299,-551],[-76,-142],[-334,-616],[-218,-403],[-34,-63],[-108,-200],[-109,-269],[-143,-361],[-119,-417],[-97,-250],[-137,-362],[-11,-29],[-433,-1153],[-488,-1296],[-605,-1713],[-87,-245],[-97,-244],[-107,-215],[-979,-2652],[-269,-737],[-231,-637],[-203,-558],[-550,-1458],[-272,-720],[-489,-1294],[-102,-268],[-292,-774],[-22,-57],[-122,-323],[-369,-976],[-445,-1178],[-97,-259],[-153,-403],[-274,-727],[-89,-236],[-730,-1930],[-322,-852],[-189,-500],[-173,-460],[-528,-1398],[-19,-17],[-94,-86],[-76,-269],[-82,-94],[-49,-48],[-519,-509],[-35,24],[-9,15],[-67,118],[-59,383],[-7,62],[-10,86],[-9,145],[-26,387],[-1,112],[-2,154],[-7,58],[-3,36],[-56,289],[-34,86],[-52,47],[-87,31],[-814,139],[-5,-7],[-403,-697],[-69,-196],[-45,-78],[-22,0],[-36,0],[-97,94],[-226,326],[-393,567],[-68,99],[-90,158],[-4,6],[-20,70],[-43,355],[-37,310],[-17,218],[-3,10],[-176,552],[-8,25],[-59,125],[-86,62],[-26,-3],[-116,-13],[-79,-55],[-82,-98],[-56,-66],[-107,-204],[-100,-289],[-58,-77],[-8,-9],[-62,31],[-6,11],[-132,274],[-24,51],[-41,121],[-12,35],[-13,39],[-52,180],[-29,149],[-27,136],[-90,460],[-21,105],[-6,33],[-62,649],[-13,56],[-1,6],[-187,281],[-6,2],[-39,10],[-17,4],[-4,-8],[-231,-462],[-445,-814],[-48,-27],[-99,-54],[-395,-217],[-107,-8],[-280,77],[-36,4],[-56,-300],[-110,-168],[-194,-23]],[[645438,680895],[-223,580],[-666,1734],[-439,1143],[-367,953],[-2,7],[-407,1110],[-376,986],[-131,382],[-8,24],[-150,435],[-1,3],[-306,868],[-122,346],[-86,244],[-464,1227],[-367,597],[-397,1010],[-233,591],[-117,298],[-709,1803],[-164,419],[-201,503],[-247,634],[-148,357],[-370,952],[-3211,8253],[-129,346],[-2289,5840],[-242,637],[-38,102]],[[632828,713279],[140,138],[113,236],[119,128],[241,-121],[221,-143],[214,6],[221,267],[207,663],[60,511],[172,785],[54,377],[61,455],[106,560],[-10,559],[101,469],[192,556],[-56,450],[61,648],[83,396],[94,433],[106,361],[197,568],[-160,808],[-128,863],[-221,454],[-32,596],[21,161],[27,202],[1,10],[77,716],[128,861],[65,683],[-7,622],[-162,470],[-142,243],[-263,281],[-184,46],[20,611],[108,637],[152,444],[79,382],[267,494],[233,311],[194,430],[51,503],[-67,411],[-92,471],[33,594],[-91,1025],[-156,877],[-78,597],[-98,265],[-28,80],[-89,262],[16,296],[5,92],[-36,144],[-40,161],[-101,272],[-202,365],[-165,199],[-504,533],[-344,-13],[-61,1023],[178,482],[4,36],[64,519],[50,961],[144,776],[44,273],[125,778],[219,826],[179,691],[26,775],[241,1255],[-56,716],[131,1255],[70,677],[175,999],[476,-182],[131,-53],[123,119],[152,51],[216,99],[182,54],[276,11],[258,259],[85,874],[92,323],[261,710],[21,591],[16,735],[242,597],[123,287],[148,59],[124,-96],[147,30],[116,-111],[135,-108],[16,182],[20,217],[76,278],[89,586],[175,556],[92,300],[106,327],[122,608]],[[596844,705566],[-133,-406],[-116,-138],[-137,-113],[-122,-14],[-118,-249],[-106,-333],[-72,-278],[-112,-300],[-65,-340],[-136,-525],[-93,-444],[-166,-867],[-84,-278],[-117,-679],[-83,-484],[-100,-733],[-17,-375],[-186,-700],[-80,-520],[-69,-377],[-23,-389],[-70,-454],[-70,-567],[-80,-300],[-56,-633],[-119,-620],[-15,-494],[-42,-440],[-58,-299],[-94,-625],[-39,-655],[-59,-445],[-71,-319],[-39,-371],[1,-465],[-34,-390],[-25,-394],[-51,-695],[-51,-533],[-79,-581],[-78,-675],[-68,-429],[-84,-881],[-35,-470],[-49,-313],[-65,-445],[-43,-421],[-57,-304],[-63,-465],[-83,-297],[-44,-324],[-75,-479],[-80,-280],[-17,-572],[-114,-347],[-55,-316],[-138,-547],[-85,-283],[-40,-331],[-97,-467],[-32,-365],[-86,-407],[-101,-391],[-146,-288],[-154,-465],[-52,-619],[-50,-380],[-97,-282],[-93,-416],[-88,-248],[-92,-458],[-104,-490],[-98,-303],[-93,-328],[-33,-469],[224,-263],[405,-504],[461,-568],[1296,-1603],[256,-314],[359,-447],[485,-599],[486,-600],[592,-730],[145,-180],[125,140],[137,-212],[128,45],[123,-186],[182,25],[134,51],[142,215],[67,283],[112,139],[179,88],[150,186],[136,234],[132,176],[84,258],[174,68],[119,-135],[113,-157],[80,-255],[111,-244],[30,-66],[68,-147],[-30,-336],[-68,-425],[-168,-702],[-40,-457],[16,-499],[25,-408],[151,-601],[72,-225],[129,-402],[110,-275],[186,-212],[137,-315],[48,-76],[90,-143],[123,-101],[103,-222],[106,-193],[143,-204],[172,-375],[98,-253],[81,-363],[16,-421],[-41,-491],[-78,-297],[-170,-408],[-152,-511],[-89,-364],[-90,-276],[0,-1],[56,-302],[151,-148],[70,-48],[72,-48],[127,-47],[114,-67],[15,-10],[120,-127],[135,-128],[182,-102],[125,-17],[144,-27],[83,-258],[12,-341],[104,-185],[124,62],[147,134],[119,71],[137,4],[120,-107],[120,-165],[127,-98],[151,-48],[120,-84],[132,-139],[114,-217],[94,-299],[51,-345],[69,-318],[87,-249],[116,-137],[137,-28],[138,-42],[142,-44],[169,-4],[140,47],[132,69],[134,79],[145,-20],[141,-77],[142,-49],[129,-148],[144,-135],[129,-175],[147,-118],[137,-47],[125,-156],[115,-212],[74,-298],[70,-308],[116,-180],[144,-105],[117,-111],[119,-133],[126,-122],[132,-92],[114,-135],[111,-149],[163,-15],[144,-77],[139,-103],[141,-2],[130,60],[119,-93],[84,-415],[83,-280],[85,-254],[105,-198],[94,-242],[30,-361],[-5,-368],[49,-415],[37,-339],[24,-462],[46,-378],[77,-309],[83,-295],[1,-357],[82,-295],[74,-420],[33,-364],[35,-440],[63,-311],[56,-394],[124,-210],[141,-8],[144,66],[142,18],[120,-77],[127,-20],[140,156],[139,185],[92,363],[114,532],[1685,-759],[289,-132],[899,-411],[303,-133],[207,-104],[553,-241],[302,-138],[144,-64],[159,-72],[1371,-634],[28,-12],[229,-98]],[[615315,642928],[-105,-304],[0,-342],[27,-386],[6,-604],[-22,-338],[-141,-79],[-119,-125],[-29,-31],[-119,-323],[-116,-544],[-142,-336],[-113,-273],[-107,-503],[71,-394],[39,-231],[50,-303],[-131,-9],[-2,0],[-195,-422],[-3,-6],[-156,-303],[-128,-169],[-76,-554],[-7,-417],[-110,-629],[-163,-373],[-94,-329],[-129,-195],[-180,-207],[-153,-287],[-121,-294],[-120,-234],[-27,-53],[-145,-136],[-298,185],[-165,214],[-144,115],[-114,-244],[-73,-292],[-74,-520],[-40,-463],[-19,-362],[-3,-411],[9,-579],[-80,-410],[-82,-269],[-41,-333],[2,-25],[34,-389],[-85,-258],[-156,-114],[-144,-171],[-118,-311],[-67,-459],[-80,-305],[-104,-396],[-116,-750],[-75,-371],[69,-623],[123,-239],[249,-187],[-272,-82],[-163,-504],[-672,-577],[-325,24],[-159,12],[-276,-92],[-265,-200],[-246,-182],[-164,-487],[-112,-394],[0,-406],[29,-374],[139,-503],[-165,-313],[-58,-169],[-15,-43],[-45,-131],[-108,-705],[15,-653],[-222,-301],[-219,-316],[-258,-384],[-184,-260],[15,-377],[22,-394],[81,-496],[22,-267],[42,-516],[6,-401],[-25,-700],[44,-635],[124,-590],[-320,-672],[-439,-831],[-186,-230],[-292,-16],[-269,-1],[-120,-69],[-62,-663],[-226,-246],[-132,-89],[-220,-43],[-218,15],[-178,269],[-52,1],[-128,3],[-249,-181],[-260,-12],[-70,-579],[-100,-257],[-332,-63],[-457,-254],[-319,-628],[-12,-44],[-118,-450],[-115,-221],[-340,-75],[18,-544],[-314,-950],[-190,-140],[-189,-375],[-132,-660],[-12,-1515],[-12,-422],[-116,-210],[-187,-112],[-637,-261],[-746,-673],[-433,-55],[-145,-271],[-93,-173],[-22,-41],[-177,-202],[-210,-131],[-117,-87],[-154,-202],[-153,-204],[-86,-649],[-76,-357],[-94,-418],[-104,-337],[-99,-514],[-119,-205],[-127,-194],[-111,-123],[-111,-130],[-237,-143],[-137,24],[-180,263],[-61,143],[-43,99],[-186,74],[-136,21],[-119,-7],[-246,130],[-169,250],[-143,104],[-149,-183],[-124,-455],[-122,-225],[-105,-296],[-98,-439],[-154,-392],[-112,-244],[-69,-435],[2,-347],[0,-5],[-67,-410],[-53,-399],[-112,-367],[-24,-58],[-108,-268],[-38,-408],[-91,-497]],[[594306,593851],[-90,-419],[39,-328],[105,-763],[56,-328],[64,-344],[13,-70],[114,-291],[-38,-343],[-145,-385],[-126,-257],[-104,-208],[-138,-198],[-131,-139],[123,-178],[160,-159],[153,-72],[56,-337],[108,-160],[106,-201],[27,-52],[120,-229],[103,-316],[167,-178],[160,20],[-65,-408],[-133,-227],[-167,-169],[-77,-266],[-53,-502],[-115,-367],[-139,-327],[-112,-273],[-166,-247],[-122,-183],[-161,-151],[-185,-187],[-96,-259],[-68,-389],[-42,-324],[-147,-128],[-131,229],[-111,299],[-113,313],[-119,398],[-80,418],[-100,258],[-112,158],[-122,202],[-155,127],[-146,65],[-167,-120],[-138,-271],[-1,-2],[-153,-279],[-95,-308],[-99,-250],[-139,-232],[-179,-293],[-48,-267],[-11,-64],[-378,-532],[-422,-411],[-139,-98],[-121,22],[-55,10],[-187,23],[-169,92],[-256,286],[-258,-191],[-19,-414],[-232,-703],[-162,-268],[-78,-360],[6,-346],[-3,-19],[-84,-616],[-156,-296],[-353,-581],[-201,-121],[-298,-337],[-141,-86],[-166,-445],[-76,-24],[-42,-13],[-147,-52],[-196,-317],[-65,-304],[41,-367],[-1,-5],[-45,-349],[-118,-182],[-11,-22],[-226,-471],[-101,-467],[-106,-315],[-160,-394],[-139,-299],[-98,-302],[-173,-551],[-146,-277],[-126,56],[-213,-188],[-97,-227],[-105,-227],[-123,-439],[-211,-670],[-72,-483],[-78,-450],[-108,-528],[-54,-242],[-19,-82],[-161,-798]],[[584093,569510],[-82,150],[-357,648],[-1137,2204],[-102,197],[-584,1134],[-613,1179],[-1030,1998],[-322,608],[-410,791],[-439,857],[-396,753],[-227,447],[-556,1064],[-146,298],[-584,1120],[-230,434],[-226,424],[-114,221],[-171,312],[-153,314],[-202,413],[-123,251],[-110,231],[-131,263],[-103,211],[-23,48],[-156,318],[-98,201],[-4,8],[-169,350],[-249,508],[-158,322],[-138,281],[-98,201],[-386,785],[-205,427],[-9,17],[-80,163],[-18,39],[-100,188],[-353,726],[-990,2024],[-102,208],[-529,1067],[-6,8],[-78,108],[-63,86],[-150,260],[-311,666],[-232,625],[-136,393],[-111,252],[-106,240],[-159,329],[-339,389],[-131,109],[-218,89],[-10,4],[-1,2],[-107,193],[-53,402],[-79,315],[-89,282],[-166,493],[-160,477],[-51,298],[-94,552],[-113,285],[-183,142],[-249,225],[-182,173],[-111,264],[-156,554],[-106,273],[-365,646],[-193,292],[-134,278],[-18,10],[-103,58],[-76,-95],[-94,-118],[-2,-2],[-21,-5],[-280,-68],[-316,1],[-143,-9],[-120,-50],[-194,-244],[-135,-233],[-240,-165],[-259,-126],[-101,-18],[-21,-4],[-174,40],[-129,168],[-116,153],[-118,155],[-336,573],[-125,217],[-435,741],[-244,416],[-233,375],[-252,406],[-109,168],[-35,56],[-631,1022],[-61,100],[-179,292],[-107,166],[-697,1141],[-135,216],[-182,303],[-487,779],[-482,760],[-508,857],[-111,184],[-136,229],[-323,516],[-162,254],[-155,246],[-308,489],[-954,1538],[-140,235],[-147,232],[-494,810],[-289,467],[-234,391],[-162,252],[-243,397],[-216,345],[-267,468],[-246,430],[-159,280],[-327,478],[-141,206],[-141,225],[-703,1110],[-156,253],[-348,545],[-212,341],[-14,22],[-344,564],[-190,303],[-173,284],[-187,298],[-1833,3035],[-187,304],[-425,689],[-128,202],[-727,1158],[-229,369],[-731,1169],[-202,321],[-132,216],[-193,312],[-113,178],[-11,18],[-183,296],[-174,277],[-188,303],[-312,499],[-429,691],[-390,627],[-106,169],[-119,189],[-1022,1642],[-162,258],[-549,881],[-419,676],[-1355,2183],[-1317,2124],[-251,406],[-106,169],[-133,214],[-415,667],[-261,418],[-205,328],[-144,241],[-206,328],[-734,1182],[-625,998],[-850,1387],[-1077,1717],[-400,647],[-1076,1730],[-314,504],[-343,550],[-194,311],[-333,533],[-231,368],[-237,378],[-337,543],[-470,758],[-251,401],[-564,903],[-411,654],[-37,60],[-320,511],[-472,753],[-111,176],[-952,1528]],[[527762,662194],[400,938],[16,319],[81,1604],[568,915],[565,1375],[395,3387],[-379,1402],[521,5811],[593,1738],[249,1749],[546,2188],[949,3213],[515,2255],[315,1642],[320,1436],[711,1196],[-59,1436],[374,1976],[53,280],[439,889],[628,3521],[-71,1162],[-12,1538],[534,1778],[-83,1128],[522,3999],[783,3213],[841,3043],[735,3942],[167,1494],[593,204],[296,1436],[403,0],[664,0],[735,-1162],[1673,1060],[35,2119],[415,2051],[214,1470],[284,2769],[0,1196],[-688,1675],[-248,3043],[699,4614],[-36,1778],[605,3179],[368,2666],[510,1368],[249,1371],[344,1397],[209,849],[917,1955],[344,1504],[202,3076],[499,1195],[-25,959],[-190,855],[-284,1128],[437,1743],[642,1368],[1447,-308],[842,308],[499,2221],[-144,1641],[72,2188],[451,649],[-1,1265],[154,1163],[700,444],[723,1231],[245,2591],[325,1990],[337,1161],[-100,1932],[714,1314],[1969,-3970],[9496,-19139],[3293,-6637]],[[567805,656962],[-183,-2352],[-3,-25],[-127,74],[-200,106],[-242,197],[-192,157],[-116,125],[-165,139],[-435,309],[-31,-179],[-167,-470],[-107,-303],[-21,-58],[-122,-342],[-156,-435],[-129,-180],[-126,-92],[-188,-943],[-106,-603],[-106,-647],[-102,-698],[-151,-1035],[-67,-349],[-72,-379],[-74,-287],[-93,-455],[181,-167],[248,-227],[211,-135],[66,-296],[68,9],[51,-135],[110,-404],[151,-591],[17,-79],[49,-225],[121,-578],[55,-259],[276,-1326],[-91,-182],[-94,0],[-218,-364],[-4,-513],[87,35],[107,79],[4,-57],[-16,-239],[-28,-91],[-20,-613],[-138,-775],[262,-589],[-390,-1112],[-123,-337],[-212,-578],[13,-136],[-157,-380],[-20,-62],[-186,-818],[30,-105],[-203,-1043],[-182,-878],[-116,-516],[-62,-436],[-29,-390],[-67,-304],[163,-241],[3,-5],[303,-600],[-21,-244],[-32,-254],[61,-15],[34,-8],[299,-111],[683,1001],[51,-4],[331,-24],[304,-271],[316,-51],[40,-7],[666,-36],[245,-11],[52,916],[30,527],[27,474],[32,568],[22,394],[38,662],[44,768],[178,-163],[353,-319],[26,508],[43,1176],[39,892],[-118,325],[-45,227],[70,108],[15,-40],[466,89],[131,28],[131,26],[156,34],[269,45],[880,167],[134,28],[322,66],[101,230],[104,200],[93,211],[118,250],[301,-228],[141,-115],[397,-325],[754,633],[244,204],[162,135],[170,143],[147,131],[173,161],[2,1],[225,197],[228,197],[278,203],[262,193],[129,105],[-306,992],[312,2171],[70,-7],[2,79],[94,553],[44,365],[88,598],[56,441],[-123,260],[9,430],[-27,539],[-158,411],[-157,362],[-198,433],[-244,194],[-230,121],[-12,39],[-72,223],[67,443],[33,613],[33,578],[32,590],[-53,491],[-52,380],[-42,335],[-135,268],[-336,-10],[-196,-76],[-386,-172],[-488,-531],[-131,-24],[47,465],[47,466],[69,689],[67,694],[-392,1210],[1,5],[24,177],[72,342],[-232,778],[-104,346],[-173,575],[-581,1943],[-281,323],[-429,463],[-251,273],[-141,159],[-32,30],[-165,151],[-17,-27],[-18,-11],[-170,182],[-14,15],[19,313],[21,713],[13,452],[10,371],[12,649],[-29,334],[-73,356],[-212,-256],[-157,-364],[-129,-342],[-81,-497],[-187,-1096],[-342,-2059],[-68,-535],[-105,-579],[-131,-528],[-51,-450],[-82,-366],[-130,-650],[-115,-760],[-44,-652]],[[785833,786427],[120,-205],[123,-114],[-27,-345],[98,-213],[7,-350],[11,-346],[22,-353],[31,-336],[52,-326],[78,-272],[26,-339],[109,-234],[41,324],[-42,329],[184,27],[124,-210],[109,-191],[74,-271],[70,-286],[8,-349],[-33,-338],[-30,-334],[-26,-365],[-19,-438],[-45,-316],[-110,-136],[-116,-128],[9,-353],[112,-156],[0,-350],[32,-331],[95,-216],[-1,-346],[28,-334],[22,-351],[60,-475],[-141,-1375],[96,-843],[-48,-704],[-55,-692],[0,-640],[-143,-995],[52,-822],[70,-879],[-5,-369],[-7,-523],[-165,-534],[-240,300],[-267,377],[-418,-539],[-278,-342]],[[632828,713279],[-109,-177],[-225,-373],[-72,-278],[-94,-244],[-111,-307],[-138,-201],[26,-520],[-8,-365],[-92,-426],[-103,-306],[-144,-285],[-174,-287],[-208,-158],[-121,-52],[-118,-75],[-64,-211],[-17,-55],[-53,-335],[-106,-260],[-64,-331],[-126,180],[-105,203],[-167,151],[-32,28],[-121,70],[-101,-197],[-24,-97],[-55,-222],[-135,-230],[-52,-338],[-150,-201],[-84,-335],[-81,-322],[-78,-482],[-27,-187],[-31,-208],[-18,-348],[-92,-269],[-26,-433],[-110,-309],[-139,-376],[-81,-269],[-71,-345],[-78,-368],[-150,-268],[-73,-319],[-57,-484],[-243,-537],[-330,-710],[-176,-197],[-330,-664],[-292,-1936],[122,-1353],[172,-215],[31,-357],[12,-135],[37,-413],[-39,-351],[-65,-280],[-24,-101],[-62,-646],[50,-484],[70,-332],[140,-172],[93,-249],[2,-344],[42,-502],[1,-43],[16,-1091],[-125,-418],[-113,-164],[-155,-407],[-10,-26],[-143,-487],[-106,-227],[-336,-691],[-127,-83],[-239,101],[-273,252],[-255,-283],[-166,-177],[-358,-322],[-164,-114],[-108,-154],[-163,-205],[-159,-103],[-181,-7],[-97,-504],[-79,-334],[-146,-208],[-4,-4],[-189,-154],[-116,-95],[-117,-237],[-49,-505],[-89,-744],[-55,-321],[-55,-327],[-130,-563],[-51,-406],[-79,-303],[-10,-39],[-12,-29],[-79,-197],[-8,-97],[-36,-449],[-58,-397],[-104,-189],[-114,-62],[-22,-12],[-165,-225],[-110,-215],[-93,-315],[-107,-224],[-136,-86],[-136,-155],[-103,-379],[-38,-380],[-111,-323],[-133,-153],[-167,5],[-177,288],[-114,296],[-142,350],[-93,281],[-79,291],[-132,-189],[-187,-391],[-116,-178],[-134,-261],[146,-441],[520,-1299],[111,-373],[-44,-631],[-82,-326],[-122,-196],[-76,-405],[0,-1],[-115,-236],[-124,-3],[-10,-342],[60,-533],[-194,-451],[-110,-312],[20,-432],[32,-218],[31,-212],[14,-515],[-20,-551],[-65,-469],[-117,-323],[-164,-301],[-18,-441],[-48,-471],[-115,-294],[30,-280],[18,-172],[157,-618],[96,-352],[132,-9],[114,-239],[-4,-392],[59,-645],[29,-342],[-153,-260],[-195,-55],[-87,-333],[-58,-331],[-65,-505],[-67,-455],[-39,-402],[-123,-163],[-126,-284],[-110,-499],[-87,-555],[-125,-499],[-111,-731]],[[619238,661395],[-108,-485],[-141,-408],[-112,-414],[-38,-378],[-66,-397],[-47,-367],[-35,-226],[-14,-93],[1,-648],[-44,-386],[-169,-232],[-29,-124],[-50,-210],[-52,-311],[-108,-345],[-19,-48],[-79,-195],[-45,-402],[6,-103],[14,-256],[75,-546],[-7,-400],[-91,-281],[-103,-224],[-136,-372],[-60,-463],[-28,-797],[33,-510],[-205,71],[-147,-22],[-145,-19],[-41,-6],[-231,-30],[-124,35],[-87,-331],[-106,-306],[20,-444],[-86,-322],[-106,-354],[-2,-62],[-14,-462],[-125,-341],[-74,-329],[-7,-455],[4,-350],[-41,-348],[29,-433],[108,-446],[-46,-350],[-122,-34],[-171,-88],[-235,-304],[-61,-235],[-59,-234],[-68,-526],[-80,-618],[-14,-294],[-12,-258],[-55,-441],[-168,-510]],[[737063,762956],[-181,364],[-108,192],[-263,431],[-143,207],[-411,642],[-213,347],[-508,830],[-119,-68]],[[716248,638903],[267,-800],[10,-28],[-8,-82],[-3,-28],[-98,-856],[-39,-335],[-43,-796],[-2,-36],[-17,-316],[8,-352],[16,-209],[97,-1296],[22,-294],[110,-309],[339,-147],[663,-463],[87,-125],[182,-601],[118,-661],[136,-454],[16,-591],[-146,-219],[-63,-495],[36,-809],[85,-1869],[12,-252],[27,-360],[40,-506],[13,-156],[58,-735],[-13,-136]],[[718158,624587],[-93,-11],[-540,203],[-24,9],[-248,149],[-86,16],[-124,-149],[-38,-94],[-200,-852],[-5,-44],[-5,-42],[-76,-307],[-393,-1586],[-313,-227],[-11,-8],[-48,-23],[-79,-39],[-100,7],[-145,94],[-27,36],[-80,105],[-22,37],[-288,471],[-51,140],[-52,142],[-21,195],[-3,821],[43,440],[15,155],[48,281],[83,305],[121,329],[70,148],[36,78],[121,133],[227,126],[25,28],[44,50],[48,188],[0,51],[-2,58],[-1,86],[-210,884],[-8,30],[-20,79],[-112,319],[-119,338],[-62,149],[-103,125],[-235,148],[-430,-149],[-200,-227],[-283,-407],[-155,-141],[-151,-39],[-42,16],[-55,-8],[-14,-14],[-318,-318],[-99,-99],[-142,-176],[-836,-1037],[-355,15],[-114,-39],[-82,-86],[-86,-188],[-493,-1494],[-41,-172],[-15,-88],[-19,-116],[-24,-492],[-62,-774],[-31,-126],[-45,-78],[-58,-55],[-36,-4],[-59,-6],[-123,-13],[-289,-30],[-220,-23],[-28,-3],[-627,-267],[-310,-642],[-79,-125],[-61,-46],[-1,-1],[-5,0],[-91,7],[-43,34],[-88,68],[-36,51],[-30,43],[-131,296],[-138,345],[-154,381],[-1,3],[-111,98],[-141,81]],[[708143,622113],[-193,283],[-107,245],[-111,198],[-146,377],[-84,216],[-97,248],[-158,400],[-63,126],[-85,171],[-197,297],[-293,406],[-900,748],[-7,55],[-386,468],[-389,343],[-24,-8],[-191,295],[-61,95],[-4,63],[-49,117],[-33,78],[-73,70],[-737,342],[-162,-47],[-55,-24],[-307,-446],[-76,-71],[-58,0],[-138,140],[-88,110],[-313,390],[-63,79],[-17,20],[-44,94],[-4,71],[18,203],[69,117],[72,78],[38,2],[269,72],[269,337],[25,49],[43,84],[18,180],[6,328],[-7,188],[-34,156],[-125,273],[-134,227],[-107,101],[-159,23],[-65,-71],[-191,-236],[-69,0],[-100,63],[-258,361],[-121,117],[-234,157],[-190,202],[-30,33],[-7,50],[0,5],[-344,1166],[-80,196],[-79,117],[-324,298],[-286,220],[-155,47],[-172,-15],[-86,-78],[-197,-211],[-134,-226],[-76,-164],[-700,-1633],[-63,-188],[-185,-1170],[-230,-932],[-48,-197],[-131,-528],[-48,-198],[38,-84],[885,-1921],[17,-37],[15,-12],[119,-98],[69,-8],[73,54],[145,31],[75,-70],[48,-133],[42,-149],[47,-386],[42,-349],[3,-422],[-31,-196],[-93,-164],[-176,-109],[-270,-105],[-30,-12],[-258,-101],[-142,128],[-6,6],[-2,16],[-5,38],[-561,1487],[-76,71],[-96,-16],[-93,-62],[-73,24],[-106,78],[-365,418],[-4,5],[-9,17],[-117,220],[-40,75],[-192,361],[-361,829],[-231,478],[-124,172],[-190,204],[-330,235],[-424,266],[-148,86],[-142,-7],[-220,-227],[-73,8],[-68,41],[-25,14],[-2,2],[-139,147],[-20,0],[-278,223],[-5,4],[-7,9],[-251,343],[-355,337],[-128,86],[-86,8],[-803,8],[-93,-39],[-96,-78],[-33,-213],[-33,-217],[-7,-37],[-24,-127],[-110,-360],[-107,-250],[-76,-101],[-120,-94],[-159,-47],[-148,149],[-159,211],[-341,665],[-106,352],[-66,125],[-55,47],[-107,8],[-451,31],[-814,-258],[-1092,-328],[-155,-55],[-169,-125],[-224,-297],[-148,-165],[-76,-34],[-10,-5],[-364,-17],[-287,-14],[-61,26],[-118,52],[-64,54],[-11,10],[-8,6],[-69,149],[-31,109],[-4,118],[-17,39],[-48,828],[7,532],[34,548],[-14,179],[-82,352],[-13,35],[-91,247],[-30,28],[-63,62],[-110,105],[-217,109],[-131,16],[-76,-31],[-148,-235],[-210,-383],[-345,-642],[-551,-407],[-238,-8],[-162,-109],[-58,-71],[-200,-532],[-45,-211],[-82,-876],[-42,-962],[4,-211],[-7,-78],[-65,-594],[-145,-798],[-65,-266],[-73,-188],[-218,-378],[-426,-741],[-72,-125],[-114,-187],[-368,-408],[-131,-94],[-8,-3],[-571,-206],[-461,-167],[-317,-87],[-179,8],[-44,-10],[-561,-117],[-36,-8],[-40,-14],[-136,-49],[-20,-7],[-41,-31],[-26,-20],[-743,-561],[-106,-133],[-159,-297],[-134,-306],[-86,-312],[-21,-142],[-27,-187],[-27,-132],[-18,-87],[-58,-180],[-49,-125],[-71,-180],[-3,-5],[-86,-141],[-1,-3],[-5,-2],[-81,-37],[-152,70],[-117,132],[-34,39],[-3,36],[-1,4],[-51,100],[-188,366],[-102,197],[-33,50],[-103,154],[-88,132],[-403,357],[-85,537],[-236,-384],[-58,-96],[-301,-488],[-65,-106],[-13,-238],[-61,-1149],[17,-219],[1,-2],[37,-201],[83,-211],[93,-328],[24,-161],[0,-3],[-10,-188],[-7,-39],[-72,-375],[-46,-134],[-2,-7],[-31,-32],[-38,-39],[-93,-47],[-162,125],[-144,70],[-93,7],[-441,-181],[-214,-39],[-72,38],[-48,78],[-97,219],[-234,336],[-128,140],[-224,62],[-110,-40],[-162,-141],[-123,-227],[-172,-368],[-128,-368],[-4,-13],[-134,-424],[-31,-103],[-23,-29],[-87,-109],[-165,-166],[-104,-179],[-273,-516],[-88,-237],[-460,-848],[-169,-453],[-53,-159],[-426,-1281],[-25,-75],[-31,-133],[-76,-187],[-103,-149],[-12,-15],[-105,-141],[-264,-259],[-433,-428],[-103,-100],[-182,-109],[-255,-7],[-93,-55],[-76,-101],[-41,-125],[-66,-673],[-1,-7],[-20,-138],[-20,-144],[-135,-375],[-6,-15],[-111,-266],[-34,-101],[-83,-251],[-48,-179],[-56,-360],[0,-391],[17,-164],[138,-735],[31,-102],[44,-336],[4,-234],[1,-47],[2,-134],[-41,-180],[-56,-148],[-93,-101],[-354,-281],[-37,-17],[-68,-31],[-64,-30],[-11,7],[-251,159],[-518,327],[-311,197],[-237,994],[-62,172],[-62,125],[-55,63],[-22,11],[-22,11],[-63,33],[-25,-9],[-68,-22],[-70,-65],[-5,-6],[-4,-5],[-55,-104],[-224,-641],[-158,-320],[-38,-40],[-115,-119],[-27,-28],[-2,-1],[-197,-77],[-15,-14],[-373,-364],[-45,-80],[-83,-250],[-120,-495],[-72,-317],[-117,-199],[-123,64],[-109,501],[-31,143],[-51,382],[-82,283],[-42,111],[-273,730],[-103,156],[-9,10],[-87,92],[-103,55],[-331,61],[-93,18],[-131,-24],[-130,-78],[-93,-101],[-38,-74],[-150,-292],[-5,-9],[-1,-3],[-130,-373],[-131,-492],[-100,-211],[-45,-52],[-79,-46],[-177,-49],[-282,-166],[-178,324]],[[661732,605281],[-15,140],[-9,147],[-58,54],[-76,-31],[-19,-28],[-205,-316],[-58,-47],[-36,3],[-99,5],[-33,9],[-399,109],[-14,4],[-15,4],[-138,55],[-4,7],[0,1],[-44,86],[-41,101],[-10,94],[16,33],[373,772],[627,2189],[265,1298],[76,237],[17,52],[86,188],[203,250],[17,13],[62,49],[38,31],[104,39],[184,-71],[194,-74],[231,-90],[47,0],[53,0],[62,70],[17,71],[-18,169],[-6,58],[-426,1138],[-22,59],[-20,54],[-14,94],[1,35],[20,676],[-100,141],[-255,360],[-65,149],[-11,55],[-41,195],[-10,454],[-10,70],[-51,115],[-18,42],[-119,214],[-704,1264],[-79,102],[-189,156],[-190,79],[-85,-36],[-66,-27],[-20,34],[-430,747],[61,322],[38,443],[-132,144],[-189,278],[-157,315],[-91,362],[-107,356],[-91,305],[-5,18],[-112,410],[-48,318],[5,379],[-91,249],[-105,368],[-34,349],[68,467],[-10,490],[-126,99],[-87,231],[9,430],[-29,347],[44,345],[-100,225],[30,366],[81,404],[74,297],[87,287],[82,345],[88,366],[73,424],[7,377],[54,373],[121,23],[98,241],[-11,373],[9,548],[82,312],[-82,290],[-149,43],[-99,193],[-76,280],[118,128],[131,11],[104,-180],[129,-176],[135,-97],[123,-77],[133,66],[116,107],[124,195],[101,351],[121,107],[126,-101],[105,169],[85,300],[78,278],[85,263],[127,-45],[94,-250],[117,-189],[117,289],[119,274],[96,251],[84,327],[64,438],[-110,123],[-110,175],[-103,300],[-99,276],[23,339],[-20,366],[53,321],[75,287],[-31,336],[32,462],[-105,259],[18,364],[12,379],[-78,426],[-73,407],[-188,204],[-114,162],[-130,150],[-108,157],[-120,188],[-112,167],[-138,152],[-105,159],[-143,150],[-117,120],[111,300],[105,190],[152,175],[-1,358],[-86,248],[-122,135],[-143,-55],[-7,-366],[-122,-88],[-65,291],[-103,382],[-124,-137],[-159,-154],[-86,255],[-69,293],[-138,88],[-112,231],[-69,294],[-130,4],[-131,-64],[-29,355],[49,339],[73,-302],[94,308],[13,349],[-167,251],[99,257],[203,168],[56,336],[-129,110],[-130,59],[-129,-23],[-123,-53],[-154,122],[-114,184],[-63,412],[-65,289],[-109,133],[-118,-75],[-138,-18],[-128,171],[94,292],[87,233],[133,277],[-51,334],[86,241],[38,399],[135,207],[134,26],[117,141],[89,241],[68,315],[-30,335],[-124,389],[-115,364],[-85,433],[-89,473],[-103,222],[-144,74],[-175,-34],[-148,-13],[-135,-8],[-153,98],[-96,237],[-48,360],[-27,336],[-8,45],[-46,270],[-123,46],[-124,39],[-118,100],[-72,313],[-73,295],[-189,192],[-95,313],[-140,257],[-34,372],[81,282],[51,317],[-68,343],[-116,100],[-118,97],[-149,-9],[-100,199],[-52,344],[-95,311],[-130,301],[-91,225],[-98,227],[-96,208],[-108,228],[-78,265],[-178,287],[-144,139],[-144,176],[-355,896],[-758,1972],[-868,2257],[-534,1380],[-510,1315],[-320,826],[-169,438],[-436,1123],[-185,477],[-94,248],[-296,781],[-90,248],[-256,669],[-147,382],[-358,916],[-662,1693],[-89,235],[-91,239],[-791,2088],[-720,1875],[-471,1226],[-788,2050],[-293,763]],[[661732,605281],[-167,-190],[2,-435],[50,-717],[22,-482],[21,-298],[-4,-430],[-28,-203],[-79,-352],[-317,-1024],[-68,-211],[-62,-94],[-131,-54],[-193,94],[-69,-16],[-100,-125],[-55,-109],[-58,-227],[-248,-1196],[-475,-1486],[-72,-219],[-76,-109],[-124,-63],[-175,-15],[-69,-6],[-207,-18],[-135,-34],[-54,-13],[-28,-7],[-82,-39],[-69,-86],[-31,-94],[-83,-348],[-27,-114],[-4,-17],[-134,-585],[-24,-258],[0,-177],[0,-65],[52,-774],[-17,-96],[-1,-6],[-15,-71],[-30,-137],[-41,-191],[-62,-148],[-106,-86],[-45,15],[-74,122],[-2,3],[-19,58],[-1,5],[-4,45],[-24,283],[-8,500],[-2,118],[-4,12],[-38,121],[-58,102],[-64,8],[-63,7],[-60,-1],[-902,-21],[-22,0],[-31,-1],[-107,-55],[-24,-34],[-86,-122],[-79,-172],[-30,-95],[-32,-101],[-234,-891],[-110,-259],[-117,-148],[-114,-102],[-113,-63],[-80,86],[-72,172],[-41,282],[-45,438],[3,328],[7,47],[37,268],[5,37],[4,12],[47,121],[196,352],[21,110],[3,140],[-36,75],[-29,58],[-293,164],[-48,-8],[-86,-62],[-475,-618],[-117,-258],[-412,-1979],[-100,-493],[-20,-399],[20,-234],[48,-235],[86,-281],[76,-180],[79,-109],[214,-219],[127,-195],[79,-149],[38,-141],[17,-94],[0,-6],[-4,-179],[-3,-127],[-13,-61],[-24,-111],[-66,-86],[-103,-24],[-361,23],[-365,125],[-97,64],[-10,6],[-117,189],[-37,61],[-179,477],[-56,86],[-26,31],[-12,13],[-37,42],[-46,5],[-250,26],[-72,-55],[-66,-94],[-34,-179],[-34,-261],[-4,-29],[-268,-610],[-207,977],[-48,110],[-41,31],[-42,-55],[-196,-103],[-272,-143],[-10,-5],[-55,-24],[-103,-46],[-134,-6],[-227,-11],[-33,-22],[-16,-12],[-41,-28],[-58,-141],[-45,-172],[-3,-211],[2,-20],[9,-63],[168,-1238],[10,-79],[3,-17],[15,-84],[68,-110],[80,-86],[44,0],[4,0],[23,16],[11,8],[24,83],[52,175],[1,5],[43,245],[55,180],[55,63],[40,7],[98,17],[52,-32],[55,-156],[17,-63],[0,-265],[-233,-2135],[-34,-43],[-348,-435],[-155,-94],[-112,-189],[-3,-6],[-418,-705],[-29,-72],[-136,-342],[-96,-344],[-162,-782],[-141,-375],[-20,-5],[-1001,-255],[-70,-115],[-477,-785],[-27,-74],[-24,-64],[-45,-120],[-27,-47],[-40,0],[-40,0],[-61,78],[-86,180],[-155,234],[-190,54],[-615,-196],[-103,-110],[-86,-157],[-62,-234],[-7,-104],[-87,-1309],[-10,-55],[-171,-989],[-187,-1076],[-648,-11],[-529,-10],[-186,226],[-8,28],[-130,418],[-368,562],[-26,33],[-12,14],[-206,23],[-120,68],[-455,259],[-86,-63],[-88,-130],[-66,-97],[-120,-157],[-45,-6],[-65,-10],[-225,10],[-83,79],[-3,10],[-96,279],[-14,259],[102,118],[19,22],[24,62],[4,33],[27,194],[-13,332],[-1,20],[-65,313],[-65,180],[-79,102],[-134,102],[-523,291],[-172,165],[-161,219],[-107,227],[-31,133],[1,485],[-21,149],[-132,533],[-132,531],[-96,259],[-16,33],[-98,202],[-161,164],[-199,105],[-70,637],[-5,52],[-58,907],[3,180],[21,94],[15,31],[116,239],[183,374],[9,20],[83,562],[-1,78],[-1,62],[-1,79],[-7,63],[-196,748],[-144,551],[-62,72],[-488,567],[-165,192],[-172,110],[-274,343],[-301,377],[-191,318],[-104,201],[-264,350]],[[638919,591665],[-188,424],[-243,267],[-184,311],[-306,666],[-6,16],[-222,227],[-65,-424],[-29,-186],[0,-1],[-51,-202],[-41,-46],[-1,-1],[-2,0],[-101,-15],[-179,83],[-7,3],[-154,16],[-286,-70],[-72,-78],[-26,-107],[-2,-8],[0,-2],[-7,-164],[93,-743],[34,-204],[65,-156],[2,-7],[23,-79],[6,-86],[-20,-79],[-38,-70],[-126,-15],[-1,0],[-272,78],[-5,3],[-133,68],[-288,446],[-131,204],[-314,227],[-58,24],[-34,-39],[-100,-149],[-62,-195],[-27,-810],[-1,-19],[-207,-70],[-209,109],[-195,248],[-5,6],[-3,5],[-152,297],[-502,95],[-86,-86],[-117,-8],[-224,164],[-175,274],[-41,126],[-7,23],[-1,2],[-181,874],[-1,0],[-193,992],[-6,33],[-8,19],[-61,145],[-330,524],[-39,46],[-81,95],[-1,1],[-13,98],[-39,273],[-144,512],[-330,-1068],[-381,-705],[-198,288],[-37,55],[0,312],[41,274],[86,219],[9,32],[29,117],[31,265],[-10,149],[-23,160],[-11,82],[-21,71],[-17,211],[7,258],[104,540],[33,172],[0,226],[-17,102],[-32,73],[-2,5],[-96,126],[-262,219],[-110,-55],[-157,-200],[-8,-11],[-80,-55],[-75,0],[-11,0],[-1,1],[-81,54],[-255,344],[-34,78],[-48,180],[0,26],[3,256],[-31,143],[-3,13],[-29,63],[-64,141],[-81,138],[-33,57],[-3,3],[-62,60],[-79,-75],[-4,-3],[-52,-86],[-75,-78],[-145,0],[-69,31],[-44,109],[-107,1189],[-14,594],[172,931],[1,2],[0,1],[41,114],[452,-92],[6,-2],[299,-180],[69,32],[27,132],[-3,360],[0,8],[0,1],[-31,257],[-451,2065],[-63,124],[-12,24],[-24,35],[-45,67],[-111,115],[-55,57],[-127,227],[-52,133],[-41,203],[7,282],[57,350],[2,10],[155,492],[41,251],[-7,86],[-1,3],[-37,161],[-68,174],[-15,47],[-121,243],[-1,0],[-151,13],[-464,41],[-238,-204],[-191,-16],[-301,70],[-179,148],[-351,173],[-138,219],[-58,697],[-189,539],[-76,439],[-169,367],[-213,235],[-128,188],[-134,321],[-96,242],[-157,185],[-108,653],[-152,305],[-120,156],[-162,305],[-5,5],[-239,215],[-100,320],[-103,259],[-255,367],[-97,493],[-120,234],[-52,329],[-79,313],[-114,125],[-61,743],[-49,540],[-89,461],[-100,227],[-48,524],[-179,212],[-55,438],[86,391],[-262,375],[-120,462],[-124,571],[-45,594],[-193,454],[-144,313],[-255,164],[-107,227],[-73,289],[-137,681],[-359,360],[-86,336],[-113,516],[-55,384],[71,415],[91,421],[13,399],[-51,368],[-11,493],[86,603],[126,636],[184,1011],[104,563],[27,470],[-89,359],[-107,391],[-62,626],[-28,375],[-185,582],[-63,309],[-120,564],[-218,290],[-162,98],[-124,74],[-151,195],[-186,509],[-76,461],[0,899],[-66,392],[-27,805],[-131,430],[-14,375],[21,650],[-59,367],[-114,219],[0,470],[69,289],[121,328],[41,728],[-14,391],[117,364],[135,355],[162,282],[83,344],[-24,883],[14,524],[86,829],[55,524],[-34,514],[-63,487],[4,399],[0,587],[-76,500],[-3,532],[-66,407],[-194,505],[36,558],[24,391],[-35,555],[-17,427],[-28,645],[90,633],[83,345],[48,367],[-124,1252],[-259,750],[-282,728],[-159,99],[-124,80],[-155,307],[-79,384],[-78,554],[-109,634],[-79,387],[-16,556],[-79,507],[-80,461],[-111,463],[-96,304],[-172,639],[-100,397]],[[516939,639731],[-183,-677],[-103,-211],[-97,-282],[-87,-487],[-178,-309],[-60,-541],[-129,-381],[-8,-433],[11,-387],[398,122],[95,-368],[143,-160],[118,-206],[223,-164],[125,-211],[98,-297],[163,-565],[129,-303],[124,-280],[62,-310],[-31,-352],[-42,-894],[13,-1058],[94,-396],[-35,-822],[-98,-252],[-203,-255],[-273,-243],[-266,-631],[-146,-28],[-484,648],[-188,-19],[-196,210],[-137,3],[-156,-259],[-28,-385],[-72,-288],[-84,-379],[-190,-145],[-132,-23],[-158,69],[-133,-55],[-41,-327],[-65,-321],[-95,-342],[-55,-452],[-84,-475],[-126,-145],[-115,-291],[-4,-435],[-75,-360],[-164,-417],[144,-759],[121,-141],[82,-466],[-5,-392],[20,-358],[-257,-614],[-183,-123],[-173,-358],[-136,-294],[-189,-196],[-197,-161],[-152,-40],[-172,-29],[-155,35],[-99,-291],[-142,-291],[-112,-211],[-129,-481],[-26,-360],[-168,-423],[60,-1061],[-41,-407],[-172,-26],[-479,-535],[-1,-435],[-121,-270],[-101,-326],[-41,-361],[-123,-453],[-101,-242],[-111,-274],[-89,-302],[81,-419],[242,-77],[159,-800],[-10,-355],[-139,-286],[-140,-191],[-352,380],[-137,-4],[-232,-513],[-80,-349],[-32,-349],[-202,-482],[-118,-609],[-145,-411],[-122,-243],[-110,-464],[-137,-221],[-117,-257],[-59,-421],[-52,-365],[-37,-833],[-53,-423],[-95,-225],[-80,-347],[-31,-70],[-90,-207],[-148,-131],[-84,-279],[-48,-319],[-11,-379],[6,-433],[-109,-227],[32,-617],[-55,-326],[-42,-410],[-29,-360],[59,-413],[-9,-410],[-73,-294],[-133,-601],[-10,-341],[-53,-585],[-125,-191],[-138,15],[-201,144],[-218,63],[-144,15],[-153,214],[-132,7],[-83,-529],[-64,-513],[-35,-383],[38,-468],[-15,-358],[-126,-59],[-131,-134],[-111,-327],[-77,-372],[-79,-585],[-13,-383],[-168,-366],[-73,-454],[34,-418],[77,-400],[125,-230],[57,-339],[-31,-405],[22,-628],[-103,-766],[78,-339],[87,-313],[68,-463],[122,-271],[108,-216],[54,-320],[133,-117],[84,-439],[75,-290],[58,-323],[-119,-127],[-161,-579],[-98,-326],[55,-546],[-80,-409],[-73,-393],[-3,-707],[-105,-304],[-118,-202],[-29,-444],[-82,-379],[-140,-363],[-163,-242],[-68,-400],[14,-476],[-261,-197],[-181,-121],[-114,-182],[-78,-330],[-126,0],[-207,-132],[-118,-182],[-54,-338],[25,-419],[-68,-385],[-125,-316],[-139,-165],[-60,-300],[-37,-476],[-90,-240],[-136,31],[-134,132],[-118,-182],[-69,-344],[-89,-243],[-228,-128],[-120,16],[-122,50],[-96,-226],[-145,-165],[-50,-503],[-48,-331],[43,-360],[-72,-476],[-110,-267],[-118,-518],[-34,-487],[71,-567],[-157,-814],[-162,-30],[-157,2],[-141,-107],[-152,77],[-188,113],[-122,14],[-174,300],[-186,49],[-153,94],[-358,176],[-144,63],[-161,162],[-171,385],[-108,185],[-265,223],[-186,30],[-120,47],[-114,90],[-127,91],[-130,-55],[-209,22],[-143,-27],[-141,-180],[-170,-60],[-156,-369],[-68,-297],[-157,-298],[-181,-127],[-158,-33],[-416,-451],[100,-441],[177,-588],[85,-265],[91,-341],[-23,-377],[-127,-237],[-72,-322],[-131,-311],[-132,-113],[-228,-757],[-132,-105],[-188,39],[-137,-72],[-126,-245],[-197,-286],[-167,-42],[-169,-154],[-184,-402],[-180,-345],[35,-432],[121,-211],[102,-642],[153,-533],[-56,-389],[-130,-451],[-141,-374],[-247,195],[-314,-49],[-269,-299],[-112,-196],[-29,-598],[-76,-317],[-8,-524],[-40,-328],[-129,-248],[-141,-209],[-170,-223],[-137,-63],[-100,-196],[-224,-311],[-34,-656]],[[493632,560519],[-530,563],[-1313,1396],[-177,189],[-513,546],[-1675,1781],[-172,183],[-424,452],[-218,230],[-6,8],[-253,269],[-483,514],[-149,154],[-405,185],[-364,165],[-303,139],[-2,1],[-173,79],[-214,109],[-77,39],[-110,54],[-896,420],[-999,482],[-845,399],[-1032,487],[-1262,597],[-536,253],[-223,105],[-1539,656],[-168,73],[-287,122],[-269,114],[-214,91],[-285,123],[-566,240],[-1247,532],[-242,103],[-335,143],[-702,314],[-148,50],[-125,73],[-117,87],[-258,55],[-132,37],[-484,204],[-336,149],[-373,164],[-1019,476],[-171,80],[-149,60],[-296,117],[-124,49],[-136,114],[-46,63],[-137,181],[-550,719],[-251,330],[-153,200],[-141,185],[-275,360],[-737,964],[-718,969],[-403,544],[-240,314],[-640,814],[-810,1031],[-363,450],[-114,141],[-436,614],[-135,167],[-426,658],[-32,51],[-170,278],[-116,189],[-220,383],[-115,198],[-106,173],[-3105,5332]],[[460117,589852],[660,741],[168,1504],[114,770],[-375,788],[14,971],[-210,1525],[-342,1171],[-374,1342],[-546,-60],[-106,663],[-11,189],[-88,1471],[-417,1050],[-283,1021],[57,1103],[422,1358],[423,1499],[225,140],[254,781],[190,1485],[284,388],[519,1318],[347,49],[120,834],[190,310],[605,-60],[570,929],[236,1015],[189,773],[195,1032],[183,767],[-315,1019],[521,1467],[-149,371],[330,1141],[807,360],[475,-492],[664,-513],[693,-471],[814,681],[341,1195],[145,672],[493,523],[128,341],[20,991],[-117,1608],[-105,297],[-163,112],[-289,331],[88,983],[101,1531],[311,1014],[109,1283],[439,836],[63,525],[134,839],[-17,474],[168,526],[257,1385],[22,369],[110,246],[341,787],[146,961],[285,288],[114,449],[-39,576],[315,1536],[245,500],[212,740],[271,321],[91,538],[529,620],[-153,976],[523,1168],[294,514],[-208,1500],[-24,1200],[265,770],[-248,1598],[386,1370],[8,1377],[-44,1211],[-252,1382],[-289,1070],[-215,1110],[-235,457],[-237,550],[-87,936],[112,261],[511,1181],[51,337],[51,709],[-199,56],[-259,1509],[119,738],[31,908],[189,1229],[177,234],[204,633],[377,-160],[539,1578],[118,650],[-47,376],[162,200],[51,347],[-59,615],[154,1128],[119,-68],[403,-34],[296,-69],[296,-734],[118,94],[144,1187],[320,667],[133,126],[202,68],[21,62],[106,274],[-44,1031],[-116,479],[-358,1641],[-264,301],[-93,588],[-141,102],[-214,479],[-27,199],[214,752],[142,615],[119,308],[59,308],[83,820],[83,273],[-107,376],[-118,206],[-131,68],[-68,74],[-15,609],[83,308],[24,479],[59,410],[-47,376],[83,410],[-24,376],[-71,308],[36,342],[118,171],[131,376],[23,399],[-12,387],[36,342],[107,341],[0,445],[83,752],[166,103],[154,-69],[273,342],[118,308],[-23,376],[-92,381],[-12,752],[-202,445],[-37,420],[-10,469],[198,507],[119,137],[190,136],[23,411],[58,312],[108,234],[83,376],[60,821],[-48,376],[-12,342],[61,436],[212,828],[285,718],[118,855],[292,445],[5937,-6163],[404,-420],[2665,-2955],[1541,-752],[2668,-3794],[4258,-19055],[322,-1442],[2491,-11150],[1,-5],[5517,-4454],[7252,-5854],[6326,-5107]],[[755908,671390],[-110,-1101],[-202,-625],[-244,-454],[-320,-328],[-228,-557],[-65,-451],[-41,-1046],[-122,-782],[-233,-1284],[-164,-1020],[-96,-608],[-104,-1006],[-145,-827],[-79,-272],[-232,-1107],[-231,-1171],[-94,-1084],[-51,-1090],[-103,-1145],[64,-1157],[-71,-1166],[-112,-946],[82,-756],[-74,-673],[-47,-862],[185,-31],[169,-687],[74,-1090],[-100,-1032],[74,-1201],[164,-1315],[92,-929],[37,-768],[74,-829],[141,-969],[164,-935],[190,-1064],[80,-950],[99,-962],[102,-768],[209,-720],[-105,-1015],[-592,-498],[-259,557],[-184,857],[-110,974],[-120,1068],[-259,584],[-336,-203],[-199,-236],[-190,9],[63,903],[79,759],[-71,1089],[-293,13],[-328,167],[-264,570],[217,1126],[-37,787],[-321,230],[-370,-81],[-278,-108],[-284,-367],[-219,451],[-353,259],[-242,429],[-26,46],[222,1036],[381,746],[-237,601],[-374,339],[-40,746],[-229,580],[-323,790],[-493,13],[-452,135],[-307,-485],[-192,-584],[72,-816],[285,-756],[326,-530],[249,104],[314,-154],[54,-1010],[93,-1063],[293,-631],[17,-74],[164,-700],[367,-882],[-78,-1219],[89,-995],[315,-684],[349,-257],[191,-613],[255,-619],[230,-534],[293,-500],[229,-890],[143,-686],[246,-257],[381,-269],[350,-220],[375,-447],[-112,-700],[139,-988],[359,-164],[246,579],[347,-20],[-216,-919],[48,-1115],[291,-736],[357,-744],[226,-463],[266,-410],[299,-381],[326,-474],[255,-474],[90,-234],[342,-679],[164,-776],[78,-373],[69,-396],[109,-315],[82,-253],[152,-496],[80,-292],[95,-275],[136,-679],[-35,-412],[71,-383],[4,-358],[-10,-960],[-263,644],[-261,166],[-366,-952],[-372,-490],[-290,-173],[19,788],[-140,499],[394,254],[15,1011],[48,923],[-274,836],[-3,-10],[-215,-697],[-181,-106],[-70,-41],[10,-31],[237,-737],[-399,-380],[-96,-723],[-34,-762],[-253,-740],[-292,-115],[-212,41],[-347,388],[-450,-329],[-374,-498],[-204,67],[-183,456],[-196,346],[-241,386],[-207,59],[-241,425],[-375,549],[-321,-500],[-349,-553],[-175,-154],[-228,-541],[-363,-317],[-492,221],[-249,33],[-318,421],[-266,208],[-240,69],[-219,115],[-178,-28],[-1,-7],[-78,-686],[50,-64],[242,-305],[195,-704],[175,-447],[4,-10],[340,-41],[436,-704],[372,448],[165,-705],[202,-77],[307,691],[308,225],[344,424],[180,796],[141,-977],[250,-786],[198,-6],[281,373],[123,-502],[9,-754],[-47,-971],[272,185],[225,-83],[157,-542]],[[753011,614116],[-120,-112],[-147,-127],[-132,-141],[-103,-240],[-121,-107],[-56,-365],[35,-402],[115,-339],[70,-375],[58,-429],[48,-319],[-24,-389],[-33,-347],[83,-370],[0,-433],[-3,-594],[-1,-345],[61,-596],[-28,-428],[-134,-379],[-127,-227],[-117,-196],[-131,-139],[-136,-279],[-100,-191],[-78,-267],[-68,-326],[38,-354],[52,-409],[18,-339],[36,-375],[-35,-368],[-87,-245],[-77,-318],[-9,-387],[-80,-554],[-121,41],[-136,131],[-124,-148],[-15,-419],[-47,-465],[90,-378],[-3,-108],[-6,-256],[-33,-404],[-51,-463],[-48,-381],[-23,-413],[80,-336],[30,-395],[45,-435],[-20,-644],[-41,-458],[-44,-448],[-32,-346],[-35,-332],[-100,-312],[-106,-383],[-110,-263],[-61,-317],[34,-379],[-34,-345],[-69,-353],[-162,-316],[-108,-284],[-49,-356],[-53,-359],[14,-497],[90,-257],[115,-239],[143,-103],[104,-255],[26,-288],[7,-77],[7,-433],[-67,-334],[-56,-373],[-53,-361],[-71,-317],[-30,-348],[115,-200],[143,43],[124,79],[79,-66],[44,-36],[57,-335],[110,-181],[142,89],[110,-269],[121,-388],[63,-299],[134,-144],[122,-21],[84,-242],[83,-287],[129,-69],[140,-98],[95,-216],[101,-197],[107,-234],[-29,-370],[43,-536],[56,-412],[-17,-377],[77,-691]],[[752788,582642],[-118,-36],[-589,392],[-136,235],[-105,351],[-147,762],[-154,460],[-293,435],[-293,217],[-181,-51],[-206,-126],[-214,-210],[-248,-369],[-671,-1400],[-409,-1082],[-225,-335],[-226,-118],[-300,133],[-211,267],[-445,968]],[[747617,583135],[-96,404],[-184,343],[-297,393],[-376,166],[-207,-126],[-112,-168],[-101,-260],[-135,-637],[-109,-344],[-67,-100],[-263,-102],[-342,108],[-233,234],[-331,450],[-203,351],[-165,335],[-501,961],[-286,518],[-285,300],[-1349,640],[-185,342],[-90,301],[-211,1247],[-171,1272],[-150,502],[-267,510],[-192,259],[-470,207],[-132,276],[-211,702],[-136,669],[-133,1800],[-147,544],[-154,242],[-350,23],[-206,91],[-98,218],[-160,294]],[[738512,596100],[-301,720],[-75,1152],[-1,14],[-77,1177],[-363,2041],[-32,182],[-178,862],[-45,586],[-48,326],[-13,92],[-99,840],[-372,456],[-136,813],[-201,901],[-64,595],[3,259],[-147,544],[-285,336],[-387,411],[-325,344],[-353,-236],[-135,-419],[-90,-570],[-161,-278],[-399,132],[-452,1013],[-540,995],[-815,854],[-362,277],[-400,308],[-397,-534],[-139,-26],[-304,90],[-207,-126],[-143,-286],[-289,-396],[-165,-101],[-293,-2],[-203,-85],[-192,-177],[-180,-269],[-269,-622],[-34,-159],[-22,-469],[23,-184],[211,-702],[66,-1465],[-41,-461],[-176,-227],[-259,-93]],[[728646,604533],[-34,308],[-580,298],[-324,534],[-245,542],[-280,1036],[-79,645],[-70,1205],[-95,694],[-121,401],[-301,568],[-272,684],[-396,609],[-260,592],[-253,459],[-560,289],[-102,-43],[-320,140],[-139,192],[-159,635],[-42,628],[48,544],[164,538],[38,288],[34,258],[47,359],[-136,451],[-218,400],[-414,181],[-987,-186],[-337,-193],[-251,-412],[-135,-420],[-201,-956],[-475,-1402],[-176,-446],[-435,-941],[-161,-278],[-105,-84],[-279,165],[-181,383],[-219,727],[-46,477],[36,419],[79,484],[93,573],[26,39],[64,95],[41,244],[189,1701],[-16,268],[-118,660],[-370,1119],[-360,1463],[-297,1739],[-151,501],[-437,582],[-105,180],[-105,118]],[[638919,591665],[-194,-510],[-386,-1027],[-479,-1286],[-122,-318],[-104,-285],[-253,-780],[-107,-305],[-514,-1480],[-454,-1357],[-560,-1721],[-344,-1031],[-103,-314],[-679,-2060],[-642,-1952],[-610,-1852],[-209,-636],[-206,-639],[-134,-417],[-490,-1514],[-18,-56],[-402,-1248],[-426,-1321],[-457,-1411],[-87,-269],[-259,-817],[-220,-693],[-230,-726],[-211,-665],[-280,-900],[-473,-1523],[-171,-550]],[[629095,562002],[-226,178],[-359,283],[-279,257],[-276,255],[-128,114],[-246,216],[-490,431],[-236,208],[-448,395],[-224,192],[-176,152],[-21,17],[-145,124],[-288,244],[-320,271],[-845,721],[-783,666],[-457,417],[-117,105],[-350,318],[-124,114],[-641,583],[-252,227],[-415,379],[-126,114],[-162,148],[-240,218],[-258,231],[-195,180],[-724,657],[-760,693],[-623,546],[-399,350],[-261,229],[-501,438],[-248,212],[-28,23],[-860,763],[-304,266],[-1758,1410],[-160,131],[-467,404],[-1101,952],[-456,394],[-151,166],[-775,736],[-1636,1474],[-397,357],[-229,218],[-781,704],[-458,408],[-237,221],[-439,403],[-552,505],[-377,345],[-300,270],[-489,439],[-132,118],[-251,226],[-346,311],[-123,111],[-122,110],[-270,269],[-1347,1351],[-2879,2879],[-464,473],[-1367,1359],[-1337,1328],[-279,277],[-498,495],[-183,182],[-893,888]],[[584093,569510],[-75,-335],[-68,-289],[-72,-433],[-87,-325],[-49,-438],[13,-364],[125,-432],[-190,-637],[23,-371],[15,-425],[-62,-333],[-138,-188],[-107,-250],[-96,-320],[-84,-391],[-28,-344],[-3,-38],[26,-395],[-53,-416],[-201,-444],[-94,-284],[-73,-322],[-139,-256],[-83,-256],[2,-621],[-110,-504],[-69,-317],[-153,-102],[-40,-259],[-13,-91],[-87,-292],[-118,-140],[-59,-345],[-88,-312],[-59,-415],[7,-353],[-13,-408],[-34,-269],[-15,-120],[-63,-305],[-95,-310],[-107,-307],[-45,-394],[74,-435],[56,-305],[6,-31],[13,-407],[-7,-360],[-52,-380],[-43,-321],[-5,-52],[-38,-451],[-33,-369],[52,-355],[-40,-491],[-77,-277],[-15,-56],[-30,-122],[-75,-305],[-65,-502],[0,-5],[-6,-742],[-18,-399],[19,-397],[-83,-779],[-48,-358],[-18,-353],[-103,-234],[-135,5],[-184,-174],[-42,-322],[-21,-664],[-3,-755],[13,-485],[-13,-422],[-132,-350],[-119,-297],[-195,-320],[-119,-99],[-84,15],[-47,9],[-283,-694],[3,-446],[45,-487],[39,-363],[-21,-504],[110,-324],[114,-481],[-124,-304],[-109,-197],[52,-322],[108,-327],[15,-471],[169,-155],[22,-34],[109,-172],[101,-204],[204,-131],[25,-400],[5,-394],[48,-323],[-82,-341],[21,-392],[158,-183],[1,-361],[-59,-277],[-5,-26],[-79,-319],[-101,-256],[-116,-165],[-73,-276],[-86,-256],[-32,-346],[77,-268],[130,-61],[133,-46],[-25,-433],[1,-14],[31,-322],[99,-314],[113,-197],[108,-184],[86,-328],[37,-347],[-23,-343],[-67,-292],[-122,-310],[-40,-345],[32,-602],[32,-593],[2,-397],[-56,-318],[-119,-193],[-75,-304],[-25,-423],[-143,-6],[-177,164],[-139,112],[-122,28],[-108,-167],[-129,-46],[-60,-337],[-118,-186],[-265,-435],[-190,-100],[-86,-281],[138,-360],[-14,-431],[-6,-346],[-10,-281],[-4,-109],[69,-345],[46,-404],[-80,-317],[-226,-287],[-105,-272],[-120,-205],[-198,-222],[-125,-57],[-122,-42],[-151,-121],[-127,-225],[-156,-129],[-116,-106],[-73,-296],[-134,-213],[-143,-11],[-77,-370],[-117,-65],[-118,-131],[-161,86],[-143,-188],[-118,-125],[-123,-120],[-122,-53],[-105,-210],[-10,3],[-108,38],[-130,17],[-194,-142],[-146,-163],[-12,-347],[-110,-134],[-104,-218],[-148,-313],[-79,-370],[-274,-282],[-135,30],[-100,-209],[-101,-223],[-113,-260],[-103,-302],[-95,-259],[-152,-182],[-114,-260],[-130,-211],[-161,-121],[-97,-230]],[[573431,515103],[-175,-436],[-75,-314],[-100,-346],[-114,-239],[-121,-296],[-203,-349],[-143,-234],[-136,-382],[-111,-425],[-141,-321],[-202,-138],[-153,-125],[-125,-194],[-96,-226],[-83,-278],[-42,-139],[-63,-315],[-10,-50],[-76,-373],[-26,-342],[-11,-197],[-11,-182],[-50,-318],[-125,-196],[-113,-112],[-101,94],[-13,12],[-121,-124],[-103,-212],[-131,177],[-131,99],[-119,8],[-120,-84],[-142,-104],[-121,-41],[-120,83],[-135,227],[-131,62],[-132,-240],[-92,-297],[-145,-474],[-116,-374],[-79,-635],[-47,-515],[-79,-302],[-118,-320],[-126,-169],[-141,-391],[-40,-417],[-12,-531],[3,-411],[7,-234],[6,-183],[18,-353],[40,-517],[1,-409],[-43,-423],[-157,-544],[-107,-406],[-94,-404],[-56,-303],[-78,-575],[-105,-296],[-111,-357],[18,-506],[14,-397],[-78,-259],[-103,-277],[-142,-207],[-146,-82],[-138,23],[-116,78],[-115,102],[-61,41],[-69,46],[-127,-46],[-145,-222],[-125,-304],[-75,-269],[-32,-141],[-38,-166],[-87,-324],[-127,-277],[-107,-189],[-129,-223],[-47,-75],[-60,-96],[-154,-238],[-47,-359],[59,-305],[36,-358],[15,-139],[-63,-343],[-69,-409],[-10,-231],[-6,-127],[-12,-345],[-56,-349],[-15,-359],[5,-491],[92,-222],[137,-27],[119,-172],[140,-220],[124,49],[141,130],[90,80],[84,76],[175,117],[214,139],[158,96],[242,-3],[50,-340],[52,-369],[-49,-414],[-102,-330],[-50,-437],[-84,-318],[-107,-212],[-52,-328],[-73,-290],[-73,-285],[-101,-382],[-74,-317],[-114,-262],[43,-344],[3,-439],[-114,-156],[6,-375],[-85,-327],[-99,-321],[-32,-340],[102,-312],[45,-341],[-24,-463],[-99,-473],[-21,-384],[55,-317],[109,-176],[50,-328],[97,-223],[-124,-128],[-146,-122],[-133,-253],[-116,-84],[-157,-4],[-108,-194],[-115,-156],[-140,-124],[-218,-117],[-118,32],[-138,180],[-113,-108],[-157,-72],[-139,26],[-110,168],[-122,35],[-130,-13],[-125,-98],[-87,-263],[-65,-296],[10,-400],[-100,-250],[-108,-208],[-168,-236],[-155,-190],[-125,-78],[-149,34],[-143,-101],[-123,21],[-127,29],[-137,29],[-150,-68],[-157,17],[-222,9],[-122,-7],[-153,119],[-152,91],[-123,-2],[-84,-256],[-57,-341],[-108,-237],[-151,-173],[-114,-153],[-53,-348],[-90,-235],[-126,-202],[-99,-245],[-91,-238],[-100,-218],[-97,-219],[-86,-286],[-58,-370],[-66,-411],[-102,-288],[-100,-248],[-93,-222],[-111,-224],[-41,-331],[-2,-344],[-63,-300],[-73,-290],[-70,-345],[-38,-353],[51,-316],[80,-262],[126,-345],[88,-234],[102,-226],[-134,40],[-131,-21],[-131,-94],[-111,-124],[-132,-94],[-142,-102],[-131,-99],[-126,-164],[-222,-400],[-159,-74],[-167,-5],[-142,-92],[-113,-148],[-86,-237],[-96,-257],[-104,-200],[-204,-240],[-160,-225],[-188,-342],[-103,-206],[-114,-189],[-168,-300],[-93,-377],[-81,-271],[-88,-264],[-171,-297],[-95,-319],[-123,-713],[-75,-364],[4,-457],[-31,-387],[-118,-155],[-102,-243],[-114,-180],[-140,-401],[-78,-290],[-71,-307],[-94,-247],[-139,-330],[-147,-201],[-116,-131],[-123,-82],[-108,-289],[-106,-283],[-123,-534],[-132,-128],[-130,-206],[-190,-629],[-141,-247],[-116,238],[-156,84],[-103,276],[-85,77],[-56,50],[-113,136],[-206,323],[-193,399],[-241,742],[18,513],[-80,548],[-73,273],[5,420],[-146,-9],[-166,-144],[-187,-233],[-114,-106],[-174,-21],[-157,4],[-74,40],[-115,63],[-136,14],[-277,-83],[-113,2],[-84,2],[-133,-30],[-180,140],[-226,-18],[-118,-181],[-214,-73],[-255,-29],[-143,-38],[-198,-81],[15,603],[-9,515],[-15,188],[-22,273],[-71,512],[-111,274],[-144,207],[-190,258],[-108,157],[56,925],[-1,380],[-16,444],[-84,732],[-96,290],[-50,378],[-53,320],[-13,763],[-94,215],[-153,-46],[-282,-75],[-88,262],[-98,257],[-193,345],[-149,406],[-142,430],[-160,-156],[-106,-214],[-108,-286],[-155,-403],[-182,-258],[-113,-135],[-174,137],[-183,69],[-140,-33],[-31,-7],[-140,86],[-76,167],[-85,188],[-70,-117],[-68,-116],[-190,-260],[-142,-93],[-131,-113],[-72,-62],[-283,-382],[-223,-47],[-123,63],[-149,-37],[-156,-200],[-151,-71],[-227,-249],[-114,-140],[-259,-290],[-236,-327],[-62,-210],[-57,-192],[-54,-410],[-61,-476],[-228,-191],[-165,-195],[-123,-176],[-173,-16],[-134,314],[-5,10],[-173,24],[-179,-123],[-171,-115],[-396,-294],[-158,-6],[-129,-160],[-160,-317],[-52,-151],[-60,-179],[-158,-614],[-78,-318],[-64,-309],[-129,-60],[-171,-12],[-133,38],[-171,-40],[-129,-84],[-89,-10],[-50,-6],[-31,-98],[-78,-248],[-309,-331],[-221,-262],[-140,-145],[-91,-247],[-167,-77],[-16,-1],[-123,-12],[-202,-88],[-124,-89],[-239,-334],[-199,-321],[-147,41],[-35,410],[-126,34],[-119,175],[-55,353],[-75,266],[-139,-101],[-155,-130],[-193,-154],[-158,-62],[-160,-110]],[[535697,461579],[-3149,7931],[-295,486],[-35,59],[-287,470],[-57,94],[-472,783],[-418,689],[-305,503],[-168,279],[-33,55],[-189,311],[-2,3],[-180,257],[-178,288],[-505,780],[-195,300],[-167,259],[-162,309],[-100,194],[-947,1542],[-109,178],[-773,1256],[-1130,1784],[-332,525],[-747,1185],[-164,262],[-536,870],[-504,807],[-176,283],[-848,1362],[-339,538],[-266,422],[-1029,1654],[-955,1544],[-362,614],[-981,1570],[-290,463],[-296,474],[-31,50],[-1536,2459],[-206,328],[-128,204],[-470,762],[-1313,2126],[-451,775],[-260,477],[-427,722],[-181,305],[-500,838],[-1761,3022],[-826,1437],[-1396,2359],[-279,473],[-227,425],[-920,1436],[-517,985],[-127,218],[-424,722],[-57,99],[-991,1702],[-115,198],[-159,272],[-55,95],[-257,441],[-71,121],[-93,157],[-305,504],[-209,357],[-102,174],[-117,199],[-598,1024],[-779,1334],[-225,384],[-777,1331],[-398,693],[-767,1317],[-284,472],[-431,717],[-15,25],[-157,265],[-107,177],[-403,705],[-275,481],[-187,328],[-942,1621]],[[497160,528278],[-185,463],[-126,324],[-191,482],[-100,232],[-275,694],[-406,975],[41,176],[31,44],[17,126],[151,398],[111,395],[80,386],[133,551],[89,254],[87,236],[112,365],[81,312],[81,279],[82,387],[92,314],[140,480],[92,251],[90,292],[155,512],[117,402],[103,392],[114,379],[97,282],[98,391],[98,348],[182,699],[91,400],[121,436],[147,422],[103,260],[94,216],[124,346],[108,195],[189,526],[128,347],[108,267],[141,251],[157,379],[136,468],[99,325],[172,427],[158,446],[99,267],[148,567],[109,278],[199,542],[148,564],[212,509],[239,752],[132,594],[73,309],[117,401],[66,386],[211,974],[106,774],[54,437],[83,360],[157,730],[-29,393],[-294,543],[-269,514],[-292,229],[-100,234],[-150,195],[-126,-313],[-152,-344],[-161,-72],[-160,-231],[-83,-272],[-132,-22],[-103,229],[-184,-20],[-426,-638],[-248,504],[-110,270],[-266,245],[-11,-1],[-237,-29],[-136,-207],[-157,-118],[-141,-25],[-91,267],[-129,148],[-123,227],[-335,486],[-174,93],[-311,342],[-195,179],[-171,16],[-157,-65],[-137,-161],[-159,-49],[-106,-162],[-115,-162],[-140,-157],[-74,-269],[-123,-38],[-113,-208],[-123,-112],[-119,-231],[-120,-157],[-211,-272],[-71,-376],[-132,-128],[-82,-341],[-114,-180],[-94,-352],[-118,-195],[-86,-375],[-104,-273],[-131,-238],[-470,-766],[-171,-85],[-193,63],[-308,55],[-241,9],[-153,-112],[-100,-314],[-140,40],[-118,-102],[-136,-277],[-158,-105],[-209,-35],[-123,-126],[-119,-71],[-199,122],[-162,20],[-160,94],[-103,446],[-69,328],[4,462],[65,304],[134,110],[219,148],[92,234],[147,93],[123,196],[111,154],[127,182],[137,319],[199,369],[24,433],[-95,456],[-118,334],[-98,259],[-45,499],[-96,279],[-172,47],[-60,298],[44,347],[141,168],[127,251],[135,264],[162,232],[121,60],[140,-6],[106,166],[146,258],[143,-14],[127,0],[196,242],[125,196],[150,261],[-13,373],[-37,328],[-2,458]],[[516939,639731],[263,-210],[278,327],[520,685],[663,133],[398,534],[535,986],[746,427],[404,-860],[378,790],[36,1684],[-296,2264],[1242,1870],[474,227],[634,2592],[502,1300],[471,2222],[524,-443],[844,-208],[111,3515],[283,2060],[1813,2568]],[[549718,564703],[-117,-231],[-288,-204],[-280,-476],[-65,-366],[-376,-212],[-547,-272],[-475,-248],[-140,-72],[-157,-114],[-10,-3],[-120,-33],[-641,-30],[-330,-16],[-319,-15],[-348,-18],[-542,-25],[-133,89],[-222,528],[-147,73],[-16,16],[-141,-168],[-112,49],[-105,4],[-142,-22],[-211,-118],[-457,-187],[-187,-212],[-137,-154],[-104,-259],[-95,-288],[-96,-362],[0,-2],[-323,-1234],[-127,-471],[-85,-319],[-61,-299],[-73,-443],[-89,-468],[-79,-410],[-105,-552],[-214,-1360],[-27,-215],[-104,-860],[-65,-595],[-162,-1094],[-162,-1093],[-65,-438],[-13,-144],[-2,-183],[-10,-27],[9,-104],[9,-32],[12,-99],[12,-80],[102,-673],[171,-1100],[104,-580],[81,-448],[66,-364],[1,-10],[61,-310],[105,-595],[43,-231],[29,-153],[90,-118],[189,-228],[115,-139],[259,-310],[418,-492],[258,-327],[304,-343],[91,-103],[17,-66],[46,-186],[12,-48],[60,-17],[33,-9],[-5,-227],[-4,-156],[39,-145],[36,-136],[29,-93],[229,-520],[111,-179],[226,-254],[256,-109],[695,36],[184,152],[233,192],[247,204],[143,332],[98,247],[17,408],[95,-134],[193,-271],[160,-232],[252,-369],[2,-2],[105,-156],[155,-220],[161,-235],[300,-488],[223,-357],[242,-388],[221,-317],[229,-323],[136,318],[214,611],[429,600],[56,95],[118,0],[45,63],[31,72],[150,262],[33,54],[52,86],[117,194],[41,284],[24,86],[15,23],[24,35],[126,145],[46,54],[114,40],[398,656],[398,652],[49,80],[102,167],[125,376],[92,318],[94,331],[443,1547],[103,370],[71,303],[120,715],[36,326],[-30,60],[-144,282],[2,11],[10,44],[7,11],[186,277],[42,63],[108,1097],[160,1605],[57,567],[59,582],[59,554],[60,629],[31,446],[30,402],[-63,360],[-55,338],[-138,267],[-21,41],[-283,543],[-335,647],[-114,219],[-544,1048],[412,1473],[487,569],[369,138],[235,96],[-133,218],[-218,346],[-250,440],[-191,322],[-133,223],[-88,157],[-44,79],[-217,340],[-30,56],[-112,208],[-171,267],[217,850],[-215,205],[-699,719],[-113,114],[-249,316],[-123,-406],[-105,-325],[-90,-334],[-168,-569]],[[565725,532734],[-486,-1699],[-205,494],[-671,-1429],[-69,-188],[-93,193],[-216,360],[-7,-20],[-247,-670],[-279,-764],[-406,736],[-193,289],[-38,14],[-53,-537],[-26,-254],[-172,-62],[-59,21],[-48,-55],[45,-746],[44,-453],[-133,-482],[-3,-11],[-89,-289],[-87,-276],[-131,-414],[-147,-465],[-86,-270],[-95,-301],[-90,-285],[-84,-268],[-713,-1352],[-75,136],[-189,-374],[-24,34],[-346,-716],[47,-136],[98,-303],[-112,-506],[-170,-769],[468,-410],[543,-454],[-6,-111],[-25,-412],[-289,-390],[-213,-271],[18,-44],[1,-10],[5,-60],[-279,-367],[310,-726],[-207,-455],[149,-394],[-45,-105],[641,-299],[317,-131],[45,609],[320,-634],[154,-892],[49,0],[121,79],[49,52],[315,233],[125,100],[15,-175],[9,-88],[37,-157],[21,-228],[33,-183],[70,-488],[121,-842],[31,-210],[16,0],[26,0],[140,79],[0,-105],[39,-333],[9,-218],[8,-87],[22,-238],[15,-163],[63,-695],[94,-1265],[56,-301],[70,-335],[78,-290],[165,211],[218,339],[18,493],[49,331],[53,367],[260,481],[857,1583],[833,-206],[183,447],[61,-126],[353,-702],[150,-221],[129,-143],[28,-23],[89,-73],[15,-12],[127,-72],[11,-4],[116,-40],[119,-16],[131,10],[128,38],[5,2],[108,60],[35,19],[158,135],[156,156],[413,410],[116,78],[130,39],[131,-13],[142,-70],[150,-149],[122,-196],[108,-260],[522,1846],[170,599],[12,40],[-46,92],[-1,1],[-72,164],[-25,84],[25,27],[134,143],[43,34],[44,63],[30,11],[39,50],[-169,812],[-72,1350],[16,510],[11,140],[140,1807],[204,339],[161,268],[531,1188],[151,403],[93,312],[-173,207],[-149,181],[31,67],[89,374],[91,350],[112,428],[86,296],[-55,61],[-133,169],[-170,208],[-137,182],[-143,170],[-126,160],[-82,91],[14,57],[126,549],[-113,135],[-274,317],[-99,129],[22,216],[59,539],[53,467],[42,400],[41,377],[49,444],[45,416],[-212,388],[-122,221],[-186,83],[-15,-58],[-34,27],[307,1245],[-7,2],[-383,77],[-108,-610],[-261,146],[-124,-855],[-317,-10],[-228,69],[-3,-7],[-42,-100],[-102,-260],[-60,101],[-88,269],[-98,791],[-113,241],[-160,8],[-121,-154],[-126,10],[-124,199],[-141,234],[-187,315],[-122,199],[-128,208],[-16,88],[-119,-588],[-194,-15],[-182,57],[-30,0],[-168,198],[-51,26],[-130,109],[-59,-16],[-13,11],[-415,353],[-38,-187],[-225,270]],[[788133,590417],[-43,-359],[-101,-287],[-232,-228],[-125,-124],[-95,-204],[96,-204],[56,-303],[-20,-436],[-104,-164],[-151,-67],[56,-371],[-41,-411],[-120,-16],[-134,141],[-161,383],[-85,242],[-207,-70],[-129,106],[-124,35],[-110,-158],[-25,-36],[-118,-164],[-7,-1364],[7,-983],[-20,-439],[-15,-587],[-27,-855],[-15,-928],[-62,-3633],[-14,-849],[-59,-3511],[-21,-1197],[-38,-2263],[-27,-1641],[-8,-424],[-8,-508],[-1,-47],[-14,-820],[-6,-380],[-8,-462],[-6,-354],[-46,-2673],[-10,-582],[-9,-588],[12,-659],[-2,-31],[-33,-744],[-124,-79],[-151,-265],[-83,-376],[17,-391],[121,-613],[-99,-279],[-122,-148],[-289,55],[-155,-24],[-175,-245],[-134,-182],[-110,-127],[-141,-23],[-182,-258],[-90,-399],[-99,-305],[-25,-555],[4,-814],[-42,-336],[-3,-352],[120,-360],[141,7],[63,-434]],[[784221,554697],[-346,-497]],[[783875,554200],[-137,-70],[-131,-136],[-93,-251],[-80,-346],[-80,-346],[-31,-391],[47,-478],[48,-410],[52,-350],[43,-505],[23,-479],[36,-376],[24,-410],[-8,-405],[-63,-449],[-107,-479],[-107,-342],[-142,-308],[-166,-239],[-166,-205],[-131,-102],[-130,-35],[-166,103],[-154,239],[-119,342],[-107,274],[-106,307],[-107,342],[-83,342],[-36,410],[-23,479],[-12,439],[-12,484],[0,512],[0,547],[-24,411],[-24,512],[-32,511],[-74,276],[-119,102],[-130,137],[-166,103],[-131,102],[-118,34],[-143,0],[-189,0],[-143,0],[-166,-68],[-178,-205],[-213,-274],[-214,-307],[-225,-376],[-202,-411],[-106,-239],[-178,-342],[-166,-342],[-190,-376],[-142,-341],[-166,-308],[-166,-239],[-143,-137],[-130,-34]],[[777773,550097],[-545,444],[-119,239],[-107,308],[-71,273],[-59,411],[-71,376],[-60,530],[-71,564],[-95,376],[-166,444],[-166,342],[-178,308],[-166,171],[-130,136],[-178,137],[-202,137],[-166,102],[-142,69],[-118,68],[-143,171],[-154,205],[-142,205],[-143,239],[-189,274],[-147,130],[-185,177],[-166,69],[-190,0],[-178,-69],[-130,-102],[-214,-240],[-130,-205],[-190,-239],[-190,-273],[-134,-167],[-186,-278],[-142,-171],[-142,-68],[-119,34],[-147,57],[-292,217],[-213,136],[-154,205],[-211,316],[-122,163],[-154,239],[-130,205],[-154,205],[-119,137],[-213,308],[-143,239],[-213,342],[-130,273],[-119,171],[-61,176],[-81,235],[-83,273],[-261,821],[-131,410],[-71,273],[-107,274],[-130,307],[-213,376],[-119,274],[-166,273],[-119,240],[-166,444],[-130,239],[-143,308],[-106,171],[-171,252],[-138,192],[-130,171],[-130,376],[-119,379],[-119,476],[-94,342],[-93,351],[-109,264],[-119,205],[-189,239],[-190,240],[-166,79],[-621,158],[-13,3],[-360,-100],[-124,-184],[-79,-117],[-131,-377],[-38,-419],[16,-469],[11,-326],[61,-198],[288,-916],[11,-310],[-72,-578],[-29,-69],[-94,-224],[-289,-393],[-147,-109],[-428,-92],[-761,536],[-195,0],[-563,251],[-301,243],[-150,393],[-71,511],[94,1264],[60,339],[18,105],[242,855],[88,309],[113,402],[169,687],[60,452],[330,1290],[60,147],[128,313],[76,113],[3,5],[2,7],[98,466],[1,4],[49,544],[-37,670],[-71,375],[-155,814],[-349,1114],[-255,636],[-225,754],[-77,390],[-17,87],[-22,217],[-16,155],[-4,39],[4,67],[21,372],[9,155],[63,179],[5,15],[37,108],[203,301],[740,628],[353,17],[165,100],[82,23],[819,228],[327,261],[94,74],[112,168],[7,16],[1,3],[169,425],[9,36],[21,81],[56,845],[-22,402],[-64,215],[-91,302],[-55,187],[-47,67],[-154,218],[-111,159],[-37,32],[-178,155],[-93,81],[-432,193],[-218,-34],[-667,-210],[-76,-24],[-414,184],[-67,117],[-150,502],[-79,645],[-64,187],[-58,172],[-17,52],[-38,16],[-165,74],[-4,2],[-3,-1],[-173,-41],[-143,-34],[-210,-167],[-192,-176],[-342,-174],[-251,-128],[-218,-34],[-177,66],[-39,14],[-351,129],[-158,-17],[-229,-159],[-225,-335],[-121,-469],[-131,-1466],[-7,-519],[35,-716],[6,-129],[87,-779],[41,-846],[-41,-1114],[-52,-586],[-87,-527],[-63,-277],[-151,-368],[-198,-260],[-203,-84],[-533,130],[-117,28],[-310,-262],[-28,-23],[-63,-58],[-207,91],[-120,402],[-90,519],[21,161],[66,507],[96,731],[210,1256],[90,787],[-2,107],[-13,597],[-53,502],[-129,431],[-6,21],[-117,226],[-29,44],[-57,82],[-188,83],[-206,-126],[-111,-174],[-44,-70],[-266,-418],[-22,-142],[-481,-1006],[-144,-229],[-189,-300],[-31,-49],[-191,-176],[-161,113],[-4,4],[-9,35],[-24,95],[-204,824],[-25,90],[-117,433],[-12,46],[-126,236],[-505,952],[-5,8],[-210,268],[-116,76],[-59,40],[-436,287]],[[753011,614116],[153,68],[114,133],[117,120],[113,432],[108,697],[219,321],[182,-617],[321,-271],[317,189],[463,618],[503,472],[387,-171],[464,-2],[456,156],[428,-69],[341,-133],[218,-146],[189,-424],[204,-488],[322,-510],[437,-638],[379,-464],[272,-405],[382,-366],[496,-187],[502,-153],[323,-97],[450,-58],[384,-120],[720,58],[676,291],[374,248],[754,650],[568,610],[364,194],[580,578],[394,295],[280,52],[355,279],[564,-98],[474,110],[314,-31],[330,31],[989,251],[360,47],[339,281],[683,684],[335,229],[300,161],[325,267],[360,581],[356,759],[416,1081],[548,1775],[730,2104],[171,525],[225,436],[533,-7],[456,-347],[568,214],[145,8],[130,30],[206,28],[273,152],[137,77],[359,221],[240,132],[258,107],[317,128],[276,14],[409,-85],[266,-126],[241,-173],[365,-465],[473,-213],[340,359],[409,380],[289,398],[232,342],[313,555],[207,440],[168,314],[442,975],[240,892],[263,790],[197,712],[376,1247],[388,1995],[182,618],[543,1040],[235,-35],[432,392],[406,181],[430,-691],[314,-771],[450,-1154],[429,-1095],[282,-414],[304,-858],[286,-864],[217,-369],[233,-543],[284,-771],[169,-681],[225,-538],[-280,-705],[-79,-263],[-76,-347],[-11,-393],[78,-770],[24,-606],[42,-948],[12,-1216],[-2,-27],[-25,-590],[12,-852],[-98,-1244],[-42,-892],[-47,-1231],[-64,-1084],[62,-837],[183,-691],[-1,-745],[-23,-399],[-261,-1213],[-222,-136],[-189,-379],[-77,-1020],[-39,-786],[-221,-586],[-401,-304],[-336,-668],[-227,-215],[-219,304],[-558,-187],[-241,327],[-249,786],[-361,60],[-416,-113],[-235,262],[-172,941],[-224,1067],[-220,768],[-76,677],[-225,492],[53,-1169],[206,-872],[53,-838],[184,-1088],[-204,-695],[-467,303],[-363,46],[24,-1577],[-149,-834],[-226,-1052],[-296,-634],[-315,-949],[312,-526],[293,-445],[37,-924],[487,-168],[362,-116],[-74,193],[-205,535],[-321,336],[69,807],[472,244],[191,847],[-96,868],[-33,614],[-173,506],[220,291],[331,-146],[448,-346],[334,-545],[440,-705],[256,-644],[431,8],[480,456],[234,-50],[352,273],[249,-1776],[121,-687],[177,-599],[314,-515],[357,-430],[198,-532],[313,-504],[220,-837],[329,-716],[193,-1080],[270,-688],[204,-514],[287,-852],[195,-655],[50,-940],[-225,267],[-412,104],[-219,-247],[-119,-963],[-206,-205],[-198,-258],[-280,-690],[-369,-357],[-245,-133],[-225,-82],[-326,-332],[-323,1],[-116,-596]],[[708143,622113],[-104,-228],[62,-375],[-117,-61],[-119,-85],[-135,120],[-134,-66],[132,-467],[165,-34],[18,-431],[-41,-342],[-124,53],[-124,116],[-238,-77],[155,-297],[54,-346],[-52,-338],[-126,70],[-163,-227],[-37,-325],[-115,113],[-134,58],[2,-387],[-111,-158],[-75,-267],[69,-363],[135,-278],[67,-439],[-60,-306],[-108,-291],[-150,37],[-102,-204],[-110,-169],[-69,-299],[-144,-201],[-13,-399],[82,-334],[119,-252],[135,-302],[105,-240],[26,-364],[-150,-199],[-122,31],[-136,-35],[-193,-62],[-26,-349],[-119,-77],[-57,-353],[-47,-362],[-82,-308],[-72,-284],[-71,-317],[-116,-456],[-51,-316],[-73,-317],[-23,-191],[-19,-154],[-51,-409],[-95,-244],[-210,-557],[-112,-283],[-188,-473],[-571,-1439],[-286,-718],[-182,-459],[-172,-433],[-319,-803],[-234,-590],[-208,-529],[-154,-413],[-191,-519],[-696,-1886],[-166,-448],[-320,-862],[-587,-1595],[-381,-1031],[-330,-894],[-125,-339],[-542,-1464],[-313,-849],[-358,-962],[-340,-830],[-368,-866],[-532,-1274],[-544,-1358],[-355,-860],[-528,-1280],[-171,-415],[-226,-548],[-348,-854],[-206,-477],[-3,-5],[-218,-524],[-231,-558],[-154,-368],[-110,-265],[-798,-1919],[-97,-234],[-266,-639],[-501,-1212],[-196,-562],[-149,-431],[-359,-1033],[-656,-1889],[-159,-458],[-638,-1840],[-153,-441],[-292,-840],[-238,-686],[-837,-2411],[-176,-498],[-377,-1068],[-286,-811],[-308,-863],[-170,-437],[-605,-1560],[-430,-1106],[-569,-1463],[-410,-1057],[-335,-870],[-377,-977],[-396,-1027],[-42,-111],[-245,-633],[-217,-566],[-23,-58],[-168,-435],[-788,-2045],[-214,-553],[-117,-306],[-489,-1245],[-229,-581],[-97,-246],[-130,-337],[-20,-52],[-80,-208],[-29,-74],[-309,-788],[-164,-418],[-204,-518],[-4,-12],[-284,-727],[-441,-1126],[-691,-1764],[-243,-623],[-109,-288],[-347,-914],[-226,-596],[-142,-370],[-148,-383]],[[678304,538989],[-131,34],[-154,34],[-163,133],[-145,72],[-148,68],[-121,148],[-103,194],[-7,5],[-155,115],[-116,191],[-158,291],[-111,215],[-122,246],[-108,-165],[-119,-113],[-117,-189],[-115,-182],[-126,-35],[-119,151],[-120,97],[-135,-180],[-62,-299],[-123,164],[-129,25],[-86,-262],[-115,114],[-134,131],[-145,103],[-146,259],[-28,359],[-139,153],[-87,319],[-126,281],[-166,-88],[-144,244],[55,310],[17,602],[-90,223],[-120,143],[-112,156],[-113,226],[-88,246],[-116,158],[-232,611],[-251,683],[-52,142],[-33,85],[-12,32],[-70,179],[-100,289],[-55,358],[-142,55],[-130,55],[-84,260],[-169,-58],[-131,-86],[-108,164],[-426,65],[-38,5],[-602,613],[-29,30],[-100,126],[-125,9],[-221,15],[-73,-54],[-4,-9],[-11,-19],[-22,-43],[-17,-128],[-59,-466],[-11,-89],[-7,-51],[-151,-860],[-38,-133],[-41,8],[-426,720],[-65,141],[-302,-545],[-79,-142],[-53,-104],[-26,-52],[-83,-94],[-249,-209],[-104,-87],[-28,-23],[-241,-117],[-5,2],[-28,9],[-986,312],[-165,206],[-41,52],[-124,174],[-199,282],[-65,92],[-175,228],[-38,21],[-76,41],[-13,-23],[-52,0],[-34,0],[-11,0],[-41,39],[-161,345],[-130,125],[-73,0],[-161,-86],[-337,-54],[-51,47],[-76,258],[-58,118],[-257,235],[-45,23],[-24,78],[-2,3],[-163,154],[-117,-23],[-210,-176],[-51,-43],[-209,-226],[-86,-23],[-107,133],[-112,201],[-444,792],[-41,157],[10,414],[-13,133],[-41,71],[-64,71],[-1082,1202],[-117,199],[-125,144],[-132,-85],[-104,-183],[-115,114],[-123,-45],[-124,-36],[-105,161],[-181,160],[-112,148],[-173,-81],[-117,-73],[-116,-115],[-102,-259],[-115,-156],[-118,-216],[-118,-259],[-118,-96],[-116,-135],[-126,-86],[-87,-250],[79,-268],[-11,-351],[-32,-340],[-88,-304],[-98,-270],[-122,-442],[-146,-118],[-84,-248],[-128,-66],[-145,-85],[-136,-86],[-132,5],[-119,132],[-118,-179],[-161,-105],[-187,-14],[-122,-22],[-114,-126],[-125,55],[-148,44],[-122,-113],[-140,-50],[-128,-30],[-159,370],[-111,182],[-71,291],[-126,118],[-201,104],[-127,-98],[-184,-118],[-109,198],[-83,352],[-155,21],[-121,-233],[-59,-311],[-57,-371],[-115,-305],[-157,-213],[-181,-177],[-123,31],[-133,-190],[-110,-138],[-127,-100],[-137,58],[-230,50],[-148,54],[-124,30],[-127,-11],[-121,-36],[-128,-157],[-153,-246],[-103,-199],[-157,-341],[-110,-244],[-99,-424],[-59,-334],[-95,-252],[-130,-270],[-167,13],[-191,58],[-129,-9],[-226,-51],[-181,-11],[-125,53],[-123,24],[-281,-531],[-130,-89],[-111,-76],[-245,-174],[-14,10],[-189,133],[-411,292],[-264,188],[-127,91],[-168,135],[-115,93],[-11,9],[-251,201],[-448,357],[-121,78],[-4,3],[-301,236],[-52,40]],[[648270,544360],[-169,132],[-355,277],[-919,914],[-331,325],[-1059,857],[-554,464],[-257,211],[-186,151],[-1114,869],[-135,140],[-582,588],[-725,731],[-443,447],[-476,482],[-393,394],[-185,187],[-277,276],[-507,500],[-320,319],[-551,549],[-59,59],[-469,465],[-770,763],[-124,123],[-568,560],[-254,251],[-308,304],[-1252,1235],[-186,178],[-123,119],[-799,764],[-267,262],[-13,13],[-348,335],[-321,319],[-154,145],[-158,152],[-419,403],[-950,752],[-406,317],[-595,461],[-294,228],[-664,515],[-136,106]],[[728646,604533],[-240,-230],[153,-23],[166,-18],[130,-112],[168,-199],[126,-122],[146,-38],[196,-72],[147,-68],[159,34],[148,-9],[128,-36],[141,-35],[76,-288],[182,-39],[-47,-1015],[-100,-860],[-113,-531],[-97,-529],[129,-611],[157,150],[224,252],[34,-130],[132,-506],[175,-287],[143,-128],[128,-199],[103,-172],[-71,-599],[-140,-1184],[-294,-2384],[52,31],[136,81],[151,83],[178,-18],[130,-52],[117,-64],[126,-8],[134,-53],[111,-173],[124,-116],[134,187],[125,65],[61,338],[61,313],[10,397],[139,-51],[122,-205],[136,69],[22,-663],[53,-313],[132,-241],[-224,-1699],[308,-66],[26,-5],[379,-70],[180,-34],[303,-59],[204,-121],[40,-23],[341,-267],[116,-90],[158,-123],[228,-178],[245,-191],[112,399],[171,650],[111,534],[71,348],[106,503],[169,826],[145,4],[106,-282],[123,-133],[214,-236],[135,-29],[21,-357],[81,-575],[157,-765],[21,-102],[101,-490],[116,164],[333,470],[224,316],[189,329],[-157,457],[-59,297],[-16,80],[-28,138],[-33,329],[-21,200],[-48,519],[-39,378],[-66,637],[150,103],[201,123],[114,-157],[94,-280],[179,107],[-37,245],[179,124]],[[747617,583135],[-122,-283],[-396,-906],[-93,-260],[-192,-516],[-267,-702],[-38,-108],[-620,-1759],[-550,-1482],[-1105,-3123],[-108,-238],[-246,-579],[-135,-364],[-90,-242],[-1,-1],[-198,-546],[-148,-406],[-98,-268],[-136,-373],[-61,-360],[-97,-244],[-158,-393],[-332,-828],[-243,-608],[-206,-515],[-214,-567],[-177,-472],[-611,-1677],[-322,-882],[-198,-541],[-222,-612],[-110,-300],[-203,-559],[-188,-517],[-1110,-3055],[-745,-2050],[-549,-1507],[-112,-308],[-30,-83],[-210,-574],[-106,-289],[-266,-732],[-204,-561],[-245,-676],[-287,-788],[-198,-546],[-246,-674],[-128,-356],[-18,-50],[-63,-173],[-365,-1003],[-343,-943],[-197,-541],[-40,-110],[-516,-1421],[-190,-522],[-137,-377],[-760,-2091],[-17,-46],[-95,-262],[-118,-324],[-775,-2131],[-187,-490],[-669,-1753],[-37,-98],[-591,-1552],[-65,-169],[-35,-93],[-352,-929],[-244,-643],[-272,-762],[-253,-702],[-59,-160],[-531,-1458],[-846,-2358],[-171,-474],[-691,-1877],[-391,-1060],[-182,-494],[-747,-2029],[-440,-1193],[-249,-674],[-495,-1344],[-586,-1592],[-172,-469],[-299,-810],[-287,-795],[-206,-573],[-697,-1882],[-167,-450],[-306,-830],[-252,-681],[-255,-691],[-918,-2488],[-286,-778],[-101,-272],[-300,-815],[-178,-480],[-191,-519],[-538,-1457],[-509,-1511],[-259,-768],[-149,-442],[-168,-456],[-566,-1471],[-73,-279],[-559,-1318],[-510,-1203],[-242,-549]],[[715381,495820],[-20,385],[-161,236],[-160,117],[-254,216],[-241,75],[-297,-86],[-128,-51],[-266,-171],[-227,-260],[-116,-220],[-164,21],[-116,369],[-15,622],[-28,442],[5,352],[-136,223],[-242,-156],[-118,-150],[-187,-29],[-130,166],[-63,368],[8,595],[-54,339],[-299,908],[-231,326],[-234,287],[-213,290],[-148,154],[-324,248],[-212,97],[-200,141],[-133,-121],[-145,-10],[-124,45]],[[710008,501588],[-140,34],[-406,-64],[-138,-132],[-111,-147],[-164,59],[-170,399],[-145,506],[-77,414],[-97,392],[-141,129],[-155,26],[-135,-22],[-236,279],[-165,-32],[-174,-3],[-203,-229],[-137,-48],[-119,142],[-65,340],[-21,73],[-60,212],[-173,204],[-118,171],[-154,171],[-190,0],[-142,205],[-24,376],[95,547],[-71,376],[-131,376],[-95,342],[-201,171],[-261,-103],[-178,-170],[-131,-240],[-118,-205],[-166,-171],[-107,239],[24,342],[24,445],[11,342],[107,171],[142,170],[95,206],[-12,376],[-156,345],[-93,344],[-83,507],[-154,205],[-130,34],[-166,34],[-178,69],[-154,136],[-155,171],[-154,-102],[-59,-479],[0,-547],[-95,-410],[-95,-342],[-142,-376],[-83,-273],[-24,-410],[-118,-240],[-178,0],[-90,225],[-5,357],[12,341],[-83,718],[-24,376],[48,513],[59,650],[-83,444],[-59,308],[0,546],[106,308],[154,205],[131,68],[178,206],[123,-28],[7,-349],[71,-273],[119,34],[47,342],[-83,479],[-154,376],[-190,34],[-142,34],[-118,171],[-155,205],[-47,376],[36,445],[71,376],[-12,512],[-12,445],[130,410],[166,444],[-118,205],[-131,274],[-154,205],[-130,-51],[-119,-120],[-107,-342],[-142,-239],[-154,-239],[-140,-343],[-14,-33],[-131,-137],[-130,137],[-142,68],[-107,171],[-332,342],[-95,239],[0,376],[-84,274],[-129,102],[-119,-34],[-142,-239],[-95,-308],[-202,273],[-107,206],[-118,376],[35,341],[57,361],[3,16],[-22,76],[-70,239],[-205,197],[-284,137],[-131,68],[-189,103],[-202,547],[-107,410],[-71,376],[-107,205],[-189,-34],[-48,376],[0,479],[144,200],[93,312],[0,479],[-99,420],[-55,230],[-83,376],[-59,581],[-83,444],[-59,308],[-131,308],[-118,-103],[-190,34],[-83,274],[-107,171],[-249,376],[-202,68],[-118,-68],[-143,51],[-142,17],[-131,-146],[-23,-25],[-142,0],[-152,31],[-14,3],[-131,69],[-201,-35],[-119,35],[-130,136],[-202,103],[-154,68],[-166,308],[-71,308],[-12,547],[35,513],[-56,327],[-9,19],[-148,304],[-119,205],[-107,-308],[-177,-102],[-178,547],[-107,444],[-24,399],[12,353],[71,376],[-130,342],[-166,171],[-119,68],[-71,376],[-69,368],[-97,282],[-178,205],[-166,34],[-118,0],[-131,102],[-71,478],[-166,309],[-142,205],[-249,137],[-142,306],[36,469],[-13,420],[-130,240],[-36,342],[-118,-103],[-119,103],[-142,-103],[-143,-205],[-154,-34],[-118,-68],[-131,-171],[71,-342],[119,-241],[118,-409],[-47,-376],[-178,-444],[-166,-239],[-142,136],[-48,358],[-35,531],[-131,239],[-166,240],[-106,239],[0,342],[-131,34],[-178,-103],[-75,-291],[40,-324],[0,-513],[-178,-342],[-142,30],[-119,107],[-83,342],[36,410],[-47,408],[-60,344],[-142,274],[-202,0],[-166,102],[-165,119],[-137,18],[-196,-103],[-142,-102],[-119,102],[-168,179],[-188,-42],[-130,34],[-107,342],[-118,0],[-143,171],[-154,136],[-130,35],[-131,68],[-154,68],[-71,274],[-142,273],[-131,0],[-106,274],[-48,342],[-130,68],[-119,239],[-154,-136],[-95,-240],[-107,-205],[-142,0],[-142,-137],[-119,-102],[-95,-239],[-132,106],[-10,372],[-142,0],[-36,-410],[-71,-308],[-119,34],[-106,-307],[-119,-137],[-142,103],[-36,339],[-95,242],[-106,171],[-131,102],[-118,69],[-107,273],[-143,0],[-130,103],[-119,-103],[-142,-137],[-59,376],[-36,445],[-12,376],[-18,263],[-5,79],[-48,341],[-107,171],[-118,206],[-119,68],[-118,-171],[-131,-171],[-133,-94],[-92,-316],[-107,-239],[-106,-171],[-119,-137],[-112,109],[-166,66],[-153,-139],[-130,-70],[-106,-241],[-130,66],[-142,-2],[-129,-2],[-154,66],[-141,169],[-95,443],[-106,204],[-118,100],[-118,237],[-118,169],[-82,306],[-130,-70],[-130,66],[-118,101],[-118,67],[-130,-71],[-106,238],[-142,-36],[-35,-342],[-59,-308],[-165,-71],[-118,135],[-130,100],[-130,67],[-177,-365]],[[648270,544360],[-233,-1121],[-29,-134],[-62,-282],[-90,-392],[-58,-302],[-97,-505],[-164,-655],[-108,-433],[-715,-3061],[-102,-432],[-123,-518],[-81,-345],[-68,-290],[-411,-1760],[-28,-122],[-636,-2719],[-465,-1991],[-575,-2460],[-195,-834],[-100,-428],[-78,-337],[-246,-1126],[-153,-699],[-126,-574],[-315,-1284],[-69,-280],[-73,-297],[-72,-274],[-40,-151],[-422,-1354],[-106,-342],[-84,-268],[-123,-384],[-163,-505],[-135,-420],[-129,-401],[-172,-548],[-414,-1312],[-101,-318],[-133,-423],[-322,-1018],[-158,-504],[-120,-380],[-138,-438],[-140,-439],[-222,-701],[-119,-381],[-249,-785],[-139,-441],[-98,-309],[-224,-708],[-87,-273],[-153,-483],[-124,-393],[-159,-502],[-130,-410],[-121,-383],[-120,-377],[-126,-398],[-88,-280],[-209,-661],[-124,-391],[-391,-1235],[-98,-310],[-96,-305],[-99,-312],[-134,-432]],[[636588,501030],[-109,-355],[-81,-266],[-138,-432],[-104,-202],[-176,-604],[-82,-318],[-95,-311],[-153,-495],[-107,-353],[-53,-174],[-31,-100],[-124,-405],[-292,-953],[-117,-379],[-458,-1493],[-46,-152],[-33,-108],[-166,-550],[-98,-321],[-115,-382],[-116,-383],[-87,-288],[-421,-1386],[-299,-988],[-183,-606],[-115,-375],[-480,-1585],[-124,-398],[-103,-329],[-119,-391],[-440,-1439],[-91,-295],[-146,-478],[-5,-15],[-295,-966],[-231,-754],[-324,-1058],[-256,-848],[-706,-2337],[-104,-354],[-119,-402],[-329,-1120],[-146,-497],[-89,-304],[-172,-582],[-412,-1404],[-77,-261],[-124,-421],[-213,-727],[-187,-636],[-133,-451],[-205,-699],[-78,-268],[-124,-423],[-90,-304],[-105,-338],[-79,-287],[-802,-2731],[-86,-296],[-236,-784],[-239,-792],[-566,-1880],[-95,-315],[-90,-297],[-93,-310],[-184,-610],[-213,-706],[-108,-359],[-99,-330],[-133,-440],[-337,-1119],[-147,-490],[-95,-315],[-106,-349],[-461,-1466],[-136,-433],[-268,-851],[-223,-711],[-81,-257],[-86,-272],[-239,-759],[-309,-982],[-90,-287],[-227,-717],[-100,-317],[-613,-1936],[-538,-1736],[-266,-857],[-146,-472],[-228,-736],[-85,-272],[-210,-678],[-99,-320],[-126,-406],[-141,-453],[-876,-2825],[-55,-178],[-94,-302],[-139,-450],[-350,-1125],[-311,-985],[-106,-335],[-528,-1675],[-433,-1371],[-100,-316],[-177,-561],[-126,-400],[-55,-175],[-28,-86],[-82,-260],[-89,-282],[-31,-99],[-63,-199],[-84,-266]],[[614655,429349],[-208,-172],[-49,-64],[-84,-110],[-132,-263],[-113,-323],[-84,-335],[-77,-412],[-60,-357],[-7,-39],[-35,-444],[0,-616],[17,-367],[18,-385],[36,-683],[36,-479],[35,-444],[69,-742],[50,-455],[71,-718],[59,-547],[24,-410],[0,-650],[-12,-512],[-36,-513],[-35,-410],[-59,-376],[-95,-445],[-131,-410],[-165,-266],[-155,-247],[-169,-221],[-169,-211],[-174,-182],[-132,-115],[-134,-151],[-215,-263],[-15,-19],[-14,-16],[-205,-212],[-5,-5],[-20,-18],[-21,-13],[-20,-10],[-21,-6],[-21,-2],[-375,0],[-21,2],[-21,6],[-21,10],[-20,13],[-20,18],[-6,6],[-259,271],[-477,208],[-159,8],[-172,10],[-448,283],[-471,533],[-415,414],[-344,120],[-74,19],[-231,59],[-120,99],[-113,191],[-265,159],[-253,-66],[-175,-45],[-286,-151],[-344,-181],[-109,-57],[-362,-303],[-842,-705],[-90,-104],[-327,-375],[-14,-15],[-242,-242],[-2,-1],[-20,-18],[-20,-13],[-17,-9],[-74,-31],[-4,-1],[-21,-6],[-21,-2],[-21,2],[-6,1],[-180,43],[-206,50],[-254,-250],[-103,-101],[-20,-17],[-21,-14],[-20,-10],[-21,-6],[-21,-2],[-21,2],[-21,6],[-13,6],[-18,9],[-224,112],[-667,-235],[-173,0],[-538,1],[-165,4],[-156,11],[-315,22],[-535,36],[-168,-107],[-7,-4],[-21,-10],[-17,-5],[-474,-106],[-363,-315],[-10,-8],[-20,-14],[-10,-5],[-57,-27],[-7,-7],[-20,-18],[-21,-14],[-20,-9],[-2,-1],[-210,-77],[-77,-28],[-104,-236],[-179,-690],[-257,-985],[-2,-8],[-13,-47],[-14,-43],[-18,-51],[0,-2],[-15,-41],[-17,-38],[-17,-35],[-17,-32],[-19,-29],[-19,-25],[-5,-5],[-631,-719],[-96,-176],[-243,-852],[-7,-22],[-14,-44],[-157,-453],[-15,-42],[-17,-38],[-17,-35],[-17,-32],[-19,-28],[-11,-15],[-432,-557],[-70,-145],[-276,-630],[-213,105],[-71,-376],[-72,-410],[-71,-376]],[[596575,407618],[-214,-97],[-232,-59],[-92,-23],[-339,-212],[-102,-78],[-30,-44],[-514,-758],[-13,-19],[-2,-4],[-39,-67],[-119,-829],[3,-516],[-20,-665],[-17,-157],[-4,-8],[-31,-70],[-242,-24],[-185,79],[-399,390],[-339,282],[-75,93],[-150,266],[-41,188],[-14,63],[-96,243],[-273,695],[-155,197],[-29,37],[-39,0],[-61,0],[-88,118],[-704,1321],[-260,766],[-82,493],[10,688],[6,85],[0,6],[31,441],[9,12],[8,12],[22,129],[98,575],[48,422],[6,55],[13,1878],[1,143],[-123,1517],[27,587],[123,822],[58,203],[54,30],[6,3],[25,14],[33,-6],[201,-36],[74,-14],[34,-6],[147,-47],[59,-37],[129,-80],[48,-62],[8,-25],[46,-147],[18,-86],[41,-79],[246,-312],[225,-172],[158,47],[24,14],[170,96],[62,70],[34,133],[20,188],[-10,360],[-24,83],[-3,11],[-2,4],[-74,142],[-263,510],[-46,54],[-111,126],[-120,196],[-277,594],[-246,688],[-191,752],[-21,85],[-24,14],[-14,9],[-181,320],[-55,149],[-116,367],[-14,71],[-3,164],[-51,282],[-45,117],[-58,86],[-130,70],[-252,30],[-8,1],[-78,-94],[-154,-360],[-20,-64],[-59,-159],[-120,-293],[-155,-12],[-133,102],[12,370],[50,346],[79,491],[102,292],[123,324],[63,359],[97,262],[110,151],[114,160],[122,21],[128,37],[116,81],[130,262],[2,5],[29,359],[-101,183],[-119,156],[-88,257],[-95,247],[-124,80],[-52,319],[-50,320],[-57,355],[18,369],[-87,247],[-66,596],[-230,2031],[-234,1154],[-139,680],[-69,350],[-174,901],[-161,800],[-94,467],[-238,1173],[-161,793],[-516,2556],[-165,814],[-1,9],[-70,343],[-62,309],[-123,609],[-246,1214],[-421,2084],[-173,824],[-428,2044],[-128,611],[-280,1330],[-112,536],[-65,314],[-9,41],[-76,366],[-283,1350],[-125,594],[-84,402],[-167,794],[-6,29],[-319,1567],[-76,375],[-279,1373],[-638,3269],[-460,2178],[-319,1533],[-91,477],[-48,252],[-30,156],[-333,1735],[-214,1048],[-44,219],[-344,1687],[-95,471],[-72,360],[-242,1197],[-391,1879],[-366,1783],[-225,1095],[-61,301],[-592,2856],[-128,616],[-132,636],[-227,1103],[-165,811],[-63,309],[-171,844],[-220,1083],[-63,316],[-86,421],[-95,456],[-90,430],[-550,2635],[-138,694],[-373,1885],[-293,1475],[-162,767],[-77,362],[-93,437],[-385,1815],[-84,399],[-168,804],[-210,1033],[-180,887],[-156,848],[-69,362],[-217,1034],[-128,624],[-315,1532],[-69,339],[-81,400],[-248,1216],[-19,93],[-76,381],[-71,356],[-309,1502],[-350,1700],[-70,305],[-65,286],[-125,570],[-59,341],[-17,100],[-60,348],[-65,321],[-3,18],[-94,461],[-65,296],[-74,355],[-9,46],[-286,1370],[-212,1014]],[[616724,522503],[-125,-237],[10,-43],[78,-327],[-110,-206],[-130,-236],[-82,-475],[-179,275],[-143,71],[-130,-17],[-20,349],[-195,351],[-282,432],[-126,-397],[-109,-344],[-121,-383],[-125,-405],[-86,-278],[-29,-90],[-91,-290],[-62,-223],[-15,-7],[-113,561],[-187,352],[-107,237],[-45,-143],[-207,-389],[-533,-884],[-93,-144],[63,-337],[80,-353],[-12,-345],[-1,-14],[-105,-72],[-256,-177],[-273,-179],[-113,-61],[-266,-1464],[-42,-321],[191,-400],[344,-721],[67,-430],[-124,-452],[-177,-103],[-179,-87],[-63,-31],[-139,-75],[-126,-104],[-215,49],[-27,6],[-204,-148],[-213,-820],[136,-364],[-61,-135],[67,-460],[94,-613],[144,80],[118,56],[163,-117],[238,-172],[219,-157],[52,415],[98,784],[8,3],[76,32],[3,29],[19,206],[83,312],[-63,79],[53,292],[3,6],[113,256],[9,-2],[77,-225],[190,-347],[-11,-52],[50,-107],[26,-72],[26,-44],[-16,-78],[-45,-194],[-11,-53],[-119,-591],[-63,-300],[-8,-37],[222,-223],[80,-274],[105,-351],[135,-213],[129,-133],[-159,-139],[-131,-109],[-208,-140],[-156,-18],[-150,-14],[-131,9],[-175,19],[-119,-46],[-28,18],[-96,60],[-111,-185],[-102,-281],[-166,-322],[-126,-214],[-246,-227],[-48,18],[-38,12],[-57,-30],[-126,-4],[-60,427],[-181,4],[26,-302],[-46,-217],[-32,-15],[5,-220],[22,-531],[1,-17],[-88,22],[-142,32],[-69,24],[-67,23],[0,-9],[-11,-371],[-18,-631],[-9,-294],[-11,-356],[13,-656],[160,-393],[55,72],[44,96],[94,-400],[109,-165],[42,-322],[13,-417],[19,-368],[18,-376],[-7,-370],[-38,-343],[121,-92],[116,-117],[130,-69],[155,-27],[140,-84],[156,-12],[128,13],[122,92],[81,315],[111,155],[111,-127],[138,-105],[131,-104],[138,-82],[124,58],[130,199],[98,255],[78,264],[109,193],[127,-3],[202,205],[123,236],[121,81],[186,278],[92,223],[90,227],[114,220],[121,-129],[163,-82],[124,-23],[132,-159],[133,-73],[109,-152],[97,-328],[16,-340],[2,-515],[50,-48],[45,-29],[43,10],[63,67],[62,168],[79,298],[130,60],[134,209],[163,84],[126,129],[82,-136],[21,-36],[-43,-249],[73,-182],[211,-192],[7,-10],[38,-57],[306,-268],[90,492],[35,227],[27,175],[-92,234],[237,1060],[129,347],[102,192],[145,265],[107,251],[74,357],[79,170],[28,59],[274,-71],[319,-440],[168,233],[85,279],[66,394],[70,361],[85,548],[20,537],[-91,328],[-106,222],[-52,28],[-107,60],[-112,-122],[-12,-23],[-112,-210],[-19,-37],[-56,-195],[-23,-82],[-130,-178],[-122,40],[-80,343],[28,332],[57,338],[1,6],[0,4],[3,375],[19,399],[76,312],[131,284],[40,88],[18,39],[125,282],[130,349],[95,293],[95,687],[11,792],[-38,382],[-19,203],[-30,324],[38,162],[18,76],[35,154],[132,11],[134,6],[128,-53],[191,-129],[4,-2],[145,150],[85,349],[41,356],[5,86],[37,616],[-85,445],[-25,495],[-25,568],[7,344],[1,13],[0,397],[-69,437],[-8,25],[-4,14],[-43,136],[-35,107],[-22,70],[-13,-27],[-313,-636],[-200,-411],[-72,-145],[-73,-150],[11,-21],[65,-184],[-49,-106],[-10,-9],[22,-58],[16,-22],[30,-37],[-24,-63],[-54,93],[-17,45],[-51,155],[-76,178],[-125,135],[-213,-1407],[97,-96],[85,-119],[-18,-268],[-60,4],[-252,-9],[-234,-11],[-116,-9],[-133,36],[-154,-478],[-12,-342],[-83,-479],[-259,202],[-81,105],[-110,136],[-72,588],[-118,29],[-71,303],[83,245],[-88,692],[-7,59],[77,274],[28,99],[85,300],[118,421],[64,336],[154,811],[384,1754],[24,113],[-19,56],[-113,328],[-86,362],[-25,129],[-55,216],[-304,172],[-185,36],[-97,-43],[128,481],[-79,292],[-188,-158],[-135,-313]],[[820242,555626],[309,-446],[94,17],[271,-386],[385,-675],[63,-166],[434,-523],[778,-3908],[-60,-672],[-123,-183],[-184,598],[-345,2115],[-293,864],[-224,447],[-323,799],[-147,493],[-280,537],[-218,261],[-160,7],[-144,753],[60,3],[107,65]],[[841535,504317],[-153,-445],[-104,-236],[-106,-240],[16,-377],[-100,-261],[-120,-134],[-167,-383],[23,-384],[-97,-352],[-172,-286],[-71,-130],[-52,-95],[-68,-397],[-186,-218],[-140,-263],[-180,11],[-166,-105],[-125,-45],[-112,-173],[-108,281],[-157,-156],[-122,28],[-156,-200],[-125,-46],[-129,-159],[-162,-113],[-184,-28],[-157,-56],[-187,77],[-153,23],[-122,91],[-228,-12],[-134,-5],[-125,101],[-127,-129],[-68,-292],[-142,-169],[-34,-336],[-58,-370],[-102,-203],[-37,-486],[-62,-331],[-68,-457],[-89,-254],[-75,-333],[-86,-253],[24,-368],[-55,-413],[-119,-262],[-163,-581],[-132,-373],[-147,-429],[-15,-421],[-27,-373],[-32,-373],[-78,-300],[-85,-274],[-116,-172],[-132,-427],[-57,-1889],[-56,-651],[-131,-278],[-73,-344],[38,-654]],[[834902,487435],[-137,14],[-342,-379],[-227,226],[-161,148],[-157,39],[-110,157],[-254,250],[-240,102],[-44,375],[10,493],[-79,407],[-113,211],[-45,501],[-55,532],[-110,438],[-58,375],[-209,462],[-103,297],[-65,414],[-117,250],[-617,285],[-134,236],[-146,98],[-218,22],[-123,156],[-127,-31],[-315,133],[-124,70],[-146,-168],[-396,10],[-233,-133],[-196,-259],[-167,-180],[-72,-500],[-115,210],[-143,274],[-256,202],[-143,-55],[-121,161],[-117,419],[-498,-50],[-844,-88],[-2032,3018],[-590,1002],[-95,124],[-19,25],[-582,769],[-119,72],[-6,3],[-445,-56],[-1212,-116],[-48,-518],[-209,-173],[-268,-298],[-102,-313],[-188,152],[-158,181],[-154,219],[-179,126],[-188,157],[-117,211],[-140,9],[-141,258],[-127,274],[-168,205],[-104,185],[-188,405],[-175,-109],[93,360],[38,375],[415,640],[117,352],[69,618],[24,469],[86,290],[-61,407],[-100,618],[18,430],[38,376],[-21,657],[-30,415],[79,305],[103,171],[82,462],[114,398],[86,298],[34,422],[-41,436],[-91,220],[-42,435],[67,333],[-54,471],[-194,460],[-182,166],[-137,0],[-196,212],[-123,47],[-186,71],[-264,368],[-20,368],[-130,595],[-96,337],[-72,274],[-284,556],[-216,337],[-148,290],[-149,126],[-110,308],[-206,95],[-167,610],[-109,271],[-71,352],[-213,360],[-141,102],[-199,306],[-130,337],[-79,274],[-151,23],[-199,267],[-140,329],[-90,266],[-71,360],[-110,485],[-100,297],[-89,282],[-309,259],[-205,110],[-203,219],[-127,-85],[-144,0],[-127,-117],[-117,-321],[-126,-92],[-159,77],[-278,-31],[-182,133],[-22,350],[-57,324],[-102,561],[-98,319],[-106,165],[-154,147],[-171,-176],[-149,135],[-160,286],[-300,782],[-463,1213],[-458,1201],[-98,257],[-224,590],[-466,1225],[-370,975],[-807,2106],[-109,276],[-103,277],[-1,2],[-67,404],[-158,250],[-113,219],[-120,188],[-86,509],[-28,383],[-85,485],[-114,282],[-189,227],[-99,227],[-216,399],[-134,328],[-114,556],[-68,743],[-121,414],[-48,360],[-65,501],[-14,462],[48,516],[-164,493],[-18,360],[-6,360],[-155,477],[-230,102],[-83,532],[-82,469],[-110,555],[-313,368],[-70,140],[-9,18],[-1,-2],[-1424,-3009],[-142,-298],[-364,-766],[-169,-357],[-504,-1059],[-328,-755],[-257,-279],[-216,-367],[-110,-511],[-186,-537],[-90,-303],[-72,-314],[-112,-317],[-95,-329],[-242,-95],[-128,70],[-185,-532],[-86,-250],[-161,-251],[-192,-250],[-172,-79],[-158,-266],[-106,-368],[-99,-571],[-162,-126],[-388,-399],[-161,-391],[-110,-211],[-137,7],[-144,-157],[-127,-86],[-147,-259],[-241,-70],[7,-344],[48,-415],[209,-39],[117,-156],[-88,-248]],[[799183,526665],[-281,-109],[-328,59],[-232,191],[-382,222],[-393,328],[-335,148],[-590,799],[-38,612],[-361,412],[-318,402],[-184,-712],[-323,63],[-464,297],[-406,161],[-383,43],[-376,-111],[-356,-238],[-162,394],[203,637],[-120,619],[-91,737],[206,1270],[15,794],[-108,641],[-379,1055],[-312,633],[-380,663],[-373,45],[-368,108],[-348,-66],[-406,-571],[-462,-953],[-511,-705],[0,-10],[6,-1262],[-42,-822],[-6,-266],[-15,-678],[-330,-421],[-13,-5],[-200,-88],[-337,-46],[-396,-148],[-534,-335],[-158,289],[238,731],[86,264],[52,326],[92,575],[-15,452],[-11,351],[-16,497],[-11,341],[-249,234],[-182,644],[-301,345],[-10,10],[-279,466],[-279,110],[-487,705],[-240,720],[-319,429],[126,824],[55,1588],[-17,1443],[98,890],[-306,-237],[-145,1348],[8,1056],[17,2010],[-27,1312],[-122,1086],[-184,575],[-368,2447],[-168,876],[-201,618],[-283,463],[-143,457]],[[788133,590417],[368,-66],[228,25],[296,-57],[368,180],[295,-88],[263,134],[143,703],[229,51],[186,-384],[119,460],[228,1045],[482,126],[390,-179],[271,-400],[21,-30],[112,7],[297,19],[248,542],[311,-166],[293,272],[491,-105],[125,-285],[227,-519],[91,-328],[110,-191],[102,-272],[105,-232],[97,-276],[89,-289],[98,-202],[254,-588],[84,-351],[162,-473],[89,-299],[123,-171],[120,-264],[215,-589],[209,-941],[14,-383],[42,-492],[-4,-345],[28,-391],[42,-502],[44,-319],[173,-862],[100,-705],[92,-1036],[30,-876],[-35,-826],[-245,-1071],[-92,-301],[-154,-421],[-71,74],[9,736],[-207,869],[191,778],[-222,1006],[31,686],[-412,457],[79,1464],[-254,640],[-317,-1418],[63,-1463],[318,-458],[-302,-1326],[-206,-1144],[127,-1189],[534,-552],[-30,-106],[4,-859],[117,-655],[184,-934],[183,-788],[75,-999],[15,-529],[-78,-611],[-314,68],[-380,413],[-319,471],[-246,243],[-203,506],[-282,-131],[-128,-867],[-178,-322],[-383,-310],[-218,-772],[121,-865],[-500,-556],[-309,577],[-326,-345],[-409,-168],[-158,-490],[254,-68],[271,-395],[352,366],[135,-1071],[369,-105],[287,625],[462,-306],[88,1334],[-134,666],[192,637],[209,32],[164,503],[177,-362],[31,-782],[282,-594],[309,-717],[356,361],[264,68],[312,-94],[373,212],[492,517],[368,775],[243,-298],[440,-551],[119,-159],[113,-141],[151,-254],[317,-479],[116,-251],[117,-188],[138,-127],[157,-73],[277,-156],[303,-573],[412,341],[185,-11],[178,-4],[257,-97],[154,-126],[192,-82],[336,-243],[111,-293],[113,-153],[195,-96],[237,-369],[151,-309],[132,-238],[-232,-659],[-221,-39],[-194,-491],[24,-658],[-297,-814],[-112,-952],[-163,-795],[-355,-864],[52,-913],[391,-107],[426,166],[47,972],[388,177],[269,1580],[286,785],[-34,726],[72,324],[118,515],[120,-396],[107,-222],[96,-218],[142,-249],[106,-214],[114,-239],[164,-255],[161,-229],[119,-178],[102,-175],[117,-206],[252,-443],[291,-699],[112,-287],[332,-805],[91,-254],[99,-274],[127,-232],[114,-244],[105,-163],[116,-205],[120,-147],[109,-139],[138,-132],[174,-182],[145,-119],[127,-58],[131,-47],[184,-35],[130,3],[121,9],[332,18],[194,-61],[157,-105],[120,11],[295,-384],[59,-346],[135,-240],[113,-160],[111,-126],[145,-74],[148,-24],[388,-84],[357,-325],[117,-179],[128,-142],[125,-132],[124,-101],[127,-113],[152,-107],[124,-19],[198,-23],[194,-9],[154,-15],[250,-300],[175,289],[129,-11],[175,41],[126,14],[120,34],[147,49],[160,79],[130,77],[151,106],[121,83],[127,93],[151,139],[135,98],[439,282],[144,3],[116,91],[118,60],[141,72],[350,258],[137,38],[127,79],[258,192],[263,-107],[131,-76],[165,6],[118,60],[132,59],[121,51],[278,112],[430,-42],[143,-88],[182,-86],[149,-46],[160,-52],[140,-61],[301,-134],[251,-266],[61,-629],[277,-709],[94,-919],[-159,-883],[41,-844],[208,-320],[21,34],[64,1006],[357,96],[350,-343],[282,-628],[139,-420],[-65,-555],[-116,-1034],[-207,-538],[-35,-275],[135,-313],[158,213],[163,506],[254,260],[358,-277],[334,-394],[255,-343],[194,-478],[364,-1219],[1,-45],[121,-498],[0,-577],[-211,0],[-312,1110],[-162,341],[-271,147],[-55,-6],[-103,-338],[200,-334],[339,-698],[49,-641],[-315,-224],[117,-868],[302,-120],[360,990],[531,-95],[292,-834],[270,-102],[378,-218],[758,413],[130,-582],[210,-258],[58,-703],[-275,-299],[224,-643],[-172,-1699],[86,-668],[80,-534],[-265,-619],[332,-160],[185,-892],[283,-364],[70,-791],[-173,-646],[-365,162],[-217,-700],[-317,627],[-298,129],[-235,-546],[-252,-502],[-306,65],[-215,-244],[-355,194],[-475,-288],[-424,98],[-382,-152],[196,-671],[312,-206],[405,99],[264,-140],[363,-211],[287,3],[246,-669],[9,-26],[-273,-834],[125,-889],[76,-748],[211,-973],[259,-828],[226,-225],[178,-664],[273,-745],[-422,-857],[470,-25],[356,-35],[-21,720],[-92,624],[-319,647],[-113,973],[-249,611],[-139,617],[-304,392],[-91,817],[112,576],[35,782],[13,63],[137,702],[146,882],[377,-424],[220,-369],[251,269],[227,558],[375,-1054],[194,547],[171,129],[80,866],[247,943],[67,862],[-22,1126],[310,141],[241,1584],[7,867],[-244,568],[-277,167],[-270,121],[-274,438],[-186,1047],[204,541],[-144,917],[261,958],[103,726],[230,-259],[136,-450],[53,-769],[149,-825],[254,-281],[364,-394],[215,300],[507,-356],[488,188],[-156,768],[-215,544],[-481,225],[-306,-356],[-325,187],[26,750],[117,769],[-278,488],[-303,-231],[-109,568],[-146,203],[-201,-418],[-400,-65],[-311,-1217],[-256,256],[-167,897],[1590,2531],[680,1654],[76,356],[108,655],[32,1013],[-33,1035],[177,272],[456,-82],[442,-3],[367,-308],[522,-679],[256,-373],[332,-333],[247,-465],[295,-242],[295,-470],[429,-475],[377,-592],[195,-1372],[267,79],[54,-1443],[323,-851],[258,-492],[407,-890],[395,-443],[452,-644],[236,-1091],[164,-652],[179,-853],[-21,-681],[83,-682],[116,-696],[14,-967],[-292,-619],[-19,-1097],[-296,-42],[-266,-98],[-190,-498],[-224,-1064],[-245,-602],[-474,-990],[288,-959],[296,-121],[338,598],[-35,1115],[312,299],[271,1071],[427,-234],[392,113],[155,602],[-130,781],[265,534],[-17,893],[47,930],[-53,1002],[249,652],[-77,1200],[177,850],[14,1302],[-172,612],[-242,857],[21,928],[77,1326],[-339,310],[-246,-138],[-176,856],[-194,587],[44,717],[252,503],[230,724],[220,-205],[427,87],[330,416],[402,-368],[233,-296],[250,-116],[250,-145],[313,-115],[382,-423],[224,78],[247,-43],[-187,-847],[-234,-1059],[-11,-1087],[399,-804],[265,-847],[413,-1020],[275,-816],[97,-536],[85,-864],[9,-396],[-5,-395],[48,-511],[22,-366],[6,-874],[82,-622],[-13,-977],[-198,-147],[-42,-86],[49,-228],[668,-1602],[277,-665],[102,-184],[137,-234],[134,-203],[143,-214],[117,-191],[327,-610],[115,-296],[111,-284],[325,-1195],[288,-189],[147,-163],[146,-170],[131,-152],[391,-573],[126,-184],[111,-133],[331,-599],[375,-341],[124,-162],[178,-149],[162,-126],[133,-110],[133,-117],[371,-575],[96,-241],[111,-206],[115,-199],[123,-228],[119,-206],[192,-304],[339,-515],[158,-272],[162,-280],[143,-225],[135,-117],[453,-392],[55,-985],[127,-876],[-14,-501],[9,-436],[21,-386],[57,-441],[76,-387],[102,-410],[76,-288],[99,-403],[124,-478],[208,-768],[143,-499],[177,-720],[261,-834],[207,-755],[140,-683],[94,-739],[-167,-288],[-260,755],[-491,156],[-413,-747],[-292,-351],[-168,-632],[-336,189],[-43,630],[-249,-428],[119,-1076],[-358,-232],[-429,300],[-75,777],[-60,798],[-272,353],[-199,706],[-55,850],[-190,564],[123,587],[19,668],[-194,492],[-253,-364],[118,-1016],[-298,-764],[-108,-812],[36,-788],[-330,-323],[280,-767],[533,-194],[388,-362],[-280,-804],[237,-627],[76,-960],[181,-1217],[-251,-232],[-283,53],[-292,680],[-140,-655],[-182,184],[-220,341],[-102,-696],[-239,131],[-266,474],[-275,171],[230,-877],[-304,-16],[-254,197],[-213,153],[-299,452],[94,-809],[-111,-980],[-28,-978],[243,-208],[-43,-1003],[-351,-400],[-165,-725]],[[497160,528278],[-74,-458],[-82,-449],[-168,-698],[-146,-383],[-229,-422],[-186,-687],[-151,-524],[-82,-331],[-85,-350],[-235,-1015],[-106,-309],[-118,-527],[-95,-562],[-90,-414],[-97,-441],[-114,-383],[-202,-508],[-94,-308],[-127,-412],[-117,-386],[-238,-875],[-86,-271],[-347,-1026],[-180,-115],[-251,-187],[-180,-189],[-229,-309],[-160,-280],[-159,-387],[-67,-305],[-143,-285],[-92,-494],[-71,-359],[-100,-310],[-94,-360],[715,-911],[869,-1108],[-126,-407],[-169,-542],[-168,-600],[-141,-333],[-107,-180],[-141,-379],[-215,-902],[-107,-296],[-257,-822],[-174,-575],[-97,-291],[-73,-351],[-87,-404],[-95,-313],[-85,-364],[-142,-473],[-121,-424],[-99,-384],[-113,-269],[-80,-329],[-71,-318],[-178,-588],[-210,-697],[-68,-227],[-161,-421],[-217,-572],[30,-593],[-106,-396],[-113,-465],[-121,-395],[-51,-344],[-77,-383],[-116,-249],[-73,-402],[-146,-359],[-72,-410],[-100,-448],[-89,-402],[-146,-395],[-73,-275],[-57,-366],[-154,-307],[-91,-407],[-169,-401],[-145,-404],[-103,-368],[-144,-354],[-203,-414],[-96,-286],[-164,-583],[-115,-354],[-154,-594],[-99,-258],[-141,-319],[-91,-286],[-140,-406],[-135,-330],[-172,-506],[-60,-305],[-113,-330],[-131,-349],[-227,-723],[-138,-319],[-94,-325],[-99,-360],[-171,-429],[-169,-457],[-91,-233],[-96,-215],[-165,-208],[-184,-372],[-150,-208],[-129,-437],[-85,-386],[-135,-338],[-237,-415],[-175,-247],[-142,-214],[-111,-245],[-117,-187],[-166,-299],[-95,-344],[-110,-253],[-149,-374],[-156,-344],[-114,-267],[-147,-172],[-185,-250],[-106,-242],[-113,-134],[-155,-330],[-63,-481],[-115,-377],[-126,-410],[-104,-468],[-113,-518],[-94,-336],[-100,-366],[-59,-334],[-71,-285],[-139,-308],[-43,-476],[-83,-536],[-97,-390],[-101,-211],[-54,-327],[-159,-762],[-101,-315],[-147,-382],[-64,-326],[-145,-390],[-87,-418],[-113,-258],[-46,-718],[1,-617],[-96,-534],[-89,-269],[-109,-382],[-6,-487],[-85,-287],[-58,-349],[-81,-409],[-61,-636],[-116,-630],[-91,-388],[-158,-701],[-225,-767],[-153,-640],[-133,-636],[-171,-734],[-102,-358],[-164,-351],[-39,-646],[-120,-561],[-139,-506],[-127,-556],[-205,-568],[-159,-367]],[[477196,454938],[-144,-432],[-192,-431],[-133,-381],[-695,1427],[-287,-703],[-184,-458],[-340,-849],[-106,-281],[-108,-281],[-212,-558],[-182,-512],[-380,-1079],[-231,-636],[-237,-648],[-174,-479],[-261,-589],[-122,-272],[-323,-607],[-296,-682],[-221,-467],[-156,-349],[-277,673],[-186,454],[-245,595],[-1324,3227],[-111,268],[-186,457],[-514,1250],[-337,824],[-93,225],[-8,18],[-362,666],[-29,53],[-1017,1777],[-118,209],[-719,1269],[-1086,1916],[-15,27],[-135,88],[-166,-38],[-12,-3],[-529,-121],[-516,-118],[-550,-126],[-2108,-484],[-868,-199],[-939,-215],[-389,-89],[-317,-72],[-175,-41],[-28,-6],[-203,-46],[-138,19],[-102,14],[-3194,1411],[-246,41],[-461,213],[-1500,683],[-56,25],[-335,147],[-796,362],[-967,439],[-223,105],[-158,72],[-120,55],[-512,237],[-305,141],[-306,141],[-553,1025],[-121,258],[-229,485],[-550,2197],[-1,2],[-70,278],[-80,317],[-246,986],[-1130,4505],[-118,453],[-210,842],[-1627,6516],[-92,389],[-65,307],[-441,2067],[-228,370],[-455,13],[-787,-33],[-935,-39],[-225,-10],[-162,-7],[-193,-8],[-140,-6],[-318,-14],[-167,-7],[-266,-11],[-38,-19],[-151,-74],[-130,-89],[-482,51],[-348,85],[-906,729],[-124,369],[-149,-95],[-76,303],[-125,372],[-120,-107],[-147,229],[-19,371],[-195,24],[-114,-93],[-105,106],[-12,13],[-143,-239],[-120,29],[-124,128],[-115,-159],[-171,36],[-133,42],[-166,116],[-119,-235],[-103,-229],[-111,-124],[-141,-34],[-146,-2],[-59,-375],[-111,-270],[-73,-282],[-129,-159],[-126,-182],[-140,-19],[-116,-133],[-28,-364],[-72,-281],[-138,-65],[-121,36],[-101,-289],[-172,-177],[-140,-224],[-24,-335],[-67,-304],[-166,-336],[-108,-216],[-56,-308],[-75,-282],[-12,-342],[-396,-343],[-1157,1001],[-956,847],[-167,147],[-123,107],[-217,209],[-271,258],[-266,254],[-267,254]],[[429135,482420],[680,1752],[693,1024],[479,1704],[419,288],[260,1033],[1197,2502],[473,1538],[381,314],[551,1366],[69,1016],[297,388],[851,1025],[181,665],[288,1031],[-24,722],[374,1041],[-19,1233],[670,2309],[375,251],[250,899],[-92,872],[730,3139],[392,427],[87,518],[153,974],[233,733],[-191,903],[93,893],[611,2565],[230,1086],[329,1827],[104,722],[247,1044],[-17,792],[-76,1118],[859,4479],[761,1303],[1069,3315],[815,2201],[606,1926],[-762,967],[-296,439],[-443,239],[-237,1795],[4,1093],[-252,951],[-25,94],[152,397],[-315,2352],[210,1051],[686,178],[590,789],[385,1309],[210,1908],[516,1766],[467,1008],[14,1237],[-97,1353],[400,348],[141,1611],[-462,754],[23,873],[141,2035],[-342,1190],[603,1856],[1849,1684],[1238,4786],[1004,984],[842,2133],[739,1659],[829,1950],[408,1686],[788,772],[305,1403],[371,1311],[751,-11],[489,574],[314,2083],[778,471],[723,-571],[457,908],[44,1809],[314,1278],[649,-409],[512,552],[318,1179],[561,670]],[[777773,550097],[59,-1301],[43,-959],[23,-508],[56,-1249],[28,-1361],[35,-347],[132,-50],[84,291],[105,-220],[124,-20],[112,160],[19,-343],[103,-179],[151,-54],[28,340],[128,-19],[27,-365],[-46,-324],[85,-330],[-92,-243],[48,-368],[26,-102],[45,-176],[-70,-291],[-101,-231],[-117,-96],[-145,-159],[-117,-103],[-122,-44],[-130,0],[-130,0],[-90,-325],[18,-361],[-35,-95],[-60,-170],[-129,-48],[-137,-230],[-119,6],[-100,202],[-144,-242],[-100,188],[-66,341],[-148,-6],[-185,28],[-122,24],[-152,32],[-162,62],[-128,154],[-159,-58],[-115,110],[-127,-119],[-112,-126],[-136,-52],[-107,-208],[-120,-74],[-136,-230],[-107,189],[-116,85],[-67,334],[-123,119],[-149,-30],[-98,-233],[-111,-283],[-115,-166],[28,-347],[55,-497],[59,-312],[49,-315],[66,-342],[14,-344],[-69,-407],[-48,-505],[-80,-276],[-56,-313],[-55,-318],[-50,-354],[27,-346],[22,-394],[76,-334],[26,-357],[61,-439],[85,-263],[-41,-432],[-50,-385],[-98,-281],[-2,-359],[57,-312],[7,-439],[-75,-278],[-96,-214],[-132,-71],[-145,25],[-138,13],[-114,-184],[-114,-92],[-120,-11],[-49,-332],[-10,-378],[-14,-531],[-85,-351],[-102,-343],[-128,-74],[-153,-34],[-89,-265],[-196,-184],[-75,-408],[-129,-184],[-72,-283],[-127,-132],[-135,88],[-123,-123],[-174,-144],[-153,-75],[-166,-367],[-128,-310],[-91,-317],[55,-303],[38,-380],[46,-337],[66,-313],[49,-327],[81,-268],[172,-243],[235,-396],[-41,-419],[3,-433],[65,-373],[182,-381],[133,-246],[102,-304],[67,-515],[125,-74],[300,-125],[161,-42],[84,-334],[143,-56],[145,-111],[142,-221],[175,-23],[122,-336],[57,-339],[82,-457],[167,-327],[-109,-285],[-88,-338],[24,-485],[174,-51],[157,-124],[43,-411],[139,-176],[166,-515],[38,-445],[135,-182],[120,-89],[88,-56],[58,-38],[116,-96],[159,-78],[177,-144],[190,-200],[156,-298],[123,-117],[36,-332],[80,-378],[17,-394],[10,-380],[85,-336],[143,-47],[72,-465],[100,-236],[103,-461],[83,-308],[118,-205],[60,-343],[-95,-650],[-130,-69],[-119,-240],[-51,-447],[-160,-29],[-88,-286],[-50,-621],[-48,-387],[-67,-329],[-29,-335],[-54,-319],[-74,-284],[-68,-339],[-22,-352],[42,-413],[-42,-334],[62,-310],[87,-252],[148,-157],[120,22],[126,32],[109,-139],[130,-215],[113,178],[141,-132],[124,-277],[98,-323],[174,65],[29,341],[110,284],[184,230],[141,101],[129,-26],[108,-276],[107,-239],[166,-171],[202,103],[119,-173],[142,-169],[130,-34],[117,-122],[73,-288],[130,-274],[143,-34],[166,-69],[142,69],[178,308],[190,307],[175,0],[252,69],[118,68],[323,-79],[106,-310],[103,-381],[103,-271],[99,-308],[52,-362],[26,-460],[54,-498],[66,-319],[64,-301],[64,-321],[110,-143],[149,-92],[146,-147],[123,5],[100,-191],[74,-274],[49,-435],[21,-367],[67,-358],[82,-262],[101,-251],[84,-296],[-132,-273],[-110,-253],[-125,-291],[-103,-279],[-24,-349],[60,-359],[85,-269],[128,-344],[87,-239],[100,-351],[-9,-382],[-34,-368],[39,-351],[74,-362],[52,-333],[67,-316],[152,-1007],[35,-645],[38,-326],[119,-773],[-47,-590],[-51,-678],[-44,-330],[-1,-368],[-22,-345]],[[783214,486799],[-121,586],[-197,646],[-142,-54],[-125,43],[-120,2],[-126,-167],[-161,133],[-166,154],[-123,-71],[-101,-203],[-108,-295],[-72,-283],[-126,-248],[-133,-165],[-181,-151],[-145,-133],[-119,17],[-125,-117],[-145,2],[-130,15],[-159,24],[-133,-8],[-121,-45],[-158,84],[-157,142],[-124,42],[-77,288],[-81,292],[-76,310],[-72,276],[-17,390],[-91,253],[-124,173],[-111,225],[-132,188],[-130,-47],[-127,-111],[-131,-53],[-138,42],[-115,160],[-114,-139],[-180,44],[-155,-42],[-206,-58],[-189,-58],[-133,-52],[-135,-13],[-172,-18],[-171,119],[-130,33],[-175,69],[-119,66],[-123,49],[-212,58],[-225,-230],[-157,-59],[-144,58],[-174,211],[-134,22],[-162,-39],[-136,-180],[-172,-177],[-94,223],[-115,254],[-129,49],[-141,-73],[-129,28],[-184,-9],[-137,-101],[-109,-182],[-102,-179],[-139,-266],[-67,-314],[-95,-236],[-84,-331],[-163,-170],[-143,-233],[-209,-129],[-126,-79],[-137,-32],[-191,62],[-192,13],[-121,-127],[-118,-194],[-115,-206],[-84,-257],[-90,-246],[-156,-420],[-199,-474],[-89,-232],[-20,-400],[-126,-203],[-113,-174],[-123,-2],[-76,-267],[-79,-345],[-108,-290],[-83,-270],[-109,-308],[-101,-293],[-97,-283],[-65,-323],[-9,-377],[97,-214],[129,-182],[114,-370],[-69,-278],[-132,-186],[-118,-100],[-83,-289],[-52,-388],[-35,-362],[-88,-295],[41,-325],[3,-381],[13,-393],[122,-227],[76,-281],[56,-314],[33,-385],[23,-377],[85,-366],[1,-447],[29,-392],[83,-258],[-19,-351],[-44,-354],[-86,-308],[-44,-320],[-63,-298],[-29,-340],[-25,-370],[-9,-396],[12,-345],[21,-361],[-65,-310],[-88,-302],[-46,-332],[11,-345],[-21,-365],[-119,-63],[-120,-136],[-48,-258],[-9,-47],[-59,-306],[-1,-365],[131,-118],[71,-282],[122,-77],[142,-161],[61,-295],[125,86],[60,-304],[164,-95],[65,-290],[127,-60],[115,-116],[112,-152],[59,-368],[-42,-359],[-56,-304],[-116,-188],[-112,-165],[-140,-141],[-125,64],[-94,221],[-32,361],[-2,430],[-117,203],[-97,-225],[-78,-263],[-112,-137],[-79,-286],[-128,-46],[-105,-162],[-6,-347],[36,-329],[-31,-334],[127,-36],[210,55],[126,-49],[99,289],[68,-290],[74,-282],[132,-163],[-12,-364],[-44,-366],[3,-462],[-27,-423],[-125,-186]],[[770015,461805],[-153,-2],[-1064,-12],[-2,-1],[-46,-7],[-21,-19],[-147,-130],[-38,-63],[-6,-47],[-127,-266],[-194,-193],[-19,-18],[-283,-283],[-189,837],[-92,133],[-168,132],[-80,19],[-111,26],[-76,17],[-28,-23],[-153,-357],[-65,-150],[-4,-10],[-192,-493],[-10,-110],[17,-94],[28,-54],[41,8],[4,5],[92,136],[61,39],[216,-23],[20,-47],[0,-11],[-3,-263],[-24,-156],[-143,-188],[-48,-123],[-89,-230],[-38,-31],[-59,19],[-13,4],[-198,203],[-139,238],[-23,41],[-243,417],[-175,390],[-96,297],[-37,172],[-8,206],[-6,162],[34,133],[24,70],[133,290],[281,400],[19,44],[22,50],[12,70],[80,462],[33,254],[8,67],[14,266],[-7,187],[-6,158],[-5,124],[-34,485],[-51,117],[-737,867],[-113,78],[-120,-1],[-51,-55],[-216,-392],[-133,-242],[-19,-100],[-15,-86],[-18,-96],[-188,-743],[-47,-102],[-20,4],[-66,13],[-27,6],[-42,85],[-46,94],[-104,212],[-11,78],[12,70],[46,290],[-48,899],[-107,587],[-51,234],[-100,289],[-27,8],[-24,55],[-25,56],[-236,537],[-34,63],[-312,312],[-387,85],[-185,-79],[-65,-102],[-5,-19],[-70,-251],[-360,-1284],[-5,-20],[-25,-106],[-23,-105],[-7,-117],[19,-38],[118,-236],[31,-93],[113,-595],[17,-140],[-17,-188],[-2,-22],[2,-141],[-30,-370],[-25,-574],[-34,-355],[-110,-687],[-79,-397],[-301,-1911],[-70,-429],[15,-349],[-7,-349],[34,-334],[83,-283],[-11,-351],[56,-363],[-32,-341],[-66,-301],[-22,-357],[49,-328],[-86,-256],[-114,-253],[-38,-340],[-62,-350],[-79,-291],[-91,-253],[-139,-276],[-73,-306],[-110,-144],[-89,-256],[-613,-1098],[-239,-461],[-907,-3274],[-233,-841],[-233,-759],[-648,-1772],[-116,-259],[-120,-39],[-175,33],[-549,122],[-113,-190],[-57,-507],[-8,-72],[-217,-1858],[-623,-1594],[-388,-993],[-334,-856],[-329,-839],[-234,-569],[-180,-362],[-187,-377],[-305,-613],[-304,-613],[-7,-13],[-124,-252],[-689,-1393],[-698,-1411],[-269,-550],[-347,-1454],[-192,-401],[-121,-256],[-1172,-2515],[41,-963]],[[750590,426845],[-223,-63],[-130,-57],[-135,-21],[-142,325],[-80,345],[-48,485],[-3,398],[-86,342],[-159,331],[-189,285],[-177,237],[-131,74],[-410,100],[-152,-26],[16,-517],[-70,-296],[-210,-226],[-190,-297],[-41,-334],[40,-635],[97,-260],[-47,-346],[-176,50],[-157,2],[-147,-73],[-13,-29],[-84,-182],[-74,-321],[-5,-477],[65,-810],[-91,-1158],[-111,-459],[-67,-360],[-130,-365],[-162,-137],[-146,11],[-196,106],[-115,292],[-178,158],[-151,-17],[-194,-138],[-177,31],[-793,203],[-201,-108],[-157,-130],[-231,-24],[-115,160],[-21,349],[-160,306],[-173,-27],[-160,-50],[-233,101],[-90,272],[-56,551],[56,440],[257,855],[167,-25],[285,-146],[193,-159],[168,-240],[154,-61],[167,22],[126,210],[129,387],[17,440],[-160,130],[-201,264],[-201,182],[-206,256],[-55,458],[64,661],[81,681],[46,599],[9,127],[17,220],[64,433],[58,729],[18,557],[-76,358],[-120,240],[-171,2],[-142,117],[-158,273],[-122,52],[-135,-22],[-132,-277],[-75,-389],[-136,-292],[-136,63],[-118,115],[-191,197],[-185,138],[-233,330],[-386,914],[-173,312],[-157,164],[-162,-133],[-167,-185],[-90,320],[-26,385],[26,455],[64,357],[125,693],[111,242],[182,122],[168,-113],[236,-224],[149,56],[139,132],[58,372],[-165,617],[199,115],[217,52],[90,351],[-10,372],[-119,140],[-56,377],[-111,239],[-160,21],[-143,-99],[-155,66],[-214,255],[-199,295],[-143,23],[-148,-78],[-212,-10],[-143,54],[-162,222],[-139,312],[-1,540],[-80,357],[31,398],[115,515],[-8,478],[-101,217],[-124,571],[3,42],[25,385],[148,749],[18,670],[-112,190],[-130,273],[107,232],[13,355],[3,395],[93,324],[63,384],[0,348],[-63,322],[-52,311],[-1,6],[-37,453],[93,293],[21,755],[-106,419],[2,416],[60,489],[104,356],[112,326],[80,357],[125,41],[46,-319],[105,-321],[173,-270],[301,204],[-3,351],[-65,316],[-274,326],[-30,407],[-22,467],[-194,329],[-271,528],[-163,212],[-113,308],[-53,376],[-23,336],[-14,472],[-114,406],[-115,164],[-209,253],[-73,287],[25,627],[-60,453],[-77,451],[-22,451],[-98,473],[-47,347],[-125,614],[-157,266],[-146,248],[-174,256],[-192,301],[-64,385],[28,404],[-112,535],[-56,448],[-140,295],[-190,-96],[-147,-129],[-134,18],[-246,-183],[-161,-236],[-75,-341],[-286,-590],[-122,4],[-174,-15],[-43,-4],[-211,-256],[-171,-336],[-86,-53],[-44,-28],[-124,1],[-178,129],[-120,237],[-7,14],[-147,120],[-157,-11],[-134,-98],[-196,-255],[-271,-562],[-255,-448],[-111,-350],[-112,-367],[-130,-63],[-249,-40],[-210,-22],[-127,92],[-193,723],[-143,537],[-111,268],[-200,188],[-157,-29],[-149,141],[-44,366],[-8,395],[-64,314],[-4,431],[59,543],[-8,462],[-76,423],[-154,197],[-200,174],[-113,227],[-187,197],[-173,273],[-124,150],[-220,296],[-130,-122],[-157,2],[-238,259],[-99,297],[-95,260],[-116,187],[-124,69],[-144,-158],[-138,60],[-146,56],[-93,236],[-121,206],[-196,262],[-89,251],[-98,434],[-134,486],[-48,447],[-91,382],[-114,226],[-138,193],[-76,295],[-113,198],[-119,516],[-95,627],[-25,346],[-43,376],[-132,145],[-129,-6],[-157,14],[-128,59],[-167,44],[-309,-18],[-370,-348],[-124,-172],[-105,-160],[-116,-476],[-64,-469],[-113,-135],[-117,-68],[-119,137],[-175,298],[-311,430],[-224,449],[-121,168],[-117,154],[-139,255],[-143,419],[-15,356],[100,389],[179,321],[158,49],[173,40],[144,97],[156,-82],[158,45],[124,57],[114,313],[-10,404],[-106,165],[-166,140],[-116,105],[-127,162],[-208,433],[-47,322],[-66,369],[-172,257],[-115,269],[-85,341],[-122,97],[-269,14],[-132,-50],[-139,104],[-86,242],[-2,405],[-14,341],[-29,411],[-115,219],[-146,76],[-98,208],[-22,509],[75,291],[150,388],[-7,476],[-217,467],[-183,569],[-49,386],[-104,805],[-152,508],[-140,231],[-188,242],[-123,152],[-202,328],[-160,108],[-110,-179],[-121,-277],[-92,-343],[-8,-356],[50,-418],[-50,-332],[-64,-332],[-142,-264],[-331,-132],[-179,-235],[-119,-76],[-195,-2],[-204,35],[-339,317],[-207,290],[-141,321],[-245,481],[-140,248],[-142,202],[-173,136],[-229,72],[-143,-58],[-220,-207],[-264,-328],[-31,-331],[-77,-293],[-208,-700],[-244,-119],[-288,-106],[-253,537],[34,455],[71,420],[136,550],[85,474],[122,484],[85,494],[-119,219],[-132,156],[-126,153],[-124,162],[-68,395],[-8,375],[8,453],[-182,478],[-160,218],[-183,7],[-177,-142],[-125,-213],[-154,-398],[-163,-90],[-132,32],[-187,45],[-172,333],[-50,593],[-6,542],[82,331],[120,141],[98,368],[-89,320],[-153,252],[-110,314],[-95,381],[-53,378],[-212,569],[-220,64],[-131,19],[-310,106],[-118,260],[-29,514],[3,447],[29,968],[30,395],[-9,836],[30,493],[61,433]],[[829091,420324],[-495,-554],[-258,-709],[-248,-811],[-138,-383],[-106,-213],[-911,-1908],[-196,-412],[-866,1296],[-172,218],[-116,81],[-129,-39],[-857,-957],[-144,-163],[-119,-189],[-10,-30],[-586,-1745],[-141,-371],[-451,-1364],[-287,-731],[-474,-1370],[-287,-809],[-305,-869],[-639,-1866],[-19,-54],[-90,-306]],[[821047,406066],[-67,287],[-48,324],[72,311],[-26,345],[-78,285],[-97,529],[-3,456],[-31,421],[-62,647],[-12,72],[-66,405],[-64,479],[-34,494],[-67,386],[-119,329],[-178,258],[-140,171],[20,445],[-112,540],[-49,485],[-162,186],[-120,391],[-93,335],[-188,356],[-263,213],[-126,208],[-102,376],[-48,337],[-76,520],[-99,486],[-108,538],[-156,89],[-207,77],[-133,242],[-113,150],[-249,297],[-325,486],[-114,163],[-125,190],[-89,237],[-82,264],[-195,211],[-287,765],[-27,530],[-25,359],[-4,564],[-49,520],[-95,282],[-13,384],[1,400],[-35,518],[-33,561],[111,490],[56,478],[-120,315],[-188,417],[-121,317],[-132,176],[-270,488],[-218,297],[-319,747],[-225,32],[-263,-327],[-138,-130],[-201,-19],[-174,-28],[-365,267],[-141,-36],[-250,-203],[-232,-289],[-165,-67],[-389,110],[-152,84],[-118,113],[-154,284],[-337,439],[-372,268],[-202,226],[-137,110],[-167,15],[-392,266],[-152,-6],[-120,-194],[-153,-134],[-177,-529],[-85,-267],[-117,-245],[-140,-126],[-1,-1],[-249,-217],[-554,-1087],[-147,-226],[-302,-259],[-146,30],[-229,-334],[-233,-487],[-175,-111],[-139,-123],[-281,-548],[-170,-249],[-131,-128],[-310,-126],[-165,-73],[-160,-17],[-225,87],[-211,80],[-175,187],[-119,352],[-62,439],[-174,602],[-178,806],[-236,453],[-178,118],[-284,141],[-205,70],[-557,438],[-281,289],[-113,141],[-144,320],[-123,204],[-188,70],[-407,-180],[-126,54],[-274,-102],[-167,47],[-117,-117],[-181,-275],[-205,-78],[-373,94],[-130,-141],[-85,-243],[-195,-611],[-157,-164],[-130,-39],[-250,140],[-161,-24],[-140,-320],[-195,-126],[-174,-290],[-137,-407],[-133,-563],[-20,-391],[-192,-447],[-188,-156],[-188,-28],[67,547],[-21,636],[-70,738],[-8,635],[-8,576],[17,360],[94,1144],[26,367],[26,361],[86,1076],[-4,460],[-27,363],[-100,910],[-75,315],[-158,560],[-97,279],[-41,349],[-37,1009],[-14,434],[11,647],[7,429],[7,413],[29,1132],[7,406],[7,430],[-17,799],[-156,82],[-193,80],[-152,60],[-107,53],[-12,6],[-210,-33],[-221,-35],[-208,-33],[-180,-24],[-307,-32],[-474,-33],[-192,-14],[-483,115],[-186,441],[-127,328],[-157,392],[-119,299],[-276,706],[-135,456],[-171,402],[-96,223],[-246,321],[-185,-82],[-193,-209],[-147,-123],[-121,-93],[-240,-207],[-159,-239],[-69,-313],[-60,-379],[-171,-9],[-160,80],[-202,47],[-283,155],[-146,173],[-144,72],[-234,117],[-295,401],[-168,397],[-181,203],[-397,611],[-144,243],[-564,1041],[96,602],[2,370],[-17,604],[-56,755],[-113,1510],[-69,1087],[-3,611],[-157,196],[-134,187],[-171,102],[-369,209],[-132,53],[-154,-37],[-140,173],[-129,71],[-128,134],[-100,430],[-202,112],[8,345],[-66,366],[-120,79],[-181,282],[-159,-36],[-155,60],[-24,394],[-83,411],[-103,352],[77,319],[213,511],[52,335],[61,345],[189,54],[390,78],[188,-141],[127,180],[141,-48],[208,-38],[132,195],[129,133],[206,60],[187,351],[0,372],[-129,555],[114,280],[52,381],[125,-114],[232,590],[-97,341],[-161,149],[-155,-2],[-143,237],[-38,436],[51,315],[-162,306],[-122,-43],[-112,125],[-216,38],[-209,134],[56,405],[151,266],[138,447],[-173,294],[99,440],[-142,400],[60,316],[271,22],[79,337],[-18,646],[55,450],[167,-62],[44,416],[125,308],[-101,290],[5,364],[-157,355],[-63,466],[-71,376],[-225,427],[-26,353],[40,372],[68,285],[-95,319],[-155,22],[-240,529],[63,417],[68,732],[-8,361],[-156,562],[-52,496],[-77,288],[-189,190],[-445,457],[-96,249],[-196,-189],[-256,-264],[-109,244],[-164,204],[-166,61],[-156,315],[-7,408],[-123,260],[-157,-83],[-136,97],[-112,115],[-179,-162],[-9,382],[-12,478],[-10,1197],[-72,446],[-96,446],[-140,344],[-76,477],[-65,305],[-149,-19],[-162,-52],[-128,78],[-122,72],[-217,377],[-140,86],[-176,328],[-304,37],[-118,64],[-62,358],[46,433],[44,443],[113,133],[106,223],[155,194],[72,330],[125,437],[6,402],[180,505],[84,600],[12,350],[-97,225],[-66,362],[-316,645],[-84,342],[-111,510]],[[783875,554200],[122,-162],[300,-397],[152,-536],[66,-231],[41,-405],[44,-432],[91,-997],[74,-775],[108,-726],[46,-315],[40,-326],[53,-433],[31,-407],[65,-852],[-50,-1275],[-67,-660],[-41,-409],[-41,-1156],[45,-982],[63,-927],[23,-1131],[-127,-840],[-122,-896],[-43,-943],[25,-1239],[147,-1121],[156,-228],[214,-314],[660,-489],[593,-1090],[311,-1357],[112,-906],[274,-967],[316,-439],[282,-329],[471,-148],[347,-9],[451,546],[399,199],[287,270],[462,780],[267,159],[314,567],[315,324],[255,601],[33,1074],[-115,927],[-12,1141],[268,13],[284,-291],[309,-292],[487,-527],[-158,-720],[-160,-375],[-360,-1587],[-79,-1333],[191,-919],[591,-1030],[321,-646],[457,-576],[294,-620],[292,23],[446,-226],[371,-136],[294,-297],[352,-26],[294,-31],[585,-593],[539,-625],[244,-324],[269,-40],[288,-143],[210,-261],[396,-144],[324,-970],[86,354],[134,556],[265,317],[374,-265],[21,-39],[338,-620],[225,-1036],[-6,-487],[-10,-775],[97,-1235],[11,-424],[17,-603],[53,-490],[79,-720],[12,-89],[121,-906],[133,-1053],[256,-1873],[176,-1162],[73,-986],[54,-1001],[54,-626],[169,-831],[-60,-694],[-217,-960],[-445,-55],[-148,1376],[-9,88],[-340,477],[-168,14],[-181,14],[-64,-13],[-161,-32],[138,-704],[238,-373],[-53,-1301],[34,-1463],[348,-770],[120,-964],[124,-737],[77,-673],[299,-1113],[249,-896],[263,-474],[-126,-507],[-12,-50],[331,66],[50,9],[76,23],[272,80],[-133,-625],[-351,-220],[-13,-18],[-337,-478],[-166,-823],[-161,-776],[-49,-441],[-88,-781],[-203,828],[-175,485],[-21,58],[-353,-597],[267,-849],[92,-719],[-18,-122],[-96,-647],[-215,-659],[-21,-65],[160,-663],[154,-388],[282,-700],[274,-622],[282,-551],[332,-386],[437,-340],[348,-106],[511,56],[319,63],[322,150],[974,628],[228,-237],[204,-282],[313,-197],[391,-422],[462,-342],[-145,-783],[-7,-524],[-69,-534],[-117,-538],[-326,-1381],[-393,-1495],[-314,-555],[8,-31],[268,-1009],[10,10],[17,15],[294,271],[392,-116],[227,-462],[242,-723],[321,-830],[207,-466],[276,-765],[195,-341],[213,-227],[377,-605],[159,-503],[283,-770],[167,-986],[163,-384],[128,-300],[62,-904],[148,-625],[148,-715],[28,-699],[401,-660],[245,-603],[401,-585],[421,-111],[419,109],[471,86],[239,-50],[328,-276],[175,-633],[97,-836],[134,-561],[131,-522],[-12,-1103],[-380,279],[-329,271],[125,-365],[335,-977],[619,179],[294,-24],[345,-336],[317,-767],[249,-393],[368,-313],[384,-329],[378,-142],[442,-28],[376,-87],[-109,-1290],[76,-1016],[-11,-866],[164,-581],[206,-1009],[229,-1199],[419,-882],[182,-563],[-52,-728],[48,-681],[94,-1187],[172,-1170],[252,-598],[245,-556],[224,-474],[338,-585],[329,-801],[241,-1445],[139,-805],[247,-589],[-81,-902],[-33,-716],[57,-755],[158,-775],[293,-846],[157,-962],[262,-475],[198,-872],[442,-781],[375,-753],[297,-1444],[135,-697],[78,-775],[213,-811],[285,-983],[339,-1302],[108,-716],[222,-797],[147,-560],[298,-721],[292,-728],[236,-603],[144,-695],[227,-549],[308,-672],[780,-528],[269,-64],[307,-8],[345,90],[483,61],[417,82],[243,29],[189,-75],[360,-282],[435,-138],[261,-564],[375,-499],[442,-709],[-205,-694],[-106,-969],[86,-753],[-95,-817]],[[710008,501588],[-64,-624],[-189,-1400],[-91,-674],[-58,-379],[-331,-2161],[-96,-636],[-74,-542],[-478,-3545],[-441,-3279],[-267,-1927],[-323,-2380],[-14,-101],[-244,-1795],[-137,-1010],[-49,-347],[-379,-2672],[-96,-829],[-184,-1244],[-101,-684],[-69,-500],[-82,-594],[-335,-2439],[-9,-71],[-166,-1214],[-64,-471],[-53,-388],[-197,-1441],[-159,-1167],[-112,-818],[-104,-748],[-407,-2923],[-396,-2923],[-91,-676],[-52,-384],[-62,-464],[-117,-892],[-110,-832],[-42,-323],[-148,-1110],[-310,-2263],[-342,-2499],[-57,-418],[-116,-852],[-116,-844],[-50,-388],[-44,-345],[-30,-221],[-30,-221],[-78,-576],[-187,-1375],[-128,-948],[-188,-1380],[-106,-786],[-51,-374],[-193,-1419],[-167,-1234],[-71,-520],[-122,-903],[-63,-462],[-308,-2269],[-5,-38],[-239,-1759],[-62,-456],[-129,-948],[-78,-576],[-265,-1954],[-150,-1107],[-226,-1665],[-167,-1228],[-156,-1152],[-239,-1757],[-59,-440],[-2,-9],[-184,-1357],[-277,-2039],[-339,-2502],[-55,-400],[-75,-552],[-187,-1316],[-211,-1474],[-97,-713],[-98,-709],[-220,-1611],[-54,-394],[-105,-765],[-147,-1316]],[[697034,406447],[-488,918],[-125,236],[-147,277],[-163,308],[-93,175],[-10,19],[-261,490],[-103,194],[-158,297],[-145,273],[-241,455],[-235,441],[-199,376],[-343,580],[-155,261],[-313,684],[-149,280],[-129,244],[-251,471],[-344,648],[-160,301],[-156,63],[-751,305],[-617,249],[-383,156],[-922,373],[-36,14],[-82,34],[-409,165],[-478,191],[-536,219],[-247,101],[-4,1],[-343,139],[-217,88],[-418,165],[-991,393],[-200,215],[-148,288],[-124,241],[-158,308],[-689,1338],[-119,232],[-13,87],[-93,648],[-135,942],[-184,1283],[-57,401],[-70,487],[-58,405],[-11,79],[-85,612],[-49,352],[-153,1105],[-45,324],[-50,363],[-115,827],[-147,1105],[-43,320],[-68,512],[-30,226],[-19,143],[-79,595],[-46,350],[-51,385],[-108,724],[-67,519],[-491,1752],[-86,304],[-217,741],[-118,403],[-254,864],[-162,551],[-186,667],[-98,356],[-75,273],[-178,643],[-228,802],[-90,315],[-115,402],[-135,471],[-214,748],[-79,275],[-75,264],[-162,615],[-381,1462],[-514,1869],[-266,211],[-262,185],[-129,124],[-500,399],[-190,128],[-309,243],[-229,188],[-383,283],[-1548,1148],[-171,125],[-286,235],[-282,231],[-408,412],[-150,426],[-74,269],[-132,476],[-126,457],[-119,432],[-225,761],[-139,468],[-173,543],[-113,353],[-25,79],[-537,1969],[-76,293],[-82,323],[-221,865],[-1091,4269],[-382,295],[-133,103],[-194,148],[-746,575],[-717,553],[-290,222],[-232,179],[-228,176],[-127,98],[-234,180],[-161,124],[-10,8],[-454,349],[-86,67],[-31,23],[-247,190],[-291,224],[-814,626]],[[665537,466259],[-266,392],[-463,521],[-300,338],[-303,343],[-139,156],[-124,140],[-17,19],[-135,152],[-322,363],[-342,385],[-1000,1128],[-114,128],[-270,305],[-145,164],[-695,782],[-581,656],[-127,143],[-369,416],[-568,641],[-126,141],[-129,146],[-7,7],[-782,882],[-106,152],[-247,305],[-154,171],[-166,171],[-119,137],[-142,170],[-214,206],[-213,273],[-225,307],[-273,308],[-261,239],[-138,189],[-324,427],[-238,239],[-175,184],[-270,274],[-214,256],[-137,177],[-604,801],[-308,408],[-374,496],[-117,155],[-238,318],[-264,353],[-289,386],[-113,127],[-363,117],[-399,127],[-913,292],[-219,69],[-232,75],[-438,455],[-625,729],[-262,306],[-217,253],[-269,636],[-169,416],[-523,1282],[-91,223],[-138,339],[-474,1161],[-101,279],[-10,27],[-169,386],[-31,74],[-85,207],[-91,223],[-554,1361],[-260,634],[-128,108],[-138,136],[-267,200],[-121,116],[-247,192],[-154,136],[-344,280],[-118,96],[-273,206],[-155,68],[-176,102],[-131,69],[-167,171],[-166,137],[-128,100],[-153,119],[-122,94],[-166,165],[-154,137],[-332,239],[-214,137],[-166,102],[-142,103],[-140,85],[-322,291],[-158,140],[-186,168],[-118,119],[-120,121],[-122,128],[-174,179],[-107,145],[-131,180],[-190,284],[-272,349],[-111,182],[-172,294],[-190,292],[-13,21],[-106,167],[-177,238],[-134,170],[-434,588],[-237,340],[-212,308],[-118,172],[-113,165],[-202,285],[-344,478],[-304,421]],[[834902,487435],[244,143],[103,219],[44,368],[155,-63],[137,39],[92,-273],[134,-258],[-99,-478],[27,-344],[141,-532],[157,-235],[254,-156],[147,-266],[199,-712],[134,-399],[243,-212],[213,-328],[127,-172],[133,94],[131,-360],[126,-360],[86,-258],[223,-79],[79,-406],[174,-892],[-160,-26],[-29,-5],[10,-392],[51,-398],[275,665],[180,37],[195,-20],[173,-18],[139,-17],[132,-21],[163,-43],[165,-31],[157,-28],[129,-268],[213,-230],[128,-132],[245,-234],[117,-115],[210,-177],[118,-103],[148,-308],[171,-455],[93,-305],[48,-375],[75,-377],[106,-275],[115,-171],[108,-150],[198,-265],[128,-117],[155,-85],[291,-143],[132,-24],[126,81],[121,28],[155,-91],[139,-134],[135,-181],[162,-224],[211,-294],[132,-179],[133,-180],[129,-209],[110,-276],[113,-376],[65,-325],[9,-392],[-3,-401],[-12,-440],[14,-383],[71,-295],[105,-200],[120,-275],[80,-264],[88,-411],[63,-335],[58,-323],[40,-327],[42,-357],[66,-304],[110,-685],[39,-359],[50,-554],[15,-362],[22,-340],[75,-429],[39,-345],[40,-471],[-3,-439],[-6,-358],[5,-435],[-40,-359],[-39,-364],[12,-368],[61,-454],[55,-403],[57,-346],[74,-484],[72,-297],[85,-274],[69,-364],[12,-402],[-13,-378],[-29,-353],[-8,-348],[27,-363],[-43,-663],[-25,-368],[-58,-314],[-65,-341],[-85,-289],[-99,-347],[-89,-320],[-54,-322],[-41,-366],[-12,-377],[-93,-412],[-71,-385],[-38,-344],[-60,-556],[9,-344],[61,-299],[94,-267],[85,-250],[108,-204],[237,-100],[122,-167],[134,-802],[65,-364],[91,-305],[125,-260],[116,-213],[244,-349],[152,-194],[141,-135],[332,-271],[186,-150],[519,-421],[243,-197],[217,-170],[322,-88],[115,-86],[117,-167],[117,-230],[165,-205],[130,-165],[112,-201],[70,-298],[33,-511],[37,-569],[26,-386],[23,-361],[60,-359],[100,-529],[53,-341],[25,-405]],[[849891,443741],[-203,17],[-145,-15],[-125,-105],[-198,-312],[-145,-282],[-129,-407],[-171,-306],[-229,-57],[-180,13],[-159,47],[-146,180],[-185,133],[-137,235],[-164,-46],[-196,55],[-113,110],[-153,125],[-158,-14],[-229,-173],[-161,-55],[-205,-265],[-196,-93],[-253,164],[-215,-14],[-171,-110],[-137,1],[-144,54],[-168,64],[-177,149],[-196,70],[-174,-31],[-288,-7],[-195,-172],[-184,-24],[-189,1],[-154,423],[-171,32],[-123,109],[-123,-196],[-134,-234],[-88,-282],[-141,-211],[-281,-456],[-54,-369],[-157,-230],[-213,11],[-325,63],[-72,-82],[-89,-102],[-123,-640],[-59,-438],[-205,-149],[-99,-352],[-14,-367],[-93,-236],[-239,-179],[-38,-431],[85,-375],[158,156],[124,157],[-25,-391],[10,-392],[131,-148],[-18,-611],[-99,-282],[-178,-187],[72,-274],[0,-1],[37,-382],[28,-415],[-120,-141],[-128,-30],[-51,-401],[-167,-7],[-194,72],[2,422],[-81,274],[-130,-62],[-100,367],[-221,-242],[0,-399],[-144,-525],[-100,-460],[0,-1],[-140,-8],[60,698],[0,9],[1,0],[-34,98],[-69,199],[-146,21],[-73,-369],[-106,-579],[7,-352],[-217,-89],[-219,78],[-123,-27],[-132,-78],[-149,-759],[-273,-441],[-106,50],[-34,16],[-149,372],[-1,2],[-134,237],[-16,8],[-126,57],[-75,-98],[-178,-232]],[[837137,432890],[-469,158],[-184,377],[-301,134],[-297,104],[-260,-44],[-252,-410],[-177,-314],[-72,174],[-156,1131],[-343,1225],[-662,801],[-433,542],[-131,-212],[90,-707],[425,-1296],[343,-1178],[-147,-896],[-458,189],[-131,-1323],[-58,-131],[-196,-524],[-188,-455],[-145,-813],[-323,602],[-125,889],[-195,991],[-244,892],[-331,684],[-337,392],[-549,698],[-236,333],[-223,609],[-403,1517],[-185,972],[-63,655],[-216,587],[-45,122],[-455,-305],[-323,-223],[-313,-137],[-329,-385],[-556,-156],[-297,-60],[-275,150],[-252,615],[-311,470],[-226,508],[-439,1258],[-168,523],[-314,582],[-354,489],[-274,271],[-364,-15],[-224,-70],[-78,559],[-38,1472],[-173,667],[-200,826],[-198,1503],[-457,882],[-285,260],[-290,169],[3,1200],[68,1142],[64,723],[184,452],[227,-554],[325,71],[-152,659],[25,1131],[-303,-123],[-346,-24],[-261,170],[-220,451],[-267,535],[202,489],[134,759],[316,884],[242,910],[30,505],[-54,672],[417,-49],[455,159],[-332,604],[-331,119],[-267,86],[-266,-341],[-76,-700],[5,-1022],[-437,-804],[-174,-906],[-385,243],[-843,326],[-279,284],[-473,23],[-176,383],[-80,1631],[66,1441],[5,739],[-71,850],[-250,1029],[-59,715],[-95,540],[-178,591],[-398,1055],[-285,1184],[-182,657],[-315,862],[-246,473],[-220,525],[-509,898],[-302,513],[-324,876],[-303,458],[-248,758],[-162,-651],[-395,75],[-348,-25],[-364,37],[-348,622],[-215,1121],[-388,826],[-198,398],[-226,157],[-321,51],[-77,12],[-100,-54],[-359,-194],[-12,-6],[-408,-353],[-306,287],[-121,114],[-83,303],[-82,300],[-122,589],[-255,483],[-219,727],[-4,15],[-236,886],[-100,487],[-62,304],[-66,528],[-72,579],[-161,387],[-96,228],[-171,550],[-71,227],[215,776],[273,211],[-4,501],[-3,393],[-142,567],[-21,378],[-22,422],[-131,797],[-109,2088],[-199,1199],[503,60],[290,613],[159,629],[-161,472],[-304,619],[316,143],[318,-73],[-180,749],[-271,732],[-345,1034],[-186,-1191],[-304,-710],[-107,-896],[258,-1184],[-317,-522],[-190,-639],[-261,315],[-616,1309],[-227,1272],[-149,543],[-285,525],[-302,473],[-12,4],[-280,98],[-342,-23],[-494,41],[-504,11],[-472,130],[-261,-332],[-229,547],[-263,475],[-144,512],[-41,453],[-61,691],[-16,370],[-24,573],[-173,940],[211,1548],[16,704],[-100,814],[-218,1893],[-142,578],[-213,478],[-232,716],[-10,1189],[46,1166],[-19,974],[-174,1137],[-259,710],[-64,1358],[-113,860],[-116,678],[-133,1533],[59,1228],[-146,835],[-267,830],[-163,1191],[-131,684],[-84,657],[-195,1590],[-361,1367],[-59,629],[-286,516],[-317,813],[-620,796],[-87,618]],[[533977,431544],[142,-612],[-8,-353],[-112,-163],[-188,-252],[-132,-144],[-171,-50],[-103,-178],[-208,-247],[-104,-377],[-78,-311],[-234,-6],[-260,10],[-230,-125],[-170,-227],[-179,14],[-299,-324],[-108,-254],[-126,-274],[-166,-202],[-89,-281],[-28,-431],[-135,-116],[-121,-210],[-162,-31],[-79,289],[-160,154],[-138,-100],[-246,10],[-132,273],[-124,-84],[-173,-191],[-179,320],[-92,292],[-144,540],[-66,452],[-105,228],[-160,83],[-125,79],[-100,204],[-125,226],[-29,397],[-16,385],[51,384],[27,83],[60,189],[72,331],[-188,208],[-47,53],[-150,166],[-186,67],[-22,345],[-24,547],[-165,460],[-302,238],[-117,218],[-215,283],[-104,515],[89,286],[18,59],[-118,376],[-155,134],[-204,-62],[-123,-31],[-122,-286],[-3,-6],[-122,-304],[-156,-348],[-130,-365],[-153,-243],[-118,-94],[-127,-20],[-132,-185],[-84,-323],[-201,-158],[-163,-192],[-144,-491],[-99,-258],[-74,-193],[-57,-248],[-34,-150],[-119,-423],[-150,-445],[-73,-298],[-57,-353],[-151,-208],[-88,-353],[-94,-300],[-97,-404],[-161,-5],[-144,23],[-122,-265],[-89,-398],[-131,368],[-1,2],[-303,785],[-126,-346],[-94,-374],[-181,-517],[-88,-281],[-143,-612],[-66,-305],[-5,-23],[-89,-339],[-105,-307],[-97,-497],[-11,-405],[-30,-368],[-79,-491],[-162,-610],[-97,-330],[-144,-491],[-74,-415],[-85,-310],[-64,-346],[-146,-433],[-124,-394],[-76,-275],[-152,-425],[-135,-314],[-113,-299],[-88,-269],[-102,-314],[-94,-372],[-141,-480],[-66,-464],[-141,-490],[-71,-292],[-51,-324],[-39,-30],[-89,-66],[11,-300],[6,-151],[-117,-420],[-95,-571],[-135,-346],[-88,-273],[-119,-203],[-93,-355],[-147,-1201],[-168,-966],[-89,-396],[-114,-194],[-115,-197],[1,-311],[0,-141],[0,-30],[9,-342],[-174,-673],[-64,-251],[-231,-463],[-142,-293],[115,-131],[107,-295],[7,-398],[82,-222],[32,-87],[71,-410],[-20,-467],[-512,-621],[-68,-172],[-22,-57],[-173,-625],[-26,-430],[0,-77],[3,-286],[-79,-128],[-63,-101],[25,-113],[111,-511],[1,-459],[-164,-182],[-162,-45],[-111,-31],[-83,-429],[-83,-282],[-123,-698],[136,-512],[31,-393],[-20,-381],[46,-448],[126,-447],[-80,-310],[-62,-492],[-14,-343],[-56,-143],[-161,-409],[-144,-401],[-46,-1239],[-267,-1398],[-96,-129],[-84,-112],[-56,-202],[-56,-201],[-214,-271],[-156,-125],[-140,-358],[-91,-234],[-24,-55],[-83,-189],[-182,-229],[-20,-342],[-262,-478],[-272,-783],[21,-380],[-13,-523],[-180,-28],[-186,-145],[-131,-638],[-119,-384],[-17,-433],[49,-472],[41,-427],[-136,-279],[-101,-255],[48,-392],[-59,-379],[-157,-420],[-65,-553],[-20,-404],[14,-356],[67,-439],[-39,-355],[-183,-189],[-209,-340],[-97,-197],[-166,-205],[-156,-81],[-120,-127],[-118,-76],[-125,-70],[-208,-279],[-180,-73],[33,-512],[-56,-396],[-199,-438],[-33,-473],[-128,-396],[-147,-367],[-129,-235],[-104,-297],[-86,-387],[-161,-117],[-174,-86],[-175,-174],[-570,53],[-234,-178],[-136,-161],[-134,-114],[-184,-274],[-100,-221],[-67,-331],[-166,-335],[-156,-502],[-148,-324],[-66,-301],[-106,-331],[-145,-260],[-192,-181],[-185,-294],[-87,-615],[-325,-713],[-159,-202],[-212,-269],[-134,-101],[-205,-599],[-173,-43],[-128,-22],[-230,80],[-189,203],[-203,-68],[-145,-1],[-236,-85],[-129,-127],[-142,-46],[-191,65],[-139,112],[-121,-56],[-137,-208],[-98,-500],[-122,-572],[-158,-787],[-87,-351],[-110,-277],[-67,-309],[-128,-705],[-331,138],[-350,145],[-91,38],[-359,150],[-20,8],[-147,62]],[[502553,367916],[-951,396],[-77,-627],[-131,-422],[-87,-263],[-13,-53],[-226,-435],[-549,-1294],[-48,-79],[-120,-137],[-86,-318],[-124,-426],[11,-426],[42,-1560],[-36,-175],[54,-482],[116,-547],[67,-512],[85,-462],[120,-198],[129,-450],[88,-303],[131,-785],[166,-999],[33,-43],[104,-852],[5,3],[25,-285],[-40,-99],[-42,-527],[-59,-741],[104,-222],[240,-598],[289,104],[154,-230],[269,455],[183,198],[145,-507],[108,-374],[75,-365],[221,-620],[-291,-343],[-264,-989],[-182,-964],[-4,-441],[-80,-285],[-153,-137],[-203,-190],[-266,-223],[-165,-272],[-295,-10],[-165,26],[-153,112],[-157,-211],[-126,-38],[-119,-61],[-216,-163],[-72,-303],[22,-541],[-74,-400],[-104,-240],[-173,-692],[-95,-510],[-54,-355],[-171,-544],[-49,-55],[-695,-382],[-216,133],[-215,178],[-58,0],[-120,0],[-326,0],[-134,-387],[-369,-1063],[-1078,-2072],[-154,-131],[-45,-84],[0,-1],[-105,-181],[-75,-62],[-170,-139],[-141,-253],[-7,-37],[-88,-507],[-78,-679]],[[495245,339160],[-143,207],[-177,300],[-7,11],[-447,760],[-228,387],[-399,676],[-706,1293],[-629,1100],[-138,240],[-228,400],[-484,843],[-367,640],[-930,1623],[-488,861],[-502,880],[-231,409],[-418,741],[-727,1284],[-327,572],[-141,248],[-305,533],[-1184,2075],[-158,277],[41,343],[46,394],[26,455],[18,411],[101,235],[70,400],[46,375],[-3,421],[-55,362],[10,395],[2,55],[48,331],[16,112],[-4,-19],[-71,-306],[56,505],[65,308],[28,96],[50,172],[-20,34],[-103,182],[-178,274],[-211,327],[-201,349],[-1150,2008],[-819,1440],[-378,661],[-78,137],[-47,82],[-600,1040],[-185,325],[-126,221],[-316,556],[-768,1350],[-210,370],[-107,194],[-333,579],[-262,455],[-419,724],[-888,1535],[-2,4],[-250,378],[-123,188],[-1655,2878],[-121,209],[-58,102],[-1421,2471],[-501,871],[-118,205],[-169,293],[-353,616],[-413,715],[-486,846],[124,181],[114,200],[116,269],[109,357],[109,289],[78,486],[169,380],[206,317],[87,570],[115,548],[143,523],[66,696],[67,298],[-6,419],[9,825],[31,334],[24,707],[-23,355],[25,423],[72,387],[81,282],[43,469],[-2,671],[69,558],[56,646],[-1019,1473],[-211,1867],[-115,1015],[-583,4804],[0,6],[-277,2272],[-284,2328],[172,191],[6,335],[189,362],[143,307],[102,316],[128,253],[103,683],[119,451],[120,382],[85,525],[98,437],[44,351],[62,343],[34,350],[84,638],[63,706],[64,577],[34,779],[24,588],[38,756],[32,373]],[[474439,417842],[65,731],[83,493],[137,367],[229,663],[166,276],[141,350],[97,396],[21,349],[81,303],[47,319],[94,393],[86,330],[8,392],[24,385],[82,357],[132,335],[118,386],[76,472],[55,365],[125,369],[136,646],[92,482],[-30,856],[145,330],[91,463],[78,292],[128,419],[180,754],[214,778],[146,573],[129,508],[45,423],[75,568],[63,474],[78,290],[96,274],[75,427],[38,341],[52,331],[200,359],[205,-74],[140,-6],[109,150],[110,327],[53,315],[47,318],[59,335],[31,144],[34,159],[136,492],[64,446],[143,372],[78,300],[44,366],[192,279],[95,208],[141,475],[88,312],[93,230],[80,383],[41,400],[-2,487],[39,462],[55,464],[86,656],[141,331],[154,1237],[156,497],[61,319],[28,442],[-36,551],[15,341],[112,414],[77,498],[179,369],[121,240],[119,312],[96,227],[39,406],[-114,308],[-128,230],[-209,298],[-111,178],[-138,332],[-143,371],[-111,179],[-111,148],[-185,179],[-173,148],[-73,98],[-55,73],[-156,286],[-105,231],[-137,209],[-170,32],[-198,99],[-135,186],[-61,455],[-48,314],[-131,186],[-129,2],[-573,844],[-513,-1533],[-657,1440]],[[535697,461579],[630,-1586],[21,-53],[63,-372],[-5,-371],[-2,-105],[-132,-760],[137,-441],[-47,-428],[75,-376],[17,-131],[33,-251],[213,-174],[112,-133],[151,-240],[66,-352],[-11,-71],[-41,-267],[-177,-289],[119,-278],[45,-171],[51,-195],[-120,-379],[-63,-40],[-90,-57],[-135,-403],[-123,-270],[-65,-397],[124,-200],[142,-336],[19,-103],[37,-213],[125,-464],[136,-143],[157,-298],[205,-449],[-111,-420],[-21,-85],[-59,-241],[48,-135],[43,-120],[-176,-554],[-118,-319],[-14,-33],[-25,-61],[-86,-206],[-71,-147],[-29,-59],[-1,-8],[-59,-363],[-108,-271],[-163,-260],[-167,-219],[-36,-393],[-42,-619],[-89,-656],[-133,-351],[-79,-279],[-103,-499],[-44,-541],[-109,-169],[-19,-561],[133,-463],[141,-196],[117,-300],[63,-342],[-23,-369],[-154,-298],[-162,-348],[39,-579],[-87,-316],[-122,-198],[-137,-179],[114,-225],[150,-223],[-123,-384],[-89,-261],[-50,-317],[119,-347],[114,-293],[-51,-526],[-153,-276],[-149,-461],[-133,-129],[-136,2],[-135,-293],[-66,-493],[28,-389],[-34,-353],[-138,-212],[-64,-331],[-11,-681],[-100,-296],[-133,-165],[-123,-212],[-99,-326],[-104,-353],[-58,-538]],[[502031,428234],[-322,-390],[-137,-156],[-126,-195],[-158,-64],[-182,139],[-135,243],[-165,-174],[-80,301],[-204,-45],[-11,-2],[-154,-516],[-167,-62],[-67,-301],[-89,-269],[-140,-182],[-305,-819],[31,-461],[57,-591],[150,48],[187,-451],[141,-338],[154,-514],[-111,-413],[-103,-195],[-57,-327],[-32,-387],[-63,-362],[-81,-254],[-120,-451],[291,-450],[218,-362],[-99,-288],[-229,-322],[143,-563],[35,-103],[56,-166],[243,-137],[260,243],[133,107],[271,476],[108,173],[92,128],[22,30],[-25,113],[-14,60],[-38,167],[21,6],[140,42],[163,261],[327,546],[108,186],[23,39],[230,395],[127,229],[21,55],[322,827],[75,287],[15,58],[266,152],[128,320],[71,349],[47,404],[33,84],[72,184],[113,489],[322,334],[445,78],[-45,119],[-46,124],[-15,41],[0,5],[-10,358],[35,445],[201,168],[122,-135],[126,-87],[188,-272],[148,-10],[134,158],[1,359],[-127,149],[-137,154],[-175,82],[-143,155],[-179,108],[-186,63],[-34,12],[-262,116],[-182,196],[-21,23],[-4,12],[-79,278],[-100,201],[-224,26],[-114,-55],[-13,-6],[-152,23],[-12,5],[-256,111],[-131,153],[-114,216],[-3,4],[-438,-542]],[[512753,414970],[-405,-211],[-159,112],[-123,87],[-94,-546],[-114,-113],[-132,-249],[-229,-236],[-132,-745],[-93,-545],[-11,-63],[-106,-747],[-118,-143],[-26,14],[-182,99],[-60,47],[-56,44],[-89,44],[-111,54],[-143,-58],[-118,-51],[-131,-50],[-84,-31],[-151,-77],[-127,-77],[-166,-105],[-249,-150],[-95,-285],[-82,-280],[-23,-558],[775,-416],[-229,-1310],[-57,-325],[130,-123],[-110,-640],[-20,-372],[-12,-507],[47,-351],[276,-99],[118,137],[191,313],[93,-222],[195,-533],[320,-39],[18,-218],[21,-262],[-145,-23],[-133,102],[-174,19],[-29,4],[-84,-243],[-17,-77],[-53,-242],[-93,-374],[-87,-236],[-150,-240],[-130,-175],[-89,-344],[-58,-323],[7,-474],[58,-382],[7,-66],[28,-253],[1,-14],[5,-11],[97,-219],[10,-197],[9,-182],[19,-478],[7,-177],[-39,-430],[-71,-137],[-33,-63],[-112,-220],[-170,-418],[-121,-276],[-99,-207],[-116,-214],[-148,-185],[73,-279],[48,-87],[139,-254],[111,-407],[28,-106],[154,-284],[144,-267],[80,-349],[126,-631],[199,-683],[155,359],[137,-611],[208,365],[970,1692],[121,207],[-125,291],[-3,547],[138,87],[142,-74],[367,680],[49,491],[-91,661],[776,2933],[1,439],[229,712],[653,2115],[123,355],[725,-461],[94,668],[-702,599],[82,415],[166,292],[47,404],[64,564],[415,442],[-30,696],[-45,1035],[269,473],[49,1035],[143,1608],[121,1476],[15,699],[-8,730],[-481,211],[-107,-642],[-293,226],[-442,289],[-370,243],[-706,-2247],[-202,-116]],[[596575,407618],[48,-342],[-180,-1221],[-115,-1639],[-110,-632],[-58,-333],[-55,-305],[-7,-40],[-11,-51],[-12,-49],[-14,-47],[-12,-39],[-59,-172],[-2,-5],[-8,-24],[-83,-222],[-7,-17],[-16,-39],[-17,-35],[-2,-4],[-236,-445],[-253,-513],[-9,-37],[-3,-8],[0,-10],[-20,-972],[-17,-830],[10,-936],[0,-76],[-102,-629],[28,-399],[27,-397],[43,-351],[88,-291],[165,-439],[83,-221],[878,-1765],[12,-25],[16,-38],[1,0],[15,-41],[6,-19],[92,-282],[8,-25],[14,-47],[12,-49],[10,-46],[71,-352],[1,-5],[10,-53],[9,-55],[7,-57],[6,-58],[5,-58],[2,-33],[27,-486],[2,-26],[2,-60],[0,-60],[0,-61],[-2,-60],[-4,-59],[-2,-24],[-10,-119],[-64,-752],[-164,-595],[-93,-332],[-65,-134],[-252,-457],[-82,-149],[-50,-54],[-336,-361],[-211,-81],[-173,-13],[-182,53],[-387,462],[-64,-8],[-7,0],[-160,-9],[-6,-1],[-12,1],[-197,21],[-10,1],[-20,6],[-9,4],[-20,9],[-12,6],[-20,14],[-20,17],[-7,7],[-56,58],[-13,15],[-10,13],[-9,12],[-7,11],[-107,162],[-11,17],[-18,32],[-17,35],[-16,39],[-16,41],[-10,30],[-118,375],[-4,13],[-14,47],[-12,49],[-10,46],[-11,54],[-1,5],[-10,53],[-3,23],[-19,113],[-2,15],[-124,815],[0,4],[-18,119],[-8,46],[-66,265],[-8,30],[-8,37],[-175,836],[-223,1066],[-63,304],[-237,687],[-113,146],[-184,76],[-449,185],[-539,118],[-187,-142],[-19,-13],[-20,-9],[-254,-98],[-134,-97],[-25,-34],[-90,-191],[-11,-36],[-107,-520],[-52,-327],[-17,-415],[10,-289],[40,-393],[80,-498],[88,-397],[3,-14],[171,-535],[151,-447],[22,-65],[12,-38],[13,-46],[2,-7],[109,-416],[10,-42],[11,-52],[10,-53],[8,-55],[8,-56],[2,-23],[38,-352],[4,-35],[5,-59],[3,-59],[2,-61],[1,-60],[-1,-57],[-7,-332],[-164,-961],[-14,-44],[-14,-37],[-106,-274],[-2,-4],[-16,-38],[-17,-36],[-12,-21],[-201,-352],[-6,-11],[-18,-28],[-20,-25],[-19,-21],[-4,-4],[-30,-28],[-16,-14],[-21,-14],[-20,-10],[-21,-5],[-7,-1],[-857,-113],[-15,-1],[-21,2],[-19,5],[-242,88],[-269,0],[-196,-139],[-265,-237],[-302,-573],[-72,-136],[-75,-292],[-130,-502],[-42,-164],[-202,-780],[-16,-66],[-229,-939],[5,-93],[43,-777],[46,-852],[10,-175],[20,-79],[10,-38],[10,-50],[227,-1129],[1,-1],[7,-40],[8,-45],[3,-13],[60,-354],[9,-55],[7,-57],[6,-58],[5,-58],[2,-25],[17,-289],[2,-36],[2,-60],[1,-60],[-1,-60],[-1,-40],[-20,-514],[6,-71],[157,-1979],[-67,-939],[-12,-171],[-45,-84],[-493,-911],[-22,-42],[-45,-54],[-44,-53],[-13,-17],[-659,-392],[-603,-16],[-504,-376],[-310,-245],[-743,-46],[-192,134],[-216,202],[-173,321],[-3,6],[-202,254],[-73,18],[-952,280],[-530,234],[-306,135],[-216,96],[-729,569],[-19,16],[-71,-35],[-251,-123],[-92,-71],[-74,-19],[-43,15],[-63,21],[-115,53],[-160,94],[-230,149],[-101,135],[-35,46],[-127,200],[-497,706],[-65,60],[-79,75],[-186,46],[-167,-29],[-438,-75],[-162,-28],[-286,-187],[-24,-30],[-240,-300],[-215,-352],[-57,-94],[-512,-1064],[-745,-1395],[-7,-20],[-15,-42],[-16,-38],[-16,-33],[-89,-172],[-1,-2],[-17,-32],[-19,-29],[-9,-11],[-326,-430],[-93,-167],[-45,-117],[-34,-141],[-45,-313],[-20,-453],[-2,-476],[12,-632],[31,-490],[28,-291],[46,-244],[83,-317],[364,-1007],[461,-1281],[121,-236],[16,-32],[16,-38],[12,-33],[137,-383],[3,-9],[14,-44],[14,-46],[75,-282],[12,-49],[11,-52],[10,-53],[8,-55],[8,-56],[6,-58],[2,-19],[48,-563],[3,-40],[3,-60],[2,-60],[1,-60],[-1,-60],[-2,-60],[-1,-24],[-17,-313],[-3,-36],[-4,-59],[-6,-58],[-8,-56],[-1,-8],[-34,-229],[-20,-139],[-8,-47],[-10,-53],[-11,-51],[-12,-49],[-13,-47],[-4,-14],[-174,-548],[-10,-30],[-15,-41],[-3,-6],[-44,-109],[-117,-290],[-14,-32],[-17,-35],[-17,-32],[-19,-29],[-18,-24],[-313,-376],[-1,-1],[-20,-22],[-20,-17],[-20,-14],[-18,-9],[-77,-31],[-479,-364],[-288,-264],[-131,-182],[-470,-1122],[-132,-396],[-27,-125],[-83,-416],[-23,-273],[3,-301],[45,-357],[42,-242],[200,-1139],[107,-506],[51,-159],[78,-182],[50,-93],[784,-1407],[478,-859],[8,-16],[17,-35],[10,-24],[127,-305],[6,-14],[15,-42],[15,-44],[13,-46],[12,-49],[11,-52],[8,-44],[38,-212],[1,-8],[9,-55],[4,-33],[7,-52],[20,-159],[3,-24],[6,-58],[5,-58],[3,-60],[2,-52],[15,-564],[0,-7],[1,-61],[-1,-60],[-2,-60],[-4,-60],[-3,-40],[-38,-446],[-1,-18],[-6,-58],[-8,-57],[-8,-55],[-10,-53],[-11,-51],[-10,-39],[-64,-247],[-28,-53],[-216,-284],[-247,-192],[-166,-103],[-166,-206],[-219,-317],[-91,-280],[-57,-327],[-36,-480],[0,-376],[0,-414],[48,-612]],[[575088,345879],[32,-379],[63,-407],[58,-373],[56,-310],[40,-343],[47,-512],[24,-445],[-14,-375],[-34,-577],[-40,-650],[-71,-363],[-75,-311],[-145,-288],[-134,-51],[-109,-89],[-11,-8],[-112,-92],[-10,-9],[-155,-123],[-122,-38],[-129,68],[-149,22],[-267,12],[-164,21],[-197,56],[-125,69],[-189,127],[-147,143],[-125,96],[-20,17],[-105,92],[-127,90],[-172,172],[-148,143],[-143,182],[-113,181],[-126,247],[-129,207],[-136,296],[-86,299],[-84,247],[-145,267],[-116,130],[-217,123],[-222,-93],[-111,-137],[-142,-210],[-180,-264],[-159,-209],[-178,-172],[-155,-50]],[[569870,342308],[107,496],[70,333],[-35,378],[-76,228],[-12,37],[-125,218],[-119,120],[-111,159],[-66,337],[-161,37],[-117,-85],[-121,-73],[76,-289],[-58,-317],[-109,-148],[-114,107],[-140,133],[-140,166],[-135,195],[-114,149],[-57,300],[-82,248],[-118,68],[-27,-342],[-21,-488],[-49,-319],[-111,169],[-104,258],[-126,47],[-113,-130],[-120,-54],[-87,-237],[39,-322],[-91,-359],[-104,-212],[-131,-66],[-92,-238],[-125,-118],[-123,124],[-125,23],[-132,69],[-71,284],[-34,343],[-112,168],[-649,3535],[-93,498],[-379,2025],[-187,1002],[-120,643],[-60,311],[-26,139],[-229,1208],[-136,720],[-237,1247],[-121,643],[-365,1938],[-74,380],[-104,547],[-474,2499],[-155,831],[-57,308],[-194,1036],[-29,155],[-211,1131],[-258,1378],[-172,923],[-125,668],[-64,339],[-511,2685],[-66,336],[-507,2673],[-68,360],[-68,358],[-76,403],[-114,651],[-184,921],[-392,1979],[-2,6],[-114,574],[-62,310],[-16,37],[-157,369],[-101,235],[-72,307],[-17,384],[-76,359],[-52,480],[0,1],[-37,344],[-49,257],[-9,43],[-61,439],[-9,169],[-17,290],[-46,349],[-47,350],[-62,468],[-56,352],[-75,363],[-97,290],[-125,165],[-145,134],[-154,167],[-133,133],[-149,329],[-80,273],[15,351],[105,546],[77,388],[102,398],[105,205],[126,172],[-3,40],[-26,367],[-160,342],[-168,222],[-117,122],[-140,-17],[-102,-251],[-130,-173],[-144,70],[-112,120],[-132,163],[-160,203],[-130,199],[-105,169],[-113,260],[-131,138],[-48,318],[85,587],[39,403],[-18,344],[-136,193],[-117,171],[-109,210],[-114,111],[-106,161],[-112,184],[35,404],[68,303],[34,416],[90,449],[45,325],[15,377],[-57,370],[-142,157],[-228,102],[-189,26],[-129,81],[-95,211],[-76,267],[-92,237],[-108,174],[-122,113],[-117,-175],[-37,-353],[-109,-223],[-128,-32],[-141,-90],[-125,-111],[-123,-94],[-168,-154],[-150,-189],[-144,89],[-138,213],[-113,110],[59,331],[-88,291],[-125,51],[-103,213],[-123,50],[-95,240],[-49,355],[-75,371],[-59,321],[-124,23],[-129,-90],[-120,-132],[-197,-86],[-128,23],[-119,77],[-140,-88],[-125,-241],[-104,-189],[-130,-235],[-117,-62],[-86,43],[-99,49],[-122,54],[-117,-106],[-121,138],[-77,307],[-74,311],[-130,418],[-95,265],[-140,302],[-121,224],[-177,279],[-142,200],[-133,113],[-175,26],[-139,-44],[-132,88],[-120,97],[-120,105],[-150,-22],[-143,-14],[-125,133],[-137,54],[-143,106],[-122,158],[-124,145],[-116,152],[-122,-105],[-113,-112],[-110,154],[-89,252],[-120,177],[-95,211],[-23,342],[-72,303],[-119,23],[-125,134],[-84,249],[-76,271],[-102,177],[-142,50],[-77,293],[56,375],[58,337],[92,286],[89,248],[56,311],[3,349],[-81,347],[-98,260],[-144,231],[-110,278],[-93,329],[-89,306],[34,389],[6,344],[80,301],[55,322],[-79,445],[18,350],[109,265],[65,300],[-49,357],[14,347],[61,338],[37,385],[-14,408],[7,359],[80,377],[5,343],[-21,393],[-12,374],[-61,311],[-62,295],[-44,346],[-18,340],[5,415],[-26,448],[-116,234],[-87,253],[-49,368],[-33,389],[-31,356],[-66,319],[-90,257],[65,867],[56,408],[47,315],[97,264],[121,113],[111,185],[87,257],[14,380],[-94,456],[-109,148],[-85,257],[55,356],[33,340],[-63,316],[-75,413],[-95,205],[-78,282],[-152,66],[-122,30],[-140,-101],[-121,-78],[-100,221],[99,295],[110,212],[62,332],[-102,204],[-122,11],[-123,59],[-138,17],[-171,198],[-161,197],[-5,357],[-16,345],[-117,128],[-122,-177],[-130,-1],[-88,237],[-79,397],[-110,168],[-128,-35],[-129,108],[-136,-147],[-98,-304],[-97,-203],[-150,-1],[-125,127],[-123,12],[-134,-136],[-117,-90],[-123,-50],[-143,-104],[-134,-68],[-115,97],[-116,155],[-96,238],[-73,321],[-130,57],[-188,32],[-128,-1],[33,-370],[-89,-281],[-98,-204],[-115,-114],[-99,208],[-58,312],[-134,142],[-132,-53],[-122,95],[-66,294],[-82,251],[-130,180],[-82,473],[-83,352],[-56,441],[-53,390],[-90,263],[59,406],[86,238],[28,378],[-25,390],[-47,357],[-91,314],[-76,461],[-101,210],[-158,10],[-128,-100],[-148,14],[-184,26],[-120,-114],[-106,226],[-80,319],[-91,231],[-85,295],[-101,317],[-90,258],[-116,88],[-122,38],[-111,165],[-85,693],[21,351],[-61,470],[-46,407],[-107,188],[-143,92],[-205,-155],[-157,-111],[-113,-115],[-134,-140],[-126,-233],[-202,-154],[-198,-105],[-154,-131],[-111,-148],[-107,-259],[-160,-193],[-135,-139],[-128,-132],[-183,-196],[-152,-139],[-119,-87],[-176,2],[-127,-103],[-138,-118],[-123,-114],[-161,-94],[-126,-196],[-153,-157],[-278,-374],[-252,-138]],[[932826,317315],[-51,-771],[-73,379],[-128,670],[-125,1920],[350,475],[158,-795],[-66,-583],[-39,-339],[-18,-634],[-8,-322]],[[943432,330463],[-228,-133],[-298,824],[2,672],[44,568],[19,814],[248,83],[-17,-808],[67,-561],[49,-406],[227,-987],[-113,-66]],[[955870,354456],[334,-147],[360,37],[297,196],[315,-18],[296,-446],[148,-689],[105,-689],[97,-718],[69,-634],[-202,-591],[-199,-399],[-285,-692],[-248,-779],[-207,-729],[-227,-972],[-175,-679],[-260,-989],[-266,-1096],[-109,-419],[-897,-2816],[-806,-2821],[-863,-3566],[-921,-3484],[-414,-1875],[-593,-2687],[-302,-1218],[-245,-992],[-316,-1274],[-834,-1990],[-720,-332],[-214,981],[44,328],[60,443],[61,451],[19,145],[-1,1],[40,522],[28,372],[-150,501],[-38,129],[-243,361],[-189,439],[-191,650],[-262,155],[-266,23],[-145,788],[-30,565],[-7,134],[95,938],[364,798],[362,626],[20,1286],[335,191],[202,615],[112,883],[208,403],[68,1039],[-169,513],[-26,87],[-184,612],[21,308],[42,615],[110,505],[35,161],[435,-274],[64,-36],[347,-199],[71,233],[154,509],[208,699],[50,169],[280,307],[228,290],[232,-438],[487,229],[343,599],[136,373],[56,152],[47,1067],[-330,13],[-78,3],[-230,498],[116,255],[75,165],[-140,657],[-30,482],[-14,229],[-63,410],[-55,361],[329,949],[406,416],[50,991],[86,296],[86,298],[281,0],[188,-182],[106,72],[97,66],[76,52],[165,114],[402,547],[49,262],[54,283],[182,282],[-33,933],[194,203],[233,-110],[83,98],[154,178],[168,196],[120,-17],[154,-21],[285,1397],[132,1398],[11,932],[68,814],[174,14],[268,-274]],[[952990,362545],[342,-500],[322,14],[242,202],[114,95],[100,-105],[214,-222],[-30,-1268],[-259,-261],[-348,-352],[-482,120],[-410,-454],[-252,-25],[-54,892],[130,653],[-14,532],[120,1197],[265,-518]],[[927011,390821],[-162,-589],[-302,363],[-150,1314],[279,874],[26,233],[60,547],[327,-909],[188,-428],[-56,-173],[-128,-393],[-82,-839]],[[927860,396702],[-362,-591],[-262,966],[-368,416],[238,339],[96,138],[300,34],[236,27],[-120,-865],[119,-229],[123,-235]],[[934561,419878],[-248,-791],[-212,-423],[-40,-80],[-74,-763],[-229,-273],[-46,36],[-271,213],[323,640],[11,23],[57,278],[122,588],[-152,431],[199,657],[372,-99],[188,-437]],[[941716,431721],[-102,-1093],[-383,477],[-1,454],[0,345],[-6,547],[-57,775],[401,-524],[39,-260],[109,-721]],[[922833,430345],[22,-1309],[-343,786],[-243,1187],[32,1311],[357,1516],[125,-1423],[12,-1056],[38,-1012]],[[913221,440282],[-357,-810],[-376,290],[-75,1188],[378,1011],[441,654],[209,-703],[33,-784],[-253,-846]],[[911846,437053],[-262,-721],[-379,-65],[-218,450],[-43,-996],[-176,-668],[173,-513],[107,-1089],[-240,474],[-213,528],[-318,638],[-99,1239],[-29,1832],[-92,808],[-26,981],[163,1583],[-15,109],[-80,562],[-105,748],[70,1245],[-14,318],[-31,688],[29,700],[54,785],[180,828],[104,6],[266,14],[147,-321],[145,-318],[140,-793],[180,-626],[330,-1063],[338,-791],[274,-634],[-180,-223],[-244,-303],[-434,-1062],[-170,-468],[-168,-458],[188,-335],[138,-247],[304,-485],[277,-631],[117,-1073],[-188,-653]],[[909851,452717],[156,-1344],[-316,441],[-174,1264],[-349,1992],[383,-236],[237,-827],[63,-1290]],[[977726,461251],[-143,-786],[-253,101],[-208,186],[-9,628],[237,544],[315,277],[76,-869],[-15,-81]],[[981212,461190],[-117,-898],[-195,794],[-281,370],[-164,539],[288,424],[331,225],[92,-755],[46,-699]],[[973871,464186],[320,5],[121,-247],[77,-157],[82,-127],[107,-164],[119,-1103],[-208,-781],[-235,-500],[-312,-284],[-101,-679],[-228,102],[-240,527],[-29,-60],[-356,-740],[35,-26],[329,-247],[-48,-322],[-74,-499],[354,357],[36,-1016],[-276,-1106],[-346,-184],[-111,-59],[-95,-51],[-296,-159],[-348,-154],[67,1032],[-102,-10],[-142,-14],[-23,-277],[-67,-788],[-216,862],[-134,805],[-78,221],[-108,304],[17,744],[42,101],[181,447],[244,135],[69,39],[153,-168],[24,-27],[226,-248],[369,67],[4,42],[26,315],[30,375],[-30,129],[-113,478],[133,458],[43,150],[44,86],[148,288],[-259,1000],[57,16],[166,49],[19,42],[142,317],[415,-131],[376,834],[0,1]],[[980293,463546],[5,-219],[-155,32],[-447,92],[-364,184],[-278,670],[294,595],[244,315],[373,170],[202,-517],[62,-159],[41,-228],[23,-935]],[[979147,465778],[-293,-6],[-223,365],[-61,948],[435,267],[654,257],[314,-49],[-340,-925],[-271,-595],[-215,-262]],[[981450,480427],[101,-1071],[414,170],[233,423],[327,-68],[72,-710],[299,-475],[366,-809],[-193,-532],[-34,-94],[-266,-362],[-125,-170],[-169,-408],[-77,-184],[-259,-475],[-217,-434],[-144,-289],[-172,-859],[-295,894],[-50,-988],[-175,-638],[102,-701],[217,-1],[-4,-280],[-5,-357],[-81,-580],[-41,-286],[-37,-46],[-167,-208],[-35,115],[-134,439],[-240,872],[-187,578],[-106,330],[-213,382],[-176,313],[-44,899],[-80,857],[-82,576],[-72,498],[-1,4],[333,577],[527,487],[214,799],[49,183],[-86,1357],[267,202],[64,4],[191,10],[191,56]],[[910081,482948],[114,-14],[87,2],[198,6],[134,-5],[120,-4],[-10,-729],[-118,-631],[-37,-286],[-63,-497],[-60,-343],[-78,-443],[-235,518],[-297,443],[-169,1038],[-246,978],[304,1],[34,0],[208,-20],[114,-14]],[[907464,483053],[130,-91],[212,-277],[126,-164],[-235,-868],[316,-584],[118,-716],[-54,-123],[-134,-302],[-231,202],[-129,113],[89,-607],[65,-445],[-70,-985],[-27,-859],[-11,-352],[178,-228],[181,-233],[10,-89],[89,-775],[159,-1035],[-435,-473],[-709,-528],[-71,-1128],[-97,150],[-323,501],[-116,1061],[-50,284],[-143,821],[-38,841],[109,211],[154,297],[182,797],[92,772],[127,887],[272,41],[5,1],[-1,5],[-36,252],[-97,671],[-225,1082],[64,1085],[-35,94],[-167,453],[-85,229],[129,-22],[22,-3],[45,1],[127,2],[110,-2],[122,-3],[37,-1],[45,7],[204,33]],[[905101,480702],[-2,-974],[-223,932],[-173,396],[-8,336],[-16,631],[31,972],[465,122],[426,-8],[-14,-1136],[-338,-129],[-180,-261],[-84,-122],[68,-445],[48,-314]],[[991677,492269],[-120,-406],[-117,-398],[-217,-410],[-263,-603],[-164,-416],[-107,-270],[-239,-584],[-83,-202],[-341,-751],[-169,-1102],[61,-1089],[37,-667],[-101,-770],[-416,6],[-447,-367],[-231,-345],[-44,-65],[-45,-67],[-330,-773],[-215,-544],[-207,-549],[-7,-35],[-23,-121],[-113,-592],[-92,-641],[-138,-364],[7,-288],[18,-688],[200,-770],[184,-714],[45,200],[174,764],[189,538],[190,281],[157,233],[230,-663],[103,8],[244,21],[51,2219],[28,33],[223,263],[-128,420],[-41,133],[42,665],[260,-230],[192,298],[208,-836],[336,-759],[197,-262],[-149,-984],[285,-206],[-83,-455],[-43,-232],[-238,-308],[-441,-131],[-399,-451],[-69,95],[-167,230],[-256,-26],[-205,-101],[-164,281],[-115,-131],[-190,-214],[-27,-435],[-16,-255],[-13,-107],[-46,-380],[-178,-379],[-81,-631],[-89,-1035],[-71,-751],[-86,-647],[-239,-867],[-241,-731],[-4,-620],[-188,-167],[-291,-53],[-205,-148],[-202,240],[-281,-6],[-251,548],[-337,397],[-362,-326],[-195,-580],[-220,-735],[-246,-84],[-218,-224],[-388,-42],[-474,-209],[-306,-617],[-31,-639],[97,-658],[-23,-620],[72,-573],[-266,-352],[-318,-365],[419,-353],[84,-790],[-301,-514],[-232,-177],[-472,-33],[-264,375],[-223,-87],[-166,-623],[-281,-263],[-368,-20],[-147,119],[-412,1072],[91,566],[-220,486],[344,629],[585,1039],[260,610],[367,527],[187,976],[109,981],[277,1521],[194,748],[169,442],[61,631],[309,533],[196,704],[313,554],[344,448],[37,48],[346,454],[242,551],[244,772],[266,485],[182,456],[258,656],[239,322],[195,285],[374,535],[40,475],[14,167],[49,579],[265,346],[360,670],[293,466],[317,303],[309,1083],[334,794],[379,734],[39,76],[98,858],[235,-65],[92,469],[86,437],[272,356],[34,783],[17,396],[22,819],[-29,531],[-12,219],[-17,658],[-8,294],[358,208],[299,-104],[35,-12],[59,-54],[371,-342],[133,436],[134,439],[209,85],[332,-68],[255,-758]],[[973871,464186],[-336,340],[-301,-348],[-375,70],[410,751],[91,224],[121,295],[167,152],[68,61],[205,-125],[256,717],[31,360],[16,187],[23,265],[23,261],[-14,511],[-14,558],[-54,133],[-145,350],[-383,87],[-325,98],[-42,13],[-231,-219],[-232,-220],[-235,-556],[-224,-279],[-227,-865],[-252,-1038],[-149,-816],[-33,-849],[-113,-890],[-5,-852],[-271,8],[-230,-452],[-203,-895],[-242,-741],[-92,-912],[-201,-1207],[-235,-565],[-84,-773],[-207,-825],[-126,-519],[-235,-980],[-66,-913],[-8,-112],[31,-957],[241,-516],[148,-110],[201,-151],[94,-98],[185,-193],[107,-55],[409,-209],[237,-21],[3,-2],[325,-202],[245,20],[39,3],[256,663],[71,23],[161,54],[48,33],[102,71],[37,25],[6,4],[51,35],[10,-48],[183,-905],[211,-100],[176,123],[159,254],[68,108],[73,205],[199,557],[91,895],[-338,268],[38,614],[198,409],[82,169],[32,331],[55,564],[18,190],[112,664],[19,111],[-46,724],[323,806],[-124,525],[-21,88],[-91,647],[221,14],[132,558],[252,383],[249,220],[193,172],[202,172],[264,-146],[49,81],[141,232],[134,-20],[319,-48],[2,0],[479,-373],[317,-369],[368,-571],[576,-104],[209,885],[280,-251],[170,-662],[307,369],[265,-618],[-136,-208],[-197,-910],[-101,-3202],[-657,-1310],[-101,2037],[-489,161],[-302,-304],[-188,-124],[-297,-319],[-289,-515],[51,-354],[-4735,-10893],[-263,-605],[-881,-2803],[-2364,-7528],[-138,-439],[-305,-1249],[-461,-1882],[-164,-673],[-232,-948],[-986,-4033],[-2,-8],[-20,-82],[-1,-2],[-58,-307],[-18,-95],[-782,-4110],[-1,-15],[-6,-89],[-85,65],[-331,-141],[-158,-67],[-46,37],[-191,159],[-244,-122],[-55,-273],[-76,-373],[249,206],[275,-384],[655,23],[-4,-36],[-398,-1410],[-48,-168],[-91,-323],[-1111,-4221],[-160,-387],[-799,-1941],[-21,-112],[-484,-2653],[-1394,-9303],[-467,-2276],[-270,-501],[-290,-223],[-251,334],[-328,2115],[405,1670],[811,5066],[676,5121],[-296,2902],[-25,242],[-257,-156],[-40,-24],[-186,459],[-106,-466],[-113,-503],[-87,-712],[-134,-601],[-6,-27],[-359,-746],[-131,-986],[-228,-750],[-188,-711],[-156,-377],[-232,-560],[-354,-1275],[-71,-508],[-96,-682],[-58,-743],[-70,-639],[-207,-454],[-97,-1676],[-152,-2641],[203,-852],[157,-658],[285,-1196],[464,-824],[49,-88],[155,-468],[231,-701],[194,-1058],[168,-587],[198,-693],[136,-2283],[0,-497],[155,-685],[-102,-1133],[-113,-1000],[-130,-1225],[-107,-878],[-86,-827],[-154,-1206],[-78,-593],[-105,-690],[-97,-788],[-261,-1909],[-102,-662],[-135,-817],[-167,-1081],[-173,-1121],[-149,-682],[-111,-618],[-122,-805],[-251,-1327],[-189,-968],[-157,-843],[-158,-1104],[-102,-1237],[-63,-1218],[-63,-734],[-37,-1268],[-63,-2019],[-60,-1676],[-114,-830],[-173,458],[-131,1120],[-247,1078],[233,767],[-171,610],[-72,915],[223,740],[-123,1012],[-178,945],[163,855],[278,209],[292,290],[62,796],[250,485],[121,561],[110,814],[-12,822],[-131,81],[-151,94],[-344,35],[-64,-346],[-102,-548],[-226,557],[-137,758],[-443,426],[-228,118],[-46,24],[-94,89],[-239,228],[-43,278],[-54,350],[-254,376],[-42,62],[-285,70],[-163,686],[-199,945],[-12,198],[-39,603],[-284,1288],[426,79],[-17,733],[-306,326],[207,806],[345,723],[351,964],[128,1336],[-365,511],[-183,265],[-143,207],[-213,803],[-509,-459],[-13,-11],[-226,-754],[-193,-410],[-121,-258],[-199,459],[-164,-542],[-77,-255],[-110,-641],[-48,-278],[-176,-931],[-156,-843],[-54,-694],[-108,-598],[-155,-442],[-172,-698],[-114,-796],[-310,-453],[-198,-728],[-50,-654],[-186,-685],[-106,-572],[-49,-264],[-35,-418],[-48,-568],[-236,-384],[-140,-470],[-130,-436],[-236,-1149],[-60,-291],[176,-963],[296,338],[85,-207],[191,-468],[-22,-941],[-2,-76],[118,146],[165,204],[320,-161],[33,-17],[-11,505],[-12,477],[170,-230],[80,-108],[276,189],[195,329],[91,432],[59,281],[125,325],[190,498],[-171,868],[315,238],[423,-585],[149,-846],[93,-768],[15,-425],[16,-492],[13,-1073],[-144,-482],[-259,9],[-187,-110],[-94,-55],[-307,-35],[-183,-307],[-176,-295],[440,-43],[329,-233],[333,236],[168,-565],[105,-467],[-57,-598],[40,-839],[-65,-1314],[9,-29],[202,-600],[299,-565],[94,-710],[26,7],[221,55],[21,6],[306,177],[287,136],[366,167],[123,-110],[161,-143],[40,-546],[55,-753],[-1,-997],[-4,-188],[-19,-865],[155,-1092],[-37,-556],[199,-1004],[-232,-758],[-303,33],[-34,4],[-295,-577],[-409,769],[-222,647],[-190,611],[-43,-60],[-173,-240],[-8,-10],[373,-1368],[275,-948],[-179,-1135],[-77,-124],[-149,-241],[-115,-142],[-294,-363],[-332,-147],[-234,30],[-109,-559],[-78,-398],[-286,-720],[-411,468],[-151,248],[-46,76],[26,297],[66,753],[-19,762],[-142,656],[-342,580],[-65,109],[-242,156],[-136,88],[-373,124],[-169,173],[-263,270],[-288,-518],[-328,-133],[-178,-106],[-166,-98],[-99,-313],[-93,-294],[-289,-281],[-24,-309],[-21,-276],[-299,-132],[-47,-393],[-87,-724],[-294,-135],[143,-766],[154,-911],[-8,-280],[-15,-547],[375,-772],[150,-578],[231,-930],[54,-1024],[379,-331],[233,-33],[79,-230],[111,-327],[58,-272],[74,-352],[-21,-435],[-14,-290],[-96,-401],[-43,-184],[-342,-623],[28,-943],[8,-56],[60,-420],[-32,-422],[-9,-123],[-273,244],[-319,581],[-246,361],[-324,-233],[-234,138],[-95,56],[-258,-43],[-19,-901],[-23,-147],[-193,-1209],[-1,-5],[-68,-563],[-28,-235],[-270,-566],[105,-1054],[-181,-790],[-34,-149],[-139,-258],[-216,-402],[-270,-336],[-439,193],[-312,92],[-91,26],[-316,-31],[-240,-24],[-103,980],[272,1628],[465,501],[196,259],[83,82],[246,243],[288,784],[11,26],[128,311],[153,372],[235,593],[108,815],[-102,407],[-94,375],[-39,291],[-99,745],[-53,820],[-32,484],[-274,-613],[-399,114],[-135,-210],[-155,-241],[-358,1057],[-401,556],[81,986],[101,691],[-26,817],[-35,104],[-173,506],[31,378],[51,649],[216,771],[89,455],[69,357],[-438,433],[-215,-551],[-215,-137],[-347,-250],[-204,-79],[-225,-452],[-477,-603],[-84,-291],[-86,-294],[-195,-190],[-136,-772],[-301,-803],[-115,-1089],[-188,-424],[-159,-857],[-21,-950],[-289,-393],[-123,-613],[-239,-303],[-218,-454],[-244,-1037],[-313,-740],[-143,-674],[-192,-632],[-192,-869],[-47,-211],[59,-933],[75,-308],[118,-487],[91,-170],[162,-297],[-199,-919],[90,-648],[374,-332],[319,-148],[357,315],[61,54],[220,-302],[206,716],[327,556],[330,-758],[59,747],[183,529],[147,261],[204,757],[22,82],[232,-12],[22,-57],[166,-450],[90,-635],[54,-379],[-82,-496],[-234,-594],[285,-455],[171,422],[155,-323],[192,300],[220,-19],[288,-66],[225,123],[267,63],[307,-102],[246,-729],[-224,-535],[-381,-416],[-124,-536],[-112,-494],[-16,-12],[-155,-106],[-185,-793],[-16,-68],[-2,-9],[21,-14],[183,-124],[140,485],[242,473],[367,492],[389,-132],[347,-89],[370,-384],[-68,-812],[-38,-452],[-228,-936],[-141,-784],[-406,40],[-305,496],[-271,190],[-183,-352],[-50,-97],[-35,-47],[-280,-382],[-74,-163],[-204,-451],[-32,-984],[-6,-264],[-15,-702],[-2,-775],[32,-271],[43,-367],[-192,-655],[-29,-100],[159,121],[150,113],[14,11],[50,32],[273,173],[375,-253],[-94,684],[72,114],[287,449],[307,106],[187,44],[81,19],[402,458],[432,554],[174,226],[134,173],[54,35],[190,124],[265,-91],[220,777],[193,591],[35,108],[296,37],[250,-469],[34,-222],[93,-621],[-179,-1337],[-44,-227],[-97,-502],[-490,-611],[-256,-652],[-71,-182],[238,44],[42,8],[167,-641],[129,-892],[47,-538],[28,-328],[209,-589],[39,-387],[49,-475],[-6,-177],[-29,-862],[-165,-972],[-239,-63],[-327,58],[-190,233],[-94,11],[-219,25],[-300,-459],[-247,6],[-122,-49],[-1170,-843],[-931,1928],[-157,1542],[-238,2337],[-249,156],[-205,266],[-238,429],[289,280],[106,103],[59,205],[166,588],[-90,780],[-28,241],[-251,372],[219,923],[-41,687],[4,85],[23,484],[-248,591],[-128,140],[-169,185],[-42,45],[-78,6],[-160,11],[-109,68],[-285,179],[-173,-493],[-41,-117],[13,-235],[29,-557],[-286,-1180],[-193,-596],[-22,31],[-112,164],[8,397],[6,377],[-90,424],[-71,337],[-69,905],[-206,429],[-274,659],[-228,841],[-226,594],[-204,231],[-197,-204],[-296,305],[-83,85],[-314,732],[-59,-207],[-111,-383],[-435,25],[-88,55],[-347,217],[-286,-600],[-112,-266],[-59,-139],[-111,-52],[-188,-87],[-123,-202],[-208,-342],[-218,-699],[-322,-1037],[-182,-660],[-297,-499],[-259,-800],[-245,-510],[-276,-300],[-332,-572],[-28,-343],[-93,-1167],[-283,-178],[-288,-306],[-328,-447],[-68,212],[-123,381],[169,616],[31,291],[109,1004],[43,647],[232,454],[122,974],[216,30],[269,702],[227,517],[178,632],[-48,1180],[-177,887],[4,115],[9,259],[20,601],[-12,320],[-21,548],[-2,70]],[[934619,328421],[99,197],[116,288],[-42,347],[-123,169],[-222,264],[-149,90],[-186,118],[-145,-7],[-29,-37],[-164,-208],[-144,-62],[-141,17],[-59,406],[-7,648],[-79,816],[-67,308],[-82,423],[-7,497],[139,262],[163,13],[313,-83],[179,115],[29,538],[-47,362],[138,343],[184,314],[351,348],[99,278],[285,1760],[149,538],[70,300],[-196,304],[-161,250],[-493,765],[-245,380],[-316,490],[-262,407],[-366,570],[-170,263],[-241,374],[-107,166],[-183,284],[-231,359],[-73,112],[-51,81],[-585,908],[-197,305],[-138,215],[-159,247],[-55,86],[-700,1087],[-253,392],[-499,768],[-123,182],[-185,72]],[[929251,346850],[-81,416],[-41,209],[241,1293],[-439,-249],[-187,-241],[139,-627],[-71,-242],[-124,-424],[-220,-86],[-261,-124],[-295,-80],[-314,395],[-276,61],[-343,-437],[-298,-189],[-227,-444],[-271,-34],[-230,883],[-304,-476],[-168,-28],[-235,-93],[-436,-104],[-454,-569],[-617,290],[-254,419],[-266,199],[-291,155],[-211,888],[-285,672],[-182,581],[-463,38],[-532,-850],[-378,-740],[-208,362],[-174,935],[-174,-777],[-268,-503],[-349,-116],[-191,-95],[-226,562],[-176,1201],[-502,-614],[-279,-420],[-309,500],[-370,-47],[-40,-982],[-254,-233],[-134,784],[-45,1449],[101,1378],[64,668],[98,694],[302,1257],[222,1113],[215,707],[277,642],[248,293],[349,48],[310,786],[566,186],[64,-677],[60,-679],[407,-171],[215,-626],[269,-794],[327,-117],[226,-123],[92,-424],[417,-38],[364,-529],[171,828],[-254,400],[-207,623],[-415,866],[-342,725],[-348,622],[41,857],[-421,163],[-54,749],[114,665],[216,-116],[236,480],[221,305],[391,157],[-315,606],[-302,134],[-349,-457],[-369,-488],[-280,-391],[-365,247],[191,1277],[11,73],[-379,436],[-85,-25],[-345,-100],[69,471],[113,767],[205,1453],[376,954],[319,659],[45,444],[46,442],[158,991],[129,692],[120,813],[119,619],[170,596],[293,837],[62,-205],[64,-208],[280,-179],[-20,-494],[-10,-246],[327,-963],[-143,-1170],[0,-177],[-1,-632],[0,-3],[252,-691],[1,-833],[181,-716],[221,-401],[250,-653],[348,-70],[282,170],[305,285],[418,420],[264,-144],[-96,-638],[542,-538],[157,-1087],[248,-550],[259,-379],[245,976],[-233,854],[-187,1155],[-427,96],[-133,2029],[232,987],[273,185],[378,0],[123,-810],[349,-204],[-222,1331],[271,1284],[428,595],[334,156],[401,-246],[163,686],[62,692],[211,69],[225,305],[347,384],[16,747],[203,639],[368,168],[294,637],[-363,-39],[-197,-61],[-270,-33],[-337,-587],[-140,-728],[-206,-304],[-283,-316],[-269,-137],[-171,454],[-57,-793],[-238,-171],[-300,231],[-264,18],[133,665],[-290,3],[-221,-332],[71,-824],[-463,-285],[-297,-611],[-212,-623],[-343,-160],[-326,-245],[-142,642],[88,822],[-94,814],[-104,882],[73,773],[425,256],[460,483],[-3,990],[-346,-503],[-258,-83],[-360,-56],[-48,717],[-76,-222],[-205,-607],[-117,-642],[-126,260],[-72,147],[-188,324],[-152,666],[63,912],[260,861],[-346,679],[82,1364],[180,1319],[362,525],[89,-37],[304,-126],[406,78],[400,159],[189,-307],[298,-216],[31,-62],[212,-420],[232,-812],[33,955],[218,1080],[-287,517],[-314,75],[-309,342],[-342,668],[179,504],[83,724],[211,548],[190,525],[199,524],[290,533],[294,-182],[262,-225],[276,-416],[273,-267],[494,-305],[429,149],[226,716],[371,633],[318,30],[479,280],[331,-772],[129,-452],[373,-8],[172,-730],[238,-394],[-11,-1022],[-87,-1135],[450,-702],[-137,760],[218,1147],[171,661],[218,472],[337,-26],[290,-81],[280,-68],[453,-337],[540,-200],[239,1033],[176,831],[-303,-67],[-281,-531],[-260,-218],[-270,-75],[-335,461],[-260,302],[-166,450],[-331,-526],[-367,487],[-342,91],[-241,535],[-294,378],[-7,923],[296,584],[253,102],[247,635],[-450,116],[-360,-262],[-331,-483],[-359,-186],[-211,107],[-227,287],[-325,713],[-192,-36],[-235,-282],[-559,26],[-3,890],[-152,821],[181,1051],[345,623],[237,-254],[276,-906],[-71,967],[188,735],[254,263],[-285,737],[-275,-467],[-418,303],[72,873],[414,136],[347,255],[2,967],[-169,-124],[-196,341],[347,583],[380,283],[277,226],[613,119],[223,-209],[403,306],[-259,492],[-319,305],[-346,233],[-224,157],[-212,25],[134,694],[67,680],[-133,1028],[393,-57],[405,19],[308,166],[123,593],[216,169],[70,600],[165,522],[238,-182],[92,-886],[348,-187],[-146,849],[310,917],[532,403],[-204,-723],[100,-646],[41,-598],[-94,-732],[285,-401],[112,-754],[229,605],[-214,872],[103,892],[430,-64],[395,-298],[239,-476],[233,-258],[-175,1162],[-386,241],[-130,992],[233,928],[507,-57],[300,-450],[185,-165],[215,-703],[371,-611],[308,-481],[376,-205],[123,-1057],[248,-535],[378,-12],[379,224],[83,-698],[256,-538],[192,716],[320,410],[231,37],[341,117],[-242,1030],[-545,-540],[-363,-132],[-212,642],[-204,19],[-293,-86],[-246,499],[102,921],[186,883],[-301,-198],[-200,-227],[-375,-4],[-188,106],[-270,666],[-103,960],[-184,188],[-205,-208],[-127,487],[-295,250],[-184,914],[-418,1339],[-153,-248],[-184,-297],[-299,-99],[-53,-17],[-303,119],[-44,17],[-461,-226],[-374,604],[-207,727],[-237,-724],[-616,-9],[-349,-339],[124,-110],[219,-195],[-101,-787],[-331,-974],[-333,144],[8,1342],[86,895],[14,152],[234,1233],[174,648],[182,681],[377,694],[325,727],[265,239],[238,504],[33,72],[273,222],[190,332],[303,-114],[348,-142],[398,-110],[399,402],[375,282],[275,-375],[165,805],[197,780],[388,1089],[314,-626],[385,292],[80,-694],[109,-1448],[414,-157],[338,-174],[176,-725],[244,-518],[170,-448],[264,17],[236,-703],[371,-517],[408,-546],[-75,693],[-204,540],[-460,810],[-364,894],[-158,889],[-216,64],[-188,793],[-325,367],[172,1052],[189,393],[-310,270],[-1,599],[184,311],[-45,680],[215,-279],[190,195],[43,45],[-221,612],[269,269],[155,189],[89,108],[-258,369],[-237,558],[-194,605],[-373,584],[-24,-192],[-72,-578],[1,-2],[106,-326],[118,-367],[-12,-254],[-4,-79],[-20,-411],[-112,-626],[-45,-256],[-676,23],[-345,-395],[-314,141],[-246,533],[-508,438],[-36,1103]],[[934561,419878],[312,-338],[307,-93],[227,66],[-192,845],[-2,278],[-3,423],[321,599],[230,-301],[116,-151],[183,-402],[112,-246],[151,254],[129,217],[-245,563],[-50,306],[-109,661],[-25,311],[-68,831],[-351,166],[-264,521],[-213,-458],[-203,874],[-313,236],[-106,79],[-145,-198],[-135,-185],[-411,135],[-239,1233],[-261,-894],[-13,-851],[-220,149],[-255,147],[-97,747],[37,198],[126,677],[222,263],[37,44],[-246,385],[-112,647],[-62,859],[218,-274],[177,798],[253,263],[229,150],[246,-306],[403,227],[-1,1238],[0,2],[-165,252],[-106,162],[184,246],[154,206],[204,452],[47,186],[93,369],[341,-191],[-6,-865],[212,-665],[41,424],[57,598],[-4,298],[-7,468],[217,121],[99,71],[95,67],[96,47],[213,104],[336,-593],[297,-592],[175,559],[34,-142],[80,-328],[243,13],[45,2],[136,-280],[197,-405],[-230,-248],[-426,-165],[-299,-153],[-166,420],[-49,124],[-153,588],[-109,-556],[12,-934],[-21,-876],[-4,-202],[159,-1262],[276,-604],[427,-1261],[112,-527],[67,-317],[178,-368],[54,-111],[405,-389],[262,423],[-281,676],[-21,52],[-378,965],[29,84],[175,509],[228,270],[343,250],[334,459],[264,463],[407,-486],[189,-740],[4,-14],[41,-571],[-376,-117],[-162,-811],[269,245],[143,3],[120,3],[-54,-332],[-123,-764],[226,-740],[11,-358],[18,-585],[55,-267],[106,-514],[-220,-453],[38,-379],[27,-276],[97,-832],[15,-120],[95,-775],[100,-1272],[53,-788],[-73,-865],[199,-864],[237,-751],[-42,991],[19,789],[-23,966],[2,1029],[114,1091],[-255,951],[225,443],[6,76],[43,525],[312,940],[-247,611],[-98,243],[94,456],[120,580],[233,170],[107,78],[-258,700],[244,552],[278,-613],[196,-137],[324,-7],[280,-184],[16,-376],[28,-672],[79,-502],[96,-617],[1,-1138],[198,534],[419,-391],[-218,1164],[-157,1011],[100,353],[149,525],[201,687],[24,82],[-328,99],[-62,19],[-25,526],[-11,236],[85,861],[-6,1025],[289,315],[201,-1028],[417,43],[212,-253],[302,-211],[382,-159],[214,-736],[90,-311],[356,-125],[229,-705],[96,-913],[137,-548],[103,-864],[52,179],[92,320],[-116,1071],[-54,787],[-62,844],[-188,371],[-385,400],[-53,222],[-67,283],[-116,486],[-337,719],[466,317],[193,-74],[222,-85],[-139,429],[-166,514],[2,32],[17,433],[10,245],[-29,243],[-47,393],[282,497],[364,-210],[277,218],[-242,561],[-356,189],[-357,-284],[-273,-407],[-135,-1098],[-232,-301],[-282,295],[-317,-74],[-13,413],[-18,610],[133,650],[-55,748],[-415,-95],[36,902],[107,855],[79,639],[-133,1043],[-176,904],[399,108],[163,-695],[67,-124],[245,-453],[204,-416],[235,-478],[330,-41],[65,-8],[259,-336],[168,-219],[62,704],[-215,583],[-269,332],[-79,98],[-102,87],[-192,163],[-315,360],[-233,920],[-76,978],[-62,793],[497,527],[397,-114],[189,-670],[392,86],[386,-540],[26,1095],[-110,797],[-253,253],[104,-759],[-309,291],[-521,958],[-2,421],[-1,396],[-115,756],[276,374],[112,278],[61,151],[44,156],[118,423],[-47,78],[-160,262],[-289,256],[155,959],[213,-253],[297,206],[261,-16],[-64,1223],[52,23],[217,94],[43,-132],[155,-474],[115,-986],[65,-337],[104,-536],[265,-1118],[138,-246],[195,-348],[209,-593],[-222,-755],[-33,-904],[178,-852],[230,-856],[128,880],[82,634],[85,658],[132,626],[34,162],[285,780],[386,229],[229,-358],[51,-80],[290,64],[91,-28],[196,-60],[361,-249],[425,223],[111,58],[69,36],[-201,223],[-113,125],[-188,0],[-63,0],[-300,345],[-272,129],[-294,-59],[-224,674],[-44,132],[-427,746],[279,921],[238,565],[173,-391],[87,-194],[350,295],[16,518],[11,361],[-21,213],[-35,366],[207,901],[32,669],[521,-563],[-49,308],[-96,612],[240,65],[243,273],[399,12],[292,33],[44,5],[209,680],[-85,20],[-242,56],[-69,32],[-168,78],[-209,46],[-8,2],[-52,78],[-197,293],[-206,315],[-64,97],[26,-478],[24,-443],[-309,275],[-62,-263],[-116,-495],[-360,-350],[-219,-648],[-430,-524],[-321,693],[-51,111],[-365,324],[-330,209],[-347,694],[-31,913],[-267,124],[204,999],[-156,528],[307,313],[207,212],[392,-426],[255,717],[-187,355],[-199,651],[277,-1],[65,0],[266,-99],[0,299],[0,272],[107,34],[141,46],[375,510],[502,-28],[328,-77],[-265,758],[-271,397],[-279,363],[-189,-494],[-252,149],[-303,614],[255,831],[-15,397],[-19,515],[0,365],[2,718],[-242,-83],[-280,-127],[-54,-4],[-260,-20],[-276,-415],[15,766],[-113,523],[-24,111],[-244,314],[109,391],[107,382],[92,388],[52,219],[146,825],[315,-135],[347,-453],[96,-13],[316,-41],[464,490],[334,882],[35,250],[85,599],[364,-368],[318,-210],[279,55],[425,70],[259,210],[157,127],[-284,821],[-281,-144],[-95,141],[-251,373],[-363,-110],[-348,287],[-184,664],[-159,-727],[-259,-141],[-322,-155],[-178,-562],[-357,387],[-193,-358],[-316,40],[-265,170],[-420,-46],[-315,-782],[-247,-333],[-388,-430],[-496,24],[-473,-124],[-292,370],[-18,739],[225,62],[84,23],[-103,325],[-60,192],[-278,59],[-75,-177],[-125,-296],[-142,354],[-127,315],[124,715],[-14,31],[-325,717],[-330,-96],[-57,-17],[-161,-508],[-10,-61],[-24,-144],[-70,-429],[38,-187],[64,-314],[34,-57],[94,-159],[127,-214],[135,-649],[-407,-67],[-207,-293],[-22,-31],[-32,-8],[-270,-62],[-340,-514],[-208,266],[-400,350],[-77,-834],[-224,-433],[-38,-73],[-260,439],[-264,-375],[-98,420],[-68,292],[-258,184],[-27,-48],[-194,-338],[-262,76],[-40,11],[-81,38],[-296,137],[-4,-963],[-321,13],[-233,603],[-286,73],[159,1077],[203,611],[292,-834],[432,112],[508,106],[386,-87],[289,-635],[197,284],[75,123],[199,323],[50,207],[110,458],[106,738],[-27,141],[-90,479],[-186,-329],[-352,256],[-189,603],[-108,377],[-26,91],[-133,465],[90,327],[93,341],[49,-37],[299,-224],[133,596],[90,403],[44,81],[183,335],[160,295],[364,437],[13,107],[93,754],[261,841],[272,700],[208,665],[113,890],[233,747],[195,664],[93,316],[413,696],[314,138],[364,-699],[-405,-184],[205,-642],[192,-924],[202,-356],[306,-278],[488,-147],[235,-124],[62,133],[84,179],[253,133],[341,442],[308,719],[252,520],[206,453],[205,383],[310,876],[226,512],[26,57],[152,496],[305,-624],[248,-280],[311,-124],[350,-228],[204,-576],[378,61],[302,72],[267,-536],[261,-67],[37,10],[6,2],[270,77],[304,-210],[417,40],[260,-35],[265,252],[32,31],[177,552],[34,156],[97,445],[183,591],[27,141],[192,1006],[89,805],[5,257],[9,466],[34,566],[28,461],[-110,1152],[-65,883],[-22,307],[-155,283],[-114,208],[-116,394],[-30,101],[-47,775],[-241,-89],[-108,-40],[9,259],[23,660],[134,960],[69,919],[110,705],[151,548],[52,189],[106,183],[262,452],[14,-246],[26,-422],[227,-401],[327,-261],[238,313],[111,147],[-2,635],[-93,1372],[-43,34],[-239,187],[-28,110],[-65,249],[-63,245],[285,956],[171,57],[134,44],[248,423],[117,515],[104,461],[22,149],[115,786],[307,151],[1,1],[435,126],[371,107],[208,35],[59,9],[195,32],[24,4],[23,6],[4,1],[182,50],[393,106],[278,76],[1,0],[31,9],[8,2],[143,40],[83,24],[5,1],[7,2],[25,6],[123,24],[170,44],[128,31],[17,4],[179,42],[281,70],[453,113],[240,58],[435,108],[21,5],[102,23],[7,2],[32,8],[738,199],[367,91],[170,32],[230,51],[125,35],[145,38],[240,64],[34,9],[66,17],[468,125],[265,44],[532,126],[8,2],[278,72],[245,63],[220,58],[106,28],[55,14],[72,15],[318,64],[14,-1],[195,-6],[128,35],[11,3],[62,20],[299,98],[651,208],[751,185],[241,58],[310,75],[237,56],[226,54],[614,147],[199,48],[502,128],[192,47],[2,1],[1,0],[72,18],[259,66],[513,117],[307,73],[348,82],[173,38],[56,14],[5,1],[227,57],[385,108],[405,102],[651,163],[505,131],[294,58],[713,181],[199,52],[238,61],[976,226],[876,207],[195,32],[125,19],[130,22],[7,3],[178,38],[121,57],[159,38],[126,31],[156,39],[147,37],[152,25],[60,2],[105,4],[125,32],[151,32],[15,4],[13,3],[285,71],[2882,666],[116,-65],[203,158],[381,99],[41,6],[308,83],[74,21],[505,131],[210,53],[146,36],[149,38],[122,29],[223,65],[-38,-1231],[92,-789],[-191,-186],[-310,-576],[-355,-96],[-317,59],[-293,382],[-208,-1254],[-526,-382],[-438,-336],[-481,-133],[-78,-950],[-54,-829],[-144,-656],[-266,-1098],[-184,-915],[-393,-520],[-427,-148],[-346,-303],[-351,-17],[-337,280],[-279,29],[-126,-788],[-88,-938],[-60,-725],[18,-1010],[19,-957],[8,-825],[-77,-770],[-303,-612],[-224,-755],[-102,-642],[-25,-160],[22,-460],[9,-207],[7,-193],[18,-492],[16,-439],[82,-846],[-22,-706],[115,-686],[207,-117],[84,-48],[176,-788],[336,-178],[402,-224],[174,284],[111,-810],[-215,-657],[-277,-67],[-133,-33],[131,-585],[25,-110],[338,-592],[99,-1194],[-67,-9],[-116,-17],[-102,-14],[-342,236],[-34,-158],[-82,-379],[-83,-385],[-63,-14],[-297,-67],[-80,41],[-335,176],[7,-102],[56,-808],[107,-1025],[45,-1025],[34,-715],[207,-487],[215,-291],[2,-120],[11,-679],[420,-302],[172,828],[-57,743],[-18,226],[185,462],[63,157],[331,-269],[138,-527],[44,-170],[256,-641],[402,-759],[129,-205],[123,-195],[-261,-886],[-154,-463],[-187,-173],[-26,-24],[-61,-53],[-315,-276],[-288,-232],[-58,-47],[-342,-300],[-167,-238],[-155,-221],[-342,-338],[-228,-37],[-64,-162],[-112,-279],[-253,-460],[-253,185],[-66,49],[-60,125],[-240,499],[-247,457],[-152,54],[-83,30],[11,-426],[12,-434],[-1,-528],[66,-37],[66,-37],[130,-73],[-83,-719],[-64,-563],[-16,-90],[-114,-666],[-69,-422],[-23,-136],[-103,-694],[-131,-603],[-193,176],[-154,674],[-22,96],[-200,-313],[-129,593],[-40,181],[-189,671],[-276,202],[-278,231],[-193,-641]],[[999381,506064],[-434,-1593],[-334,-1204],[-255,-1015],[-177,-771],[-252,-898],[-214,-699],[-179,-645],[-258,-999],[-381,-1431],[-313,-1110],[-237,-889],[-239,-918],[-350,-1263],[-212,-779],[-476,-1592],[-392,-1296],[-310,-1032],[-257,-841],[-123,-522],[-155,-674],[-217,-910],[-246,-800],[-187,-722],[-223,-970],[-162,-768],[-187,-901],[-162,-719],[-199,-869],[-186,-825],[-121,-535],[-142,-748],[-253,-1264],[-212,-1091],[-214,-1054],[-99,-551],[-121,-585],[-185,-969],[-186,-929],[-160,-873],[-188,-885],[-206,-863],[-136,-790],[-128,-627],[-206,-1154],[-266,-1266],[-244,-1102],[-274,-1300],[-214,-950],[-206,-764],[-273,-1178],[-335,-1402],[-251,-963],[-372,-1340],[-300,-1008],[-232,-665],[-278,-692],[-238,-532],[-291,-573],[-314,-549],[-672,-2087],[-481,-1847],[-495,63],[-42,90],[-574,1939],[-1161,4221],[-1560,1499],[-53,272],[-558,1140],[505,1164],[907,-455],[219,-110],[1031,-516],[1,2],[381,99],[251,-142],[293,-458],[425,-632],[488,-824],[256,-962],[277,-563],[543,-239],[256,342],[184,438],[398,362],[249,477],[286,818],[155,568],[179,765],[152,1593],[53,1213],[218,321],[236,622],[-8,1080],[-1,136],[-443,453],[-427,382],[-200,-911],[-284,275],[-268,-47],[-240,130],[-205,110],[-242,101],[-172,72],[-370,129],[-572,100],[-376,-36],[-331,-133],[-296,-26],[-198,443],[217,232],[338,433],[206,1005],[22,110],[78,900],[151,746],[-200,904],[167,65],[72,27],[83,364],[75,332],[169,245],[93,137],[272,606],[50,110],[291,67],[107,24],[174,-292],[395,574],[24,2],[269,18],[75,-1],[368,-8],[359,601],[504,450],[402,566],[477,368],[-1,6],[-182,849],[97,981],[99,758],[41,308],[31,160],[148,741],[30,-126],[203,-857],[231,277],[146,176],[279,575],[213,755],[306,591],[286,370],[363,960],[352,757],[295,554],[197,537],[-86,764],[-274,841],[-138,1108],[-301,924],[160,509],[83,628],[345,690],[142,1005],[291,820],[170,607],[53,540],[169,664],[249,302],[222,425],[281,226],[16,12],[-112,918],[164,136],[259,214],[-184,1203],[154,421],[137,376],[-353,657],[-433,1020],[228,624],[-214,413],[-251,235],[76,934],[301,-563],[258,-364],[392,394],[117,798],[37,254],[-82,800],[151,487],[67,-254],[230,-868],[352,-206],[-16,-570],[-13,-427],[448,255],[10,26],[306,830],[-275,692],[248,782],[24,168],[202,1415],[282,568],[185,349],[192,361],[-86,732],[33,421],[22,271],[87,754],[73,633],[77,366],[11,51],[160,754],[25,328],[30,409],[379,-500],[284,59],[300,25],[88,958],[247,192],[117,25],[9,3],[153,430],[534,135],[485,123],[4,1],[199,47],[88,20],[142,50],[115,40],[649,225],[-228,-1042],[-199,-560],[-191,-624]],[[868561,396735],[-156,76],[-109,212],[-88,351],[-135,239],[-92,223],[-121,38],[-95,312],[-78,354],[-154,57],[-107,166],[-126,407],[-184,133],[-130,38],[-205,134],[-229,470],[-163,193],[-254,151],[-116,235],[-188,-156],[-119,-250],[-209,91],[-51,450],[88,292],[14,47],[86,263],[83,304],[20,85],[94,408],[27,128],[145,695],[68,339],[73,280],[2,1],[193,152],[138,238],[141,484],[122,400],[108,414],[57,315],[-7,516],[-28,520],[-1,9],[-2,480],[85,475],[97,288],[38,111],[107,346],[33,431],[3,362],[-15,353],[-13,412],[-17,556],[-92,709],[-19,61],[-95,311],[-33,388],[-26,498],[56,544],[54,382],[4,616],[-108,451],[-102,227],[-197,419],[-100,220],[-101,282],[-56,324],[-30,367],[66,631],[54,387],[70,292],[102,354],[103,294],[93,240],[11,29],[90,397],[-142,473],[-101,254],[-21,53],[-100,781],[-48,486],[-50,454],[-99,216],[-230,374],[-201,327],[-182,295],[-172,255],[-128,117],[-202,73],[-146,139],[-113,151],[-104,178],[-136,86],[-138,40],[-138,31],[-134,-49],[-194,-172],[-123,-98],[-146,-124],[-134,29],[-132,63],[-168,78],[-178,83],[-130,61],[-276,129],[-143,69],[-143,66],[-43,450],[-22,430],[-101,565],[-65,293],[-192,284],[-118,114],[-180,143],[-114,115],[-93,233],[-90,381],[-92,293],[-148,345],[-103,272],[-61,341],[-59,436],[15,426],[54,378],[6,379],[-38,403],[-53,345],[-134,429],[-100,307],[-105,318],[-98,287],[-106,295],[-130,445],[-65,329],[-14,387],[-19,791],[-21,823],[-5,383],[33,374],[32,457],[14,401],[24,342],[54,465],[13,371],[-37,579],[-58,372],[-247,400],[-125,199],[-163,259],[-300,474],[-366,584],[-144,-338],[-182,-600],[-109,-307],[-251,-117],[-153,-282],[-112,-231],[-277,-323],[-144,-111],[-273,-60],[-303,-50],[-130,-26],[-134,-29],[-125,-62],[-150,-124],[-143,-94],[-628,-139],[-162,-35],[-173,-34],[-123,3],[-178,105],[-31,26],[-26,23],[-58,49],[-212,202],[-163,127],[-73,78],[-56,59],[-39,87],[-4,8],[-56,124],[-37,256],[-27,191],[-59,334],[-77,347],[-255,1113],[-151,653],[-170,741],[-112,483],[-26,82],[-95,307],[-71,419],[-144,72],[-135,95],[-229,46],[-194,67],[-165,-52],[-123,-3],[-136,74],[-153,113],[-126,95],[-205,257],[-141,188],[-249,328],[-119,-72],[-144,-298],[-174,-290],[-176,-700],[-230,-634],[-243,-327],[-119,-121],[-137,-111],[-207,-114],[-81,400],[11,610],[39,862]],[[841535,504317],[298,138],[204,41],[270,539],[35,794],[90,903],[-139,669],[407,190],[113,-632],[279,215],[235,-138],[288,714],[353,-539],[299,-187],[66,-1388],[345,-8],[226,249],[-32,704],[277,431],[498,-694],[-138,-697],[67,-942],[21,-630],[-215,-73],[246,-881],[-177,-336],[-280,202],[-469,-75],[-167,-616],[-270,-201],[-123,-681],[-239,164],[-178,-348],[-314,32],[-46,-725],[-268,-639],[314,-184],[344,-13],[333,1095],[314,-105],[261,568],[370,286],[324,35],[335,143],[218,-663],[-382,-242],[-310,-808],[175,-708],[89,-718],[-32,-625],[4,-955],[348,-218],[-28,-748],[64,-656],[299,-426],[-192,-604],[50,-861],[43,103],[264,645],[204,494],[-162,665],[-200,564],[28,822],[-208,981],[-184,372],[-13,955],[269,445],[310,-524],[464,-339],[240,1031],[-244,427],[-376,185],[13,852],[217,588],[327,-185],[110,598],[323,160],[-291,608],[-213,488],[-452,-324],[-122,639],[136,920],[232,779],[-207,546],[323,40],[262,-550],[221,-308],[347,131],[-153,486],[-182,508],[-264,510],[-256,408],[-272,374],[255,226],[283,-157],[310,-335],[211,-155],[234,-104],[364,28],[391,188],[259,325],[14,423],[149,-114],[153,-201],[117,-116],[125,-142],[217,-287],[216,-326],[152,-171],[201,-246],[159,-131],[117,-116],[162,-146],[112,-145],[128,-148],[130,-67],[128,-163],[107,-163],[119,-91],[115,-87],[123,-94],[-157,-392],[242,-569],[-331,-545],[171,-1291],[289,457],[251,939],[141,813],[117,202],[239,-259],[125,-90],[116,-85],[173,-128],[129,-31],[128,-15],[143,33],[198,46],[141,78],[143,-29],[-244,-524],[-239,-756],[-199,-607],[273,-248],[289,116],[309,-198],[199,-632],[247,-556],[282,-316],[339,10],[31,-823],[130,-1077],[-156,-979],[-290,462],[-148,706],[-263,563],[-574,-230],[-290,111],[-432,5],[-141,-533],[399,-526],[350,-376],[250,-103],[199,-40],[-54,-824],[-330,-12],[-325,-37],[-337,-409],[-330,696],[-411,35],[174,-777],[-235,-697],[-280,71],[-211,506],[-109,909],[-184,-984],[-239,-267],[-231,66],[-171,708],[54,657],[-57,858],[-252,-36],[22,-1070],[-296,-507],[-374,302],[-342,429],[218,-1033],[246,-244],[173,-427],[299,-127],[180,-745],[-50,-944],[-67,-1076],[295,-359],[240,732],[1,737],[38,950],[227,-201],[264,279],[277,-399],[317,-1175],[305,684],[101,850],[294,-11],[297,320],[251,4],[443,411],[203,-597],[-363,-402],[116,-1047],[327,-531],[-310,-1008],[280,55],[282,364],[207,-340],[404,-285],[-146,-791],[-124,-600],[-172,-896],[-326,-112],[-340,-46],[-319,163],[-371,-277],[435,-598],[-276,-368],[-245,-658],[-252,-813],[-215,-415],[177,-761],[40,-1021],[42,35],[372,310],[-107,733],[11,614],[251,161],[182,1048],[343,486],[250,-623],[30,-763],[81,-804],[334,798],[288,448],[268,497],[429,268],[202,430],[-51,1311],[117,806],[-5,621],[-148,435],[176,876],[-224,715],[-316,689],[-306,178],[199,473],[190,-106],[212,164],[342,-90],[440,-367],[500,288],[137,444],[384,45],[279,-469],[124,-877],[-221,-472],[-218,-467],[393,-211],[-271,-669],[-183,-758],[-133,-617],[-240,-376],[24,-1191],[292,850],[261,432],[219,1158],[438,340],[144,-1025],[-106,-1006],[201,-563],[153,1060],[201,803],[25,946],[25,507],[525,-892],[140,-282],[153,-311],[136,-310],[121,-366],[133,-395],[140,-424],[484,-1069],[280,-619],[2134,-2068],[-331,-1576],[-32,-1789],[-572,-1412],[768,-1459],[130,-847],[-16,-2542],[-490,-1789],[931,-1789],[588,330],[65,3436],[-131,2307],[-473,2353],[163,1695],[898,847],[198,981],[119,-71],[209,-188],[116,-110],[139,-74],[124,-67],[176,-97],[205,-100],[318,-160],[204,-134],[123,-62],[215,-135],[149,-74],[214,-106],[216,-106],[51,-909],[-408,-1883],[-408,-1789],[277,-1883],[588,-94],[278,2166],[375,2259],[713,766],[259,-235],[375,-392],[137,-168],[218,-226],[207,-270],[298,-377],[117,-150],[162,-229],[162,-245],[122,-172],[110,-149],[131,-187],[130,-199],[248,-290],[106,-168],[134,-199],[-200,-1441],[-947,-282],[-751,-847],[-425,-1413],[964,-94],[996,471],[653,0],[425,1271],[245,956],[120,-198],[126,-196],[132,-190],[174,-248],[228,-296],[190,-270],[197,-251],[166,-235],[152,-216],[109,-144],[258,-270],[133,-190],[124,-178],[165,-223],[174,-244],[191,-212],[135,-198],[103,-255],[141,-164],[152,-217],[119,-181],[139,-175],[113,-177],[297,-340],[142,-144],[118,-205],[137,-193],[166,-154],[197,-204],[171,-188],[108,-191],[121,-90],[296,-404],[208,-269],[178,-282],[134,-237],[159,-259],[212,-374],[153,-288],[152,-373],[116,-170],[111,-185],[118,-372],[82,-251],[79,-266],[104,-188],[48,-345],[182,-475],[60,-229],[124,-1178],[-191,-884],[-368,189],[-489,-236],[-343,1036],[-278,1177],[-312,170],[-677,1651],[-324,113],[-10,-1105],[452,-1162],[220,-329],[210,-421],[180,-1083],[-163,-800],[-443,-219],[-554,1293],[-354,737],[-236,-284],[-118,-963],[-551,198],[-685,-180],[-521,1960],[-278,377],[-620,1035],[212,518],[-212,330],[-245,423],[-245,989],[-343,518],[-261,0],[-66,-612],[441,-612],[392,-1271],[0,-1083],[392,-1600],[441,-189],[425,-1412],[310,-753],[522,-424],[653,95],[490,-236],[304,-715],[153,-1324],[-335,-992],[-147,-1020],[256,28],[314,397],[452,-510],[197,963],[-249,2374],[639,470],[300,139],[451,-885],[271,-21],[682,-518],[351,419],[253,-102],[163,-1592],[256,-907],[255,963],[0,1074],[0,639],[-173,1308],[-218,303],[-60,505],[2,9],[-150,782],[-120,549],[38,120],[738,-827],[81,-12],[501,-567],[-39,-2636],[-962,-5193],[15,-39],[-40,-864],[-30,-971],[-24,-1690],[-35,-736],[-285,-1261],[-134,-1454],[-26,-757],[-38,-566],[153,-386],[-44,-1305],[-121,-1046],[-129,-727],[-261,-304],[-280,-743],[-306,-734],[-343,486],[-165,-728],[92,-1111],[-44,-555],[-176,-660],[-187,-836],[-310,-484],[-335,-665],[-290,-243],[-371,141],[-388,-524],[-282,536],[111,1259],[369,127],[229,515],[-153,816],[214,59],[259,11],[225,517],[100,880],[-377,-539],[-237,353],[-230,854],[-54,967],[186,663],[15,521],[36,606],[337,-720],[342,362],[-169,975],[321,43],[-184,1034],[-246,856],[-160,-639],[-238,-707],[-347,-493],[-2,931],[-121,1049],[97,616],[-222,247],[258,726],[-290,93],[-118,647],[-298,1301],[-465,512],[108,-1067],[80,-983],[278,273],[43,-940],[150,-1350],[60,-1397],[-242,-212],[-155,590],[-289,712],[-166,-577],[299,-723],[308,-810],[379,-484],[-160,-727],[-288,-152],[-17,-937],[257,-189],[-8,-1074],[-63,-839],[15,-749],[-391,-230],[-422,-26],[-303,633],[-196,817],[-36,823],[68,1315],[261,529],[-127,562],[-33,994],[-260,51],[-33,-964],[-268,-33],[-312,-428],[-215,94],[-389,-317],[-427,171],[-250,-573],[-258,-225],[-66,810],[100,851],[-88,608],[-169,477],[-290,181],[93,1042],[208,758],[92,1179],[-318,-360],[-305,39],[-507,623],[-92,1034],[-138,775],[-188,251],[-249,70],[-254,-7],[-585,-692],[-265,-687],[-394,664],[-321,-1258],[-340,21],[-240,-59],[-324,245],[-316,674],[-214,899],[-402,-99],[-298,-1041],[-318,-754],[118,1578],[-154,665],[-215,424],[-31,667],[68,881],[-261,384],[-331,337],[-75,985],[-240,197],[-314,-437],[-228,404],[-295,-805],[-155,775],[-247,-381],[-270,183],[133,1173],[-69,1174],[-209,-1230],[-354,556],[-362,52],[-443,-14],[-510,-398],[-391,649],[-343,590],[-44,-707],[-275,-255],[-185,171],[-253,-131],[-270,-90],[-359,155],[-408,110],[-249,834],[-314,729],[-292,-6],[-341,363],[-241,-153],[331,-608],[236,-387],[-74,-1132],[101,-70],[202,-139],[115,579],[281,-411],[325,-246],[265,-566],[333,270],[259,-338],[271,-9],[348,180],[258,-216],[311,-569],[369,-25],[380,-152],[325,-199],[285,-668],[171,359],[249,-668],[249,-309],[219,159],[251,274],[287,-859],[362,159],[366,-118],[320,-694],[281,-174],[-125,-671],[189,-736],[111,-896],[-210,-191],[-82,-931],[43,-63],[369,-535],[164,-309],[154,-292],[473,-181],[324,687],[226,-851],[117,605],[251,153],[234,-228],[115,-1029],[87,-717],[432,77],[423,-1193],[246,691],[-387,1278],[446,163],[414,593],[303,209],[230,493],[146,-639],[445,-318],[186,-647],[-250,-1032],[340,-328],[317,-701],[231,-452],[-174,-641],[-3,-720],[378,-1340],[235,-1079],[135,-906],[343,-348],[401,11],[249,171],[261,242],[-152,-948],[-235,-516],[-184,-856],[-171,395],[-33,151],[-332,553],[-443,-149],[-546,511],[-251,-319],[-82,-1405],[392,-490],[243,213],[148,-489],[177,-426],[148,383],[140,-213],[141,-511],[184,-127],[133,489],[170,-298],[198,220],[256,181],[118,-722],[3,-693],[-134,-1345],[41,-1295],[-160,-427],[-206,-758],[-174,-1021],[-205,1315],[-372,44],[-280,65],[23,-644],[-291,117],[-278,-89],[-301,322],[-179,-690],[-208,165],[-330,7],[-294,-83],[-240,433],[-212,347],[-82,898],[-83,661],[-464,-73],[56,-245],[113,-489],[155,-560],[-22,-965],[387,-280],[273,-432],[296,-227],[258,-4],[188,-681],[386,495],[240,153],[360,-75],[321,54],[279,-604],[9,-732],[177,-703],[-97,-844],[279,-290],[256,438],[391,384],[25,918],[154,510],[190,-302],[231,-272],[183,-439],[329,-447],[344,181],[306,436],[354,266],[217,-193],[284,-562],[-91,-787],[-162,-1155],[-129,646],[-80,558],[-221,401],[-267,-124],[-138,-622],[-245,-54],[-149,-577],[-322,236],[-206,350],[-331,-619],[33,-1122],[-402,-164],[-48,-870],[33,-1435],[184,-1098],[-244,-682],[-367,40],[-369,120],[-134,581],[-197,-815],[176,-742],[232,-336],[188,-370],[148,-556],[216,-367],[-52,-655],[6,-982],[-273,-553],[-404,33],[98,-917],[86,-575],[110,-716],[388,-456],[311,-843],[93,-1562],[63,-763],[165,-932],[-396,178],[-346,453],[-137,739],[-228,523],[-348,364],[-514,299],[-220,782],[139,732],[-396,-223],[-308,583],[-273,-208],[-190,745],[34,726],[-387,-182],[-130,1111],[-500,-732],[297,-676],[185,-654],[-307,-823],[317,-140],[284,-236],[263,-967],[277,-178],[436,-314],[148,-730],[360,-299],[-187,-545],[-310,126],[-445,-16],[-297,-345],[-85,-744],[540,-496],[300,522],[388,-616],[304,-197],[-1,-929],[-336,-237],[214,-340],[219,-1684],[-85,-966],[203,-466],[137,814],[323,790],[302,391],[164,-774],[-38,-623],[133,-662],[181,-1000],[91,-803],[209,-639],[325,-289],[106,-652],[83,-996],[73,-950],[-3,-664],[-322,-286],[202,-959],[-142,-780],[-214,-41],[-384,-128],[-453,-885],[-287,-455],[-327,244],[-273,270],[101,604],[-255,499],[-303,679],[-268,568],[-322,521],[135,-1428],[183,-921],[-434,-478],[-284,509],[-274,615],[-108,716],[-431,-337],[-356,412],[-279,431],[73,870],[-308,-40],[-282,-37],[86,759],[-88,993],[-89,1125],[-200,-860]],[[750590,426845],[126,44],[174,95],[277,235],[235,94],[277,187],[120,118],[281,282],[140,-126],[95,-281],[140,-526],[48,-467],[-4,-560],[-42,-676],[-32,-438],[-9,-442],[71,-414],[102,-279],[-16,-383],[-138,-274],[103,-492],[141,-470],[123,-382],[156,-486],[186,-425],[197,-670],[-94,-454],[-153,-409],[-139,-44],[-202,-8],[-305,202],[-118,48],[-206,-32],[-140,-133],[-112,-172],[-181,-313],[-224,-513],[-74,-394],[65,-430],[170,-644],[60,-310],[47,-682],[4,-374],[120,-425],[95,-216],[137,-251],[120,-104],[158,42],[204,212],[277,187],[147,156],[232,127],[150,14],[195,-156],[209,-290],[179,-362],[200,120],[245,151],[220,135],[171,25],[355,103],[312,279],[101,-200],[167,-727],[76,-670],[-52,-344],[-89,-251],[-103,-412],[-99,-480],[31,-469],[-72,-341],[-126,-160],[-254,-716],[-126,147],[-180,467],[-138,243],[-113,100],[-207,56],[-509,-227],[-133,-10],[-140,21],[-28,-445],[4,-655],[-14,-444],[-40,-343],[75,-507],[-62,-332],[-150,-475],[88,-252],[145,144],[111,153],[151,-164],[123,-77],[197,196],[144,144],[146,93],[147,92],[166,86],[165,85],[155,31],[161,-141],[147,39],[379,449],[110,215],[109,215],[119,277],[138,142],[283,172],[139,63],[134,-172],[-85,-884],[54,-367],[24,-345],[-65,-289],[-135,-347],[-104,-285],[-91,-372],[-41,-331],[-7,-631],[-6,-581],[8,-731],[85,-301],[169,-513],[87,-292],[107,-427],[48,-407],[34,-414],[17,-355],[34,-720],[126,-29],[330,377],[130,-36],[128,-98],[202,-296],[125,-136],[130,-46],[129,34],[145,34],[121,210],[107,246],[258,841],[54,348],[34,328],[174,556],[125,220],[117,190],[124,356],[157,54],[133,-258],[115,-430],[132,-369],[115,-116],[250,-156],[115,-439],[80,-485],[104,-924],[165,-321],[364,-486],[144,-226],[168,-200],[184,-81],[116,-87],[141,-233],[180,-41],[133,118],[157,210],[236,518],[-64,414],[-61,435],[-93,395],[-131,310],[-110,196],[-187,90],[-107,255],[102,218],[195,110],[49,358],[-26,451],[-145,223],[-126,-7],[-160,-39],[-60,304],[108,208],[112,176],[117,390],[-62,398],[-92,255],[143,706],[56,339],[172,369],[145,36],[123,-97],[189,-326],[123,-403],[-62,-352],[-76,-406],[193,-196],[146,-133],[144,0],[143,110],[130,298],[92,-233],[82,-330],[101,-218],[80,-538],[30,-483],[16,-349],[-62,-451],[-82,-252],[-36,-413],[289,-496],[96,-258],[137,-234],[13,-346],[-181,-268],[-95,-372],[-110,-639],[-105,-699],[-65,-352],[-187,-641],[-139,-347],[-162,-452],[-111,-521],[-107,-167],[-215,-218],[-87,-306],[90,-291],[106,-180],[164,-406],[93,-407],[102,-258],[174,-336],[79,-336],[-17,-376],[-91,-283],[-278,-593],[-211,-243],[116,-456],[119,-177],[229,-108],[123,-76],[117,-64],[119,29],[259,196],[131,134],[183,109],[304,134],[183,14],[176,38],[132,67],[144,250],[117,114],[166,64],[253,12],[124,40],[152,71],[172,23],[143,-160],[109,-188],[151,-313],[88,-242],[76,-326],[39,-332],[15,-476],[-102,-204],[-236,-203],[-153,-321],[-7,-407],[-7,-391],[99,-422],[149,-97],[150,21],[162,21],[356,13],[190,199],[160,355],[92,610],[44,846],[-129,700],[-6,547],[105,564],[278,494],[221,61],[225,149],[260,-8],[119,-94],[133,-172],[99,-195],[127,-446],[75,-337],[105,-186],[165,99],[201,103],[90,-291],[33,-148],[41,-187],[35,-418],[6,-686],[7,-685],[-24,-393],[-108,-547],[-99,-198],[25,-354],[180,-229],[81,-401],[-130,-297],[-84,-342],[-104,-214],[-164,-140],[-104,-181],[-67,-289],[-26,-424],[-182,-233],[-266,-172],[14,-501],[20,-477],[205,-813],[161,-498],[68,-551],[107,-187],[233,-230],[177,-75],[147,19],[199,192],[118,174],[123,123],[169,125],[376,62],[199,57],[189,77],[229,132],[219,274],[158,478],[99,328],[111,547],[-13,376],[-22,581],[149,105],[56,-408],[121,-211],[191,230],[121,-153],[70,-278],[181,8],[92,236],[-51,421],[27,352],[133,16],[66,-355],[7,-380],[40,-447],[109,-321],[131,-127],[196,-72],[130,35],[137,211],[130,532],[0,360],[-82,581],[-58,381],[-46,785],[-80,428],[4,454],[114,153],[46,60],[153,-135],[154,-389],[113,-261],[71,-374],[-6,-261],[-4,-154],[23,-246],[9,-102],[18,-191],[270,-238],[69,-61],[-6,-107],[-15,-260],[-118,-237],[20,-403],[174,-69],[116,199],[138,469],[125,31],[105,-196],[51,-320],[41,-626],[109,-266],[149,-153],[12,-12],[158,-128],[132,-107],[390,-167],[127,-81],[136,-90],[323,-202],[54,-13],[78,-19],[215,16],[116,148],[116,212],[170,329],[345,528],[7,12],[181,39],[105,-111],[24,-25],[4,-4],[11,-41],[91,-347],[0,-3],[62,-345],[55,-367],[27,-517],[-41,-485],[-20,-363],[-82,-863],[-68,-440],[-85,-318],[-66,-244],[-199,-743],[-97,-358],[-170,-490],[-280,-705],[-61,-586],[92,-642],[140,-438],[129,-296],[39,-380],[17,-168],[-100,-228],[-13,-7],[-107,-62],[-209,3],[-181,77],[-160,118],[-123,107],[-145,147],[-243,25],[-231,-133],[-266,-273],[-10,-461],[133,-541],[54,-399],[155,-760],[84,-289],[6,-22],[42,-116],[78,-213],[123,-329]],[[776861,371294],[-8,-26],[-106,-351],[-105,-211],[-144,-223],[-98,431],[-110,-144],[-140,-23],[-158,173],[-118,-112],[-133,-6],[-129,-206],[-114,-441],[41,-488],[1,-357],[102,-174],[20,-378],[-116,-165],[-138,-30],[-104,-229],[-87,-249],[-28,-336],[46,-405],[109,-411],[130,-344],[120,-208],[56,-315],[62,-294],[29,-377],[-103,-339],[-72,-284],[-57,-383],[-102,-312],[-65,-295],[-77,-394],[-42,-328],[-29,-350],[4,-367],[17,-465],[14,-382],[-31,-766],[-117,-214],[-99,-311],[-61,-454],[-103,-421],[-149,-255],[-161,-45],[-139,32],[-128,55],[-135,10],[-158,23],[-145,22],[-157,59],[-141,124],[-147,129],[-189,164],[-146,129],[-208,173],[-142,37],[-191,-51],[-250,-18],[-125,145],[-114,209],[-154,292],[-123,83],[-136,73],[-127,75],[-198,-87],[-128,-268],[-1047,-2398],[-336,-779],[-302,-701],[-492,-1117],[-225,-541],[-465,-1115],[-721,-1654],[-153,-368],[-229,-549],[-240,-557],[-268,-624],[-97,-317],[-49,-361],[-63,-328],[-66,-328],[-482,-1444],[-219,-629],[-459,-1412],[-503,-415],[-702,-569],[-175,-124],[-105,-193],[-55,-329],[-19,-421],[46,-324],[131,68],[65,356],[116,-149],[10,-361],[43,-333],[70,-366],[114,-382],[91,-249],[126,-294],[46,-433],[-70,-390]],[[764443,340310],[-138,204],[-116,185],[-62,326],[-39,345],[-113,115],[-105,-210],[-126,-69],[-128,-58],[-181,82],[-119,45],[-96,-224],[-123,-149],[-125,-61],[-63,290],[-136,0],[-98,273],[-126,-81],[-120,70],[-125,-69],[-97,244],[-103,182],[-119,108],[-107,219],[-104,234],[-116,142],[-125,-87],[-100,194],[-61,343],[-71,309],[-135,178],[-117,261],[-124,144],[-141,204],[-3,413],[-81,276],[-114,147],[-118,57],[-115,90],[-118,59],[-88,265],[-96,220],[-106,204],[-173,-90],[-129,-8],[-158,11],[-86,94],[-52,57],[-134,74],[-151,28],[-111,140],[-130,73],[-101,193],[-130,129],[-152,-44],[-126,59],[-88,42],[-173,121],[-126,148],[-133,113],[-103,178],[-194,120],[-108,143],[-152,363],[-82,258],[-50,157],[-148,397],[-134,129],[-143,20],[-163,-53],[-76,-1],[-43,-1],[-138,-24],[-116,-133],[-132,-121],[-120,28],[-142,26],[-129,49],[-132,115],[-159,169],[-118,137],[-102,213],[-85,262],[-97,331],[-65,286],[-121,9],[-111,145],[-123,-120],[-128,32],[-109,260],[-107,223],[-79,262],[-91,230],[-125,-1],[-120,-7],[-121,139],[-80,272],[-110,-159],[-118,27],[-108,156],[-119,206],[-118,218],[-109,251],[-97,262],[-123,121],[-125,160],[-120,-27],[-35,404],[-89,227],[76,267],[-130,241],[-36,87],[-74,181],[-624,306],[-199,97],[-59,39],[-127,107],[-122,93],[-108,145],[-133,16],[-119,-30],[-118,123],[-118,160],[-117,76],[-127,25],[-124,127],[-79,268],[-123,-15],[-121,-3],[-154,160],[-31,360],[-113,183],[-134,108],[-121,-87],[-68,304],[-40,352],[-106,174],[-113,184],[-56,327],[-11,40],[-74,250],[-80,263],[-131,183],[-111,192],[-113,239],[-169,319],[-135,124],[-90,233],[-142,193],[-119,36],[-117,-49],[-50,71],[-59,83],[-118,80],[-129,87],[-127,51],[-107,192],[-113,-116],[-120,59],[-122,36],[-123,103],[-143,16],[-114,226],[-5,10],[-94,210],[-131,210],[-137,264],[-140,122],[-115,127],[-134,33],[-119,14],[-144,89],[-72,337],[-64,314],[-94,213],[-99,259],[-119,121],[-146,-17],[-92,254],[-118,435],[-88,261],[-91,282],[-107,193],[-129,-189],[-118,-106],[-155,-20],[-83,264],[-75,373],[18,349],[48,324],[1,9],[-2,377],[-66,243],[-9,32],[-100,252],[-75,149],[-28,56],[-79,257],[-68,288],[-41,330],[60,302],[77,320],[8,34],[94,221],[87,248],[4,352],[10,343],[4,355],[79,270],[52,308],[-5,348],[-75,292],[-98,209],[-122,250],[-59,303],[-118,125],[-111,165],[-117,126],[-54,325],[-119,142],[-140,139],[-110,225],[-110,153],[-124,204],[-101,210],[-107,182],[-43,321],[-45,350],[-47,346],[-44,352],[-55,345],[-46,347],[-46,319],[-48,325],[-32,208],[-21,135],[-50,364],[-63,454],[-50,331],[-46,325],[-47,352],[-47,337],[-81,274],[-97,228],[-114,119],[-115,154],[-119,106],[-35,35],[-88,86],[-47,93],[-56,111],[-8,361],[-1,33],[-53,513],[-169,1606],[-51,102],[-133,456],[-67,302],[-51,385],[-107,239],[-101,253],[17,343],[-68,320],[-97,255],[-106,181],[-109,222],[-20,346],[-31,353],[-17,365],[21,360],[-35,347],[1,21],[-123,2043],[-43,354],[-77,282],[-76,267],[-91,255],[-49,56],[-606,336],[-97,-224],[-84,-254],[6,-371],[3,-376],[-107,-164],[-136,-12],[-106,195],[-139,38],[-88,-256],[31,-347],[-120,-202],[-124,-61],[-130,89],[-134,31],[-144,106],[17,349],[-104,239],[-1,0],[-128,6],[-135,102],[-76,284],[-38,350],[-113,209],[-43,320],[-105,192],[-94,213],[-97,229],[-111,342],[-104,193],[-124,101],[-111,-138],[-130,-147],[-84,-249],[-101,-196],[-122,12],[-46,-317],[-65,-305],[-18,-344],[-53,-330],[-47,-318],[-109,178],[-114,146],[-115,118],[-63,318],[-113,167],[-114,-139],[-68,284],[-121,91],[-77,290],[-111,-119],[-105,201],[-100,247],[38,335],[-58,317],[-114,145],[-77,276],[112,164],[119,99],[-31,354],[-104,196],[-113,158],[-46,338],[-54,311],[-74,299],[-10,358],[-79,271],[-7,362],[53,361],[-101,212],[-92,219],[-72,287],[-114,173],[-117,62],[-119,-45],[-138,-66],[-112,-121],[-1,-1],[-113,-119],[-103,-191],[-124,-114],[-117,109],[-112,214],[-167,-93],[-137,-34],[-109,145],[-119,77],[-137,-9],[-119,59],[-96,258],[-93,-212],[-132,-156],[-64,-330],[-127,2],[-148,-34],[-123,-139],[-93,-244],[-116,-171],[-113,-149],[-121,40],[-54,327],[39,387],[-115,130],[-66,-308],[-111,-149],[-40,-326],[-80,-282],[-118,89],[-119,54],[-67,-294],[55,-316],[86,-238],[-82,-263],[-115,-158],[-119,113],[-116,83],[-124,103],[-116,-77],[-91,-276],[-51,-315],[-27,-339],[-45,-330],[-129,-96],[-92,-236],[-117,-107],[-96,-239],[-124,-30],[-141,-84],[-124,-139],[-78,-275],[-98,-225],[-110,-163],[-6,-8],[-23,-339],[-113,-188],[-117,-123],[-121,126],[-130,-3],[-91,226],[-114,98],[-106,178],[-119,78],[-38,-326],[53,-326],[81,-260],[-15,-346],[-141,-1],[-114,110],[-123,46],[-110,140],[-123,142],[-112,120],[-122,60],[22,-363],[-59,-411],[-118,28],[-120,98],[-124,191],[-117,-68],[-119,36],[-84,268],[-108,-152],[-133,37],[-37,347],[-112,-128],[-94,217],[-117,77],[-100,204],[-87,236],[-88,236],[-106,156],[-109,160],[-58,310],[-118,62],[-119,-56],[-113,-156],[-102,187],[-119,-5],[-119,-48],[-103,207],[-90,243],[-96,230],[-74,325],[-94,234],[-103,174],[-109,169],[-82,277],[-122,6],[-108,152],[-113,128],[-105,-205],[-116,132],[-96,255],[-120,-23],[-92,222],[-120,91],[-127,17],[-93,276],[39,355],[-34,348],[108,147],[-79,266],[-126,194],[-119,153],[-65,306],[-57,327],[-179,469],[-161,421],[-118,76],[-123,117],[-114,174],[-107,229],[-95,223],[-60,303],[-85,237],[-121,43],[-130,52],[-116,78],[-119,32],[-110,-188],[-118,-145],[-112,-169],[-99,-193],[-125,-3],[-125,0],[-122,-103],[-80,-254],[-107,-216],[-90,-225],[-105,-192],[-114,-126],[-125,22],[-118,74],[-125,85],[-116,128],[-116,144],[-117,118],[-116,91],[-134,106]],[[716792,398783],[-157,-53],[-389,-168],[-153,-66],[-123,77],[-184,84],[-336,154],[-230,125],[-690,336],[-429,207],[-139,77],[-150,82],[-492,231],[-874,-1051],[-839,-291],[-525,-191],[-201,-73],[-144,-51],[-125,-44],[-283,144],[-215,146],[-161,14],[-457,244],[-227,120],[-163,5],[-508,-73],[-191,-28],[-275,-36],[-461,-65],[-528,-76],[-263,212],[-180,145],[-161,129],[-682,548],[-158,128],[-164,131],[-252,203],[-538,432],[-597,480],[-459,369],[-170,137],[-393,315],[-349,279],[-157,89],[-155,85],[-198,107],[-313,171],[-164,90],[-175,95],[-212,116],[-429,234],[-226,123],[-120,65],[-135,75],[-166,91],[-207,113],[-167,91],[-1014,139],[-433,60],[-723,1222],[-613,1154],[-136,256]],[[654054,412884],[-184,198],[-276,-163],[-219,-17],[-336,-121],[-320,16],[-353,18],[-888,-919],[-267,-452],[-214,-465],[-275,-1042],[-529,-1314],[-169,-305],[-477,-863],[-1327,-2058],[-415,-767],[-893,-2067],[-240,-444],[-390,-710],[-82,-314],[-85,-613],[-135,-1864],[-100,-1394],[-32,-444],[-136,-816],[-345,-1592],[-328,-747],[-255,-376],[-268,-211]],[[644516,393038],[-258,-62],[-229,34],[-125,10],[-327,63],[-19,-5],[-6,-1],[-164,-22],[-15,-1],[-21,2],[-21,5],[-7,4],[-73,32],[-1,1],[-65,30],[-11,6],[-13,8],[-500,206],[-354,146],[-485,327],[-114,77],[-641,696],[-201,373],[-292,595],[-737,1089],[-565,717],[-695,992],[-50,54],[-369,271],[-63,54],[-697,550],[-38,59],[-276,431],[-1,2],[-4,5],[-19,29],[-17,30],[-1,2],[-8,16],[-245,498],[-347,-320],[-169,-7],[-299,4],[-124,2],[-839,859],[-499,335],[-372,228],[-17,11],[-312,191],[-29,32],[-616,690],[-770,1576],[-410,700],[-178,159],[-294,199],[-255,132],[-227,300],[-102,395],[-226,1019],[-130,228],[-598,1045],[-494,379],[-390,332],[-163,186],[-20,28],[-160,232],[-225,162],[-231,97],[-196,-45],[-553,-134],[-168,-1],[-159,0],[-281,-163],[-288,-240],[-132,-21],[-427,-69],[-537,46],[-285,145],[-70,36],[-650,344],[-423,33],[-277,141],[-604,470],[-101,331],[-326,209],[-404,291],[-666,881],[-594,828],[-251,349],[-10,10],[-19,21],[-20,25],[-15,24],[-2,2],[-379,625],[-896,952],[-385,408],[-280,340],[-428,584],[-104,144],[-286,389],[-72,183],[-377,955],[-13,31],[-15,41],[-8,25],[-561,1742],[-194,600],[-592,3051],[-33,184],[-457,2547],[-9,55],[-7,57],[-6,55],[-59,629],[-327,1517],[-104,291],[21,539],[-173,244],[-266,152],[-170,-59]],[[665537,466259],[-183,-849],[-53,-247],[-337,-1563],[-349,-1617],[-78,-362],[-267,-1243],[-285,-1321],[-330,-1533],[-165,-764],[-136,-631],[-159,-739],[-127,-589],[-107,-468],[-400,-1748],[-164,-716],[-319,-1395],[-173,-757],[-178,-779],[-367,-1605],[-134,-586],[-129,-568],[-275,-1208],[-423,-1861],[-247,-1088],[-95,-416],[-193,-851],[-228,-1002],[-86,-351],[-407,-1664],[-74,-315],[-418,-1806],[-105,-452],[-403,-1739],[-285,-1231],[-124,-534],[-176,-758],[-157,-680],[-128,-552],[-1,-3],[-402,-1738],[-3,-9],[-165,-715],[-2,-8],[-294,-1268],[-151,-653],[-94,-357],[-826,-3278],[-257,-1048],[-73,-277],[-337,-2327],[-143,-1188],[-59,-478],[-85,-680],[-110,-940],[-46,-386],[-11,-97],[-37,-304],[-46,-385],[-31,-266],[-7,-57],[-39,-325]],[[821047,406066],[21,-427],[-36,-493],[49,-415],[15,-352],[53,-884],[98,-267],[-48,-321],[-36,-328],[-26,-548],[80,-303],[21,-521],[-127,-395],[-69,-347],[83,-252],[26,-392],[110,-269],[113,-268],[34,-469],[62,-376],[82,-336],[111,-129],[152,-403],[221,-408],[52,-498],[-19,-375],[24,-379],[151,-145],[159,-399],[110,-333],[-31,-544],[76,-297],[115,-345],[96,-367],[104,-246],[91,-365],[120,-165],[92,-337],[123,-157],[178,62],[258,406],[13,351],[240,654],[113,-127],[42,-358],[-15,-421],[-101,-457],[-109,-541],[8,-359],[5,-227],[5,-252],[-2,-52],[-21,-411],[-46,-400],[-4,-37],[-25,-347],[1,-27],[14,-314],[-55,-495],[-8,-70],[-8,-450],[-23,-396],[222,-190],[150,43],[108,-260],[128,-87],[98,-406],[-34,-440],[-60,-470],[-23,-365],[157,-446],[31,-435],[44,-252],[34,-190],[-40,-359],[143,-258],[134,-404],[27,-82],[78,-273],[112,-435],[0,-1],[-82,-272],[-12,-523],[118,-9],[115,-134],[125,-3],[140,-127],[116,-253],[103,-205],[157,36],[128,-238],[147,-329],[89,-278],[122,-262],[60,-534],[-15,-345],[-44,-318],[66,-284],[0,-391],[-39,-374],[-1,-378],[144,-393],[48,-336],[126,-195],[101,-233],[155,-50],[135,74],[106,-183],[249,-201],[103,-360],[91,-222],[22,-365],[-89,-269],[53,-329],[-65,-318],[46,-438],[40,-324],[-41,-323],[13,-422],[131,-217],[94,-336],[42,-343],[140,-23],[148,-143],[47,-529],[137,203],[105,-283],[104,-285],[91,-293],[137,-543],[-23,-393],[195,-307],[108,-506],[100,-393],[122,-154],[156,-42],[168,-176],[180,-328],[189,-133],[112,-158],[133,-61],[106,172],[57,-353],[98,-282],[103,-399],[138,-116],[132,12],[100,-31],[27,-8],[88,-384],[37,-373],[143,-32],[166,-231],[138,18],[4,-85],[13,-262],[3,-345],[94,-415],[125,-117],[148,-218],[213,-79],[137,-70],[109,-163],[156,-133]],[[832549,363188],[-46,-540],[-38,-464],[-5,-68],[-41,-501],[-40,-495],[-78,-723],[-181,-2323],[-69,-884],[-56,-730],[-119,-1596],[-91,-1235],[-47,-542],[-19,-430],[-50,-978],[-33,-934],[-159,-331],[26,-385],[82,-425],[36,-450],[43,-445],[29,-335],[-22,-431],[-18,-239],[-177,-2270],[-58,-684],[-143,-1815],[-109,-1380],[-66,-365],[-67,-390],[-43,-421],[-28,-394],[73,-339],[41,-360],[-34,-396],[-79,-483],[-117,-245],[-106,-271],[56,-443],[28,-549],[-3,-393],[34,-488],[102,-266],[1,-369],[-19,-509],[107,-276],[88,-322],[84,-406],[107,-386],[99,-261],[139,-255],[70,-594],[110,-184],[127,-325],[33,-330],[134,-302],[134,-407],[9,-460],[121,-374],[159,-740],[92,-375],[71,-295],[90,-367],[70,-290],[5,-22],[90,-392],[-10,-400],[236,-391],[164,-207],[-20,-397],[-93,-216],[122,-109],[-92,-242],[129,-15],[17,-349],[-64,-299],[17,-512],[136,-337],[-97,-457],[-122,-96],[206,-155],[141,-81],[-9,-143],[-15,-229],[-25,-388],[-33,-350],[-54,-663],[-140,-392],[-150,-153],[-102,364],[59,346],[-126,-76],[-102,-230],[14,-599],[132,-358],[135,-224],[-116,-295],[-208,59],[44,-398],[55,-395],[-25,-396],[-106,-225],[-119,86],[-126,366],[-154,11],[177,-783],[-26,-356],[-65,-315],[-70,-383],[-117,-229],[-116,-305],[-106,-299],[-109,-456],[-70,-287],[-154,-275],[-121,-188],[-70,-387],[44,-410],[68,-338],[-14,-352],[-113,-150],[-153,-109],[-230,-313],[-121,-231],[-138,-110],[-107,161],[-109,844],[-50,473],[-195,431],[-117,98],[-132,-47],[-161,-341],[-191,-365],[-111,-203],[-221,-383],[-255,-577],[-192,-400],[-157,-340],[-66,-315],[-32,-493],[2,-468],[-58,-437],[-214,-284],[-233,-44],[-132,-1],[-211,247],[-124,144],[-361,491],[-233,277],[-182,-8],[-182,-146],[-194,-355],[-10,-19]],[[826645,310630],[-234,-546],[-9,-200],[0,-16],[-29,-682],[-44,-134],[-141,-424],[-403,277],[-291,699],[-354,1185],[-247,758],[-113,646],[-307,1016],[-106,1123],[-159,1011],[-118,666],[-24,574],[-15,355],[-146,595],[-209,760],[-87,624],[-108,642],[-8,652],[-197,45],[-192,1118],[-115,555],[-172,755],[-217,690],[-387,1027],[-380,802],[-279,-123],[-110,914],[-272,143],[-176,755],[-316,256],[-315,255],[-365,670],[-351,536],[153,742],[-263,948],[-306,351],[-233,297],[-356,629],[-352,-22],[-307,143],[-200,176],[-184,913],[25,885],[34,2275],[29,1049],[-281,1067],[-126,828],[-224,669],[-36,806],[-13,275],[494,1012],[332,1121],[192,1004],[168,986],[243,744],[-16,121],[-113,870],[-116,950],[-17,138],[-149,526],[-175,290],[-154,936],[-160,1047],[-190,752],[-226,564],[-303,515],[-375,398],[-391,19],[-389,-108],[-181,690],[182,666],[328,581],[60,848],[83,1225],[24,600],[-56,713],[-250,415],[-47,77],[-32,53]],[[815775,358393],[-141,278],[-27,52],[-140,250],[-268,153],[-144,-31],[-299,-64],[-145,-99],[-175,-119],[-119,-81],[-150,-102],[-204,-139],[-162,-75],[-121,-38],[-220,7],[-1,1],[-48,26],[-70,39],[-241,154],[-120,77],[-116,135],[-147,170],[-231,300],[-98,210],[-98,211],[-132,338],[-34,387],[30,409],[44,391],[117,303],[20,52],[24,61],[86,224],[3,7],[14,16],[71,78],[95,106],[181,34],[134,37],[214,80],[5,2],[32,37],[122,139],[4,8],[104,245],[18,72],[46,190],[34,137],[20,82],[-42,226],[-9,47],[-55,300],[-125,252],[-371,170],[-5,2],[-18,-4],[-106,-24],[-189,-43],[-139,-31],[-161,-35],[-178,-23],[-163,-9],[-166,-1],[-151,95],[-160,126],[-127,178],[-135,250],[-119,325],[-83,332],[-87,475],[-30,348],[-2,27],[-34,397],[-39,448],[-1,1],[-5,49],[-30,290],[-29,118],[-53,212],[-89,163],[-81,148],[-51,40],[-126,100],[-143,-49],[-79,-28],[-49,-44],[-125,-114],[-142,-184],[-113,-211],[-166,-349],[-89,-101],[-31,-37],[-79,-89],[-197,-128],[-123,-80],[-237,97],[-264,317],[-160,168],[-149,132],[-259,151],[-155,36],[-124,46],[-162,116],[-144,106],[-126,168],[-90,133],[-17,26],[-16,52],[-166,559],[-70,321],[-29,407],[-4,52],[11,61],[84,482],[93,164],[22,40],[44,43],[120,118],[213,112],[81,44],[131,69],[118,112],[152,156],[158,172],[139,178],[133,180],[20,55],[81,218],[97,374],[39,196],[15,79],[8,39],[47,290],[4,29],[65,580],[-5,82],[-16,304],[-49,372],[-57,354],[-83,348],[-80,261],[-107,254],[-3,7],[-188,326],[-99,137],[-14,19],[-109,196],[-109,197],[-41,75],[-25,44],[-46,83],[-133,240],[-168,469],[-141,457],[-135,424],[-193,577],[-117,329],[-30,86],[-147,356],[-106,206],[-203,496],[-111,275],[-93,264],[-85,325],[-93,273],[-48,140],[-1,4],[-110,169],[-120,139],[-180,140],[-44,14],[-217,69],[-172,-35],[-205,-41],[-126,-69],[-181,-99],[-199,-137],[-11,-10],[-505,-402],[-69,-50],[-53,-39],[-50,-36],[-22,-16],[-50,-36],[-120,-87],[-129,-54],[-293,-122],[-161,46],[-165,47],[-267,95],[-120,124],[-123,128],[-167,242],[-137,199],[-133,381],[0,419],[79,380],[82,314],[75,313],[8,36],[5,20],[55,229],[45,184],[60,249],[50,205],[70,282],[36,142],[71,318],[183,872],[28,134],[42,200],[-15,363],[-17,382],[-110,444],[-185,593],[-124,400],[-232,409],[-79,303],[-75,523],[-57,402],[-116,397],[-141,499],[-49,370],[-1,841],[40,440],[-23,425],[26,564],[17,512],[-32,396],[-100,224],[-186,5],[-183,-118],[-112,-117],[-220,-339],[-185,-421],[-101,-232],[-290,-423],[-321,-137],[-697,-299],[-417,-26],[-214,-13],[-149,-9],[-358,-152],[-264,-112],[-549,-69],[-459,-12],[-130,50],[-144,56],[-168,43],[-343,51],[-140,101],[-30,22],[-123,112],[-171,153],[-125,191],[-140,311],[-79,327],[-54,330],[-11,256],[-7,164],[4,388],[45,377],[-6,501],[-6,464],[-87,973],[-165,1171],[-202,689],[-134,224],[-143,-15],[-123,-132],[-333,-458],[-267,-216],[-410,-42],[-358,114],[-148,127],[-121,131],[-235,121],[-320,-60],[-163,31],[-166,153],[-129,145],[-112,147],[-195,395],[-22,69],[-144,446],[-185,514],[-189,454],[-161,548],[-64,371],[-51,569],[-35,526],[-37,367],[-73,309],[-140,204],[-213,94],[-144,-50],[-152,-111],[-220,-40],[-231,6],[-211,66],[-161,104],[-267,133],[-139,-54],[-163,-92],[-283,-315],[-143,-127],[-152,-121],[-152,-76],[-171,53],[-91,247],[9,400],[24,366],[-70,416],[-168,353],[-111,207],[-111,227],[-110,244],[-99,306],[-190,365],[-243,430],[-195,307],[-148,281],[-164,424],[-149,741],[-108,490],[-125,569],[-97,554],[-36,507],[-73,547],[-105,171],[-121,42],[-131,84],[-108,202],[-9,414],[-3,485],[-139,386],[-125,82],[-732,-46],[-179,81],[-82,37],[-138,-24],[-21,-32],[-91,-135],[-352,39],[-32,4],[-123,-75],[-67,-83],[-119,-145],[-223,-288],[-43,-55],[-42,-50],[-203,-199],[-1,-2],[-133,86],[-6,13],[-94,238],[-37,108],[-643,1874],[-69,282],[-24,235],[58,109],[89,133],[4,4],[34,35],[79,141],[13,23],[96,258],[6,33],[217,1153],[27,72],[125,184],[125,222],[78,321],[82,517],[132,366],[91,-229],[113,-214],[129,14],[110,313],[115,453],[83,345],[-156,384],[9,352],[82,344],[140,587],[-27,346],[-48,319],[-180,718],[-56,332],[-120,138],[-142,-117],[-142,-118],[-126,47],[-11,345],[52,351],[-45,376],[-131,191],[-129,83],[-219,-63],[-201,-149],[-110,196],[-106,383],[-143,-102],[-181,-258],[-199,22],[-123,33],[-154,242],[-44,493],[-148,124],[-90,-257],[-135,-135],[-73,354],[21,437],[-117,110],[-265,54],[-130,235],[-19,145],[-29,230],[35,646],[-56,324],[-204,462],[-87,406],[-36,622],[5,395],[11,434],[9,346],[41,457],[85,289],[107,219],[227,259],[124,-34],[117,-162],[192,-125],[222,67],[185,98],[369,431],[-72,336],[-24,352],[4,479],[-1,599],[-69,291],[89,455],[-132,115],[-137,47],[-233,232],[-3,379],[-109,270],[-130,152],[-156,-105],[-132,-341],[-141,29],[-164,92],[-31,-376],[-69,-330],[-129,-53],[-131,249],[-119,62],[-106,-184],[-31,-372],[-66,-332],[-186,-489],[-108,-381],[-104,-293],[-128,-119],[-34,335],[-211,278],[141,146],[-104,166],[-119,227],[-131,-275],[-153,-60],[-117,148],[25,335],[114,184],[106,252],[110,345],[84,422],[75,281],[46,382],[-37,496],[-133,175],[-108,146],[-80,271],[-79,603],[103,169],[-90,408],[-106,352],[-142,188],[67,368],[-113,108],[-108,184],[-12,20],[-62,77],[-99,124],[-130,133],[-115,260],[64,401],[146,289],[48,158],[93,303],[112,458],[100,380],[-35,383],[59,368],[-92,222],[131,326],[-40,455],[-46,323],[-96,291],[-103,220],[-131,9],[-222,14],[-125,121],[-354,424],[13,381],[-127,94],[-79,297],[79,370],[59,342],[14,392],[-61,298],[-129,-4],[-136,65],[-89,319],[-108,246],[-218,312],[-127,236],[-180,440],[-64,379],[-93,573],[-24,446],[141,313],[20,398],[33,447],[22,343],[171,313],[182,42],[59,-305],[106,207],[-1,365],[86,238],[147,243],[17,375],[-96,414],[-124,16],[-136,-7],[-130,328],[-170,-13],[-112,-184],[-126,-51],[-203,-107],[-279,-183],[-157,-273],[-129,-100],[-29,332],[-71,323],[-169,-91],[-102,420],[-105,247],[-87,282],[-119,3],[-207,240],[-106,-287],[-119,-154],[-133,-48],[-101,-246],[-207,-628],[-118,-62],[-155,25],[-141,150],[-123,282],[-35,450],[75,729],[58,437],[109,423],[107,160],[114,103],[147,77],[122,-29],[350,-207],[201,31],[129,110],[162,234],[157,373],[126,478],[58,307],[23,598],[5,367],[-112,619],[-121,-12],[-209,39],[-147,270],[-114,-298],[38,-343],[-119,-126],[-145,110],[-232,213],[-129,156],[-217,203],[-195,31],[-142,216],[-92,351],[-48,650],[140,343],[117,191],[59,377],[54,341],[-17,450],[-111,134],[-171,70],[-61,300],[-108,198],[-120,303],[80,265],[-120,67],[-156,23],[-43,327],[-12,351],[-117,-89],[-65,-371],[-23,-341],[-106,208],[-164,-99],[47,-358],[1,-491],[62,-341],[-114,-153],[-72,469],[-137,22],[-210,-101],[0,-455],[-299,125],[48,-322],[77,-388],[-115,139],[-120,0],[-112,242],[-21,382]],[[474439,417842],[-1331,1009],[-512,389],[-829,630],[-572,433],[-129,106],[-599,457],[-2230,1700],[-339,257],[-608,461],[-15,12],[-116,89],[-400,304],[-210,159],[-990,754],[-1,0],[-106,152],[-654,487],[-312,233],[-244,182],[-394,313],[-120,98],[-736,567],[-17,13],[-117,90],[-170,131],[-391,299],[-229,176],[-387,297],[-181,139],[-153,114],[-122,97],[-29,23],[-151,118],[-180,137],[-422,319],[-47,36],[-121,92],[-164,120],[-403,310],[-281,214],[-470,358],[-465,353],[-974,741],[-461,-1071],[-221,-411],[-170,-313],[-108,-224],[-430,-978],[-221,-552],[-194,-354],[-218,-168],[-671,-1105],[-241,-400],[-96,-214],[-101,-253],[-259,-337],[73,-378],[23,-565],[133,-377],[-3,-402],[-77,-469],[-73,-509],[-102,-200],[-68,-314],[-96,-410],[-131,-368],[-107,-374],[37,-392],[-48,-317],[-90,-233],[-114,-589],[-112,-377],[-198,-437],[-111,-420],[-111,-336],[-168,-442],[-150,-341],[-140,-365],[-128,-374],[-78,-258],[-116,-162],[-51,-339],[-121,-255],[-95,-404],[-114,-297],[-107,-303],[-140,-493],[-912,-1748],[-153,-186],[-140,-137],[-245,-361],[-340,-323],[-190,-118],[-230,-162],[-135,-200],[-264,-149],[-150,-247],[-231,-795],[-110,-583],[-138,-341],[-122,-492],[-150,-478],[-247,-519],[-110,-310],[-43,-597],[-77,-494],[-81,-321],[-217,-295],[-107,-340],[-79,-420],[-50,-459],[-90,-348],[-179,-259],[-102,-437],[-65,-517],[-102,-610],[-63,-301],[-56,-401],[-174,-680],[-53,-321],[-142,-172],[-65,-332],[-53,-469],[-98,-431],[-120,-352],[-103,-307],[-209,-126],[-158,-230],[-149,-540],[-92,-290],[-183,-237],[-215,26],[-291,-17],[-233,-19],[-243,-64],[-161,-62],[-192,17],[-306,214],[-223,172],[-206,174],[-96,-250],[-132,-343],[-202,-502],[-168,-506],[-117,-142],[-116,-195],[-106,-351],[-102,-332],[-127,-473],[-60,-418],[-84,-379],[-216,-620],[-333,-682],[-399,-585],[-341,-569],[-275,-334],[-281,-293],[-236,-494],[-185,-416],[-213,-406],[-213,-427],[-205,-510],[-239,-436],[-340,-385],[-160,-383],[-182,-589],[-173,-372],[-250,-22],[-193,-323],[-343,-780],[-361,-790],[-320,-622],[-236,-17],[-264,-128],[-172,-174],[-148,-129],[-142,-197],[-122,-187],[-243,-417],[-93,-269],[-128,-205],[-164,-322],[-187,-378],[-254,-472],[-134,-357],[-293,-429]],[[433349,378327],[-738,2220],[-525,1613],[-182,553],[-281,-556],[-115,-238],[-150,-377],[-140,-405],[-161,-470],[-145,-405],[-224,-466],[-272,-525],[-327,-521],[-306,-492],[-264,-302],[-436,-404],[-178,-251],[-105,-159],[-108,-382],[-340,-408],[-362,-449],[-174,-105],[-180,-102],[-80,-409],[21,-570],[-84,-279],[-177,-282],[-192,-369],[-130,-187],[-120,-258],[-111,-250],[-292,-311],[-316,-242],[-314,-245],[-143,-402],[-101,-324],[-186,-348],[-418,-131],[-223,-142],[-251,-255],[-398,-459],[-174,29],[-252,-250],[-233,-107],[-157,-121],[-184,-503],[-98,-261],[-126,-439],[-144,-250],[-126,-384],[-184,-305],[-126,-212],[-178,-329],[-105,-313],[-243,-493],[-290,-689],[-330,-979],[-185,-173],[-505,-422],[-239,-375],[-116,-266],[-160,-297],[-188,-219],[-243,-43],[-109,-311],[-123,-295],[-126,-128],[-145,-214],[-95,-228],[-107,-223],[-68,-304],[-102,-179],[-139,-68],[-132,64],[-460,1025],[-281,287],[-305,324],[-657,775],[-115,197],[-196,398],[-101,268],[-144,273],[-113,160],[-95,223],[-26,365],[43,349],[10,494],[-54,321],[-107,282],[1,360],[-26,353],[-161,230],[-118,-30],[-134,-86],[-146,26],[-128,221],[-108,151],[-96,-209],[-80,-302],[-126,-135],[-118,-92],[-202,-205],[-129,-165],[-121,97],[-144,265],[-112,181],[-290,-7],[-969,110],[-77,11],[-44,6],[-328,65],[-250,55],[-417,134],[-41,14],[-178,379],[-171,364],[-777,1658],[-173,380],[-407,861],[-140,218]],[[409578,371595],[-1717,3189],[-426,732],[-1390,2384],[-1035,2386],[-2207,5091],[-2134,8104],[263,747],[987,1280],[593,1679],[473,998],[544,2045],[488,766],[114,761],[353,1073],[687,504],[702,2273],[39,781],[-674,890],[-405,771],[-22,779],[-188,565],[111,846],[332,1855],[-32,396],[-58,620],[-16,177],[56,302],[119,821],[84,349],[17,428],[61,342],[648,-143],[217,425],[-133,781],[71,941],[-120,277],[109,978],[345,954],[115,-262],[268,-225],[335,298],[68,1499],[298,133],[332,348],[420,606],[59,359],[204,629],[203,74],[122,45],[284,-658],[248,333],[165,72],[474,-552],[183,598],[-63,310],[52,832],[-106,207],[-292,399],[-120,-71],[-109,-319],[-127,-157],[-166,231],[-125,736],[160,451],[-27,432],[-103,115],[-185,204],[-135,812],[-245,543],[-53,489],[32,394],[253,1445],[215,527],[115,694],[717,2519],[157,-110],[709,1057],[531,1153],[76,1009],[355,1818],[632,1658],[462,1287],[109,687],[305,-8],[185,419],[395,699],[412,79],[273,594],[-109,354],[-147,996],[-229,951],[60,711],[110,1147],[134,220],[504,-45],[65,857],[258,451],[234,687],[1,1214],[138,682],[227,1017],[406,479],[-4,473],[212,1053],[134,217],[53,515],[555,1130],[438,1161],[407,459],[121,830],[205,139],[242,-640],[280,30],[154,-547],[159,450],[280,738],[335,443],[100,307],[314,415],[147,858],[324,831],[476,1123],[319,-261],[329,84],[118,442],[-16,783],[-148,260],[10,768],[124,88],[187,885],[290,208],[267,1119],[214,252],[258,351],[79,823],[139,352],[221,188],[77,669],[192,266],[259,-220],[367,9],[150,894],[350,857],[25,493],[89,666],[252,309],[234,593],[73,713],[124,123],[85,380],[445,828],[146,498],[293,430],[259,874],[37,365],[543,691],[56,412],[307,593],[401,275],[81,382],[235,422],[158,109],[421,567]],[[436606,433738],[-132,-329],[-153,-341],[-115,-118],[-158,-140],[-180,-361],[31,-368],[131,-341],[136,-245],[246,-383],[26,-34],[148,-192],[1,-1],[0,-3],[132,-456],[6,-18],[-7,-69],[-35,-346],[-43,-344],[-22,-180],[-130,-331],[-15,-38],[-120,-254],[-115,-214],[-15,-24],[-138,-237],[-31,-52],[-143,-256],[-134,-236],[-15,-25],[0,-1],[-1,-3],[-130,-496],[-2,-7],[0,-4],[3,-361],[1,-2],[24,-144],[39,-226],[57,-335],[7,-42],[46,-144],[5,-16],[66,-208],[98,-433],[101,-344],[98,-346],[11,-51],[58,-291],[-138,-321],[-163,-308],[70,-1255],[-50,-316],[-21,-135],[-50,-326],[-83,-486],[0,-410],[-53,-312],[-167,-638],[-177,-326],[-92,-855],[-129,-31],[-220,-52],[-124,-168],[-83,-456],[-4,-20],[-42,-327],[-1,-9],[6,-50],[31,-263],[4,-31],[6,-23],[43,-165],[26,-102],[120,-201],[106,-175],[228,-603],[113,-370],[212,-710],[3,-6],[182,-345],[46,-27],[75,-44],[154,-54],[2,-1],[6,-45],[47,-370],[15,-11],[101,-71],[4,-11],[198,-496],[222,-641],[504,464],[214,178],[262,243],[122,113],[295,507],[211,410],[227,171],[276,208],[977,734],[-131,583],[-90,6],[-89,5],[-432,375],[-39,170],[-49,210],[-132,597],[-92,446],[-84,175],[-82,169],[-149,94],[68,486],[25,183],[296,2185],[-97,859],[-5,45],[-51,356],[-59,192],[-34,109],[-161,497],[-83,254],[-130,193],[236,597],[122,445],[200,-164],[112,186],[92,577],[-22,489],[-54,404],[410,419],[511,951],[50,2706],[-170,1022],[-451,-113],[-1467,-267],[-20,845],[-12,354],[-12,384],[-42,1397],[-93,507],[-6,9],[-185,314],[-116,-197],[-61,-304],[-87,-260],[-130,-159],[-182,-169],[-13,-11],[-20,-29],[-138,-194]],[[815775,358393],[20,-395],[18,-351],[13,-245],[-89,-784],[-31,-283],[-275,-831],[-120,-392],[-66,-213],[-126,-610],[-3,-15],[-60,-960],[86,-1093],[204,-206],[185,-460],[213,-449],[30,10],[351,119],[244,85],[119,85],[108,77],[129,-147],[160,-182],[166,-987],[71,-748],[63,-669],[-54,-754],[263,-681],[41,-718],[10,-170],[42,-142],[120,-409],[86,-775],[33,-296],[-73,-703],[-309,-398],[-216,-307],[-156,-273],[-84,-149],[-267,-691],[-210,-561],[-185,-503],[-11,-30],[-266,-729],[140,-1264],[16,-801],[125,-904],[-352,-473],[-403,227],[-222,730],[-267,831],[-263,1079],[-8,24],[-157,482],[-229,1461],[-130,757],[-304,1184],[-221,686],[-246,536],[-254,619],[-192,420],[-352,214],[-277,-55],[-370,-298],[-277,-713],[-258,-421],[-90,-768],[-30,-1142],[-354,-29],[0,-8],[-61,-1263],[-269,-676],[-259,-261],[-57,-181],[-95,-305],[-305,-134],[-76,-618],[-339,-465],[-30,-172],[-60,-350],[-224,-253],[-18,-123],[-53,-361],[-162,-414],[-450,-531],[-339,-536],[-333,157],[-339,457],[-174,573],[-313,169],[-372,385],[-374,440],[1,462],[1,476],[145,798],[218,602],[407,797],[309,-86],[166,978],[152,491],[67,215],[271,350],[15,19],[-1,64],[-14,1047],[127,1040],[206,835],[179,1004],[138,1127],[145,1086],[126,1103],[98,1189],[10,759],[-65,786],[-106,654],[-129,818],[-334,392],[-266,266],[-218,512],[-382,-121],[-445,141],[-284,-123],[-245,-214],[-235,-160],[-304,-336],[-288,-401],[-245,-448],[-285,-102],[73,-890],[-16,-895],[40,-873],[37,-455],[68,-854],[9,-51],[28,-149],[122,-643],[137,-836],[38,-67],[189,-333],[155,-462],[50,-146],[40,-416],[43,-438],[-213,-474],[-150,-334],[-458,-423],[-371,-333],[-115,-145],[-140,-178],[-125,-174],[-80,-111],[-283,-461],[-224,-341],[-279,-175],[-346,174],[-306,451],[-233,571],[14,164],[80,940],[185,868],[131,676],[182,672],[-118,912],[-12,519],[-3,120],[38,-32],[194,-159],[10,-8],[-5,20],[-153,671],[-289,722],[-415,538],[-185,289],[-280,585],[-293,-471],[-353,171],[-360,15],[-222,-44],[-249,-142],[-428,-385],[-564,-679],[-313,-362],[-253,-296],[-251,-284],[-229,-344],[-302,-651],[-257,-489],[-125,-473],[-14,-55],[-82,-419],[-12,-61],[-5,-247],[-12,-678],[-18,-984],[-28,-774],[-16,-458],[-37,-555],[-6,-369],[-14,-833],[-43,-631],[5,-201],[16,-547],[16,-671],[-317,15],[-249,211],[-95,125],[-314,413],[-304,279],[-314,246],[-332,177],[-401,188],[-312,98],[-283,11],[-300,145],[-74,413],[-49,272],[120,462],[41,160],[240,212],[69,63],[225,208],[106,10],[129,12],[295,158],[22,-17],[198,-154],[364,663],[322,315],[163,490],[129,390],[236,830],[94,331],[-24,295],[-56,708],[-22,122],[-82,452],[79,609],[-133,614],[-46,822],[-108,1026],[-55,690],[-101,666],[-267,404],[-168,675],[-170,974],[-234,972]],[[795844,356266],[-203,706],[-166,286],[-220,138],[-229,36],[-260,-22],[-449,-153],[-132,-103],[-197,-154],[-239,-200],[-119,-66],[-148,-18],[-182,-122],[-140,-183],[-176,-205],[-187,-198],[-137,-114],[-171,-126],[-143,-330],[-100,-426],[39,-434],[255,-442],[189,-144],[201,-176],[229,-196],[170,-85],[129,-128],[137,-203],[102,-269],[113,-630],[17,-428],[-25,-421],[-39,-596],[-83,-319],[-135,-232],[-121,-123],[-221,-116],[-125,-50],[-159,-57],[-142,32],[-126,33],[-218,15],[-139,-129],[-155,-345],[-166,-304],[-169,-145],[-147,-53],[-138,-21],[-123,69],[-176,86],[-144,98],[-149,147],[-155,100],[-605,259],[-126,95],[-216,216],[-215,246],[-153,226],[-201,376],[-120,257],[-161,444],[-165,401],[-235,597],[-119,462],[-7,468],[41,328],[196,553],[302,712],[22,52],[187,538],[65,263],[18,70],[-11,358],[-101,167],[-4,8],[-161,28],[-134,-26],[-135,-27],[-184,-36],[-161,26],[-186,130],[-406,592],[-204,-16],[-204,-178],[-149,31],[-94,123],[-55,73],[-271,395],[-232,696],[-101,357],[-63,212],[-38,128],[-360,1021],[-213,452],[-112,178],[-204,320],[-204,320],[-269,339],[-146,68],[-159,86],[-388,426],[-180,206],[-121,153],[-139,219],[-203,319],[-161,202],[-148,-87],[-65,-233],[-24,-86],[-46,-526],[-10,-595],[-37,-339],[-126,-363],[-149,-176],[-56,-24],[-134,-58],[-201,-86],[-219,-74],[-123,44],[-163,83],[-157,188],[-105,127],[-216,287],[-89,240],[-112,370],[-209,474],[-132,268],[-109,171],[-113,303],[-77,298],[-8,80],[-37,364],[-74,845],[27,447],[37,368],[128,1032],[50,406],[59,473],[18,453],[-60,321],[-132,9],[-92,-162],[-28,-50],[-180,-313],[-192,-91],[-170,26],[-142,159],[-102,177],[-206,513],[-103,328],[-102,329],[-106,292],[-286,552],[-111,132],[-125,113],[-296,36],[-148,-41],[-201,-197],[-137,-20],[-387,22],[-223,163],[-117,135],[-146,253],[-123,184],[-131,291]],[[716792,398783],[-889,-7052],[-184,452],[-203,262],[-206,-127],[-1,-828],[0,-450],[17,-1360],[-90,-447],[183,-239],[111,-210],[-65,-516],[-316,-2502],[-3,-104],[-10,-306],[-149,-1075],[-91,-249],[-147,-414],[-28,-130],[-48,-224],[-63,-314],[-59,-313],[-40,-323],[-3,-375],[-63,-339],[20,-378],[-80,-304],[30,-356],[3,-343],[30,-340],[41,-345],[61,-309],[-59,-302],[-55,-318],[-117,-163],[3,345],[-105,-157],[46,-319],[-79,-266],[-98,-205],[10,-342],[-52,-323],[-64,-305],[-3,-14],[-30,-342],[-53,-319],[63,-309],[-61,-357],[-20,-412],[96,-234],[76,-290],[77,-327],[25,-341],[66,-295],[26,-360],[-11,-374],[53,-317],[67,-373],[9,-428],[11,-360],[1,-452],[-15,-393],[11,-360],[-65,-295],[-62,-338],[-29,-360],[8,-352],[-8,-348],[-20,-346],[33,-331],[129,-267],[131,-219],[122,-227],[132,-164],[121,-157],[128,42],[140,11],[138,-64],[81,-429],[74,-347],[-1,-350],[42,-342],[86,-259],[-38,-335],[-72,-317],[9,-345],[32,-336],[59,-393],[66,-329],[160,-145],[122,16],[117,-77],[130,-168],[116,92],[121,37],[85,-278],[111,-128],[118,-79],[120,-68],[123,-88],[114,-97],[105,-163],[108,-175],[30,-283],[5,-49],[4,-360],[-99,-198],[-96,-215],[-78,-336],[67,-311],[55,-305],[56,-369],[108,-187],[103,-192],[93,-252],[119,16],[153,1],[123,-18],[122,-70],[122,-113],[108,-282],[-48,-323],[-19,-368],[-26,-351],[-5,-347],[25,-354],[37,-459],[20,-355],[110,-244],[44,-348],[44,-347],[-62,-308],[-128,-83],[-149,20],[-118,-95],[-160,-31],[-116,-115],[-113,-147],[-120,-105],[-124,8],[-125,26],[-119,285],[-164,55],[-119,-16],[-106,-186],[-105,-170],[-119,-266],[-60,-300],[-100,-186],[-79,-267],[-71,-350],[-46,-399],[-20,-339],[-26,-337],[-2,-25],[102,-230],[130,-261],[-49,-383],[-126,6],[-137,-1],[-117,203],[-129,37],[-118,-115],[-134,94],[-120,52],[-114,-111],[-131,-68],[-126,13],[-136,1],[-120,19],[-131,-26],[-116,-76],[-128,-90],[-129,-84],[-124,-42],[-96,-206],[-95,-210],[41,-539]],[[713977,349328],[-99,292],[-7,21],[-88,253],[-105,195],[-106,190],[-215,336],[-229,318],[-221,300],[-181,197],[-247,299],[-283,411],[-136,212],[-206,301],[-281,404],[-232,307],[-296,385],[-121,148],[-7,8],[-228,278],[-225,304],[-157,326],[-110,201],[-146,317],[-133,256],[-179,309],[-222,316],[-246,324],[-251,310],[-150,197],[-379,448],[-131,179],[-162,240],[-169,285],[-195,203],[-155,16],[-181,-22],[-184,-94],[-279,-196],[-128,-77],[-278,-99],[-183,-63],[-309,-66],[-142,15],[-158,13],[-143,45],[-161,68],[-133,80],[-261,147],[-233,191],[-208,228],[-140,178],[-239,402],[-128,247],[-136,295],[-124,272],[-147,287],[-115,186],[-109,166],[-125,199],[-118,208],[-112,233],[-177,306],[-344,678],[-137,338],[-157,383],[-174,507],[-88,311],[-92,324],[-77,274],[-83,339],[-92,282],[-94,259],[-112,273],[-106,208],[-113,135],[-159,156],[-162,149],[-141,109],[-121,79],[-144,77],[-200,45],[-199,-15],[-439,-11],[-148,10],[-210,43],[-173,27],[-213,11],[-246,-37],[-195,-56],[-236,-42],[-196,38],[-138,32],[-184,17],[-189,-49],[-150,-34],[-139,-67],[-134,-92],[-312,-162],[-207,-230],[-213,-396],[-94,-237],[-177,-263],[-299,-373],[-150,-96],[-145,-30],[-235,-9],[-125,7],[-135,-88],[-132,-105],[-144,101],[-107,165],[-130,137],[-244,257],[-113,147],[-107,172],[-124,199],[-124,280],[-106,370],[-103,525],[-36,374],[7,478],[49,345],[76,464],[78,391],[76,340],[42,364],[-11,484],[-28,375],[-47,344],[-79,293],[-94,270],[-125,317],[-91,267],[-106,443],[-123,386],[-72,288],[-111,333],[-101,277],[-102,251],[-103,197],[-150,315],[-138,241],[-110,204],[-104,208],[-131,133],[-173,205],[-130,169],[-123,155],[-153,220],[-106,167],[-176,253],[-138,-28],[-157,-40],[-181,120],[-224,167],[-261,244],[-196,232],[-264,300],[-369,522],[-140,228],[-119,224],[-183,397],[-116,240],[-274,566],[-109,254],[-223,557],[-89,246],[-167,486],[-187,484],[-134,298],[-112,203],[-115,172],[-148,224],[-149,210],[-203,280],[-187,216],[-124,162],[-224,283],[-138,166],[-162,214],[-173,220],[-65,67],[-83,85],[-186,259],[-133,254],[-121,184],[-179,322],[-167,301],[-129,255],[-101,277],[-107,272],[-114,377],[-86,368],[-69,300],[-40,368],[-47,331],[-126,478],[-70,338],[-70,379],[-100,498],[-97,467],[-47,325],[-52,308],[-55,325],[-63,482],[-49,435],[-90,383],[-122,293],[-115,160],[-119,124],[-135,146],[-181,126],[-302,111],[-132,15],[-203,-38],[-231,-71],[-150,-101],[-158,-173],[-131,-182],[-163,-287],[-231,-344],[-157,-283],[-251,-385],[-112,-148],[-147,-201],[-151,-195],[-178,-225],[-169,-246],[-114,-177],[-132,-195],[-121,-204],[-169,-317],[-130,-269],[-117,-315],[-119,-406],[-81,-274],[-72,-311],[-78,-406],[-76,-411],[-82,-398],[-95,-330],[-74,-345],[-76,-406],[-79,-398],[-125,-570],[-87,-522],[-50,-375],[-33,-586],[11,-642],[55,-510],[67,-468],[74,-345],[61,-375],[88,-323],[139,-246],[195,-302],[75,-313],[79,-314],[100,-351],[80,-309],[91,-346],[202,-870],[50,-318],[59,-589],[31,-455],[16,-361],[-5,-479],[-23,-486],[-39,-353],[-52,-311],[-70,-456],[-63,-359],[-91,-355],[-116,-315],[-101,-345],[-177,-586],[-128,-242],[-133,-195],[-210,-328],[-116,-138],[-181,-227],[-144,-113],[-127,-28],[-119,43],[-141,9],[-257,-39],[-132,-30],[-128,-34],[-170,-6],[-217,23],[-125,-28],[-133,-50],[-128,-113],[-127,-26],[-190,-75],[-129,-64],[-133,41],[-122,5],[-152,26],[-138,26],[-135,66],[-128,103],[-136,82],[-109,149],[-117,162],[-210,274],[-153,208],[-160,182],[-156,211],[-136,223],[-124,197],[-213,280],[-181,304],[-249,376],[-120,186],[-45,74],[-68,112],[-252,426],[-104,199],[-108,245],[-189,601],[-202,416],[-435,1251],[-554,59],[-558,320],[-505,-57],[-352,-223],[-307,-93],[-1002,232],[-239,-72],[-293,76],[-360,205],[-351,364],[-139,145],[-834,633],[-181,216],[-438,524],[-195,259],[-250,456],[-395,1492],[-123,73],[-134,467]],[[664378,381710],[-171,614],[-84,698],[-83,300],[-848,2036],[-560,853],[-10,15],[-500,389],[-586,-98],[-479,-145],[-576,147],[-212,336],[-91,144],[-207,837],[-41,1090],[55,541],[53,565],[9,98],[123,500],[120,293],[334,647],[190,424],[320,786],[348,543],[153,238],[504,1106],[170,788],[72,1280],[-255,2105],[-782,2273],[-773,1775],[-299,414],[-352,175],[-379,112],[-361,454],[-459,1270],[-272,896],[-110,365],[-625,1414],[-611,1164],[-345,604],[-333,485],[-67,98],[-725,759],[-355,452],[-174,221],[-224,143],[-80,27],[-258,88],[-135,424],[-353,431]],[[868529,369361],[186,-937],[340,-144],[-216,-922],[-210,-289],[-291,-464],[-135,834],[174,942],[152,980]],[[868529,369361],[-392,-100],[-330,-404],[-434,-206],[163,-631],[-128,-658],[-86,-579],[-82,-833],[-522,743],[-245,585],[-263,835],[-289,848],[-240,738],[-397,925],[-426,770],[-372,496],[-496,517],[-205,66],[-448,-208],[-505,-62],[-376,-589],[-292,194],[-273,738],[-416,1237],[-213,496],[-41,97],[-316,796],[-328,428],[-255,146],[-458,-120],[-201,24],[-447,566],[-392,1232],[-232,742],[-192,1081],[248,-258],[453,94],[-189,811],[353,156],[370,-375],[498,323],[67,-752],[455,312],[266,-147],[274,280],[228,557],[111,632],[-423,261],[-118,-965],[-326,164],[-234,161],[-326,450],[-298,479],[-297,235],[16,-809],[-313,212],[-226,-279],[-243,275],[-175,735],[191,904],[55,880],[-40,954],[-254,552],[-158,769],[-43,634],[-182,-576],[63,-601],[71,-773],[119,-1041],[-143,-1094],[-103,-633],[-185,576],[-272,233],[-248,628],[-381,-599],[509,-758],[260,-1002],[-244,-277],[-246,-480],[-205,-888],[-289,-271],[-372,-111],[-434,852],[-218,850],[-144,799],[182,632],[-368,898],[-431,163],[-540,736],[-388,783],[199,888],[125,713],[278,261],[268,323],[763,1276],[443,304],[121,475],[-198,839],[-39,923],[442,89],[373,-360],[357,-284],[277,450],[-365,392],[43,746],[-517,-41],[-196,524],[-167,757],[-222,-957],[-300,-91],[-252,-751],[-176,1005],[-86,837],[280,694],[266,710],[473,633],[-116,1045],[-279,-523],[-313,-631],[-340,124],[-324,-558],[-234,90],[-98,605],[315,811],[300,10],[204,512],[84,832],[166,752],[176,1178],[2,785],[270,-711],[218,-70],[341,382],[-252,638],[381,231],[224,512],[220,543],[463,95],[398,11],[174,520],[438,100],[232,822],[59,665],[243,347],[248,535],[324,-42],[-13,792],[-35,841],[-141,82],[-153,89],[-69,-800],[-250,-268],[-375,-702],[-120,-786],[-295,-745],[-503,602],[-72,-837],[-371,-72],[-445,-424],[-210,-158],[-47,-556],[-230,408],[-268,204],[-384,-313],[-316,92],[99,-1174],[-480,-795],[-264,78],[-194,611],[-32,-751],[260,-683],[-61,-901],[-272,-334],[-274,-324],[-614,67],[-293,-36],[106,720],[108,634],[58,842],[-339,949],[-388,167],[-273,-521],[-349,-95],[-187,829],[-312,92],[-55,1110],[-221,-466],[-264,-35],[-144,1053],[-264,615],[-405,-28],[-161,688],[-389,455],[-15,1363],[-229,94],[-11,598],[-15,822],[-192,485],[-48,943],[-232,161],[91,576],[108,963],[219,248],[199,-51],[336,290],[-216,671],[-262,80],[-287,51],[-289,33],[64,888],[-340,-200],[-250,509],[-227,617],[-166,-326],[-37,-74],[311,-888],[382,-862],[165,-793],[-250,-680],[-48,-1014],[196,-555],[-72,-779],[257,-1158],[216,-1034],[-254,-12],[-187,-297],[199,-613],[191,-483],[104,-1017],[202,-452],[238,-2],[206,-163],[279,-402],[179,-338],[378,-168],[-207,-1135],[585,-170],[327,-328],[241,-606],[206,-1056],[373,-919],[126,-864],[210,-682],[377,-818],[224,-839],[-284,-1064],[-108,-654],[-204,505],[-126,730],[-357,-109],[-302,480],[-383,-842],[336,-298],[257,-340],[-10,-771],[-249,-828],[-259,-902],[383,-50],[209,654],[236,-330],[232,-618],[201,-318],[226,-527],[334,-464],[-658,-893],[-292,97],[-253,150],[-80,-1072],[297,-157],[-69,-721],[-152,-516],[-175,-797],[-272,-891],[-299,-687],[-220,-518],[-457,-551],[-291,-614],[-355,-509],[-386,-110],[-341,184],[-428,-66],[204,-843],[409,-491],[300,455],[344,-202],[243,585],[418,-131],[459,-279],[-167,-1110],[-177,-947],[-365,-757],[-1,934],[-283,-754],[-226,-545],[-269,-204],[-228,-79],[-210,431],[-85,713],[-269,230],[-297,528],[-296,538],[-259,1576],[-276,-138],[-384,690],[-118,480],[-643,1140],[-77,1722],[-328,1444],[108,931],[-8,421],[6,898],[56,917],[-2,1335],[42,1587],[-68,1858],[-108,1314],[-88,1148],[-236,808],[-160,1049],[-76,726],[346,463],[-26,383],[-442,291],[5,980],[-72,1382],[-90,629],[-99,-235],[0,-2048],[-54,-421],[-248,-111],[-462,710],[-181,715],[-362,545],[-277,951],[-138,1386],[-104,999],[-240,1014],[-212,658],[-350,661],[-249,259],[-60,856],[-143,947],[-39,1049],[-6,629],[-65,854],[-113,815],[-117,710],[-176,1118],[-261,1283],[-349,1429],[-280,1048],[-192,920],[27,608],[312,407],[402,-307],[50,814],[277,-39],[-70,701],[-295,165],[-188,416],[-79,-635],[-250,-272],[-119,553],[-117,-987],[-383,-501],[-300,379],[-232,78],[-353,-31],[-473,-73],[-301,144],[-692,1224],[-506,888],[-348,562],[-244,477],[-124,868],[353,-45],[547,-620],[390,86],[265,-343],[232,931],[-372,498],[-402,-42],[-349,77],[-264,419],[-259,74],[-286,-6],[-310,170],[-367,179],[-478,-200],[-291,-328],[-353,933],[230,181],[258,683],[250,529],[217,391],[-27,1380],[-23,1623],[277,-82],[275,-375],[367,236],[209,41],[159,909],[64,365]],[[868561,396735],[-265,-1069],[224,-587],[91,-1241],[410,-877],[-137,-668],[-55,-689],[395,359],[376,-6],[235,-753],[376,-62],[184,-1046],[398,-440],[422,-843],[326,-366],[128,-560],[7,-579],[-110,-926],[-240,42],[-142,709],[-346,-497],[-455,-327],[-226,745],[-397,-256],[-77,767],[-354,453],[-131,-544],[125,-701],[-215,-504],[-153,612],[-267,410],[-81,897],[-249,-624],[-274,755],[-257,313],[-333,-290],[213,-645],[-160,-608],[319,-483],[236,-537],[296,-166],[94,-808],[344,-61],[354,-122],[269,30],[-114,-746],[-331,-881],[274,-638],[153,734],[152,645],[223,224],[342,-175],[157,-1079],[-113,-983],[-297,-525],[-309,-489],[-251,78],[-260,-461],[-324,46],[31,-908],[334,-150],[202,-432],[170,-532],[258,1104],[125,662],[245,-758],[267,-798],[268,-934],[-98,-965],[69,-1065],[54,-1056],[96,-906],[-109,-627],[-298,-70],[-181,-82],[-231,305],[-212,771],[-333,-663],[-310,-769],[-281,124],[-277,630],[34,543],[-471,14],[-590,126],[-346,17],[239,-942],[375,60],[396,-230],[393,-1231],[507,-34],[432,-3],[144,497],[290,-106],[285,-82],[261,-151],[190,331],[594,-736],[230,-200],[492,-464],[350,213],[33,1090],[139,619],[370,-95],[379,595],[-163,1283],[-293,538],[-1,1138],[182,162],[231,-157],[230,8],[307,86],[89,-486],[173,-382],[318,302],[3,-889],[475,7],[414,-460],[254,-297],[257,-714],[211,-579],[377,-1613],[200,-910],[249,-1232],[179,-1000],[-6,-1142],[-309,-396],[-531,476],[-423,426],[-233,-75],[-212,-154],[-251,842],[-364,383],[-333,230],[-241,581],[218,325],[341,-304],[318,457],[167,551],[398,822],[-398,164],[-247,-389],[-285,-256],[-240,291],[-295,120],[185,549],[415,463],[-152,808],[-413,-69],[-146,-905],[-276,-101],[-319,-367],[173,-581],[57,-586],[-243,-375],[-355,-613],[-254,274],[-356,-476],[-267,-175],[-435,-200],[-272,842],[-308,371],[-239,302],[-306,36],[-518,-111],[-326,-59],[-304,39],[-315,-323],[-308,-26],[-231,-517]],[[569870,342308],[-329,-195],[39,-420],[-421,-907],[-95,-240],[-131,-307],[-154,-513],[-83,-274],[-106,-239],[-119,-256],[-178,-86],[-154,0],[-142,34],[-178,103],[-183,201],[-142,215],[-138,131],[-154,34],[-240,-108],[-223,-200],[-213,-307],[-119,-308],[-35,-410],[59,-376],[119,-274],[118,-376],[131,-444],[57,-442],[193,-1167],[78,-302],[-121,-1005],[-123,-520],[-494,-1199],[-107,-294],[-42,-116],[-149,-352],[-136,-293],[-108,-273],[-204,-489],[-236,-353],[-337,-502],[-199,-297],[-176,-352],[-206,-260],[-491,-553],[-41,-45],[-333,-607],[-109,-164],[-166,-144],[-99,-87],[-122,24],[-235,47],[-288,157],[-81,44],[-304,243],[-47,58],[-176,218],[-119,239],[-291,407],[-480,653],[-178,171],[-143,68],[-165,18],[-143,-52],[-142,-171],[-59,-307],[18,-397],[213,-424],[201,-317],[268,-241],[247,-387],[174,-712],[151,-956],[84,-736],[-33,-624],[-21,-395],[-32,-317],[-66,-477],[-15,-107],[-111,-435],[-58,-229],[-3,-10],[-13,-47],[-15,-44],[-14,-39],[-51,-129],[-1,-2],[0,-1],[-54,-137],[-16,-38],[-17,-35],[-18,-32],[-2,-3],[-164,-268],[-16,-24],[-4,-6],[-74,-102],[-15,-19],[-20,-21],[-5,-5],[-571,-529],[-650,-602],[-1262,-1206],[-65,-69],[-106,-152],[-102,-175],[-3,-5],[-13,-20],[-480,-717],[-261,-593],[-701,-1592],[-43,-98],[-420,-952],[-150,-342],[-20,-45],[-79,-178],[-95,-219],[-179,-412],[-177,-407],[-5,-11],[-5,-11],[-282,-596],[-148,-313],[-446,-945],[-148,-314],[-12,-23],[-17,-31],[-213,-354],[-30,-49],[-443,-649],[-4,-5],[-4,-5],[-326,-449],[-3,-3],[-126,-170],[-13,-21],[-32,-82],[-43,-116],[-55,-233],[-21,-89],[-34,-175],[-39,-240],[-2,-16],[-1,-2],[-48,-279],[-1,-6],[-66,-377],[-1,-7],[-60,-338],[-52,-291],[-29,-456],[-32,-518],[-78,-557],[-120,-495],[-26,-108],[-73,-132],[-58,-143],[-61,-75],[-94,-114]],[[552167,303960],[-119,-121],[-10,-10],[-5,-2],[-183,-98],[-119,-20],[-75,-52],[-50,-36],[-179,-49],[-64,14],[-39,-9],[-96,39],[-164,67],[-266,286],[-149,162],[-701,396],[-658,79],[-73,-128],[-21,-189],[36,-436],[31,-362],[33,-127],[205,-793],[16,-62],[1,-55],[21,-690],[0,-608],[-47,-506],[-8,-78],[-73,-412],[-27,-77],[-132,-374],[-196,-307],[-219,-200],[-346,50],[-26,4],[-302,197],[-127,146],[-27,30],[-455,525],[-268,483],[-282,556],[-273,258],[-69,43],[-29,18],[-15,10],[-143,89],[-135,-56],[-234,-163],[-186,-494],[-36,-482],[-15,-206],[-40,-550],[-5,-59],[-3,-59],[-2,-60],[-1,-60],[1,-61],[0,-12],[7,-264],[2,-47],[3,-60],[5,-59],[5,-45],[34,-306],[1,-13],[8,-56],[8,-55],[10,-54],[6,-29],[75,-343],[5,-22],[12,-49],[14,-46],[14,-44],[14,-38],[177,-454],[2,-4],[16,-39],[17,-35],[4,-7],[279,-520],[125,-542],[13,-107],[-23,-1675],[239,-1660],[7,-719],[-16,-456],[-1,-33],[-1,-60],[1,-61],[2,-60],[4,-59],[3,-46],[53,-603],[-11,-84],[-27,-114],[-17,-23],[-18,-29],[-18,-32],[-17,-35],[-8,-19],[-5,-10],[-35,-74],[-136,-256],[-155,-253],[-61,64],[-62,29],[-119,134],[-255,395],[-417,358],[-538,403],[-71,117],[-157,262],[-191,-482],[-84,257],[-164,405],[-121,244]],[[544256,291936],[-411,723],[-1009,1778],[-454,762],[-190,321],[-356,599],[-34,67],[-4,7],[-17,32],[-14,21],[-19,29],[-5,7],[-19,25],[-20,21],[-13,12],[-122,103],[-7,6],[-20,14],[-21,10],[-21,6],[-21,2],[-21,-2],[-21,-6],[-20,-10],[-21,-14],[-10,-9],[-199,-175],[-10,-9],[-19,-21],[-19,-25],[-19,-28],[-17,-32],[-17,-35],[-15,-35],[-83,-207],[-2,-4],[-15,-41],[-14,-44],[-13,-46],[-13,-50],[-11,-51],[-9,-53],[-9,-55],[-8,-56],[-3,-32],[-33,-318],[-3,-27],[-4,-59],[-4,-59],[-2,-60],[-1,-60],[1,-61],[2,-54],[42,-982],[-2,-7],[-192,-182],[-174,22],[-281,181],[-567,920],[-247,582],[-591,1455],[-248,714],[-25,99],[-243,957],[-258,1076],[-175,902],[-182,938],[-260,2333],[-382,1355],[-150,343],[-7,15],[-408,897],[-59,130],[-451,629],[-367,702],[-345,400],[-483,784],[-3,4],[-354,584],[-649,1168],[-246,384],[-88,194],[-153,450],[-90,266],[-47,281],[-49,288],[-316,840],[-270,684],[-135,755],[-225,481],[25,353],[69,314]],[[532261,316052],[64,566],[49,443],[-44,491],[-43,362],[-57,345],[16,687],[-9,47],[-22,115],[-1,6],[-8,38],[-18,77],[-3,13],[-12,49],[-13,46],[-11,35],[-48,142],[-3,10],[-16,41],[-16,38],[-17,35],[-12,22],[-81,143],[-6,9],[-18,29],[-5,6],[-55,75],[-15,19],[-19,22],[-20,17],[-15,10],[-43,28],[-6,3],[-3,2],[-63,34],[-17,8],[-21,6],[-28,2],[-190,-12],[-3,0],[-37,-4],[-541,168],[-589,185],[-653,205],[-13,7],[-10,15],[-8,13],[-2,4],[-15,36],[-242,935],[-89,265],[-74,271],[-58,548],[-38,190],[-92,353],[-144,397],[-276,523],[-655,1237],[-196,528],[-35,375],[61,726],[106,505],[13,63],[22,48],[146,315],[175,252],[121,221],[90,325],[11,138],[2,22],[12,155],[-5,344],[-55,164],[-29,86],[-134,234],[-3,9],[-299,784],[-424,-11],[-575,-149],[-234,-68],[-376,28],[-16,2],[-19,2],[-16,-1],[-254,-36],[-6,-1],[-201,-39],[-20,-6],[-21,-9],[-20,-14],[-8,-6],[-611,-1088],[-343,-601],[-12,-21],[-7,-14],[-83,-170],[-10,-21],[-12,-29],[-291,-710],[-4,-10],[-15,-41],[-10,-30],[-3,-9],[-141,-264],[-316,-547],[-42,-66],[-50,-50],[-20,-10],[-34,-12],[-2,0],[-7,7],[-13,19],[-48,169],[-151,589],[-36,138],[-11,72],[-14,163],[-1,32],[-1,23],[0,1200],[67,1095],[1,33],[2,60],[1,61],[-1,60],[-2,60],[0,14],[-10,195],[-3,46],[-5,59],[-6,58],[-7,56],[-9,55],[-10,54],[-11,51],[-12,49],[-13,47],[-2,6],[-75,242],[-13,38],[-15,41],[-16,39],[-17,35],[-18,32],[-18,28],[-20,25],[-4,5],[-102,117],[-15,17],[-20,17],[-21,14],[-9,5],[-48,23],[-11,5],[-21,6],[-21,2],[-479,-429],[-516,-1029],[-145,-66],[-163,11],[-457,33],[-8,0],[-21,-2],[-21,-6],[-12,-5],[-174,-86],[-8,-5],[-20,-13],[-20,-17],[-88,-86],[-1,-1],[-20,-21],[-19,-25],[-18,-29],[-1,-2],[-252,-422],[-17,-30],[-14,-29],[-106,-230],[-108,-199],[-257,-436],[-167,-213],[-52,-66],[-113,-121],[-140,-74],[-77,-16],[-21,2],[-99,38],[-59,55],[-98,94],[-159,246],[-193,470],[-103,291],[-2,6],[-15,43],[-6,15],[-256,684],[-296,570],[-9,12],[-208,273],[-7,9],[-429,525],[-117,143],[-525,443],[-1102,393],[-448,327],[-2,2],[-193,169],[0,1],[-312,273],[-389,470],[-422,820],[-244,570],[-261,592],[-231,1051],[-363,1654],[-297,1699],[-327,1512],[-484,258],[-1,1],[-17,35],[-18,32],[-18,28],[-19,25],[-20,21],[-20,18],[-14,10],[-12,7],[-207,1017],[-80,412],[-143,776],[-146,789],[-28,413],[-43,544],[-78,586],[-19,173],[-55,509],[-1,38],[-25,527],[-74,1590],[-7,319],[23,1622],[0,10],[-1,61],[-2,60],[-3,59],[-5,59],[-6,58],[-7,56],[-9,55],[-10,54],[-11,51],[-3,14],[-117,485],[-9,34],[-13,47],[-15,44],[-15,41],[-16,39],[-2,5],[-260,564],[-309,669],[-244,918],[-261,1000],[-49,1003],[97,1596],[1,27],[2,60],[1,61],[-1,60],[-2,60],[-3,60],[-5,58],[-6,58],[-7,57],[-9,55],[-77,448],[-9,53],[-6,24],[-5,27],[-13,49],[-13,47],[-14,44],[-16,41],[-16,38],[-17,35],[-15,29],[-211,356],[-2,3],[-15,24],[-389,128],[-313,102],[-45,25],[-47,-7],[-515,-76],[-3,5],[-373,701],[-3,5],[-17,36],[-16,38],[-15,41],[-14,44],[-14,47],[-12,49],[-7,30],[-129,610],[-5,21],[-10,53],[-8,55],[-6,41],[-68,548],[-119,402],[-248,477],[-368,595],[-98,83],[-6,1],[-21,10],[-20,14],[-11,9],[-47,41],[-126,0],[-347,-45],[-198,-66],[-160,-170],[-7,-7],[-20,-17],[-21,-14],[-1,-1],[-55,-31],[-73,-75],[-30,-44],[-125,-262],[-227,-529],[-204,-609],[-4,-12],[-15,-41],[-17,-38],[-17,-36],[-17,-31],[-19,-29],[-3,-5],[-103,-141],[-15,-20],[-20,-21],[-20,-17],[-20,-14],[-5,-3],[-9,-5],[-16,-7],[-21,-6],[-13,-1],[-261,-20],[-3,1],[-5,-1],[-21,2],[-21,6],[-20,10],[-2,1],[-767,449],[-19,13],[-20,17],[-19,22],[-19,24],[-19,29],[-18,32],[-17,35],[-16,38],[-5,14],[-135,355],[-10,28],[-14,44],[-13,47],[-12,49],[-11,51],[-10,53],[-9,55],[-7,56],[-89,753],[-6,58],[-5,59],[-3,59],[-2,60],[-1,61],[1,60],[2,60],[3,60],[5,58],[5,45],[221,723],[24,503],[-51,415],[-216,1493]],[[495245,339160],[-143,-254],[-277,-675],[-104,-176],[-151,-75],[-123,-83],[-33,-600],[-4,-708],[0,-15],[18,-621],[76,-512],[-211,-922],[-264,-725],[-163,76],[-128,-19],[-250,-211],[-117,-120],[-179,-552],[-121,-342],[-69,-716],[-168,-1055],[-6,-40],[-194,-128],[-16,-8],[-312,-151],[-148,-71],[-192,-254],[-52,-102],[-194,-52],[-239,88],[-278,-283],[-92,-625],[-87,-579],[-264,-288],[-82,-102],[-56,-369],[-31,-208],[-49,-320],[33,-312],[-51,-351],[-15,-50],[-155,-429],[-155,-189],[-47,-183],[-34,-132],[-121,-351],[-81,-265],[-90,-233],[-113,-414],[-99,-213],[-120,291],[-121,332],[-99,341],[-9,181],[-12,252],[-68,437],[-219,245],[-20,52],[-337,859],[-17,43],[-131,27],[-27,-11],[-176,-295],[-176,-300],[-115,-420],[-38,-371],[-211,-377],[-48,-371],[-84,-522],[-102,-285],[-138,-276],[-174,-284],[-111,-186],[-11,-126],[-102,-815],[-14,-29],[-77,-539],[-8,-54],[-103,-195],[-148,-223],[-119,-255],[-137,-345],[-99,-381],[-104,-225],[-90,-403],[-87,-326],[-144,-643],[-108,-246],[-132,-1],[-123,-306],[37,-329],[15,-691],[22,-215],[14,-136],[-99,-478],[-90,-342],[-95,-346],[-28,-352],[15,-361],[125,-523],[24,-372],[-34,-435],[-31,-358],[114,-404],[60,-325],[-116,-588],[-57,-352],[-68,-308],[-142,-246],[-254,-161],[-138,-210],[-153,-262],[-144,-45],[-161,44],[-175,-80],[-134,-169],[-215,218],[-2,3],[-286,500],[-2,5],[-238,415],[-86,227],[-78,101],[-100,130],[6,355],[-113,234],[-123,45],[-191,-71],[-129,-29],[-215,45],[-137,321],[-193,121],[-162,6],[-142,-81],[-130,178],[-143,167],[-105,239],[-197,-74],[-171,-199],[-207,-256],[-104,-263],[-139,-95],[-133,3],[-105,2],[-58,-349],[-111,-235],[-141,22],[-104,208],[-179,238],[-102,332],[-164,207],[-149,186],[-2,3],[-218,577],[-81,548],[-134,902],[-170,2153],[-1,97],[-9,467],[-141,171],[-100,203],[-62,172],[-36,102],[-97,324],[-126,297],[-140,140],[-38,284],[-138,257],[-241,446],[-13,24],[-8,21],[-183,485],[-78,207],[-228,605],[-2,4],[-137,104],[-123,73],[-126,228],[-110,349],[-159,314],[-160,-220],[-137,-127],[-180,-251],[-101,-53],[-143,-14],[-364,-37],[-78,-8],[-62,-7],[-118,119],[-149,77],[-160,-41],[-111,-202],[-126,52],[-9,10],[-124,138],[-133,10],[-100,-252],[-21,-341],[-7,-124],[-117,-221],[-142,-237],[-196,-99],[-131,-191],[-127,-136],[-166,-240],[-113,-240],[-166,-160],[-157,-142],[-332,-913],[-39,-107],[-30,-83],[-257,-705],[-78,-215],[-339,-931],[-618,-1696],[-109,-203],[-73,-280],[-69,-387],[-128,-133],[-114,-131],[-151,52],[-120,-47],[-69,-313],[55,-391],[-58,-443],[-76,-460],[-134,-295],[-129,-232],[-30,-105],[-49,-172],[-151,-21],[-132,-148],[-92,-313],[-3,-8],[-11,-25],[-74,-214],[-320,-512],[-17,-28],[-841,-1496],[-48,-87],[-305,-543],[-59,-104],[-605,-1078],[-62,-211],[-54,-101],[-213,-397],[-262,-491],[-4,-6],[-376,-449],[-40,-24],[-68,-287],[-130,-314],[-147,-129],[-118,-107],[-55,-41],[-76,-56],[-136,44],[-89,-355],[-80,-400],[-131,-295],[-114,-426],[-115,-460],[-116,-382],[-125,-175],[-106,-165],[-126,11],[-171,44],[-189,-137],[-156,-203],[-175,-381],[-182,-417],[-99,-340],[-155,-218],[-29,-24],[-310,-421],[-166,-226],[-131,-178],[-155,-212],[-197,-268],[-449,-611],[-175,-238],[-296,-403],[-8,-12],[-149,-225],[-63,-96],[-75,-114],[-164,-273],[-144,-236],[-156,-11],[-140,49],[-228,22],[-123,-12],[-188,81],[-676,-487],[-190,-137],[-108,-78],[-113,-189],[-96,-340],[-120,-142],[-174,-27],[-143,22],[-134,-186],[-143,-148],[-68,-306],[47,-317],[103,-329],[138,-355],[116,-274],[152,-344],[104,-186],[127,-137],[165,-164],[171,-191],[-2,-427],[-45,-410],[23,-356],[49,-366],[123,-345],[116,-197],[296,-896],[91,-345],[69,-241],[30,-104],[108,-207],[183,-275],[147,-136],[151,-202],[29,-38],[-17,-372],[55,-394],[169,-38],[201,202],[163,71],[158,77],[163,76],[254,-11],[218,-22],[192,-54],[159,-38],[156,-203],[97,-350],[102,-689],[5,-115],[-26,-555],[-34,-183],[-2,-345],[-89,-388],[-97,-219],[-58,-317],[-68,-263],[-141,-136],[-245,-235],[-99,-95],[-45,-406],[-201,-1802],[-58,-524],[-19,-169],[-94,-1319],[-102,-1441],[-44,-135],[-38,-394],[-87,-438],[0,-14],[-145,-551],[-37,-53],[-130,-353],[-197,-391],[-119,-219],[-116,-229],[-137,38],[-132,27],[-224,-241],[-146,-175],[-196,-235],[-155,-312],[-145,-399],[-34,-201],[-151,-347],[-304,-703],[-47,-165],[-88,-246],[-93,-290],[-111,-175],[-128,-190],[-110,-165],[-34,-68],[-190,-277],[-2382,-3464],[-70,-128],[-125,-231],[-41,-6],[-121,-230],[-105,-284],[-127,-339],[-171,-88],[-178,-268],[-100,-196],[-29,-580],[-57,-509],[-19,-372],[-23,-355],[-91,-301],[-87,-421],[-99,-405]],[[453854,262685],[-387,1170],[-117,367],[-435,1424],[-258,849],[-39,120],[-216,676],[-179,559],[-153,490],[-29,95],[-102,333],[-74,230],[-59,184],[-132,164],[-74,90],[-406,499],[-340,424],[-20,25],[-245,291],[-114,137],[-338,409],[-230,279],[-146,179],[-164,200],[-181,222],[-185,227],[-171,211],[-130,169],[-316,412],[-1644,1989],[-145,177],[-604,748],[-292,362],[-129,162],[-239,300],[-191,243],[-2,3],[-153,212],[-345,404],[-252,294],[-112,132],[-217,255],[-146,236],[-21,33],[-150,183],[-20,25],[-192,227],[-237,309],[-467,588],[-180,218],[-514,660],[-207,209],[-21,22],[-236,280],[-249,286],[-120,138],[-319,383],[-133,153],[-48,55],[-437,485],[-324,359],[-240,275],[-113,131],[-87,100],[-27,30],[-1355,1508],[-217,254],[-228,268],[-888,1038],[-796,882],[-122,135],[-399,441],[-414,493],[-187,221],[-26,29],[-1665,1851],[-1257,1394],[-2103,2331],[-431,477],[-128,144],[-7,7],[-1315,1651],[-621,2261],[-605,2231]],[[427037,301402],[330,597],[389,702],[242,438],[658,2392],[62,148],[104,334],[127,262],[209,367],[184,363],[287,398],[224,388],[121,337],[165,339],[131,473],[136,540],[210,692],[56,293],[18,94],[264,1389],[274,1445],[295,1554],[156,577],[107,751],[184,968],[75,479],[85,746],[40,1076],[175,623],[193,695],[173,482],[14,414],[130,444],[110,546],[430,1536],[287,1025],[139,498],[250,349],[-23,1088],[-4,718],[79,260],[150,215],[64,523],[138,1152],[272,1602],[158,334],[8,17],[2179,5562],[225,576],[29,74],[1055,2692],[14,4],[245,385],[32,115],[693,1561],[55,125],[-503,2038],[-587,2341],[-591,2346],[-125,547],[-125,544],[-100,412],[-211,824],[-637,2494],[-325,1269],[-13,52],[-470,1912],[-291,1115],[-26,100],[-63,243],[-1148,4409],[-345,1327],[-1307,5020],[-97,540],[-297,2917],[-192,1683],[247,530],[165,314],[128,225],[169,347],[152,460],[145,448],[180,405],[176,306]],[[644516,393038],[-88,-1511],[-47,-795],[-68,-1174],[-44,-754],[-36,-616],[-104,-1768],[-139,-2386],[-34,-568],[-30,-508],[-34,-584],[-105,-1795],[-69,-1188],[-80,-1369],[-46,-781],[-68,-1159],[-2,-34],[-72,-1223],[-33,-571],[-119,-487],[-293,-1176],[-254,-1018],[-77,-311],[-141,-563],[-211,-828],[-164,-643],[-124,-485],[-384,-1505],[-408,-1599],[-155,-606],[-104,-411],[-214,-835],[-234,-916],[-222,-862],[-331,-1280],[-73,-280],[-97,-378],[-275,-1062],[-640,-2479],[-433,-1675],[-490,-1897],[-203,-771],[-84,-319],[-223,-845],[-367,-1392],[-521,-1978],[-109,-410],[-21,-79],[-160,-600],[-76,-286],[-615,-2329],[-239,-963],[-381,-1535],[-341,-1373],[-319,-1286],[-163,-668],[-249,-1005],[-153,-618],[-71,-289],[-172,-686],[-101,-383],[-92,-360],[-80,-309],[-122,-469],[-114,-438],[-85,-326],[-88,-337],[-80,-309],[-169,-648],[-162,-621],[-92,-356],[-265,-1020],[-463,-1777],[-83,-341],[-77,-307],[-231,-932],[-184,-695],[-109,-237],[-27,-105],[-46,-182],[-625,-2600],[-714,-2816],[-528,-2085],[-111,-473],[-419,-1752],[-195,-731],[-304,-1143],[-131,-544],[-177,-737],[-372,-1503],[-125,-503],[-58,-235],[-156,-603],[-85,-332],[-62,-240],[-180,-706],[-5,-19],[-259,-1036],[-101,-408],[-429,-1590],[-308,-1288],[-174,-724],[-106,-442],[-64,-298],[-71,-284],[-734,-2931],[-244,-960],[-115,-453],[-98,-385],[-160,-623],[-213,-984],[-103,-372],[-146,-496],[-100,-394],[-90,-347],[-188,-719],[-91,-349],[-174,-693],[-75,-321],[-81,-360],[-67,-288],[-153,-583],[-115,-442],[-119,-461],[-523,-2154],[-403,-1612],[-289,-1109],[-305,-1296],[-90,-384],[-164,-688],[-309,-1239],[-315,-1256],[-111,-447],[-73,-290],[-182,-729],[-115,-461],[-129,-513],[-374,-1494],[-244,-978],[-283,-1131],[-99,-394],[-209,-835]],[[617795,273111],[-297,410],[-115,198],[-171,-139],[-170,-128],[-18,-64],[-61,-225],[-7,-481],[-106,-613],[-61,-347],[-44,-481],[-1,-13],[-29,20],[-87,58],[-190,30],[-184,102],[-199,59],[-108,220],[-215,586],[-213,487],[-75,355],[-86,359],[-110,-265],[-38,-362],[-1,-9],[50,-764],[0,-31],[0,-609],[0,-267],[-95,-877],[-13,-78],[-204,-462],[-37,-78],[-27,-3],[-58,-5],[-6,3],[-62,36],[-333,319],[-65,71],[-65,125],[-78,148],[-3,39],[-299,555],[-58,62],[-604,-122],[-309,-179],[-442,-507],[-5,-29],[-87,-471],[-54,-102],[-55,24],[-23,39],[-374,791],[-142,564],[-16,51],[-218,700],[-265,752],[-119,211],[-28,29],[-346,356],[-20,34],[-34,58],[-61,103],[-31,149],[7,313],[3,14],[4,29],[24,153],[62,111],[14,24],[2,5],[10,8],[108,84],[12,10],[122,-48],[66,-104],[19,-29],[98,-250],[31,-110],[71,-86],[41,15],[35,88],[93,235],[86,216],[4,180],[-34,118],[-41,79],[-41,77],[-59,42],[-131,92],[-404,-54],[-18,0],[-44,0],[-85,61],[-147,105],[-33,23],[-517,586],[-21,23],[-29,33],[-44,102],[-10,31],[-150,478],[-67,266],[-39,47],[-213,259],[-57,36],[-55,34],[-14,-5],[-9,-3],[-99,-38],[-19,-18],[-39,-37],[-238,-224],[-146,-138],[-385,-364],[-404,1370],[-27,164],[-57,141],[-52,43],[-44,36],[-86,46],[-131,71],[-82,-31],[-81,-31],[-126,-117],[-92,-219],[-54,-23],[-177,391],[-7,71],[-6,164],[12,16],[246,312],[58,133],[51,274],[-2,230],[-1,51],[0,39],[-65,298],[-2,10],[-15,64],[-462,2012],[-10,42],[-319,40],[-75,-125],[-37,23],[-9,15],[-15,24],[-68,277],[-221,905],[-95,462],[-201,664],[-9,32],[-191,102],[-108,313],[-41,32],[-38,8],[-64,-94],[-85,-235],[-68,-258],[-4,-141],[34,-94],[4,-2],[88,-60],[25,-56],[230,-511],[140,-312],[71,-156],[105,-233],[20,-79],[2,-106],[1,-73],[-9,-68],[-66,-464],[-51,-125],[-64,-24],[-31,39],[-129,345],[-41,55],[-27,31],[-391,446],[-30,24],[-129,-86],[-92,-117],[-33,-60],[-16,-28],[-125,-225],[-204,-213],[-13,-14],[-45,8],[-22,61],[-23,65],[-9,23],[-20,196],[0,34],[0,119],[0,136],[27,524],[51,188],[65,156],[16,23],[116,165],[138,62],[36,16],[23,26],[24,28],[4,196],[-9,63],[-9,65],[-148,1085],[-119,798],[-65,219],[-64,164],[-12,19],[-110,180],[-99,161],[-38,16],[-282,56],[-112,23],[-3,0],[-194,0],[-92,-39],[-80,-76],[-19,-18],[-187,462],[-251,297],[-48,94],[4,63],[2,18],[24,147],[1,7],[144,644],[37,166],[292,1301],[54,157],[1,1],[44,108],[6,9],[211,312],[201,1157],[-15,22],[-213,315],[-140,49],[-60,21],[-8,8],[-84,79],[-52,73],[-104,146],[-72,102],[-101,179],[-48,87],[-159,498],[-95,102],[-81,282],[-124,-15]],[[602457,293040],[-80,349],[-267,-219],[-214,-349],[-122,-284],[-86,-232],[-38,-108],[-64,-94],[-259,-109],[-240,-284],[-119,-139],[-25,-30],[-102,-24],[-51,16],[-163,192],[-130,152],[-39,34],[-33,27],[-30,25],[-74,-8],[-24,-18],[-137,-107],[-15,-12],[-183,-142],[-53,-41],[-2,-18],[-15,-107],[31,-344],[-4,-243],[-46,-916],[-5,-101],[-1,-13],[-9,-96],[-38,-94],[-200,-227],[-78,-39],[-99,156],[-92,192],[-20,43],[-8,4],[-9,5],[-89,46],[-81,-117],[-361,-555],[-162,-249],[-93,-143],[-84,-199],[-39,-75],[-122,23],[-100,-208],[-87,274],[-26,366],[35,355],[60,317],[74,274],[-111,211],[-144,109],[-125,148],[-142,143],[-138,201],[-133,260],[-100,216],[33,420],[77,446],[63,465],[76,299],[44,351],[6,422],[-148,347],[-155,147],[-111,318],[-103,491],[-91,225],[52,310],[111,246],[171,74],[-35,391],[-5,353],[8,357],[156,255],[107,240],[109,343],[-83,406],[-152,165],[-111,164],[39,347],[135,197],[-49,349],[-118,136],[-162,167],[-139,135],[-148,94],[-129,44],[-257,73],[-126,2],[-120,13],[-136,-28],[-120,-52],[-125,-143],[-126,106],[-128,-6],[-191,55],[-163,328],[-86,267],[-151,241],[-81,272],[-110,208],[-63,316],[-104,176],[-129,40],[-128,-8],[-148,-97],[-118,-109],[-88,-235],[-139,40],[-120,-2],[-155,47],[-111,224],[-149,236],[-111,126],[-94,246],[-173,148],[-104,181],[-125,112],[-158,109],[-119,55],[-130,229],[-110,248],[-211,176],[-159,105],[-86,250],[-42,374],[-101,263],[-71,313],[-101,231],[-111,173],[-108,144],[-64,329],[-105,360],[-65,310],[-93,248],[-75,309],[-62,297],[-89,272],[-116,337],[-75,273],[-71,299],[-115,312],[30,508],[58,322],[18,396],[-89,424],[-72,274],[-100,214],[-128,362],[-111,259],[-87,308],[-111,160],[-97,265],[-75,269],[-117,271],[-138,286],[-14,30],[-144,341],[-441,1046],[-255,606],[-452,1074],[-551,1308],[-725,1721],[-145,343],[-197,468],[-548,1300],[-664,1577],[-222,527],[-212,503],[-511,1211],[-138,318],[-99,225],[-1014,2319],[-287,638],[-124,276],[-157,349],[-613,1395],[-140,320],[-273,561],[-54,120],[-309,687],[-356,796],[-389,877],[-269,606],[-189,422],[-118,264],[-110,250],[-147,327],[-143,326],[-243,548],[-34,77],[-273,615],[-30,67],[-185,415],[-622,1403],[-298,674],[-15,36],[-990,2235],[-290,655],[-448,1040],[-300,697],[-199,462],[-36,84],[-296,687],[-2,4]],[[860727,359361],[-318,-63],[-29,689],[89,912],[-213,109],[38,657],[204,-62],[157,-512],[96,-723],[-24,-1007]],[[845081,351134],[-22,-9],[-124,-48],[-165,-142],[-105,-177],[10,-542],[77,-611],[57,-467],[-34,-384],[-251,-385],[-61,-427],[40,-411],[42,-521],[-96,-233],[-135,-46],[-127,7],[-170,322],[-51,333],[35,362],[107,260],[-87,525],[-121,187],[-156,256],[-158,110],[-250,-14],[-121,-38],[-210,-14],[-180,160],[-136,12],[-144,-244],[-129,193],[-164,200],[-152,88],[-59,307],[-38,525],[-60,397],[9,473],[-41,322],[-111,220],[148,111],[48,399],[-153,38],[19,350],[19,342],[39,336],[-115,286],[-184,14],[-172,135],[-135,121],[-111,154],[0,375],[-149,47],[-32,369],[-124,-191],[-204,147],[-177,189],[-106,193],[-133,101],[-33,423],[-45,336],[24,382],[-154,-53],[-72,393],[-109,186],[2,364],[-110,229],[-113,154],[-130,-145],[-43,446],[-153,83],[-319,-123],[-163,213],[-134,-197],[-55,-368],[-113,-282],[-21,-49],[-169,-396],[-96,-349],[-143,-177],[-148,-3],[-138,-306],[-140,113],[-120,-176],[-124,57],[-104,307],[-142,209],[-32,427],[3,26],[53,461],[128,239],[22,42],[108,473],[77,454],[-73,316],[-185,91],[-130,-36],[-283,-160],[-137,-313],[-151,-278],[-140,-685],[-177,-76],[-124,-82],[-30,530],[-65,399],[-42,336],[-150,176],[-7,6],[-119,105],[-11,10],[-100,254],[-86,-269],[-110,294],[-68,-318],[-133,-42],[-86,266],[-181,-49],[-95,-217],[-149,85],[-121,18],[-120,298],[-162,419],[-129,171],[7,477],[-151,106],[-91,240],[-42,336],[-195,152],[-132,171],[-93,381],[-130,80],[-128,116],[-199,273],[-142,218],[-134,166],[-67,302],[-162,332]],[[829091,420324],[-7,-689],[19,-1087],[102,-945],[113,-715],[225,-778],[363,-751],[380,-446],[285,-387],[470,-293],[207,-130],[251,-127],[674,-109],[473,-59],[535,-66],[656,-62],[271,6],[318,-67],[289,-144],[190,-167],[722,-526],[197,-866],[-392,-364],[-267,-901],[398,260],[317,-120],[175,-622],[240,-693],[296,-945],[84,-1101],[-146,-1069],[234,-624],[70,286],[80,324],[240,-117],[272,-430],[251,-261],[308,-526],[357,-563],[384,-722],[217,-437],[2,-555],[196,-290],[115,-516],[176,-1144],[-194,-1024],[-60,-975],[21,-1128],[-314,-334],[171,-970],[-287,-307],[234,-662],[-306,-673],[358,-337],[160,-828],[109,750],[125,637],[-125,947],[657,-699],[257,-695],[-68,-1141],[32,-1209],[148,-888],[229,-994],[404,-1438],[403,-1516],[-156,-832],[-340,-132],[-33,-589],[-190,-151],[-148,414],[-245,661],[-406,26],[-507,367],[-315,639],[-377,-269],[-429,266],[-305,472],[-284,506],[-16,949],[-249,249],[-242,376],[-334,596],[-378,428],[-440,-274],[337,-394],[354,-491],[230,-723],[-304,-784],[84,13],[202,33],[348,255],[241,-1020],[337,-534],[168,-419],[-144,-579],[418,188],[239,-173],[436,-68],[371,-418],[295,-591],[469,-36],[158,-548],[502,-1123],[316,-405],[488,-709],[444,-1440],[-326,-175],[-257,404],[-392,1050],[-348,-225],[-437,-200],[-254,809],[-86,-1198],[89,-870],[425,438],[37,-661],[249,393],[235,-555],[348,-838],[164,284],[201,-490],[51,-757],[252,-201],[224,-417],[186,-293],[213,-646],[256,-478],[-367,-195],[-55,-1077],[-125,-933],[-1,-685],[-283,-182],[-48,-780],[-150,-826],[-139,-422],[-173,157],[-128,-495],[-249,49],[-175,-85],[-175,-443],[-301,-22],[-301,482],[-272,408],[-333,305],[126,-632],[241,-278],[270,-691],[-11,-814],[276,158],[334,461],[315,42],[273,-740],[72,842],[402,483],[251,-71],[-26,563],[30,712],[147,807],[391,192],[-36,995],[160,740],[10,941],[289,-382],[297,-423],[421,-867],[169,-638],[418,-332],[139,-1078],[207,-833],[184,-771],[147,-753],[259,-373],[333,-716],[475,-807],[183,-365],[198,-229],[283,-343],[303,-290],[609,-209],[344,50],[519,109],[1116,-141],[261,-137],[298,-97],[344,66],[328,395],[335,-4],[626,396],[203,-67],[384,-127],[444,-316],[338,-128],[326,-58],[268,-120],[310,-23],[315,66],[408,147],[231,-96],[-64,-719],[259,-173],[245,-29],[174,-823],[215,1020],[205,-300],[28,-747],[430,236],[-321,1081],[351,471],[412,391],[52,-861],[317,-108],[55,836],[418,362],[815,139],[13,3],[316,-584],[26,-1011],[-112,-870],[-190,-113],[-116,-747],[-218,-492],[294,-330],[297,339],[79,-860],[-51,-797],[-415,257],[-193,-810],[167,-696],[-459,-707],[276,-416],[202,-136],[243,907],[358,-531],[339,385],[334,-168],[-137,-727],[-361,-174],[-208,-845],[-407,-570],[395,-195],[266,-303],[67,659],[231,-388],[319,248],[330,-799],[570,-743],[350,297],[234,-229],[195,306],[506,-534],[244,-544],[332,-50],[263,-24],[481,-540],[435,-1065],[467,-122],[220,-64],[406,39],[512,-47],[370,60],[274,-39],[248,-68],[286,-55],[394,86],[467,254],[363,-144],[442,-83],[538,-161],[510,-596],[398,140],[177,-367],[328,-520],[317,215],[644,-455],[264,-362],[271,-210],[132,-571],[97,-533],[328,199],[217,-627],[-173,-1047],[447,-450],[87,618],[85,603],[19,133],[-80,384],[849,386],[232,-365],[157,-118],[425,-480],[82,-1068],[-376,-1141],[-320,-1030],[-159,-467],[-263,-105],[-213,-524],[-314,-556],[-483,-237],[-310,282],[-825,209],[-122,255],[-210,302],[-384,590],[-191,352],[-103,-39],[26,-642],[257,-884],[-335,-364],[-247,125],[-119,530],[-230,-126],[-15,-755],[691,-438],[759,257],[-22,-1544],[-67,-4570],[-335,-773],[-112,1159],[0,4248],[-1131,512],[-19,-12],[204,-1091],[-188,-397],[-264,-166],[-538,-195],[-553,386],[-453,-22],[-271,-409],[-231,-571],[-359,110],[-269,246],[-287,607],[-171,338],[-717,-109],[-1703,151],[-217,-665],[-31,-493],[-99,-52],[-122,234],[-250,266],[-406,1205],[-373,501],[-351,-20],[-223,-360],[-258,-1347],[-65,-1281],[-249,-784],[-163,-1270],[93,-865],[-210,-660],[-83,1369],[-157,655],[-83,-1161],[3,-1313],[-8,-993],[318,-684],[-180,-597],[-220,-398],[-119,-36],[-291,-86],[-255,1873],[-229,1237],[41,713],[-107,751],[-161,517],[-240,427],[-205,346],[-386,53],[-268,-255],[-469,-1083],[-189,-589],[179,-778],[180,-693],[-57,-716],[-274,338],[-210,288],[-174,-363],[-151,419],[-383,1053],[-326,-22],[-219,63],[-85,923],[-127,743],[-270,582],[-267,660],[-291,215],[-490,155],[-318,598],[-217,728],[-202,371],[-363,869],[-378,72],[-454,-274],[-380,-264],[-328,-294],[-365,135],[-276,113],[-285,244],[-28,847],[-175,591],[201,1097],[79,741],[-178,726],[-326,351],[-439,-746],[-327,1012],[-254,913],[-96,875],[-502,10],[-18,1],[55,-1313],[15,-941],[-275,-443],[-482,-2],[-317,309],[-130,1011],[-307,808],[-182,740],[-381,834],[-302,-10],[-375,-300],[-361,331],[-45,1352],[-370,454],[-200,600],[-242,-154]],[[664378,381710],[-199,37],[-226,-193],[-136,-371],[-140,-351],[-164,-318],[-88,-280],[-51,-451],[145,-333],[-29,-391],[-93,-449],[-141,-239],[-165,-56],[-118,-73],[50,-315],[128,-306],[72,-308],[6,-384],[-93,-377],[-54,-316],[-93,-246],[-140,-130],[-143,9],[-141,83],[-121,-92],[-107,-283],[123,-163],[130,9],[100,-275],[-80,-255],[-158,-398],[43,-334],[123,-287],[-51,-382],[-190,-385],[-90,-232],[-138,15],[61,-319],[126,41],[155,118],[34,-330],[17,-345],[23,-523],[-64,-314],[-91,-272],[-93,-247],[-8,-343],[122,-78],[-53,-604],[-466,-5246],[-120,-1348],[-36,-438],[-104,-1176],[-98,-1104],[-131,-1481],[-213,-2411],[-326,-3683],[-49,-552],[-173,-1935],[-113,-1262],[-50,-562],[-69,-943],[-133,-1641],[-128,-1094],[-47,-525],[-49,-543],[-1,-9],[-122,-1369],[-133,-1507],[-67,-742],[-110,-1261],[-164,-1810],[-88,-983],[-33,-368],[-72,-807],[-103,-1147],[-142,-1623],[-104,-1177],[-212,-2394],[-16,-190],[-33,-374],[-31,-387],[-126,-1577],[-61,-652],[-85,-918],[-238,-2577],[-96,-1164],[-6,-60],[-73,-727],[-79,-865],[-95,-1036],[-56,-652],[-87,-1001],[-100,-1138],[-93,-1027],[-95,-1050],[-64,-711]],[[657288,312427],[-152,292],[-247,383],[-45,71],[-51,172],[-221,602],[-41,94],[-99,78],[-188,-233],[-26,-33],[-585,-1148],[-53,-104],[-59,-116],[-62,-305],[-61,-165],[-17,-33],[-95,-186],[-102,-109],[-52,-35],[-19,-13],[-45,-30],[-119,-24],[-123,63],[-353,344],[-181,70],[-109,-31],[-28,-44],[-33,-50],[-37,-141],[0,-70],[-65,-517],[-71,-422],[-42,-129],[-16,-51],[-282,-798],[-844,-1424],[-92,-117],[-99,-24],[-57,16],[-535,265],[-98,118],[-136,281],[-72,94],[-136,86],[-100,33],[-39,13],[-96,-7],[-190,-79],[-61,-55],[-24,-23],[-24,-63],[-31,-219],[-64,-978],[-14,-258],[-2,-221],[-2,-181],[-2,-161],[30,-492],[17,-86],[65,-947],[4,-236],[3,-170],[-13,-266],[-99,-603],[-20,-107],[-130,-691],[-27,-140],[-25,-155],[-62,-369],[-28,-165],[-31,-101],[-81,-32],[-174,149],[-384,664],[-222,64],[-47,14],[-29,-8],[-83,-24],[-23,-17],[-72,-53],[-264,-211],[-98,-78],[-50,-40],[-48,-126],[-37,-211],[-13,-211],[37,-712],[55,-578],[10,-595],[-92,-399],[-40,-91],[-49,-107],[-101,-224],[-48,-193],[-50,-198],[-10,-128],[-1,-5],[-17,-40],[-6,-195],[4,-1322],[-58,-602],[-34,-219],[-145,-646],[-8,-35],[-58,-133],[-215,-566],[-97,-256],[-143,-313],[-367,-524],[-51,-149],[-179,-713],[-4,-15],[-37,-183],[-58,-286],[-98,-1135],[-34,-451],[-31,-417],[-41,-233],[-130,-725],[-2,-12],[0,-2],[-387,-883],[-76,-123],[-16,-25],[-73,-25],[-8,-3],[-10,-4],[-8,1],[-152,14],[-143,-70],[-374,-486],[-18,-45],[-43,-104],[-71,-328],[-37,-243],[-89,-344],[-74,-227],[-88,-191],[-274,-595],[-42,-91],[-16,-20],[-34,-45],[-59,-76],[-105,-32],[-136,39],[-33,-15],[-18,-9],[-55,-109],[-23,-172],[13,-243],[27,-156],[10,-37],[28,-112],[75,-179],[116,-217],[27,-49],[255,-375],[61,-324],[203,-335],[-130,-789]],[[645075,282828],[-78,-302],[-108,-314],[-87,-249],[-55,-248],[-25,-115],[-84,-286],[-95,-109],[-39,-46],[-57,-112],[-135,-265],[-128,-219],[-170,-188],[-183,-220],[-109,-313],[-143,-126],[-137,9],[-105,51],[-36,17],[-147,66],[-177,9],[-21,1],[-27,22],[-19,15],[-88,70],[-127,116],[-52,36],[-89,61],[-141,23],[-256,35],[-17,-64],[-70,-259],[-1,-596],[-13,-429],[15,-404],[49,-136],[72,-201],[135,-157],[114,-148],[95,-341],[15,-53],[-24,-425],[-10,-199],[-35,-725],[8,-162],[18,-384],[-67,-405],[-113,-498],[-94,-469],[-39,23],[-239,144],[-358,650],[-139,109],[-194,182],[-129,167],[-137,145],[-244,302],[-114,148],[-120,139],[-118,38],[-56,-16],[-82,-22],[-93,-26],[-98,-213],[-72,-360],[-3,-20],[-15,-72],[-7,-80],[-33,-337],[-13,-417],[-40,-417],[4,-279],[7,-508],[-38,-456],[-2,-24],[-12,-76],[-18,-111],[-37,-237],[-83,-444],[-144,-410],[-159,6],[-192,289],[-3,5],[-128,54],[-17,2],[-108,14],[-275,68],[-112,-29],[-34,-9],[-14,-25],[-87,-161],[-206,-726],[-130,-346],[-19,-50],[16,-451],[9,-242],[5,-400],[11,-390],[84,-842],[71,-540],[-50,-129],[-26,-68],[-23,-59],[-152,-109],[-48,16],[-70,22],[-213,215],[-232,247],[-164,-116],[-47,-69],[-93,-136],[-10,-20],[-49,-95],[-76,-146],[-37,-56],[-303,-458],[-163,-179],[-198,-65],[-135,-29],[-94,-208],[-67,-282],[-27,-150],[-35,-193],[0,-3],[0,-1],[27,-532],[-39,-339],[-3,-29],[-56,-129],[-39,-91],[-244,-480],[-94,-345],[-142,-245],[-25,-44],[-140,-236],[-32,-54],[-110,-186],[-355,-487],[-5,-6],[-22,1],[-197,6],[-148,-62],[-19,3],[-62,10],[-153,25],[-361,92],[-8,-3],[-118,-125],[-32,-2],[-36,-2],[-146,-11],[-85,63],[-160,516],[-88,430],[-4,258],[45,337],[75,328],[14,33],[9,22],[46,282],[11,65],[8,52],[7,203],[-27,70],[-264,145],[-190,104],[-397,217],[-22,12],[-401,-594],[-10,-15],[-108,-289],[-307,-822],[-93,-115],[-40,-49],[-5,-127],[-29,-623],[-3,-71],[-16,-95],[-4,-30],[-65,-188],[-98,-211],[-24,-102],[-4,-338],[-8,-806],[-2,-146],[14,-110],[115,-328],[24,-133],[-7,-180],[-85,-196],[-88,-109],[-72,23],[-176,274],[-55,369],[-57,382],[-3,10],[-171,599],[-312,1096],[-10,30],[-31,86],[-20,57],[-27,24],[-71,64],[-14,13],[-346,-47],[-65,-23],[-9,-14],[-42,-72],[-23,-42],[-143,-263],[-8,-10],[-380,-490],[-18,-4],[-116,-22],[-179,-35],[-381,-74],[-43,-24],[-317,-177],[-19,-9],[-2,-1],[-64,-23],[-2,-1],[-420,-144],[-103,-70],[-2,-4],[-118,93],[-191,150],[-90,71],[-22,11],[-247,123],[-43,22],[-17,23],[-486,650],[-244,46],[-218,227],[-160,-8],[-12,-6],[-14,94],[-214,674],[-111,398],[-27,393],[25,436],[-128,104],[-147,87],[-57,372],[-119,162],[-88,100],[-18,48],[-18,-7],[-127,-54],[-188,-80],[-36,18],[-12,6],[-10,63],[-221,1343],[-85,518],[-198,37],[-9,2],[-10,-29],[-4,-10],[-149,-173],[-78,-78],[-214,70],[-163,113],[-18,12],[-28,64],[-94,210],[-73,94],[-39,50],[-65,82],[-259,256],[-366,362],[-37,15],[-16,3],[-222,38],[-263,44],[-91,16],[-3,0],[-12,-1],[-46,-7],[-103,-70],[-22,-16],[-127,-118],[-125,-117],[-1,-2],[-70,-100],[-105,-195],[-44,-212],[-27,-338],[-4,-53],[-5,-11],[-5,-10],[-41,-81],[-105,79],[-245,422],[-71,516],[10,266],[51,-24],[5,-6],[39,-48],[27,-110],[51,-62],[38,31],[50,313],[4,70],[-72,344],[-16,17],[-155,154],[-83,520],[-79,306],[-55,334],[-116,480],[-52,348],[-165,69],[-82,-263],[-110,258],[-168,169],[-112,36],[-126,-59],[-162,-167],[-144,150],[-159,-196],[-180,-110],[-75,-23],[-54,54],[-157,344],[-58,265],[-64,290],[-34,258],[-51,198],[-393,427]],[[764443,340310],[45,-389],[12,-50],[59,-251],[107,-201],[119,134],[139,-8],[145,-53],[93,-238],[123,31],[89,-248],[1,-369],[40,-332],[-44,-552],[-23,-384],[-36,-363],[120,-114],[119,52],[125,-37],[108,-186],[294,-492],[3,-5],[110,-200],[66,-335],[56,-311],[76,-273],[148,-128],[80,-260],[80,-262],[1,-363],[26,-277],[7,-78],[63,-298],[117,-47],[120,-1],[87,-242],[-91,-226],[8,-142],[14,-231],[106,-271],[144,-45],[118,39],[108,-251],[109,-290],[94,-212],[45,-103],[134,-199],[127,-327],[115,-48],[22,-9],[120,-164],[130,-105],[104,-168],[110,-269],[22,-378],[54,-345],[-71,-285],[18,-27],[99,-149],[-13,-375],[16,-356],[122,-129],[118,-143],[128,6],[108,-178],[-70,-292],[69,-296],[123,-105],[116,-95],[81,-270],[61,-314],[112,-133],[100,-308],[95,-214],[113,-165],[114,109],[56,-336],[73,-305],[126,-67],[122,-60]],[[770527,324949],[-183,-960],[-63,-331],[-66,-343],[-92,-473],[-101,-525],[-238,-1224],[-27,-142],[-146,-778],[-179,-945],[-65,-328],[-127,-638],[-59,-310],[-71,-379],[-96,-506],[-344,-1826],[-189,-1025],[-219,-1135],[-82,-408],[-99,-542],[-295,-1607],[-180,-964],[-126,-666],[-62,-326],[-241,-1266],[-241,-1278],[-151,-799],[-166,-887],[-128,-684],[-75,-417],[-155,-813],[-144,-765],[-62,-327],[-59,-312],[-83,-445],[-86,-462],[-92,-490],[-150,-767],[-66,-325],[-43,-355],[-56,-338],[-72,-309],[-63,-295],[-41,-330],[-35,-347],[-82,-250],[-83,-248],[-105,-168],[-109,-139],[-80,-255],[105,-195],[56,-435],[138,-213],[90,-252],[88,-237],[114,-163],[77,-261],[-73,-280],[-30,-341],[61,-337],[17,-345],[92,-281],[134,-142],[126,13],[114,-158],[123,-148],[99,-204],[-78,-277],[34,-386],[-31,-364],[-80,-331],[-102,-181],[-41,-347],[-43,-360],[43,-335],[130,16],[122,-57],[-89,-276],[-148,-176],[-121,-132],[-120,-92],[-125,14],[-70,-301],[-115,-190],[-136,-43],[-115,-135],[-104,-186],[12,-341],[-110,-180],[-118,87],[-103,190],[-114,113],[12,349],[-106,176],[-117,98],[-100,-226],[-130,-3],[-18,385],[-112,-117],[-109,-240],[-123,-41],[-29,351],[-5,351],[-103,195],[-71,307],[-116,106],[-49,321],[-61,294],[-92,222],[-128,88],[-124,1],[-116,76],[-74,269],[-33,333],[-14,14],[-101,100],[-118,-93],[-118,61],[-74,320],[8,346],[114,101],[108,-181],[-66,346],[-51,308],[-123,10],[-119,28],[-83,-262],[44,-332],[-115,-203],[-129,16],[-38,-350],[-47,-315],[37,-334],[-105,-327],[-131,-145],[-111,-132],[112,-353],[136,71],[128,-7],[96,-271],[67,-351],[91,-313],[13,-539]],[[762066,287756],[-106,674],[-289,-414],[-376,85],[-463,342],[-227,69],[-185,41],[-324,-123],[-277,-230],[-326,-206],[-208,-1174],[-254,-1071],[-374,-632],[41,-134],[95,-309],[127,-415],[97,-400],[110,-451],[48,-266],[112,-627],[162,-862],[5,-30],[132,-810],[-9,-398],[-8,-380],[-138,-666],[-194,-511],[-227,-430],[-250,-185],[-280,37],[-446,97],[-414,46],[-321,154],[-408,257],[-359,259],[-286,230],[-468,751],[-164,822],[-26,129],[161,-32],[241,-49],[395,-97],[248,55],[215,618],[-55,982],[-35,180],[-104,541],[-402,652],[-359,-46],[-230,252],[-170,287],[272,2136],[549,3200],[251,3166],[-394,2959],[-1349,-34],[-286,-585],[-108,-3476],[-262,-2649],[135,-176]],[[754301,288909],[-67,-287],[-64,-339],[-43,-348],[-90,-305],[-99,-261],[-97,-232],[-105,-182],[-267,-306],[-176,-151],[-145,-126],[-121,-121],[-137,-110],[-121,-88],[-120,-64],[-118,29],[-124,63],[-123,-22],[-126,6],[-119,32],[-132,49],[-112,138],[-114,-108],[-119,82],[-125,-65],[-123,52],[-129,-3],[-125,0],[-124,44],[-124,-37],[-128,47],[-140,51],[-100,28],[-18,4],[-121,-6],[-141,5],[-128,-64],[-115,-101],[-239,-155],[-417,-240],[-179,-156],[-142,-205],[-147,-311],[-123,264],[20,339],[24,609],[88,249],[119,118],[30,349],[93,236],[30,348],[36,337],[-27,361],[-63,293],[-61,314],[-70,283],[-92,271],[-115,304],[-138,284],[-106,171],[-107,189],[-113,161],[-130,152],[-124,109],[-138,99],[-152,8],[-126,-120],[-110,-194],[-111,-307],[-65,-355],[-30,-334],[21,-461],[-5,-363],[-15,-345],[-66,-293],[-139,-125],[-60,-621],[-120,101],[-135,118],[-128,130],[-114,116],[-121,68],[-181,167],[-118,143],[-104,189],[-85,277],[-106,193],[-203,53],[111,130],[48,330],[1,349],[39,326],[25,341],[5,345],[65,389],[64,298],[67,297],[26,336],[-18,353],[-74,336],[-97,229],[-112,143],[-112,122],[-120,121],[-112,211],[-132,182],[-98,204],[-101,200],[-89,239],[-93,224],[-144,227],[-119,-35],[-128,32],[112,151],[-114,115],[-132,139],[78,275],[119,-81],[115,-114],[-2,374],[-30,340],[-130,-33],[123,150],[-3,401],[-17,353],[-13,391],[-24,366],[-36,347],[3,352],[-45,333],[-34,357],[-24,349],[-27,374],[-42,367],[-40,336],[-58,315],[-102,222],[-98,220],[-108,170],[-114,130],[-118,123],[-118,26],[-126,-97],[77,-269],[124,12],[119,-185],[90,-314],[46,-324],[-77,-291],[-55,-331],[-104,-181],[-123,259],[-117,252],[-106,161],[-2,344],[-46,350],[62,293],[-127,79],[-118,-69],[-126,-1],[-114,-100],[-123,-151],[-120,-92],[-126,0],[-15,-346],[-39,-331],[-75,321],[-93,217],[-117,62],[-124,-23],[-119,-33],[-127,69],[-118,66],[-102,209],[-115,163],[-111,175],[-108,186],[-106,175],[-101,235],[-76,263],[-70,309],[-46,323],[-45,325],[-46,324],[-55,319],[-5,350],[-16,345],[21,354],[35,351],[40,322],[58,351],[71,276],[67,333],[77,262],[67,293],[70,281],[70,277],[55,292],[5,26],[74,281],[67,296],[68,313],[57,303],[62,360]],[[741623,309827],[250,1600],[-35,2019],[-43,1701],[-13,558],[-97,972],[-2,18],[-72,514],[-10,71],[-158,1130],[57,3284],[18,1298],[-5,829],[-11,310],[-184,2302],[47,980],[158,560],[228,1040],[193,1278],[88,869],[-10,2512],[365,109],[108,32],[2,1],[408,-8],[62,-399],[31,-368],[122,-231],[-11,-1262],[179,-100],[194,-166],[220,-186],[301,-254],[137,-148],[121,-181],[116,-233],[155,-293],[154,-223],[135,-151],[8,835],[8,860],[4,522],[4,537],[28,41],[-96,599],[247,278],[25,-154],[544,619],[-42,113],[-4,11],[-18,21],[-124,604],[-86,240],[-81,271],[-82,268],[-84,282],[-81,269],[-86,278],[-129,249],[42,484],[28,320],[112,264],[101,227],[34,338],[121,170],[272,-171],[117,-84],[153,72],[11,376],[19,717],[38,854],[-76,96],[-202,466],[-164,67],[-171,77],[-338,181],[-22,590],[8,660],[-96,489],[-37,397],[-1,9],[-28,358],[-21,252],[-8,94],[-42,455],[52,627],[19,234],[-133,-28],[-268,-89],[-34,-9],[-97,-24],[-442,299],[-145,99],[-135,83],[-289,178],[-132,100],[-120,100],[-190,144],[78,353],[149,681],[15,69],[113,508],[42,189],[-69,85],[-14,18],[-154,192],[-112,127],[-104,129],[-72,86],[-12,94],[-64,329],[-30,411],[-193,233],[-22,30],[-40,56],[71,163],[113,181],[108,143],[174,196],[108,184],[94,309],[53,308],[25,265],[7,76],[-2,353],[-25,366],[-39,454],[-69,328],[-186,773],[-129,589],[-17,193],[-15,161],[7,362],[32,414],[-17,20],[-163,195],[-170,194],[-113,143],[-184,232],[-214,7],[-331,0],[-203,-37],[-478,-86],[-119,-5],[-42,-37],[-50,-89],[-24,-79],[-27,-189],[-42,74],[-253,450],[-142,237],[-136,219],[-112,190],[-140,226],[-75,123],[-72,118],[65,152],[100,291],[46,320],[-36,371],[5,376],[55,309],[-51,311],[-83,261],[-93,216],[-113,158],[-73,293],[16,360],[-2,357],[20,343],[187,300],[10,21],[19,33],[26,-6],[29,-4],[13,10],[13,17],[10,18],[9,11],[4,-1],[7,-9],[4,-12],[21,-21],[1,39],[-290,402],[-233,306],[-174,242],[-91,52],[-126,66],[-263,142],[-5,180],[-319,-123],[-28,-10],[-266,-99],[-133,-52],[-79,-31],[-80,-31],[10,-199],[78,-1252],[-369,-74],[-178,-36],[-183,-37],[-318,-58],[-301,-52],[-4,133],[-21,686],[-78,-20],[-16,-79],[-18,0],[-99,-53],[-130,-92],[-234,-27],[-236,39],[-255,21],[-202,20],[-53,6],[-114,93],[-9,-126],[23,7],[22,-20],[17,-60],[48,-52],[13,-40],[-48,-364],[-50,-370],[-103,-773],[-26,-179],[-9,-99],[-41,-991],[-1,-22],[21,-396],[22,-351],[119,-106],[310,-1225],[176,-682],[25,-355],[2,-32],[58,-236],[95,-421],[-74,-146],[-2,-2],[-185,-293],[-105,-163],[-139,-222],[-48,-81],[-91,-153],[-250,-414],[-269,-430],[-92,223],[-369,890],[-117,283],[-160,385],[-265,575],[-232,551],[-54,127],[-37,86],[-41,-127],[-10,-33],[-90,-278],[-119,-366],[-159,-489],[-86,-266],[-164,-508],[-93,-279],[-66,104],[-399,621],[-149,225],[-149,235],[-452,690],[-207,316],[-153,241],[-104,-329],[-27,50],[-78,110],[-15,-82],[-127,115],[-10,-59],[-25,-107],[-42,84],[-99,198],[-241,480],[-116,233],[-103,205],[-173,306],[-282,560],[-305,600],[-175,338],[-127,245],[-147,290],[-6,11],[-85,167],[-3,-244],[-2,-76],[-20,-745],[-8,-354],[-24,-437],[120,-1556],[-91,-123],[-102,423],[-67,268],[-46,-117],[-19,-25],[-163,-438],[-107,-298],[-67,-85],[-23,-28],[-6,31],[-93,516],[-353,-275],[-234,-181],[-36,-76],[290,-345],[-169,-461],[-246,-763],[-98,-228],[20,-160],[-13,-166],[-82,-486],[72,-352],[244,-392],[178,-246],[101,420],[169,136],[110,148],[212,-111],[51,-458],[56,-547],[30,-337],[163,-140],[145,-23],[205,-7],[123,20],[288,-13],[164,-8],[48,0],[42,20],[36,20],[0,-15],[0,-17],[-1,-33],[-22,-132],[-34,-212],[-11,-33],[-137,-986],[-25,-182],[-62,-401],[-75,-486],[-46,-302],[-174,253],[-286,127],[-533,-30],[-657,65],[-71,0],[-350,3],[-755,-622],[-512,-697],[-256,-232],[-86,-79],[-881,462],[-191,-89],[-149,-69],[-367,-170],[-193,519],[-195,526],[-273,-3],[-276,-28],[-566,-366],[-509,-514],[-183,-54],[-452,-135],[-110,-15]],[[720735,347295],[-573,-83],[-209,5],[-552,12],[-532,234],[-169,75],[-700,109],[-650,23],[-529,301],[-438,269],[-725,239],[-139,-30],[-475,-99],[-125,45],[-252,91],[-139,51],[-8,13],[-6,9],[-537,769]],[[713977,349328],[-217,-509],[-209,-413],[-476,-941],[-159,-313],[-131,-272],[-128,-264],[-101,-222],[-227,-514],[-102,-224],[-105,-213],[-285,-584],[-157,-313],[-258,-504],[-126,-254],[-117,-261],[-106,-235],[-108,-237],[-115,-227],[-107,-215],[-115,-229],[-152,-306],[-180,-367],[-103,-212],[-131,-268],[-208,-430],[-125,-259],[-103,-214],[-149,-311],[-127,-269],[-156,-330],[-98,-203],[-139,-279],[-58,-119],[-79,-161],[-207,-427],[-115,-238],[-167,-347],[-208,-432],[-103,-216],[-210,-437],[-137,-289],[-129,-277],[-124,-268],[-317,-691],[-106,-230],[-218,-475],[-128,-278],[-172,-356],[-478,-988],[-159,-330],[-86,-178],[-44,-92],[-98,-200],[-184,-367],[-151,-305],[-198,-395],[-131,-263],[-198,-395],[-105,-193],[-1,-3],[-150,-312],[-120,-256],[-255,-540],[-132,-280],[-141,-301],[-107,-225],[-178,-378],[-106,-226],[-333,-744],[-120,-269],[-120,-266],[-212,-386],[-126,-175],[-180,-377],[-482,-1005],[-149,-310],[-137,-284],[-377,-777],[-126,-259],[-13,-26],[-147,-307],[-451,-944],[-151,-314],[-142,-298],[-428,-894],[-143,-298],[-53,-112],[-198,-415],[-286,-598],[-703,-1468],[-234,-490],[-245,-512],[-737,-1539],[-245,-513],[24,-335],[-16,-371],[-20,-377],[23,-355],[17,-385],[14,-340],[-9,-375],[-11,-366],[-40,-334],[-45,-326],[-52,-327],[31,-370],[-5,-392],[-74,-334],[-80,-263],[-83,-252],[-77,-271],[-78,-296],[-74,-298],[-130,-412],[-92,-266],[-77,-274],[-39,-381],[24,-339],[7,-342],[-101,-422],[-41,-413],[-104,-368],[-102,-192],[8,-356],[4,-372],[-9,-374],[-91,-249],[-115,-100],[-131,-91],[-126,-2],[-195,-125],[-177,-99],[-114,-164],[-114,-169],[-121,-72],[-171,-38],[-118,-64],[-274,-211],[-117,-129],[-216,11],[-135,-102],[-129,20],[-146,-32],[-156,-6],[-131,25],[-135,62],[-127,-23],[-123,-89],[-117,-285],[-111,-150],[-123,-197],[-78,-280],[-116,-156],[-96,-255],[-120,-34],[-149,15],[-119,114],[-93,-244],[-109,-272],[-58,-323],[-109,-222],[-116,-163],[-117,92],[-116,-115],[-92,278],[-115,107],[-49,324],[-106,203],[-97,246],[-221,-36]],[[690123,300010],[-150,751],[-69,346],[-188,946],[201,1602],[92,805],[2,93],[0,39],[2,95],[-21,94],[-54,188],[-109,219],[-308,386],[-22,28],[-313,477],[-36,68],[-90,167],[-75,141],[-231,1721],[-31,226],[-37,268],[-93,659],[-49,354],[-15,103],[14,196],[4,41],[18,191],[26,268],[132,892],[109,661],[7,43],[24,273],[-1,26],[-3,381],[-58,281],[-102,110],[-228,180],[-200,94],[-358,-40],[-71,-7],[-67,-50],[-110,-82],[-24,-17],[-749,-1338],[-159,-414],[-201,-610],[-85,-196],[-35,-57],[-37,-60],[-27,-11],[-30,-11],[-281,-105],[-174,-65],[-32,-12],[-133,78],[-200,172],[-75,125],[-21,70],[-173,837],[-12,204],[-44,763],[-7,112],[-43,748],[-4,66],[48,821],[39,241],[12,81],[34,210],[81,475],[132,768],[22,125],[34,258],[-1,431],[-51,961],[-17,165],[-70,316],[-5,20],[-2,6],[-427,971],[-3,8],[-55,70],[-6,2],[-65,14],[-164,-16],[-80,-31],[-22,-8],[-66,-54],[-339,-275],[-313,-63],[-289,15],[-170,31],[-170,117],[-160,141],[-116,227],[-235,695],[-10,39],[-93,174],[-86,162],[-591,1110],[-10,11],[-24,28],[-59,-16],[-60,-15],[-198,-204],[-7,-63],[-237,-923],[-99,-212],[-72,-155],[-47,-102],[-647,-580],[-40,11],[-14,4],[-27,8],[-38,94],[-545,671],[-441,524],[-472,560],[-54,64],[-204,231],[-373,423],[-36,41],[-48,54],[-6,-4],[-126,-90],[-37,-31],[-28,-24],[-1,-9],[-12,-69],[-75,-63],[-79,31],[-143,141],[-225,398],[-95,113],[-3,4],[-102,0],[-55,-1],[-71,-39],[-82,16],[-68,54],[-96,164],[-282,312],[-130,-125],[-81,-32],[-637,-17],[-59,50],[-73,62],[-52,44],[-106,97],[-183,168],[-33,-14],[-406,-175],[-89,-1],[-105,39],[-116,117],[-112,180],[-144,265],[-172,435],[-29,73],[-85,270],[-167,527],[-55,181],[-193,633],[-27,117],[-11,6],[-110,71],[-108,220],[-49,332],[-35,317],[-9,75],[-105,182],[-109,29],[-11,3],[-30,8],[-89,-204],[-9,-21],[-213,-231],[-169,-113],[-126,-120],[-128,179],[-81,-425],[-54,-374],[-26,-33],[-156,-48],[-180,-56],[-130,-648],[-399,-1532],[-140,-359],[-293,-307],[-27,-28],[6,-13],[154,-333],[44,-93],[33,-80],[38,-92],[44,-297],[-8,-529],[-4,-244],[-26,-1615],[-1,-68],[-10,-360],[-45,-555],[-32,-360],[-2,-23],[-5,4],[-407,248],[-13,109],[-126,337],[-36,54],[-42,63],[-153,-23],[-170,-179],[-144,-226],[-92,-203],[-180,-180],[-456,-30],[-354,17],[-25,5],[-50,11],[-75,31],[-230,310],[-8,11],[-102,173],[-27,47],[-85,70],[-40,-7],[-25,-4],[-320,-56],[-61,-10],[-180,-47],[-181,-111],[-47,-29],[-157,-164],[-1,-2],[-94,-154],[-79,-187],[-4,-30],[-16,-127],[1,-87],[2,-269],[2,-221],[1,-111],[-58,-94],[-40,-46],[-171,-258],[-30,-8],[-159,-357],[-29,-65],[-220,-532],[-103,-249],[-13,-55],[-25,-102],[-17,-211],[36,-590],[5,-74],[-52,-1009],[-34,-446],[-300,-656],[-524,-945],[-51,-63],[-82,-23],[-17,38],[-183,408],[-51,63],[-242,8],[-5,-2],[-76,-29],[-181,-243],[-122,-132],[-82,23],[-20,17],[-45,38],[-245,204],[-5,19],[-1,4],[-381,450],[-4,4],[-306,275],[-245,305],[-9,26],[-8,21],[-231,305],[-85,71],[-65,0],[-16,-21],[-22,-27],[-175,-219],[-168,-210],[-58,-117],[-21,-102],[-3,-15],[-7,-204],[10,-123],[11,-127],[-19,-153],[-39,-327],[-123,-1029],[-61,-626],[-31,-852],[-92,-485],[-337,-993],[-30,-17],[-120,-69],[-156,102],[-24,60],[-109,269],[-27,180],[-2,222],[-1,188],[0,59],[4,31],[169,1212],[-6,196],[-45,141],[-404,219],[-3,0],[-99,0],[-82,-86],[-140,-367],[-85,-86],[-1010,-938],[-722,172],[-21,8],[-200,70],[-47,16],[-133,798],[-82,305],[-95,798],[-10,657],[-14,86],[-54,116],[0,1],[-6,4],[-242,184],[-99,70],[-16,18],[-112,73]],[[427037,301402],[-695,-1013],[-72,-105],[-110,-160],[-286,-417],[-286,-416],[-284,-414],[-959,-1398],[-21,-10],[-192,-185],[-116,-225],[-132,-147],[-131,-181],[-78,-284],[-47,-355],[-445,-703],[-108,-113],[-142,-130],[-181,-269],[-341,-505],[-527,-779],[-3554,-5781],[-53,-116],[-1031,-213],[-78,-16],[-62,-13],[-2077,-430],[-531,-111],[-721,-150],[-796,-163],[-934,-194],[-103,-352],[-61,-308],[-192,-969],[-22,-112],[-377,-668],[-117,-208],[-708,-1257],[-94,-47],[-969,-486],[-128,-181],[-217,-308],[-2660,-3775],[-189,-481],[-627,-1591],[-497,-1262],[-370,-942]],[[404716,273459],[-292,294],[-143,129],[-487,561],[-307,350],[-1198,1394],[-163,189],[-144,165],[-493,575],[-335,396],[-1,0],[-131,150],[-859,999],[-579,674],[-420,476],[-358,406],[-482,547],[-402,457],[-1030,1147],[-138,-298],[-181,-495],[-182,-545],[-228,-674],[-186,-556],[-192,-542],[-97,-211],[-355,-740],[-151,-247],[-521,-856],[-470,-741],[-429,-595],[-544,-615],[-383,-504],[-263,-333],[-540,-696],[-393,-434],[-298,-187],[-227,-251],[-135,-121],[-389,-524],[-145,-203],[-132,-242],[-176,-192],[-10,-26],[-1478,-1667],[-1714,-1567],[-181,-165],[-722,-1071],[-1638,-2428]],[[384394,264642],[-419,4662],[-90,1008],[-128,1422],[-447,3037],[-119,807],[-173,1171],[-118,819],[-779,5410],[-326,2267],[-172,1161],[-297,2005],[-268,1809],[-111,790],[-21,147],[-256,1742],[-48,327],[-69,467],[-148,1006],[-168,1140],[-198,1340],[-54,364],[-165,1111],[-72,485],[-283,1896],[-80,543]],[[379385,301578],[1279,1092],[890,2094],[706,606],[990,1398],[2060,4018],[1727,2351],[3043,4335],[1263,1190],[629,1255],[745,1164],[-435,1668],[2428,2238],[1699,792],[916,1116],[1301,1766],[416,565],[1191,1519],[2063,8631],[-1100,1025],[-2096,-3123],[-2486,3029],[-1,0],[163,564],[259,894],[315,344],[361,395],[387,423],[584,636],[15,17],[-3,9],[-2,9],[-1864,6306],[3415,4398],[2047,2837],[446,337],[1214,1778],[1266,1651],[1311,2421],[663,1147],[257,446],[473,1469],[1061,2572],[597,2635]],[[795844,356266],[-127,-1071],[75,-840],[86,-878],[286,-433],[353,-1148],[93,-886],[65,-953],[-208,-1032],[-213,-996],[-151,-507],[-358,-818],[-415,-857],[-336,-449],[-202,-568],[-188,-478],[-294,-597],[-85,-866],[102,-608],[276,-631],[349,-302],[324,-258],[244,-310],[434,-475],[279,-388],[311,-304],[405,43],[399,-145],[289,63],[343,352],[282,730],[118,1106],[85,590],[275,1240],[-67,892],[-18,187],[-86,869],[-62,995],[28,998],[10,340],[65,372],[75,428],[89,168],[107,204],[324,184],[379,195],[255,227],[350,387],[54,59],[93,127],[222,303],[291,399],[354,235],[467,39],[423,62],[320,-240],[140,-419],[85,-257],[17,-516],[14,-446],[-10,-623],[-71,-766],[-82,-894],[53,-342],[28,-184],[-86,-1075],[77,-818],[244,-689],[335,-597],[421,-319],[477,-24],[345,317],[419,449],[334,258],[481,520],[213,-59],[85,-24],[329,226],[327,646],[159,687],[87,743],[1,461],[0,387],[-156,1068],[-142,712],[-171,787],[-75,355],[-125,589],[-277,1158],[-253,1230],[495,801],[257,269],[331,290],[240,73],[483,147],[369,-116],[472,-346],[334,-836],[46,-632],[49,-678],[-85,-759],[-238,-1181],[-150,-744],[-57,-339],[-117,-694],[-273,-1591],[-317,-1991],[-85,-389],[-101,-458],[-160,-642],[-78,-218],[-178,-500],[-238,-620],[-3,-9],[-235,-488],[-427,-1020],[-182,-657],[-48,-739],[25,-623],[13,-863],[231,-264],[352,-788],[522,-707],[353,-487],[320,-353],[286,-180],[368,16],[348,181],[325,450],[288,324],[332,475],[174,328],[439,963],[204,392],[437,946],[195,430],[94,208],[331,701],[334,829],[231,933],[7,30],[26,260],[133,1336],[177,1055],[366,265],[189,-299],[98,-155],[35,-188],[139,-744],[85,-527],[37,-228],[361,-1674],[293,-1323],[13,-129],[77,-783],[26,-166],[117,-750],[139,-583],[68,-249],[64,-239],[-131,-3],[-248,-7],[71,-203],[252,-714],[471,-1428],[88,-1081],[2,-25],[-61,-744],[-107,-971],[-206,-1734],[8,-828],[70,-929],[59,-979],[278,-798],[100,-663],[286,-413],[278,-160],[468,-319],[397,-205],[701,-365],[28,-14],[321,-420],[109,-142],[148,-191],[185,-239],[275,-172],[339,-236],[166,-102],[186,-114],[66,-204],[96,-295],[170,-227],[107,-143],[273,-222],[139,-707],[12,-265],[39,-789],[-8,-1497],[8,-144],[43,-818],[-6,-856],[152,-785],[1,-387],[0,-458],[54,-578],[47,-506],[163,-493],[124,-377]],[[820405,313366],[9,-257],[4,-86],[-76,2],[-64,2],[-41,1],[-125,235],[-84,316],[-1,-2],[-115,-318],[-1,-4],[-38,-325],[-13,-622],[24,-236],[18,-170],[-4,-6],[-99,-168],[-109,187],[-49,158],[-6,21],[-36,118],[-8,-27],[-101,-323],[-43,-160],[-31,-113],[-116,-199],[132,-105],[12,-10],[207,-168],[48,-327],[141,-406],[9,-71],[36,-272],[225,-324],[17,-42],[61,-151],[24,-57],[-19,-99],[-22,-118],[-21,-108],[-1,0],[-10,3],[-155,55],[-97,393],[-118,-219],[-78,-339],[168,-56],[160,23],[-54,-341],[-69,-200],[-24,-69],[-175,-43],[-156,80],[10,-385],[-118,-103],[-139,-436],[124,-90],[123,-438],[-2,-13],[-50,-429],[-140,-55],[-123,38],[96,288],[-118,154],[-127,172],[-120,-191],[131,-114],[-49,-355],[-95,-248],[-104,-371],[-71,-89],[-39,-49],[-5,25],[-57,284],[-6,371],[118,552],[-138,-22],[-122,-60],[-95,-202],[-6,-13],[-121,-314],[1,-131],[5,-323],[-97,-247],[-143,-176],[-31,-19],[-86,-50],[61,328],[-93,245],[-131,52],[-117,150],[-134,65],[-115,112],[-111,241],[-166,0],[-136,-24],[-116,90],[-162,15],[-143,-265],[-174,-309],[-152,-166],[-208,129],[-124,256],[-93,330],[-136,92],[-142,72],[-170,218],[-151,243],[-155,264],[-76,269],[-98,321],[-137,237],[-219,182],[-88,231],[-102,235],[-89,300],[-115,124],[-135,-26],[-125,236],[-120,290],[-175,15],[-196,322],[-116,205],[-203,101],[-149,55],[-114,139],[-134,133],[-209,180],[-122,-24],[-100,-248],[-117,-165],[-178,-19],[-146,41],[-143,104],[-447,-119],[-118,-37],[-212,-66],[-141,-44],[-223,-69],[-9,-7],[-438,-339],[-176,-82],[-245,259],[-133,23],[-213,35],[-291,-197],[-361,108],[-220,-120],[-304,-416],[-50,-113],[-121,-269],[-115,-251],[-119,-344],[-258,-720],[-140,-79],[-156,-110],[-177,-46],[-321,-52],[-297,-127],[-188,-61],[-82,-37],[-43,-20],[-174,-272],[-97,-235],[-145,-249],[-160,-173],[-146,-492],[-191,-627],[-86,-244],[-40,-356],[-177,161],[-143,-84],[-225,149],[-126,42],[-128,-80],[-17,-478],[-131,-329],[-40,-210],[-13,-600],[-10,-437],[5,-283],[11,-689],[16,-1029],[271,87],[13,-11],[-11,-853],[-3,-238],[-1,-66],[-34,-368],[0,-8],[-150,-585],[-18,-35],[-75,-141],[-12,-131],[-3,-31],[-15,-172],[44,-151],[26,-20],[119,-91],[-7,-64],[-151,-1452],[-1,-13],[150,-204],[-145,-966],[-28,-187],[-36,-236],[-40,-265],[-35,-234],[-241,-927],[-78,-298],[-237,-909],[-67,-100],[-22,-251],[76,-1081],[29,-101],[112,-51],[47,70],[154,230],[92,-43],[352,-815],[16,-54],[9,-19],[49,-181],[59,-199],[62,-378],[17,-879],[-18,-207],[-28,-303],[-10,-118],[-101,-168],[-33,-55],[-71,-119],[-100,46],[-314,145],[-68,31],[-22,112],[-39,198],[-6,26],[4,64],[35,572],[-27,90],[-17,57],[-1,4],[-92,43],[-46,-69],[-21,-31],[-134,-555],[-61,-253],[-145,-605],[-44,-332],[-130,-996]],[[802856,286097],[-144,151],[-1134,1552],[-318,552],[-109,431],[11,643],[68,378],[102,238],[294,194],[330,169],[255,121],[201,83],[113,183],[106,414],[53,519],[53,400],[52,615],[41,973],[64,987],[-91,713],[-233,179],[-139,-123],[-136,-302],[-72,-329],[-67,-731],[-75,-538],[-179,-490],[-142,-213],[-190,-567],[-169,-146],[-148,-18],[-176,364],[-405,572],[-342,458],[-218,55],[-181,-297],[-126,-299],[-116,-516],[-30,-571],[-8,-474],[-11,-587],[-83,-753],[-118,-462],[-168,-288],[-205,-204],[-214,-341],[-170,-281],[-156,-341],[-181,-167],[-277,239],[-89,704],[-5,700],[-55,1038],[92,1037],[152,398],[141,396],[371,685],[203,372],[117,561],[21,766],[-70,680],[-121,668],[-280,864],[-267,173],[-270,-529],[-379,-1008],[-399,-658],[-247,-163],[-303,115],[-737,478],[-718,439],[-263,507],[-173,474],[155,1352],[203,653],[-17,512],[-122,310],[-121,241],[-172,160],[-132,65],[-122,-10],[-178,-88],[-159,113],[-134,98],[-152,166],[-175,353],[-147,-203],[-18,-405],[-62,-412],[-137,-87],[-129,-308],[-75,-293],[-174,-256],[-163,-65],[-169,-33],[-101,219],[-92,225],[-148,163],[-110,189],[-180,267],[-137,84],[-180,-116],[-284,-579],[-219,-414],[-277,-315],[-137,-98],[-224,138],[-137,440],[-120,84],[-68,451],[-126,162],[-74,-564],[-175,-295],[-142,-233],[-137,-35],[-176,304],[-244,245],[-144,203],[-160,359],[-92,366],[-77,279],[112,313],[143,78],[-102,204],[-119,133],[58,407],[-85,305],[0,367],[-51,642],[-115,305],[-4,376],[-156,-86],[-130,133],[-78,282],[-10,-407],[-24,-344],[-75,360],[-173,31],[-45,399],[-85,-305],[-177,-148],[-44,-423],[-139,78],[-123,-15],[-102,328],[-131,320],[-7,12],[-107,185],[-163,-86],[-266,329],[-143,-212],[-180,32],[-14,438],[-132,180],[-123,203],[-39,-161],[-32,-136],[-120,71],[-129,128],[-44,44],[-11,-31],[-81,-227],[-126,273],[-13,-406],[-126,140],[-143,24],[-130,-55],[-143,-266],[7,-352],[-115,-148],[-143,23],[-48,360],[-99,438],[-58,462],[72,305],[143,250],[-78,423],[-96,312],[-119,-218],[-105,187],[-259,110],[-334,305],[-132,633],[-130,165],[-139,-55],[-147,15],[-98,227],[-205,-31],[-126,242],[-102,-281],[-139,-79],[-174,220],[-98,-212],[-205,149],[-102,-219],[-170,93],[-180,-93],[10,430],[-116,78],[-187,101],[-129,-367],[-170,62],[-222,-79],[-122,126],[-136,-165],[-171,204],[-132,250],[-85,289],[-116,321],[-14,26],[-187,365],[10,501],[54,320],[-149,94],[-55,305],[-150,-16],[-214,117],[-154,360],[-149,266],[23,391],[-98,313],[-191,281],[-211,141],[-167,-196],[-122,125],[-109,-196],[-38,423],[-150,15],[-143,141],[-98,414],[44,337],[61,305],[-10,360],[-4,32],[-48,453],[7,462],[-143,-63],[-133,257],[-95,329],[-133,39],[-65,289],[-71,658],[10,398],[-112,519],[-126,414],[-107,202],[-68,350],[-173,-109],[-185,22],[-139,120],[-142,-213],[-245,-236],[-226,-109],[-163,-20],[-7,-1],[-114,-159],[-114,-154],[-146,-125],[-167,251],[-44,328],[19,378],[188,662],[-4,366],[-28,465],[-188,164],[-291,-98],[-222,5],[-161,115],[-127,186],[-311,66],[-277,-252],[-184,-334],[-180,-262],[-152,76],[-228,246],[28,843],[73,1028],[119,388],[146,400],[38,694],[-110,263],[-165,-126],[-192,82],[-242,-197],[-156,-388],[-186,-667],[-87,-241],[-124,-153],[-170,-82],[-69,585],[-96,580],[26,514],[-61,388],[-129,230],[-246,334],[-236,16],[-91,563],[27,362]],[[532261,316052],[-133,300],[-8,18],[-469,438],[-47,339],[-124,-137],[-112,-180],[-66,454],[-169,-60],[-140,-22],[-133,-290],[-135,98],[-138,-279],[-88,285],[-172,21],[-118,186],[-117,-175],[-166,-251],[-153,-11],[-167,136],[-161,309],[23,-444],[24,-444],[-261,171],[-119,-445],[-201,-34],[24,-581],[-344,-171],[-107,-684],[-249,137],[-202,-1094],[-142,-34],[-321,-367],[-25,471],[19,558],[-119,-50],[-80,351],[-108,-148],[-103,-197],[-131,22],[-155,-142],[-143,-329],[16,-374],[83,-479],[-174,-231],[-185,-245],[-216,-287],[-195,-259],[-226,-345],[-216,-421],[-321,-689],[-150,-466],[-279,-5],[-148,-82],[-130,-16],[-165,-3],[-146,-17],[-198,47],[-144,27],[-160,99],[-155,213],[-146,470],[-144,159],[-20,-20],[-448,-439],[-208,-464],[74,-749],[47,-423],[57,-459],[-24,-421],[-36,-614],[-272,-308],[-142,-259],[-119,-220],[-48,-444],[159,-837],[152,-876],[186,-61],[211,-32],[120,-19],[176,-19],[220,89],[268,92],[371,41],[141,16],[394,-710],[119,-1185],[-7,-728],[226,-431],[237,-452],[205,-391],[-702,-2237],[-265,-846],[-355,-1148],[-110,-339],[120,-203],[193,-326],[281,-344],[165,-229],[169,-221],[122,-142],[110,-159],[216,-241],[429,-553],[506,-654],[176,-218],[223,-320],[49,-70],[126,-229],[35,-63],[-65,-73],[-35,-162],[-16,-73],[56,-129],[-147,-285],[-136,-603],[-220,-1072],[-29,-359],[-127,-136],[-10,-451],[-106,-285],[-89,-364],[-186,-814],[-240,-1125],[-464,-2053],[-72,-312],[-114,-527],[-170,-791],[-144,-670],[-153,-714],[-76,-356],[-3,-15],[-441,-2082]],[[523866,278557],[-142,-369],[-104,-223],[-144,-1166],[-133,-641],[-245,-1086],[-97,-474],[-90,-267],[-102,-383],[-66,-284],[-72,-345],[-66,-301],[-82,-371],[-67,-305],[-78,-353],[-149,-988],[-319,-1370],[-78,-358],[-71,-323],[-73,-362],[-83,-415],[-76,-330],[-163,-698],[-103,-414],[-89,-354],[-100,-404],[-175,-699],[-169,-724],[-529,-2263],[-21,-91],[-209,-942],[-30,-137],[-64,-303],[-19,-89],[-132,-619],[-99,-467],[-67,-314],[-154,-753],[-16,-81],[-62,-288],[-143,-678],[-124,-602],[-220,-1079],[-342,-1630],[-245,-1154],[-377,-1769],[-226,-1058],[-176,-866],[-134,-631],[-1025,-4859],[-143,-678],[-26,-120],[-126,-575],[-53,-250],[-395,-1863],[-30,-143],[-113,-532],[-6,-30],[-256,-1212],[-3,-14],[-118,-560],[-80,-357],[-647,-2896],[-123,-575],[-632,-3154],[-175,-843],[-75,-406],[-184,-841],[-79,-362],[-218,-1001],[-97,-443],[-109,-513],[-286,-1345],[-326,-1552],[-673,-3244],[-99,-473],[-427,-2050],[-66,-309],[-554,-2574],[-271,-1230],[-308,-1441],[-569,-2591],[-428,-2083],[-80,-372],[-259,-1229],[-273,-1232],[-681,-3096],[-228,-1047],[-25,-115],[-87,-403],[-70,-351],[-52,-252],[-143,-681],[-98,-460],[-865,-4049],[-327,-1531],[-139,-651],[-145,-675],[-395,-1849],[-336,-1575],[-148,-693],[-168,-784],[-293,-1373],[-305,-1395],[-75,-377],[-156,-721],[-144,-673],[-74,-347],[-82,-381],[-114,-534],[-431,-2010],[-65,-288],[-82,-372],[-210,-963],[-73,-342],[-75,-347],[-77,-360]],[[501846,176089],[-149,-42],[-133,466],[-139,-74],[-323,42],[-445,177],[-318,344],[-848,902],[-609,545],[-351,401],[-114,262],[-260,103],[-123,136],[-613,244],[-628,-335],[-47,-231],[-26,-126],[-36,-177],[-291,-544],[-50,-153],[-69,-406],[-49,-631],[39,-232],[337,-1088],[223,-1147],[-8,-156],[-6,-109],[-14,-270],[229,-742],[244,-1051],[12,-92],[-84,-834],[-242,-1022],[-109,-761],[217,-939],[283,-546],[117,-220],[130,-52],[86,-121],[726,-1243],[1227,-2180],[175,-460],[45,-409],[-8,-343],[-53,-196],[-257,-602],[-32,-103],[-45,-148],[-1009,-433],[-49,106],[-613,-1580],[-121,-312],[-426,-616],[-119,69],[-143,319],[-69,155],[-321,1039],[-228,1001],[-130,421],[-277,999],[-210,994],[-248,749],[-230,482],[-9,15],[-127,212],[-187,292],[-196,108],[-80,45],[-277,370],[-280,588],[-346,962],[-162,272],[-244,409],[-230,92],[-475,189],[-170,115],[-594,404],[-169,171],[-115,116],[-203,371],[-511,934],[-29,53],[-11,21],[-33,61],[-119,363],[-123,373],[-53,161],[-39,232],[-11,352],[-169,543],[-326,130],[-8,3],[-327,-521],[-67,-624],[-175,-537],[-127,-201],[-91,-146],[-227,-214],[-1083,342],[-160,-254],[32,-389],[84,-361],[70,-499],[-45,-487],[-97,-233],[-107,-176],[-201,-108],[-138,18],[-176,100],[-175,125],[-136,97],[-250,202],[-147,15],[-271,-131],[-137,-4],[-173,91],[-176,136],[-151,151],[-133,132],[-210,198],[-217,217],[-305,343],[-284,375],[-144,222],[-134,128],[-170,149]],[[483920,171432],[-158,186],[-87,103],[-144,170],[-129,116],[-233,325],[-118,297],[-129,674],[-21,343],[90,251],[206,-107],[125,-173],[83,-119],[48,-68],[120,-86],[127,-69],[126,29],[252,297],[51,442],[-29,574],[-62,461],[-80,279],[-135,508],[-66,214],[-31,100],[-142,346],[-89,228],[-111,374],[-187,537],[-126,341],[-117,327],[-189,506],[-87,296],[-139,367],[-153,191],[-131,214],[-146,271],[-110,244],[-140,342],[-73,177],[-90,243],[-128,385],[-141,370],[-89,298],[-134,268],[-196,421],[-199,438],[-130,225],[-33,59],[-88,232],[-51,480],[-20,451],[68,558],[189,-16],[162,-139],[6,-5],[140,-126],[228,-122],[192,-77],[147,-15],[167,107],[84,426],[10,637],[-39,490],[-8,29],[-70,257],[-170,457],[-113,267],[-55,535],[-127,398],[-178,227],[-135,84],[-165,-41],[-162,-145],[-155,-19],[-172,32],[-153,-123],[-151,113],[-163,334],[-15,31],[-217,356],[-266,367],[-34,47],[-62,127],[-49,99],[-161,376],[-153,428],[-152,439],[-212,502],[-198,550],[-118,618],[-56,452],[35,434],[-4,450],[-117,344],[-138,373],[-145,486],[-56,306],[-53,320],[-92,605],[-81,486],[-134,331],[-114,474],[-40,622],[0,566],[-1,650],[-86,562],[-133,452],[-84,250],[-43,127],[-177,467],[-115,299],[-133,311],[-234,553],[-186,381],[-124,294],[-155,378],[-114,465],[-31,262],[-33,279],[-49,635],[12,158],[28,371],[-111,390],[-131,296],[-4,8],[-83,163],[-42,83],[-171,425],[-43,203],[-44,202],[-88,367],[-104,222],[-205,384],[-159,323],[-110,219],[-90,242],[-114,266],[-107,194],[-44,78],[-53,95],[-231,128],[-137,-278],[-52,-242],[-50,-231],[-87,-464],[-67,-303],[-193,-506],[-199,-160],[-189,241],[-106,418],[-5,19],[-35,464],[-84,310],[-141,327],[-34,127],[-85,314],[-120,536],[-71,311],[-133,611],[-59,261],[-20,90],[-77,297],[-86,202],[-20,47],[-1,1],[-117,249],[-126,154],[-146,77],[-72,-4],[-50,-2],[-114,-214],[15,-405],[33,-141],[49,-208],[11,-46],[160,-412],[106,-417],[66,-327],[123,-412],[158,-353],[78,-343],[39,-387],[-57,-501],[-38,-121],[-31,-98],[-63,-200],[-203,-375],[-191,-286],[-155,52],[-120,322],[-130,461],[-70,284],[-137,495],[-97,283],[-19,502],[-3,159],[-11,454],[-24,166],[-23,164],[-5,37],[-69,381],[-77,236],[-52,160],[-153,290],[-52,411],[2,78],[6,325],[107,574],[124,546],[4,133],[8,251],[-74,461],[-92,473],[-111,578],[-111,509],[-97,376],[-72,335],[-134,520],[-85,442],[-10,51],[-8,44],[-128,490],[-123,579],[-40,325],[2,243],[4,323],[6,88],[17,255],[43,791],[-70,290],[-98,219],[-18,32],[-56,168],[-102,170],[-81,88],[-43,47],[-354,138],[-193,-271],[-312,-831],[-30,-48],[-319,-509],[-450,140],[-93,29],[-195,206],[-102,190],[-15,29],[-251,228],[-391,153],[-208,38],[-391,-107],[-165,-153],[-43,-53],[-652,238],[-182,375],[-200,641],[-79,724],[-53,793],[-10,142],[29,624],[1,15],[-1,3],[-138,441],[-152,16],[-109,-174],[-75,-160],[-62,-134],[-73,-448],[-109,-174],[-167,65],[-169,103],[-33,19],[-86,121],[-591,1133],[-61,118],[-139,444],[-53,287],[-42,226],[-6,81],[-67,818],[-96,1161],[-6,374],[-5,237],[15,187],[14,192],[172,236],[214,47],[215,306],[27,356],[31,402],[-64,415],[-274,930],[-149,318],[-139,184],[-109,350],[-107,341],[-24,183],[75,1077],[12,176],[36,515],[-656,103],[-303,-48],[-522,-299],[-34,-42],[-56,-146],[-43,-151],[-35,-244],[-25,-175],[-30,-213],[0,-1],[-63,-451],[-1,-7],[-9,-55],[-7,-40],[71,-1244],[0,-4],[6,-796],[1,-112],[-65,-105],[-25,16],[-25,16],[-247,162],[-32,21],[-109,-175],[-103,-349],[-5,-26],[-28,-150],[-348,-803],[-153,-244],[-70,27],[-183,72],[-45,17],[-206,557],[-120,697],[-154,493],[-376,882],[-20,17],[-1,1],[-451,444],[-17,18],[-179,209],[-27,4],[-337,-39],[-1,0],[-325,-672],[-25,-50],[-52,20],[-35,14],[-43,16],[-114,181],[-177,279],[-46,18],[-36,14],[-11,4],[-84,-97],[-25,-77],[-23,-475],[-3,-71],[-7,-135],[104,-570],[31,-175],[-22,-295],[-197,-517],[-18,-49],[-421,-319],[-25,0],[-168,-45],[-236,-22],[-353,47],[-65,51],[-71,64],[-50,113],[-69,185],[-111,455],[-203,1235],[-41,552],[31,465]],[[453916,234069],[145,548],[92,243],[108,173],[179,322],[71,290],[-11,544],[-17,353],[-81,767],[-62,350],[-66,371],[-64,405],[-53,345],[-85,274],[-107,343],[-11,365],[2,67],[16,488],[4,703],[13,554],[-216,928],[-412,1953],[-127,744],[84,810],[-505,1576],[-88,339],[-4,14],[-92,415],[116,304],[32,85],[398,1073],[184,504],[107,278],[66,285],[99,415],[193,914],[63,328],[-382,941],[-31,443],[4,286],[2,125],[71,404],[117,541],[-37,416],[-88,2144],[424,254],[275,161],[151,252],[248,388],[158,1000],[-57,313],[-100,399],[-188,290],[-154,482],[-95,262],[-351,1045]],[[490073,275097],[5,-343],[-42,-330],[-1112,446],[-312,126],[-106,44],[-82,-811],[-99,-980],[-29,-296],[-222,237],[-36,-215],[260,-297],[22,91],[731,-963],[122,-47],[377,-192],[234,-109],[5,-2],[124,-61],[113,-232],[22,-353],[41,-327],[-65,-73],[-50,-56],[-27,-342],[2,-408],[44,-321],[-23,-349],[-41,-442],[30,-336],[-55,-343],[-63,829],[-254,-102],[-247,-115],[34,-408],[300,-198],[234,-912],[65,-611],[95,-547],[321,-367],[136,-194],[100,-165],[13,-22],[148,-205],[112,450],[186,748],[93,418],[221,886],[39,156],[33,133],[210,-71],[134,-46],[241,-83],[78,-27],[348,-124],[445,-453],[127,-138],[142,-143],[14,-14],[523,-525],[162,-163],[205,-202],[152,-159],[243,-218],[150,20],[199,1061],[200,1066],[60,321],[47,194],[54,227],[-101,513],[347,1486],[100,446],[169,717],[255,1085],[125,575],[297,1370],[115,545],[31,134],[48,216],[-172,363],[-213,451],[-353,723],[-20,41],[-81,166],[-99,202],[-274,567],[-275,571],[-155,319],[-83,170],[-810,-63],[-485,-38],[-175,-14],[-182,-15],[-236,-18],[-294,-22],[-121,-12],[-217,-23],[-254,-28],[-271,-18],[-443,-23],[-467,-76],[-65,-10],[-85,-276],[-86,-239],[-92,-315],[-85,-248],[-106,-351],[18,-374],[-15,-392],[-12,-385],[-129,-295],[-102,-178],[-78,-260]],[[741623,309827],[-95,237],[-133,303],[-54,109],[-111,222],[-413,800],[-137,266],[-112,207],[-300,628],[-147,305],[-177,364],[-126,162],[-193,199],[-142,135],[-52,49],[-261,300],[-86,78],[-71,65],[-146,16],[-237,-81],[-192,-34],[-139,34],[-142,172],[-5,6],[-8,10],[-241,279],[-182,174],[-158,211],[-212,267],[-206,231],[-119,-128],[-224,-352],[-144,71],[-159,115],[-271,257],[-158,-100],[-119,-156],[-448,-547],[-136,-407],[-187,212],[-396,-405],[-131,84],[-61,459],[-141,339],[-99,-298],[-168,-103],[-133,-558],[-168,0],[-13,-44],[-223,-761],[-137,-134],[-349,1023],[-90,287],[-152,-70],[-29,316],[33,373],[-20,303],[-316,355],[-15,88],[-168,311],[-36,-171],[-58,-101],[-64,-105],[-90,-143],[-1,-2],[-57,88],[-123,210],[-57,97],[-399,700],[-132,234],[-32,73],[-139,326],[-153,424],[-146,416],[-108,306],[-141,811],[-43,340],[-69,375],[-75,419],[57,317],[-24,45],[-76,145],[-95,457],[-124,856],[-131,856],[-61,403],[-95,624],[-111,790],[-235,1750],[-89,629],[-67,471],[-46,317],[54,357],[-38,137],[-53,194],[-131,516],[-45,342],[-128,975],[-26,660],[-18,496],[-19,541],[-12,345],[-11,397],[-11,404],[-10,358],[-3,443],[-8,485],[-8,541],[-9,359],[-13,430],[5,352],[-22,363],[0,204],[0,208],[-4,426],[-3,365],[-7,683],[-2,107],[-1,107],[-79,-53],[-161,-107],[-245,-178],[-323,-202],[-191,-120],[-253,-176],[-170,-119],[-371,-242],[-117,-76],[-81,-55],[-7,26],[-22,80],[-12,43],[-170,914],[-76,407],[-91,484],[-86,443],[-110,593],[-101,574],[-168,775],[-40,183],[-194,348],[-62,111],[-23,-56],[-81,-249],[-101,-262],[-111,-243],[-104,-199],[-118,-197],[-194,-307],[-129,-209],[-154,-246],[-126,-202],[-108,-164],[-116,-152],[-115,-129],[-56,-53],[-62,-58],[-14,-10],[-122,-88],[-138,-100],[-116,-85],[-168,-123],[-131,-95],[-131,-94],[-165,-122],[-125,-87],[-126,-53],[-128,-5],[-142,44],[-150,64],[-308,131],[-129,55],[-186,79],[-143,55],[-73,6],[-51,5],[-46,-14],[-78,-22],[-120,-74],[-36,43],[-158,186],[-296,221],[-81,286],[-34,332],[-79,734],[-151,623],[-47,752],[-123,519],[-78,336],[74,70],[341,127],[201,76],[-18,2055],[-6,645],[-4,247],[-45,316],[-68,510]],[[865519,248759],[-86,-40],[-407,319],[-295,478],[-114,246],[-115,251],[386,410],[284,692],[351,-358],[298,-57],[266,-129],[-130,-510],[-70,-273],[158,-593],[47,-173],[-573,-263]],[[845081,351134],[6,-58],[62,-694],[4,-42],[288,-773],[15,-754],[34,-1095],[19,-10],[370,-207],[261,314],[211,-488],[219,-204],[408,-95],[308,-993],[202,-1372],[292,-871],[458,-35],[303,-49],[290,-381],[229,146],[400,-146],[313,-877],[272,-592],[285,-840],[-228,-886],[-39,-812],[20,26],[288,364],[540,109],[395,364],[262,-373],[388,-286],[328,-337],[484,443],[249,-615],[-6,-1256],[231,-509],[190,-414],[277,-472],[351,137],[331,329],[388,244],[323,-317],[174,-1215],[161,-976],[45,-488],[-289,-38],[-405,-1002],[421,-236],[289,228],[127,542],[515,406],[413,-84],[-119,-1001],[342,-226],[508,-626],[418,-702],[275,50],[207,425]],[[858184,331814],[218,-465],[-1,-499],[-82,-577],[-81,-392],[-113,-723],[-125,-646],[-133,-556],[-185,-869],[-129,-563],[-43,-162],[-33,-122],[-141,-591],[-23,-373],[-78,-266],[-220,-272],[-95,-278],[-107,-274],[-18,-372],[-70,-598],[-142,-385],[-31,-359],[327,-1134],[-10,-462],[-71,-462],[41,-485],[119,-500],[45,-415],[78,-329],[-20,-555],[-44,-470],[58,-461],[-14,-352],[-27,-439],[116,-234],[5,-186],[6,-245],[17,-352],[-75,-282],[51,-453],[96,-243],[119,-7],[-44,-360],[132,39],[-9,-355],[-76,-326],[103,-258],[112,-133],[-29,-379],[47,-376],[52,-733],[-216,-345]],[[857441,311180],[-102,-6],[-450,-28],[-344,-857],[296,-884],[273,-465],[-231,-1013],[213,-686],[-201,-368],[-329,-560],[155,-849],[-519,-802],[221,-626],[2,-660],[74,-644],[-51,-765],[-79,-846],[46,-1154],[462,-653],[659,-449],[320,-411],[564,-264],[121,-650],[541,188],[619,-381],[321,-246],[154,-657],[381,327],[236,-165],[39,-1063],[6,-946],[-179,-1005],[-336,-886],[166,-258],[259,-703],[80,-1123],[-33,-1005],[-144,-777],[116,-1101],[54,-746],[-44,-1003],[377,-759],[309,-341],[83,-934],[64,-719],[-323,-322],[-289,-10],[-241,702],[-404,690],[-272,536],[-255,933],[-226,844],[-255,1170],[-419,-533],[-201,-16],[-225,-139],[-314,-217],[-391,112],[-353,87],[-352,145],[-466,-209],[111,1274],[194,589],[-260,692],[-367,-35],[-268,711],[-32,951],[-257,843],[-343,20],[-247,486],[-504,-219],[-310,136],[-187,1320],[-241,580],[-283,-94],[-320,-595],[-380,742],[-262,163],[-172,752],[-287,832],[-147,1052],[96,845],[-237,274],[-170,582],[-240,-318],[96,-787],[-56,-855],[78,-1176],[341,-749],[-202,-677],[-323,-71],[254,-707],[353,152],[232,-631],[355,-410],[148,-990],[238,133],[334,-158],[392,-108],[189,-738],[300,-61],[300,16],[320,103],[-68,-674],[-179,-537],[300,30],[284,-118],[164,-327],[-370,-548],[53,-915],[-180,-679],[-186,-669],[-17,-1112],[-113,-851],[-4,-628],[-143,-838],[-84,-722],[-342,-289],[-292,-234],[-359,-170],[-203,1011],[-328,53],[35,-913],[42,-860],[439,-534],[638,150],[352,372],[317,795],[99,588],[227,-146],[358,-580],[237,-816],[114,-1236],[383,240],[439,262],[423,282],[122,-986],[213,278],[303,464],[-231,992],[123,832],[346,-1127],[322,-995],[311,-1065],[396,-907],[417,-493],[448,-555],[-253,-916],[392,-969],[396,-336],[274,-693],[388,-524],[232,-154],[83,1288],[397,161],[-218,-1001],[259,-531],[332,-318],[370,-31],[-29,-1036],[-262,-608],[-59,-943],[-361,177],[-188,672],[-207,431],[-516,-676],[-76,-1427],[271,-77],[84,-663],[318,-642],[-127,-635],[-295,-263],[-308,-248],[-421,60],[-298,363],[-87,678],[-288,255],[-220,-383],[-302,325],[-168,921],[-362,-1097],[-373,-583],[-202,1109],[159,787],[-362,1033],[-130,794],[-278,961],[1,-791],[114,-577],[-181,-471],[-450,-375],[-117,-546],[-215,-90],[-236,632],[-247,-766],[-129,-433],[-207,-716],[436,-537],[-285,-493],[-311,-173],[-219,-90],[-175,-489],[-206,439],[-286,826],[-217,811],[45,684],[-228,220],[88,771],[242,447],[-289,221],[-215,756],[-148,599],[-114,781],[-230,-122],[-51,605],[-348,83],[-244,530],[-146,-851],[264,-239],[200,-145],[300,-666],[186,-987],[145,-999],[-267,-929],[324,-771],[99,-827],[181,-934],[-460,-605],[-286,-378],[-311,-180],[-190,-553],[-247,-250],[-71,-894],[231,411],[314,279],[262,390],[281,362],[400,382],[267,470],[161,-973],[385,-736],[365,347],[338,653],[201,-596],[162,549],[64,743],[245,-126],[359,177],[359,435],[213,-791],[231,-254],[258,-339],[401,-420],[-494,-372],[-337,29],[-237,190],[-199,72],[-268,-362],[336,-713],[301,-410],[286,-157],[-279,-659],[-111,-627],[-269,-105],[-578,-277],[-311,-233],[-289,61],[-276,306],[-330,-180],[-389,-132],[-424,-279],[80,-841],[389,183],[430,292],[256,-744],[308,115],[131,-486],[292,-224],[-133,-714],[244,-239],[-105,-719],[-343,-191],[-72,-1031],[-231,-305],[-264,-137],[-205,-902],[312,107],[341,-23],[277,582],[181,779],[285,193],[157,-881],[144,-990],[349,137],[-273,994],[-44,515],[-67,877],[49,1462],[184,715],[310,-453],[175,508],[230,-560],[204,-741],[247,505],[-222,840],[36,630],[258,-327],[248,448],[-314,558],[30,795],[531,-10],[-244,605],[237,410],[265,-312],[263,-168],[-30,1231],[284,118],[303,-532],[334,-529],[329,-189],[324,-16],[283,-274],[290,299],[229,-55],[360,178],[-300,451],[-52,79],[444,273],[256,183],[261,221],[87,216],[192,479],[381,96],[317,-92],[56,-258],[92,-425],[286,-347],[171,-367],[134,-289],[-273,-512],[-285,-543],[-93,15],[-248,41],[-72,-229],[-139,-451],[-288,485],[-45,-404],[-38,-333],[-355,-474],[61,-72],[382,-448],[279,-41],[190,-27],[-68,-1043],[333,-114],[442,-325],[46,-33],[191,639],[133,447],[148,-1031],[73,-322],[69,-300],[88,-113],[188,-240],[-55,-382],[-52,-363],[5,-487],[5,-433],[-160,-902],[319,-49],[356,580],[9,-87],[116,-1193],[42,-587],[16,-227],[-254,70],[-82,22],[-72,46],[-382,241],[-502,-102],[224,-684],[-69,-265],[-109,-420],[395,-214],[-316,-511],[-191,-305],[-89,-142],[-48,-1178],[208,-1099],[261,492],[264,-830],[-227,-461],[-275,15],[-264,-314],[-413,436],[-315,135],[-317,-135],[-467,-128],[-327,-24],[-398,10],[-341,-30],[-391,16],[-379,152],[-367,-250],[-262,404],[-5,908],[-552,-114],[312,-679],[-124,-1273],[-334,-903],[-276,-353],[-327,-528],[-346,-445],[-663,-274],[-356,-34],[-363,-207],[-360,-384],[-251,-28],[-336,-210],[-313,-230],[-283,-440],[-335,-68],[-457,343],[-314,135],[-324,-113],[-330,-316],[-251,520],[-156,978],[-412,-8],[-406,-733],[-384,-380],[-318,-493],[-211,-97],[-218,-116],[-313,-195],[-241,-469],[-285,-47],[-142,-24],[-145,1098],[-45,1282],[-7,1043],[-166,960],[-135,1349],[58,712],[-4,755],[-132,850],[-49,1016],[-404,447],[-341,714],[-349,974],[-254,757],[-247,-207],[-333,775],[-275,-14],[-199,-167],[-374,-451],[-263,1128],[-120,957],[336,155],[53,1626],[-33,1271],[-169,-692],[-224,515],[-311,185],[123,-670],[161,-872],[-340,-200],[-283,-336],[-260,43],[-217,298],[-236,404],[-234,451],[185,468],[227,248],[325,579],[-309,15],[-243,-110],[61,756],[-201,527],[-322,540],[17,-902],[5,-748],[-227,-757],[-386,590],[-43,800],[-355,1099],[-115,985],[60,644],[436,-52],[312,606],[-339,478],[-165,623],[-218,775],[-132,-677],[-284,147],[-176,428],[-150,594],[-60,767],[-263,457],[-187,595],[-118,597],[90,788],[227,295],[260,588],[31,491],[14,216],[-306,-416],[-207,-252],[-218,-358],[-193,-563],[-192,-507],[-53,-1050],[184,-519],[375,-762],[-160,-870],[-580,972],[-283,1052],[-238,1207],[-328,539],[-383,252],[-181,664],[-127,1382],[92,1453],[-297,643],[-323,601],[-266,649],[-223,1000],[-340,127],[-335,504],[-318,610],[-350,773],[-260,983],[-158,989],[-159,663],[123,513],[-307,265],[-268,588],[-254,399],[-178,921],[-183,586],[-235,555],[-173,435],[-237,847],[-319,1201],[-245,900],[-243,787],[-300,696],[-353,671],[-228,490],[-198,340],[-315,611],[-191,704],[-234,982],[-320,907],[-185,749],[6,702],[191,671],[70,635],[-32,74],[-224,527],[-95,787],[133,925],[-596,291],[-71,1105],[-40,-227],[-191,-1074],[-352,-627],[-202,-58],[-94,-28],[-84,71],[-207,176],[-458,561],[-45,154],[-272,938],[-184,310],[-55,727],[-275,283],[-284,255],[-1,2],[-282,964],[321,915],[194,722],[-8,15],[-192,328],[-325,405],[-286,-97],[-201,-265],[-247,-225],[-303,693],[-259,811],[-111,951],[-34,1046],[65,861],[202,949],[-261,774],[-287,115],[-104,538],[-1,8]],[[761918,286393],[219,-971],[161,-1279],[57,-453],[-13,-845],[-387,-2028],[-251,-766],[-234,-211],[-43,-694],[-188,-304],[-192,-388],[-60,-121],[-87,-80],[-222,-202],[-59,-167],[-192,-546],[-133,-1041],[-201,-388],[-226,-688],[-196,1167],[-464,1526],[156,385],[129,322],[88,239],[75,278],[81,258],[73,410],[47,356],[16,437],[-18,457],[-11,347],[-16,467],[-25,684],[-11,343],[0,16],[-3,123],[-4,204],[-9,310],[-4,151],[11,464],[8,305],[67,501],[175,560],[95,106],[25,28],[24,37],[83,128],[102,184],[279,590],[217,-55],[74,-19],[305,-133],[73,-312],[-27,349],[211,171],[425,-212]],[[754301,288909],[211,-272],[74,236],[360,1147],[21,-355],[39,-361],[12,-354],[111,-266],[92,-218],[127,-300],[-108,-912],[-101,-215],[-101,-1068],[-88,-562],[-88,-254],[-143,-257],[-132,-300],[21,-361],[17,-394],[14,-379],[3,-343],[4,-346],[28,-366],[14,-358],[73,-356],[43,-343],[55,-310],[109,-331],[76,-273],[93,-299],[185,-627],[196,-183],[199,-235],[110,-145],[117,-135],[117,-133],[229,-245],[119,-133],[283,-343],[112,-143],[204,-129],[124,-90],[177,-122],[123,-111],[119,-45],[143,-6],[275,15],[133,0],[176,22],[122,6],[173,70],[650,-818],[326,-992],[32,-1364],[-297,-1592],[-612,-2318],[-641,-943],[-678,317],[-204,-818],[-19,-75],[-362,-1908],[-114,-596],[16,-305],[102,-1988],[-238,-22],[-69,-7],[-39,-27],[-109,-77],[-31,-22],[-116,91],[-149,1],[-157,-44],[-100,-25],[-22,-5],[-290,-105],[-150,-66],[-136,-20],[-49,-10],[-71,-15],[-113,-130],[-16,-4],[-103,-26],[-196,-65],[-304,-330],[-1,-3],[-166,-335],[-129,-261]],[[754018,262520],[-222,15],[-127,-76],[-129,17],[-164,71],[-3,0],[-125,6],[-183,179],[-299,386],[-172,132],[-114,95],[-131,188],[-154,214],[-128,222],[-116,165],[-94,-324]],[[751857,263810],[-114,168],[-50,73],[-115,196],[-201,416],[-128,44],[-153,-66],[-150,-87],[-123,-67],[-135,-75],[-197,-158],[-192,-171],[-131,-180],[-182,-279],[-165,-383],[-95,-218],[-48,-327],[-11,-354],[-11,-495],[-6,-378],[-35,-457],[39,-407],[29,-402],[13,-493],[11,-456],[-4,-405],[-36,-339],[-68,-550],[-56,-339],[-47,-402],[-45,-366],[-31,-361],[-48,-574],[-1,-9],[-34,-340],[-21,-372],[-7,-510],[-38,-515],[-27,-393],[-69,-574],[-54,-346],[-79,-352],[-94,-269],[-108,-289],[-1,-3],[-65,-152],[-34,-82],[-131,-238],[-163,-255],[-158,-251],[-176,-249],[-109,-162],[-119,-197],[-141,-311],[-82,-232],[-15,-42],[-201,-598],[-100,-343],[-88,-355],[-71,-439],[-46,-453],[-21,-153],[-23,-169],[-8,-58],[-49,-320],[-76,-457],[-35,-377],[-56,-593],[-43,-479],[-54,-825],[-7,-463],[-1,-127],[-1,-143],[-1,-153],[22,-470],[35,-549],[15,-416],[1,-352],[4,-376],[13,-363]],[[746855,240744],[-89,-411],[-110,-321],[-129,-291],[-151,-350],[-141,-280],[-112,-200],[-113,-228],[-228,-244],[-153,-23],[-132,-7],[-184,80],[-43,322],[-89,269],[-174,-122],[-114,-221],[-143,-121],[-101,-127],[-19,-23],[-130,-93],[-129,-10],[-137,49],[-189,109],[-142,29],[-118,-154],[-125,-247]],[[743660,238129],[91,454],[95,290],[116,141],[123,100],[131,-123],[153,-102],[147,-48],[138,-18],[1,0],[127,51],[132,263],[122,191],[156,40],[316,34],[372,90],[150,226],[138,288],[109,321],[82,288],[73,315],[57,456],[40,548],[-18,751],[-6,482],[6,256],[3,130],[1,68],[15,637],[0,349],[-9,292],[-6,187],[2,422],[38,377],[8,412],[-18,461],[-10,390],[5,457],[5,498],[31,426],[86,405],[72,346],[2,343],[68,293],[80,370],[90,391],[86,304],[148,197],[127,244],[114,152],[125,145],[170,216],[182,167],[115,109],[102,237],[143,282],[137,238],[89,281],[56,347],[3,541],[-53,351],[-104,291],[-104,299],[-101,327],[24,387],[8,34],[67,315],[-15,373],[-58,301],[-154,415],[-109,281],[-115,344],[3,451],[7,354],[13,130],[-14,259],[-3,-3],[-49,-48],[-162,-160],[-90,-91],[-75,-75],[-166,-167],[-95,-411],[-117,-713],[-53,-329],[-57,-488],[-124,-655],[-47,-645],[-72,-561],[-87,-452],[-127,-129],[-121,91],[-148,113],[-112,141],[-120,38],[-131,208],[-167,264],[-125,85],[-131,101],[-112,38],[-63,21],[-148,-272],[-93,-650],[19,-356],[-51,-338],[-159,50],[-228,248],[-136,123],[-39,2],[-104,5],[-118,-63],[-178,-147],[-111,-142],[-95,-276],[-84,-388],[-62,-293],[83,-358],[67,-370],[-77,-291],[139,-269],[164,-60],[222,-225],[-39,-397],[-33,-585],[-169,-221],[-44,-16],[-110,-42],[-126,-39],[-148,206],[-94,211],[-144,309],[-51,167],[-36,119],[-59,357],[-46,769],[-19,504],[-82,409],[-88,291],[-119,184],[-116,198],[-68,111],[-47,-26],[-18,36],[-58,111],[-32,14],[-32,-6],[-148,-195],[-123,-139],[-177,78],[-590,256],[-330,143],[-225,-205],[61,-854],[-30,-217],[-65,-504],[437,-1364],[-449,299],[-137,87],[-142,95],[-191,129],[-100,37],[-13,-163],[2,-92],[2,-88],[9,-274],[109,-344],[97,-311],[99,-315],[357,-1208],[194,-915],[222,-1050],[103,81],[9,83],[-121,107],[-16,58],[0,81],[-16,96],[13,69],[15,17],[31,-9],[51,-85],[43,-41],[16,-7],[37,50],[-7,139],[-32,197],[8,49],[42,64],[34,-83],[20,-101],[19,-58],[42,61],[88,245],[104,176],[129,-283],[112,-171],[132,-261],[11,-21],[64,-407],[29,-374],[-7,-457],[-57,-811],[-31,-434],[-117,-1241],[-21,-351],[-32,-337],[-46,-415],[-32,-402],[-27,-516],[39,-339],[36,-411],[48,-385],[50,-316],[80,-463],[11,-426],[-34,-603],[-29,-558],[-24,-429],[-20,-370],[-23,-413]],[[742138,236697],[-170,-211],[-135,-64],[-119,160],[-150,-269],[-161,-140],[-103,-278],[-129,-196],[-137,-152],[-173,-65],[-123,31],[-113,-240],[-89,-345],[-129,-152],[-168,-276],[-74,-313],[0,-1],[-62,-354],[-131,-68],[-133,-106],[-144,-121],[-153,-17],[-149,-76],[-137,-84],[-128,-101],[-121,-58],[-132,-63],[-148,-108],[-189,86],[-121,12]],[[738417,233128],[-196,-42],[-204,19],[-133,10],[-120,9],[-123,78],[-147,78],[-172,5],[-181,68],[-135,54],[-165,118],[-178,170],[-129,93],[-154,118],[-127,73],[-129,12],[-149,-22],[-145,14],[-121,76],[-190,47],[-172,-80],[-149,-46],[-117,-60],[-122,-53],[-134,-52],[-154,-60],[-120,22],[-192,49],[-129,45],[-145,40],[-141,12],[-125,84],[-130,-35],[-155,-20],[-140,-25],[-124,-20],[-124,-21],[-130,-81],[-111,-129],[-129,-211],[-167,-125],[-154,65],[-99,188],[-119,43],[-146,-169],[-73,-308],[-112,-264],[-137,-108],[-120,-71],[-124,-4],[-51,-50],[-63,-61],[-137,12],[-126,-55],[-104,-189],[-126,-242],[-156,-217],[-136,-161],[-161,-204],[-287,-188],[-139,-77],[-131,9],[-244,-112],[-119,103],[-104,247],[-62,425],[-90,331],[-1,6],[-77,279],[-41,375],[-103,275],[-116,112],[-129,135],[-128,134],[-138,142],[-165,171],[-120,130],[-227,235],[-145,101],[-150,-71],[-173,-5],[-120,60],[-206,19],[-196,-63],[-125,67],[-307,172],[-125,-80],[-182,-63],[-294,-16],[-191,-27],[-316,-217],[-146,-377],[-162,83],[-131,275],[-65,429],[-39,352],[-72,413],[-100,546],[-100,214],[-122,26],[-167,-53],[-164,242],[11,420],[5,458],[7,507],[-14,373],[-35,505],[-127,349],[-164,-8],[-94,-244],[-95,-468],[-100,-261],[-144,-140],[-208,22],[-147,117],[-146,191],[-115,203],[-73,289],[-51,538],[-21,547],[-37,339],[-134,325],[-105,279],[-82,271],[-98,206],[-139,51],[-132,-36],[-146,-38],[-149,51],[-116,106],[-125,512],[-100,520],[-125,218],[-159,156],[-183,198],[-160,261],[-147,203],[-167,137],[-113,273],[-58,355],[-79,546],[-56,354],[-42,331],[-35,335],[-26,525],[0,394],[-32,637],[-109,256],[-125,331],[-133,390],[-232,416],[-192,231],[-126,229],[-109,286],[-104,181],[-160,93],[-123,-45],[-254,-300],[-82,-269],[-110,-472],[-87,-232],[-182,-152],[-138,27],[-121,22],[-189,50],[-136,121],[-173,227],[-212,536],[-140,114],[-120,-37],[-121,-38],[-117,-94],[-143,-200],[-188,-357],[-187,-212],[-135,-302],[-447,-861],[-165,70],[-123,158],[-128,103],[-133,42],[-250,51],[-118,47]],[[714378,247621],[-154,178],[-102,191],[-179,373],[-98,371],[-141,734],[-98,626],[-111,340],[-182,409],[-145,381],[-129,489],[-76,558],[-119,1506],[-145,1592],[-234,1327],[-86,277],[-201,130],[-161,-54],[-178,-68],[-176,33],[-142,22],[-131,34],[-256,-22],[-267,-86],[-182,-107],[-133,-391],[-50,-477],[-45,-764],[-28,-461],[-108,-496],[-103,-360],[-159,-364],[-139,-133],[-123,-35],[-173,-36],[-150,-107],[-127,12],[-170,577],[-251,883],[-122,392],[-154,1057],[-68,657],[-89,525],[-76,455],[-72,436],[-234,709],[-61,72],[-77,90],[-144,271],[-179,170],[-172,39],[-343,-88],[-146,-127],[-263,-503],[-127,-378],[-91,-495],[-53,-458],[-24,-338],[4,-723],[36,-351],[169,-596],[19,-419],[-101,-403],[-105,-327],[-154,-318],[-150,-207],[-145,-23],[-118,102],[-191,208],[-170,199],[-138,123],[-167,235],[-155,55],[-142,-49],[-249,-151],[-165,-127],[-128,-142],[-103,-241],[-20,-352],[-10,-443],[-8,-668],[-46,-787],[-94,-456],[-74,-341],[-70,-628],[42,-341],[33,-388],[-76,-427],[-153,-368],[-178,-282],[-242,-254],[-139,-88],[-130,32],[-236,191],[-154,68],[-131,30],[-125,14],[-148,3],[-152,30],[-597,275],[-228,236],[-157,156],[-200,299],[-128,293],[-133,381],[-117,300],[-148,513],[-49,519],[18,787],[0,386],[-12,440],[-16,380],[-74,679],[-105,381],[-129,293],[-179,414],[-167,297],[-136,209],[-147,338],[-168,347],[-123,303],[-172,435],[-159,319],[-258,461],[-125,328],[-132,195],[-185,218],[-118,101],[-120,140],[-295,216],[-223,98],[-174,26],[-125,-45],[-261,227],[-381,564],[-139,235],[-130,218],[-163,283],[-150,271],[-79,836],[-13,367],[-34,437],[-78,569],[-20,344],[-30,423],[-7,426],[11,517],[88,247],[114,174],[133,141],[124,169],[188,130],[127,-19],[129,56],[86,360],[52,350],[60,309],[97,305],[119,296],[121,121],[93,382],[-69,385],[-124,122],[-99,255],[-18,493],[167,474],[94,779],[-130,529],[-137,209],[-227,111],[-125,143],[-186,143],[-124,-95],[-123,42],[-177,313],[-179,91],[-122,-9],[-217,33],[-180,17],[-149,65],[-138,185],[-194,183],[-265,116],[-246,83],[-191,22],[-382,-20],[-134,34],[-244,-142],[-313,-62],[-445,144],[-131,8],[-211,43],[-131,206],[-107,295],[-206,363],[-148,202],[-164,270],[-220,258],[-128,198],[-279,315],[-145,362],[-79,308],[-65,326],[-29,373],[75,1563],[30,305],[-62,193],[-348,1079],[-80,148],[-172,298],[-90,238],[-101,231],[-239,552],[-110,134],[-224,104],[-187,21],[-64,4],[-613,-67],[-167,-64],[-96,-43],[-463,925],[-46,368],[23,338],[59,360],[34,407],[-19,605],[-29,448],[-24,545],[39,407],[7,345],[7,395],[-49,394],[-45,318],[-88,771],[5,570],[141,559],[92,234],[150,189],[78,378],[30,472],[74,353],[21,500],[163,228],[222,-234],[174,36],[121,258],[20,550],[-286,1044],[-166,496],[-73,379],[1,397],[17,390],[-60,524],[-18,629],[-50,370],[-94,389],[-46,368],[-25,346],[-33,387],[-55,385],[-28,687],[-25,347],[-13,428],[40,405],[101,227],[107,163],[130,52],[124,-179],[154,-126],[125,-91],[132,4],[155,-99],[214,-223],[160,-194],[144,-125],[141,-86],[167,-173],[152,34],[140,225],[116,583],[103,427]],[[602457,293040],[-116,-2270],[-99,-1880],[-18,-348],[-28,-522],[-20,-392],[-23,-435],[-24,-458],[-19,-346],[-62,-1152],[-72,-1242],[-69,-1179],[-74,-1302],[-91,-2072],[-44,-953],[-34,-768],[-25,-655],[81,-430],[33,-347],[124,-195],[152,-174],[143,-169],[121,-192],[114,-268],[29,-438],[-98,-245],[-161,-335],[-345,-597],[-126,-272],[-47,-336],[-20,-464],[-103,-209],[-140,107],[-129,-22],[-95,-241],[-92,-357],[-145,-97],[-144,127],[-130,-227],[-12,-438],[-23,-345],[-17,-342],[-49,-319],[-117,-355],[-98,-291],[-114,-419],[-97,-212],[-173,-213],[-184,-154],[-111,-177],[-117,-90],[-131,-161],[-174,-209],[-121,-214],[-216,-216],[-133,-195],[-117,-150],[-146,-334],[-98,-300],[-134,-370],[-130,-399],[-58,-338],[-57,-344],[-49,-315],[-88,-308],[-68,-309],[-65,-329],[-54,-308],[-59,-360],[-51,-316],[-63,-368],[-25,-353],[-72,-324],[-81,-265],[-91,-264],[-95,-323],[-108,-205],[-104,-178],[-110,-210],[7,-394],[-35,-331],[-118,-105],[-112,-118],[-103,-240],[-101,-193],[-58,-306],[-70,-335],[-36,-337],[-80,-260],[-137,-146],[-131,-146],[-156,-231],[-67,-283],[-128,-404],[-105,-328],[-91,-355],[-66,-293],[-107,-246],[-112,-259],[-82,-351],[-80,-265],[-63,-309],[-146,-578],[-56,-336],[-80,-263],[-88,-248],[-102,-210],[-95,-269],[-100,-185],[-115,-275],[-113,-422],[-82,-330],[-87,-314],[-108,-478],[-84,-244],[-89,-308],[-49,-117],[-54,-125],[-63,-352],[-108,-172],[-125,-233],[-75,-320],[-150,-618],[-124,-538],[-96,-416],[-88,-382],[-70,-305],[-75,-532],[-36,-255],[33,-368],[-23,-338],[-46,-350],[24,-346],[7,-63],[30,-278],[-2,-364],[-57,-325],[-13,-39],[-131,-387],[-60,-416]],[[592124,242031],[-158,-191],[-20,-17],[-265,-220],[-117,-67],[-160,-86],[-123,-52],[-141,-71],[-125,-136],[-169,-473],[-168,-500],[-106,-184],[-122,-87],[-131,-83],[-159,-122],[-133,-155],[-127,-136],[-140,-163],[-114,-143],[-113,-178],[-244,-440],[-148,-135],[-137,-276],[-150,-123],[-154,102],[-120,172],[-120,90],[-130,45],[-125,-98],[-127,-190],[-203,-227],[-129,28],[-158,107],[-123,-148],[-95,-237],[-235,-587],[-68,-383],[-245,-2153],[-88,-456],[-504,-1137],[-117,-203],[-117,-182],[-119,-238],[-117,120],[-139,302],[-136,75],[-124,-2],[-132,180],[-88,353],[-146,381],[-120,-58],[-194,-53],[-146,-102],[-136,-155],[-176,-273],[-196,-303],[-128,-147],[-78,-63],[-169,-136],[-121,157],[-70,302],[-111,185],[-132,102],[-108,208],[-53,320],[-99,248],[-191,353],[-97,266],[-100,263],[-110,180],[-152,201],[-118,69],[-280,185],[-124,11],[-137,-95],[-122,-104],[-143,-74],[-196,6],[-231,182],[-131,-22],[-127,-136],[-110,-175],[-187,-331],[-145,-311],[-238,-666],[-263,-738],[-103,-263],[-206,-473],[-117,-270],[-266,-528],[-158,-523],[-135,-507],[-204,-677],[-310,-955],[-597,-1941],[-127,-299],[-184,-313],[-240,-258],[-130,81],[-469,297],[-1033,652],[-267,169]],[[575210,227195],[-174,110],[-597,379],[-789,498],[-790,499],[-1467,987],[-87,59],[-102,608],[12,959],[174,525],[94,616],[46,845],[43,417],[40,535],[-135,558],[-129,591],[-69,503],[-92,689],[-58,333],[-94,666],[-51,327],[-65,415],[-75,361],[-99,229],[-133,259],[-120,134],[-171,142],[-217,206],[-155,150],[-198,174],[-119,90],[-142,80],[-164,63],[-131,30],[-163,87],[-76,289],[-90,235],[-124,181],[-122,101],[-206,69],[-180,52],[-193,61],[-129,107],[-141,189],[-152,163],[-120,61],[-128,96],[-131,82],[-154,-15],[-125,-136],[-111,-136],[-179,-191],[-142,-72],[-256,-180],[-99,-208],[-163,-267],[-120,-55],[-112,-156],[-129,-172],[-194,-214],[-139,56],[-96,222],[-120,128],[-135,0],[-150,5],[-122,-127],[-109,-217],[-116,-438],[-134,-13],[-174,136],[-102,226],[-79,343],[-103,220],[-59,164],[-39,108],[-92,270],[-58,313],[-64,445],[-21,458],[9,342],[3,404],[10,504],[9,396],[13,606],[25,411],[65,514],[-31,547],[-62,333],[37,343],[10,360],[-79,288],[-198,389],[-119,507],[-30,340],[-27,496],[-54,309],[-138,516],[-122,485],[-37,326],[-66,670],[-64,539],[-95,318],[-85,278],[-86,280],[-105,192],[-124,178],[-187,259],[-120,138],[-164,187],[-119,48],[-215,67],[84,389],[14,1144],[17,1106],[-206,-219],[-128,-31],[-272,-156],[-429,-14],[-44,796],[-73,1386],[-28,539],[-94,1762],[-47,867],[-56,1171],[-52,940],[-5,91],[-28,501],[-129,673],[-179,903],[-59,308],[-258,1321],[-120,592],[-90,460],[-135,698],[-66,340],[-267,1336],[-129,666],[-109,568],[-69,356],[-179,908],[-28,141],[-69,354],[-224,1154],[-108,562],[-73,368],[-94,468],[-40,201],[-140,700],[-147,771],[-74,407],[-157,774],[-188,923],[-115,585],[-201,1018],[-206,1050],[-96,488],[-118,601],[-262,1198],[-238,1206],[-173,878],[-223,1119],[-81,412],[-191,979],[-178,905],[-166,843],[-226,1059],[-63,294],[-281,1258],[-148,770],[-61,319],[-747,3888],[-282,1464],[-62,309],[-491,2367],[-141,638],[-4,16]],[[916460,187827],[168,-637],[-158,-538],[-208,-309],[-89,-132],[-167,101],[-132,79],[-65,276],[-84,353],[-60,991],[224,-379],[67,416],[84,523],[-68,1335],[303,-893],[185,-1186]],[[912978,191936],[211,-613],[366,565],[93,-320],[143,-486],[24,-83],[383,-586],[198,198],[301,-90],[282,-87],[225,75],[133,-272],[127,-259],[0,-414],[0,-589],[-11,-291],[-11,-305],[-216,-384],[-308,-226],[-209,-616],[-204,-673],[-111,-144],[-426,-557],[-337,224],[-284,385],[-313,754],[-51,544],[-96,24],[-133,32],[-58,200],[-107,364],[-27,94],[-73,523],[-73,526],[7,1283],[112,676],[59,360],[77,117],[213,321],[94,-270]],[[918533,203642],[-147,-563],[-234,701],[259,899],[369,155],[142,-995],[-389,-197]],[[924032,201743],[-238,-674],[-288,194],[-140,-624],[-34,-611],[-198,-773],[-201,-581],[-202,-508],[-277,-563],[-424,-372],[-437,-393],[-398,-460],[-263,-602],[-1654,-1592],[-206,2996],[256,-589],[271,-663],[395,-52],[20,239],[46,549],[248,939],[211,456],[84,289],[115,399],[32,137],[115,481],[157,509],[132,753],[240,242],[323,213],[117,78],[331,162],[340,263],[-108,166],[-183,283],[33,1062],[48,92],[3,6],[-139,1259],[720,593],[402,331],[1026,1849],[76,140],[1431,2633],[509,605],[36,42],[353,-370],[0,-213],[107,-40],[11,-643],[5,-305],[-256,-988],[-179,-490],[-119,-326],[-132,-310],[-129,-304],[-254,-588],[-441,-1120],[-395,-950],[-266,-583],[-47,-102],[-267,-676],[-318,-895]],[[923821,211993],[407,-339],[341,603],[273,18],[238,138],[56,-42],[253,-188],[1,-159],[1,-379],[-141,-646],[-318,-749],[-45,33],[-292,-931],[-1058,277],[-247,1713],[-179,55],[-343,-381],[-193,2588],[271,520],[403,774],[426,-410],[33,-9],[16,-4],[45,-12],[118,-32],[324,-88],[0,-831],[-328,-1279],[-62,-240]],[[927867,215338],[73,-1510],[-70,-321],[573,-735],[-230,-583],[-414,-1049],[-414,-1048],[-289,1478],[0,285],[-20,534],[-15,388],[-165,169],[-177,182],[-354,-112],[-337,-169],[83,685],[29,716],[199,145],[248,280],[39,44],[395,-197],[127,71],[130,73],[133,454],[103,348],[66,969],[78,1179],[63,296],[65,309],[356,97],[-113,-533],[-27,-260],[-57,-549],[-91,-493],[-129,-695],[142,-448]],[[929973,219028],[418,-375],[40,221],[237,-1576],[-40,-115],[-70,-716],[-1660,-2658],[-165,503],[-294,783],[-215,1527],[177,587],[183,526],[253,339],[542,167],[398,781],[134,4],[62,2]],[[927902,225748],[-259,-206],[-45,137],[-172,525],[100,901],[7,501],[20,-19],[171,-160],[281,-897],[-103,-782]],[[933473,227845],[-60,-1167],[-56,-598],[-82,-868],[-310,-1162],[-299,-129],[-46,-272],[-117,-693],[-186,-471],[-81,-206],[-167,-451],[-104,-281],[-262,-840],[-377,-712],[-137,-41],[-189,-56],[-367,524],[-266,421],[-242,-409],[-34,-58],[-92,-20],[-172,-38],[-120,-27],[-321,407],[2,-641],[-130,-417],[-375,-638],[-375,-305],[3,368],[3,426],[179,460],[126,320],[152,963],[-216,481],[-30,-70],[-156,-362],[-428,-820],[-438,-1056],[-302,-188],[-116,-72],[-49,-552],[-30,-335],[141,-477],[58,-720],[-183,-651],[-81,323],[-131,522],[-376,-293],[-388,193],[104,-689],[-106,18],[-154,26],[-246,-287],[-61,-46],[-192,-144],[-37,-29],[-122,-189],[-141,-220],[-302,57],[-19,-913],[18,-284],[29,-468],[236,-889],[-207,-115],[-81,93],[-178,414],[-150,579],[-85,721],[-168,563],[-9,434],[-13,693],[238,1483],[251,857],[217,985],[449,1245],[230,570],[89,220],[66,230],[56,196],[232,432],[372,134],[286,310],[131,490],[159,75],[238,113],[44,35],[53,43],[191,155],[196,247],[67,52],[113,89],[244,113],[138,-773],[58,-327],[62,-840],[149,869],[170,1231],[67,96],[249,354],[280,201],[155,112],[328,176],[189,104],[5,3],[271,166],[195,241],[69,86],[305,65],[249,419],[273,271],[393,-55],[161,519],[122,392],[335,513],[503,645],[88,-91],[334,-345],[23,-419],[18,-324]],[[933618,237648],[110,-612],[100,-604],[56,-809],[7,-205],[1,-9],[13,-389],[13,-358],[-7,-80],[-77,-914],[-8,-93],[-127,-1008],[-168,-948],[-226,-1170],[-266,-369],[-371,172],[-252,-118],[-229,-181],[-303,-291],[-230,-302],[-299,-155],[-469,-680],[-314,-614],[-395,-2],[-115,-56],[-276,-137],[-398,235],[-272,376],[-233,613],[10,337],[17,559],[-345,759],[336,827],[-117,732],[118,712],[406,-1405],[4,-7],[181,-389],[162,-229],[334,-473],[419,82],[106,20],[90,-20],[195,-45],[249,878],[-268,-3],[-63,904],[-63,343],[-138,758],[-41,298],[-57,410],[216,294],[200,73],[42,16],[154,-775],[284,-455],[310,18],[317,231],[107,79],[361,744],[0,69],[0,219],[1,601],[-243,439],[-139,329],[-167,399],[285,762],[242,-651],[254,802],[-266,421],[81,149],[192,351],[349,-652],[258,374],[-36,813],[175,-213],[106,-129],[117,-648]],[[931690,236881],[-66,-186],[-195,59],[-371,-467],[-1,-1],[-202,-360],[-178,315],[-2,3],[158,608],[13,296],[22,520],[259,909],[272,407],[261,-39],[248,-539],[105,-191],[101,-181],[-263,-703],[-161,-450]],[[921771,249869],[-10,-1163],[-281,25],[-84,1130],[19,340],[19,332],[85,629],[27,188],[80,570],[26,561],[7,138],[247,-611],[-31,-463],[-52,-764],[-52,-912]],[[930759,251777],[1,-369],[-136,-75],[-46,-25],[-356,337],[-434,-309],[-339,76],[-272,-3],[-333,-88],[-252,-657],[-291,-155],[-34,163],[-122,584],[177,1216],[360,155],[34,15],[284,583],[106,615],[-22,1081],[46,643],[275,168],[206,125],[204,-753],[84,-307],[390,-151],[150,-940],[187,-665],[132,-823],[1,-441]],[[924937,256974],[161,-479],[284,195],[302,-93],[176,-169],[115,-110],[-191,-838],[-306,-207],[-326,66],[-375,331],[-93,82],[-187,-653],[97,-943],[-41,-602],[-75,-611],[256,-339],[151,-200],[459,349],[301,-136],[319,362],[190,-87],[9,-4],[20,68],[68,223],[67,220],[125,624],[235,207],[295,-41],[71,-430],[62,-375],[99,-519],[107,-558],[175,-858],[122,-761],[109,-478],[105,-464],[277,-383],[-18,-177],[-75,-747],[-162,-744],[7,-886],[-191,-542],[-334,-401],[-276,-139],[-196,-231],[-6,-9],[-103,-146],[-158,-223],[-37,-368],[-33,-328],[-340,731],[-242,139],[-248,-573],[-12,-140],[-34,-429],[-34,-418],[-256,-1062],[-120,-1193],[-69,-615],[-36,-313],[-129,-947],[-308,-820],[31,-727],[-110,-643],[-40,-232],[-47,-154],[-220,-725],[-1,-144],[-1,-444],[-250,15],[84,-736],[-8,-17],[-219,-478],[6,-150],[25,-618],[-63,-725],[-1,-777],[-91,-768],[-38,-338],[-46,-418],[78,-1240],[-180,-520],[-69,-980],[1,-207],[2,-505],[186,-571],[211,410],[126,244],[101,968],[227,173],[58,-658],[273,662],[275,-561],[250,548],[56,-135],[134,-326],[-60,-625],[-39,-402],[-443,199],[175,-809],[91,-422],[190,-437],[114,-264],[402,-832],[-51,-698],[-48,-667],[-57,-228],[-184,-735],[-298,-543],[-326,-635],[-317,-1075],[-42,-558],[-179,-764],[-6,-33],[-174,-898],[-100,-935],[-31,-1603],[-570,785],[-741,-988],[-140,1195],[348,250],[20,349],[26,440],[-307,126],[-388,174],[-84,-143],[-220,-372],[-248,161],[-207,-620],[-319,47],[110,-996],[-43,-844],[-24,-964],[-46,-995],[-33,-422],[-64,-809],[-175,-997],[-175,-740],[-64,1445],[39,701],[38,687],[6,460],[13,880],[-4,364],[-3,353],[1,750],[-24,977],[33,716],[2,39],[46,835],[74,702],[172,1184],[121,1052],[158,908],[-43,1113],[-14,1060],[32,535],[40,657],[30,237],[73,574],[55,707],[-64,1235],[-16,386],[-22,549],[-4,473],[-3,459],[-20,400],[-12,246],[-18,583],[0,12],[135,1161],[-157,874],[71,595],[-123,605],[-143,595],[-295,-315],[-118,454],[-84,325],[-77,308],[-74,294],[-336,275],[-325,-456],[-224,-323],[-81,953],[-23,157],[-91,613],[126,630],[322,25],[306,368],[239,319],[8,287],[10,302],[243,-54],[51,-12],[171,548],[298,588],[12,24],[250,-684],[364,1068],[442,857],[240,1098],[-25,370],[-62,888],[-55,864],[-11,159],[-60,1387],[27,653],[48,986],[-40,979],[-3,605],[-2,346],[44,1224],[379,-327],[58,861],[183,530],[218,396],[55,681],[227,163],[3,2],[265,211],[350,-164],[-22,1239],[-210,473],[-51,114],[-76,40],[-148,78],[305,904],[236,-300],[1,-1],[107,-137],[125,557],[76,339],[469,418]],[[933472,242386],[-405,-11],[-269,1039],[267,199],[324,80],[35,1172],[-317,382],[-10,62],[-126,792],[206,203],[272,281],[193,689],[-233,439],[215,397],[151,279],[-259,808],[210,320],[2,314],[4,756],[-56,355],[-54,336],[-2,361],[-1,304],[-267,253],[14,689],[101,254],[146,369],[245,549],[21,47],[161,361],[71,162],[-25,254],[-109,1081],[-152,1021],[-153,576],[-13,709],[447,-94],[175,-1518],[113,-631],[338,-1368],[82,-802],[42,-689],[23,-793],[8,-770],[-7,-655],[-52,-916],[-127,-1404],[-112,-1071],[-131,-977],[-51,-806],[-141,-1265],[-189,-1042],[-138,-722],[-218,-243],[-249,-116]],[[921319,258050],[117,-219],[89,-167],[186,-571],[94,-286],[40,-134],[98,-322],[13,-648],[-95,50],[-237,123],[-289,406],[-79,752],[-214,883],[-105,-44],[-397,-169],[129,1377],[103,561],[36,192],[169,322],[117,224],[47,91],[220,424],[-1,-99],[-8,-759],[-5,-27],[-89,-483],[67,-521],[-6,-956]],[[935619,260032],[-643,-437],[-217,527],[301,382],[168,76],[68,30],[134,77],[250,144],[443,116],[147,-706],[-366,-140],[-285,-69]],[[932208,270412],[-354,-525],[125,860],[105,259],[151,376],[303,99],[270,532],[207,-231],[-185,-1112],[-37,-13],[-160,-56],[-207,-23],[-218,-166]],[[928627,268174],[-189,-97],[-171,353],[-51,104],[-20,2099],[102,194],[217,411],[571,939],[46,677],[23,346],[163,369],[54,122],[164,-240],[536,-367],[-129,-1084],[-152,-457],[-175,-527],[-373,-1275],[-197,-703],[-26,-92],[-209,-555],[-184,-217]],[[936922,270306],[-159,-755],[-315,-613],[-216,373],[-196,453],[-232,55],[-282,-17],[-161,-335],[-124,-495],[-112,895],[249,910],[339,922],[256,797],[140,220],[56,86],[210,472],[259,435],[215,-549],[212,-710],[17,-232],[41,-535],[-34,-586],[-163,-791]],[[938902,271157],[87,-1241],[-464,265],[-446,74],[-252,-178],[147,877],[-74,773],[5,977],[159,807],[176,281],[96,154],[108,-63],[133,-77],[5,-196],[28,-1055],[-19,-95],[-158,-804],[179,-380],[290,-119]],[[938296,262334],[-55,-126],[-131,-298],[-271,-596],[-246,-526],[-246,-583],[-239,-467],[-318,-502],[-215,-244],[-74,-83],[-188,312],[126,564],[70,359],[101,510],[-151,762],[139,1227],[56,-242],[101,-436],[327,-340],[43,376],[53,457],[396,-239],[368,125],[24,590],[7,163],[137,289],[282,592],[260,771],[163,931],[-125,772],[114,675],[-14,57],[-167,706],[-47,1107],[501,166],[352,724],[347,849],[329,986],[279,1410],[275,896],[378,697],[393,794],[472,279],[213,422],[61,120],[54,107],[81,975],[95,1288],[-332,993],[161,741],[332,635],[360,-245],[248,-244],[234,-486],[111,-743],[-24,-933],[-39,-934],[-153,-1279],[-203,-1176],[-218,-876],[-256,-994],[-377,-1291],[-298,-829],[-279,-402],[-305,-762],[-177,-290],[-203,-451],[-231,-501],[-200,-357],[-281,-553],[-392,-734],[-335,-518],[-220,-723],[-354,-1202],[-215,-698],[-214,-709],[-250,-815]],[[926334,275968],[-85,-465],[-103,-464],[-131,-590],[10,-863],[6,-505],[16,-113],[103,-765],[70,-520],[42,-65],[303,-474],[388,-80],[466,450],[215,-1239],[117,-37],[118,-37],[92,-1137],[55,-678],[105,-431],[60,-246],[-449,184],[30,-604],[40,-783],[-342,325],[-184,-702],[-82,-1323],[-4,-219],[-8,-416],[-15,-774],[-145,-379],[-61,-159],[-170,649],[-351,-84],[-73,222],[-204,619],[-78,134],[-199,342],[-1,2],[-7,-214],[-9,-287],[-12,-396],[-3,-82],[-4,-174],[-10,-433],[15,-501],[6,-178],[0,-11],[5,-156],[22,-687],[13,-686],[4,-172],[271,338],[41,-530],[-264,-698],[-283,-295],[-265,-116],[-420,-222],[-384,-273],[-338,-303],[-336,-388],[-210,-154],[-68,-26],[-241,-93],[-299,-379],[-304,-145],[-288,-164],[-1,-1],[-35,-3],[-291,-24],[-259,298],[-93,106],[-254,979],[92,1124],[210,846],[103,489],[38,182],[101,399],[63,249],[45,178],[191,663],[181,807],[43,24],[152,85],[196,1166],[217,396],[100,-1101],[44,-948],[301,-433],[1,-1],[18,60],[31,103],[137,467],[49,166],[61,842],[187,397],[106,672],[356,-139],[60,-23],[33,-70],[160,-338],[200,1],[71,0],[32,0],[192,515],[50,481],[44,425],[4,20],[86,504],[98,574],[-17,108],[-181,1137],[11,282],[13,361],[76,915],[-365,-80],[-131,-747],[-193,417],[-381,413],[39,785],[11,214],[191,-161],[14,828],[112,81],[163,119],[122,311],[49,125],[88,672],[48,367],[278,961],[10,112],[19,210],[53,590],[34,905],[185,-456],[115,953],[11,94],[268,845],[-156,651],[88,284],[163,531],[137,647],[104,489],[86,682],[45,361],[3,643],[43,599],[316,500],[253,863],[31,-137],[116,-500],[37,-459],[36,-431],[2,-595],[2,-555],[-109,-1301],[70,-386],[87,-476],[167,-602],[-266,-355],[-462,-787],[-293,-303],[-254,-173],[-162,-877],[-29,-161]],[[934511,288294],[-198,-1020],[-149,148],[-238,237],[-236,436],[43,1030],[184,163],[99,-83],[195,-165],[203,-503],[97,-243]],[[934224,271160],[-295,-50],[-279,125],[-26,1505],[611,2096],[523,5197],[72,924],[177,6561],[5,640],[0,70],[8,5],[4,3],[3,201],[11,709],[289,322],[72,81],[627,-250],[29,-108],[139,-525],[-1,-184],[0,-55],[0,-11],[-15,-4542],[-553,-6071],[-788,-5272],[-613,-1371]],[[942576,285463],[-116,-183],[-93,933],[-231,1047],[-23,641],[-11,296],[-17,481],[-37,1064],[111,1193],[37,987],[307,-105],[41,-542],[51,-684],[149,-802],[35,-187],[304,-845],[60,-800],[-261,-1149],[-136,-1075],[-170,-270]],[[942259,301886],[-248,-615],[-353,311],[-207,422],[-33,807],[1,652],[0,221],[96,892],[301,862],[327,156],[114,55],[258,-1145],[12,-921],[-33,-331],[-40,-408],[-115,-568],[-80,-390]],[[950611,311035],[38,-374],[10,-776],[-30,-470],[-37,-581],[-234,-825],[-409,-905],[-149,-396],[-120,-321],[-262,-756],[-141,-521],[-226,-289],[-28,-110],[-407,-1563],[-69,-265],[-1256,-4827],[-3074,-13173],[-95,-407],[-590,-1402],[-246,-239],[-231,-175],[-209,-53],[-357,14],[-365,203],[87,877],[274,847],[473,715],[221,595],[247,685],[108,1242],[415,614],[29,869],[173,778],[60,902],[29,715],[18,956],[75,791],[249,786],[251,240],[36,178],[88,438],[22,112],[3,179],[5,469],[31,640],[67,313],[132,620],[367,919],[343,815],[-81,297],[-104,378],[105,613],[62,368],[39,749],[-101,671],[-93,554],[180,727],[275,123],[238,762],[125,832],[38,251],[-251,689],[-328,415],[-373,-56],[-359,-190],[1,224],[3,532],[-495,-608],[-228,82],[-152,55],[0,288],[1,300],[109,433],[2,5],[230,-187],[153,968],[106,528],[102,510],[290,480],[331,220],[256,-3],[21,-133],[102,-613],[215,-82],[347,-1556],[-104,-780],[130,204],[188,296],[18,1055],[-159,488],[-49,152],[-308,795],[294,651],[294,426],[466,-18],[328,68],[28,6],[460,169],[302,535],[21,38],[-9,147],[-32,514],[-10,157],[-16,253],[26,173],[11,70],[57,380],[116,310],[121,321],[239,825],[309,545],[78,-105],[104,-142],[193,-264],[310,-402],[171,-333],[93,-181],[86,-1038],[103,-1426],[59,-599]],[[934619,328421],[-246,-188],[-55,-311],[-120,-672],[-33,-938],[-6,-169],[-21,-297],[-32,-463],[334,-297],[-88,-936],[-132,-438],[-104,87],[-222,185],[-3,-6],[-285,-461],[10,-175],[28,-494],[-90,-74],[-155,-127],[-105,-266],[-95,-243],[-106,-299],[-172,-484],[-190,-612],[-198,-179],[-121,-109],[-219,-910],[-37,-608],[96,-1442],[145,-1200],[156,-844],[-90,-874],[-241,-254],[-300,-139],[-78,106],[-261,353],[21,-673],[9,-294],[-58,-629],[30,-736],[-11,-682],[-354,-266],[-307,-917],[-21,-234],[-43,-484],[-78,-425],[-125,-676],[194,202],[126,130],[97,199],[122,249],[158,678],[329,-32],[190,-27],[117,-17],[76,-150],[95,-191],[235,-392],[190,-849],[-166,-277],[-122,-204],[14,-864],[-228,-864],[-166,-769],[-90,-241],[-118,-311],[-306,-842],[-10,-29],[-214,-621],[61,-416],[68,-468],[40,-1002],[61,-463],[35,-272],[30,-224],[154,-814],[256,11],[227,229],[21,21],[50,20],[271,109],[209,-518],[187,-459],[164,-403],[63,-133],[106,-224],[161,-639],[435,-357],[496,150],[32,-159],[67,-333],[50,-253],[194,-967],[232,-266],[128,-727],[-238,75],[-114,36],[-105,-1114],[-118,-222],[-146,-275],[-99,-46],[-378,-174],[-493,-31],[-256,6],[-173,3],[-68,-29],[-255,-110],[-197,-2],[-162,-2],[-161,163],[-193,-371],[-245,-470],[-93,-181],[-133,-233],[-116,-205],[-364,-643],[1,-5],[9,-37],[-172,-438],[-104,-263],[-74,-576],[24,-593],[-350,152],[-12,916],[-1,223],[-2,361],[-277,0],[-953,2129],[-158,-278],[-92,-164],[-158,204],[-81,104],[-169,418],[366,400],[59,763],[104,999],[149,107],[18,13],[78,483],[68,424],[12,71],[-303,-135],[-60,-127],[-270,-577],[-1,-72],[-4,-430],[-3,-278],[-286,-720],[-174,-180],[-59,171],[-223,-381],[-573,-982],[-51,-12],[-507,-1860],[-217,-793],[0,-37],[-110,-340],[-196,-601],[-92,-792],[-356,-66],[-55,-142],[-120,-313],[-249,-909],[-81,-1495],[-5,-82],[-218,-767],[-218,-420],[-61,-628],[-148,-419],[-265,-715],[-309,-1012],[-210,-808],[-75,-276],[-193,-706],[-350,-670],[-135,1207],[-152,45],[-120,36],[-138,41],[5,-861],[-158,-1115],[-136,-982],[-410,-583],[364,-870],[86,-1010],[-177,-140],[74,-426],[0,-569],[-126,-799],[-178,-703],[-197,-718],[-552,-403],[243,-733],[19,-796],[-89,-871],[-53,-629],[-151,-552],[-107,-887],[-304,-904],[434,-595],[277,432],[79,-947],[-294,-571],[-281,-202],[-438,-666],[-241,805],[-183,-563],[-178,-963],[3,-854],[-76,-839],[-13,-714],[-98,-971],[53,-899],[32,-1070],[-113,-926],[-164,-546],[283,-19],[305,-790],[-60,-585],[-284,-295],[30,-987],[-459,142],[-256,-752],[227,-195],[-163,-631],[-174,-1032],[168,-276],[264,-543],[-424,-826],[4,-1102],[-270,-994],[-63,-1122],[304,-446],[323,-232],[-147,-1110],[297,-639],[223,-182],[1053,36],[695,199],[-228,-640],[-2056,-327],[22,-699],[-228,-156],[-285,160],[-281,660],[-140,-926],[-50,-1346],[-235,-869],[-91,-923],[49,-688],[123,-506],[5,-22],[354,23],[159,11],[28,-38],[442,-578],[122,-581],[43,-202],[-26,-805],[-77,-741],[-58,-561],[-319,-1296],[109,-833],[121,-367],[-20,-139],[-77,-545],[320,-730],[69,-661],[138,-321],[146,-339],[-191,-195],[-300,329],[-91,432],[-47,221],[-287,223],[-71,55],[-255,377],[-463,62],[-92,-1177],[-67,-782],[15,-651],[10,-416],[-304,-927],[-17,-952],[154,-542],[40,-140],[299,-503],[256,757],[119,-829],[-35,-985],[-29,-72],[-145,-362],[-254,236],[-22,65],[-131,387],[-176,-983],[-20,-277],[-55,-748],[-38,-423],[-26,-291],[-17,-398],[-18,-401],[-105,-1172],[-32,-815],[83,-1021],[135,-655],[10,-1507],[-165,-1199],[-4,1],[-224,47],[-218,-399],[109,-523],[69,-736],[200,-832],[96,-926],[-30,-468],[-19,-302],[175,-964],[-174,-883],[81,-785],[105,-292],[53,-148],[-50,-1009],[-267,-513],[-10,-20],[2,-29],[23,-408],[27,-489],[5,-99],[69,-677],[326,506],[256,-190],[45,-640],[-71,-493],[-20,-144],[-87,-562],[-157,-393],[-208,-350],[-344,-166],[-185,-681],[-278,-728],[-200,-513],[-47,-121],[-324,-112],[-346,-83],[-249,349],[-361,-30],[-187,-132],[-68,-48],[-399,-240],[-90,-86],[-146,-138],[-207,-512],[-25,-61],[-279,69],[163,908],[23,649],[23,409],[29,511],[-27,639],[-12,270],[-32,705],[-71,837],[-113,1451],[-133,971],[-111,935],[-78,1017],[-61,947],[-119,1354],[-158,1286],[-156,1132],[-206,1080],[-152,609],[-321,582],[-302,481],[-219,62],[295,774],[-233,1470],[-270,896],[-178,966],[-325,1358],[-251,1142],[-206,947],[-148,516],[-294,624],[-469,1107],[-193,661],[-204,678],[-176,822],[-151,810],[-99,674],[-79,896],[-39,798],[-12,599],[24,919],[182,541],[-41,823],[-56,1130],[80,867],[141,459],[-37,743],[146,1107],[283,-434],[350,230],[601,-185],[365,-414],[344,-90],[-211,1110],[227,474],[337,526],[356,118],[-360,629],[-252,-292],[-312,764],[210,388],[67,623],[177,544],[217,518],[-251,514],[-222,646],[362,559],[47,677],[29,746],[-208,1181],[-136,-1085],[-13,-1002],[-584,-49],[-241,-814],[303,-1232],[-153,-845],[-350,-18],[145,-1844],[259,-451],[-316,-715],[-175,422],[-316,-172],[-161,561],[-324,261],[-376,274],[-178,-587],[-149,725],[-138,908],[-253,1007],[-111,806],[-103,626],[-152,644],[-177,577],[-102,658],[-129,1002],[-30,1005],[201,1190],[163,246],[307,400],[-67,115],[-377,651],[39,580],[159,1220],[287,719],[321,772],[245,546],[198,482],[298,497],[-249,559],[-268,-9],[-189,1142],[54,1163],[217,857],[331,337],[38,809],[6,898],[272,325],[217,50],[288,-161],[393,-128],[-151,1046],[2,1238],[29,789],[385,209],[384,-211],[346,-824],[-135,1536],[453,388],[291,-369],[27,-689],[248,354],[247,376],[362,-104],[-245,854],[-296,-16],[-284,38],[62,879],[192,1285],[-250,847],[-281,676],[-55,742],[282,431],[522,551],[286,-303],[253,618],[-251,203],[-244,486],[-293,-228],[-301,-77],[-393,319],[175,913],[-376,166],[-199,-1020],[41,-1123],[-177,-1222],[-249,-638],[-163,-672],[-44,-999],[-232,68],[-452,-78],[-137,-1297],[-268,-525],[-654,24],[2,-850],[-156,-948],[-417,-809],[-222,-846],[-28,1109],[55,835],[60,727],[60,1045],[93,951],[108,1375],[114,1276],[129,1154],[50,909],[107,704],[361,1438],[348,1188],[254,833],[139,559],[228,665],[238,798],[161,617],[347,1273],[285,1315],[244,1256],[279,1589],[302,1141],[351,264],[-122,1589],[-8,1108],[-5,1549],[84,873],[189,769],[305,-1003],[291,20],[218,-42],[257,674],[305,307],[-312,484],[5,783],[320,362],[267,136],[383,83],[272,-131],[225,-764],[206,-184],[262,-368],[167,630],[250,71],[347,-569],[436,-170],[166,-747],[210,-637],[173,739],[-218,817],[14,1231],[-302,-582],[-316,125],[-209,309],[-256,197],[-278,417],[-206,611],[-512,375],[-491,88],[-116,988],[-129,940],[-416,690],[-159,540],[27,517],[324,44],[80,638],[263,329],[252,352],[194,513],[227,-130],[198,345],[117,678],[97,1202],[148,808],[340,30],[101,-722],[330,-293],[247,-38],[280,-67],[303,7],[130,-771],[344,721],[379,-813],[443,316],[-423,386],[-147,1037],[526,443],[211,566],[-285,268],[-226,-133],[-209,-409],[-266,-73],[-193,-484],[-290,-162],[-274,112],[-200,704],[-293,-55],[-91,452],[-14,611],[307,383],[262,635],[237,697],[222,511],[366,626],[275,819],[293,1025],[-333,18],[-394,-416],[-189,-726],[-369,-313],[-400,-496],[-212,-1098],[-184,-640],[-459,336],[-193,-3],[-139,-715],[-267,-397],[-162,-797],[-326,-967],[-132,-581],[37,-611],[-319,16],[-234,598],[-253,-708],[-168,-945],[-94,957],[-398,254],[118,-970],[-46,-662],[-177,-771],[-72,-814],[-169,325],[-35,607],[-49,722],[-77,995],[223,668],[-98,1618],[44,1279],[7,704],[71,1912],[111,770],[168,1435],[255,1479],[170,580],[171,747],[186,646],[352,312],[-43,963],[67,1014],[247,936],[401,1263],[150,764],[211,857],[247,54],[406,-308],[428,105],[318,541],[465,764],[299,-190],[231,-810],[-32,-660],[-149,-798],[-184,-641],[223,-598],[297,669],[248,-463],[244,-458],[336,-436],[318,-416],[368,528],[299,-438],[272,-351],[300,-295],[146,905],[218,-26],[252,485],[-241,181],[-290,19],[-244,-542],[-273,1093],[-199,-307],[-206,109],[-314,142],[38,825],[-398,128],[-402,-266],[-119,995],[-7,1293],[-184,1006],[145,933],[201,309],[159,743],[272,24],[253,249],[378,302],[473,-426],[515,-54],[399,672],[367,421],[309,50],[124,-1077],[183,354],[370,178],[110,683],[-330,523],[-334,949],[-393,-222],[-352,-803],[-279,-424],[-243,-217],[-258,344],[313,1049],[196,512],[123,1027],[385,924],[378,514],[340,413],[408,428],[246,-419],[293,-749],[356,189],[-265,1231],[-268,253],[277,1168],[-80,697],[-238,111],[-286,383],[-218,368],[-136,819],[252,389],[206,828],[216,801],[307,410],[208,274],[135,1492],[-281,-589],[-216,-525],[-410,-501],[-223,-768],[-186,-478],[-297,-341],[-315,-824],[-9,-822],[201,-723],[196,-376],[-153,-545],[-186,-215],[-241,-393],[-299,218],[-402,40],[-291,-555],[229,-404],[208,227],[50,-585],[-136,-780],[-405,10],[-372,-697],[-188,-547],[141,-1064],[-392,-109],[-395,-723],[-350,200],[-280,794],[-422,892],[160,-1297],[-291,-417],[403,-409],[88,-892],[-354,-98],[-332,-136],[111,-752],[-428,-173],[-2,-980],[-486,114],[-71,-806],[-513,710],[-109,-608],[-696,-30],[-244,-521],[-74,2731],[116,1236],[145,1109],[110,1083],[36,679],[73,1038],[35,874],[122,908],[180,1456],[131,1010],[141,935],[94,648],[298,1923],[102,720],[343,1240],[219,959],[314,1143],[208,760],[143,1157],[21,1362],[136,755],[285,-827],[569,-808],[9,1328],[159,569],[-332,410],[112,707],[-340,-109],[471,1385],[371,178],[309,-376],[-53,-973],[271,-766],[202,-1186],[63,747],[-34,1080],[365,797],[278,-404],[235,468],[181,194],[433,-1],[51,-986],[174,696],[156,462],[344,258],[231,209],[327,-144],[243,-770],[237,-830],[375,-23],[279,-94],[353,-301],[529,71],[366,399],[185,-505],[240,-285],[229,1401],[329,-106],[418,-146],[381,-65],[266,285],[254,85],[322,454],[252,384],[341,-332],[239,-560],[126,726],[413,434],[399,564],[195,290]],[[229435,238268],[-66,-694],[-96,-249],[-113,-285],[-9,-376],[-30,-345],[55,-350],[113,-222],[106,-432],[-31,-401],[-32,-339],[-37,-356],[-128,-187],[-110,-129],[-125,-321],[-127,-44],[-123,-28],[-140,-125],[-70,-306],[-93,-277],[-96,-265],[-156,-97],[-127,-49],[-137,13],[-115,-119],[-119,-349],[-17,-356],[-44,-328],[-14,-414],[60,-426],[-32,-461],[-65,-415],[-68,-316],[-89,-348],[-11,-357],[36,-362],[33,-358],[-80,-388],[-141,-128],[-126,-189],[-124,-353],[-34,-430],[-66,-303],[-159,-273],[-114,-68],[-54,-32],[-170,165],[-169,445],[0,1],[-126,102],[-27,-13],[-92,-42],[-172,71],[-123,196],[-2,3],[-162,186],[-94,-215],[-37,-73],[-62,-126],[-94,-371],[-62,-297],[-109,-275],[-87,-265],[-90,-14],[-30,-5],[-135,-77],[-143,-209],[-125,103],[-151,-148],[-64,-351],[76,-330],[-27,-260],[-8,-81],[-34,-435],[-63,-300],[-106,-156],[-118,-259],[-71,-323],[-51,-71],[-71,-99],[-132,-173],[-108,-245],[-131,20],[-106,269],[-203,-199],[-131,-297],[-101,-201],[-95,-309],[-123,-386],[-108,-39],[-44,-17],[-103,-251],[-147,173],[-118,105],[-125,-65],[-59,-379],[-108,-179],[-127,-116],[-98,342],[-126,206],[-128,-8],[-177,-141],[-176,133],[-99,-203],[-102,-207],[-116,-412],[-125,-84],[-99,-252],[-83,-256],[-170,-232],[-103,-202],[-119,-174],[-116,-139],[-117,-70],[-160,282],[-179,196],[-184,62],[-200,133],[-218,-61],[-124,-141],[-128,-112],[-164,44],[-137,-396],[-112,-149],[-77,-289],[-115,149],[-149,30],[-98,-240],[-100,-271],[-147,-26],[-71,-307],[-100,-186],[-75,-351],[-111,-158],[-123,-99],[-242,-68],[-124,-10],[-136,106],[-141,136],[-138,134],[-89,239],[-152,62],[-134,-60],[-131,-123],[-123,-69],[-65,-293],[-89,-260],[-63,-398],[-58,-310],[-125,-272],[-139,-142],[-136,-96],[-121,-154],[-106,-211],[-106,217],[-119,-19],[-76,-293],[-121,15],[-139,-88],[-98,-316],[-111,-144],[-68,-351],[10,-424],[83,-418],[70,-287],[62,-306],[110,-153],[106,-158],[119,-154],[105,-372],[-81,-285],[-116,-186],[-177,-177],[-112,-227],[-118,-322],[-126,-85],[-86,-263],[-121,-21],[-73,-266],[-7,-24],[-83,-266],[-126,-15],[-139,-130],[-141,-55],[-99,202],[-128,-64],[-126,-13],[-405,-433],[-112,-125],[-200,-69],[-108,-314],[-155,41],[-117,87],[-133,143],[-126,273],[-105,165],[-134,95],[-130,129],[-134,-133],[-78,-397],[-4,-378],[2,-399],[21,-342],[-94,-261],[-103,-256],[-87,-403],[22,-365],[-54,-329]],[[210348,205722],[-145,-56],[-123,-103],[-71,-281],[-93,-220],[-146,63],[-206,92],[-167,-208],[-91,-358],[-70,-358],[-72,-298],[-82,-457],[-75,-455],[-77,-271],[-96,-409],[-26,-358],[-47,-389],[-114,136],[-99,207],[-133,79],[-94,210],[-175,353],[-141,167],[-146,36],[-122,-15],[-95,-231],[-103,-192],[-149,96],[-157,-69],[-140,-268],[-155,-220],[-64,-321],[-44,-338],[4,-362],[16,-345],[-75,-290],[-122,-18],[-127,175],[-120,24],[-141,-78],[-130,-62],[-137,-108],[-102,347],[-79,265],[-177,81],[-163,88],[-213,196],[-124,154],[-166,77],[-67,-303],[-141,-340],[-112,-167],[-100,-212],[-216,-138],[-132,-202],[-147,80],[-113,199],[-160,261],[-110,186],[-138,4],[-108,-214],[-145,-229],[-111,161],[-145,182],[-141,81],[-43,-335],[-72,-284],[-132,-238],[-27,-337],[-46,-333],[-34,-403],[-123,-144],[-116,-105],[-168,-211],[-160,6],[-164,1],[-184,-151],[-142,-44],[-144,-10],[-176,157],[-115,696],[-141,103],[-158,-177],[-158,-40],[-147,256],[-155,19],[-187,156],[2,557],[-128,178],[-58,361],[-81,283],[-82,251],[-116,-129],[-29,-371],[-65,-325],[-107,-311],[-85,-328],[-73,-367],[-93,-260],[-10,-418],[-120,-39],[-75,-269],[-174,-313],[-94,-317],[-120,-168],[-144,-97],[-114,179],[-108,195],[-185,338],[-117,66],[-216,-86],[45,-431],[-19,-392],[67,-386],[-20,-358],[-197,-196],[-136,-208],[-71,-279],[-156,-314],[78,-321],[15,-390],[85,-276],[60,-409],[-39,-328],[-188,-57],[-135,-30],[-138,-55],[-105,-205],[-90,-674],[-14,-442],[-127,-264],[40,-513],[217,-120],[135,-272],[10,-399],[-364,-637],[-60,-634],[52,-643],[-4,-350],[-189,-199],[-155,68],[-155,-380],[19,-699],[87,-243],[-115,-222],[-75,-318],[14,-357],[41,-426],[308,-194],[134,-14],[281,-124],[99,-383],[36,-387],[-75,-395],[-115,-331],[-132,-63],[-118,-279],[-142,-184],[-67,-366],[-121,-188],[-104,-362],[48,-373],[125,-127],[169,-92],[39,-366],[-6,-558],[13,-407],[-135,-62],[-253,-215],[-236,-200],[-141,-120],[-361,-307],[-31,-26],[-28,-25],[-267,-226],[-178,43],[-109,-446],[-29,-438],[10,-522],[-101,-363],[-40,-342],[-68,-417],[-157,-722],[18,-360],[-34,-328],[64,-368],[-47,-391],[-161,53],[-260,-243],[-102,-478],[-168,-344],[-315,-205],[-65,-400],[-137,24],[-108,279],[-156,-45],[-128,-314],[-192,-199],[-171,-84],[-457,854],[-396,-553],[-206,-354],[-106,-292],[-289,200],[-165,-45],[-227,-395],[-168,-323],[-103,-248],[-136,-182],[-85,-343],[-238,-437],[-90,-373],[-137,51],[-90,224],[-206,169],[-370,-69],[-133,401],[-193,274],[-235,-245],[-176,260],[-31,344],[-67,287],[-131,212],[-107,159],[60,619],[-111,264],[-222,77],[-144,60],[-125,223],[-93,215],[-101,298],[66,535],[-129,226],[-509,-307],[-287,-416],[-178,-513],[-173,20],[-56,-351],[90,-441],[90,-247],[19,-449],[-84,-404],[-81,-486],[-140,41],[-114,221],[-119,-83],[-138,-345],[-100,-197],[-116,-215],[-112,340],[-118,-88],[-203,-353],[-204,-27],[-40,341],[-34,333],[-118,110],[-124,-101],[-133,56],[-136,-57],[-108,-286],[-61,-327],[-130,-168],[-126,68],[-86,393],[-87,287],[-156,135],[-147,132],[-151,-136],[-122,-39],[-117,93],[-24,352],[-103,329],[-130,-86],[-142,-183],[-118,-410],[-46,-343],[-130,-45],[-111,-160],[-120,101],[-99,234],[-139,259],[-114,-215],[-105,-209],[-119,-39],[-119,82],[-51,323]],[[180983,171245],[578,1210],[753,1580],[78,271],[-108,560],[-70,369],[-109,629],[-26,784],[113,372],[134,72],[132,163],[-28,421],[-3,438],[-172,712],[-241,253],[-149,-18],[-175,-70],[-136,85],[-111,330],[-18,529],[116,304],[118,40],[150,125],[99,471],[-129,43],[-73,282],[-116,80],[-109,212],[-62,296],[61,387],[-58,365],[15,463],[-162,495],[-238,394],[-331,999],[-132,154],[-51,320],[95,236],[-21,451],[-112,167],[-165,2],[-40,406],[-106,209],[-74,285],[-146,282],[60,295],[121,338],[-92,355],[28,548],[-78,301],[-109,299],[-37,411],[-99,327],[-228,323],[-169,132],[-38,364],[96,285],[154,109],[17,350],[-103,238],[-126,138],[-18,368],[125,263],[-16,443],[127,24],[127,-24],[73,302],[-27,385],[66,326],[97,283],[-43,277],[-6,42],[-113,221],[-136,169],[-233,1080],[-616,221],[-372,404],[-20,22],[-10,10],[-58,241],[-105,442],[-54,225],[-11,48],[-45,83],[-139,261],[-47,165],[1,35],[2,55],[4,97],[81,908],[27,180],[-15,160],[-62,657],[-5,52],[48,767],[-27,138],[-85,441],[-17,34],[-208,409],[-13,26],[-286,432],[-9,14],[-488,727],[-45,86],[-13,70],[3,134],[41,164],[125,305],[105,188],[14,133],[-4,196],[-20,149],[-46,205],[-5,22],[-146,447],[-7,22],[-98,235],[-102,156],[-129,62],[-74,0],[-30,42],[-145,204],[-114,161],[-16,33],[-22,43],[-16,33],[-24,110],[-194,2081],[10,149],[21,94],[115,266],[30,118],[4,187],[-36,151],[-77,321],[-20,84],[-54,125],[-45,74],[-525,872],[-54,55],[-18,-6],[-38,-13],[-16,-5],[-101,-266],[-14,-53],[-51,-190],[-115,-282],[-16,-35],[-92,-199],[-7,-17],[-20,-16],[-17,-15],[-62,13],[-10,2],[-78,47],[1,146],[2,459],[4,693],[0,1],[-243,1033],[-22,94],[-48,125],[-3,6],[-178,369],[-76,299],[-72,286],[-138,659],[-236,1123],[-224,1068],[-177,850],[-338,1534],[-91,413],[-199,904],[-182,830],[-135,551],[-192,885],[-232,1069],[-153,705],[-84,388],[-86,393],[-66,306],[-74,344],[-78,360],[-67,309],[-85,392],[-31,145],[-57,262],[-106,492],[-106,490],[-90,419],[-25,113],[-76,354],[-29,360],[-27,331],[-6,69],[-31,396],[-55,682],[-56,694],[-30,372],[-33,399],[-32,407],[-44,537],[-147,1806],[-95,1085],[-178,2021],[-43,487],[-117,1329],[-153,1750],[-47,528],[-75,951],[-28,346],[-72,916],[-45,561],[-36,456],[-71,920],[-37,559],[-101,1493],[-57,817],[-41,469],[-78,444],[-162,77],[-132,272],[-82,256],[-88,332],[-33,402],[-79,348],[-145,147],[-113,144],[-124,-20],[-148,-137],[-154,15],[-161,29],[-142,109],[-106,233],[-124,355],[-106,300],[-48,318],[-81,349],[-93,216],[-71,278],[22,374],[-56,305],[-14,388],[-37,395],[-59,306],[-125,116],[-150,232],[-108,172],[-113,222],[-128,59],[-126,88],[-113,199],[-149,250],[-115,166],[-9,426],[-97,278],[-69,299],[-77,326],[-109,164],[-84,257],[-128,271],[-121,9],[-153,15],[-68,293],[-91,261],[-38,33],[-84,69],[-106,269],[-61,352],[-87,256],[-93,235],[-189,62],[-124,92],[-95,-235],[-103,-297],[-129,-116],[-147,27],[-130,-31],[-77,-260],[-102,-183],[-145,-174],[-103,-252],[-128,-147],[-135,-125],[-99,-203],[-115,-274],[-104,-192],[-199,-33]],[[161808,259192],[80,233],[70,205],[32,61],[181,346],[1340,2560],[603,1195],[792,1548],[1406,2817],[1743,3499],[2145,4350],[1599,3218],[436,881],[473,958],[303,614],[826,1670],[1143,2430],[2473,4814],[1993,3882],[2059,4015],[1937,3834],[1557,3166],[1531,3058],[2034,4096],[1810,3709],[501,1092],[256,558],[312,681],[621,1353],[561,1282],[47,107],[2541,5032],[1344,2732],[2523,5031],[2024,4101],[1308,2606],[-118,-1170],[165,-539],[271,94],[271,282],[401,447],[253,15],[101,-312],[-85,-662],[-19,-878],[78,-346],[18,-81],[6,-25],[14,-47],[14,-44],[15,-41],[16,-38],[2,-3],[90,-198],[16,-33],[18,-32],[18,-28],[19,-25],[20,-21],[19,-18],[95,-73],[20,-14],[21,-9],[21,-6],[21,-2],[21,2],[20,6],[11,4],[65,32],[10,5],[21,13],[20,18],[19,21],[19,25],[14,21],[333,534],[191,215],[-106,-322],[-2,-6],[-13,-39],[-6,-21],[-14,-47],[-12,-49],[-11,-51],[-5,-28],[-48,-259],[-5,-26],[-8,-55],[-8,-56],[-6,-58],[-5,-59],[-3,-49],[-16,-329],[0,-10],[-2,-60],[-1,-60],[1,-61],[2,-60],[3,-59],[5,-59],[6,-58],[7,-56],[9,-55],[10,-54],[11,-51],[12,-49],[13,-45],[119,-393],[0,-1],[15,-44],[5,-16],[202,-555],[1,-10],[-2,-115],[-34,-291],[-2,-19],[-47,-438],[-4,-34],[-4,-59],[-4,-59],[-2,-60],[0,-61],[0,-60],[2,-60],[4,-60],[4,-58],[1,-4],[32,-345],[6,-53],[7,-57],[9,-55],[10,-53],[11,-51],[12,-49],[2,-9],[80,-292],[11,-38],[14,-44],[16,-41],[16,-39],[17,-35],[18,-32],[13,-22],[134,-198],[5,-6],[19,-25],[20,-22],[20,-17],[20,-14],[21,-10],[15,-4],[174,-42],[5,-1],[21,-2],[21,2],[21,6],[15,6],[141,73],[6,3],[20,14],[20,18],[20,21],[19,25],[8,12],[123,188],[10,16],[18,32],[17,35],[16,38],[16,42],[14,44],[13,46],[12,49],[6,26],[101,469],[6,26],[10,53],[7,49],[102,694],[3,8],[49,29],[45,0],[47,-37],[121,-518],[11,-44],[14,-47],[14,-44],[15,-41],[5,-11],[47,-115],[12,-27],[14,-31],[80,-156],[2,-5],[8,-15],[363,141],[26,-387],[-96,-295],[-577,-173],[-372,-581],[-177,-11],[-344,-332],[-160,-23],[-219,-202],[-183,-639],[43,-1262],[-253,-472],[-383,162],[-314,-111],[-225,-626],[-64,-1110],[131,-923],[49,-477],[-60,-381],[-469,-89],[-746,634],[-291,-117],[-139,-777],[-363,-220],[-60,-392],[-530,-371],[-151,-700],[-323,-415],[-138,288],[-474,-134],[-333,40],[-485,-356],[-187,-679],[-20,-803],[-428,-1057],[75,-299],[2,-369],[74,-781],[-41,-900],[178,-212],[140,-261],[-71,-1305],[159,-1132],[321,-222],[224,-687],[-35,-765],[47,-372],[313,-349],[501,837],[306,189],[404,-260],[185,-203],[-6,-378],[168,-620],[272,-427],[44,-328],[-153,-1075],[285,-374],[548,398],[555,98],[105,302],[436,-876],[563,-232],[61,-357],[103,-186],[21,-353],[227,-623],[15,-352],[303,-101],[241,194],[277,-8],[224,-356],[175,-595],[32,-366],[-159,-152],[-67,-530],[153,-721],[-298,-279],[-58,-382],[-205,-518],[235,-1606],[-40,-483],[89,-443],[33,-535],[345,-23],[81,-893],[364,-863],[258,-96],[145,-280],[223,-563],[291,-258],[-79,-399],[-53,-762],[-138,-379],[-187,-11],[-255,-483],[-79,-649],[-69,-561],[200,-442],[91,-410],[-101,-495],[-109,-282],[87,-769],[64,-352],[-250,-478],[-261,-326],[-94,-288],[98,-915],[112,-139],[72,-333],[-37,-381],[-462,-797],[-122,-827],[103,-744],[394,-412],[116,-296],[61,-347],[-84,-313],[-241,-333],[84,-712],[13,-791],[302,-819],[249,-320],[254,-74],[-56,-321],[-213,-1307],[222,-659],[54,-391],[98,-283],[112,324],[133,-68],[198,-444],[109,-675],[44,-357],[167,-83],[75,-316],[24,-912],[132,-129],[245,138],[300,-97],[306,-292],[14,-985],[169,-66],[-51,-363],[250,-574],[299,206],[174,-501],[307,43],[32,-350],[-5,-402],[149,-143],[156,-811],[61,-523],[-21,-405],[-134,-180],[131,-445],[40,-136],[120,17],[91,-230],[196,-444],[220,531],[176,49],[238,-202],[434,-309],[365,267],[123,248],[270,-8],[-80,-990],[232,-477],[128,151],[164,-64],[45,-759],[119,-326],[34,-794],[144,-70],[71,-320],[154,-166],[139,80],[111,-205],[217,-400],[272,-512],[81,-309],[247,-442],[33,-353],[-347,-558],[-204,-478],[-123,-711],[352,-933],[158,-301],[215,-291],[404,684],[126,2],[84,-298],[-37,-708],[90,-780],[-35,-383],[-105,-218],[104,-644],[115,108],[80,-259],[11,-388],[-215,-1352],[75,-1587],[268,-61],[136,8],[144,-747],[252,-245],[100,239],[167,-31],[165,112],[129,-124],[422,378],[299,-341],[186,30],[122,-301],[-144,-843],[294,-127],[120,-256],[371,6],[254,-567],[426,188],[313,-154],[397,205],[411,513],[236,495],[467,231],[178,679],[166,101],[277,-271],[239,70],[87,-238],[320,169],[308,-98],[40,-1227],[135,90],[79,397],[230,532],[132,41],[212,-405],[137,22],[53,-309],[304,-2],[79,-453],[162,-109],[136,-637],[-22,-394],[482,-905],[213,-348],[158,125],[302,-330],[223,280],[474,343],[248,169],[123,-141],[212,269],[234,-137],[-93,-1282],[58,-1204],[110,-219],[335,-324],[323,-623],[78,-279],[427,-131],[119,-846],[-6,-986],[234,-516],[20,-375],[279,-501],[-139,-1276],[-98,-373],[-157,-2052],[45,-348],[366,-262],[38,-1046],[56,-325]],[[877444,327320],[167,-673],[66,-822],[26,-1422],[128,-1065],[-128,-846],[-317,177],[-322,957],[-67,-581],[-233,-86],[-178,540],[130,991],[-427,-455],[-265,-439],[-269,537],[-242,536],[-279,157],[205,591],[50,890],[181,925],[-319,10],[-134,-680],[-175,-476],[-358,-161],[-213,125],[-320,-295],[-201,518],[-28,72],[-307,-437],[-204,-675],[-105,-775],[-177,683],[238,878],[344,1034],[400,835],[243,589],[266,1053],[236,1114],[105,1111],[-147,619],[-7,740],[202,315],[208,-45],[244,-41],[182,-419],[419,-432],[478,-1104],[247,-795],[230,-974],[167,-793],[171,-916],[89,-590]],[[858184,331814],[273,370],[384,-158],[200,-841],[399,-602],[249,-413],[218,-44],[405,334],[9,2],[202,48],[285,-65],[311,457],[273,563],[217,775],[270,884],[-10,902],[-134,1438],[265,720],[-15,747],[284,784],[17,-786],[59,-671],[201,-983],[272,-719],[296,209],[-208,669],[-148,963],[-201,617],[224,212],[300,-32],[281,-62],[352,66],[441,-512],[326,-595],[332,-12],[430,354],[273,207],[24,-648],[531,-610],[244,-692],[357,686],[321,418],[428,-725],[-64,-1372],[141,-1190],[156,-935],[188,-814],[238,-770],[249,-435],[263,-185],[158,-336],[176,227],[269,78],[287,219],[261,54],[240,-110],[396,-229],[168,-661],[241,-900],[166,-1213],[104,-1072],[125,-698],[-26,-754],[-289,-75],[-350,0],[-629,-323],[-321,-161],[-196,-322],[28,-685],[406,81],[503,161],[279,0],[350,40],[397,459],[174,-348],[321,171],[619,-102],[294,117],[315,229],[300,479],[70,41],[325,191],[360,93],[213,-470],[-88,-865],[-294,-608],[112,-552],[-138,-842],[309,315],[222,656],[305,584],[404,-189],[177,-581],[210,-423],[426,-276],[210,-560],[256,-437],[218,-228],[290,-315],[-65,-1000],[-376,325],[-299,170],[-447,192],[8,-1069],[-68,-1031],[-194,-958],[-374,-252],[-310,68],[-231,731],[-102,-1032],[-513,220],[-474,-222],[-319,-79],[307,-615],[237,81],[263,-579],[373,-137],[126,389],[204,-149],[256,-218],[118,-735],[126,912],[214,60],[326,61],[252,-463],[127,-782],[-131,-790],[326,-436],[193,-152],[261,-152],[-119,-785],[453,423],[13,964],[-171,892],[-244,606],[66,869],[-56,686],[82,843],[241,41],[416,-394],[291,-436],[242,-673],[130,-1002],[162,-679],[-476,-291],[21,-1569],[-37,-868],[79,-1004],[-99,-892],[14,-702],[248,758],[262,664],[-63,867],[88,628],[171,535],[345,-506],[33,1006],[326,-632],[63,-1129],[172,-828],[340,-729],[152,-894],[290,-511],[105,-853],[-7,-869],[46,-1223],[22,-542],[17,-440],[13,-258],[31,-590],[9,-647],[7,-418],[16,-246],[53,-783],[51,-837],[32,-970],[19,-380],[29,-541],[21,-543],[15,-369],[-1,0],[-464,-122],[-448,-892],[-256,-2370],[109,-526],[179,-858],[181,-739],[-480,277],[-299,-431],[-245,246],[-54,-677],[427,-492],[44,-36],[298,-241],[4,-335],[6,-465],[267,0],[299,1231],[112,-112],[166,-165],[150,324],[63,137],[-10,1293],[202,409],[23,-536],[46,-1081],[24,-1020],[-195,-1398],[-128,-1979],[-17,-36],[-244,-528],[-169,-1018],[-235,-454],[-88,4],[-178,8],[-88,-559],[-14,-588],[17,-81],[112,-546],[-155,-647],[-261,-649],[-367,-353],[-246,-839],[-35,410],[-56,651],[75,982],[-205,-273],[-232,139],[-130,-602],[-175,-152],[-99,-86],[-11,198],[-34,602],[209,1162],[-367,567],[-37,-47],[-210,-264],[-102,-754],[-166,-779],[-370,-50],[-128,682],[-265,-820],[-190,989],[-327,-85],[-164,-687],[-303,313],[-272,171],[-465,40],[-95,708],[-65,820],[-433,-266],[109,-741],[207,-680],[68,-1335],[303,249],[217,28],[334,-434],[346,-693],[463,569],[428,-296],[375,-409],[110,-1272],[365,22],[-163,-834],[-251,-547],[315,-79],[327,-229],[-78,-604],[54,-807],[61,-680],[114,-1020],[-417,-294],[325,-944],[-311,-418],[-367,416],[-300,832],[-218,-426],[74,-670],[-88,-694],[386,86],[25,-693],[27,-960],[387,-9],[241,427],[305,-312],[-21,-777],[-23,-806],[-57,-1579],[22,-1134],[-123,-769],[-133,-696],[-161,-398],[-273,-151],[3,766],[-217,1111],[-268,899],[67,970],[-179,876],[-255,432],[-285,-960],[-447,335],[-303,-124],[-270,-155],[32,967],[-90,712],[-283,1152],[-39,-1266],[-428,-23],[-371,179],[-301,728],[-203,1218],[-53,871],[-1,611],[-321,544],[349,311],[400,148],[-125,1342],[209,331],[203,904],[224,95],[156,808],[-290,265],[-380,-644],[-291,-593],[-311,74],[-93,-1091],[-274,-84],[-275,-131],[-267,-399],[-13,1066],[-75,1121],[-374,95],[-82,1131],[-422,-56],[-171,302],[-243,870],[-343,1038],[-244,769],[-80,726],[96,791],[347,3],[107,811],[-361,285],[396,794],[-404,461],[169,761],[250,840],[-205,495],[132,573],[409,-263],[-160,890],[111,1038],[-385,295],[-90,734],[206,526],[200,725],[-345,218],[-135,465],[6,583],[-270,202],[-139,440],[-303,411],[181,833],[-312,484],[-513,-22],[261,1010],[164,757],[135,943],[175,448],[357,-184],[-47,857],[243,629],[270,262],[220,578],[-141,826],[-315,-749],[-255,-496],[-221,22],[-177,-742],[-388,-187],[-104,756],[-236,21],[-73,605],[-266,880],[146,719],[-292,13],[-98,-836],[-243,-226],[-237,486],[-255,-293],[-177,907],[-269,690],[-120,879],[3,726],[171,385],[-113,1009],[-577,322],[183,-733],[49,-749],[-183,-1114],[22,-1311],[251,-420],[-36,-875],[415,2],[5,-859],[366,43],[194,-76],[168,-445],[247,-613],[167,-393],[504,-330],[-286,-640],[-16,-708],[-324,-669],[193,-563],[-238,-465],[55,-1098],[299,-495],[125,-783],[-38,-895],[235,66],[283,-442],[153,-1453],[10,-840],[-267,-815],[172,-1033],[-346,-355],[64,-882],[-52,-864],[-370,-223],[159,-990],[-289,-528],[-408,132],[-397,30],[-266,144],[-126,796],[-74,699],[-500,-311],[-211,588],[78,886],[21,949],[-138,1119],[-177,-491],[-224,-146],[-246,-667],[-283,302],[-419,835],[-421,-90],[-268,342],[185,1140],[-545,-408],[-321,992],[-213,593],[-5,981],[-33,913],[-220,598],[82,1017],[-344,468],[-14,1221],[188,817],[-153,452],[-163,819],[5,1053],[28,1224],[-151,732],[35,921],[-426,560],[-321,-143],[-310,499],[-95,675],[-11,708],[55,820],[-210,269],[-243,1077],[-69,-1385],[172,-662],[-180,-707],[-95,-623],[94,-478],[327,-272],[227,-747],[257,-645],[230,-778],[-360,-304],[-403,-89],[-421,-4],[-335,325],[-365,186],[-308,1059],[-382,-410],[-351,-104],[81,745],[-307,-395],[-187,-581],[-330,130],[-361,292],[-239,616],[-348,-222],[-36,645],[-170,944],[-319,577],[300,434],[188,479],[178,576],[-336,831],[354,1010],[-169,635],[-137,738],[92,846],[-173,719],[-155,596],[245,706]],[[714378,247621],[6,-717],[-65,-331],[-82,-338],[36,-331],[146,-565],[57,-327],[49,-353],[22,-406],[-160,-101],[-138,-30],[-167,48],[-126,-129],[-214,-318],[-66,-439],[-77,-570],[35,-335],[5,-367],[63,-381],[-14,-348],[-127,86],[-108,-150],[-147,-30],[-57,-174],[-26,-80],[-126,11],[29,-365],[-26,-373],[74,-333],[-5,-360],[-110,-237],[-114,-103],[-122,129],[-118,-62],[-128,-63],[-84,270],[-119,57],[-124,-124],[-103,174],[-124,2],[-106,203],[-125,-103],[-113,-108],[-57,-305],[-125,-212],[-8,-381],[-21,-415],[-45,-353],[-124,-66],[-147,-219],[-117,-168],[-201,8],[-85,-302],[-81,274],[-97,227],[-107,-180],[-142,110],[-131,-107],[-107,-247],[-96,-212],[-48,-321],[19,-357],[60,-406],[-125,-56],[-25,-345],[-33,-348],[86,-236],[139,94],[111,-259],[137,109],[122,208],[123,62],[135,9],[128,-67],[-119,-154],[-83,-278],[-98,-231],[-117,-73],[-131,-240],[-5,-351],[-69,-284],[-86,-287],[-108,-186],[-113,-129],[-133,-156],[-120,9],[-118,41],[-129,9],[-154,160],[-131,15],[-147,56],[-137,49],[-118,90],[-130,-154],[-113,235],[-113,-261],[-86,-310],[-96,-210],[-124,41],[-69,-301],[-73,-272],[-111,-151],[-171,-63],[-125,79],[-50,-329],[-111,150],[-124,21],[-111,-319],[-85,-443],[-120,-73],[-72,-316],[-128,99],[-169,327],[-123,-105],[-54,-338],[-36,-327],[-120,-122],[-107,-235],[10,-364],[-111,-180],[-123,-64],[-37,-359],[-89,-231],[-25,-402],[-99,214],[-62,-291],[-108,-148],[31,-351],[-103,-209],[16,-343],[-65,-301],[-113,-182],[-97,-281],[-121,-111],[-741,-546],[-138,-227],[-181,-370],[-116,-242],[-176,-342],[-219,-432],[-124,-243],[-132,-255],[-175,-383],[-143,-254],[-258,-46],[-123,-22],[-121,-26],[-147,-26],[-124,-17],[-140,-19],[-147,-22],[-120,70],[-182,186],[-149,154],[-118,116],[-157,160],[-145,152],[-122,90],[-123,49],[-122,27],[-131,41],[-127,40],[-124,38],[-120,48],[-127,53],[-119,49],[-129,41],[-124,70],[-116,-117],[-135,38],[-121,222],[-124,-53],[-113,117],[-124,20],[-133,38],[-131,19],[-116,-83],[-118,-73],[-118,-107],[-127,27],[-116,-109],[-123,-43],[-136,30],[-131,-82],[-119,-46],[-131,-163],[-111,-184],[-2,-349],[-49,-353]],[[697146,222830],[-1145,1013],[-272,241],[-577,488],[-484,454],[-821,776],[-297,254],[-973,758],[-119,92],[-1377,1049],[-736,551],[-348,261],[-383,261],[-250,170],[-202,138],[-293,200],[-126,80],[-661,306],[-281,130],[-154,108],[-191,132],[-445,313],[-628,440],[-295,210],[-285,204],[-186,132],[-118,84],[-167,119],[-428,303],[-14,9],[-661,461],[-550,384],[-1251,872],[-137,96],[-825,557],[-561,371],[-1189,801],[-268,180],[-14,9],[-957,645],[-203,142],[-474,313],[-345,228],[-217,142],[-8,6],[-119,80],[-549,369],[-432,290],[-673,454],[-520,349],[-168,114],[-356,240],[-300,201],[-152,103],[-412,277],[-603,404],[-26,18],[-255,167],[-180,117],[-264,171],[-144,95],[-516,347],[-471,300],[-408,259],[-266,171],[-262,169],[-239,153],[-175,112],[-306,194],[-127,40],[-407,270],[-1398,926],[-116,77],[-21,14],[-935,608],[-881,589],[-658,442],[-543,363],[-423,273],[-254,163],[-836,537],[-1293,831],[-1092,703],[-485,312],[-301,193],[-539,347],[-167,107],[-81,52],[-129,83],[-539,339],[-147,22],[-207,146],[-151,108],[-168,107],[-233,149],[-133,103],[-233,178],[-190,145],[-733,480],[-118,78],[-423,277],[-351,230],[-183,132],[-245,175],[-162,116],[-281,202],[-178,123],[-163,106],[-663,432],[-818,562],[-42,28],[-524,360],[-366,254],[-442,307],[-394,260],[-228,151],[-205,136],[-1039,704],[-120,81],[-688,482],[-461,321],[-494,329],[-561,387],[-134,93],[-164,112],[-645,446],[-396,197]],[[645526,258255],[-3,920],[-11,498],[-26,1170],[-11,510],[-26,1200],[-34,1687],[-44,2560],[-35,2087],[-9,493],[-15,705],[-12,526],[-9,488],[-24,1272],[-16,827],[-12,723],[-7,378],[-12,687],[-20,1167],[-46,2671],[-14,768],[-9,469],[-8,405],[-24,1172],[-24,1190]],[[802856,286097],[685,-716],[100,-257],[7,-347],[-54,-332],[-83,-356],[-260,-619],[-187,-306],[-168,-208],[-189,-243],[-161,-214],[-168,-271],[-131,-352],[-99,-419],[-56,-448],[-50,-431],[-95,-645],[-129,-545],[-119,-426],[-96,-560],[-69,-439],[-29,-429],[304,-898],[433,-460],[198,127],[312,557],[400,1907],[292,959],[369,622],[621,427],[274,640],[164,839],[320,733],[393,235],[357,65],[188,-198]],[[806130,283089],[111,-945],[31,-269],[-44,-1166],[-276,-1036],[-3,-12],[-164,-855],[-10,-52],[-62,-263],[-86,-368],[-114,-1171],[25,-556],[18,-410],[258,-645],[291,40],[154,-773],[-23,-961],[-108,-615],[-304,-655],[66,-466],[61,-434],[-64,-480],[-63,-464],[160,-988],[-8,-207],[-25,-654],[1,-724],[8,-1319],[-166,-770],[-177,-744],[-269,-346],[-207,-523],[-218,-541],[-134,-719],[176,-998],[59,-1006],[228,-646],[410,-578],[249,-264],[129,-594],[45,-830],[-37,-699],[-172,-474],[-343,-438],[-268,-416],[6,-1143],[16,-952],[-19,-1088],[-229,-1240],[-21,-943],[-72,-1140],[112,-847],[365,-1040],[255,-781],[18,-61],[140,-463],[7,-989],[-341,-523],[-138,-568],[-245,-649],[-523,-226],[-443,-187],[-280,-340],[-261,-387],[2,-49],[43,-1184],[-162,-667],[-368,-540],[-411,-191],[-289,179],[-360,272],[-517,-359],[-231,-600],[-101,-880],[75,-1336],[-416,334],[-486,454],[-360,221],[-401,366],[-266,117],[-389,-109],[-424,-230],[-303,879],[-253,329],[-292,162],[-271,667],[-305,513],[-505,983],[-326,657],[-398,1436],[-202,672],[-564,1373],[-270,989],[-201,663],[-308,1012],[-187,651],[-160,822],[-271,573],[-219,527],[-174,749],[-34,1354],[-33,1385],[-40,1281],[-58,899],[-24,788],[-195,999],[-232,868],[-51,1429],[-331,156],[-398,-8],[-404,517],[-362,193],[-323,84],[-233,500],[-232,335],[-696,1038],[-387,-709],[-444,-998],[-213,-544],[-274,-191],[-301,-459],[-466,-300],[-274,-404],[-274,-313],[-200,-837],[-374,-946],[-212,-708],[-262,-584],[-275,-562],[-360,-724],[-352,-403],[-222,-379],[-303,-494],[-169,-195],[-191,-405],[-361,-713],[-208,-775],[-181,-740],[-286,-1048],[-242,-74],[-321,735],[-449,1627],[136,1365],[-1,795],[15,1290],[-1,898],[62,464],[181,935],[38,1193],[205,1072],[63,774],[-53,736],[-17,944],[-31,1152],[-108,689],[-194,805],[-143,972],[314,173],[218,530],[246,1204],[-279,228],[-243,19],[-271,-708],[-221,-485],[-353,-851],[-330,-617],[-746,-215],[-286,-187],[-428,-443],[-400,58],[-330,117],[-360,138],[-252,-13],[-883,-667],[-331,-313],[-249,-312],[7,-599],[-340,-653],[-538,-256],[-596,875],[-568,301],[-89,504],[-61,350],[-426,-181],[-52,-527],[176,-635],[254,-255],[-202,-349],[-191,18],[-389,118],[-675,137],[-343,115],[-372,-58],[-369,-380],[-336,49],[-428,389],[-543,360],[-264,126],[-239,164],[-610,192],[-370,487],[-171,977],[-210,782],[-624,754],[-309,360],[-462,795],[-276,592],[-142,-765],[-378,61],[-715,111],[-608,32],[-519,-351],[-207,44],[-73,15],[-314,464],[-387,297],[-77,-183],[-226,-544],[-185,-443],[-710,-308],[-438,52],[-391,-433],[-402,-469],[-412,-232],[-240,2],[-352,395],[-325,391],[-184,1070],[-120,660],[19,1031],[-98,865],[179,812],[190,581],[-59,830],[68,703],[204,945],[339,1186],[243,1069],[249,820],[228,641],[235,632],[300,687],[288,856],[222,1149],[162,1270],[-70,830],[-59,646],[-34,870],[-63,1206],[-262,648],[-257,703]],[[384394,264642],[-116,-228],[-196,-274],[-127,-183],[-146,-258],[-184,-355],[-336,-678],[-237,-492],[-221,-513],[-256,-461],[-292,-610],[-314,-469],[-246,-362],[-229,-466],[-210,-285],[-177,-306],[-177,-234],[-299,-521],[-278,-508],[-232,-504],[-213,-439],[-302,-597],[-156,-388],[-242,-488],[-159,-362],[-43,-72],[-64,-109],[-184,-176],[-235,-232],[-268,-262],[-324,-364],[-163,-223],[-121,-252],[-121,-221],[-203,-259],[-174,-211],[-156,-202],[-164,-242],[-145,-270],[-166,-217],[-130,-244],[-214,-217],[-281,-215],[-276,-290],[-297,-305],[-198,-156],[-159,-141],[-183,-153],[-205,-181],[-201,-217],[-276,-337],[-144,-135],[-178,-98],[-168,-158],[-221,-168],[-207,-192],[-189,-203],[-212,-220],[-238,-171],[-286,-158],[-210,-150],[-144,-48],[-165,-169],[-312,-159],[-318,-230],[-196,-76],[-170,-9],[-124,-72],[-143,-138],[-179,-131],[-182,-118],[-232,-138],[-148,-41],[-242,-130],[-284,-183],[-209,-49],[-163,-62],[-204,-137],[-175,-172],[-154,-122],[-152,-50],[-171,-139],[-297,-358],[-326,-311],[-194,-203],[-134,-119],[-255,-219],[-195,-192],[-266,-348],[-312,-192],[-175,-192],[-298,-285],[-148,-106],[-119,-29],[-154,-67],[-116,-106],[-135,-73],[-151,-73],[-130,-175],[-230,-323],[-124,-120],[-117,-247],[-156,-251],[-128,-162]],[[363818,240716],[-148,-201],[-24,-33],[-145,-6],[-251,-61],[-189,-106],[-245,-179],[-332,-416],[-238,-370],[-174,-230],[-136,-153],[-242,-372],[-138,-128],[-199,-160],[-240,-181],[-189,-163],[-209,-295],[-219,-79],[-298,-409],[-232,-353],[-218,-124],[-167,-165],[-630,-692],[-219,-138],[-150,-213],[-188,-74],[-211,-111],[-289,-239],[-302,-277],[-338,-158],[-207,-146],[-111,-139],[-443,-330],[-171,-241],[-255,-168],[-250,-382],[-234,-353],[-157,-188],[-305,-564],[-586,-1145],[-134,-86],[-214,-337],[-441,-515],[-691,-883],[-243,-174],[-115,-83],[-751,-864],[-161,-125],[-177,-348],[-410,-381],[-551,-523],[-378,-224],[-180,79],[-350,-103],[-326,-286],[-282,-358],[-297,-773],[-12,-31],[-112,-263],[-117,-60],[-75,2],[-386,9],[-130,-103],[-161,-12],[-178,-255],[-339,-283],[-176,-122],[-123,-40],[-158,-83],[-177,-186],[-181,11],[-231,-75],[-257,-183],[-263,-141],[-163,-146],[-2029,-1798],[-423,-489],[-405,-408],[-122,-123],[-275,-361],[-430,-431],[-369,-293],[-224,-208],[-172,-136],[-410,-382],[-128,-211],[-345,-564],[-341,-810],[-234,-816],[-104,-328],[-70,-296],[-116,-234],[-218,-603],[-394,-726],[-441,-494],[-323,-601],[-439,-798],[-328,-416],[-255,-290],[-411,-692],[-341,-460],[-268,-472],[-280,-585],[-445,-619],[-369,-409],[-133,-214],[-185,-152],[-133,-201]],[[334439,207409],[-810,2086],[-286,737],[-266,684],[-304,786],[-53,131],[-9,23],[-40,97],[-221,556],[-87,223],[-4,11],[-225,562],[-126,302],[-97,246],[-210,552],[-158,415],[-247,649],[121,170],[192,138],[120,49],[139,-204],[179,55],[120,110],[134,151],[146,161],[250,796],[295,409],[393,386],[234,323],[-217,1218],[-8,48],[-62,321],[-85,436],[-93,293],[-113,108],[-68,381],[-32,330],[-180,597],[-182,895],[-118,592],[-156,-241],[-140,-203],[-105,-200],[-232,-313],[-151,-287],[-138,-281],[-93,-273],[-200,-424],[-203,-127],[-70,-306],[-161,-228],[-175,-306],[-159,-232],[-181,-336],[-152,-350],[-104,-215],[-276,-598],[-572,1358],[-123,284],[-130,312],[-124,311],[-940,2247],[-581,1387],[-331,791],[-817,1950],[-304,728],[-266,635],[-1077,2570],[-466,1114],[-1277,3050],[-101,241],[-34,80],[-167,399],[-494,1180],[-158,377],[-749,1789],[-1194,2852],[-216,529],[-713,1507],[-244,515],[-106,215],[-18,35],[-634,1215],[-46,157],[-47,164],[-515,1072],[-98,204],[-1346,2745],[-395,808],[108,155],[126,149],[129,135],[133,137],[148,124],[147,69],[157,107],[127,-11],[135,190],[119,108],[145,142],[98,248],[121,267],[120,29],[114,-260],[270,665],[172,361],[194,237],[129,399],[95,317],[309,200],[397,1329],[32,147],[148,87],[260,850]],[[319415,257314],[700,-501],[648,-39],[625,387],[1621,667],[932,1074],[1428,1628],[1406,1125],[972,1480],[1411,1772],[1922,3923],[1309,2942],[578,1366],[1790,2108],[296,338],[-1831,5781],[-104,329],[-317,1000],[-1756,5546],[2352,9247],[-225,3044],[670,3242],[62,-129],[109,-227],[230,-477],[301,1],[1072,-1213],[588,914],[1355,-2528],[2027,-3864],[520,-993],[13,-416],[29,-898],[26,-793],[206,26],[161,20],[217,-470],[197,-426],[375,-54],[868,-126],[598,-368],[185,-1611],[692,-1839],[792,-4017],[1169,863],[1500,1709],[496,-12],[683,1146],[653,365],[512,720],[417,-17],[141,684],[424,429],[356,-321],[476,1161],[1956,2687],[5434,7384],[509,221],[1061,1820],[12,865],[729,847],[953,283],[153,1150],[3557,5048],[204,805],[512,1040],[291,-61],[409,1114],[2134,3370],[981,1061],[988,621],[940,-235],[538,1066],[1190,20],[438,725],[532,-142],[328,951],[2183,-8178],[-510,-4433],[286,-3318],[373,-677],[1912,-3468]],[[544256,291936],[-89,-250],[-49,-136],[-281,-786],[-80,-227],[-249,-704],[-197,-557],[-134,-382],[-24,-68],[-947,-2678],[-139,-81],[-141,103],[-176,-36],[-142,-107],[-114,-246],[-83,-302],[-137,-243],[-116,-156],[-107,-197],[-109,-225],[-98,-250],[-20,-84],[-96,-404],[-82,-270],[-15,-26],[-156,-276],[-107,-202],[-149,-98],[-114,506],[-64,339],[-97,225],[-126,127],[-165,38],[-77,51],[-42,27],[-253,410],[-6,9],[-110,189],[-116,191],[-39,15],[-97,38],[-337,279],[-121,-65],[-133,-374],[-195,-154],[59,-274],[-2789,-5431],[-992,-2763],[-592,-1651],[-225,-829],[-199,10],[-209,11],[-131,140],[-127,28],[-134,-160],[-240,-28],[-27,-4],[-271,301],[-32,35],[-82,-298],[-43,-497],[-110,225],[-128,269],[-20,43],[-158,340],[-157,340],[-196,24],[-333,40],[-171,-167],[-130,-187],[-130,-153],[-88,-137],[-110,151],[-75,-186],[-142,-755],[-261,447],[-48,-171],[-70,-586],[-97,-232],[-212,-512],[-218,-525],[-93,-224],[-101,-257],[-94,-241],[-73,-350],[-247,564],[-151,347],[-198,56],[-129,71],[-189,446],[-332,499],[-109,153],[-246,364],[-177,261],[-440,717],[-110,234],[67,291],[75,354],[64,297],[-51,92],[-114,208],[-148,93],[-141,94],[-123,59],[-315,191],[-166,-111],[-120,-22],[-131,86],[-128,227],[-218,55],[-162,45],[-56,477],[-125,165],[-239,74],[-190,59],[196,703],[102,366],[55,414],[39,379],[-63,185],[-34,100],[-188,-85],[-255,-446],[-115,-153],[-200,-37]],[[822374,250627],[-74,352],[16,80],[165,-155],[-30,-102],[-77,-175]],[[822374,250627],[87,-460],[8,-355],[-59,-337],[-49,-385],[-87,-871],[-40,-417],[38,-377],[175,-823],[38,-324],[107,-328],[19,-120],[49,-304],[10,-34],[94,-296],[10,-21],[103,-214],[90,-312],[3,-10],[85,-309],[265,-550],[7,-9],[117,-141],[7,-20],[299,-847],[50,-140],[129,-142],[1,0],[141,-78],[14,-8],[77,-24],[204,-64],[148,-52],[299,-97],[286,-94],[455,-147],[171,-56],[79,-26],[2,0],[55,-18],[138,-46],[97,-23],[147,-35],[191,2],[168,51],[157,83],[161,92],[138,78],[13,7],[165,83],[132,6],[139,-60],[180,-107],[170,-130],[126,-82],[193,-100],[126,-66],[177,-65],[162,-36],[131,-16],[46,-6],[221,-1],[251,3],[173,-6],[227,1],[197,19],[10,2],[143,32],[160,57],[127,60],[47,23],[168,102],[143,134],[20,19],[153,176],[178,190],[5,5],[138,171],[19,27],[175,247],[-20,12],[-194,117],[-54,275],[-114,428],[-96,277],[48,150],[-200,427],[-170,398],[-197,461],[-428,994],[-120,-296],[-43,-104],[-84,-202],[-162,230],[-134,2],[66,671],[74,737],[-61,99],[-9,219],[-39,163],[41,89]],[[829477,247855],[18,-7],[173,-76],[137,24],[180,66],[129,24],[303,38],[224,55],[126,-61],[136,-162],[126,-199],[130,-304],[62,-301],[71,-507],[64,-398],[15,-341],[30,-380],[37,-346],[-23,-336],[11,-450],[-7,-404],[85,-499],[7,-30],[53,-228],[39,-163],[79,-262],[89,-299],[-12,-345],[25,-383],[66,-339],[152,-449],[121,-350],[124,-395],[29,-74],[157,-413],[137,-228],[13,-22],[118,-215],[179,-349],[321,50],[131,98],[166,-106],[121,-79],[121,-78],[348,-220],[150,-97],[147,-91],[233,-145],[58,-34],[160,-93],[126,-72],[119,-93],[115,-139],[122,-225],[94,-221],[102,-241],[89,-252],[85,-291],[104,246],[82,143],[32,55],[148,237],[179,260],[224,119],[419,230],[154,40],[169,43],[145,51],[494,183],[372,148],[198,64],[174,56],[283,-71],[44,-542],[73,-322],[103,-361],[195,-268],[114,-301],[118,-450],[52,-542],[31,-550],[-17,-429],[20,-415],[-5,-764],[-51,-318],[4,-377],[21,-383],[78,-432],[83,-585],[133,-589],[34,-59],[82,-140]],[[839977,230395],[66,-539],[1,-484],[0,-460],[-1,-355],[0,-3],[83,-1193],[593,-1812],[70,-662],[37,-329],[106,-855],[178,-103],[-130,-547],[367,-205],[-35,-649],[295,-119],[-37,-343],[-117,-268],[-114,-99],[135,-208],[117,-235],[-95,-246],[-193,-240],[-93,-290],[-6,-492],[-72,-405],[-161,-28],[-180,181],[7,-591],[-186,-240],[-218,125],[-142,154],[-217,169],[-121,-295],[-156,-350],[-123,-181],[-133,-213],[-289,-59],[-474,-1470],[-111,-435],[-166,-344],[-68,-350],[-288,-580],[-212,-283]],[[837894,214464],[-322,994],[-239,966],[-166,782],[-135,965],[-69,911],[-82,954],[-83,1099],[-61,857],[-112,872],[-143,721],[-166,683],[-98,562],[-182,714],[-295,1083],[-241,806],[-267,731],[-222,519],[-264,640],[-295,682],[-329,730],[-231,484],[-313,571],[-330,468],[-267,301],[-419,216],[-364,186],[-246,98],[-270,78],[-262,42],[-405,36],[-350,-3],[-334,-68],[-413,-36],[-353,-2],[-554,19],[-340,38],[-340,44],[-377,142],[-127,362],[-149,422],[-14,41],[-14,-269],[-45,-858],[-282,-488],[-362,-712],[-234,-481],[-362,-533],[-403,-168],[-388,-172],[-370,-99],[-358,-108],[-268,-98],[-361,-131],[-314,-154],[-410,-253],[-327,54],[-224,153],[-670,-255],[-379,889],[-226,-173],[-376,221],[-450,-95],[-263,-27],[-331,198],[-280,12],[95,-726],[157,-617],[272,-289],[322,6],[209,-261],[284,-524],[303,-126],[275,-313],[391,-91],[312,252],[253,-494],[104,-602],[-306,-696],[-160,-867],[-55,-227],[-124,-513],[59,-360],[37,-221],[-117,-423],[-26,-91],[-68,-176],[-120,-311],[-227,-339],[-256,-310],[-31,-23],[-304,-228],[-296,-84],[-37,-11],[-376,251],[-278,308],[-252,742],[-81,238],[-189,1340],[-13,93],[-51,366],[-455,310],[-373,475],[-232,664],[-257,686],[-268,368],[-482,725],[-182,934],[-233,891],[-121,768],[-183,1308],[-224,746],[-52,174],[-182,1049],[-256,1044],[-403,1204],[-381,559],[-334,310],[-290,364],[-320,379],[-383,585],[-474,319],[-420,539],[-230,356],[-262,149],[-479,49],[-316,-188],[-353,-174],[-321,-155],[-253,6],[-295,-179],[-489,-83],[-465,-92],[-388,-86],[-269,156],[-345,-90],[-443,132],[-341,303],[-290,-82],[-372,64],[-300,211],[-201,1366],[-217,1227],[334,327],[246,-27],[306,493],[1,1512],[-106,903],[-205,707],[-274,240],[-275,620],[-83,188],[-221,837],[-62,902],[-175,796],[-22,100],[-169,815],[-15,71],[-47,374],[-76,610],[61,1732],[208,866],[34,143],[186,473],[280,-75],[238,-321],[137,-469],[336,51],[370,183],[158,539],[-235,614],[324,875],[109,-669],[333,-505],[348,146],[192,705],[-118,1140],[-537,807],[-256,16],[-299,594],[-223,449],[-196,740],[-346,672],[-208,620],[359,339],[154,608],[-4,700],[42,689],[-139,784],[83,792],[-211,868],[-94,737],[-215,905],[33,938],[-19,202],[-6,65],[-61,653],[-63,892],[-14,197],[63,1099],[121,529],[77,338],[1,1136],[1,172],[-175,1076],[-197,921],[-196,363],[-300,318],[89,624],[133,493],[153,435],[143,812],[220,973],[151,449],[-58,903],[-157,1086],[-123,523],[-254,85]],[[820405,313366],[16,5],[392,118],[135,-495],[72,-778],[118,-1061],[113,-1017],[178,-906],[101,-674],[183,-964],[313,-695],[286,-499],[404,-548],[304,-703],[247,-677],[226,-428],[208,-416],[230,-713],[241,-20],[252,-698],[285,-676],[390,-883],[210,-1574],[322,-197],[130,-777],[323,98],[320,-558],[363,-809],[234,-533],[213,-503],[197,-409],[216,-592],[200,-978],[135,-864],[190,-761],[246,-538],[343,-879],[263,-996],[156,-942],[246,-733],[218,-634],[116,-496],[66,-281],[215,-785],[88,-629],[-62,-766],[136,-1022],[156,-574]],[[830339,282906],[-182,-253],[-96,213],[-75,268],[-148,-11],[-210,-132],[-113,-252],[-76,-407],[-142,134],[-173,97],[-10,373],[-64,529],[-126,-52],[-183,-241],[-136,8],[-214,68],[-89,-315],[61,-358],[-125,-229],[-92,-256],[-103,-43],[-44,-19],[20,109],[36,200],[101,256],[-146,21],[-17,2],[-99,194],[-33,-345],[121,57],[-66,-284],[-147,-145],[-88,-231],[-100,248],[-227,-24],[-64,418],[82,327],[-121,-10],[-148,-226],[68,-381],[-118,-56],[-145,50],[-117,-107],[-139,-8],[-120,-4],[-87,-256],[-126,91],[-128,-37],[-122,-36],[-132,-17],[-103,190],[-145,9],[-131,83],[-190,24],[-118,165],[-122,-51],[-133,257],[-82,254],[-161,440],[-175,-6],[-203,-35],[-141,-23],[-155,155],[-43,389],[-122,211],[-285,52],[-514,93],[-101,18],[-31,-31],[-102,-103],[-516,-259],[-322,-399],[-14,-64],[-29,-343],[-48,-315],[-52,-336],[-116,-202],[-48,-295],[-5,-32],[-29,-357],[-32,-367],[-105,-231],[-110,-180],[-131,-151],[-112,-133],[-98,-314],[-50,-340],[-87,-499],[-114,-181],[-125,-133],[-89,-334],[-89,-278],[-3,-353],[46,-364],[-16,-377],[40,-325],[17,-365],[114,-128],[10,-382],[-7,-351],[57,-343],[-82,-388],[-24,-261],[-41,-458],[-35,-807],[0,-6],[5,-14],[204,-581],[126,-81],[127,-68],[118,-130],[42,-31],[74,-54],[113,-122],[154,-135],[142,-206],[123,-189],[130,-134],[2,-1],[128,-127],[191,-193],[114,-130],[116,-164],[128,-101],[129,-132],[105,-158],[101,-290],[2,-368],[-31,-344],[-62,-446],[-29,-363],[0,-313],[0,-29],[-38,-381],[-9,-428],[40,-362],[99,-456],[58,-302],[22,-393],[50,-388],[111,-186],[144,-259],[76,-292],[61,-361],[58,-267],[6,-25],[3,-32],[34,-358],[38,-428],[31,-381],[-5,-400],[26,-383],[54,-312],[49,-360],[36,-386]],[[823831,261230],[-149,126],[-90,591],[-53,351],[-83,406],[-67,328],[-333,-319],[-201,-192],[-126,-119],[140,-396],[-110,-194],[-246,0],[-114,-126],[8,-527],[5,-371],[6,-425],[99,-338],[122,122],[105,-184],[119,-126],[91,-256],[84,-263],[130,-194],[123,-166],[51,-553],[91,-273],[-49,-446],[-75,-374],[40,-650],[-30,-408],[15,-484],[-251,-79],[4,-548],[-36,-412],[115,-108],[153,-38],[164,9],[169,15],[92,-244],[120,47],[122,-79],[114,-251],[77,-317],[0,-343],[11,-384],[-35,-343],[-9,-391],[-89,232],[-127,32],[-126,100],[-150,39],[-126,13],[-126,-27],[-128,-27],[-173,-104],[-153,100],[-306,-79],[-106,-1250],[-216,64],[-106,31],[-6,-67],[-58,15],[-8,-131],[-64,6],[-11,-218],[147,-32],[76,-500],[86,126]],[[575210,227195],[-285,-1906],[-78,-515],[-429,-2868],[-143,-953],[-64,-428],[-269,-1798],[-62,-416],[-137,-914],[-64,-426],[-254,-1699],[-48,-319],[-51,-341],[-446,-2981],[-63,-417],[-181,-1208],[-90,-601],[-499,-3333],[-127,-847],[-140,-936],[-59,-396],[-128,-851],[-160,-1067],[-199,-1329],[-130,-873],[-164,-971],[-62,-441],[-123,-863],[-108,-761],[-106,-707],[-237,-1578],[-55,-367],[-79,-485],[-565,-3829],[-386,-2577],[-189,-1252],[-91,-599],[-213,-1410],[-115,-736],[-6,-42],[-85,-543],[-178,-1140],[-303,-1945],[-79,-504],[-50,-316],[-201,-1289],[-92,-591],[-96,-617],[-144,-920],[-72,-462],[-243,-1562],[-78,-503],[-101,-643],[-80,-515],[-70,-453],[-104,-664],[-69,-443],[-210,-1351],[-53,-337],[-100,-643],[-97,-632],[0,-5],[-175,-1124],[-52,-313],[-12,-71],[-41,-245],[-141,-712]],[[565679,164612],[-150,445],[-133,293],[-163,221],[-231,231],[-12,12],[-172,55],[-182,-27],[-340,-99],[-157,15],[-123,11],[-294,163],[-252,287],[-211,331],[-140,237],[-43,73],[-158,350],[-256,583],[-360,696],[-111,198],[-367,516],[-249,268],[-404,392],[-422,312],[-67,49],[-178,95],[-237,199],[-166,257],[-151,254],[-142,179],[-143,83],[-166,91],[-187,163],[-119,146],[-181,237],[-134,94],[-224,194],[-263,193],[-192,199],[-110,157],[-139,483],[-66,422],[-117,386],[-117,88],[-119,-5],[-134,-116],[-109,-174],[-128,-259],[-351,-814],[-236,-510],[-189,-566],[-135,-424],[-172,-348],[-121,-163],[-182,-165],[-164,-72],[-286,-107],[-168,-91],[-122,-105],[-108,-141],[-96,-283],[-14,-40],[-137,-510],[-283,-1066],[-127,-375],[-95,-229],[-76,-95],[-265,-220],[-148,-22],[-7,-1],[-10,4],[-5,2],[-170,70],[-52,97],[-235,439],[-63,119],[-66,33],[-7,4],[-21,14],[-20,17],[-19,21],[-19,25],[-19,29],[-18,32],[-16,34],[-213,470],[-1,1],[-16,38],[-15,41],[-14,44],[-14,47],[-12,49],[-11,51],[-10,53],[-8,55],[-8,57],[0,5],[-112,962],[-489,759],[-24,37],[-223,18],[-186,14],[-12,2],[-16,4],[-539,181],[-5,1],[-21,10],[-20,14],[-4,3],[-489,398],[-16,14],[-16,17],[-281,324],[-694,328],[-754,-138],[-5,-1],[-562,-76],[-384,-36],[-383,546],[-216,333],[-264,375],[-406,611],[-498,1179],[-152,365],[-1001,1587],[-476,740],[-301,461],[-216,333],[-265,405]],[[543586,178864],[-11,20],[-3,6],[-155,307],[-315,-527],[-180,230],[-162,104],[-257,96],[-124,126],[-154,299],[-163,299],[-167,165],[-124,-9],[-211,-1],[-285,230],[-80,281],[-216,1696],[-96,753],[-47,337],[-44,751],[-62,375],[-44,329],[-78,759],[-152,782],[-12,369],[-142,313],[-42,103],[-56,138],[-112,173],[-128,99],[-180,-129],[-415,-215],[-238,-124],[-379,-311],[-63,-50],[-354,-673],[-119,-789],[-101,-914],[-2,-15],[-8,-56],[-8,-55],[-10,-54],[-7,-35],[-31,-138],[-4,-16],[-12,-49],[-13,-47],[-3,-9],[-112,-359],[-12,-35],[-15,-41],[-16,-38],[-17,-35],[-17,-30],[-139,-234],[-1,-3],[-19,-28],[-19,-25],[-10,-12],[-109,-117],[-7,-8],[-430,-431],[-749,-749],[-2,-2],[-20,-18],[-20,-13],[-852,-494],[-99,-93],[-102,-174],[-430,-990],[-5,-12],[-17,-35],[-18,-32],[-1,-1],[-9,-15],[-515,-242],[-3,0],[-21,-2],[-21,2],[-21,6],[-20,9],[-21,14],[-20,18],[-19,21],[-7,8],[-426,542],[-13,17],[-18,28],[-18,32],[-17,35],[-16,39],[-4,9],[-202,529],[-143,98],[-386,-385],[-3,-20],[-8,-55],[-10,-53],[-11,-52],[-12,-49],[-8,-27],[-147,-869],[-209,-1244],[-170,-1084],[-20,-237],[-2,-20],[-6,-57],[-7,-57],[-3,-19],[-82,-532],[-5,-36],[-10,-53],[-11,-51],[-12,-49],[-14,-47],[0,-2],[-74,-242],[-14,-43],[-15,-41],[-17,-38],[-17,-35],[-17,-32],[-2,-2],[-95,-157],[-17,-26],[-19,-25],[-20,-21],[-7,-7],[-94,-86],[-14,-11],[-20,-14],[-19,-9],[-118,-47],[-2,0],[-21,-6],[-21,-2],[-21,2],[-21,6],[-20,10],[-21,13],[-20,18],[-19,21],[-19,25],[-8,12],[-74,111],[-10,17],[-18,32],[-17,35],[-16,38],[-16,42],[-14,44],[-13,46],[-12,49],[-6,27],[-375,1824],[-287,1091],[-11,45],[-11,51],[-10,53],[-8,55],[-8,57],[-1,13],[-67,594],[-4,44],[-5,59],[-4,60],[0,3],[-288,1218],[-1,0],[-13,47],[-12,49],[-11,51],[-10,54],[-1,6],[-94,561],[-1,2],[-77,462],[0,4],[-8,50],[-7,41],[-5,38],[-14,108],[-2,19],[-6,58],[-5,59],[-3,59],[-2,60],[-1,61],[1,60],[2,60],[3,60],[5,58],[6,58],[5,41],[111,816],[3,15],[148,1036],[266,2011],[-31,422],[0,10],[-2,22],[-50,831],[-2,37],[-2,60],[-1,61],[1,60],[2,60],[3,60],[5,58],[6,58],[8,57],[8,55],[1,4],[93,534],[52,815],[39,1006],[-168,1153],[1,146],[11,977],[-16,172],[-4,45],[-42,459],[-65,242],[-227,843],[-24,88],[-15,10],[-213,131],[-16,11],[-20,17],[-20,21],[-19,25],[-16,25],[-318,521],[-2,3],[-18,32],[-17,35],[-16,38],[0,1],[-363,918],[-171,180],[-19,6],[-21,9],[-20,14],[-7,5],[-69,58],[-120,79],[-38,6],[-39,-16],[-46,-42],[-96,-267],[-36,-149],[-90,-586],[-6,-34],[-9,-53],[-12,-51],[-12,-49],[-1,-4],[-77,-289],[-13,-44],[-5,-15],[-9,-29],[-8,-21],[10,-262],[38,-1017],[5,-135],[103,-795],[28,-213],[9,-611],[-11,-148],[-21,-263],[-27,-346],[-29,-70],[-175,-428],[-10,-23],[-19,-29],[-196,-311],[-113,-178],[-123,-111],[-101,-59],[-77,-12],[-113,5],[-62,10],[-175,108],[-111,107],[-86,111],[-68,124],[-12,34],[-229,658],[-40,116],[-42,248],[-43,257],[-33,193],[-116,1673],[-8,267],[-9,287],[-6,37],[-145,916],[-17,35],[-17,38],[-15,42],[-14,44],[-14,46],[-11,46],[-282,1208],[-1,3],[-11,51],[-10,54],[-1,5],[-180,1039],[-131,1016],[-523,1480],[-323,899],[-226,131],[-275,12],[-255,-336],[-583,-1357],[-295,-1301],[-368,-1627],[-1,-3],[-142,-1238],[-1,-13],[-70,-558],[-48,-196],[-65,-200],[-16,-50],[-15,-28],[-15,-30],[-35,-67],[-395,-527],[-94,-111],[-158,-188],[-19,-20],[-14,-13],[-203,-170],[-109,-286],[-185,-490],[-675,-33],[-19,-16],[-28,-23],[-1,-1],[-285,-249],[-140,-123],[-204,16],[-7,0],[-151,16],[-69,8],[-9,1],[-21,6],[-7,3],[-295,133],[-13,7],[-8,5],[-226,146],[-268,868],[-80,304],[-42,158],[-13,66],[-195,978],[-48,54],[-157,277],[-104,185],[-65,125],[-621,1206],[-722,1401],[-1,2],[-2,3],[-16,29],[-5,9],[-80,126],[-294,468],[-13,20],[-11,15],[-976,1261],[-204,262],[-8,10],[-2,3],[-266,1120],[-18,78],[-10,462],[-61,1045],[-224,-113],[-265,-285],[-135,-184],[-226,-537],[5,-176],[3,-103],[337,-515],[53,-138],[7,-19],[11,-133],[0,-289],[-194,-156],[-157,-127],[-154,-162],[-113,-243],[-414,-660],[-388,-618],[-549,-243],[-634,-514],[-343,-277],[-352,81],[-577,133],[-349,80],[-151,-4],[-141,-4],[-217,-125],[-135,-156],[-65,-188],[-54,-258],[-27,-307],[0,-3],[49,-251],[117,-275],[10,-24],[229,-396],[12,-20],[183,-94],[7,-1],[199,-23],[194,-23],[130,-25],[29,-6],[142,-157],[173,-407],[58,-187],[37,-188],[31,-423],[-4,-43],[-54,-598],[-207,-1471],[-139,-642],[-125,-454],[-31,-39],[-142,-376],[-10,-12],[-89,-117],[-228,-233],[-151,-153],[-151,-225],[-487,-725],[-142,-212],[-75,-230],[-35,-279],[-17,-134],[-83,-161],[-6,-11],[-23,-44],[-74,30],[-286,114],[-356,143],[-101,40],[-111,-14],[-469,-58],[-213,-263],[-223,-907],[26,-401],[91,-556],[170,-762],[94,-1252],[-147,-2630],[42,-191],[-87,-876],[27,-141],[-12,-646],[-62,-799],[-43,-69],[-37,-29],[-51,-40],[-76,-59],[-139,-315],[-218,-346],[-121,-82],[-962,-310],[-1475,-18],[-373,-518],[-962,-1336],[-127,-133],[-206,-131]],[[453916,234069],[-156,-8],[-156,-325],[-180,-161],[-105,-340],[121,-358],[-66,-311],[-14,-382],[-84,-265],[-38,-331],[107,-216],[147,-361],[-150,-475],[-152,-171],[-157,-81],[-104,-266],[-170,-149],[-182,-24],[-108,485],[-79,280],[-89,558],[-185,-55],[-128,3],[-168,34],[-210,-195],[-221,83],[-134,-49],[-192,-68],[-162,-386],[-104,-308],[-163,-391],[-103,-241],[-113,-149],[-113,-137],[-122,-81],[-205,-296],[-123,-115],[-120,-118],[-48,-57],[-64,-77],[-34,-359],[-38,-477],[-98,-432],[0,-400],[117,-245],[-147,-317],[-97,-367],[-77,-332],[-104,-177],[-168,-11],[-141,82],[-136,-181],[-131,-109],[-154,-70],[-27,-444],[14,-563],[57,-367],[15,-498],[-69,-563],[2,-399],[111,-427],[69,-334],[20,-344],[-79,-381],[-169,-318],[-37,-417],[-61,-524],[-55,-332],[-116,-154],[-109,-207],[-143,5],[-134,-87],[-109,-246],[-95,-243],[-221,-125],[-161,101],[-246,56],[-136,-181],[-211,-234],[-136,-16],[-108,-366],[-6,-443],[-34,-666],[-41,-398],[26,-408],[41,-399],[-27,-493],[-208,-285],[23,-506],[-13,-388],[-120,-168],[-190,-231],[-68,-329],[-109,-215],[-122,-201],[-156,-36],[-91,-343],[-155,-45],[-147,-115],[-171,-264],[-143,-123],[-171,50],[-170,-303],[-98,-303],[-96,-262],[-115,-149],[-130,-312],[-101,-375],[-156,-193],[-150,-120],[-142,-20],[-63,-536],[-96,-350],[-177,-165],[-236,86],[-275,16],[-121,-60],[-197,-439],[-69,-365],[-52,-451],[-80,-351],[-119,-281],[-93,-371],[-105,-337],[-169,-321],[-7,-427],[-74,-401],[-158,-168],[-177,73],[-129,-139],[-222,-236],[-199,-114],[-170,-322],[-212,143],[-169,-41],[-54,327],[-118,308],[-121,63],[-118,88],[-115,-50],[-91,-41],[-171,14],[-63,8],[-114,13],[10,424],[-131,460],[-71,353],[-280,95],[-161,8],[-138,-142],[-178,67],[-140,188],[-102,-224],[-158,-352],[-173,176],[-150,240],[-106,192],[-164,16],[-110,608],[-85,301],[-43,701],[69,398],[93,383],[15,376],[-94,299],[-149,95],[-161,60],[-190,-404],[-121,-33],[-107,160],[-238,-204],[-108,-163],[-179,397],[-100,907],[-397,540],[80,788],[91,417],[143,444],[15,425],[157,536],[51,641],[-308,482],[-135,139],[-186,223],[-185,1289],[-257,-38],[-158,30],[-267,-198],[-129,-233],[-376,-63],[-223,-128],[-282,-163],[-402,853],[-437,573],[-251,22],[-143,-609],[-255,-618],[-369,-483],[-243,-500],[-481,-598],[-156,-19],[-172,-129],[-321,-193],[-264,-42],[-255,53],[-285,-22],[-224,-83],[-176,-157],[-224,119],[-237,-281],[-170,28],[-179,-450],[-113,-241],[-130,-40],[-127,-24],[-159,-32],[-236,-530],[-19,-569],[-205,-603],[-279,237],[-68,564],[-45,384],[-72,269],[-32,114],[-220,-88],[-163,-61],[-120,40],[-162,244],[-187,-228],[-228,-252],[65,-345],[-197,-694],[-82,-296],[54,-647],[4,-576],[-126,-313],[-200,-185],[-153,5],[-130,5],[-176,2],[-107,-251],[-100,-319],[-140,56],[-152,180],[-121,103],[-110,-226],[-198,-54],[-44,-400],[-230,-334],[-33,-862],[-32,-403],[-14,-38],[-94,-259],[48,-467],[87,-349],[-8,-392],[17,-371],[-105,-473],[-170,-344],[-125,-232],[-99,-280],[-157,-126],[-133,-212],[-399,-564],[-71,-475],[-90,-278],[-221,290],[-16,17],[-96,94],[-139,172],[-6,-352],[-2,-375],[17,-210],[11,-126],[-57,-396],[-80,-310],[-78,-309],[-163,-119],[-75,-56],[-64,-49],[-202,-700]],[[420590,199010],[-254,197],[-47,-334],[-107,-378],[-86,-293],[-86,-294],[-20,-3],[-107,-18],[-85,286],[-113,196],[-84,-270],[-139,55],[-122,-133],[-55,-304],[-129,-28],[-120,-49],[-114,189],[18,-391],[-78,-344],[-125,-170],[-157,-145],[-129,-50],[-118,-110],[-126,-45],[-265,-198],[-114,-479],[-16,-511],[-160,-90],[-146,-93],[-139,-236],[-143,-19],[-215,-83],[-109,-330],[-350,-292],[-278,422],[-113,178],[-169,-26],[-98,-547],[-142,204],[-127,-160],[-268,-348],[-312,1144],[-224,387],[-148,273]],[[414671,195770],[6,1072],[2,1931],[32,678],[17,354],[3,161],[5,194],[0,13],[32,722],[24,654],[67,664],[-2,38],[-25,505],[-143,2117],[-313,4704],[-14,426],[-27,540],[-16,340],[-77,992],[-49,1258],[-17,428],[-53,1232],[-19,411],[-25,539],[-21,478],[-39,906],[-109,2666],[-49,1109],[-52,1126],[-43,916],[-71,1514],[-26,576],[-18,364],[-229,4861],[-21,446],[-40,939],[-21,499],[-15,342],[-45,1049],[-20,378],[-20,340],[-34,797],[-22,423],[-26,522],[-15,286],[0,13],[-5,85],[-64,522],[-41,42],[-43,138],[-82,265],[-119,383],[-77,252],[-1134,3659],[-67,219],[-64,204],[-84,241],[-430,1347],[-268,859],[-652,2086],[-117,372],[-1396,4550],[-375,1223],[-108,352],[-138,453],[-280,912],[-126,410],[-51,163],[-206,653],[-412,1329],[-639,2058],[-221,708],[-817,2622],[-12,318],[-13,330],[-105,2746],[-108,2876],[-28,810],[-15,359],[-51,1466],[-20,593],[-32,848],[-27,713]],[[433123,262336],[-482,713],[-152,287],[-14,26],[24,337],[4,418],[-28,448],[-55,406],[-81,374],[-175,700],[-54,421],[-45,536],[-23,126],[-35,193],[-84,252],[-49,8],[-153,24],[-176,-555],[-114,-273],[-112,-204],[-44,-61],[-95,-133],[-151,-147],[-138,-87],[-205,-107],[-95,-51],[-146,-97],[-132,-103],[-137,-124],[-134,-138],[-116,-140],[-205,-270],[-117,-155],[-119,-161],[-161,-220],[-23,-32],[-127,-173],[-287,-391],[-126,-171],[-4,-5],[-237,-329],[-176,-257],[-34,-29],[-96,-80],[-96,244],[-156,225],[-49,-77],[-20,-213],[25,-344],[28,-380],[-168,-307],[-167,-233],[-106,633],[-8,825],[-26,52],[-164,-167],[10,-511],[-3,-61],[-81,-286],[-87,-95],[-116,58],[-100,-117],[-28,-192],[65,-368],[92,-421],[72,-343],[2,-6],[-132,-251],[-13,-25],[-255,-485],[-151,-290],[-135,-258],[-41,-78],[-174,-328],[-164,-269],[-147,-202],[-126,-149],[-113,-115],[-170,-143],[-255,-185],[-145,-105],[-185,-133],[-168,-159],[-223,-191],[-207,-179],[-67,77],[-634,731],[-10,12],[-115,-147],[-179,-238],[-352,-607],[55,-190],[-154,-666],[-14,-59],[-152,-123],[-147,-117],[-166,-134],[-322,-258],[-152,-129],[-136,-136],[-89,-106],[-55,-67],[-146,-204],[13,-20],[102,-157],[221,-274],[262,-533],[134,-603],[1,-4],[129,-440],[8,-29],[0,-2],[2,-8],[87,-262],[18,-52],[164,-382],[2,-15],[130,150],[129,150],[318,287],[38,-323],[8,-72],[57,-473],[220,202],[89,110],[32,40],[164,200],[170,162],[140,115],[299,352],[158,212],[201,121],[133,-15],[140,-17],[119,-14],[158,-19],[19,-368],[36,-344],[79,-590],[14,-26],[169,-824],[-6,-125],[187,-663],[139,29],[132,-177],[-69,-330],[213,-343],[223,-395],[-22,-494],[-166,-307],[-120,-472],[-34,-383],[422,-427],[23,-461],[217,24],[54,-533],[-142,-178],[52,-529],[171,-94],[72,-302],[1100,825],[99,-436],[175,-482],[152,-210],[0,-42],[230,-307],[20,5],[320,-442],[261,-376],[249,273],[114,-294],[40,-355],[511,413],[37,386],[87,322],[67,439],[-31,341],[105,209],[247,494],[74,274],[103,250],[138,-31],[119,37],[118,43],[118,88],[118,96],[118,107],[77,7],[44,4]],[[431813,246835],[-44,-832],[-22,-402],[-25,-401],[-59,-312],[-87,-273],[-122,-384],[-73,-275],[-46,-327],[-9,-369],[37,-426],[65,-396],[81,-269],[108,-233],[152,-246],[171,-300],[94,-222],[139,-368],[101,-267],[106,-202],[944,1256],[553,138],[155,38],[803,352],[118,41],[15,-518],[1,-367],[108,-232],[136,79],[124,256],[-38,331],[20,427],[101,234],[118,204],[166,204],[303,420],[55,-441],[-26,-513],[131,-298],[132,-227],[176,-308],[83,-443],[-392,-301],[-166,-218],[119,-575],[190,0],[85,-417],[23,-58],[82,-209],[239,138],[117,-73],[-29,-765],[105,-278],[119,-94],[147,62],[120,530],[167,305],[191,132],[51,13],[48,-214],[-15,-53],[-209,-1135],[119,-138],[91,-233],[120,-323],[112,-382],[0,-374],[-27,-488],[26,-345],[84,113],[28,39],[29,93],[67,218],[56,182],[170,903],[74,451],[62,-61],[19,-212],[46,-428],[93,-332],[150,-386],[14,-30],[83,-183],[123,-222],[115,-325],[58,-351],[70,-376],[55,-336],[53,-327],[52,-363],[68,-480],[47,-321],[92,-414],[79,-257],[123,-304],[158,-300],[185,-343],[118,-219],[120,-256],[96,-269],[95,-329],[101,-340],[41,-29],[155,-110],[121,-75],[98,-179],[41,-37],[96,-75],[133,10],[160,6],[129,27],[134,109],[148,204],[126,312],[45,621],[7,546],[21,495],[303,1526],[322,692],[355,519],[381,7],[174,-346],[-11,-257],[-9,-194],[133,47],[95,35],[183,-212],[5,-85],[16,-256],[174,194],[94,106],[237,430],[43,337],[71,535],[55,394],[44,321],[129,375],[106,328],[67,533],[-48,781],[-3,49],[-42,686],[33,677],[70,312],[88,232],[159,151],[223,144],[215,142],[116,81],[151,108],[171,119],[10,7],[209,136],[504,330],[-291,990],[7,346],[225,309],[24,514],[56,330],[136,146],[91,304],[199,588],[76,1023],[-451,0],[-113,215],[-111,187],[-108,248],[-165,684],[90,268],[107,293],[102,-215],[127,-198],[160,135],[142,112],[74,58],[2,2],[140,111],[-76,593],[-318,241],[-2,6],[-72,257],[-1,3],[20,126],[30,190],[25,550],[-15,447],[-42,384],[-106,426],[-238,918],[-4,14],[-74,273],[-93,371],[-21,66],[-69,215],[-125,75],[-51,-18],[-92,-33],[-115,78],[-178,287],[-170,138],[-165,-223],[-92,288],[-6,16],[65,398],[1,8],[179,151],[452,382],[20,17],[233,197],[23,20],[198,167],[278,235],[78,-263],[91,-292],[53,-148],[37,-106],[8,3],[28,11],[92,336],[138,504],[10,16],[1,-2],[144,-216],[181,-226],[142,64],[90,12],[33,4],[181,397],[72,157],[11,24],[20,45],[564,1295],[312,730],[92,238],[110,271],[266,584],[51,-80],[82,-128],[234,-585],[-265,-391],[-109,-161],[-95,-169],[-153,-272],[-99,-284],[14,-39],[109,-307],[-147,-339],[-137,240],[-117,205],[-101,-196],[-106,-206],[-18,-422],[-6,-99],[-9,-151],[55,-126],[564,-32],[49,203],[183,536],[294,865],[209,616],[104,215],[-65,503],[-101,778],[-100,760],[-27,200],[-63,449],[-47,335],[-82,590],[126,181],[90,333],[-403,1094],[-125,253],[-419,393],[-11,26],[-196,466],[-99,235],[-242,569],[-302,645],[-145,-217],[-395,918],[-287,665],[-212,484],[-153,349],[-201,-171],[-152,1],[-145,1],[-127,-56],[-277,-119],[-191,31],[-150,61],[-284,171],[-159,63],[-22,1542],[72,317],[2,21],[-232,579],[-290,578],[-167,-312],[-874,-1629],[-19,-99],[-180,-918],[-18,-89],[-7,-34],[-203,23],[-471,52],[-802,89],[-74,308],[-166,705],[-89,408],[-110,459],[-168,-384],[-117,-166],[-121,-262],[-98,-212],[-119,-228],[-123,-321],[-144,-137],[-112,-275],[-136,10],[-113,322],[-181,511],[-154,438],[116,79],[176,119],[-272,2253],[-95,462],[-14,345],[-145,31],[-150,369],[-5,378],[-10,350],[-144,58],[-111,-182],[-77,-270],[-136,-194],[-134,-193],[-123,-181],[-124,3],[-146,138],[-112,-210],[-163,-306],[-148,-277],[-136,-216],[-115,-150],[-128,-162],[-133,-180],[-114,-166],[-108,-165],[-352,-555],[-107,-170],[-22,-35],[-127,-197],[-135,-214],[-238,-373],[-130,-248],[-141,-339],[-94,-226],[-108,-244],[-113,-222],[-95,-170],[-19,-36],[-273,-497],[-128,-330],[-114,-302],[-89,-242],[-21,-78],[-61,-216],[-15,8],[-107,51],[-117,56],[-128,60],[-133,75],[-134,62],[-222,20],[-121,-62],[-114,-111],[-242,-383],[-133,-231],[-83,-245],[-84,-346],[-51,-375],[-63,-297],[-105,-259],[-111,-275],[-126,-297]],[[645526,258255],[-35,-1689],[-9,-431],[-8,-402],[-15,-372],[-29,-1278],[-59,-2583],[-9,-355],[0,-11],[-71,-2926],[-18,-812],[-48,-2072],[-29,-1269],[-18,-762],[-22,-480],[-9,-368],[-11,-574],[-40,-2039],[-31,-1341],[-46,-1955],[-38,-1628],[-35,-1486],[-2,-92],[-41,-1574],[-8,-369],[-14,-638],[-17,-737],[-9,-401],[-12,-537],[-8,-343],[-13,-585],[-15,-697],[-31,-1081],[-22,-801],[-15,-555],[-11,-407],[-13,-715],[-12,-1353],[-7,-1239],[-4,-470],[-1,-431],[-3,-1191],[0,-22],[-4,-1059],[0,-122],[-4,-1395],[-5,-1363],[-4,-1423],[-2,-431],[-3,-455],[-4,-722],[-3,-371],[-13,-2102],[-3,-519],[-2,-439],[-14,-2492],[-2,-513],[-11,-1858],[-2,-422],[-4,-814],[-2,-1720],[-6,-1188],[-37,-1731]],[[644563,198045],[0,-1],[-2,2],[-148,-174],[-18,-21],[-5,-7],[-804,-1091],[-37,-55],[-50,-73],[-322,-472],[-347,-331],[-60,-8],[-143,-125],[-291,-328],[-210,-117],[-342,47],[-163,-132],[-196,-8],[-1,-1],[-98,-242],[-105,-445],[-78,-298],[-118,-210],[-210,-259],[-99,-422],[-173,-586],[-105,-196],[-122,-109],[-216,-117],[-305,-273],[-566,-290],[-152,9],[-238,125],[-149,-39],[-508,-438],[-152,141],[-91,344],[-119,243],[-427,-845],[-132,-180],[-152,313],[-150,16],[-98,-203],[-98,-258],[-328,-102],[-170,110],[-217,23],[-271,446],[-44,383],[-94,233],[-126,-41],[-133,1],[-274,-148],[-127,59],[-154,149],[-126,153],[-157,-55],[-113,128],[-111,-204],[-177,-17],[-192,118],[-131,58],[-134,1],[-119,-42],[-189,-82],[-216,-152],[-155,-34],[-180,89],[-156,92],[-136,86],[-33,36],[-108,122],[-176,9],[-97,-65],[-48,-33],[-127,-127],[-122,-93],[-130,-37],[-129,4],[-176,184],[-155,149],[-128,127],[-49,48],[-137,66],[-119,58],[-128,273],[-125,182],[-128,129],[-117,59],[-82,-49],[-55,-33],[-135,-171],[-46,-57],[-497,-682],[-135,-176],[-179,-224],[-118,-196],[-162,-534],[-14,-526],[-2,-60],[94,-335],[-112,-165],[-107,-168],[-137,-583],[-102,-176],[-126,-146],[-18,-22],[-108,-134],[-220,-414],[-197,-372],[-115,-246],[-118,-219],[-202,-60],[-137,7],[-176,-126],[-244,-289],[-185,13],[-125,66],[-225,3],[-145,-34],[-121,-52],[-145,-47],[-77,-561],[-1249,-148],[-138,34],[-158,-123],[-49,-39],[-89,-106],[-142,-169],[-145,-175],[-208,-259],[-39,-48],[-147,-182],[-159,-196],[-101,-126],[-115,-138],[-166,-136],[-125,-63],[-145,-41],[-123,-21],[-362,-75],[-272,-52],[-123,-26],[-123,-25],[-439,-90],[-130,-26],[-141,-28],[-201,-41],[-224,-44],[-138,-27]],[[620377,184136],[-146,-38],[-130,-70],[-129,-125],[-143,-181],[-206,416],[-130,248],[-129,246],[-103,216],[-138,349],[-136,282],[-98,245],[-83,260],[-129,184],[-131,91],[-135,45],[-120,43],[-140,-44],[-141,-109],[-147,-12],[-146,-41],[-266,-263],[-131,-29],[-115,91],[-119,6],[-127,129],[-103,181],[-148,91],[-87,52],[-113,68],[-154,85],[-135,-34],[-298,-401],[-100,208],[-70,350],[-78,260],[-107,241],[-108,205],[-152,187],[-110,208],[-103,278],[-73,273],[-51,374],[-91,226],[-115,240],[-103,244],[-113,329],[-82,274],[-123,477],[-82,304],[-162,508],[-79,262],[-118,324],[-115,279],[-82,257],[-86,298],[-117,233],[-177,163],[-99,228],[33,582],[24,338],[-8,351],[-14,656],[55,305],[37,213],[20,116],[-14,411],[-75,347],[-64,311],[-145,687],[-107,515],[-109,533],[-77,369],[-74,362],[-77,369],[-78,361],[-77,313],[-96,297],[-115,300],[-100,211],[-110,195],[-110,161],[-82,288],[-15,360],[-90,229],[-130,187],[-135,264],[-142,126],[-145,157],[-148,214],[-108,223],[-112,300],[-105,175],[-129,201],[-101,189],[-103,184],[-91,348],[-174,125],[-131,23],[-122,147],[-118,133],[-246,-184],[-178,-129],[-147,-33],[-188,7],[-135,-47],[-136,-40],[-138,95],[-107,232],[-79,291],[-73,308],[-38,449],[-64,499],[-25,352],[4,384],[-67,404],[-66,293],[-161,31],[-135,-6],[-177,-59],[-196,7],[-143,-109],[-135,-122],[-119,-34],[-155,-51],[-130,24],[-198,94],[-159,18],[-128,-17],[-156,-102],[-145,-90],[-198,-88],[-138,-68],[-123,-113],[-124,-120],[-195,-150],[-115,-118],[-153,-266],[-155,-352],[-88,-325],[-71,-441],[-28,-172],[-68,-282],[-112,-127],[-158,46],[-125,58],[-130,-41],[-117,-222],[-121,-137],[-114,161],[-180,266],[-110,139],[-124,274],[-118,202],[-134,35],[-133,-47],[-126,64],[-100,247],[-98,296],[-98,245],[-61,382],[-19,148],[-28,217],[34,361],[19,412],[-67,328],[-85,238],[-132,183],[-183,153],[-151,50],[-123,-15],[-147,-109],[-96,-267],[-141,-132],[-30,-29],[-83,183],[-27,59],[-131,178],[-81,89],[-39,42],[-119,-9],[-149,117],[-129,166],[-115,197],[-105,264],[-159,316],[-165,213],[-118,132],[-143,26],[-136,27],[-135,91],[-107,565],[-36,275],[-11,82],[-57,423],[-68,408],[-58,343],[-90,235],[-145,193],[-115,150],[-167,184],[-175,314],[-125,306],[-107,258],[-109,145],[-14,17],[-117,133],[-142,100],[-219,860],[14,373],[6,145],[6,353],[-47,351],[-79,553],[-46,346],[-55,414],[-26,478],[-33,481],[56,316],[79,331],[58,343],[3,410],[-29,332],[-56,307],[-122,464],[-58,305],[-35,337],[-87,265],[-142,113],[-134,72],[-113,171],[-106,167],[-135,115],[-119,-6],[-373,-192],[-194,-4],[-50,7],[-224,35],[-124,17],[-118,53],[-124,106],[-156,55],[-133,9],[-119,60],[-107,232],[-133,179],[-103,172],[-121,194],[-119,38],[-137,65],[-138,-5],[-175,-8],[-139,-16],[-155,-43],[-138,-15],[-157,24],[-189,-18],[-125,-68],[-226,89],[-129,47],[-131,-37],[-157,-438],[-177,-300],[-235,-341],[-23,379],[-6,392],[-1,10],[-72,889],[-92,302],[-180,207],[-188,217],[-93,222],[-126,410],[-74,442],[71,389],[85,340],[95,372],[-12,430],[20,637],[71,306],[57,224],[41,166],[12,373],[-73,369],[-98,516],[-4,52],[-28,372],[-10,393],[16,399],[64,533],[14,80],[106,603],[103,585],[235,1342],[175,998],[86,494],[65,438],[43,401],[33,439],[20,557],[15,434],[18,495],[23,715],[21,616],[24,712],[14,394]],[[863587,232534],[-297,-485],[-286,-682],[-385,262],[-156,-920],[-257,-372],[-179,118],[-2,1],[-128,85],[-363,388],[-289,657],[-253,604],[-220,534],[168,375],[66,149],[253,-127],[38,-1],[288,-14],[346,123],[90,32],[65,-130],[232,-469],[250,-251],[262,262],[29,536],[334,188],[394,-863]],[[830339,282906],[93,-339],[38,278],[49,362],[283,-182],[283,-17],[283,1],[157,-232],[203,-300],[-2,-952],[27,-556],[19,-406],[-46,-1078],[-18,-423],[303,-778],[238,-865],[101,-1206],[54,-469],[104,-742],[197,37],[317,-572],[276,-760],[352,-839],[262,-703],[156,-867],[86,-612],[229,-1060],[142,-927],[269,-865],[353,-999],[300,-800],[150,-750],[191,-814],[462,-1414],[348,-528],[293,-1011],[-302,-878],[-340,-725],[-283,-572],[35,-17],[270,-133],[252,52],[309,-297],[181,478],[348,-408],[369,127],[211,-279],[68,-765],[221,-640],[247,-461],[288,-680],[334,-703],[354,-330],[339,-241],[436,-519],[417,-630],[-178,-487],[-243,-301],[-246,199],[-291,-250],[-215,-820],[-156,-622],[-224,-357],[386,-643],[112,366],[172,170],[274,429],[217,375],[275,160],[62,-983],[-1,-762],[368,370],[322,-378],[337,-318],[289,-175],[313,-153],[328,-153],[308,-119],[362,-118],[394,-68],[330,-72],[62,-491],[427,46],[235,-535],[72,-745],[188,-526],[237,-622],[191,-467],[271,-486],[338,-884],[237,-1020],[259,-520],[293,-345],[292,-409],[323,-807],[268,-793],[108,-534],[69,-338],[30,-9],[286,-95],[214,-177],[343,-195],[347,-215],[139,-573],[291,486],[245,-110],[34,-16],[328,-745],[281,-961],[461,-846],[299,-757],[258,-1009],[244,-499],[284,-290],[353,-180],[279,-259],[201,-228],[206,-293],[487,-687],[287,-352],[275,-386],[283,-835],[151,-740],[-153,-366],[-178,-534],[21,-1302],[338,-487],[123,718],[-43,1117],[194,786],[-122,946],[230,274],[240,74],[317,157],[249,275],[331,14],[346,313],[360,36],[339,76],[274,-16],[438,-12],[299,232],[210,-483],[185,484],[223,206],[361,188],[222,120],[444,250],[342,249],[190,-114],[-105,-930],[173,-717],[209,-711],[63,-741],[-19,-872],[-47,-936],[-399,35],[-262,-148],[-275,-460],[-328,-95],[-250,-76],[-283,344],[-355,-239],[-369,-310],[-395,3],[207,-612],[437,-124],[245,444],[158,-489],[309,244],[330,-785],[307,598],[292,174],[497,578],[435,45],[463,-193],[298,-369],[-57,-625],[-182,-400],[289,-743],[229,-689],[125,493],[34,899],[161,849],[-112,658],[-49,961],[464,-533],[195,-342],[206,-866],[386,-717],[232,-579],[192,-820],[250,-1078],[-153,-886],[-285,-469],[-130,769],[-243,606],[-290,758],[-70,-876],[187,-475],[205,-685],[242,-717],[-40,-815],[256,-92],[261,-796],[-129,-902],[-146,-817],[-69,-1037],[-301,153],[-200,748],[-262,636],[-257,-243],[-303,196],[-239,707],[-314,696],[-227,388],[-243,713],[-337,-462],[-210,401],[-336,-3],[-375,323],[-146,578],[152,852],[-401,-211],[-100,-908],[135,-802],[-299,-486],[-299,-219],[-335,-90],[-185,-736],[-325,-233],[-291,-13],[-265,-134],[-351,-661],[129,-727],[155,606],[216,86],[436,39],[418,254],[283,409],[359,424],[209,-661],[226,845],[405,333],[340,-105],[118,-554],[409,13],[197,-586],[-332,-274],[-183,-600],[-73,-1024],[436,524],[516,216],[319,-960],[-150,-1045],[-47,-535],[-78,-675],[-209,-926],[-163,-1162],[-292,-108],[-116,-782],[-164,-562],[-261,-17],[-229,-171],[-275,76],[-457,-78],[-208,595],[-255,778],[6,-1487],[238,-578],[341,-26],[192,-1075],[-229,-429],[-296,-184],[159,-556],[-132,-950],[-87,-704],[-365,798],[41,-1028],[266,-680],[-116,-730],[-407,-131],[-220,168],[-333,167],[-286,-533],[347,-303],[314,-302],[368,-58],[351,105],[379,-369],[61,1312],[15,771],[205,1003],[145,1149],[251,90],[292,1197],[423,-266],[241,-211],[40,-824],[-86,-884],[102,-1404]],[[861076,204517],[-16,-360],[122,-547],[93,-252],[123,-317],[80,-383],[-44,-322],[-89,-274],[-93,-366],[-144,-624],[370,-1294],[31,508],[79,374],[130,366],[113,325],[253,-1360],[78,-424],[118,-643],[198,-1079],[660,-3517],[44,-229],[34,-176],[117,-610]],[[863333,193313],[-129,226],[-143,252],[-543,-1497],[-15,-41],[20,9],[395,196],[71,-647],[83,-755],[-272,69],[249,-752],[-60,-650],[-256,13],[-89,5],[-443,-560],[-286,-360],[-183,-231],[-213,-269],[-362,322],[-255,225],[-1243,-322],[-583,1143],[-611,-261]],[[858465,189428],[-731,-312],[-1045,913],[-115,515],[-439,239],[-380,594],[-35,55],[-559,977],[-81,425],[-309,786],[-84,287],[-112,376],[-98,332],[-108,366],[-140,473],[-45,151],[-65,219],[-158,558],[-95,386],[-882,3348],[-104,363],[-373,812],[-107,397],[-103,364],[-509,1805],[-117,414],[-464,1644],[-197,699],[-228,803],[-386,1274],[-117,387],[-183,604],[-211,694],[-202,683],[-570,1926],[-442,1489],[-103,326],[-232,717],[-2,8],[-462,1486],[-121,504],[-3,11],[-476,1477],[-106,311],[-257,868],[-104,354],[-26,90],[-97,301],[-437,1362],[-130,423],[-653,2060],[-142,469],[-842,2803],[-293,929],[-126,414],[-427,1407],[-271,896],[-92,320],[-153,372],[-16,38],[-88,-278],[-83,-263],[-146,-530],[-122,-157],[-163,-105],[-60,-342],[-135,0],[-256,0],[-71,-923],[-94,-11],[-131,23],[-122,-44],[-250,-11],[-233,-25],[47,1606],[-292,517],[-431,65],[-510,-1197],[15,-314],[2,-36]],[[829477,247855],[-211,500],[-25,59],[-112,251],[-147,341],[-66,309],[23,380],[78,287],[59,378],[82,256],[169,192],[134,93],[154,126],[109,187],[88,294],[-5,405],[-41,281],[-26,178],[-82,543],[-149,207],[-112,210],[19,457],[0,478],[38,466],[-15,565],[-33,536],[-45,569],[-21,432],[-18,370],[-82,-281],[-106,164],[-76,85],[-78,86],[-150,165],[-120,-229],[-56,-20],[-106,-38],[-137,-83],[-20,-12],[-128,-5],[-82,-408],[-41,-460],[41,-478],[-98,-430],[-140,-219],[-122,-63],[-137,-319],[-210,-112],[-193,-84],[-153,-374],[-9,-14],[-234,-330],[-126,13],[-121,-44],[-137,-118],[-210,-114],[-197,10],[-150,0],[5,-388],[-15,-355],[-21,-383],[-40,-460],[-178,222],[-108,162],[-128,252],[-117,240],[-60,148],[-36,86],[-173,493],[-150,591],[-84,328],[-78,424],[-6,29],[-83,416],[-72,502],[-74,486],[-161,1065],[-81,286],[-62,415],[-176,54],[-56,323],[-70,408],[-54,353],[-12,73],[-9,187],[-10,209],[68,286],[-15,557],[-28,344],[-29,384]],[[414671,195770],[-2365,-2535],[-1593,-1703],[-187,-201],[-373,-283],[-289,-237],[-1063,-874],[-408,-347],[-1404,-1208],[-474,-451],[-350,-334],[-555,-501],[-305,-275],[-886,-800],[-938,-859],[-366,-301],[-969,-921],[-392,-965],[-224,-545],[-323,-806],[-147,-368],[-907,-2265],[-299,-747],[-95,-300],[-551,-1301],[-354,-837],[-97,-233],[-699,-1683],[-150,-361],[-640,-1533],[-572,-1369],[-92,-219],[-446,-1070],[-906,-2168],[-233,-560],[-170,-365],[-75,-316],[-27,-349],[66,-301],[-19,-351],[-124,-330],[-124,-224],[-123,87],[-163,-119],[-241,7],[-159,-172],[-145,-125],[-241,-149],[-121,49],[-116,99],[-143,-47],[-172,-55],[-163,-25],[-165,24],[-227,406],[-176,141],[-147,-79],[-157,-215],[-114,-179],[-163,-55],[-122,-210],[-85,-273],[-152,-152],[-243,145],[-177,267],[-152,104],[-185,-226],[-107,-245],[-118,-264],[-50,-341],[-108,-380],[-104,-268],[-84,-249],[73,-333],[6,-366],[-119,-155],[-171,130],[-252,-166],[-162,-303],[-126,-328],[-176,-69],[-138,47],[-134,10],[-178,243],[-170,212],[-155,268],[-108,239],[-135,174],[-111,265],[-66,160],[2,12],[-216,681],[-174,548],[-71,172],[-71,172],[-148,350],[-233,552],[-18,45],[-51,84],[-34,56],[-33,-14],[-38,-17],[-40,-51],[-21,-27],[-95,-251],[-64,-290],[-6,-32],[-27,-146],[-48,-260],[-31,-188],[-30,-783],[0,-1],[0,-149],[0,-45],[34,-165],[271,-868],[44,-125],[179,-313],[56,-129],[36,-82],[30,-102],[0,-55],[0,-188],[-3,-76],[-71,-1724],[-18,-98],[-2,-12],[-96,-352],[-26,-94],[-88,-149],[-112,-117],[-159,-71],[-166,-31],[-72,53],[-520,387],[81,2428],[1,28],[0,61],[0,60],[-2,60],[-4,60],[-5,58],[-6,58],[-5,39],[-71,527],[-2,17],[-9,55],[-10,54],[-11,51],[-2,8],[-195,820],[-10,41],[-13,47],[-14,44],[-16,41],[-12,29],[-17,-1],[-737,-55],[-26,-2],[-220,109],[-78,8],[-145,-84],[-31,-18],[-61,-71],[-37,-102],[-15,-194],[-10,-131],[-8,-113],[23,-446],[11,-46],[13,-56],[4,-188],[-68,-399],[-91,-290],[-170,-446],[-16,-36],[-214,-473],[-21,-28],[-40,-51],[-67,-23],[-102,54],[-68,78],[-61,149],[-44,227],[-18,196],[-29,315],[-126,1352],[-10,273],[10,134],[20,414],[10,517],[-17,172],[-98,517],[-87,270],[-8,27],[-75,141],[-165,34],[-140,29],[-71,14],[-54,-55],[-44,-94],[-44,-133],[-57,-282],[-71,-391],[-17,-133],[-7,-227],[41,-251],[95,-430],[30,-85],[156,-455],[11,-188],[-10,-117],[-13,-54],[-42,-173],[-40,-94],[-44,-102],[-64,-71],[-101,2],[-2,0],[-444,4],[-63,1],[-176,78],[-179,-32],[-61,-55],[-85,-133],[-9,-21],[-62,-143],[-17,-77],[-6,-25],[-31,-345],[-2,-107],[-1,-26],[61,-430],[86,-311],[79,-365],[6,-390],[-4,-450],[-193,-484],[-173,-344],[-162,-359],[-117,-142],[-163,79],[-90,300],[-184,625],[-113,166],[-148,152],[-127,-111],[39,-892],[107,-654],[64,-668],[10,-349],[20,-294],[9,-125],[1,-359],[-129,-273],[-40,-8],[-114,-21],[-122,58],[-139,114],[-125,145],[-136,237],[-129,246],[-53,306],[-20,117],[-101,390],[-46,178],[-62,56],[-89,81],[-129,98],[-137,264],[-30,58],[-12,-7],[-85,-53],[-40,-25],[-58,-560],[17,-674],[21,-202],[19,-183],[14,-142],[85,-555],[41,-271],[25,-405],[-1,-339],[0,-20],[0,-25],[-43,-441],[-112,-193],[-225,47],[-274,65],[-149,-54],[-19,-7],[-9,-11],[-31,-33],[-137,-150],[-25,-207],[-8,-70],[-10,-90],[5,-33],[0,-1],[58,-399],[46,-216],[34,-159],[11,-104],[41,-385],[-66,-166],[-28,-71],[-136,75],[-41,101],[-89,220],[-63,332],[-17,366],[-58,445],[-1,10],[-60,381],[-61,369],[-96,333],[-4,13],[-29,58],[-65,129],[-6,11],[-36,45],[-75,93],[-17,20],[-163,-23],[-18,-3],[-12,20],[-145,256],[-13,22],[-147,377],[-5,27],[-102,594],[-107,399],[-101,346],[-70,459],[-42,412],[17,377],[-45,311],[-7,46],[0,99],[0,299],[-34,359],[-103,221],[-68,316],[-95,231],[-97,382],[-87,243],[-63,332],[-91,276],[-103,252],[-93,333],[-139,325],[-153,69],[-69,-49],[-99,-71],[-119,-70],[-181,-241],[-77,-288],[-13,-50],[2,-42],[23,-437],[80,-251],[14,-44],[33,-16],[183,-89],[110,-128],[121,-292],[60,-529],[11,-450],[-12,-56],[-69,-336],[-10,-46],[-56,-172],[-37,-113],[-6,-31],[-64,-308],[-57,-325],[-118,-426],[-88,-337],[-120,-130],[-98,-41],[-43,-18],[-128,-113],[-149,-105],[-111,-329],[-118,-501],[-93,-373],[-62,-124],[-122,-240],[-9,-28],[-97,-304],[-117,-105],[-122,34],[-34,145],[-33,139],[-26,-13],[-384,-191],[-117,-81],[-156,-188],[-147,-550],[-17,-433],[-94,-220],[-288,-311]],[[371282,151742],[-192,1228],[-224,1406],[-98,711],[-167,1049],[-152,958],[-134,842],[-66,405],[-86,476],[-279,1647],[-6,704],[-13,763],[-15,475],[-71,875],[32,468],[6,861],[11,1450],[-51,343],[-8,220],[-82,944],[0,141],[149,414],[35,197],[19,108],[0,280],[0,112],[-81,681],[-27,193],[-3,26],[-51,157],[-61,67],[-3,3],[-42,8],[-36,8],[-30,-49],[-4,-6],[-68,-191],[-256,-725],[-5,-15],[-1,15],[-141,1739],[-3,27],[-101,928],[-15,81],[-237,1311],[-36,197],[51,290],[125,414],[45,111],[38,92],[19,48],[125,101],[55,-8],[670,-298],[1,0],[160,-122],[26,-19],[77,-94],[19,-47],[15,-40],[14,-36],[436,-1201],[68,-462],[0,-492],[0,-565],[40,-211],[51,-63],[135,-87],[27,-17],[119,-76],[115,31],[82,78],[50,78],[146,689],[65,367],[3,353],[-65,906],[-19,260],[-24,235],[-77,470],[-71,250],[-17,45],[-75,198],[-81,94],[-14,5],[-111,35],[-61,4],[-254,20],[-153,-60],[-27,-11],[-68,1],[-47,31],[-41,110],[-10,70],[4,188],[16,110],[26,176],[15,105],[173,994],[47,94],[4,8],[35,33],[53,53],[217,140],[81,119],[14,22],[3,17],[14,100],[-25,488],[-2,29],[-23,305],[-78,368],[-78,282],[-75,188],[-128,235],[-49,63],[-141,180],[-112,94],[-301,142],[-68,94],[-10,34],[-55,179],[-9,29],[-10,86],[0,24],[0,211],[57,399],[-294,2028],[-7,52],[-31,205],[-81,1143],[-11,712],[-7,454],[-67,210],[-45,17],[-15,5],[-66,-108],[-26,-43],[-16,-93],[-3,-20],[-54,-323],[-30,-417],[-12,-171],[-23,-96],[-10,-45],[-27,-115],[-210,-699],[-135,-450],[-5,-19],[-116,-189],[-91,34],[-15,5],[-74,28],[-47,203],[-3,147],[-7,274],[-12,33],[-89,244],[-36,98],[-93,128],[-145,78],[-332,179],[-55,30],[-63,268],[-20,370],[-97,265],[-83,269],[-59,334],[-45,566],[-67,769],[-71,532],[-49,351],[-4,31]],[[366998,187614],[189,576],[23,681],[129,-1],[51,20],[152,60],[150,-96],[120,244],[131,-23],[49,-312],[355,359],[317,382],[108,130],[304,365],[38,64],[497,836],[189,241],[-25,143],[-235,1319],[132,478],[62,210],[76,-237],[119,158],[373,229],[-39,83],[-91,49],[-42,-1],[-90,464],[43,88],[171,248],[229,266],[-130,689],[-238,-1],[76,344],[-250,289],[110,138],[150,80],[1,395],[-270,0],[-3,67],[-43,1],[40,321],[23,6],[17,175],[48,35],[135,100],[195,124],[163,56],[156,-100],[123,-82],[174,-46],[117,-61],[160,-23],[223,68],[15,4],[1,-510],[21,1],[36,212],[42,-364],[-87,-106],[0,-820],[87,-291],[-87,-264],[227,0],[0,1465],[0,391],[205,0],[-1,190],[14,31],[25,1],[3,-251],[69,-148],[15,-280],[81,-343],[243,-265],[229,-198],[145,-626],[72,-283],[162,320],[98,898],[12,367],[-128,342],[-177,315],[-160,353],[107,157],[-47,173],[10,13],[293,422],[570,224],[0,547],[-35,-5],[-103,597],[237,198],[68,-297],[176,197],[-25,128],[192,198],[90,-530],[55,60],[-83,475],[108,131],[-95,926],[758,462],[-68,295],[-61,267],[-64,317],[80,331],[338,98],[501,663],[-28,218],[68,110],[-392,891],[68,232],[15,2715],[-623,-167],[-216,-58],[-247,-66],[-5,878],[-3,479],[-223,-223],[-197,-253],[-203,-224],[-90,-206],[-7,-16],[-52,64]],[[373489,207774],[-268,383],[-65,108],[-157,870],[-111,-435],[-338,1540],[-272,163],[-45,-9],[-88,-80],[-178,-212],[-19,-21],[-20,-17],[-1,-1],[-398,-303],[-19,-13],[-21,-9],[0,-1],[-186,-70],[-21,-6],[-21,-2],[-21,2],[-20,6],[-17,8],[-149,79],[-4,2],[-21,14],[-20,18],[-19,21],[-19,25],[-19,28],[-6,11],[-108,190],[-11,20],[-17,35],[-17,39],[-15,41],[-13,41],[-1,3],[0,1],[-312,563],[-57,104],[9,338],[3,121],[-40,382],[-12,111],[-44,418],[-1,6],[-108,559],[-99,511],[-52,268],[-102,194],[-113,216],[-108,137],[-50,27],[-4,3],[-21,13],[-20,18],[-17,18],[-149,173],[-3,4],[-19,25],[-7,10],[-369,558],[-11,18],[-18,32],[-17,35],[-16,38],[-2,5],[-214,548],[-13,36],[-14,44],[-14,47],[-4,17],[-65,253],[-7,33],[-11,51],[-10,53],[-9,55],[-7,57],[-4,36],[-51,497],[157,831],[194,1026],[79,249],[12,23],[463,867],[175,445],[80,431],[89,481],[198,761],[67,101],[170,260],[178,273],[372,326],[429,258],[658,312],[86,-32],[20,-7],[254,-94],[414,-458],[345,-381],[259,-96],[123,0],[309,25],[300,167],[99,149],[235,355],[11,16],[129,370],[123,557],[196,1454],[-112,558],[-164,362],[-262,579],[-152,200],[-75,38],[-1307,-96],[-298,-22],[-730,-654],[-12,-10],[-21,-14],[-20,-10],[-21,-6],[-21,-2],[-6,1],[-253,13],[-1714,-1307],[-141,-199],[-18,-25],[-20,-21],[-8,-7],[-442,-398],[-185,-375],[-6,-12],[-18,-32],[-10,-16],[-190,-289],[-739,-1337],[-370,-798],[-227,-723],[-244,-955],[-122,-326],[-176,124],[-187,132],[-423,298],[-390,608],[-539,1081],[-218,438],[-203,1922],[-9,250],[-5,126],[-121,880],[-177,668],[-72,216],[-224,663],[-345,1027],[-148,64],[-225,98],[-6,21],[-193,596],[-8,23],[-15,41],[-11,26],[-77,179],[-49,141],[-57,166],[-54,457],[-41,763],[-24,1107],[2,200],[61,539],[4,46],[5,59],[4,60],[2,60],[0,60],[0,125],[0,20],[-147,1491],[20,271],[-41,293],[81,1604],[40,93],[44,296],[131,312],[145,222],[177,209],[120,229],[92,231],[128,432],[91,575],[64,543],[9,444],[-115,526]],[[431813,246835],[189,-116],[299,-183],[141,10],[125,9],[181,137],[43,488],[49,321],[189,-43],[257,-4],[149,-54],[117,-42],[6,-2],[151,1288],[1,16],[3,11],[3,9],[14,62],[81,385],[-1,6],[80,345],[100,195],[116,186],[4,76],[22,390],[18,349],[15,269],[33,617],[-90,360],[-77,288],[-22,548],[-93,316],[-109,-45],[-15,9],[-346,202],[-2,-7],[-254,174],[48,380],[-24,445],[-15,590],[-146,393],[-25,377],[-2,307],[11,262],[36,850],[1,52],[162,2],[173,247],[6,343],[10,542],[8,403],[53,375],[16,280],[4,71],[-4,399],[-4,385],[-4,342],[-79,272],[-118,103],[-18,491],[-42,737],[-114,283]],[[290507,237284],[-289,-529],[-168,-222],[-187,-278],[-253,-414],[-218,-357],[-160,-361],[-207,-426],[-185,-313],[-178,-295],[-186,-255],[-143,-201],[-144,-94],[-204,-158],[-216,-162],[-123,-119],[-126,-74],[-130,-214],[-150,-207],[-144,-108],[-149,-69],[-160,-74],[-212,-121],[-174,-138],[-118,-133],[-138,-197],[-139,-263],[-183,15],[-166,44],[-152,-47],[-166,-30],[-158,11],[-170,-44],[-129,-55],[-208,-169],[-166,-134],[-121,-98],[-164,-19],[-128,59],[-573,-198],[-90,-38],[161,-952],[115,-693],[105,-624],[60,-347],[195,-1153],[73,-401],[215,-1270],[182,-1080],[76,-447],[224,-1325],[126,-745],[208,-1232],[143,-845],[206,-1218],[389,-2301],[-232,-167],[-149,-84],[-171,-179],[-407,-228],[-251,-263],[-212,-134],[-629,-516],[-436,-318],[-335,-288],[-172,-141],[-338,-277],[-437,-307],[-247,-285],[-368,-125],[-522,-376],[-632,-588],[-376,-370],[-369,-492],[-551,-861],[-312,-526],[-119,-267],[-124,-314],[-118,-209],[-107,-251],[-119,-148],[-207,-237],[-268,-216],[75,-476],[88,-517],[427,-2494],[252,189],[184,5],[155,-26],[158,-63],[144,-87],[205,-8],[150,67],[166,12],[131,-151],[153,-291],[111,-351],[98,-287],[195,-194],[133,15],[124,2],[213,-17],[223,-18],[130,-150],[224,-459],[241,-248],[340,-341],[150,-198],[110,-138],[292,-81],[163,-2],[211,46],[290,49],[178,-14],[243,-104],[236,-197],[244,-179],[175,-127],[199,-194],[117,-111],[121,-37],[246,12],[119,-6],[209,-211],[167,-242],[99,-192],[104,-201],[88,-322],[112,-192],[13,-414],[-4,-389],[61,-682],[70,-524],[78,-565],[88,-303],[2,-367],[-118,-1067],[-7,-361],[-66,-382],[-43,-376],[-3,-469],[-40,-417],[-82,-299],[-229,-714],[-121,-371],[-15,-419],[-46,-332],[-96,-274],[-44,-346],[-36,-326],[-23,-386],[-47,-581],[-63,-444],[-114,-184],[-155,-108],[-197,-215],[-127,-301],[-246,-615],[-119,-153],[-214,-96],[-117,-207],[-161,-375],[-114,-164],[-149,-48],[-131,-219],[-187,-128],[-145,-280],[-120,-101],[-129,129],[-122,-145],[-128,-172],[-110,-266],[-386,-505],[-151,-137],[-200,-73],[-177,-322],[-233,-196],[-142,-147],[-163,-134],[-99,-196],[-154,-228],[-118,-54],[-397,-851],[-165,-289],[-243,-413],[-159,-151],[-349,-331],[-231,-268],[-217,-275],[-122,-208],[-122,-205],[-165,-90],[-148,-23],[-140,-63],[-136,-95],[-164,-126],[-158,-175],[-140,-89],[-166,-187],[-170,-198],[-134,-227],[-163,-126],[-144,-71],[-131,-150],[-122,-192],[-151,-70],[-154,-32],[-192,-66],[-152,-150],[-201,-176],[-251,-196],[-209,-156],[-165,-157],[-148,-211],[-117,-106],[-159,-26],[-159,-77],[-169,-73],[-120,-40],[-118,-87],[-161,165],[-226,-28],[-157,-134],[-253,-292],[-186,9],[-154,-18],[-15,-404],[-110,-230],[-109,-235],[-148,-135],[-127,207],[-57,310],[-183,196],[-144,-111],[-125,-82],[-118,57],[-134,9],[-171,-9],[-152,191],[-120,0],[-127,-166],[-129,53],[-160,182],[-189,183],[-185,176],[-243,75],[-159,110],[-118,-41],[-121,-293],[-123,-196],[-256,-221],[-130,-147],[-165,-224],[-216,-221],[-178,-127],[-146,-168],[-121,-185],[-126,-222],[-292,-359],[-154,-155],[-197,-298],[-116,-174],[-136,-116],[-101,-183],[-126,-271],[-134,-121],[-107,-191],[-96,-268],[-169,-219],[-184,-182],[-115,-135],[-144,21],[-138,-105],[-184,-215],[-140,-145],[-148,-163],[-114,-290],[-201,-44],[-134,-28],[-132,-207],[-144,-114],[-165,0],[-166,110],[-190,116],[-195,-44],[-171,-114],[-226,-238],[-236,-163],[-182,-133],[-136,121],[-139,94],[-427,-581],[-116,-205],[-78,-489],[318,-879],[254,-704],[98,-309],[125,-370],[314,-932],[371,-1096],[93,-279],[113,-338],[787,-2351],[496,-1442]],[[265359,160442],[-122,4],[-135,-113],[-141,-180],[-158,-204],[-141,-330],[-140,-226],[-186,-346],[-145,-226],[-199,-329],[-136,-382],[-143,-158],[-136,-30],[-96,-307],[-93,-282],[-121,-144],[-144,-225],[-130,-35],[-119,-376],[-118,-239],[-119,-342],[-95,-273],[-95,-308],[-118,-171],[-131,-137],[-71,-273],[-190,-137],[-130,-102],[-83,-308],[-107,-239],[-130,-137],[-119,-34],[-104,-205],[-181,-69],[-142,-239],[-107,-239],[-109,-137],[-151,-137],[-131,-239],[-142,-171],[-154,0],[-143,274],[-83,341],[-35,411],[47,341],[142,376],[119,308],[154,274],[154,205],[143,136],[106,342],[107,240],[95,307],[119,171],[83,274],[-83,273],[-107,239],[-61,331],[-151,450],[192,346],[149,163],[14,378],[-100,625],[-83,328],[-78,279],[29,403],[134,161],[146,166],[163,509],[126,389],[91,269],[68,408],[-9,401],[-104,229],[-172,143],[-131,141],[-128,196],[-175,-20],[-180,-224],[-197,-293],[-173,-202],[-126,-67],[-141,-72],[-237,-174],[-125,132],[-206,132],[-178,72],[-99,-224],[-86,-246],[-131,-211],[-149,-53],[-148,133],[-183,195],[-125,33],[-122,-359],[-71,-392],[-113,-265],[-54,-376],[-109,-183],[-103,-172],[-124,-311],[-138,-107],[-160,124],[-126,125],[-154,-49],[-106,-248],[-29,-409],[-56,-410],[-57,-354],[-72,-277],[-95,-230],[-177,-184],[-111,-192],[-173,-184],[-260,-173],[-108,-145],[-257,-77],[-139,-97],[-120,67],[-120,-99],[-195,-76],[-179,-19],[-138,-51],[-92,-296],[-122,-51],[-160,-150],[-148,-120],[-110,-449],[-157,-233],[-57,-32],[-122,-71],[-190,-68],[-783,-137],[-581,-376],[-249,-34],[-462,-444],[-403,-376],[-451,-445],[-961,-376],[-486,-34],[-415,68],[-355,-854],[-250,-684],[-189,0],[-372,-596],[-695,-1113],[-475,-1026],[-367,-1230],[-166,0],[-321,-376],[-201,-445],[-380,-684],[-201,-341],[-214,-137],[-1494,-2564],[-119,-342],[-83,-273],[-118,-411],[-166,-205],[-106,-155],[-226,-324],[-95,-239],[-142,-376],[-154,-137],[-249,-410],[-155,-342],[-130,-342],[-166,-410],[-214,-205],[-166,-239],[-237,-205],[-154,-240],[-130,-273],[-143,-137],[-142,-171],[-130,-205],[-131,-205],[-119,-171],[-118,-102],[-119,-171],[-106,-205],[-143,-137],[-154,-34],[-166,-69],[-130,-102],[-143,-35],[-177,-136],[-131,-34],[-190,-308],[-711,-1197],[-360,-275],[-58,-44],[-123,-68],[-133,-73],[-465,-257],[-302,1470],[-215,1046],[-953,4628],[-71,349],[-182,891],[-144,703],[-224,1097],[-284,1389],[-696,3400],[-154,-240],[-166,-102],[-213,-205],[-143,-35],[-166,-376],[-142,-341],[-166,0],[-202,-35],[-166,-34],[-154,-205],[-178,-342],[-154,-68],[-107,-171],[-225,-205],[-118,0],[-155,68],[-154,-68],[-95,-205],[-118,-274],[-178,-273],[-131,68],[-177,-68],[-178,-171],[-154,-274],[-155,-239],[-296,137],[-95,-240],[-118,-68],[-119,-137],[-119,-376],[-142,-34],[-142,-34],[-143,-103],[-118,-102],[-143,-137],[-154,34],[-130,-34],[-142,-137],[-107,-273],[-107,-171],[-118,-68],[-155,34],[-130,34],[-119,-68],[-178,0],[-130,-35],[-142,103],[-131,-34],[-142,171],[-154,-69],[-131,-136],[-142,0],[-166,-206],[-142,-136],[-143,-171],[-130,-103],[-213,-68]],[[224643,142845],[-264,1843],[-249,1744],[-83,581],[-55,382],[-22,154],[-203,1421],[-783,5477],[-221,1551],[-52,359],[-97,678],[-80,547],[-80,542],[-49,339],[-47,337],[-46,329],[-37,271],[-83,609],[-469,3044],[-59,363],[-59,320],[-208,1127],[-451,2455],[-70,374],[-60,321],[-61,326],[-62,335],[-57,306],[-67,356],[-100,538],[-13,68],[-114,630],[-182,1000],[-271,999],[-787,2855],[-1155,2879],[-447,1121],[-445,1094],[-662,1628],[-164,404],[-145,356],[-93,231],[-188,434],[-7,17],[-181,450],[-322,832],[-184,476],[-322,931],[-41,118],[-798,2305],[-1999,5773],[-108,243],[-110,161],[-74,285],[-77,309],[-9,362],[29,350],[24,405],[-55,323],[-57,420],[-75,401],[-27,351],[-47,346],[-10,543],[11,422],[-59,366],[-66,304],[-154,480],[-76,362],[-84,367],[-43,332],[-120,808],[-61,333],[-104,324],[-102,226],[-36,362],[-29,432],[-125,438],[-40,378],[63,434],[20,380]],[[229435,238268],[140,218],[311,111],[359,-200],[231,649],[234,110],[239,-144],[262,211],[296,-135],[190,-462],[148,-78],[227,-1087],[147,-180],[70,-415],[-31,-751],[87,-248],[-28,-429],[381,-539],[239,-538],[222,-285],[190,-501],[119,96],[256,-354],[-26,-387],[81,-322],[248,-118],[231,-320],[83,-652],[270,-291],[5,-496],[268,-823],[848,18],[92,-545],[262,9],[91,-2096],[122,-462],[377,-532],[760,-346],[4352,552],[2207,280],[6307,801],[341,43],[73,128],[14,24],[300,520],[325,-288],[252,864],[751,2144],[142,1220],[116,158],[127,9],[148,-173],[129,-30],[178,539],[112,153],[135,-112],[204,535],[238,160],[131,-27],[124,280],[161,378],[221,-16],[276,283],[87,258],[114,229],[143,36],[228,-343],[127,93],[176,518],[281,37],[187,577],[121,216],[508,433],[232,454],[73,314],[31,385],[13,463],[30,371],[23,700],[-9,355],[-41,336],[-7,372],[28,709],[150,657],[59,344],[178,1539],[157,549],[150,611],[178,582],[125,47],[52,-268],[-72,-337],[19,-568],[178,-448],[96,-327],[291,-251],[118,-239],[182,10],[155,-56],[120,309],[189,40],[139,-150],[123,-49],[127,-225],[320,170],[72,279],[75,282],[205,321],[208,668],[339,470],[97,26],[144,-43],[154,139],[88,36],[143,356],[121,37],[142,-95],[142,400],[137,97],[135,425],[182,506],[74,37],[94,123],[-43,351],[20,534],[144,299],[174,175],[397,114],[89,365],[151,256],[211,91],[125,267],[59,668],[59,44],[263,48],[107,-280],[427,-44],[341,592],[245,329],[125,-234],[170,123],[77,-380],[170,-84],[142,-151],[218,-340],[288,233],[288,-163],[127,328],[179,125],[370,228],[224,223],[6,383],[-107,877],[99,474],[159,141],[264,135],[112,361],[53,435],[69,193],[86,398],[-4,373],[75,736],[146,329],[90,400],[-36,358],[91,342],[99,785],[192,65],[68,367],[129,196],[-16,341],[-132,82],[-139,688],[282,756],[92,356],[376,305],[83,389],[130,207],[-223,1131],[2,835],[95,296],[82,-6],[224,516],[-11,518],[78,295],[29,336],[244,123],[300,384],[2,348],[106,416],[122,63],[147,206],[124,-14],[35,-408],[110,-230],[598,-341],[232,160],[168,120],[266,403],[133,244],[96,685],[119,635],[263,375],[91,442],[-12,684],[-153,709],[-13,418],[199,301],[47,358],[146,1009],[186,423],[264,-86],[3311,-8688],[734,-1925],[2361,-5225],[89,-196],[301,-587],[1534,-2988],[3763,-7332],[332,-646],[910,-1774],[1569,-3098],[1362,-2690]],[[761433,256991],[-160,-308],[-30,-205],[-423,316],[-114,-917],[-69,-557],[-54,-429],[60,-1222],[-17,-109],[-71,-78],[-68,-47],[-16,-7],[-80,-39],[-132,-16],[-92,173],[-122,180],[-81,63],[-85,0],[-61,-31],[-272,-172],[-68,-93],[-71,-172],[-36,-185],[-12,-65],[-38,-345],[-26,-20],[-310,-245],[-80,97],[-173,209],[-32,39],[-32,-68],[-16,-34],[-152,-367],[-279,-672],[-12,-28],[-186,-464],[-20,-15],[-383,-269],[-203,732],[-312,-656],[-314,-662],[-66,-83],[-82,-105],[-267,-339],[-234,-281],[-157,-344],[-36,-114],[-43,-136],[-121,-384],[-9,-38],[-35,-149],[-55,-431],[-65,-356],[-43,-233],[-1,-5],[-211,-688],[-33,-8],[-20,1],[-194,7],[-51,-54],[-2,-90],[-39,-150],[-18,-12],[-74,19],[-179,34],[-54,28],[22,307],[19,153],[-12,275],[-44,878],[-149,-101],[-196,-119],[-117,-108],[-212,-148],[-101,-74],[-88,-186],[-47,-99],[-3,195],[-6,358],[-10,0],[-191,-2],[-77,0],[-189,-3],[-89,-373],[-54,-338],[-62,-348],[-63,-181],[-69,-198],[-21,-61],[-117,-287],[-139,-265],[-117,-217],[-113,-144],[-18,-24],[-114,-147],[-11,515],[-21,696],[524,1480],[148,434],[-10,76],[-37,276],[-96,215],[-100,197],[39,128],[43,145],[-116,279],[-89,314],[14,458],[50,368],[-27,589],[21,488],[119,334],[104,366],[103,292],[9,131],[-591,-88],[-34,-5],[-51,584],[72,378],[-35,462],[91,411],[49,160],[45,146],[30,350],[-23,358],[-48,329],[47,452],[9,147],[37,167],[101,236],[70,107],[-403,77],[-23,4],[9,150],[12,199],[84,1353],[10,180],[-165,252],[-61,204],[-71,573],[-249,-71],[-9,366],[-256,312],[-63,76],[-52,63],[2,248],[2,296],[15,841],[8,457],[8,63],[47,353],[10,29],[127,361],[39,108],[75,206]],[[754018,262520],[-43,-87],[201,-90],[123,-55],[376,347],[412,186],[251,112],[212,-4],[239,175],[309,218],[216,-293],[26,-180],[18,-69],[25,-72],[28,-51],[55,121],[-18,41],[-16,56],[1,8],[0,19],[296,-148],[345,-294],[329,-166],[259,154],[288,295],[159,298],[109,226],[118,242],[101,323],[59,432],[172,1106],[397,-252],[233,-778],[90,-401],[103,-504],[-30,-347],[21,-378],[103,-300],[78,-329],[152,-357],[128,-467],[84,-368],[108,-252],[121,-140],[132,-293],[113,-267],[154,-273],[122,-218],[235,-489],[125,-245],[135,-219],[226,-527],[-65,-975]],[[761433,256991],[358,-109],[236,532],[223,799],[212,237],[224,102],[693,173],[323,235],[370,325],[413,200],[215,358],[239,954],[161,1277],[29,757],[-12,950],[61,-102],[149,-246],[167,-694],[352,-880],[460,-952],[542,34],[344,-222],[76,-1001],[287,-817],[70,-759],[109,-1009],[54,-1027],[256,-741],[343,-407],[262,-250],[359,-219],[279,28],[335,12],[483,265],[271,227],[235,252],[201,339],[619,1677],[303,1346],[264,596],[261,-148],[209,-501],[-96,-1358],[328,409],[177,188],[337,10],[214,1064],[361,628],[440,34],[415,-444],[367,-619],[842,466],[616,-347],[273,-288],[472,-71],[335,268],[433,469],[329,88],[369,98],[529,172],[529,1375],[459,1149],[278,211],[-116,-949],[110,-1113],[178,-1657],[200,-1434],[4,-1312],[62,-835],[165,-997],[55,-1028],[167,-515],[272,-1181],[-138,-1145],[436,-4],[331,-235],[239,-280],[283,-451],[231,-264],[251,-234],[407,-296],[215,-308],[-193,-925],[85,-1063],[368,40],[319,447],[376,312],[333,272],[488,1260],[422,2233],[269,929],[230,923],[238,923],[241,857],[92,541],[211,550],[187,313],[237,265],[419,736],[329,516],[397,477],[409,890],[156,24],[301,47],[364,204],[46,896],[-58,283],[-129,619],[638,-94],[390,-392],[676,-788],[439,-815],[-143,-444],[-169,-525],[-186,-438],[-95,-801],[-20,-170],[-93,-1287],[84,-1048],[22,-266],[29,-729],[15,-365],[243,-747],[284,-1026],[321,-801],[87,-1371],[12,-721],[-23,-828],[152,-1239],[305,-993],[155,-1262],[75,-927],[41,-1452],[-255,-732],[-303,-464],[-346,-118],[-210,-994],[-90,527],[-200,372],[-234,-287],[-103,-416],[-109,-141],[-251,-36],[-82,-473],[-58,-1393],[-261,-43],[-352,1]],[[790349,236689],[-200,34],[-130,-294],[-110,-675],[-65,-592],[6,-348],[58,-349],[62,-497],[-138,-297],[-171,-159],[-121,-206],[-127,-529],[-115,-716],[13,-428],[76,-319],[144,-253],[164,-128],[194,-235],[128,-446],[115,-520],[-48,-359],[-177,-409],[-93,-304],[-143,-330],[-153,-157],[-110,-432],[-165,18],[-125,100],[-173,26],[-125,20],[-131,-112],[-28,-483],[25,-356],[16,-428],[-2,-704],[-112,-192],[-177,-237],[-120,1],[-46,429],[-166,157],[-139,-321],[-44,-336],[-58,-375],[-156,54],[-122,415],[-37,501],[-4,368],[-142,180],[-129,8],[-65,-337],[-119,-133],[-129,17],[-195,-83],[-140,-66],[-119,33],[-163,215],[-89,-230],[-3,-12],[-98,-445],[-88,-391],[44,-336],[143,-251],[95,-211],[88,-279],[48,-395],[-4,-429],[-143,-368],[-156,-86],[-152,-266],[-106,212],[-152,93],[-241,-258],[-187,-148],[-424,-157],[-149,8],[-171,48],[-111,-228],[-379,-251],[-146,-132],[-243,-436],[-232,-480],[-244,-399],[-120,-127],[-128,-29],[-115,-219],[-21,-451],[-105,-1654],[-54,-321],[-105,-485],[-180,-524],[-129,-298],[-101,-188],[-251,-312],[-133,-134],[-125,-78],[-183,-78],[-200,-525],[-148,-80],[-267,-656],[-114,-289],[-151,-381],[-160,-406],[144,-4],[-162,-163],[-228,-437],[-649,-1604],[-907,-2254],[-763,-1890],[-393,-982],[-366,-911],[-262,-651],[-109,-211],[-281,-593],[-410,-876],[-1043,-2263],[-188,-407],[-468,-1015],[-159,-343],[-304,-660],[-270,-596],[-472,-1026],[-119,-489],[80,-392]],[[773099,195291],[-182,-196],[-1611,-1747],[-345,-380],[-1594,-2130],[-18,-25],[-241,-324],[-43,-82],[-70,-135],[-208,-394],[-292,-560],[-291,-548],[-737,-1074],[-285,-417],[-529,-772],[-6,-9],[-1192,-1724],[-178,-261],[-611,-895],[-261,-385],[-1097,-1606],[-128,-187],[-647,-947],[-241,-336],[-373,-553],[-222,-308],[-398,-554],[-429,-597],[-876,-1186],[-380,-531],[-805,-1116],[-935,-1339],[-816,-1171],[-667,-939],[-394,-554],[-319,-470],[-405,-597],[-294,-435],[-8,-12],[-138,-193],[-534,-755],[-471,-673],[-111,-159],[-146,-211],[-293,-428],[-113,-164],[-671,-966],[-292,-420],[-481,-677],[-190,-272],[-365,-518],[-306,-436],[-1228,-1753],[-211,-307],[-188,-257],[-159,-219],[-136,-204],[-218,-332],[-146,-207],[-903,-1290],[-227,-333],[-136,-214],[-1124,-1763],[-1163,-1491],[-62,-80],[-286,-377],[-399,-501]],[[744274,154595],[36,1146],[33,1020],[3,291],[7,781],[49,1284],[63,1843],[34,1021],[25,750],[140,4202],[57,1696],[9,579],[-124,2381],[-66,2614],[-11,787],[-58,1646],[63,2894],[43,3351],[29,2462],[5,464],[7,363],[6,1252],[7,657],[6,686],[10,954],[-2,974],[-2,688],[-16,1194],[-41,2767],[-4,777],[-21,2177],[0,29],[-6,570],[-6,608],[-32,3190],[-6,1220],[-22,4419],[-13,859],[-11,449],[-46,716],[-17,426],[-50,913],[-32,570],[-83,1862],[-25,512],[-10,344],[-12,415]],[[744190,215398],[228,63],[139,40],[531,761],[397,306],[388,298],[429,1063],[-13,443],[34,20],[535,321],[95,-888],[-21,-432],[-26,-526],[573,174],[160,-314],[595,38],[23,-1096],[21,7],[204,61],[0,-6],[1,-232],[12,0],[106,1],[1,205],[22,5],[184,43],[34,8],[105,8],[45,-273],[756,471],[159,88],[12,288],[5,2],[31,15],[43,53],[503,218],[-45,729],[-64,670],[143,171],[-1,1230],[403,522],[178,231],[-225,1640],[246,407],[394,653],[118,156],[37,49],[337,583],[177,308],[87,239],[3,8],[36,336],[-101,415],[-78,527],[-66,297],[-5,23],[-149,428],[-182,476],[-120,314],[-331,866],[-13,425],[-33,456],[-151,32],[-157,66],[-164,245],[-159,-219],[-188,123],[260,1060],[-177,-103],[-202,308],[41,684],[3,531],[-139,392],[-128,92],[-133,-92],[-239,233],[-19,403],[-169,389],[248,505],[155,316],[-279,993],[-118,413],[-332,1115],[-273,911],[-207,783],[21,167],[22,173],[-65,294],[-131,219],[-103,216],[-153,168],[-118,114],[-34,83],[-66,161],[-126,223],[-131,102],[-101,232],[-141,133],[-118,92],[-111,202],[-132,0],[-129,100],[-121,12],[-128,83]],[[822374,250627],[77,175],[30,102],[-165,155],[-16,-80],[74,-352]],[[180983,171245],[-139,1],[-203,-133],[-104,-186],[-171,-118],[-126,-116],[-181,-80],[-164,-304],[-124,-294],[-183,-323],[-132,202],[-17,349],[-68,286],[-201,86],[-236,101],[-515,-127],[-273,-358],[-390,-514],[-358,-471],[-205,-719],[-197,-693],[-126,-246],[-28,-345],[50,-332],[-47,-328],[-88,-423],[-187,-40],[-138,-26],[-121,119],[-157,211],[-160,79],[-123,-62],[-121,-58],[-120,49],[-178,88],[-20,369],[-95,345],[13,363],[-150,-301],[-199,-416],[-224,-471],[-323,-677],[-208,-434],[-221,-464],[-108,-225],[-556,-1157],[-746,-1555],[-295,-616],[-324,-675],[-123,-255],[-124,-258],[-268,-557],[-233,-482],[-103,-214],[-138,-193],[-212,-130],[-100,-360],[-106,-174],[-114,-206],[-122,-35],[-118,152],[-125,-89],[-119,-452],[-110,-430],[-48,-322],[-55,-412],[20,-343],[-36,-337],[-110,-170],[-245,161],[-87,-293],[-6,-464],[-141,26],[-142,-2],[-155,-149],[-104,-171],[-138,-146],[-115,-127],[-37,-428],[-29,-28],[-90,-85],[-159,-236],[-140,-153],[-100,222],[-121,152],[-124,-91],[-119,-239],[-89,319],[-102,269],[-114,313],[-354,719],[-289,868],[-305,1253],[-128,222],[-146,219],[-98,-222],[-136,-164],[-113,-146],[-114,-124],[-108,-189],[-117,-73],[-125,11],[-104,-213],[-126,-9],[-196,94],[-118,-181],[-116,-116],[-69,-282],[-97,-201],[-87,-264],[-117,-78],[-91,-289],[-122,-193],[-63,-308],[-110,-298],[-122,-191],[-169,-272],[-104,-201],[-183,-326],[-176,-311],[-304,-539],[-108,-188],[-108,-187],[-127,-221],[-125,-217],[-27,-47],[-86,-148],[-270,-469],[-361,-625],[-172,-299],[-149,-257],[-102,-176],[-156,-270],[-305,-532],[-341,-599],[-340,-599],[-160,-281],[-128,-223]],[[159723,147047],[-528,-917],[-258,-446],[-173,-301],[-305,-530],[-136,-236],[-149,-258],[-675,-1269],[-92,-237],[-176,-181],[-225,-132],[-115,-123],[-147,-5],[-184,-202],[-135,-144],[-111,405],[-133,-42],[-88,-334],[-137,-47],[-139,-8],[-152,-138],[-62,352],[51,368],[-34,344],[-97,593],[-125,385],[-76,344],[34,619],[135,113],[-119,170],[-48,318],[-53,338],[15,395],[5,348],[-144,306],[-121,72],[-22,428],[-160,375],[-206,235],[-64,591],[-149,200],[-101,-256],[-136,123],[-123,-213],[-204,-11],[-119,-62],[-110,131],[-111,329],[-33,489],[79,500],[109,198],[-58,315],[-192,-64],[-170,11],[-123,26],[-172,67],[-228,-112],[-107,-189],[-130,144],[-117,146],[-101,293],[-159,184],[-145,150],[-133,-92],[-144,3],[-64,336],[-131,236],[-234,282],[-196,377],[-157,162],[-158,-165],[-130,101],[-186,310],[-293,490],[-344,573],[-110,184],[-408,681],[-764,1277],[-106,177],[-339,567],[-320,534],[-112,186],[-235,390],[-379,624],[-109,181],[-184,303],[-115,186],[-442,728],[-195,323],[-625,1031],[-172,284],[-15,24],[-161,267],[-1012,1670],[-335,552],[-434,717],[-155,6],[-150,92],[-211,14],[-125,126],[-164,-198],[-129,93],[-142,221],[-160,-97],[-105,675],[78,476],[-71,462],[41,519],[63,936],[-7,496],[-52,626],[-123,223],[-129,179],[-159,318],[-97,337],[-229,795],[-131,-46],[-42,330],[-114,152],[-110,141],[-131,135],[-124,-60],[-106,264],[-133,128],[-58,328],[-29,183],[-24,155],[-76,404],[-76,376],[-15,394],[-115,169],[53,329],[39,404],[9,343],[17,423],[124,362],[21,374],[-60,338],[-40,334],[-37,350],[-49,278],[-19,107],[-39,133],[-49,169],[-128,152],[-87,2],[-65,1],[-94,248],[96,263],[88,214],[2,6],[16,37],[-158,576],[-148,551],[-118,438],[-136,509],[-158,591],[-148,555],[-89,331],[-84,315],[-92,347],[-99,370],[-99,371],[-93,346],[-101,380],[-92,343],[-90,340],[-83,308],[-78,291],[-108,384],[-81,302],[-117,436],[-142,531],[-73,273],[-179,667],[-150,559],[-85,319],[-215,802],[-97,352],[-100,364],[-102,391],[-186,707],[-162,620],[-165,621],[-148,558],[-74,277],[-140,524],[-77,288],[-81,303],[-83,312],[-132,494],[-184,688],[-80,297],[-199,743],[-79,295],[-88,334],[-167,661],[-273,944],[-243,38],[-15,457],[-35,995],[-6,164],[-57,906],[-31,473],[-21,639],[-17,515],[-22,626],[-26,775],[-6,1096],[-51,1072],[-18,525],[-13,362],[-65,1862],[-39,927],[-12,435],[-34,1302],[-23,911],[-28,1047],[-1,22],[-12,368],[-40,1291],[-41,1273],[-30,949],[-12,366],[-12,349],[-84,2448],[-88,3191],[-59,1169]],[[132946,226274],[263,301],[145,312],[84,-251],[60,-358],[212,261],[186,-127],[344,667],[273,497],[159,171],[110,-142],[202,123],[134,-26],[174,-125],[119,19],[47,8],[125,416],[111,187],[-128,434],[-26,205],[-5,393],[220,603],[267,303],[294,207],[143,15],[101,-154],[56,-465],[217,-284],[109,311],[136,164],[85,160],[133,155],[290,841],[239,180],[77,187],[142,85],[165,285],[54,480],[109,217],[-25,390],[380,598],[139,265],[38,73],[126,50],[123,97],[202,324],[108,282],[349,131],[80,-623],[364,-177],[130,53],[167,551],[154,34],[136,289],[72,630],[-83,320],[212,235],[480,367],[52,38],[108,267],[368,386],[263,146],[182,267],[133,96],[108,-190],[203,-48],[216,388],[113,-125],[277,47],[197,860],[214,-16],[124,77],[146,-183],[155,-12],[74,300],[161,408],[156,127],[180,332],[66,329],[376,494],[92,74],[118,-105],[178,128],[73,-296],[134,-72],[110,225],[36,387],[344,717],[167,-60],[155,130],[98,-238],[165,86],[200,-95],[241,65],[189,129],[102,120],[126,199],[138,290],[156,-18],[224,63],[256,357],[262,248],[220,333],[251,80],[235,257],[163,272],[118,-157],[232,44],[189,120],[303,351],[202,96],[317,208],[182,-18],[260,431],[199,203],[162,-6],[146,232],[239,35],[152,209],[103,100],[151,-20],[128,257],[135,-32],[121,191],[130,-83],[208,13],[121,-28],[192,51],[142,-39],[290,285],[331,351],[182,253],[266,92],[239,274],[122,288],[389,148],[701,127],[145,269],[339,332],[241,337],[43,372],[-47,334],[157,928],[188,9],[322,169],[132,204],[70,272],[-59,496],[-61,329],[23,351],[-98,311],[-7,429],[53,306],[171,-84],[212,57],[155,-323],[203,-135],[53,361],[66,304],[170,-128],[277,107],[126,192],[198,144],[216,71],[356,126],[111,414],[183,411],[207,280],[170,380],[21,574],[94,261],[71,482],[36,772],[50,85],[53,88],[90,393],[143,302],[54,115],[106,221],[218,456],[76,160]],[[334439,207409],[-363,-544],[-242,-208],[-408,-624],[-395,-689],[-400,-574],[-369,-627],[-285,-607],[-107,-284],[-178,-441],[-109,-248],[-87,-245],[-112,-251],[-134,-292],[-142,-259],[-104,-202],[-130,-245],[-203,-438],[-175,-273],[-179,-223],[-158,-226],[-110,-144],[-201,-274],[-374,-511],[-132,-122],[-688,-792],[-630,-460],[-189,-57],[-144,-141],[-228,-105],[-189,-65],[-174,-226],[-228,-91],[-125,-230],[-546,-96],[-221,30],[-113,-107],[-440,-183],[921,-6062],[127,-832],[214,-1457],[31,-210],[836,-5707]],[[327556,182067],[-153,19],[-326,-156],[-351,-330],[-187,-15],[-162,-154],[-232,-406],[-287,-360],[-329,-261],[-394,-362],[-174,-253],[-137,-78],[-153,148],[-181,-88],[-546,-419],[-702,-729],[-431,-399],[-147,-136],[-176,-163],[-119,-76],[-179,-7],[-268,-479],[-142,-166],[-142,-11],[-256,-244],[-172,-240],[-198,-32],[-219,-186],[-145,-227],[-122,-102],[-119,-423],[-222,-78],[-573,-507],[-206,152],[-261,-197],[-326,-174],[-558,-263],[-554,-19],[-152,-10],[-150,-47],[-181,-55],[-138,-40],[-226,-125],[-123,-36],[-177,-56],[-254,-120],[-225,-45],[-291,-111],[-166,-57],[-330,-69],[-356,-149],[-373,-130],[-272,-136],[-178,-206],[-164,-29],[-426,-99],[-119,-102],[-154,-134],[-181,-318],[-161,-214],[-97,-264],[-122,-206],[-347,-411],[-168,-73],[-170,-131],[-137,-132],[-290,-105],[-163,-170],[-201,-43],[-133,-68],[-139,-13],[-128,-19],[-109,-250],[-173,4],[-207,-142],[-218,-222],[-160,-211],[-120,-25],[-171,-98],[-111,-209],[-219,-148],[-246,-140],[-185,-75],[-134,-63],[-179,-75],[-244,-62],[-124,-10],[-175,-113],[-202,-112],[-163,-116],[-217,-178],[-176,-186],[-154,-229],[-204,-405],[-173,-75],[-180,-139],[-162,-166],[-120,-102],[-155,-265],[-99,-237],[-142,-113],[-126,-144],[-146,-199],[-156,-150],[-156,-61],[-127,-44],[-228,-23],[-142,-79],[-125,-125],[-187,-163],[-16,-15],[-97,-91],[-235,-208],[-245,-223],[-263,-313],[-216,609],[-244,688],[-546,1541],[-238,689],[-256,623],[-313,740],[-205,485],[-136,-178],[-201,-252],[-213,-244],[-326,-284],[-179,-224],[-151,-73],[-187,-236],[-313,-460],[-266,-448],[-405,-597],[-348,-430],[-470,-553],[-250,-268],[-165,-131],[-188,-137],[-179,-97],[-140,-66],[-165,2],[-201,37],[-191,-34],[-208,-4],[-232,2],[-141,31],[-133,39],[-246,80],[-105,257],[-173,172],[-205,385],[-273,517],[-134,354],[-128,365],[-151,379],[-62,328],[-55,310],[-66,287],[-104,461],[-82,265],[-133,178],[-199,318],[-123,216],[-124,180],[-125,161],[-138,221],[-149,186],[-125,177],[-153,214],[-150,169],[-151,158],[-129,62],[-111,177],[-132,202],[-139,210],[-176,101],[-233,158],[-154,49],[-214,169],[-208,167],[-195,86],[-171,120],[-168,52],[-163,-4],[-223,-173],[-142,-246],[-127,-237],[-66,-125],[-125,-277],[-160,-281],[-143,-237],[-142,-312],[-118,-220],[-96,-212],[-148,-283],[-151,-291],[-139,-217],[-143,-156],[-131,-193],[-194,-332],[-139,-145],[-172,-200],[-225,-236],[-182,-167],[-149,-111],[-141,-117],[-155,-62],[-143,-73],[-170,-78],[-177,-151],[-122,-75],[-284,-182],[-155,-189],[-132,-169],[-98,-194],[-134,-333],[-105,-285],[-166,-462],[-127,-252],[-142,-286],[-161,-321],[-111,-123],[-156,-186],[-163,-277],[-160,-231],[-187,-227],[-240,-367],[-273,-74],[-144,-62],[-176,-239],[-187,-114],[-214,-267],[-95,-211],[-136,-266],[-151,-272],[-131,-199],[-98,-269],[-215,-424],[-132,-236],[-167,-241],[-116,-333],[-186,-504],[-151,-360],[-207,-540],[-156,-258],[-285,-627],[-118,-285],[-131,-341],[-109,-147],[-159,-250],[-142,-272],[-139,-265],[-119,-308],[-142,-171],[-107,-205],[-59,-308],[-107,-273],[-138,-349],[-87,-232],[-12,-342],[-107,-239],[-142,-274],[-108,-346],[-105,-269],[-166,-240],[-95,-273],[-107,-205],[-59,-308],[-132,-102],[-106,-411],[-130,-136],[-95,-274],[-95,-239],[-95,-376],[-118,-342],[-131,-410],[-118,-376],[-131,-342],[-95,-274],[-118,-136],[0,-445],[-59,-307],[-131,-103],[-166,-137],[-119,-307],[-106,-342],[-71,-274],[-119,-273],[-95,-205],[-83,-308],[-119,-205],[-83,-284],[-83,-297],[-142,-274],[-107,-205],[-142,-102],[-142,-69],[-131,-136],[-142,-137],[-154,171],[-131,68],[-142,34],[-118,-102],[-155,34],[-166,0],[-95,239],[-118,205],[-131,35],[-142,170],[-130,35],[-119,-240],[-130,-136],[-119,-205],[-107,-342],[-130,-376],[-36,-376],[-106,-308],[-48,-342],[-59,-308],[-71,-341],[-119,-376],[-59,-308],[-71,-445],[-71,-341],[-72,-274],[-59,-308]],[[272207,140726],[-332,966],[-504,1462],[-565,1641],[-809,2350],[-95,258],[-46,135],[-305,890],[-784,2289],[-2,7],[-1685,4891],[-252,733],[-288,828],[-93,258],[-552,1527],[-19,53],[-119,268],[-398,1160]],[[290507,237284],[3028,3762],[2218,3278],[1809,2672],[2542,1898],[2412,2045],[2334,1979],[1625,922],[3516,1286],[3391,1569],[5150,3171],[1089,461],[-206,-3013]],[[743660,238129],[-34,-105],[-52,-163],[-163,-265],[-121,-150],[-146,-272],[-177,-197],[-154,-65],[-229,153],[-123,-99],[-194,-50],[-129,-219]],[[686012,153170],[-116,-118],[-41,48],[-84,101],[-129,-196],[-155,227],[-315,-172],[-267,63],[-189,203],[-423,-961],[-244,-39],[-149,-266],[-209,-94],[-139,126],[-152,0],[-223,-63],[-230,172],[-142,219],[-71,-399],[-11,-610],[-209,102],[-146,-422],[-219,320],[0,407],[-173,-211],[-186,-65],[-483,-13],[-386,78],[-142,360],[-149,500],[-78,391],[-162,79],[-152,31],[-112,164],[-138,-211],[-220,-149],[-139,-227],[-142,-101],[-237,218],[-44,321],[-125,188],[-128,-24],[-112,196],[-176,-86],[-203,85],[-81,321],[-3,352],[-261,-141],[-128,0],[-186,-172],[-159,-63],[-129,86],[-121,-180],[-89,-23],[-60,-16],[-160,-588],[-100,-188],[-167,-106],[-151,115],[-85,388],[-59,321],[-49,358],[-98,226],[-168,172],[-203,381],[-161,616],[-64,308],[-77,396],[-143,448],[-99,319],[-108,305],[-75,418],[-40,593],[-247,608],[-203,464],[-244,478],[-310,594],[-106,237],[-80,602],[-62,458],[-191,282],[-216,54],[-155,69],[-148,392],[41,538],[44,395],[67,415],[-9,436],[19,469],[-146,346],[-203,148],[-110,204],[-33,56],[-85,147],[-125,-164],[-138,-164],[-83,-280]],[[672515,164772],[-131,-126],[-1,-4],[2,-5],[-119,-336],[-115,-62],[-287,-23],[-5,3],[-132,73],[-242,136],[-17,-5],[-81,-26],[-484,-413],[-863,-572],[-443,-294],[-68,-45],[-26,-124],[-32,-150],[-91,-399],[-136,-367],[-68,-109],[-267,-156],[-237,-7],[-4,3],[-2,2],[-27,18],[-44,165],[5,104],[1,21],[-60,109],[-139,149],[-389,228],[-352,196],[-81,16],[-18,4],[-669,130],[-524,-46],[-12,-22],[-35,-64],[-74,-200],[-23,-62],[-1,-3],[-14,-71],[20,-55],[155,-295],[1,-2],[91,-196],[27,-289],[-17,-39],[-223,-211],[-376,-328],[-321,-187],[-24,47],[-17,94],[24,86],[78,140],[5,40],[35,281],[4,70],[-20,55],[-149,62],[-4,1],[-1,-2],[-56,-84],[-9,-255],[-1,-26],[-421,-681],[-134,171],[-34,44],[-142,181],[-294,375],[-25,32],[-46,6],[-217,30],[-4,-3],[-53,-36],[-269,-291],[-5,-6],[-6,-5],[-392,-353],[-2,-1],[-233,-39],[0,84],[-10,1738],[0,1],[-3,13],[-14,72],[-396,658],[-33,54],[-453,697],[-1,1],[-311,374],[-50,7],[-7,1],[-173,-93],[-274,203],[-64,102],[-325,915],[-5,8],[-35,47],[-91,-34],[-14,-5],[-9,-9],[-86,-85],[-192,-457],[-18,-43],[-223,-462],[-58,-70],[-115,8],[-81,39],[-138,250],[-37,143],[-58,225],[-1,8],[-30,234],[10,649],[1,24],[50,336],[119,477],[-4,118],[-169,392],[-3,7],[-115,195],[-8,3],[-29,13],[-228,15],[-9,1],[-6,-1],[-58,-7],[-491,860],[-35,259],[-12,93],[-8,23],[-57,181],[-67,86],[-23,8],[-65,23],[-596,481],[-247,199],[-446,784],[-4,6],[-255,313],[-460,563],[-77,94],[-360,394],[-19,20],[-10,3],[-41,13],[-105,-25],[-27,-6],[-1,0],[-462,185],[-260,591],[-39,89],[-37,85],[-58,130],[-118,270],[-400,-897],[-5,-10],[-48,44],[-157,143],[-90,81],[-8,15],[-340,634],[-78,247],[-1,3],[3,9],[48,179],[24,602],[-14,227],[-40,93],[-85,94],[-47,24],[-58,-40],[-17,-70],[-7,-117],[-30,-78],[-110,-8],[-110,-8],[-4,5],[-765,925],[-4,13],[-57,182],[-88,399],[-10,94],[149,305],[60,430],[41,291],[92,667],[3,20],[-24,727],[0,3],[-169,1538],[-58,16],[-64,125],[-122,398],[-10,454],[0,227],[44,133],[0,1],[199,429],[0,1],[1,3],[47,168],[6,153],[0,4],[0,2],[14,639],[-7,94],[-20,86],[-85,39],[-1,0],[-216,-8],[-249,-561],[-1,-2],[0,-7],[0,-252],[-35,-89],[-2,-4],[-109,-133],[-7,-3],[-60,-21],[-571,340],[-32,19],[-135,102],[-7,-5],[-545,-332],[0,-1],[-6,0],[-82,0],[-339,274],[-95,101],[-27,76],[-12,32],[-45,127],[11,88],[103,811],[0,141],[-78,798],[-23,164],[-2,2],[-6,5],[-199,204],[-17,8],[-34,-36],[-2,-2],[-1,-2],[-37,-312],[-42,-510],[-16,-187],[-27,-140],[-47,-87],[-75,-39],[-256,-15],[-14,-1],[-353,353],[-6,6],[-2,7],[-39,142],[50,540],[22,92],[2,9],[-1,6],[-84,675],[-1,2],[-304,810],[-61,71],[-1,-1],[-161,-39],[-65,-146],[-71,-159],[-33,-149],[-25,-394],[-2,-36],[-27,-47],[-75,-23],[-142,179],[-55,170],[-33,104],[-2,3],[-509,733],[-4,6],[-187,639],[-2,4],[-1,6],[-295,413],[-47,60],[-82,104],[-353,-8],[-26,0],[-99,750],[11,110],[52,199],[5,20],[0,94],[-129,688],[-41,164],[-40,77],[0,1],[-171,239],[-2,3],[-214,15],[-3,0],[-54,258],[-24,243],[0,164],[97,1228],[31,55],[112,86],[2,1],[360,63],[75,133],[3,258],[-92,1048],[-384,1759],[-54,117],[-41,47],[-477,484],[-45,453],[-119,790],[-17,55],[-479,682],[-7,11]],[[697146,222830],[-98,-223],[-36,-334],[-122,-199],[-105,-164],[-15,-350],[39,-348],[-41,-340],[-56,-332],[-89,-238],[-116,-72],[-131,-152],[-118,-101],[-107,-156],[-89,-233],[94,-232],[-46,-327],[-38,-390],[-47,-338],[-1,-361],[-18,-373],[-41,-327],[-89,-229],[-98,-204],[-86,-278],[-115,-109],[-116,-158],[-105,-178],[-74,-278],[-116,-191],[-75,-297],[-72,-321],[-102,-174],[-118,-175],[-115,-99],[-111,-137],[-137,67],[-125,-177],[-143,-168],[-120,50],[-140,-4],[-120,-41],[-133,64],[-108,184],[-48,321],[-107,169],[-120,11],[-128,15],[-136,37],[-99,192],[-117,77],[-157,-102],[-115,-86],[-121,-83],[-127,-92],[-117,-117],[-127,12],[-120,93],[-113,143],[-140,-69],[-111,-126],[-40,-342],[-130,-109],[-18,-370],[-33,-343],[-145,-241],[-120,-69],[-124,-91],[-189,13],[-124,60],[-156,73],[-118,-48],[-124,-117],[-130,-81],[-101,-235],[-85,-356],[-46,-484],[-95,-434],[-212,-321],[-144,-401],[-114,-103],[-122,-173],[-129,-199],[-70,-285],[-60,-299],[-79,-280],[-61,-293],[-115,-122],[-111,-141],[-109,-255],[-103,-220],[-126,-222],[-121,-52],[-123,-94],[-165,-241],[-138,-343],[-665,-457],[-12,-14],[-134,-118],[-114,-137],[-114,-110],[-150,-41],[-131,-156],[-496,252],[-303,153],[-23,-8],[-120,-81],[-118,-212],[-173,-120],[-167,-165],[-124,-148],[-37,-1048],[19,-1214],[14,-864],[7,-592],[1,-84],[17,-916],[30,-1709],[10,-536],[55,-2218],[27,-1112],[0,-11],[9,-355],[27,-1199],[7,-504],[17,-719],[51,-2108],[15,-609],[72,-3975],[26,-1746],[8,-545],[30,-2090],[1,-20],[14,-637],[27,-965],[63,-2211],[51,-1827],[34,-1137],[150,-6600],[156,-6779],[2,-116],[32,-1449],[33,-1344],[44,-1919],[107,-987],[26,-901],[47,-1986]],[[738417,233128],[53,-440],[0,-204],[-1,-228],[-6,-1179],[-1,-55],[0,-309],[224,35],[243,103],[67,-59],[135,-1011],[46,-278],[10,-263],[-93,-497],[-199,-1079],[-231,-1259],[40,-1087],[5,-117],[38,-981],[-279,-794],[-240,-678],[-169,-479],[-146,-390],[-6,-17],[-104,-258],[-224,-585],[32,-88],[638,492],[364,-176],[5,71],[41,-31],[329,-203],[406,-249],[225,-138],[313,-177],[697,-399],[308,-175],[442,-1027],[-130,-513],[154,-171],[6,-74],[101,-1909],[-225,-136],[10,-1742],[45,-1122],[539,316],[44,26],[348,296],[3,-9],[20,12],[10,-60],[23,-110],[375,50],[136,18],[139,228],[105,177],[167,292],[171,299],[149,568],[176,22],[314,17],[131,4]],[[744274,154595],[-53,-80],[-166,-252],[-36,-54],[-292,-436],[-838,-1274],[-183,-260],[-145,-250],[-276,-370],[-179,-312],[-620,-956],[-162,-250],[-519,-793],[-801,-1228],[-377,-577],[-292,-447],[-218,-335],[-416,-634],[-464,-709],[-1,-1],[-323,-493],[-508,-775],[-557,-850],[-265,-399],[-1199,-1801],[-305,-456],[-597,-896],[-611,-914],[-462,-665],[-116,-176],[-2,-4],[-579,-880],[-41,-62],[-399,-566],[-150,-232],[-158,-236],[-746,-1132],[-311,-462],[-841,-1254],[-421,-640],[-452,-667],[-1019,-1547],[-213,-323],[-826,-1223],[-1185,-1782],[-332,-499],[-250,-374],[-348,-524],[-713,-1070],[-277,-455],[-678,-967],[-943,-1423],[-504,-759],[-929,-1397],[-711,-1070],[-689,-1036],[-1118,-1670],[-335,-464]],[[718123,115234],[-129,145],[-105,219],[-135,297],[-153,131],[-254,120],[-135,259],[-128,563],[-173,681],[-128,430],[-105,493],[-128,133],[-118,-62],[-216,-266],[-196,-101],[-156,-258],[-88,-571],[14,-454],[142,-477],[185,-305],[284,-369],[152,-313],[10,-359],[-64,-438],[-73,-420],[-155,-259],[-415,-218],[-220,62],[-148,173],[-178,397],[-183,204],[-108,360],[-98,446],[-172,563],[-67,446],[10,727],[98,610],[78,298],[17,375],[74,391],[10,352],[-43,438],[-7,681],[-68,360],[-155,563],[-30,540],[-95,227],[-172,180],[-135,-47],[-108,-164],[-149,-689],[-101,-383],[-163,-15],[-246,2]],[[713497,120932],[-507,6],[-189,47],[-199,274],[-260,618],[-173,469],[-91,298],[-128,281],[-210,298],[-230,539],[-111,392],[-443,242],[-503,188],[-179,321],[-189,179],[-196,-46],[-260,-399],[-119,-63],[-142,164],[-125,180],[-155,360],[-51,508],[-243,806],[-88,367],[-84,259],[-78,383],[-58,618],[-182,258],[-318,-32],[-128,-78],[-382,-344],[-362,-157],[-141,-180],[-254,180],[-101,258],[-54,336],[-17,680],[233,1244],[20,619],[-24,469],[-115,641],[-274,516],[-118,462],[-152,210],[-152,415],[-129,102],[-84,265],[-27,407],[-28,336],[-135,329],[-34,532],[-10,461],[-65,341],[-101,527],[-128,618],[-68,126],[-135,249],[-186,234],[-156,133],[-107,32],[-14,4],[-379,57],[-162,118],[-75,383],[-17,594],[-10,517],[-156,437],[-74,470],[-125,31],[-125,-337],[-115,-258],[-146,148],[-152,383],[-14,391],[108,400],[105,172],[41,446],[-51,312],[-98,282],[-166,-55],[-219,-540],[-148,-202],[-422,-93],[-190,-86],[-84,297],[-51,313],[-142,305],[-135,172],[-95,237],[-104,389],[-159,172],[61,564],[-34,375],[-27,477],[-6,1009],[-27,368],[-51,485],[-111,446],[-102,352],[-152,383],[-311,118],[-122,47],[-140,170],[-167,221],[-122,-23],[-125,-141],[-95,-320],[-247,-47],[-145,78],[-264,297],[-112,314],[-3,664],[-88,259],[-460,242],[-138,-54],[-153,195],[-260,172],[-101,196],[-129,101],[-152,431],[-78,399],[-166,-63],[-256,-8],[-139,-134],[-145,-73],[-274,204],[-149,-46],[-457,-147],[-152,-85],[-135,15],[-193,345],[-183,70],[-101,219],[-71,501],[-230,250],[-108,180],[-163,406],[-101,219],[-156,71],[-142,289],[-149,63],[-155,-133],[-176,-24],[-122,-39],[-152,156],[-203,32],[-267,109],[-78,336],[-136,70],[61,423],[-182,8],[-186,132],[-126,415],[-206,187],[-123,8],[-161,8],[-112,-180],[-104,-360],[-297,-525],[-92,-266],[-149,0],[-135,-164],[-112,-360],[44,-328],[44,-384],[-155,-8],[-68,282],[-5,570],[-193,138],[-123,77],[-112,-119],[73,-346],[-134,69],[-258,59],[-298,232],[-106,236],[-156,68],[-98,-515],[-114,-390],[-44,-345],[-115,116],[-35,342],[-149,224],[-255,162],[-124,179],[-158,109],[-208,-189],[-105,-262],[-154,-112],[-163,188],[-173,133],[-152,-54],[-137,108],[-116,142],[-132,-266],[-138,-86],[-109,-250],[-81,-344],[-233,-336],[-68,336],[-134,-22]],[[620377,184136],[-5,-49],[-96,-1020],[-1,-20],[-159,-1630],[-124,-1279],[-277,-2839],[-52,-533],[-71,-739],[-90,-920],[-56,-574],[-67,-686],[-63,-655],[-372,-3783],[-33,-339],[-86,-877],[-29,-299],[-4,-32],[-263,-2790],[-122,-1287],[-36,-378],[-106,-1120],[-111,-1175],[-84,-887],[-45,-482],[-46,-466],[-32,-332],[-214,-2190],[-57,-608],[-89,-1051],[-192,-2249],[-30,-350],[-56,-633],[-58,-656],[-42,-473],[-198,-2232],[-72,-837],[-7,-80],[-213,-2476],[-202,-2336],[-101,-1171],[-145,-1682],[-60,-694],[-136,-1566],[-58,-667],[-162,-1815],[-247,-2768],[-58,-655],[-112,-1263],[-45,-515],[-4,-40],[-68,-821],[-30,-341],[-80,-888],[-132,-1455],[-35,-393],[-92,-1119],[-174,-1933],[-94,-1045],[-95,-1048],[-65,-687],[-42,-400],[0,-2]],[[614482,119806],[-618,-2339],[-175,-664],[-683,-2492],[-79,-274],[-142,-492],[-3,-12],[-616,-2202],[-1197,-4275],[-398,-1421],[-262,-938],[-225,-806],[-268,-954],[-243,-869],[-273,-973],[-451,-1613],[-441,-1571],[-837,-2992],[-149,-533],[-373,-1334],[-230,-821],[-173,-619],[-93,-331],[-385,-1374],[-16,-59],[-697,-2490],[-394,-1407],[-140,-499],[-140,-503],[-255,-909],[-181,-648],[-128,-454],[-90,-324],[-98,-350],[-184,-657],[-193,-689],[-93,-333],[-227,-809],[-408,-1456],[-435,-1556],[-117,-416],[-325,-1161],[-473,-1690],[-514,-1833],[-74,-271],[-191,-681],[-336,-1193],[0,-1],[-163,-582],[-51,-181],[-276,-984],[-134,-476],[-268,-955],[-202,-719],[-327,-1162],[-173,-645],[-228,-804],[-389,-1370],[-81,-284],[-11,-39],[-88,-309],[-149,-525],[-471,-1658],[-478,-1732],[-91,-330],[-111,-402],[-81,-301],[-74,-271],[-123,-448],[-113,-420],[-44,-162],[-179,-635],[-113,-401]],[[596041,53723],[-129,202],[-142,392],[-174,469],[-155,307],[-145,184],[-134,98],[-173,169],[-204,181],[-177,232],[-380,447],[-135,144],[-140,430],[-81,388],[-132,400],[-149,637],[-6,22],[-81,647],[-5,607],[65,640],[-36,488],[-169,747],[-236,613],[-127,286],[-108,290],[-177,607],[-414,1279],[-37,114],[-107,277],[-325,571],[-41,71],[-31,68],[-489,1044],[-249,914],[-46,964],[-5,91],[131,336],[261,631],[75,182],[1,5],[229,837],[32,116],[146,727],[82,455],[42,237],[45,199],[177,787],[3,14],[3,8],[232,656],[280,435],[256,278],[235,-20],[175,-14],[165,53],[141,243],[49,163],[76,252],[105,612],[45,505],[-3,155],[-3,98],[-5,183],[-117,679],[-3,12],[-217,879],[-46,188],[-26,78],[-129,384],[-228,677],[-45,130],[-115,333],[-96,400],[-61,257],[-142,732],[-178,678],[-149,711],[-71,335],[-15,79],[-168,898],[-60,567],[-65,609],[-54,538],[-4,758],[-3,389],[24,251],[22,235],[17,128],[49,364],[102,614],[20,95],[55,256],[21,99],[163,479],[58,155],[46,124],[34,92],[221,305],[14,19],[163,172],[23,25],[309,194],[121,76],[4,6],[202,334],[83,233],[54,149],[7,55],[86,675],[4,318],[1,24],[-15,42],[-69,197],[-126,360],[-210,352],[-31,30],[-263,253],[-221,146],[-76,49],[-205,229],[-175,289],[-298,617],[-391,780],[-185,696],[-131,489],[-11,43],[-1,107],[-3,770],[0,52],[0,6],[25,307],[31,371],[143,561],[109,197],[201,186],[191,133],[109,57],[144,74],[297,283],[152,129],[266,224],[124,141],[225,255],[15,17],[15,29],[150,306],[179,473],[130,516],[8,31],[41,459],[2,69],[9,370],[-33,381],[-70,762],[-101,644],[-135,775],[-75,759],[-119,831],[-121,735],[-31,187],[-84,336],[-1,6],[-8,33],[-152,383],[-94,144],[-65,99],[-227,187],[-547,227],[-36,21],[-321,190],[-136,143],[-137,173],[-51,66],[-108,275],[-22,56],[-43,121],[-107,298],[-111,455],[-5,24],[-44,200],[-89,408],[-40,362],[-6,58],[-57,367],[-19,121],[-72,710],[-16,121],[-49,369],[-30,222],[-45,353],[-54,412],[-105,361],[-25,60],[-137,319],[-25,58],[-151,243],[-154,248],[-82,156],[-154,293],[-57,109],[-25,62],[-96,242],[-258,516],[-115,276],[-26,64],[-53,182],[-153,524],[-99,522],[-108,558],[-72,371],[-6,27],[-7,41],[-99,361],[-140,483],[-28,69],[-267,652],[-46,111],[-239,676],[-157,416],[-112,296],[-209,599],[-57,156],[-118,322],[-194,392],[-86,174],[-185,425],[-224,414],[-195,317],[-58,95],[-91,147],[-14,23],[-70,70],[-113,112],[-180,211],[-20,24],[-133,172],[-54,70],[-29,36],[-119,229],[-164,293],[-26,56],[-113,239],[-230,385],[-7,13],[-134,215],[-212,257],[-62,74],[-267,298],[-105,130],[-40,50],[-10,26],[-79,201],[-106,583],[-33,439],[28,630],[50,362],[63,181],[87,252],[114,364],[36,117],[112,152],[199,243],[196,144],[252,81],[7,2],[201,20],[215,21],[234,17],[201,149],[136,136],[60,60],[59,144],[325,788],[35,84],[32,106],[200,642],[14,100],[30,221],[-1,45],[-12,482],[-53,453],[-83,508],[-89,485],[-116,393],[-105,344],[-143,417],[-155,555],[-29,157],[-75,415],[-9,78],[-52,465],[-36,550],[-4,79],[-20,373],[3,349],[1,82],[6,197],[11,416],[28,541],[-8,423],[-34,574],[-44,422],[-180,1618],[-20,247],[-22,266],[-1,9],[9,345],[4,47],[50,604],[48,536],[14,524],[3,434],[-18,464],[-17,391],[-41,376],[-53,439],[-36,295],[-10,104],[-59,633],[-66,770],[-63,751],[-36,456],[-50,403],[-72,690],[-37,425],[-1,8],[0,51],[3,550],[2,200],[86,537],[22,134],[0,50],[3,435],[-78,456],[-79,285],[-116,306],[-136,278],[-161,281],[-152,247],[-140,187],[-178,217],[-139,155],[-130,10],[-2,1],[-4,-3],[-106,-61],[-99,-58],[-227,-185],[-22,-30],[-205,-282],[-8,-12],[-19,-56],[-100,-294],[-18,-92],[-95,-465],[-3,-22],[-48,-395],[-5,-44],[-2,-50],[-19,-408],[11,-443],[0,-8],[32,-111],[47,-162],[100,-336],[63,-214],[2,-5],[135,-282],[41,-53],[142,-182],[419,-423],[4,-10],[97,-239],[11,-25],[86,-383],[70,-365],[8,-41],[105,-923],[10,-368],[-30,-352],[-71,-337],[-165,-332],[-18,-36],[-26,-21],[-284,-226],[-14,-11],[-261,-7],[-1,0],[-23,10],[-108,45],[-19,16],[-285,234],[-34,54],[-81,126],[-301,533],[-118,78],[-214,-7],[-453,-368],[-129,-148],[-221,-460],[-9,-17],[-186,-696],[-18,-90],[-87,-419],[-5,-392],[-8,-570],[0,-13],[-1,-7],[-2,-404],[-1,-93],[-54,-1044],[0,-4],[-41,-491],[0,-2],[0,-16],[-4,-711],[27,-642],[41,-1525],[121,-783],[51,-446],[-1,-28],[-19,-793],[-1,-16],[-3,-10],[-230,-694],[-10,-31],[-737,-673],[-302,-190],[-94,-59],[-40,-10],[-177,-45],[-125,47],[-483,454],[-58,54],[-53,80],[-89,132],[-5,24],[-77,321],[-9,38],[-10,126],[-67,848],[-4,51],[-27,1679],[0,11],[-64,360],[-2,9],[-96,367],[-80,261],[-180,583],[0,1],[-34,360],[-1,1],[-47,453],[-81,399],[-426,1252],[-88,274],[-49,101],[-52,110],[-13,20],[-136,222],[-338,697],[-40,73],[-62,115],[-293,455],[-241,374],[-248,381],[-87,83],[-69,66],[-83,21],[-162,41],[-40,10],[-50,-4],[-102,-9],[-260,-80],[-161,-57],[-95,-33],[-212,-127],[-153,-34],[-183,-55],[-1,1],[-136,88],[-154,42],[-247,66],[-142,-1],[-86,-1],[-70,-14],[-204,-41],[-138,-70],[-62,-30],[-19,-10],[-126,-91],[-136,-13],[-5,-1],[-183,61],[-125,53],[-28,36],[-83,108],[-99,56],[-145,82],[-331,216],[-408,163],[-308,78],[-229,16],[-188,-8],[-47,-2],[-143,17],[-112,13],[-297,64],[-149,8],[-63,3],[-154,-11],[-52,-22],[-128,-55],[-159,-116],[-178,-185],[-113,-159],[-209,-252],[-125,-114],[-185,-196],[-156,-171],[-95,-92],[-90,-87],[-165,-169],[-7,-6],[-32,-33],[-125,-367],[-213,-547],[-14,-24],[-105,-172],[-189,-250],[-156,-125],[-5,-2],[-147,-60],[-264,101],[-139,110],[-118,127],[-129,139],[-211,533],[-12,28],[-16,40],[-73,377],[-90,415],[-68,510],[-2,65],[-4,100],[-14,332],[14,392],[20,353],[19,122],[43,260],[97,411],[21,88],[104,371],[197,569],[159,357],[65,147],[19,43],[138,383],[118,476],[88,529],[56,382],[20,118],[76,462],[-2,219],[-2,327],[-63,475],[-103,486],[-4,19],[-37,100],[-68,187],[-131,240],[-75,135],[-339,492],[-267,368],[-187,552],[-44,458],[-122,1696],[-5,178],[-9,341],[-4,477],[-44,354],[-6,50],[-11,92]],[[373489,207774],[-8,-40],[-23,-109],[-179,-2257],[-33,-565],[-43,-614],[-14,-571],[-217,-795],[-375,49],[-144,464],[-63,471],[-111,335],[-145,264],[-113,205],[-137,226],[-364,600],[-399,843],[-229,444],[-192,369],[-150,76],[-91,1],[-119,1],[-210,-19],[-126,-81],[-357,-315],[-322,-284],[-253,-275],[-120,-176],[-137,-191],[-113,-158],[-123,-114],[-159,-134],[-166,-140],[-169,-180],[-338,-440],[-104,-194],[-71,-133],[-907,-1524],[-40,-68],[-20,-35],[-237,-412],[-451,-786],[-57,-101],[-382,-707],[-92,-295],[-180,-642],[-45,-460],[-64,-753],[-36,-916],[42,-1035],[20,-192],[18,-179],[31,-298],[34,-327],[71,-445],[56,-357],[29,-188],[114,-761],[47,-354],[75,-565],[134,-835],[39,-241],[79,-287],[94,-342],[91,-219],[56,-142],[87,-220],[210,-621],[201,-728],[6,-27],[210,-845],[108,-457],[85,-359]],[[371282,151742],[-322,-390],[-213,-332],[-24,-639],[-113,-416],[121,-317],[69,-567],[-79,-459],[-107,-181],[-175,-301],[-36,-483],[-127,-442],[-51,-396],[-129,-3],[-274,-85],[-165,66],[-184,-119],[-247,-129],[-182,-155],[-125,-27],[-66,-349],[-54,-784],[-117,-322],[-183,-154],[-93,-383],[6,-394],[-15,-433],[-201,-320],[-132,-137],[-152,-105],[-129,-82],[-120,-17],[-152,-69],[-176,-103],[-179,-117],[-140,-82],[-215,-437],[-130,-397],[-84,-280],[-157,-263],[-122,-157],[-74,-274],[-167,-543],[-194,-86],[-151,-857],[-85,-438],[-201,-450],[-183,-257],[-142,-265],[-143,-243],[-391,138],[-148,44],[-275,-262],[-170,-204],[-137,-53],[-283,-108],[-156,127],[-153,38],[-153,-198],[-92,-245],[-77,-266],[-150,-147],[-171,-354],[-149,-321],[-269,-153],[-256,-5],[-149,52],[-179,-54],[-141,27],[-129,-71],[-105,-223],[-224,-210],[-113,-184],[-105,-329],[-136,-447],[-54,-489]],[[360603,133672],[-89,-286],[3,-433],[-82,-295],[-47,-384],[-105,-211],[-149,-59],[-354,-213],[-145,-3],[-151,121],[-178,82],[-118,-169],[-128,-361],[-114,-176],[-119,-84],[-197,-211],[-177,-245],[-205,-431],[-112,-257],[-114,-366],[-113,-346],[-103,-426],[-121,-214],[60,-445],[3,-441],[-88,-342],[-289,-332],[-377,-383],[-419,-298],[-215,-17],[-163,-58],[-444,-607],[-147,-227],[-200,139],[-102,202],[-154,74],[4,-515],[-11,-573],[11,-348],[82,-424],[23,-378],[-90,-512],[-30,-338],[45,-346],[-71,-312],[-115,-288],[-45,-490],[-113,-298],[-138,10],[-137,58],[-123,-32],[-150,139],[-145,-14],[-143,-158],[-261,-122],[-70,-313],[-93,-289],[-243,-219],[-131,-128],[-17,-15],[-263,-238],[-894,-808],[-414,-373],[-116,-107],[-292,-263],[-1569,-1459],[-188,-136],[-223,-161],[-421,-304],[-300,-211],[-119,-83],[-416,-293]],[[347974,115629],[-174,538],[-97,298],[-239,738],[-81,253],[-80,252],[-82,258],[-354,1109],[-132,422],[-183,582],[-86,278],[-118,379],[-355,1136],[-144,460],[-138,442],[-110,355],[-106,338],[-164,527],[-110,351],[-137,432],[-410,1298],[-93,296],[-76,266],[-111,359],[-62,204],[-27,90],[-81,283],[-161,559],[-137,449],[-229,717],[-153,478],[-123,381],[-108,338],[-104,321],[-89,277],[-225,702],[-128,403],[-383,1215],[-133,423],[-86,279],[-74,236],[-16,50],[-82,248],[-149,420],[-102,288],[-83,256],[-164,506],[-21,64],[-86,259],[-258,777],[-548,1538],[-43,-238],[166,-753],[-243,-310],[-636,-808],[-9,471],[-12,606],[-14,658],[-144,1118],[-56,436],[-111,839],[327,278],[-136,402],[-151,442],[-183,522],[-550,1568],[-184,523],[-105,301],[-316,902],[-106,301],[-231,657],[-691,1971],[-239,681],[-106,306],[-62,165],[-26,70],[-237,618],[-713,1855],[-238,619],[-102,264],[-304,792],[-102,263],[-88,230],[-352,916],[-287,749],[-214,561],[-116,301],[-542,1335],[-174,319],[-152,281],[-178,328],[-536,985],[-183,338],[-76,140],[-112,151],[-94,218],[-93,215],[-108,257],[-180,460],[-130,332],[-109,280],[-329,841],[-191,489],[-197,502],[-105,270],[-621,1586],[-181,1231],[-166,1142],[-66,481],[-88,643],[-23,132],[-32,188],[-61,330],[-106,710],[-104,706],[-234,1580],[-132,888],[-97,658],[-88,598],[-97,658],[-292,1976],[-120,836],[-74,591],[-29,230],[-63,425],[-60,409],[-127,869],[-62,426]],[[830065,204734],[-82,-450],[-13,-465],[10,-85],[28,-249],[100,-328],[190,-306],[63,-399],[-169,-154],[-118,-54],[-174,-175],[-89,-168],[-61,-117],[-158,-656],[-95,-405],[-53,-399],[10,-356],[2,-558],[7,-443],[27,-366],[7,-372],[-19,-492],[-9,-372],[68,-399],[21,-134],[34,-222],[114,-279],[104,-180],[-92,-454],[-129,-191],[-8,-12],[-30,-410],[102,-334],[121,-268],[116,-125],[118,-61],[24,-350],[-130,-432],[-78,-536],[-74,-273],[-158,-22],[-53,514],[-144,306],[-127,-131],[-105,-476],[-94,-224],[-99,-312],[95,-355],[80,-383],[60,-482],[23,-421],[-123,-213],[-112,-208],[34,-345],[64,-311],[154,-339],[-25,-383],[-129,-137],[-123,-290],[53,-448],[-47,-460],[-15,-350],[-169,-175],[-150,-98],[-110,-202],[22,-361],[-148,-236],[-176,22],[-127,-22],[-120,-93],[-134,-147],[-148,-307],[-12,-432],[156,-104],[42,-585],[-86,-476],[-74,-525],[13,-476],[128,-284],[21,-175],[18,-153],[-93,-394],[-134,-181],[-120,-32],[-121,-536],[-148,-487],[-86,-285],[-81,-300],[-108,-318],[-48,-563],[59,-585],[211,-482],[108,-306],[40,-503],[-200,-470],[-280,-416],[-143,-148],[-148,38],[-113,-186],[-133,-202],[-169,197],[-154,49],[-148,-186],[-152,-175],[-112,-153],[-140,-87],[-200,-247],[-817,-976],[-900,-1029],[-466,-550],[-606,-712],[-333,-392],[-782,-925],[-176,-211],[-1601,-1912],[-531,-632],[-398,-474],[-420,-499],[-554,-685],[-1387,-1746],[-653,-820],[-129,-163],[-418,-527],[-746,-937],[-265,-333],[-1113,-1398],[-17,-21],[-439,-538],[-340,-417],[-708,-901],[-477,-607],[-228,-286],[-476,-711],[-150,-211],[-283,-396],[-236,-333],[-51,-72],[-239,-337]],[[809353,155697],[-112,-163],[-74,-108],[-71,-103],[-371,-546],[-149,-210],[-901,-1267],[-815,-1207],[-134,-203],[-330,-491],[-151,-217],[-1095,-1554],[-274,-388],[-339,-516],[-315,-456],[-468,-670],[-889,-1275],[-292,-427],[-433,-621],[-662,-953],[-303,-435],[-240,-344],[-2787,-4008],[-935,-1281],[-25,-35],[-151,-216]],[[797037,138003],[-48,572],[-12,145],[-78,989],[-49,597],[-71,1015],[-78,1101],[-338,4349],[-178,2128],[-127,1713],[-100,1013],[-134,1787],[-28,382],[-242,3333],[-20,894],[-50,1944],[-26,1032],[-19,751],[-32,1199],[-10,378],[-18,846],[-5,217],[-46,1091],[-31,1517],[-16,777],[-17,891],[121,360],[-23,556],[-119,250],[-34,595],[-13,446],[148,446],[163,23],[308,259],[41,336],[-28,525],[-105,469],[38,344],[-122,556],[-68,320],[78,321],[-11,493],[11,446],[-51,329],[-163,-55],[-128,-16],[-119,63],[-183,-212],[-152,-172],[-173,-211],[-301,-666],[-193,-141],[-119,196],[-40,375],[-65,368],[-264,148],[-224,-266],[29,-478],[-46,-555],[-140,-126],[-303,77],[-120,164],[-191,8],[-177,-165],[-120,-26],[-168,151],[-127,140],[-189,-70],[-362,215],[-261,139],[-199,71],[-127,31],[-63,353],[-31,383],[-139,181],[34,477],[72,563],[-115,243],[-160,-16],[-372,-203],[-230,-15],[-126,39],[-105,243],[-98,751],[-98,211],[-399,392],[-119,149],[-118,203],[-173,196],[-169,133],[-112,172],[-122,110],[-258,196],[-294,321],[-163,-149],[-122,165],[-13,501],[-68,485],[-129,148],[-128,-94],[-234,-297],[-193,94],[-213,149],[-170,157],[-142,-157],[-11,-993],[-31,-376],[-150,-156],[-91,-235],[-276,-656],[-220,344],[-196,-39],[-136,-25],[-180,462],[-233,-141],[-130,16],[-65,7],[-211,306],[-197,156],[-51,313],[-250,8],[-146,-329],[-112,243],[-125,501],[-166,-118],[-261,-375],[-152,7],[-139,-86],[-163,157],[-142,344],[-145,430],[84,243],[132,180],[95,250],[44,470],[-135,297],[-92,329],[17,344],[88,336],[-92,446],[-142,8],[-54,344],[91,321],[58,524],[-68,392],[-115,218],[-24,454],[-105,321],[-163,-70],[-179,-353],[-135,-297],[-309,133],[-183,-227],[-145,-24],[-115,196],[-126,696],[-108,313],[-126,86],[-176,-32],[-156,-133],[-159,-274],[-85,-305],[-125,-141],[-176,132],[-146,141],[-166,688],[71,400],[4,344],[-265,539],[-301,188],[-41,367],[10,399],[-27,337],[135,-8],[41,532],[-224,195],[-132,305],[-24,814],[-102,305],[-111,157],[-126,-95],[-118,94],[-204,-32],[-217,126],[-183,-71],[-142,-212],[-220,-704],[-190,133],[-120,117],[-215,-140],[-92,-485],[-169,0],[-275,79],[-111,282],[44,720],[-65,352],[-138,133],[-221,-39],[-223,16],[-163,321],[-95,548],[-173,-55],[-98,-219],[-112,-414],[-132,-298],[-227,165],[-244,-110],[-210,126],[-159,548],[-288,289],[-10,431],[-27,399],[-170,380],[-108,527],[34,550],[4,375]],[[790349,236689],[212,-663],[283,-260],[260,220],[217,557],[136,641],[349,-103],[448,-155],[345,-65],[355,-431],[108,736],[192,1121],[478,558],[275,168],[520,-216],[405,-264],[362,-358],[230,-216],[514,-937],[240,-338],[182,-149],[307,-286],[268,-152],[274,-170],[276,-120],[316,-1047],[599,-1243],[375,-810],[429,-987],[318,-1033],[721,75],[295,-517],[393,-833],[416,-880],[236,-671],[211,-563],[443,-753],[388,-299],[396,-730],[436,-362],[369,-42],[324,75],[473,236],[340,228],[370,364],[288,314],[519,532],[438,468],[339,468],[434,496],[287,84],[195,-68],[246,-281],[281,-94],[581,47],[500,-111],[613,-136],[404,-9],[277,-175],[417,-200],[460,11],[754,-26],[377,-86],[197,-199],[326,129],[296,24],[411,-390],[415,729],[579,-173],[-25,-867],[-272,-288],[156,-902],[149,-950],[-23,-958],[-231,-470],[-238,-408],[-85,-602],[-123,-819],[-13,-760],[-9,-587],[267,-843],[34,-108],[45,620],[7,95],[35,775],[97,681],[281,131],[323,486],[424,79],[345,-354],[402,-575],[136,-338],[235,-586],[242,-1084],[71,-738],[67,-736],[254,-36],[341,-195],[469,-619],[577,-904],[364,-383],[194,-439],[210,-383],[130,-539],[480,-1546],[179,-694],[352,-826],[227,-1010],[195,-399],[51,-556],[308,-681],[388,-513],[375,-371],[321,-262],[403,-142],[88,-9],[157,-16],[676,115],[696,326],[363,285],[212,385],[35,148],[174,717],[93,529],[320,1265],[197,1354],[111,1135],[110,829],[168,575],[164,836],[355,600],[246,214],[20,90],[180,854],[186,691],[-32,256],[-50,403],[11,55],[99,478],[113,841],[30,230],[57,916],[18,365],[30,584],[58,515],[26,225],[-49,513],[71,528],[68,500],[166,328],[129,255],[270,193],[72,-131],[140,-256],[124,-304],[93,-228],[156,-635],[140,-570],[138,-442],[120,-384],[156,-574],[70,-254],[258,-495],[235,-906],[254,-446],[72,-127],[148,-814],[195,-904],[237,-1083],[-2,-707],[-191,-269],[-51,-56],[-284,-312],[-114,-447],[-44,-172],[109,-278],[78,-201],[-135,-236],[-126,-218],[-10,-622],[-5,-298],[3,-114],[14,-447],[-40,-198],[-36,-173],[-121,-587],[132,-933],[84,-1664],[-47,-1114],[-66,-864],[-297,-850],[-142,-826]],[[483920,171432],[-118,-1072],[-43,-386],[-61,-555],[-46,-461],[-43,-438],[-33,-336],[-39,-393],[-41,-423],[-41,-418],[-59,-600],[-38,-385],[-1,-5],[-152,-1542],[-41,-419],[-66,-664],[-9,-99],[-56,-564],[-42,-428],[-39,-388],[-37,-380],[-35,-358],[-33,-335],[-47,-482],[-95,-967],[-37,-364],[-89,-900],[-103,-1028],[-61,-718],[-54,-645],[-113,-1337],[-36,-429],[-40,-470],[-28,-344],[-82,-970],[-123,-1468],[-69,-822],[-64,-774],[-47,-561],[-5,-52],[-39,-464],[-50,-622],[-62,-755],[-54,-646],[-82,-1005],[-102,-1243],[-198,-2405],[-99,-1203],[-52,-631],[-49,-593],[-64,-774],[-85,-1041],[-48,-580],[-119,-1449],[-13,-154],[-18,-226],[-61,-737],[-106,-1287],[-75,-911],[-102,-1254],[-70,-870],[-10,-121],[-82,-1030],[-74,-924],[-74,-915],[-31,-392],[-27,-340],[-105,-1278],[-18,-422],[-32,-331],[-49,-424],[-61,-719],[-38,-459],[-180,-2128],[-69,-813],[-32,-389],[-70,-844],[-37,-441],[-59,-711],[-59,-718],[-86,-1006],[-79,-885],[-58,-719],[-38,-471],[-153,-1838],[-33,-388],[-62,-747],[-76,-901],[-119,-1434]],[[478395,107814],[-166,-205],[-131,-137],[-83,-274],[-83,-410],[-118,-274],[-24,-479],[-97,-380],[-105,-268],[-118,-342],[-234,-459],[-92,-237],[-124,-273],[-72,-296],[-131,-274],[-71,-376],[-142,-341],[-142,-171],[-60,-342],[-47,-376],[-24,-376],[0,-410],[-24,-342],[-59,-342],[-135,-217],[-147,-185],[-145,-43],[-154,-239],[-154,-171],[-107,-273],[-130,-274],[-48,-410],[-95,-308],[-166,-137],[-118,274],[-142,205],[-131,34],[-145,-68],[-123,-11],[-123,-160],[-119,-82],[-157,-103],[-104,-191],[-98,-194],[-115,-114],[-202,-102],[-118,102],[-143,-137],[-94,-307],[-155,-137],[24,376],[24,376],[-59,308],[-439,239],[-131,-274],[-107,-239],[-152,-89],[-156,-13],[-124,-74],[-160,-166],[-119,-34],[-154,-273],[-142,-137],[-119,-274],[-119,-239],[-166,-137],[-130,0],[-154,-307],[-178,-376],[-178,-205],[-139,-215],[-122,-230],[-154,0],[-213,-171],[-119,-68],[-155,74],[-130,165],[-142,69],[-190,-206],[-178,-273],[-106,-171],[-119,-171],[-190,-239],[-201,-103],[-166,-239],[-83,-308],[-119,-239],[-118,-103],[-178,-205],[-190,69],[-166,-240],[-131,-239],[-35,-376],[-107,-376],[-24,-376],[-71,-376],[-149,-148],[-147,-57],[-118,-205],[-48,-479],[-130,-342],[0,-376],[-60,-410],[-130,-342],[-143,-273],[-142,-34],[-118,-206],[-48,-341],[12,-376],[115,-149],[63,-296],[12,-342],[-131,-171],[-83,-273],[-118,-240],[-119,34],[-119,-68],[-118,-34],[-142,0],[-119,-205],[-132,-294],[-70,-356],[-95,-239],[-118,-137],[-178,-68],[-83,273],[-83,411],[-12,341],[-35,342],[83,308],[83,342],[94,273],[12,342],[-71,308],[-71,376],[-154,137],[-107,-171],[-71,-376],[-71,-308],[-143,-274],[-142,-205],[-166,35],[-71,307],[-107,308],[-166,205],[-142,103],[-130,68],[-107,171],[-119,137],[-118,68],[-131,-34],[-142,-103],[-83,-307],[-138,57],[-99,319],[-107,239],[-107,171],[-130,171],[-119,171],[-130,-137],[-119,-137],[-142,-68],[-130,-137],[-167,-239],[-94,-376],[-143,-411],[-154,-68],[-95,-273],[-118,-240],[-143,-307],[-130,-137],[-119,-171],[-130,-239],[-137,77],[-409,231],[-445,252],[-1309,740],[-783,443],[-223,125],[-299,168],[-200,112],[-969,545],[-1038,583],[-231,130],[-824,463],[-212,119],[-462,259],[-404,227],[-352,198],[-169,94],[-272,153],[-1087,609],[-175,98],[-123,60],[-1521,861],[-163,87],[-143,80],[-895,500],[-359,200],[-741,415],[-296,165],[-393,219],[-510,286],[-393,206],[-84,44],[-133,78],[-148,85],[-576,330],[-482,270],[-291,265],[-118,-37],[-998,556],[-373,207],[-326,182],[-284,160],[-416,226],[-144,81],[-1862,1037],[-423,235],[-93,52],[-171,98],[-35,22],[-239,146],[-462,284],[-251,167],[-70,-682],[-230,-2223],[-8,-73],[-42,-403],[-91,-881],[-10,-89],[-310,-3001],[-285,-2756],[-199,-1923],[-208,-2015],[-280,716],[-5,17],[-44,196],[-47,143],[-10,29],[-6,14],[-71,159],[-51,51],[-3,3],[0,1],[-179,70],[-574,-16],[-186,-5],[-142,-70],[-5,-4],[-79,-67],[-51,-110],[-1,-3],[-2,-4],[-68,-367],[-3,-141],[9,-57],[0,-3],[1,-3],[155,-360],[334,-659],[155,-249],[105,-166],[195,-290],[125,-32],[118,47],[213,187],[71,8],[121,-157],[20,-94],[58,-392],[3,-274],[-14,-133],[-142,-477],[-29,-69],[-79,-189],[-1,-2],[-66,-91],[-108,-91],[-4,-3],[-202,-23],[-112,47],[-118,16],[-72,-36],[-222,-112],[-14,6],[-513,198],[-43,17],[-14,25],[-129,235],[-155,79],[-193,99],[-228,731],[-126,402],[-86,120],[-216,690],[-76,246],[-19,89],[-236,1092],[-109,350],[-44,280]],[[430862,86696],[-3,422],[-2,245],[-4,94],[-20,462],[-77,529],[-101,346],[-236,587],[-211,508],[-254,383],[-44,63],[-81,261],[-84,162],[-181,70],[-78,30],[-123,134],[-207,640],[-258,796],[-138,703],[-329,950],[-102,169],[-173,240],[-330,430],[-35,21],[-165,99],[-348,957],[-28,142],[-62,313],[-48,249],[-10,133],[94,744],[124,201],[6,9],[124,385],[34,464],[-110,392],[-8,28],[-32,114],[-42,16],[-253,98],[-2,0],[-18,-19],[-167,-169],[-110,42],[-75,29],[-1,0],[0,2],[-170,656],[-67,256],[-33,576],[25,337],[12,17],[162,233],[40,58],[203,-78],[325,-255],[76,-183],[118,-282],[66,-25],[82,-32],[102,166],[28,44],[212,1565],[6,209],[6,219],[-126,352],[-287,500],[-23,49],[-68,142],[-189,394],[-81,258],[-27,87],[-85,57],[-335,230],[-15,10],[-719,580],[-52,20],[-152,58],[-59,-21],[-130,-210],[-143,-638],[-41,-67],[-32,-52],[-100,-161],[-83,-8],[-111,-10],[-171,-15],[-553,-5],[-192,74],[-98,-3],[-114,104],[-121,157],[-49,34],[-88,60],[-292,152],[-111,57],[-104,53],[-647,361],[-393,219],[-129,72],[-309,172],[-689,373],[-2811,1521],[-291,147],[-883,481],[-378,206],[-395,215],[-515,280],[-527,287],[-353,193],[-381,223],[-1106,622],[-191,108],[-118,67],[-453,254],[-169,-12],[-129,78],[-85,52],[-1323,796],[-313,173],[-1370,768],[-1316,735]],[[407862,113280],[411,1027],[651,1496],[139,319],[241,557],[1117,2573],[929,2126],[852,1951],[16,934],[0,29],[29,1513],[9,476],[7,365],[51,2679],[10,539],[304,27],[390,354],[54,380],[112,403],[-18,363],[152,524],[-63,302],[12,320],[5,116],[47,331],[79,-4],[47,-3],[121,81],[46,623],[2,24],[16,368],[191,331],[0,1],[200,210],[115,133],[-116,286],[-52,188],[-40,144],[-55,566],[-11,404],[89,249],[87,281],[118,139],[12,14],[112,167],[136,-46],[167,349],[62,488],[68,362],[-46,453],[76,352],[182,840],[254,740],[116,227],[141,127],[119,-13],[207,199],[123,88],[170,104],[141,112],[136,-98],[118,-49],[109,210],[44,-371],[-1,-55],[-9,-288],[101,-371],[71,-297],[106,-448],[106,-295],[120,-112],[165,3],[140,-70],[124,89],[29,451],[94,349],[122,268],[124,-7],[100,-225],[143,-35],[181,-104],[121,-228],[133,-188],[49,380],[86,274],[17,343],[-118,217],[-95,345],[37,355],[102,251],[61,356],[37,327],[115,276],[116,174],[102,318],[145,210],[44,380],[-34,390],[-44,341],[122,-2],[128,-30],[134,-88],[117,70],[125,326],[-97,204],[-107,207],[-28,384],[-49,373],[-152,304],[-96,240],[-54,384],[86,257],[-95,356],[-130,327],[-114,173],[-33,353],[-38,387],[-16,529],[-25,343],[-159,264],[116,365],[143,99],[122,81],[121,249],[107,295],[141,69],[-58,328],[25,364],[52,332],[155,121],[119,67],[170,99],[141,68],[105,180],[120,250],[143,137],[118,107],[118,100],[129,98],[212,154],[145,117],[120,131],[101,256],[-81,344],[-121,469],[-74,295],[-90,237],[-79,268],[-118,49],[-157,-113],[-125,-48],[-131,0],[-134,115],[-199,307],[-194,-78],[-151,-209],[0,5],[-54,604],[0,3],[24,405],[0,2],[68,535],[84,319],[-60,260],[-70,297],[20,453],[95,254],[95,230],[255,70],[128,127],[31,30],[122,-329],[139,-413],[228,-97],[160,233],[131,-60],[97,204],[92,566],[47,324],[171,57],[259,-314],[276,310],[257,370],[-104,379],[-176,90],[70,479],[242,409],[50,538],[-307,610],[-147,271],[104,173],[172,-76],[172,217],[35,370],[-153,589],[-112,779],[-58,99],[-107,185],[-108,334],[389,-51],[133,39],[232,67],[264,2],[244,-7],[142,84],[106,311],[-108,434],[-121,302],[-346,133],[-112,203],[-13,42],[-92,286],[0,1],[-65,555],[27,678],[-6,342],[44,439],[-56,362],[-160,338],[-84,313],[-75,278],[25,389],[58,607],[13,136],[121,391],[73,412],[-114,467],[-124,116],[-30,52],[-161,275],[-131,163],[-184,-7],[-122,128],[-133,304],[34,285],[9,75],[-10,628],[-115,166],[-23,45],[-133,260],[-66,382],[39,532],[46,243],[15,79],[142,734],[141,540],[42,284],[23,161],[114,389],[118,193],[176,-67],[3,-1],[263,196],[84,267],[13,40],[17,347],[-44,443],[134,281],[183,376],[138,621],[13,34],[134,329],[-99,350],[0,1],[-93,277],[-2,349],[38,383],[9,27],[81,237],[-68,643],[-132,351],[-81,133],[-24,39],[-88,229],[-40,514],[210,548],[-72,434],[-245,187],[-123,332],[-50,425],[-184,333],[20,389],[85,291],[100,259],[80,264],[85,290],[-5,228],[-3,127],[-34,856],[-197,297],[-134,370],[-86,239],[-216,625],[-197,675],[-262,491],[-143,492],[-76,473],[130,556],[120,107],[73,314],[-120,313],[-144,495],[-37,444],[171,642],[-79,851],[-76,367],[-119,275],[-64,315],[-159,205],[-102,-39],[-73,-28]],[[858465,189428],[73,-180],[-49,-364],[17,-184],[46,-88],[-33,-140],[-166,-698],[-6,-64],[-272,101],[-33,-413],[-60,-748],[-29,-353],[-32,-248],[-206,19],[-207,-530],[-507,-1387],[-73,-210],[-19,-54],[-299,-795],[35,-274],[470,-1679],[171,-611],[-294,-1050],[-50,-181],[-57,-616],[-114,-1239],[-90,-982],[222,-641],[50,-146],[-270,-1729],[5,-740],[10,-1060],[9,-415],[128,-739],[-83,-479],[95,-1025],[106,-171],[140,-494],[204,-907],[132,-444],[135,-443],[87,-551],[30,-348],[138,-1563],[17,-263],[7,-111],[-257,-453],[78,-435],[214,204],[173,168],[353,414],[245,269],[225,206],[453,481],[150,151],[244,295],[98,-215],[123,-644],[168,-811],[103,-458],[108,-509],[79,-376],[194,-923],[273,-1196],[59,-377],[222,-862],[122,-470],[69,-430],[268,-1177],[39,-172],[61,-266],[78,-295],[29,-209],[37,-260],[261,-986],[200,-278],[179,-337],[166,-103],[114,-131],[-87,326],[-15,478],[-104,1046],[-85,264],[-35,312],[100,-197],[140,-324],[204,-387],[207,-401],[101,209],[222,-266],[33,-40],[187,-426],[155,-377],[309,-765]],[[864103,153458],[-488,-1278],[-384,-925],[-195,-187],[-208,-1259],[-781,-2269],[-315,-1040],[-476,-2028],[-69,2],[-499,13],[-257,126],[-266,377],[-913,1233],[-233,1027],[-243,451],[-140,682],[-407,2539],[-440,36],[276,697],[-308,52],[-109,561],[-173,861],[-424,1272],[-273,1143],[-239,696],[-77,1076],[-6,1250],[308,356],[130,697],[-794,2048],[-7,93],[-85,1033],[-189,930],[-835,2785],[-1434,2260],[-303,432],[-327,571],[-710,1399],[-215,440],[-2092,3260],[-314,462],[-249,811],[-684,-229],[-300,950],[-532,1474],[-214,1017],[-108,968],[119,610],[45,941],[46,1705],[84,1376],[-416,-653],[-609,835],[-325,551],[-806,1369],[202,205],[-295,1920],[-239,678],[-351,331],[-301,284],[-59,889],[-286,1160],[-104,1043],[-258,608],[-301,710],[-451,-307],[170,851],[103,516],[-66,96],[-530,777],[25,-251],[87,-891],[-72,-24],[-142,-47],[-62,-256],[-64,-265],[-141,-583],[149,-857],[258,-249],[349,-548],[16,-1025],[94,-817],[85,-887],[196,-489],[220,-474],[312,-735],[64,-766],[230,-463],[94,-915],[80,-859],[167,-762],[-405,5],[-74,1],[-64,46],[-349,255],[-7,-316],[-11,-530],[360,-839],[-327,-234],[-198,97],[-280,136],[-334,366],[-231,507],[-127,859],[-259,1172],[-57,153],[-170,455],[-15,439],[-14,393],[-227,32],[-83,238],[-232,663],[-199,1053],[-214,625],[-350,628],[-370,448],[-310,816],[-305,272],[-260,464],[-28,49],[-44,161],[-223,807],[-93,756],[-16,127],[-180,309],[-248,308],[-191,451],[-218,58],[-231,61],[-105,-27],[-273,-70],[-239,479],[-98,196],[-378,538],[-5,6],[-261,1037],[-60,548],[-57,531],[-297,658],[-220,423],[-387,144],[-10,752],[198,612],[168,896],[107,1007],[30,1009],[78,741],[174,430],[359,-229],[144,995],[221,831],[190,893],[200,787],[274,987],[195,852],[166,514],[-79,876],[-75,1295],[-231,136],[-208,130],[138,541]],[[159723,147047],[72,-459],[379,-2437],[263,-1675],[128,-822],[259,-1657],[50,-328],[63,-405],[316,-2022],[339,-2180],[244,-1565],[136,-866],[59,-386],[345,-2206],[52,-334],[166,-1032],[61,-382],[98,-654],[28,-188],[62,-412],[65,-403],[93,-563],[70,-472],[65,-435],[0,-1],[47,-320],[-18,-28],[-225,-348],[-125,-67],[-157,5],[-123,-1],[-144,-109],[-160,-354],[-139,-265],[-116,-133],[-284,-86],[-142,-4],[-170,47],[-65,17],[-144,86],[-5,3],[-16,10],[-120,186],[2,379],[17,96],[40,237],[31,277],[28,248],[-40,412],[-3,22],[-26,3],[-145,15],[-42,-59],[-76,-108],[-8,-26],[-86,-275],[-44,-214],[-66,-320],[-4,-19],[-1,-29],[-15,-327],[19,-134],[39,-270],[47,-178],[40,-151],[75,-284],[80,-258],[72,-327],[101,-324],[40,-325],[-57,-482],[-82,-331],[-37,-385],[6,-548],[6,-904],[-49,-573],[-222,-168],[-112,245],[-83,381],[-44,586],[-140,457],[-123,440],[-49,332],[-44,382],[-28,387],[-17,373],[-107,418],[-171,208],[-12,13],[-53,-69],[-107,-137],[-6,-8],[-4,-48],[-36,-432],[49,-578],[29,-370],[64,-664],[-1,-428],[-120,-301],[-155,-145],[-151,51],[-177,92],[-159,-264],[-41,-421],[-19,-342],[-134,-213],[-112,173],[-119,361],[-109,493],[-50,613],[24,351],[12,447],[-41,169],[-38,157],[-121,258],[-58,125],[-182,-78],[-11,-4],[-167,-319],[-70,-85],[-161,-195],[-146,-196],[-154,-232],[-190,-242],[-148,51],[-203,499],[-2,5],[-105,240],[-165,173],[-56,-12],[-112,-24],[-14,-3],[-58,-66],[-73,-82],[-114,-305],[-6,-306],[-1,-60],[92,-380],[197,-298],[48,-303],[4,-25],[-55,-444],[-155,-145],[-130,61],[-120,144],[-181,499],[-113,372],[-106,262],[-98,245],[-108,223],[-152,29],[-179,-14],[-134,-4],[-142,-109],[-116,-254],[-105,-184],[-137,-162],[-113,-115],[-123,-149],[-99,-210],[-121,-170],[-232,-215],[-138,-229],[-135,-246],[-124,-188],[-193,-181],[-189,-127],[-159,-39],[-130,3],[-120,-78],[-62,-353],[-27,-343],[-59,-308],[-100,-267],[-128,-205],[-175,-160],[-180,-189],[-257,-203],[-116,-72],[-129,-162],[-176,-246],[-140,-166],[-148,-132],[-116,-107],[-187,-248],[-4,-6]],[[150399,114725],[-43,198],[-23,109],[-30,433],[32,18],[136,77],[148,101],[127,281],[55,327],[113,348],[-22,395],[-14,354],[-30,156],[-52,272],[-191,10],[-40,2],[-131,-121],[-13,-12],[-81,-4],[-64,-4],[-46,-3],[-117,91],[-253,-18],[-1177,-86],[-212,-12],[-1241,-68],[-183,-10],[-523,-31],[-134,-9],[-16,-1],[-115,-10],[-523,-28],[-313,-17],[-239,-14],[-1366,-84],[-139,-9],[-1087,-65],[-933,-51],[-1394,-77],[-940,-52],[-305,-23],[-371,-27],[-857,-37],[-516,-30],[-400,-22],[-121,-8],[-407,-25],[-358,-21],[-540,-38],[-578,-28],[-151,-6],[-333,-23],[-594,-47],[-10,0],[-820,-47],[-919,-55],[-374,-23],[-206,-12],[-132,-8],[-209,-13],[-506,-31],[-773,-57],[-11,-1],[-843,-54],[-407,-27],[-152,-8],[-120,-6],[-243,-3],[-2515,-153],[-133,-9],[-724,-315],[-438,-165],[-880,-331],[-96,-284],[-72,-287],[-116,-161],[-137,-211],[-97,-492],[-46,-326],[-92,-228],[-90,-268],[-120,-201],[-23,-382],[-65,-360],[-119,-73],[-176,-307],[-82,-263],[-110,-259],[-71,-283],[-84,-752],[-98,-233],[-109,-155],[-113,-196],[29,-370],[70,-408],[-27,-391],[-125,7],[-93,-261],[-91,-225],[55,-372],[49,-359],[126,-149],[-39,-330],[-128,29],[-134,-105],[-111,-262],[-67,-320],[38,-329],[-32,-335],[-81,-256],[-35,-329],[-71,-357],[-61,-400],[-65,-290],[-120,-70],[-58,-402],[-173,-35],[-135,-397],[-150,-415],[-106,-160],[-124,-199],[-158,-46],[-89,-281],[-182,-239],[-116,83],[-165,125],[-160,-159],[-95,-220],[-119,-66],[-62,-300],[-121,-306],[-115,-290],[-146,-367],[-67,-295],[-138,-167],[-181,-96],[-100,-258],[-93,-314],[-93,-231],[-85,-255],[-76,-273],[-116,-442],[-142,-369],[-80,-275],[-48,-398],[-105,-264],[-117,-176],[-30,-364],[-111,-341],[-130,-155],[-132,-163],[-142,-103],[-118,-229],[-115,-212],[-145,-97],[-83,-264],[-148,2],[-158,114],[-114,-138],[-142,167],[-28,400],[-50,337],[2,366],[-152,287],[-107,256],[-94,217],[-149,103],[-201,58],[-119,-166],[-146,27],[-203,-108],[-153,15],[-220,173],[-147,227],[-127,70],[-199,165],[-176,260],[-123,271],[-51,356],[32,411],[6,412],[92,322],[-10,344],[-58,297],[-178,131],[-171,-299],[-99,-361],[-102,-385],[-138,-171],[-114,136],[-134,96],[-118,-72],[-160,149],[-124,-97],[-148,-95],[-87,-250],[-39,-334],[-115,-179],[-117,78],[-113,196],[-89,260],[-57,311],[-73,379],[-127,-168],[-104,-234],[-153,-103],[-151,158],[-167,446],[-44,425],[-122,32],[-112,-506],[-111,-308],[-130,-207],[-90,-368],[-163,-405],[-155,-275],[-99,-196],[-45,-410],[-124,-451],[-151,-405],[-82,-443],[-107,-295],[-103,-341],[-125,-476],[-35,-380],[-172,-248],[-58,-303],[-67,-324],[-45,-397],[-132,-493],[-163,-206],[-199,-63],[-98,-349],[-93,-237],[-28,-353],[-172,-283],[-75,-369],[-53,-616],[58,-396],[163,-131],[134,-88],[134,-301],[133,-380],[-41,-432],[-168,106],[-113,177]],[[107155,88582],[-109,257],[-1556,3291],[-56,117],[-94,213],[-101,215],[-2,4],[-184,374],[-173,373],[-119,255],[-105,205],[-141,318],[-102,222],[-94,211],[-369,785],[-232,532],[-577,1215],[-253,534],[-230,486],[-377,797],[-665,1406],[-153,330],[-127,277],[-106,230],[-168,371],[-5,11],[-90,204],[-170,389],[-12,29],[-1238,2829],[-352,264],[-150,-49],[-190,-298],[-158,-126],[-170,-99],[-261,-36],[-118,203],[-114,395],[-53,333],[-57,303],[68,493],[-64,743],[101,579],[124,52],[354,622],[-105,207],[-36,372],[-102,256],[-129,396],[-236,166],[-118,49],[-47,358],[-135,353],[-90,504],[1,21],[33,439],[119,339],[2,344],[20,339],[-119,212],[-105,231],[-140,-19],[-105,256],[-84,306],[-110,230],[-142,-48],[-193,542],[-115,134],[-107,170],[-86,341],[-101,330],[-18,71],[-62,252],[-24,367],[-76,353],[-96,291],[-62,327],[-97,358],[-73,354],[-121,293],[-164,404],[-96,226],[-23,348],[-149,430],[-103,226],[-109,205],[-132,111],[-172,228],[-214,113]],[[94486,120226],[-38,274],[45,509],[196,513],[694,583],[314,632],[-23,413],[-105,162],[-125,89],[-121,379],[-117,117],[-157,416],[-105,533],[-120,325],[-148,109],[-60,220],[-44,161],[175,722],[227,412],[70,390],[270,383],[34,360],[137,476],[30,103],[184,107],[70,67],[5,422],[332,1194],[121,137],[40,383],[332,645],[59,151],[142,693],[117,351],[-51,401],[-35,645],[-10,289],[-185,630],[-38,424],[4,446],[-38,357],[-88,305],[-103,779],[69,364],[-3,381],[25,394],[71,326],[85,745],[22,441],[259,752],[246,639],[-34,384],[-130,-173],[-181,125],[-81,462],[-169,312],[-75,296],[-143,44],[-77,278],[-116,-9],[-195,212],[18,364],[-18,445],[-111,177],[-46,723],[-93,231],[-203,129],[-54,460],[-40,336],[-95,282],[84,332],[217,157],[12,431],[10,198],[-102,499],[24,497],[109,887],[121,342],[185,170],[253,529],[212,28],[77,-319],[112,-183],[265,-55],[119,206],[-13,358],[84,406],[1,405],[94,224],[214,761],[260,-191],[250,-390],[320,227],[119,-87],[158,33],[175,576],[238,470],[344,-36],[125,196],[146,586],[21,413],[120,405],[163,148],[214,465],[123,174],[67,746],[96,670],[-77,472],[-118,513],[91,978],[210,720],[335,125],[105,-203],[78,-360],[158,-129],[65,43],[247,626],[156,32],[108,-185],[62,352],[87,233],[109,-161],[94,-372],[112,-204],[162,193],[135,308],[116,133],[296,-99],[171,122],[171,-24],[626,379],[231,470],[154,-394],[58,-615],[189,-376],[117,63],[290,386],[93,267],[167,260],[50,103],[188,-64],[450,-198],[127,262],[382,1286],[1,472],[114,302],[41,434],[329,-245],[297,129],[73,475],[146,254],[73,628],[266,427],[80,743],[235,452],[275,168],[247,651],[151,165],[476,-167],[380,-517],[142,-706],[302,479],[-13,490],[80,490],[149,541],[78,556],[-11,688],[-23,290],[91,368],[100,667],[42,387],[-14,801],[24,370],[130,620],[199,-76],[119,204],[284,223],[168,-62],[142,186],[159,-18],[128,-365],[136,70],[180,-227],[209,-51],[119,-157],[165,60],[116,213],[124,443],[38,138],[17,606],[-29,398],[57,589],[-31,834],[-28,839],[83,1007],[-69,748],[32,899],[-174,509],[-223,1268],[60,847],[-97,1012],[188,616],[187,392],[197,-60],[230,117],[172,-14],[170,691],[-34,621],[-267,596],[-173,348],[-20,571],[-168,279],[-68,215],[-53,1141],[89,352],[-142,404],[-117,319],[71,371],[169,223],[89,228],[-27,749],[93,774],[-45,1000],[-129,686],[123,477],[-28,391],[-141,387],[-50,362],[-95,562],[-66,214],[-131,590],[-37,919],[112,437],[156,312],[88,465],[119,197],[68,318],[129,282],[554,376],[120,-129],[159,356],[215,382],[86,102],[165,318],[128,0],[328,456],[83,194],[75,360],[232,120],[180,49],[374,596],[149,144],[270,497],[177,231],[360,271],[148,9],[435,603],[158,179],[98,323],[107,153],[173,-62],[196,-563],[276,-188],[120,279],[138,134],[122,218],[-30,421],[163,-4],[108,141],[149,361],[242,710],[205,230],[113,122],[175,-23],[66,348],[211,252],[168,-35],[218,203],[188,-20],[103,215],[-55,454],[115,312],[45,306],[46,721],[300,335],[185,89],[158,-285],[103,-239],[141,42],[181,165],[82,24],[236,693],[158,26],[548,361],[266,55],[164,-18],[45,132],[44,130],[167,591],[133,285],[315,1021],[156,314],[269,835],[228,504],[482,827],[245,351],[434,341],[382,849],[88,245],[162,7],[45,326],[151,10],[242,491],[270,186],[110,204],[306,157],[110,322],[180,165],[155,422],[110,220],[-36,373],[109,520],[372,476],[128,74],[144,346],[462,438],[237,357],[218,188],[119,187],[92,264],[178,118],[141,269],[235,358],[227,321],[99,199],[119,153],[264,493],[146,243],[680,1078],[86,136],[295,480],[122,189],[97,247],[85,108]],[[126883,143031],[-55,-429],[-58,-315],[-45,-692],[-31,-351],[-50,-458],[-171,-728],[-93,-182],[-129,-254],[-104,-225],[-113,184],[-71,119],[-128,215],[-97,163],[-39,340],[124,-45],[113,-182],[15,-25],[18,71],[54,213],[48,328],[1,9],[70,352],[15,406],[-96,244],[-28,17],[-101,64],[-139,38],[-125,297],[-140,-16],[-95,-183],[-27,-52],[-143,-296],[-194,-78],[-423,118],[165,-637],[-435,-368],[-319,-352],[-235,121],[-371,339],[-71,-299],[-68,-230],[-46,-156],[-35,-281],[-9,-74],[-57,-459],[-121,-509],[-157,-524],[-142,-336],[-122,-141],[-105,-211],[-117,-468],[-42,-166],[-182,-532],[-102,-438],[-26,-87],[-8,-26],[-44,-145],[14,-360],[111,-415],[-54,-305],[-108,-242],[-83,-174],[-32,-67],[-112,-213],[-141,-73],[-206,-165],[-128,-66],[-35,-329],[-4,-248],[-2,-117],[-74,1],[-149,2],[-64,-327],[-9,-50],[-9,-89],[-26,-256],[64,-674],[6,-64],[-89,-244],[26,-370],[-249,-240],[-637,-573],[250,-819],[319,-16],[234,-273],[121,-252],[193,-8],[267,-40],[118,-207],[-17,-1291],[463,687],[-56,-405],[-211,-1377],[99,-617],[134,-1082],[369,-1390],[394,677],[408,704],[-45,700],[404,-56],[522,61],[556,-22],[746,111],[109,-147],[290,-396],[213,1761],[88,732],[-380,32],[-237,4],[457,381],[-483,595],[-268,-240],[80,340],[49,481],[3,360],[-37,337],[-128,703],[-102,603],[-75,735],[19,969],[155,481],[277,192],[-77,436],[232,511],[279,239],[152,130],[145,124],[85,18],[4,1],[185,38],[658,229],[301,81],[393,105],[-8,151],[169,-22],[138,-34],[24,-13],[559,-320],[78,255],[-227,1700],[136,262],[198,383],[-13,284],[-265,-138],[-316,-150],[-37,0],[-92,-3],[-228,29],[-30,-64],[-78,-165],[-42,202],[33,88],[55,143],[78,204],[265,491],[22,24],[108,119],[247,351],[159,435],[192,1111],[-44,51],[-41,47],[-453,1592],[-487,748],[-30,-120],[38,-172],[78,-362],[150,-6],[-150,-431],[-260,314],[-8,361],[-131,107],[-136,51],[-95,401],[-26,340],[-151,-46],[-158,-148]],[[867396,212606],[-17,-626],[37,-838],[-147,-564],[-83,-820],[-203,206],[-153,442],[-62,179],[-262,143],[-192,-542],[-371,358],[-10,376],[-14,544],[-249,578],[273,30],[66,7],[71,263],[110,410],[208,397],[61,32],[399,208],[-9,-656],[342,-88],[205,-39]],[[867396,212606],[-16,1002],[125,938],[432,-98],[332,-209],[169,543],[100,322],[22,1],[228,17],[-59,-482],[-50,-410],[355,28],[27,-302],[44,-497],[-267,-428],[348,-534],[289,-900],[67,-575],[55,-466],[132,-690],[124,-649],[263,-1208],[228,-481],[68,-225],[140,-462],[255,-983],[237,-352],[240,167],[235,26],[221,28],[85,10],[70,-141],[89,-179],[-313,-394],[-74,-943],[438,-21],[43,-2],[124,749],[385,-329],[46,-20],[449,-186],[301,-817],[345,-237],[137,-632],[226,-1035],[337,70],[10,2],[279,-342],[158,-942],[169,728],[329,-551],[98,-643],[19,-129],[-57,-60],[-315,-328],[-219,-1250],[-304,-17],[-200,-11],[-62,-1147],[53,-824],[-21,-84],[-118,-466],[-290,399],[-127,-598],[-92,-438],[-191,227],[-30,129],[-137,605],[-206,346],[-50,83],[-7,-398],[-5,-299],[-51,-79],[-182,-282],[-215,-468],[-134,1198],[-254,348],[-181,-863],[170,-1296],[-59,45],[-276,212],[-193,185],[-77,74],[-24,-252],[-50,-541],[-348,207],[-359,802],[-287,127],[162,-589],[-134,-453],[-51,-70],[-235,-322],[-103,-141],[-123,-197],[-146,-231],[-58,-93],[-249,-1009],[-328,-514],[-95,672],[9,807],[-178,955],[-161,751],[-38,774],[-321,113],[-27,749],[-335,4],[-262,-899],[-285,582],[-169,840],[-238,663],[-240,353],[-247,383],[-202,-62],[56,-887],[-206,-342],[-138,-301],[-214,49],[-266,617],[-334,535],[72,-374],[132,-678],[254,-956],[-224,-139],[-69,-44],[-258,-315],[-421,-5],[-39,0]],[[864883,195255],[-44,74],[-699,-1094],[271,-317],[97,-114],[11,-13],[0,-25],[0,-646],[0,-252],[-272,-34],[-5,102],[-19,411],[-583,433],[-152,114],[-155,-581]],[[861076,204517],[215,1073],[192,848],[-48,831],[137,914],[29,503],[219,404],[132,685],[264,405],[231,775],[313,734],[318,-528],[133,-513],[-391,-801],[298,-132],[149,-671],[-72,-1018],[377,-13],[116,843],[-31,621],[-74,792],[321,93],[412,-41],[319,-182],[265,-331],[191,-378],[-264,-870],[-435,-1270],[430,35],[489,782],[407,85],[-8,-812],[-142,-683],[-234,-570],[-82,-739],[325,90],[346,828],[175,-707],[141,-574],[331,-541],[301,-986],[325,-391],[-91,1127],[331,99],[23,94],[13,51],[136,542],[-178,94],[-212,112],[-356,770],[-95,946],[-396,-709],[-196,971],[286,95],[-215,891],[204,538],[159,182],[89,104],[113,-53],[437,-202],[167,-492],[397,-26],[78,-5],[486,-469],[268,-292],[-33,385],[-24,282],[-110,474],[18,500],[19,565],[-61,334],[-133,724],[-127,861],[-251,652],[-303,528],[-243,-174]],[[847888,125406],[-131,421],[-90,417],[-68,298],[4,433],[62,528],[-46,581],[-138,273],[-134,159],[-143,-28],[-229,-199],[-131,-161],[-82,-298],[-135,-619],[-157,-212],[-200,-76],[-706,-1559],[-369,-790],[-183,-395],[-94,-210],[-139,-247],[-309,-721],[-125,-274],[-291,-620],[-585,-1252],[-120,-262],[-280,-607],[-119,-258],[-345,-748],[-282,-613],[-111,-238],[-175,-370],[-176,-380],[-161,-350],[-95,-211],[-190,-412],[-161,-359],[-118,-264],[-20,-42],[-78,-167],[-146,-302],[-226,-484],[-230,-476],[-316,-704],[-426,-948],[-18,-38],[-744,-1606],[-322,-659],[-172,-417],[-867,-1875],[-1358,-2933],[-165,-365],[-98,-245],[-148,-343],[-106,-233],[-161,-356],[-283,-623],[-51,-113],[-142,-312],[-161,-355],[-108,-247],[-99,-215],[-462,-1007],[-375,-823],[-417,-914],[-160,-326],[-679,-1499],[-96,-215],[-711,-1589],[-120,-246],[-70,-128],[-75,-137],[-98,-206],[-125,-283],[-370,-838],[-334,-757],[-96,-218],[-338,-747],[-114,-264],[-176,-407],[-304,-672],[-151,-335],[-222,-491],[-104,-234],[-261,-583],[-191,-421],[-224,-496],[-252,-552],[-1,-2],[-214,-470],[-121,-266],[-150,-343],[-1159,-2651],[-114,-263],[-202,-462],[-29,-68],[-141,-321],[-229,-494],[-443,-956],[-1018,-2195],[-210,-453],[-1183,-2642],[-144,-323],[-604,-1356],[-359,-795],[-51,-111],[-343,-742],[-239,-557],[-148,-286],[-579,-1403],[-411,-880],[-648,-1387],[-180,-384],[-1028,-2115],[-385,-796],[-130,-273],[-1651,-3255],[-47,-88],[-67,-127],[-245,-468],[-456,-837],[-1600,-2935],[-142,-267],[-1,-3],[-409,-991],[-171,-416],[-169,-408],[-136,-331],[-186,-450],[-151,-370],[-247,-543],[-15,-33],[-554,-1189],[-1158,-2499],[-157,-340],[-400,-839],[-288,-592],[-833,-1714],[-21,-45],[-662,-1366],[-100,-214],[-828,-1753],[-139,-291],[-181,-380],[-329,-643],[-291,-610],[-86,-180],[-171,-360],[-291,-612],[-276,-580],[-172,-365],[-313,-664],[-180,-383],[-101,-212],[-379,-789],[-159,-331],[-99,-206],[-170,-353]],[[803672,35311],[-142,253],[-306,384],[-251,138],[-243,132],[-131,84],[-126,83],[-234,332]],[[802239,36717],[-55,279],[-52,296],[-140,173],[-102,123],[-41,469],[69,474],[43,453],[-9,349],[-115,399],[-97,311],[18,400],[-109,227],[-152,94],[-100,187],[-115,240],[1,382],[159,723],[87,422],[72,281],[215,585],[128,361],[23,549],[-5,617],[-170,453],[-167,178],[-153,-11],[-188,-174],[-152,230],[223,484],[79,1044],[-44,124],[-56,155],[-113,174],[-79,121],[-122,184],[-55,83],[-123,53],[-201,-131],[-228,363],[10,488],[132,-236],[141,122],[91,-312],[152,405],[-13,146],[-43,506],[131,138],[161,235],[121,323],[-103,308],[-148,133],[130,95],[91,279],[100,208],[-20,460],[15,423],[126,141],[-58,399],[121,-61],[116,119],[122,259],[28,382],[105,293],[-12,332],[0,27],[-164,331],[-43,87],[-46,98],[-55,121],[-3,-1],[-144,-53],[-134,-91],[-136,112],[-33,-354],[-169,-192],[-54,427],[-120,-156],[-144,-28],[-131,-226],[-106,-153],[-141,-20],[26,347],[-85,207],[-10,26],[-120,201],[59,356],[-63,229],[-23,82],[-78,339],[-111,180],[-33,348],[179,-229],[92,94],[70,71],[138,335],[-38,74],[-68,134],[124,69],[63,135],[58,127]],[[800466,57080],[150,342],[70,231],[15,52],[-74,357],[-118,-2],[9,353],[-11,385],[110,270],[61,339],[1,441],[127,-1],[143,286],[119,-232],[152,220],[-102,321],[-181,302],[117,97],[129,198],[130,-379],[136,108],[-77,346],[129,-1],[-42,351],[163,550],[-59,445],[-142,343],[257,243],[112,117],[-57,406],[-17,405],[-207,298],[190,-19],[23,431],[-127,368],[-225,1036],[92,291],[71,321],[88,340],[229,175],[49,471],[265,1],[22,404],[43,351],[125,226],[65,-339],[177,-149],[150,-221],[26,-37],[193,-47],[108,694],[92,410],[398,700],[220,195],[95,288],[124,355],[-70,403],[-88,275],[-81,308],[-132,141],[-33,351],[-128,346],[-50,413],[-118,-233],[42,341],[25,409],[-160,145],[135,273],[-124,369],[96,225],[150,264],[196,394],[-31,401],[29,416],[273,95],[84,277],[18,-434],[243,-54],[-38,-542],[128,91],[206,250],[99,350],[118,206],[145,340],[69,-293],[95,300],[119,348],[-34,423],[-167,572],[-158,391],[45,378],[-93,322],[-200,326],[129,335],[129,428],[276,503],[-204,195],[-22,354],[150,419],[96,525],[184,327],[324,-8],[178,74],[106,311],[125,154],[186,91],[182,301],[199,455],[18,514],[47,550],[393,-205],[191,80],[111,413],[78,301],[-20,1007],[1,523],[91,439],[184,371],[157,366],[-6,431],[31,484],[-75,567],[-43,642],[-102,257],[-166,-35],[-213,-218],[-149,630],[-87,913],[162,223],[16,419],[81,346],[115,-320],[40,525],[26,600],[121,-9],[-120,664],[-44,480],[89,293],[4,540],[82,378],[93,429],[122,394],[-61,311],[-55,317],[86,492],[141,175],[144,146],[110,-242],[40,-698],[144,82],[152,326],[45,545],[-25,412],[-127,199],[69,343],[-65,325],[-107,149],[-84,320],[-15,344],[-30,426],[18,432],[139,238],[38,364],[135,293],[16,358],[107,229],[0,437],[150,513],[119,51],[151,455],[131,-88],[82,363],[55,403],[-14,366],[78,286],[37,375],[-84,284],[-165,-15],[-103,232],[-53,396],[114,169],[-103,319],[135,1],[160,-65],[149,129],[200,103],[130,-20],[119,348],[124,-19],[68,350],[102,-232],[126,95],[100,311],[59,410],[36,393],[64,312],[167,140],[74,-303],[50,340],[109,320],[119,213],[62,365],[-91,157],[-28,48],[-119,190],[-68,11],[-69,11],[-121,171],[-64,91],[-59,345],[87,293],[130,214],[13,56],[74,314],[143,-230],[43,118],[73,201],[164,89],[192,202],[124,145],[-59,383],[-49,346],[148,218],[-2,681],[94,294],[142,398],[183,-237],[132,-98],[33,-25],[12,69],[56,309],[22,382],[196,-217],[93,-125],[27,-36],[73,132],[56,100],[-44,319],[109,228],[117,160],[102,281],[-77,510],[-32,332],[-121,186],[-130,-164],[-123,-262],[-134,30],[-7,2],[3,57],[29,424],[-236,234],[-125,67],[-94,222],[16,443],[-40,364],[138,115],[0,351],[-28,427],[85,327],[140,9],[116,99],[20,-10],[128,-64],[-4,147],[-6,262],[116,-67],[134,72],[85,255],[53,268],[29,145],[-27,236],[-18,159],[-9,83],[-23,344],[123,180],[146,382],[55,394],[185,238],[-47,1000],[-28,681],[-113,108],[-145,339],[-7,3],[-152,59],[97,358],[164,443],[78,570],[13,432],[104,222],[-54,349],[-66,380],[-127,156],[-159,189],[-151,12],[-187,255],[-128,-150],[-81,319],[-142,99],[-95,363],[-118,314],[-31,113],[-91,324],[-212,37],[-84,-320],[-3,-29],[-46,-387],[-72,-296],[-123,-46],[-141,155],[-147,-173],[-91,334],[-12,529],[-46,509],[-96,456],[37,358],[135,241],[137,-43],[5,-2],[53,525],[51,416],[114,367],[-6,459],[-143,178],[-99,-115],[-86,-100],[-166,10],[-134,-23],[-57,-366],[-108,144],[-164,23],[-187,441],[-174,204],[-113,272],[-100,288],[-109,660],[72,391],[52,378],[53,495],[-135,245],[-34,372],[35,351],[-74,293],[-103,244],[-133,217],[-178,242],[-104,171],[-202,543],[3,369],[77,306],[28,368],[-97,463],[-63,304],[-44,404],[-79,296],[-206,382],[-169,291],[-111,213],[-104,-169],[-61,460],[-4,33],[-24,359],[13,50],[205,792],[104,283],[62,579],[114,231],[-107,266],[54,430],[-12,549],[115,224],[42,329],[91,335],[-1,460],[-45,327],[144,303],[67,122],[55,101],[98,422],[-47,388],[-114,196],[-32,56],[-128,313],[-77,305],[59,493],[53,372],[113,242],[50,404],[31,430],[104,226],[35,423],[1,486],[-28,452],[-53,378],[105,431],[22,403],[92,235],[-8,663],[-39,366]],[[830065,204734],[51,62],[213,255],[237,96],[100,-67],[256,-172],[216,-1170],[167,-1090],[93,-927],[-80,-1239],[-55,-1217],[56,-757],[133,-711],[179,-795],[284,-853],[177,-925],[106,-1187],[-102,-1334],[-10,-1636],[-16,-988],[-114,-640],[-96,-954],[-205,-518],[-87,-1336],[-188,-916],[-131,-705],[-160,-911],[-93,-792],[-77,-868],[-90,-935],[-64,-772],[2,-618],[-24,-840],[-41,-1722],[105,-1332],[163,-1226],[138,-760],[230,-913],[313,-1004],[343,-867],[270,-547],[317,-549],[535,-662],[389,-315],[380,-175],[263,-115],[393,-43],[584,27],[200,-24],[795,25],[479,15],[317,25],[356,39],[328,-39],[295,-200],[300,-179],[283,-185],[263,-155],[208,-144],[425,-294],[305,-277],[381,-256],[227,-244],[267,-355],[249,-491],[351,-737],[393,-770],[243,-1006],[25,-981],[-177,-1169],[-128,-375],[-114,-335],[-112,-296],[-77,-203],[-64,-225],[-146,-509],[-36,-129],[-96,-527],[-129,-711],[441,-125],[145,-1123],[-1527,533],[-636,1222],[-104,0],[-514,0],[-654,561],[-618,-1273],[-424,-1681],[36,-1934],[423,-204],[336,1120],[424,-153],[335,-305],[583,560],[265,-611],[354,-458],[653,763],[442,-305],[423,-306],[301,306],[93,780],[376,514],[276,19],[458,283],[-86,801],[223,705],[319,200],[298,19],[322,-204],[392,-296],[336,-700],[315,-435],[383,-967],[215,-527],[150,-628],[170,-823],[270,-616],[237,-336],[289,-272],[327,-411],[40,-50],[213,-207],[241,-125],[624,-329],[190,-1088],[-136,-505],[-185,231],[-166,-599],[385,-476],[143,-415],[137,-399],[398,-519],[354,-736],[131,-334],[186,-472],[33,-35],[354,-368],[65,-30],[224,-106],[404,-217],[108,-44],[311,-129],[237,-35],[224,-67],[350,-621],[233,-650],[130,-506],[49,-192],[210,-561],[2,-6],[172,-708],[-16,-135],[-110,-897],[-25,-540],[-18,-377],[15,-260],[30,-529],[140,-830],[98,-573],[-16,-604],[8,-843],[-249,-116],[-211,465],[-369,364],[-339,656],[26,600],[19,454],[-282,233],[-40,308],[-70,538],[-5,39],[-328,453],[-112,-677],[-208,-114],[-80,-43],[87,-1227],[208,-864],[144,-796],[143,-1136],[-60,-1150],[58,-923],[154,-943],[179,-1069],[-86,-710],[-207,-223],[-304,-386],[-379,-230],[-191,-167],[120,-1126],[-145,-115],[-345,-271],[-374,287],[-445,-76],[-138,-1090],[-277,-418],[-249,-542],[-307,-745]],[[224643,142845],[-1945,-1607],[-770,-395],[-298,-152],[-145,-154],[-1396,-1624],[-266,-1392],[-11,-54],[-52,-273],[-122,-639],[-130,-240],[-282,-532],[-122,-254],[-438,-1675],[-102,-337],[-1,-5],[-112,-222],[-88,-341],[-1,-2],[-113,-161],[-152,42],[-131,-102]],[[217966,132726],[-166,-274],[-113,-193],[-39,-65],[-453,-870],[-685,-2107],[-426,-1306],[-93,-280],[-658,-2016],[-178,-342],[-148,-306],[-200,-413],[-247,-512],[-117,-241],[-433,-895],[-132,-272],[-160,-330],[-341,-654],[-202,-479],[-166,-342],[-142,-273],[-237,-547],[-134,-308],[-270,-513],[-130,-102],[-131,-137],[-142,-137],[-115,-98],[-229,-244],[-237,-205],[-196,-166],[-160,-141],[-225,-274],[-130,-137],[-214,-171],[-178,-102],[-118,-171],[-107,-171],[-273,-376],[-142,-171],[-178,-239],[-119,-68],[-142,-69],[-119,-171],[-142,-205],[-249,-307],[-119,-137],[-189,-273],[-210,-268],[-259,-348],[-386,-505],[-295,-384],[-423,-165],[-194,-75],[-169,-258],[-768,-1177],[-237,-69],[-326,-704],[-102,-219],[-117,-103],[-143,35],[-155,294],[-93,218],[-190,205],[-144,-69],[-139,-168],[-123,-141],[-141,-102],[-142,1],[-119,171],[-70,307],[-53,340],[-54,309],[-142,275],[-107,205],[-178,69],[-344,171],[-166,0],[-178,0],[-189,-103],[-143,-137],[-130,-102],[-173,53],[-88,323],[-95,205],[-95,239],[24,376],[-36,376],[-154,308],[-59,376],[-46,345],[-1,544],[-143,137],[-142,-69],[-119,-171],[-130,-136],[-142,-137],[-166,-103],[-143,-102],[-142,34],[-107,-205],[-118,-69],[-83,-341],[-118,-65],[-156,58],[-145,-96],[-129,-118],[-271,-50],[-141,-168],[-153,-17],[-150,-238],[-210,-31],[-127,-27],[-155,-285],[-126,-85],[-119,-41],[-265,-206],[-260,-177],[-185,-118],[-116,-209],[-196,-135],[-179,-112],[-127,-77],[-205,-97],[-219,-81],[-145,-193],[-188,-63],[-219,-180],[-199,11],[-135,-55],[-170,-126],[-136,-154],[-127,-204],[-184,-16],[-170,-52],[-194,-231],[-178,-137],[-99,-307],[-201,-257],[-266,-105],[-146,-100],[-135,-44],[-211,-31],[-126,-242],[-177,-165],[-183,-198],[-150,-164],[-208,-110],[-118,77],[-174,-349],[-160,13],[-187,-25],[-144,-92],[-129,-118],[-89,-282],[-177,-69],[-246,64],[-126,-234],[-194,-163],[-124,14],[-125,56],[-132,-248],[-118,-61],[-136,-61],[-150,-345],[-120,-342],[-132,-353],[-116,67],[-125,-16],[-116,-289],[-169,-137],[-81,-260],[-152,-235],[-142,-183],[-169,-244],[-109,-487],[-167,-234],[-201,-306],[-136,-265],[-77,-315],[-193,-242],[-166,-454],[-133,-367],[-72,-328],[-15,-483],[-123,-53],[-149,-260],[-156,-257],[-178,-74],[-192,-296],[-69,-328],[-81,-423],[-66,-310],[-65,-336],[-43,-349],[-47,-384],[-112,-214],[-238,-450],[-89,-255],[-22,-348],[-61,-367],[53,-438],[-10,-421],[-92,-281],[-89,-266],[6,-377],[-20,-448],[147,-372],[37,-293],[23,-181],[-22,-381],[96,-436],[129,-562],[63,-533],[23,-438],[29,-373],[101,-467],[102,-263],[134,-717],[122,-383],[189,-281],[161,-222],[107,-295],[17,-399],[-253,-433],[-141,-257],[-167,40],[-226,69],[-224,51],[-112,-214],[-110,-250],[-172,-195],[-156,-167],[-190,-124],[-141,-26],[-179,-294],[-154,24],[-170,-157],[-117,-177],[-114,-340],[-108,-325],[-178,-218],[-155,-5],[-191,-97],[-161,-93],[-137,-98],[-145,-200],[-174,-314],[-205,32],[-221,15],[-299,-321],[-166,-189],[-221,-101],[-160,-273],[-173,-209],[-217,-98],[-128,-263],[-158,-19],[-141,-128],[-144,-137],[-134,-150],[-183,-97],[-189,-254],[-168,-77],[-129,-21],[-179,-19],[-161,-193],[-208,-244],[-179,-146],[-129,54],[-158,0],[-184,-37],[-132,-116],[-147,-143],[-170,-91],[-194,-42],[-209,-318],[-204,-200],[-124,-169],[-120,-37],[-130,-260],[-177,-262],[-171,126],[-170,16],[-186,-36],[-114,-109],[-173,-157],[-128,-241],[-164,-319],[-120,-155],[-108,-282],[-244,-11],[-128,56],[-196,-136],[-114,-92],[-139,-195],[-114,-270],[-309,-270],[-205,-97],[-109,-274],[-167,-63],[-134,-272],[-145,-244],[-121,-170],[-141,-29],[-198,-133],[-102,-238],[-163,-129],[-167,-182],[-159,25],[-154,22],[-122,-302],[-215,-398],[-196,-320],[-202,-338],[-149,-244],[-141,-217],[-153,-38],[-152,5],[-191,-42],[-138,-299],[-94,-419],[-115,-434],[-107,-155],[-183,-39],[-197,-46],[-151,23],[-155,-14],[-127,-263],[-101,-304],[-149,-21],[-50,-319],[-45,-423],[-100,-194],[-178,28],[-146,83],[-166,-220],[-158,-53],[-204,-210],[-210,-201],[-125,-201],[-119,-40],[-160,-146],[-110,-225],[-173,-272],[-146,-262],[-159,-241],[-309,-271],[-191,-157],[-213,-353],[-141,-221],[-124,-32],[-216,-144],[-184,-212],[-105,-184],[-168,-157],[-105,-233],[-138,-195],[-133,-228],[-168,-105],[-199,-370],[-110,-150],[-172,-240],[-118,-54],[-124,-57],[-146,-29],[-127,-210],[-99,-210],[-109,-202],[-113,-127],[-134,30],[-112,-351],[-84,-265],[-149,-326],[-178,-89],[-135,-50],[-132,-184],[-133,-145],[-169,-322],[-121,-236],[-123,-234],[-106,-277],[-192,-257],[-114,-211],[-132,-292],[-136,-214],[-125,-333],[-119,-292],[-141,-250],[-173,-226],[-95,-429],[-156,-234],[-118,-225],[-170,-320],[-148,-350],[-100,-230],[-97,-278],[-130,-286],[-95,-288],[-137,-203]],[[159239,57636],[-124,1084],[-41,351],[-147,1285],[-154,1346],[-53,465],[-150,1335],[-5,50],[-78,690],[-41,366],[-39,355],[-136,1216],[-86,766],[-64,586],[-67,588],[-39,349],[-116,1042],[-163,1510],[-59,554],[-280,2168],[-54,414],[-34,261],[-380,2862],[-283,2130],[-47,352],[-51,385],[-46,351],[-164,1235],[-21,159],[-483,2652],[-112,619],[-149,820],[-90,494],[-67,371],[-653,3577],[-71,389],[-526,2883],[-64,378],[-61,369],[-56,341],[-71,343],[-328,1882],[-217,1214],[-83,462],[-55,306],[-188,1048],[-57,321],[-102,568],[-59,333],[-63,350],[-15,82],[-127,713],[-264,1461],[-504,2790],[-611,3399],[-137,765],[-114,636],[-148,816],[-233,1281],[-80,441],[-54,301],[-76,429]],[[543586,178864],[-136,-956],[-94,-651],[-189,-2159],[-42,-495],[-129,-1503],[-62,-723],[-130,-1549],[-33,-398],[-207,-2469],[-50,-590],[-42,-501],[-37,-437],[-51,-615],[-65,-765],[-43,-520],[-69,-816],[-200,-2355],[-162,-1903],[-64,-751],[-155,-1667],[-37,-342],[-136,-2055],[-50,-769],[-63,-945],[-24,-368],[-29,-382],[-107,-1285],[-52,-630],[-42,-504],[-72,-868],[-47,-571],[-1,-14],[-103,-1239],[-79,-869],[-31,-350],[-44,-480],[-224,-2486],[-60,-664],[-65,-720],[-46,-506],[-33,-360],[-47,-531],[-33,-360],[-100,-1211],[-117,-1416],[-33,-403],[-258,-3113],[-60,-736],[-55,-664],[-356,-4150],[-7,-96],[-168,-2045],[-53,-647],[-85,-1048],[-73,-885],[-163,-2000],[-44,-536],[-31,-389],[-59,-670],[-83,-939],[-116,-1316],[-146,-1652],[-94,-1073],[-33,-379],[-39,-449],[-169,-1956],[-45,-537],[-7,-89],[-46,-521],[-58,-670],[-65,-753],[-140,-1628],[-87,-1008],[-151,-1750],[-45,-554],[-97,-1161],[-150,-1804],[-123,-1485],[-56,-671],[-59,-713],[-134,-1618],[-79,-945],[-158,-1907],[-86,-1061],[-36,-432],[-59,-706],[-119,-1429],[-129,-1536],[-116,-1300],[-153,-1714],[-37,-413],[-44,-486],[-33,-370],[-38,-421],[-171,-1907],[-159,-1795],[-103,-1155],[-77,-838],[-7,-85],[-63,-780],[-52,-648],[-321,-3967],[-100,-1240],[-84,-999],[-235,-2777],[-64,-749],[-30,-352],[-1,-8],[-35,-410],[-108,-1275],[-70,-832],[-143,-1676],[-39,-464],[-75,-885],[-39,-462],[-110,-1292],[-46,-545],[-42,-492],[-47,-557],[-51,-614],[-306,-3675],[-7,-78],[-145,-1745],[-34,-400],[-47,-558],[-185,-2215],[-56,-680],[-39,-470],[-37,-449],[-33,-393],[-32,-396],[-103,-1296],[-173,-2176],[-63,-788],[-28,-350],[-31,-382],[-70,-880],[-51,-641],[-124,-1544],[-196,-2210],[-16,-192],[-66,-750],[-100,-1133],[-33,-375],[-34,-384],[-48,-543],[-191,-2172],[-127,-1430],[-29,-333],[-50,-600],[-29,-336],[-84,-908],[-37,-457],[-86,-1058],[-177,-2154],[-130,-1553],[-121,-1440],[-71,-853],[-142,-1689],[-41,-493],[-48,-566],[-89,-1066],[-85,-1008],[-66,-786],[-5,-58],[-200,-2386],[-37,-434],[-7,-88],[-29,-348],[-77,-923],[-66,-850],[-226,-2627],[-16,-190],[-14,-160],[-87,-1045],[-220,-2617],[-103,-1235],[-26,-300],[-26,-310]],[[528438,308],[0,-6],[-702,-33],[-1183,-64],[-207,0],[-200,-9],[-137,-6],[-693,-32],[-577,-27],[-906,6],[-672,0],[-16,0],[-138,0],[-296,0],[-273,0],[-404,13],[-628,21],[-272,0],[-854,0],[-807,0],[-118,0],[-373,0],[-1003,0],[-498,0],[-572,15],[-720,19],[-558,0],[-889,0],[-449,0],[-565,0]],[[513728,205],[-83,376],[-64,428],[-57,325],[-300,630],[-221,557],[-74,176],[-70,220],[166,592],[194,690],[126,626],[105,518],[200,989],[-59,788],[-291,-254],[131,687],[221,-360],[725,980],[88,122],[119,159],[133,179],[-2,21],[-32,358],[305,421],[-199,698],[-158,-241],[-250,960],[311,470],[51,-158],[-126,-217],[94,-384],[43,62],[-29,121],[124,166],[99,-279],[129,182],[175,-459],[33,57],[64,-174],[-144,-297],[54,-126],[189,344],[125,-136],[80,-224],[11,164],[505,717],[87,-92],[164,580],[26,-22],[135,-139],[95,-214],[11,-67],[44,-294],[18,-358],[119,-167],[133,-194],[10,-14],[18,-27],[84,-126],[88,205],[7,17],[114,199],[119,-74],[123,-54],[69,28],[57,23],[24,-31],[89,-116],[118,-45],[129,139],[91,99],[25,27],[80,340],[16,378],[69,298],[103,224],[49,1158],[-169,1],[0,352],[-71,-1],[0,437],[0,526],[1,67],[13,427],[-214,7],[-379,-118],[-261,159],[-490,-1],[-40,0],[-180,158],[16,184],[-112,200],[-104,4],[-134,-174],[-124,-357],[-245,-15],[-266,-23],[-152,-10],[-149,-9],[-9,350],[-5,390],[-6,374],[-49,323],[-29,338],[17,262],[2,127],[-76,1],[-203,4],[5,490],[6,527],[9,863],[19,2628],[0,15],[-167,-76],[-222,-63],[-254,-61],[-134,-33],[-304,-77],[-472,-119],[-371,-102],[-151,-118],[-15,-18],[-108,-134],[-2,25],[-30,354],[-103,-95],[-57,-132],[-96,686],[-195,1514],[-92,712],[-12,167],[-535,189],[-215,76],[-38,13],[-25,-197],[-9,-71],[-16,-2],[-46,-6],[-158,-19],[-162,-349],[-21,-44],[-62,474],[-43,71],[-11,75],[-248,1739],[-108,763],[-44,6003],[-20,233],[-149,-38],[-468,519],[-151,74],[-151,-296],[-143,-373],[-99,-259],[-4,5],[-82,101],[-251,302],[-170,205],[-38,123],[-76,261],[-95,319],[-307,-56],[-254,-58],[-244,-56],[21,719],[99,32],[-157,1231],[-391,-410],[-141,379],[-43,130],[-74,71],[-121,309],[-202,-207],[71,-374],[-44,-178],[40,-108],[-21,-31],[-16,-8],[-85,-39],[-137,-55],[-99,-37],[-96,-538],[-87,-507],[-79,-458],[-65,-479],[-82,-640],[302,-289],[-90,-362],[-22,-83],[-99,-393],[54,5],[-37,-346],[-109,-266],[-244,-598],[-206,-506],[-106,-408],[83,-243],[-240,-853],[-184,-671],[-153,-554],[-13,-355],[0,-420],[0,-675],[106,-225],[-85,-252],[-188,-553],[-186,-624],[-197,-591],[-23,-81],[-30,-29],[-45,250],[-17,-140],[-52,-363],[-47,-333],[-13,-88],[-53,-376],[135,40],[79,39],[43,-34],[12,-24],[11,-101],[-10,-101],[-46,-62],[-104,-101],[-45,-120],[-37,-448],[-140,-131],[-195,-183],[-226,-221],[-168,-149],[-71,213],[-130,-76],[-137,28],[-90,309],[-60,365],[-74,393],[-183,601],[-88,233],[-124,329],[-142,575],[-72,280],[-149,-122],[-211,-187],[-167,-146],[-124,-110],[-66,321],[-53,329],[-48,297],[-166,-33],[-6,16],[-368,508],[-289,390],[-105,110],[-94,0],[-67,-16],[-108,-24],[-27,-39],[-189,-141],[-40,15],[-145,133],[-121,172],[-276,338],[-74,92],[-560,562],[-107,-55],[-31,-55],[-40,-276],[-20,-139],[-624,226],[-43,15],[-7,-39],[-82,-54],[-12,-9],[-1,1],[-33,15],[-5,7],[-197,259],[-128,305],[-81,93],[-13,16],[-566,-166],[-83,-36],[-20,-9],[-42,-18],[-163,-637],[-75,-295],[-21,-12],[-6,-3],[-21,54],[-27,376],[-47,133],[-366,88],[-22,5],[-30,7],[-89,-150],[-8,-14],[-6,6],[-298,340],[-508,579],[-37,-2],[-30,79],[-127,341],[-25,-47],[-41,-74],[-167,-263],[-132,-269],[-130,-263],[-138,-56],[-133,-66],[-134,-328],[-109,-339],[-99,-307],[-92,-216],[-86,0],[3,-353],[2,-358],[-23,-616],[19,-418],[2,-299],[-22,0],[-708,4],[-70,-645],[-4,-29],[-70,-290],[355,-804],[153,-251],[248,-406],[293,-528],[92,-862],[137,423],[157,-200],[221,-214],[184,-178],[151,-146],[244,-186],[-186,-262],[-53,-262],[96,-112],[57,-22],[83,-71],[33,-42],[45,-10],[87,-241],[94,-299],[75,-381],[72,-303],[76,-276],[69,-319],[107,-328],[49,-210],[40,-172],[116,-118],[-50,-259],[370,-683],[355,688],[300,443],[450,167],[312,-6],[30,-1],[258,-103],[178,-277],[296,-461],[19,-29],[220,-343],[175,-191],[130,-141],[11,-12],[508,-161],[12,-4],[2,-2],[718,-735],[33,-42],[9,-28],[-38,-266],[-71,-518],[-130,-275],[-7,-123],[-33,-466],[-55,-780],[-66,-395],[-93,-568],[-59,-408],[-62,-428],[-49,-153],[-275,483],[-225,-509],[-200,-455],[-187,-425],[-214,-487],[-88,-1411],[-23,-370],[-33,-504],[-26,-428],[-35,-434],[399,-1281],[58,-186],[72,-266],[87,-320],[-112,-583],[-91,-473],[-48,-248]],[[498612,23],[-125,0],[-607,2],[-67,0],[-131,2],[-528,-4],[-860,-4],[-84,-1],[-376,-5],[-279,-1],[-37,0],[-78,0],[-168,18],[-167,38],[-918,-34],[-7,0],[-332,0],[-3,-22],[-450,-10],[-63,-1],[-113,-1],[-238,0],[-82,0],[-397,15],[-516,19],[-2028,34],[-154,0],[-237,0],[-433,0],[-150,2],[-141,2],[-1292,31],[-616,0],[-218,9],[-221,25],[-229,0],[-167,3],[-254,3],[-832,28],[-1767,68],[-609,16],[-57,-7],[-25,-4],[-222,29],[-803,0],[-387,17],[-339,9],[-356,4],[-47,5],[-159,18],[-398,-45],[-61,-8],[-486,35],[-427,0],[-1198,102],[-38,2],[-1527,67],[-2,-1],[-271,-102],[-199,0],[-97,0],[-170,-21],[-252,-5],[-479,26],[-368,0],[-166,0],[-1636,34],[-142,-25],[-1281,7],[-1449,18]],[[469596,410],[296,3624],[38,460],[47,572],[75,927],[126,1544],[52,631],[140,1708],[51,632],[32,389],[77,939],[69,841],[273,3348],[58,713],[240,2937],[42,512],[28,341],[72,879],[137,1695],[28,347],[34,406],[56,674],[70,868],[146,1774],[71,868],[47,575],[11,141],[40,492],[66,816],[56,689],[39,471],[243,3004],[30,385],[96,1162],[120,1452],[12,138],[206,2501],[192,2319],[75,899],[150,1801],[87,1044],[187,2240],[62,745],[34,414],[160,1920],[53,634],[222,2672],[39,476],[188,2312],[32,402],[124,1520],[150,1851],[28,346],[39,483],[49,600],[27,333],[8,98],[27,335],[85,1053],[45,550],[124,1520],[63,779],[158,1964],[149,1825],[42,520],[36,442],[69,838],[138,1700],[70,859],[169,2073],[73,884],[150,1840],[133,1624],[93,1147],[4,52],[74,904],[56,680],[19,237],[47,579],[55,671],[62,759],[53,651],[101,1230],[66,810],[51,619],[65,794],[49,594],[68,834],[126,1547],[55,675],[33,398],[78,950],[38,466],[32,397],[88,1078],[33,406],[109,1320],[64,784],[70,813],[66,800],[61,731],[157,1906],[265,3202]],[[407862,113280],[-266,-69],[-186,-63],[-32,-478],[-168,-116],[-125,-31],[-524,27],[-136,-34],[-147,8],[-114,148],[-218,104],[-201,11],[-78,-343],[-47,-362],[29,-382],[14,-377],[-84,-288],[-63,-305],[-152,-89],[-187,-4],[-401,-169],[-293,-181],[-32,-366],[-124,-63],[-180,124],[-245,118],[-86,-255],[-56,-373],[-29,-375],[-193,-218],[-124,142],[-81,318],[-97,472],[-118,-48],[-225,-76],[-84,-254],[-138,152],[-77,-327],[-70,-334],[-146,-30],[-160,-106],[-497,-238],[-68,327],[-100,-245],[-304,-1100],[3,-356],[67,-382],[-102,-329],[-139,-43],[-85,-259],[6,-436],[-138,-20],[8,-381],[-21,-424],[-128,86],[-97,-214],[-128,-145],[-131,-239],[-121,50],[-116,-186],[-86,-384],[-120,-159],[-149,-195],[-141,-140],[-85,-279],[-81,325],[-133,114],[-67,58],[-238,163],[-217,-245],[-415,61],[-270,-49],[0,-1],[-166,-379],[-143,-259],[-84,-310],[-36,-133],[-34,-516],[-3,-460],[-153,-102],[-216,-124],[-205,-117],[-109,-211],[-36,-367],[-75,-315],[95,-294],[4,-26],[44,-293],[-109,-272],[-98,-274],[-118,112],[-7,7],[-128,132],[-286,169],[-225,146],[-199,145],[-158,-77],[-186,71],[-140,125],[-151,96],[-136,-136],[-122,-262],[-76,-294],[-27,-83],[-71,-227],[65,-296],[139,-246],[102,-406],[7,-848],[126,-307],[53,-327],[21,-438],[-13,-590],[-83,-266],[-90,-668],[-162,-554],[-14,-378],[16,-443],[-158,-209],[-75,-296],[-53,2],[-77,3],[-219,-50],[-96,-305],[-4,-350],[-7,-110],[-22,-348],[-143,-157],[-141,-146],[-168,-157],[-113,-252],[-112,-209],[-300,-50],[-226,-224],[-61,-381],[-91,-288],[-326,239],[-31,39],[-88,111],[-133,-102],[-165,-209],[-15,-12],[-118,-100],[-282,-34],[-173,340],[-160,184],[-121,-111],[-159,-200],[-223,-352],[-72,-243],[-41,-137],[-139,-536],[-190,-298],[-130,-73],[-133,-79],[-63,-28],[-93,-40],[-115,-232],[-13,-209],[-15,-238],[-121,-539],[-42,-535],[-112,-125],[-174,-85],[24,-828],[89,-267],[157,-276],[103,-219],[111,-326],[94,-269],[89,-497],[-12,-375],[-115,-334],[-196,-192],[-202,-260],[-127,-258],[-103,-309],[28,-372],[-75,-373],[48,-627],[133,-382],[315,-409],[21,-584],[6,-587],[-436,-528],[-117,-164],[-138,-332],[-87,-288],[-156,-329],[-113,-115],[-116,-334],[-28,-533],[41,-335],[-19,-562],[-6,-466],[-12,-413],[-56,-318],[126,-144],[21,-339],[-36,-411],[27,-360],[108,-475],[176,-386],[161,-404],[-63,-302],[-241,-487],[112,-710],[-132,-127],[-332,-496],[-118,-22],[-133,142],[-148,270],[-21,26],[-137,173],[-150,-35],[-93,-267],[-16,-64],[-58,-238],[-380,46],[-11,-9],[-117,-103],[-155,-172],[-129,74],[-124,104],[-146,206],[-128,-52],[-201,-34],[-124,-27],[-120,-63],[-153,464],[-136,-104],[-125,-24],[-147,80],[-133,182],[-127,-98],[-151,-188],[-143,-49],[-167,44],[-119,28],[-129,277],[-94,349],[-166,102],[-211,115],[-139,105],[-207,196],[-197,184],[-127,119],[-161,66],[-386,-780],[-134,-74],[-154,-143],[-114,-259],[-214,-537],[-55,-304],[-351,-876],[-119,16],[-177,-96],[-8,-348],[91,-264],[115,-268],[122,-380],[115,-245],[122,-267],[53,-130],[40,-97],[18,-391],[-12,-426],[-71,-495],[-131,-91],[-139,105],[-112,-253],[14,-458],[-101,-250],[-131,-104],[-125,-149],[-162,-185],[-134,-293],[2,-433],[-24,-495],[-21,-395],[-104,-1136],[-113,-187],[20,-1218],[-47,-329],[31,-369],[-32,-366],[11,-410]],[[380739,57418],[-101,409],[-165,620],[-103,384],[-490,1807],[-207,757],[-156,607],[-12,48],[-67,258],[-772,2879],[-96,353],[-98,373],[-175,667],[-86,321],[-295,1105],[-316,1181],[-78,291],[-382,1430],[-150,645],[-33,118],[-62,218],[-84,320],[-294,992],[-1247,4728],[-482,1825],[-249,946],[-74,277],[-844,3200],[-821,3111],[-981,3719],[-98,378],[-87,332],[-250,947],[-79,298],[-177,670],[-1704,6466],[-879,3328],[-13,50],[-338,1286],[-111,415],[-880,3340],[-256,970],[-233,885],[-221,840],[-87,333],[-568,2179],[-150,575],[-79,302],[-1,0],[-518,1970],[-338,1285],[-73,276],[-120,458],[-377,1432],[-670,2543],[-77,292],[-349,1326],[-883,3369],[-247,940],[-256,976],[-73,280],[-138,527],[-507,1940],[-379,1457]],[[672515,164772],[0,-7],[-17,-520],[-61,-1908],[-77,-2398],[-41,-1263],[-52,-1632],[-75,-1789],[-2,-52],[-84,-2479],[-25,-755],[-27,-902],[-31,-937],[-41,-858],[-31,-1230],[-24,-570],[-71,-2038],[-72,-2145],[-92,-2717],[-114,-3404],[-68,-2021],[-73,-2176],[-24,-698],[-16,-444],[-27,-707],[-72,-2147],[-1,-29],[-11,-337],[-20,-603],[-24,-730],[-24,-708],[-1,-38],[-34,-1023],[-31,-889],[-36,-1074],[-81,-2430],[-30,-913],[-36,-1082],[-12,-343],[-67,-2020],[-82,-2444],[-9,-341],[0,-7],[-32,-977],[-142,-4320],[-30,-913],[-25,-698],[-68,-1909],[-37,-1045],[-69,-1941],[-32,-531],[-13,-1163],[-106,-3295],[-13,-406],[-35,-1130],[-40,-411],[-14,-914],[-209,-6526],[-71,-2184],[-66,-1568],[-17,-983],[0,-3],[-46,-1097],[0,-2],[-19,-445],[-19,-450]],[[669696,81053],[-653,32],[-5,0],[-202,180],[-226,571],[-186,368],[-1,1],[-1,3],[-125,188],[-212,259],[-253,235],[-327,290],[-73,52],[-15,11],[-1,0],[-100,23],[-91,-117],[-118,-219],[-47,-242],[-30,-227],[-14,-109],[-5,-280],[-13,-886],[-11,-49],[-29,-130],[-60,-138],[-8,-19],[-104,-211],[-7,-8],[-84,-101],[-88,-55],[-243,16],[-313,212],[0,47],[-213,532],[-387,853],[-236,454],[-145,196],[-269,286],[-4,4],[-1,6],[-3,96],[-77,187],[-398,572],[-70,70],[-8,8],[-249,126],[-91,133],[-536,931],[-121,293],[-113,273],[-6,13],[-317,501],[-1,1],[-123,124],[-140,64],[-343,156],[-142,110],[-40,31],[-314,195],[-576,259],[-39,51],[-9,12],[-9,27],[-41,113],[-44,157],[-30,234],[-17,298],[-3,10],[-31,123],[-47,116],[-3,9],[-4,5],[-381,488],[-57,23],[-135,-31],[-305,-287],[-2,-2],[-304,0],[-51,-39],[-13,-71],[0,-2],[-2,-13],[-18,-149],[10,-125],[34,-156],[0,-2],[327,-828],[60,-258],[31,-547],[20,-978],[-17,-328],[-20,-149],[-31,-102],[-47,-101],[-54,-47],[0,-1],[-6,-2],[-869,-415],[-25,-12],[-203,-39],[-199,78],[-21,13],[-269,159],[-148,117],[-49,60],[-110,136],[-340,446],[-324,320],[-30,28],[-159,144],[-12,34],[-2,6],[-634,711],[-13,16],[-83,87],[-96,101],[-557,469],[-81,23],[-202,47],[-290,156],[-22,3],[-326,52],[-125,124],[-685,682],[-148,147],[-83,75],[-450,403],[-645,577],[-4,7],[-39,56],[-409,179],[-1218,231],[-10,2],[-31,-6],[-714,-128],[-155,-118],[-2,-1],[-218,-218],[-71,8],[-3,0],[-255,213],[-15,13],[-196,242],[-111,71],[-129,31],[-60,15],[-39,0],[-96,0],[-590,249],[-132,-24],[-186,55],[-118,86],[-810,741],[-79,221],[-5,13],[-149,55],[-329,-182],[-369,-203],[-333,-317],[-38,-36],[-3,74],[0,4],[-284,829],[-264,468],[-49,61],[-8,10],[-15,-6],[-79,-26],[-85,-94],[-110,-295],[-28,-73],[-158,-337],[-37,-31],[-86,0],[-5,0],[-257,85],[-36,76],[-1,2],[-105,399],[-7,38],[-74,423],[-6,145],[-1,11],[94,462],[10,94],[-6,180],[-31,234],[-61,172],[-104,102],[-105,-1],[-111,-55],[-13,-22],[-95,-166],[-50,-44],[-11,-11],[-25,0],[-39,0],[-26,20],[-35,27],[-44,64],[-396,572],[-45,55],[-235,282],[-7,9],[-287,338],[-322,381],[-41,49],[-309,159],[-150,77],[-9,5],[-514,309],[-148,63],[-104,14],[-11,2],[-139,-23],[-2,-2],[-403,-349],[-207,33],[-137,22],[-193,256],[-26,34],[-22,35],[-147,240],[-70,163],[-11,25],[-15,72],[-52,241],[-30,211],[-186,352],[-21,-6],[-154,-48],[-3,14],[-122,534],[-44,133],[-495,1080],[-68,94],[-111,32],[-3,6],[-78,197],[-29,167],[-1,6],[-31,547],[14,673],[4,305],[-34,86],[-61,39],[-172,55],[-101,-46],[-118,-180],[-230,-31],[-109,59],[-93,51],[-227,290],[-50,133],[-40,236],[-4,22],[0,11],[0,177],[13,146],[1,10],[-1,84],[-3,308],[-1,33],[-49,968],[-17,78],[-470,357],[-6,4],[-351,212],[-50,-102],[-47,0],[-267,345],[-78,125],[-132,292],[-63,139],[-5,9],[-63,147],[-25,147],[-2,10],[-44,144],[-67,223],[-1,1],[-46,46],[-228,-67],[-63,-18],[-354,-133],[-58,55],[-33,62],[0,1],[-2,9],[-19,85],[4,328],[4,30],[43,353],[-9,131],[-1,10],[-3,8],[-54,133],[-91,141],[-7,-1],[-242,-38],[-1,0],[-212,-626],[-4,-15],[-389,-703],[-44,-8],[-3,0],[-375,485],[-47,133],[-6,-22],[-65,-228],[64,-1510],[-20,-55],[-37,0],[-3,3],[-186,209],[-95,109],[-105,-39],[-256,-351],[-54,-102],[-7,-555],[-1,-3],[-16,-99],[-30,-102],[-31,-39],[-27,-8],[-368,916],[0,2],[-4,13],[-114,384],[-318,1524],[-39,189],[-10,102],[-156,994],[-364,1142],[-328,704],[-108,102],[-921,532],[-51,-23],[-43,-123],[-1,-2],[-126,-552],[-36,-160],[-2,-4],[-72,-200],[-108,-93],[-132,-63],[-138,0],[-41,0],[-2,1],[-72,30],[-244,345],[-121,273],[-210,793],[-10,37],[-17,-100],[-3,-18],[-33,-65],[-14,-29],[-132,-17],[-307,-40],[-43,-5],[-1,0],[-363,-122],[-498,-168],[-7,-3],[-77,-36],[-102,-102],[-35,-58],[-113,-184],[-1,3],[-92,326],[-270,953],[-16,55],[0,-120],[1,-850],[-19,-103],[-2,-6],[-14,-55],[-320,-1268],[-84,-7],[-358,148],[-71,63],[-4,11],[-60,168],[-48,30],[-3,2],[-1,0],[-519,-48],[-304,-62],[-175,-87],[-34,-86],[-3,-70],[10,-55],[-7,-172],[-9,-22],[-72,-174],[-469,-994],[-54,96],[-187,335],[-158,281],[-20,47],[10,105],[0,4],[122,325],[133,356],[20,52],[-57,188],[-156,521],[-42,142],[-89,296],[-87,288],[-121,253],[-311,645],[-114,179],[-41,63],[0,1],[-62,1135],[-3,46],[-19,413],[-11,236],[30,305],[-4,71],[-27,62],[-381,195],[-112,-15],[-148,-126],[-87,-129],[-55,-82],[-17,-172],[-50,-86],[-164,-126],[-39,-30],[-419,-323],[-2,1],[-156,15],[-7,4],[-88,58],[-614,621],[-4,4],[-176,380],[-27,58],[-368,17],[-82,4],[-410,20],[-82,4],[-514,234],[-432,542],[-4,4],[-47,407],[-2,14],[-52,390],[0,3],[-217,437],[-90,109],[-1,1],[-1,3],[-408,837],[-37,77],[9,58],[45,298],[-124,191],[-125,193],[-35,55],[-284,438],[-84,-595],[-11,-76],[-56,1],[-273,3],[-35,0],[-91,141],[-10,15],[-136,258],[-59,142],[-211,507],[-542,1355],[-30,75],[-2,8],[-38,132],[-45,261],[-3,11]],[[864883,195255],[258,-1530],[70,-70],[376,-377],[301,500],[655,1054],[324,-734],[12,-2803],[368,1368],[960,-240],[-154,-1743],[320,308],[783,-2838],[863,131],[-448,-4301],[-1008,-2256],[-344,547],[-581,-1402],[-284,-1812],[-311,-58],[465,-1138],[-629,-3350],[400,-116],[205,877],[232,-20],[219,113],[211,724],[192,746],[54,1375],[313,198],[-40,1689],[619,-96],[882,1034],[-63,808],[-69,906],[332,616],[112,683],[350,-1059],[53,1094],[231,-520],[309,1203],[-111,1320],[-221,868],[486,1265],[629,-1129],[-200,2012],[223,1407],[870,-1379],[-205,-364],[403,-1231],[261,-205],[10,-785],[294,-514],[478,649],[-243,769],[-386,1124],[368,398],[286,-188],[355,598],[312,550],[432,785],[312,175],[140,-506],[61,-218],[161,490],[-33,546],[-26,435],[685,618],[82,-324],[104,-410],[217,-858],[399,-1351],[224,-2023],[97,-875],[58,-521],[-305,-1251],[-557,-3106],[-408,-2988],[-71,-1116],[-172,-996],[-460,-3570],[-187,-1444],[-367,-2205],[-102,-924],[-143,-1001],[-185,-804],[6,-1354],[-49,-801],[-49,-608],[-24,-672],[-112,-651],[-215,-1630],[-34,-609],[-173,-1147],[-180,-897],[-128,-563],[-522,-192],[-374,-342],[-166,282],[-174,428],[85,812],[-44,1043],[-98,1054],[-56,681],[369,-632],[348,-407],[429,-111],[252,824],[196,1378],[182,962],[97,1002],[84,1714],[-350,297],[-246,-30],[-390,-355],[-377,-764],[-275,-689],[-110,-1464],[-49,-100],[-196,-402],[-168,-553],[-82,-267],[-644,-693],[-41,-44],[-783,382],[-978,700],[-79,866],[-451,943],[-45,-1121],[247,-516],[-354,-1149],[-429,-1795],[-489,-646],[-515,-585],[-1463,-1196],[-536,-92],[-614,-1105],[-569,-957],[-547,-1260]],[[797037,138003],[-97,-138],[-370,-529],[-436,-625],[-4,-5],[-356,-596],[-265,-394],[-232,-332],[-361,-525],[-482,-703],[-841,-1227],[-776,-1037],[-621,-831],[-481,-644],[-140,-187],[-296,-330],[-719,-1096],[-1212,-1827],[-270,-403],[-125,-185],[-476,-727],[-152,-230],[-171,-231],[-126,-202],[-205,-304],[-904,-1466],[-564,-864],[-937,-1429],[-633,-1023],[-1548,-2381],[-146,-226],[-302,-466],[-1450,-2174],[-236,-352],[-321,-513],[-112,-166],[-313,-461],[-429,-629],[-202,-298],[-1697,-2492],[-640,-946],[-68,-100],[-22,-32],[-75,-111],[-138,-205],[-215,-309],[-129,-188],[-428,-602],[-559,-784],[-116,-159],[-12,-16],[-548,-771],[-423,-595],[-732,-1026],[-1812,-2524],[-420,-585],[-1400,-1972],[-95,-134],[-1148,-1611],[-700,-985],[-291,-406],[-1108,-1557],[-398,-558],[-958,-1331],[-277,-387],[-403,-567],[-190,-264],[-30,-41],[-1518,-2142],[-1258,-1746],[-327,-429],[-494,-649],[-184,-241],[-307,-369],[-780,-1028],[-834,-1088],[-561,-732],[-924,-1204],[-246,-319],[-2665,-3475],[-165,-216],[-147,-190],[-250,-326],[-224,-292],[-685,-893],[-125,-164],[-614,-799],[-473,-616],[-74,-97],[-590,-768],[-608,-792],[-536,-832],[-191,-248],[-1025,-1539],[-428,-642],[-719,-1071],[-646,-956],[-357,-542],[-612,-930],[-577,-876],[-1104,-1677],[-956,-1459],[-107,-165],[-135,-204],[-567,-875],[-151,-206],[-194,-303],[-432,-649],[-143,-235],[-808,-1271],[-427,-674],[-3,-4]],[[740523,57056],[-43,313],[-22,92],[-168,554],[-17,56],[-138,274],[-68,55],[-98,15],[-107,-55],[-260,-233],[-20,-18],[-121,187],[-1,2],[-47,218],[-41,-24],[-151,-86],[-118,-79],[-7,0],[-241,77],[-321,101],[-24,9],[-12,14],[-82,95],[-177,233],[-36,48],[-230,178],[-23,18],[-3,-2],[-59,65],[-159,-165],[-154,-62],[-3,3],[-60,73],[-57,141],[-4,23],[-44,251],[-40,101],[-54,32],[-344,147],[-839,-71],[-15,2],[-24,72],[-336,996],[-115,226],[-141,133],[-1170,857],[-145,55],[-755,-279],[110,1466],[152,1936],[86,1111],[101,1293],[171,2232],[137,1845],[42,534],[117,1491],[126,1617],[32,427],[75,1015],[9,118],[18,250],[9,111],[58,729],[105,1323],[47,595],[192,2461],[33,429],[51,669],[36,469],[169,2226],[72,957],[82,1071],[48,626],[72,899],[44,551],[28,347],[28,342],[64,824],[35,440],[76,944],[50,631],[38,483],[153,1910],[73,980],[33,446],[72,973],[420,5666],[113,1536],[234,3156],[67,908],[30,412],[-898,-549],[-186,-47],[-550,195],[-324,-227],[-155,-305],[-149,-181],[-98,-352],[-429,-767],[-276,-689],[-196,-367],[-197,-802],[-212,-512],[-191,-351],[-225,-254],[-458,-384],[-321,-355],[-179,-168],[-244,-15],[-178,63],[-142,8],[-365,-86],[-155,32],[-216,579],[-122,212],[-152,187],[-476,423],[-231,109],[-383,314],[-267,157],[-321,509],[-135,164],[-148,31],[-311,-78],[-348,24],[-287,86],[-162,-47],[-165,-47],[-155,118],[-193,-63],[-121,-102],[-287,-578],[-396,-649],[-158,-634],[-108,-321],[-189,-227],[-176,-39],[-466,540],[-242,413],[-163,221],[-203,516],[-60,657],[-108,266],[-141,22],[-363,-374],[-111,-173],[-138,-187],[-335,187],[-104,287],[-186,614],[-41,374],[-108,344],[-382,299],[-179,317],[-192,369],[-149,665],[-40,462],[-78,649],[-189,665],[-122,359],[-91,368],[-227,516],[-81,383],[-148,203],[-203,149],[-206,-40],[-259,-128],[-204,-161],[-114,-188],[-115,117],[-24,481],[132,599],[30,359],[-243,725],[-354,-71],[-186,-133],[-250,-274],[-230,55],[-142,164],[-118,187],[-135,141],[-111,128]],[[347974,115629],[-166,-143],[-277,-237],[-229,-198],[-125,-128],[-308,-317],[-387,-304],[-375,-324],[-130,-107],[-364,-293],[-134,-108],[-230,-185],[-741,-598],[-6,-5],[-210,-169],[-311,-251],[-23,-18],[-948,-765],[-256,-206],[-669,-540],[-302,-243],[-154,-124],[-240,-378],[-207,-418],[-250,-105],[-213,-444],[-133,-267],[-165,-94],[-304,-543],[-324,-542],[-109,-201],[-143,-141],[-134,-413],[-119,-37],[-132,27],[-173,-200],[-407,-148],[-128,-47],[-167,278],[-234,-21],[-210,-358],[-134,19],[-131,-11],[-219,-117],[-116,-99],[-185,-237],[-105,-231],[-357,-79],[-204,-54],[-253,-51],[-196,-292],[-162,-88],[-195,-386],[-143,-155],[-342,134],[-103,236],[-304,494],[-500,-323],[-337,-216],[-78,-51],[-1239,-797],[-252,-163],[-149,-100],[-267,-150],[-198,-117],[-213,-126],[-273,-163],[-239,-159],[-213,-143],[-134,-87],[-690,-450],[-299,-195],[-690,-453],[-707,-464],[-461,-298],[-948,-613],[-220,-142],[-499,-321],[-216,-132],[-637,-392],[-660,-406],[-731,-450],[-394,-242],[-120,-74],[-2,-1],[-338,-208],[-294,-180],[-32,-19],[-473,-281],[-269,-188],[-127,-93],[-184,-133],[-118,-85],[-1070,-689],[-2147,-1371],[-1046,-668],[-1900,-1258],[-764,-506],[-254,-168],[-142,513],[-71,273],[-95,240],[-154,205],[-142,68],[-166,-137],[-107,-307],[-154,-308],[-113,-280],[-101,-233],[-107,-205],[-118,-34],[-166,-205],[-119,-239],[-71,-274],[-95,-273],[-213,-308]],[[312172,90818],[-169,-189],[-175,-290],[-166,-102],[-178,205],[-142,34],[-392,-581],[-201,-171],[-143,-137],[-142,-171],[71,-410],[-71,-376],[-107,-342],[-71,-410],[-237,-137],[-119,-34],[-166,-34],[-166,-171],[-166,-102],[-166,-137],[-142,-274],[-142,-136],[-119,-513],[-95,-376],[-118,-410],[-123,-153],[-153,12],[-163,-99],[-202,-205],[-166,34],[-130,103],[-166,-68],[-226,-411],[-102,-221],[-163,-112],[-126,-179],[131,-308],[130,-103],[36,-342],[-119,-136],[-190,-69],[-95,-239],[-35,-376],[23,-410],[83,-342],[167,-308],[71,-307],[-36,-376],[-69,-320],[-73,-432],[-12,-479],[-83,-444],[-119,-342],[-35,-444],[23,-342],[24,-410],[-83,-274],[-142,-34],[-166,136],[-297,-34],[-178,34],[-106,308],[-131,137],[-130,34],[-117,-118],[-156,-224],[-190,-137],[-189,-68],[-131,0],[-178,34],[-118,0],[-190,34],[-119,69],[-154,0],[-130,-35],[-143,69],[-166,34],[-142,-205],[-142,-171],[-119,-68],[-154,-103],[-154,-34],[-131,0],[-154,0],[-142,34],[-119,103],[-142,-103],[-154,34],[-149,174],[-112,134],[-119,-34],[-71,-308],[-12,-376],[-35,-342],[-95,-239],[-142,-158],[-131,-47],[-130,0],[-119,34],[-142,171],[-119,205],[-95,205],[-130,171],[-119,-35],[-130,35],[-131,0],[-130,68],[-130,-68],[-119,0],[-119,136],[-106,274],[-83,273],[-155,205],[-130,171],[-107,206],[-142,-35],[-114,-113],[-111,-160],[-166,-103],[-131,-68],[-142,-171],[-131,-308],[-130,-171],[-71,-307],[24,-376],[-60,-308],[-130,-103],[-166,0],[-131,0],[-154,35],[-178,68],[-142,34],[-53,47],[-90,79],[-118,79],[-119,205],[-166,103],[-166,-103],[-130,0],[-154,35],[-119,34],[-142,68],[-119,34],[-130,0],[-142,-205],[-103,-323],[-52,-360],[60,-308],[59,-410],[-12,-376],[-178,-137],[-118,-34],[-143,-34],[-142,0],[-142,-171],[-119,-35],[-130,69],[-107,205],[-154,68],[-154,171],[-155,103],[-130,68],[-130,-68],[-131,34],[-140,60],[-138,8],[-220,-203],[-125,-29],[-332,18],[-139,0],[-186,251],[-172,118],[-137,-18],[-214,-69],[-124,0],[-136,69],[-166,171],[-166,205],[-119,136],[-35,372],[-1,346],[-106,274],[-265,126],[-175,-117],[-248,-136],[-129,-345],[-71,-413],[-113,-168],[-205,27],[-134,-68],[-119,34],[-154,68],[-143,-68],[-118,-171],[-71,-307],[-166,-69],[-117,166],[-108,176],[-119,137],[-131,205],[-94,342],[-131,342],[-126,17],[-147,-17],[-118,136],[-143,34],[-142,-136],[-130,-34],[-131,-69],[-142,-137],[-130,-34],[-119,34],[-119,69],[-130,-103]],[[286177,76015],[-196,1548],[-371,2942],[-546,4318],[-144,1140],[-134,772],[-86,496],[-92,530],[-604,3483],[-204,1177],[-173,995],[-146,839],[-148,855],[-80,463],[-296,1706],[-73,423],[-68,393],[-1,6],[-46,251],[-56,303],[-162,855],[-2,12],[-727,3838],[-71,374],[-346,1825],[-640,3381],[-119,630],[-210,1108],[-118,621],[-163,860],[-72,383],[-74,389],[-260,1371],[-75,486],[-509,3286],[-78,505],[-141,904],[-1,6],[-50,324],[-422,2727],[-107,368],[-21,61],[-859,2495],[-346,1004],[-87,251],[-84,244],[-457,1328],[-110,203],[-207,611],[-1813,5369],[-118,342],[-232,674],[-622,1806],[-261,760],[-396,1149],[-286,798],[-260,723]],[[596041,53723],[162,27],[59,9],[140,11],[146,-72],[163,-233],[195,-407],[209,-549],[272,-1137],[107,-459],[113,-561],[71,-553],[83,-347],[121,-508],[222,-752],[277,-1121],[141,-712],[82,-299],[261,-747],[219,-439],[309,-511],[240,-375],[206,-314],[272,-380],[219,-223],[206,-166],[247,-396],[246,-427],[143,-196],[146,-145],[302,-316],[342,-538],[689,-1034],[418,-662],[312,-523],[512,-962],[432,-808],[265,-523],[290,-396],[373,-354],[328,-280],[176,-112],[253,-161],[331,-261],[188,-232],[281,-515],[121,-360],[215,-789],[95,-288],[68,-204],[142,-462],[80,-352],[80,-454],[86,-584],[40,-355],[1,-10],[35,-318],[-9,-649],[-108,214],[-98,374],[-8,31],[-104,423],[-63,366],[-209,1041],[-98,488],[-1,4],[-86,334],[-92,307],[-141,346],[-154,298],[-149,244],[-201,177],[-178,89],[-190,16],[-160,-57],[-168,-99],[-227,-179],[-384,-80],[-511,-173],[-120,24],[-155,244],[-712,1651],[-279,976],[-61,360],[-104,402],[-153,420],[-153,376],[-149,276],[-144,203],[-158,114],[-161,97],[-270,-15],[-178,72],[-153,139],[-138,199],[-213,491],[-495,1221],[-411,921],[-109,382],[-201,168],[-173,174],[-311,263],[-323,316],[-113,156],[-132,232],[-200,637],[-317,737],[-284,903],[-259,964],[-286,1115],[-260,892],[-143,442],[-88,241],[-145,211],[-182,297],[-246,460],[-206,355],[-180,309],[-263,377],[-185,129],[-174,-24],[-423,-150],[-490,-198],[-378,-115],[-141,-53],[-349,9],[-254,29],[-148,-48],[-44,-14],[-192,-63],[-432,-260],[-129,-129],[-118,-118],[-126,-174],[-181,-249],[-116,-212],[-339,-554],[-219,-285],[-147,-130],[-77,-266],[-94,-366],[-11,-41],[-79,-289],[-114,-418],[-124,-2],[-168,90],[-127,47],[-137,-53],[-100,-290],[-57,-370],[-136,-158],[-173,-47],[-119,-160],[-86,-116],[53,-316],[107,-161],[17,-25],[202,-299],[133,-423],[-34,-168],[-96,-476],[146,-185],[15,-41],[89,-242],[8,-22],[-12,-42],[-101,-355],[21,-388],[-38,-446],[-142,-122],[-94,-237],[57,-303],[64,-426],[0,-2],[-51,-662],[-59,-176],[-95,-284],[-122,-423],[-1,-5],[-22,-285],[-4,-56],[22,-403],[-94,-357],[-116,294],[-103,142],[-17,22],[-279,-190],[-28,-391],[-1,-28],[-33,-626],[8,-644],[-27,-403],[-34,-520],[19,-355],[-4,-23],[-64,-383],[-49,-394],[-66,-342],[-180,80],[-95,-561],[105,-434],[137,-294],[214,-549],[-26,-48],[-77,-144],[-79,-105],[-210,-279],[-109,-175],[-118,-374],[-8,-23],[3,-10],[84,-280],[134,71],[90,-237],[59,-308],[59,-398],[33,-353],[1,-59],[0,-32],[3,-269],[-3,-12],[-79,-359],[-145,-12],[-78,-403],[100,-188],[110,-365],[-27,-398],[23,-345],[-13,-350],[0,-5],[18,-333],[8,-30],[55,-213],[9,-35],[-103,-230],[-93,-90],[-25,-23],[-101,-248],[2,-38],[13,-311],[111,-145],[-10,-364],[-1,-351],[-39,-340],[-18,-412],[31,-356],[-39,-339],[-42,-381],[165,-288],[-44,-320],[-289,-428],[-3,-367],[-48,-269],[-9,-46],[-167,-142],[5,-374],[25,-263],[8,-79],[-67,-304],[-87,-291],[-42,-338],[-56,-304],[74,-267],[116,-193],[131,-250],[115,-221],[77,-340],[61,-316],[4,-359],[-19,-8],[-99,-44],[-113,-141],[-34,-383],[-97,-204],[-3,-8],[-7,1],[-185,27],[-165,-94],[-49,-204],[-22,-93],[-70,-389],[94,-219],[125,-124],[112,-131],[109,-290],[-53,-326],[-98,238],[-22,11],[-101,51],[-65,-385],[90,-235],[87,-264],[87,-291],[74,-295],[27,-161],[32,-192],[-69,-303],[-14,-46],[-62,-222],[-15,-96],[-34,-232],[-90,-326],[-53,-338],[-33,-9],[-94,-26],[-131,99],[-125,-17],[-109,190],[-34,140],[-39,156],[-46,130],[-40,116],[-75,-17],[-4,0],[-47,-11],[-114,-265],[-52,-257],[-16,-78],[-12,-59],[0,-25],[8,-358],[39,-500],[37,-360],[71,-286],[5,-362],[-9,-385],[-127,68],[-110,172],[-63,306],[-38,27],[-79,56],[-125,-168],[-111,-212],[-73,-46],[-50,-31],[-62,-17],[-62,-17],[-2,-11],[-58,-293],[47,-361],[152,-60],[91,-221],[-16,-198],[-6,-70],[-6,-72],[-69,-287],[-4,-16],[-68,-279],[-13,-103],[-35,-280],[-24,-376],[-23,-424],[-17,-158],[-23,-214],[-118,-109],[-137,82],[-94,267],[-62,-336],[69,-284],[113,-216],[78,-289],[-109,-135],[-116,-90],[-111,-275],[65,-292],[78,-357],[-61,-325],[8,-42],[52,-256],[-156,-217],[-157,24],[-99,-298],[124,-62],[141,19],[152,-37],[131,26],[86,-85],[26,-26],[2,-54],[13,-323],[120,-103],[60,-95],[46,-73],[82,-275],[8,-349],[-47,-346],[-7,-17],[-89,-233],[-42,-328],[11,-374],[-118,-292]],[[585893,410],[-630,0],[-199,0],[-145,0],[-171,0],[-215,-10],[-212,-11],[-184,-13],[-616,-31],[-58,-2],[-447,30],[-279,-31],[-178,0],[-186,0],[-158,0],[-213,0],[-285,0],[-381,-26],[-119,-2],[-125,-2],[-60,-1],[-90,-1],[-28,0],[-177,4],[-165,4],[-671,22],[-66,2],[-169,0],[-335,0],[-814,-15],[-2,15],[-533,30],[-235,12],[-572,26],[-142,0],[-403,0],[-618,-28],[-134,-1],[-354,29],[-125,0],[-465,0],[-308,0],[-273,34],[-450,0],[-504,0],[-706,0],[-308,0],[-973,0],[-1174,0],[-664,0],[-3,0],[-124,0],[-232,-9],[-706,5],[-878,-5],[-612,-2],[-940,-10],[-6,0],[-156,1],[-906,-5],[-334,-9],[-212,0],[-48,0],[-7,2],[-207,32],[-380,0],[-522,0],[-382,0],[-334,4],[-147,-4],[-208,9],[-119,1],[-316,25],[-249,0],[-278,-15],[-171,-11],[-345,26],[-368,0],[-27,0],[-643,0],[-6,0],[-427,-19],[-343,-7],[-67,3],[-83,4],[-194,19],[-71,0],[-676,0],[-143,0],[-249,0],[-616,0],[-522,0],[-285,0],[-533,0],[-332,0],[-202,0],[-569,0],[-783,0],[-740,-29],[-256,-6],[-315,0],[-384,-5],[-249,0],[-599,0],[-248,0],[-544,0],[-893,0],[-280,0],[-452,1],[-918,1],[-737,-2],[-497,0],[-354,0],[-167,-4],[-1060,-36],[-629,-21],[-52,-2],[-183,-6],[-304,-10],[-192,-6],[-467,-16],[-429,-14],[-680,-22],[-204,0],[-660,0],[-663,0],[-598,-12],[-286,-12],[-159,-12],[-1138,55],[-292,15],[-416,-5],[-548,-2],[-62,0],[-223,-1],[-705,-2],[-830,-3],[-159,-1],[-194,0],[-838,-3],[-354,-1],[-153,-10],[-439,0],[-131,0],[-355,0],[-166,0],[-285,0],[-178,0],[-201,0],[-676,0],[-226,0],[-161,0],[-888,-7],[-12,0],[-180,-21],[-395,28],[-202,0],[-15,0],[-241,0],[-4,0],[-309,0]],[[713497,120932],[6,-1645],[4,-1269],[-6,-1130],[16,-2331],[4,-625],[6,-370],[9,-909],[3,-755],[2,-405],[8,-2854],[6,-1849],[3,-1058],[3,-660],[1,-614],[0,-370],[11,-3339],[1,-388],[2,-436],[2,-894],[2,-518],[13,-4414],[1,-420],[7,-1560],[1,-381],[4,-804],[6,-1547],[14,-3579],[4,-1211],[5,-1082],[2,-243],[5,-1345],[6,-1594],[14,-3731],[8,-1134],[2,-1036],[3,-508],[0,-6],[2,-464],[3,-812],[4,-1061],[27,-1212],[3,-4035],[10,-1605],[5,-898],[3,-2002],[11,-1174],[5,-526],[6,-712],[3,-330],[0,-21],[-427,-1892],[-908,-4022],[-423,-1845],[-256,-1122],[-291,-1288],[-133,-551],[-342,-1533],[-145,-625],[-84,-361],[-383,-1654],[-111,-480],[-89,-375],[-502,-2176],[-197,-853],[-151,-652],[-191,-825],[-255,-1101],[-432,-1880],[-311,-1355],[-214,-934],[-311,-1376],[-455,-2039],[-313,-1278],[-360,-1618],[-532,-2330],[-240,-1037],[-660,-2853],[-83,-354],[-368,-1593],[-354,-1534],[-707,-3058],[-222,-967],[-28,-119],[-452,-1963],[-200,-876],[-180,-771],[-161,-704],[-278,-1208],[-230,-999],[-133,-568],[-265,-1180],[-352,-1514],[-230,-992],[-105,-451],[-128,-553]],[[700565,1607],[-3,-12],[-609,-10],[-390,-7],[-358,-6],[-221,-3],[-308,-5],[-185,-3],[-1167,-19],[-236,-4],[-702,-11],[-15,0],[-866,-14],[-167,-3],[-538,-8],[-309,-8],[-148,0],[-519,-8],[-462,-16],[-130,0],[-386,0],[-371,-6],[-1449,-28],[-471,0],[-351,-3],[-490,-5],[-274,-2],[-134,-1],[-53,-2],[-416,-8],[-216,-9],[-97,-4],[-253,0],[-138,-3],[-153,-4],[-216,-18],[-27,-10],[-4,0],[-92,0],[-728,-6],[-540,-7],[-556,-6],[-187,-3],[-390,-4],[-404,-8],[-216,0],[-494,-6],[-127,-1],[-851,-10],[-265,-3],[-169,-2],[-171,2],[-458,20],[-131,0],[-733,-28],[-168,-6],[-497,0],[-824,-8],[-1542,-14],[-916,-10],[-304,-2],[-399,0],[-178,34],[-390,-25],[-144,-9],[-749,0],[-35,-2],[-88,-3],[-184,-2],[-1278,-10],[-1,0],[-532,-4],[-46,-2],[-572,-20],[-357,-26],[-154,0],[-344,0],[-142,0],[-178,0],[-41,0],[-355,0],[-424,-6],[-246,-4],[-58,0],[-234,-2],[-137,-1],[-198,-4],[-193,-1],[-125,-1],[-342,-2],[-517,-7],[-282,7],[-216,-8],[-270,-3],[-94,-2]],[[667467,1162],[42,1242],[0,6],[45,1559],[78,2733],[14,473],[10,359],[10,356],[71,2477],[42,1564],[15,542],[27,917],[19,643],[33,1147],[17,602],[39,1355],[94,3245],[90,2961],[25,804],[14,469],[72,2354],[57,1878],[12,363],[43,1294],[18,583],[21,690],[19,548],[14,388],[13,655],[16,844],[19,659],[12,439],[11,417],[13,460],[-5,445],[-3,485],[8,386],[21,946],[41,1861],[10,475],[26,954],[10,413],[44,1657],[19,982],[33,1777],[24,939],[49,1874],[24,905],[31,1181],[14,525],[21,711],[29,1006],[11,432],[13,393],[14,506],[11,425],[9,569],[13,486],[1,29],[21,777],[14,494],[60,1797],[21,599],[37,1131],[95,3081],[39,1265],[12,395],[16,533],[117,3756],[25,1201],[20,781],[25,966],[20,612],[24,734],[14,404],[25,780],[96,2915],[11,330],[3,75],[26,808],[9,405],[4,210],[2,454]],[[286177,76015],[-807,-103],[-222,-209],[-630,-589],[-484,-453],[-1015,-949],[-928,-869],[-373,-349],[-225,342],[-983,-447],[-379,-172],[-617,-281],[-423,-193],[-379,-172],[-1002,-477],[-1063,-506],[-44,-21],[-923,-439],[-200,-96],[-768,-366],[-789,-375],[-907,-432],[-263,-126],[-119,-102],[-285,-69],[-130,-68],[-166,-68],[-202,-137],[-213,-69],[-154,-171],[-131,-205],[-154,-273],[-142,-68],[-178,-308],[-119,-171],[-178,-239],[-166,-240],[-118,-205],[-166,-205],[-178,0],[-190,-239],[-142,-308],[-132,-209],[-176,-133],[-167,-68],[-154,-137],[-225,-205],[-205,-280],[-174,-233],[-238,-205],[-118,-68],[-107,-171],[-166,-376],[-139,-124],[-125,-185],[-104,-272],[-95,-308],[-118,-273],[-142,-171],[-124,-190],[-208,-323],[-107,-205],[-202,-154],[-166,-112],[-131,-180],[-189,-169],[-170,-123],[-205,-88],[-230,-97],[-142,-205],[-142,-103],[-332,34],[-166,-171],[-190,-102],[-202,34],[-154,68],[-130,69],[-155,136],[-237,342],[-166,103],[-179,138],[-141,-104],[-179,-193],[-141,-115],[-46,-498],[-191,-117],[-190,68],[-202,-34],[-165,0],[-143,-136],[-61,-119],[-46,-87],[-166,-102],[-130,-69],[-143,-68],[-145,-28],[-234,-41],[-213,-102],[-226,-69],[-178,-68],[-166,-68],[-178,-137],[-130,-171],[-142,-137],[-249,-102],[-131,34],[-130,0],[-131,-34],[-178,-103],[-177,-34],[-143,68],[-486,35],[-178,34],[-154,-103],[-130,-239],[-95,-444],[-95,-342],[-107,-205],[-118,-137],[-202,-137],[-142,-34],[-131,34],[-154,103],[-237,102],[-154,-34],[-273,-34],[-190,102],[-154,69],[-119,34],[-166,34],[-161,-17],[-182,-325],[-131,-34],[-119,34],[-177,-171],[-82,-260],[-167,-321],[-238,-137],[-142,-34],[-142,-68],[-131,-103],[-201,-239],[-143,-137],[-237,-102],[-126,-53],[-107,-150],[-27,-342],[23,-412],[53,-380],[64,-296],[108,-145],[143,-68],[142,-137],[121,-92],[129,-117],[179,-141],[123,-96],[432,-340],[-118,-373],[-24,-345],[-20,-362],[56,-629],[47,-342],[48,-376],[47,-376],[24,-547],[-71,-547],[-48,-410],[-24,-376],[-11,-616],[-36,-444],[-59,-410],[-83,-342],[-83,-547],[-83,-513],[-131,-478],[-95,-445],[-95,-581],[-59,-615],[-47,-342],[-143,-342],[-106,-205],[-166,-444],[-143,-411],[-106,-376],[-107,-239],[-87,-282],[-99,-382],[-182,-156],[-142,34],[-130,34],[-119,137],[-119,102],[-166,171],[-130,103],[-149,-22],[-132,-19],[-593,-85],[-312,-45],[-154,-240],[-166,-307],[-107,-171],[-154,-205],[-107,-205],[-154,-376],[-89,-240],[-89,-376],[-106,-342],[-190,-307],[-129,-93],[-120,-181],[-83,-307],[-119,-376],[-166,-206],[-120,-54],[-156,19],[-139,35],[-142,0],[-119,-68],[-123,-136],[-114,-206],[-101,-201],[-112,-209],[-190,0],[-154,34],[-119,-102],[-213,-205],[-119,-35],[-130,-34],[-119,-34],[-118,-34],[-155,-171],[-83,-376],[-47,-342],[-95,-273],[-178,-206]],[[245359,33488],[-339,-336],[-171,-167],[-292,-287],[-135,-133],[-208,-189],[-432,-392],[-259,1446],[-210,1176],[-207,1155],[-660,3709],[-138,777],[-380,2135],[-110,615],[-34,195],[-93,511],[-1021,5653],[-67,371],[-130,717],[-212,1175],[-819,4535],[-81,449],[-87,480],[-406,2243],[-174,962],[-251,1380],[-647,3545],[-103,568],[-107,583],[-142,779],[-60,330],[-285,1564],[-322,1763],[-7,37],[-133,732],[-433,2564],[-128,739],[-142,816],[-217,1254],[-70,404],[-331,1718],[-511,2658],[-189,1205],[-30,195],[-51,324],[-63,400],[-4,26],[-59,379],[-90,582],[-91,322],[-322,865],[-126,337],[-175,466],[-34,92],[-607,1627],[-149,400],[-134,357],[-94,251],[-625,1980],[-366,1157],[-704,2180],[-231,636],[-1206,3311],[-177,476],[-197,542],[-798,2727],[-213,632],[-98,292],[-520,1546],[-118,351],[-444,1278],[-133,377],[-631,1778],[-105,344],[-102,313],[-303,893],[-327,964],[-137,402],[-248,732],[-8,24],[-87,257],[-263,776],[-264,777],[-522,1523],[-4,12],[-112,328],[-170,495],[-110,322],[-589,1719],[-580,1692],[-249,666],[-180,585],[-405,1181],[-521,1521],[-322,941],[-274,799],[-729,2128],[-1549,4519]],[[800466,57080],[-6,21],[-86,292],[-565,3],[-154,-1],[-904,-2],[-308,-2],[-807,-6],[-124,-2],[-944,-824],[-194,-169],[-178,-154],[-127,-109],[-157,-83],[7,-204],[80,2],[2,-516],[-585,-3],[7,-169],[10,-1],[0,-127],[-8,-61],[-148,-329],[-10,-590],[-95,-346],[-19,-584],[113,-144],[86,-111],[45,-57],[167,-219],[89,-108],[-12,-32],[-185,-466],[21,-142],[48,-167],[0,-6],[92,-604],[-42,-436],[-89,-381],[-86,-426],[-93,-485],[37,-361],[-1,-8],[-23,-347],[87,-433],[97,-436],[85,-94],[151,-439],[368,-95],[170,-43],[522,-135],[145,-37],[361,160],[231,102],[223,-976],[-90,-221],[1,-201],[-193,-199],[27,-410],[-575,-750],[-122,-159],[-192,-251],[-133,-164],[-187,-225],[-161,-177],[-117,-81],[-23,-15],[8,-19],[69,-54],[29,-29],[14,-11],[10,-7],[38,-29],[39,-20],[126,-49],[137,-66],[47,-98],[110,-275],[134,-238],[31,-55],[121,-166],[8,-9],[107,-122],[164,-172],[209,-198],[129,-111],[282,-211],[111,-72],[46,-30],[134,21],[141,-9],[199,-98],[70,-34],[192,-214],[164,-152],[296,-359],[482,-613],[251,-318],[322,-447],[144,-155],[529,-734],[311,-431],[134,-187],[179,-248],[171,-238],[115,-160],[120,-165],[276,-386],[45,348]],[[803672,35311],[234,-784],[60,-720],[1,-105],[2,-239],[3,-361],[-2,-466],[52,-359],[90,-289],[125,-529],[74,-304],[102,-495],[-91,-330],[-109,-484],[-25,-336],[-64,-396],[-12,-72],[-110,-237],[-126,-78],[-148,-74],[-113,-227],[-1,-449],[-46,-394],[-105,-259],[-123,-116],[-94,260],[77,364],[-108,188],[-115,-106],[-466,-647],[-154,-210],[-433,-328],[-96,-254],[33,-384],[138,-302],[200,-391],[85,-262],[58,-306],[55,-436],[-11,-444],[-40,-383],[-115,-660],[-67,-300],[-167,-565],[-230,-1204],[101,-515],[76,-564],[40,-335],[62,-801],[59,-666],[32,-571],[-37,-379],[-47,-417],[-3,-500],[25,-366],[11,-625],[3,-361],[4,-528],[19,-366],[52,-515],[-64,-391],[-89,-232],[-224,-284],[-189,-42],[-301,68],[-129,164],[-156,112],[-150,-124],[-69,-507],[150,-390],[133,-121],[101,-262],[-48,-445],[-119,-72],[-180,145],[-129,71],[-305,-26],[-168,-166],[-91,-286],[-163,-956],[-5,-154],[-12,-372],[-19,-548],[32,-545],[25,-402],[-60,-383],[-150,-386],[-158,-210],[44,-374],[227,-95],[139,-145],[118,-168],[326,-662],[145,-30],[140,108],[127,-285],[144,-270],[154,26],[141,-91],[66,-317],[-20,-406]],[[801501,3876],[-78,-231],[-12,-37],[-32,-152],[-1,-5],[-8,-141],[-1,-97],[29,-370],[0,-11],[-24,-403],[-37,-518],[1,-185],[119,-618],[4,-14],[-48,-55],[-335,23],[-235,3],[-19,1],[-128,2],[-884,11],[-854,11],[-200,4],[-271,3],[-2608,40],[-375,-40],[-104,24],[-34,7],[-201,0],[-2562,0],[-136,0],[-901,6],[-157,15],[-371,47],[-432,0],[-416,4],[-212,2],[-1051,29],[-640,0],[-2656,34],[-1624,24],[-691,16],[-924,2],[-911,7],[-1222,19],[-463,0],[-486,-34],[-806,-34],[-1625,-103],[-121,-29],[-15,-4],[-172,-1],[-1506,0],[-861,0],[-775,0],[-196,106],[-673,365],[-519,281],[-534,308],[-69,-8],[-1540,-183],[-182,-15],[-830,-157],[-129,-37],[-47,-14],[-736,-236],[-35,-10],[-515,-152],[-197,-43],[-629,0],[-9,0],[-287,0],[-261,0],[-581,0],[-202,0],[-545,0],[-405,0],[-789,12],[-966,-3],[-31,1],[-146,5],[-308,19],[-154,0],[-237,0],[-142,0],[-191,0],[-1382,10],[-644,5],[-914,20],[-522,0],[-723,0],[-605,0],[-230,0]],[[756324,1402],[-121,80],[-109,132],[-1,1],[13,453],[-62,79],[-110,140],[-50,57],[-108,124],[-124,133],[20,-407],[-172,-8],[-117,47],[-159,-70],[-359,-141],[-142,-8],[-131,86],[-44,329],[-37,383],[17,485],[34,344],[-121,-469],[-95,-219],[-164,-149],[-91,352],[-128,16],[-118,203],[-121,-70],[-178,93],[-162,-133],[-131,79],[128,274],[-151,625],[40,697],[-94,211],[-131,-462],[-159,-235],[-117,399],[-41,501],[-202,110],[-174,-16],[-116,314],[-2,6],[-125,16],[-8,-120],[-18,-263],[215,-251],[20,-438],[-182,0],[-141,-94],[-215,165],[-141,-728],[60,-438],[-148,-188],[-218,-118],[-162,71],[-151,226],[-24,485],[-151,337],[-172,-110],[-158,-243],[-97,-235],[-135,-508],[-71,305],[7,383],[-141,-133],[-172,297],[-13,383],[-131,110],[-175,94],[-121,-259],[-21,353],[-74,359],[65,416],[12,437],[-151,133],[-121,-189],[-64,361],[138,532],[-179,344],[-43,328],[77,462],[-158,109],[-159,-63],[27,438],[74,408],[20,555],[-161,218],[-61,430],[64,400],[7,407],[-158,94],[77,352],[-21,524],[48,329],[70,-368],[216,165],[131,501],[97,399],[108,634],[30,783],[-121,39],[30,359],[70,282],[-202,219],[51,375],[-145,188],[108,329],[50,368],[135,313],[3,344],[-121,-243],[-138,-8],[74,337],[-20,383],[-246,8],[57,360],[-37,445],[0,493],[151,71],[27,367],[-84,501],[128,321],[-61,360],[-162,-188],[-124,344],[-145,-133],[-121,93],[-131,31],[30,360],[-162,470],[135,422],[94,305],[-115,220],[-121,-181],[-104,-375],[17,438],[-155,47],[-206,101],[-225,31],[44,368],[13,344],[-168,195],[13,368],[151,360],[-67,501],[-101,274],[209,-32],[165,-109],[100,266],[-40,485],[-202,86],[-41,438],[-134,78],[-118,-102],[-138,70],[161,322],[81,289],[-192,109],[-154,297],[-152,158],[23,383],[125,-48],[117,94],[-33,454],[-136,1],[-157,39],[-47,345],[204,179],[119,77],[105,258],[87,250],[-172,156],[-102,329],[79,415],[-116,388],[-202,528],[-128,314],[-162,-133],[-121,-39],[-226,282],[-121,0],[-7,-415],[30,-360],[-144,0],[-128,-164],[-118,-297],[-108,259],[14,383],[57,571],[4,1385],[3,438],[31,884],[-118,368],[-121,140],[-118,-140],[33,-352],[78,-274],[-138,-188],[-115,-242],[-94,493],[41,438],[-233,-125],[-175,55],[-20,360],[-94,462],[-84,446],[-68,414],[-138,32],[-13,-493],[-132,-196],[-101,219],[34,399],[-57,321],[-118,39],[-152,1],[-101,-196],[-168,329],[-232,-141],[-105,251],[7,391],[-125,243],[-192,-126],[-117,47],[-128,376],[0,509],[-74,289],[-162,-47],[-135,157],[-124,242],[-149,-187],[-64,-384],[-171,-195],[-14,727],[-131,157],[-44,-360],[-168,0],[-125,-94],[-121,-141],[-41,360],[-195,-86],[-118,-93],[-135,531],[-141,126],[-94,-415],[20,-391],[-57,-337],[-128,290],[-68,360],[-182,-321],[-222,-188],[-114,102],[16,391],[-53,446],[-155,-250],[-14,-446],[-128,-258],[88,-423],[-71,-289],[-205,297],[-132,266],[-215,-188],[-182,102],[-111,-227],[-47,-422],[-428,742],[-189,157],[-182,8],[-151,-102],[-169,-352],[-138,-86],[-134,250],[37,415],[205,62],[155,368],[-17,391],[-182,141],[-158,-102],[-114,-152],[-112,-349],[-111,-391],[-202,-164],[-131,39],[91,281],[-88,407],[-286,289],[-115,321],[-20,469],[-158,650],[-132,281],[-185,-242],[-145,203],[-168,-55],[-162,54],[-148,337],[-58,500],[165,532],[61,556],[-152,461],[-57,563],[-219,220],[-169,-149],[-43,-321],[-88,-329],[-219,-133],[-158,70],[-81,657],[-159,539],[-144,47],[-166,-258],[-259,117],[-74,281],[-108,391],[-111,-203],[24,-783],[-78,-461],[-205,672],[-142,328],[-185,16],[-105,-160],[-142,-10],[-121,99],[263,417],[828,1244],[164,238],[180,260],[911,1312],[29,42],[120,173],[137,197],[132,189],[886,1267],[782,1118],[384,549],[1105,1703],[118,181],[13,21],[132,204],[373,571],[477,734],[810,1249],[669,1032]],[[881016,100073],[-84,-361],[-113,-356],[-131,-387],[-136,-382],[-175,-553],[-143,-400],[-107,-303],[-366,-1062],[-183,-551],[-67,128],[-35,65],[-146,240],[-106,128],[-22,27],[-156,166],[-184,216],[-188,224],[-192,219],[-138,156],[-43,49],[-97,109],[-154,179],[-200,224],[-80,93],[-35,41],[-114,129],[-27,30],[-116,-146],[-83,-296],[-136,-541],[-110,-212],[-167,-241],[-90,-103],[-27,-32],[-135,-81],[-191,-88],[-78,-36],[-510,-137],[-225,-68]],[[875726,96160],[-353,2297],[-146,954]],[[875227,99411],[211,-349],[125,1284],[-21,45],[-192,427],[293,896],[170,679],[224,-207],[204,-187],[375,-120],[198,282],[470,-222],[203,-74],[285,-104],[352,-535],[358,561],[252,153],[100,61],[350,-617],[574,-196],[-72,-706],[16,-788],[228,243],[128,796],[190,322],[347,193],[340,-425],[52,-488],[29,-262]],[[888512,130288],[-160,65],[8,179],[-479,154],[-201,-1391],[-234,-165],[-148,-147],[-40,-41],[104,-575],[92,-461],[102,-553],[8,-20],[398,-898],[94,-243],[164,-425],[301,-690],[2,-3],[-740,-2350],[-507,-1610],[-166,-410],[-296,-1436],[-172,-745],[-66,-282],[88,-441],[31,-154],[225,-1010],[153,-796],[112,-581],[59,-229],[18,-67],[125,-249],[178,-355],[99,-207],[99,-208],[-14,-145],[-152,-1],[-60,-1469],[-130,-786],[-131,-240],[-34,-566],[129,-322],[178,-171],[154,-240],[237,0],[225,-307],[-11,-240],[261,-341],[147,-228],[114,-149],[142,-205],[136,-164],[113,-177],[54,-78],[-64,-790],[-15,-202],[-17,-210],[-35,-344],[-106,-659],[-121,-487],[-139,-402],[-100,-304],[-152,-462],[-16,-49],[-91,-279],[-94,-286],[-95,-290],[-103,-194],[-34,-45],[-118,-155],[-105,-169],[-42,-86],[-68,-141],[-111,-242],[-134,-441],[-84,-468],[-60,-328],[-82,-405],[-132,-654],[9,-364],[13,-495],[-123,-368],[-11,-32],[-86,-258],[-86,-261],[-166,-33],[-96,-19],[-82,-16],[-52,178],[-138,471],[-320,479],[-285,478],[-86,14],[-320,51],[-51,8]],[[885123,99856],[-306,212],[-373,152],[-131,806],[-248,582],[-589,1120],[129,245],[296,559],[-80,361],[-95,428],[-227,906],[-327,387],[155,-1148],[-76,-555],[-42,-297],[-126,-578],[-21,-56],[-200,-533],[-343,49],[-361,-83],[-392,769],[64,-896],[-284,-95],[-277,-99],[-62,-22],[-282,-56],[-300,37],[-397,237],[-444,177],[-293,95],[-206,353],[-222,-11],[-4,19],[-268,-29],[-179,22],[-340,42],[-74,-56],[-295,-88],[-366,-239],[-109,87],[-324,256],[-479,76],[-331,332],[-108,-28],[-102,-28],[-726,703],[-267,935],[-104,752],[-34,496],[-317,452],[-184,-124],[-399,374],[-499,1045],[-63,29],[-130,335],[-171,1005],[-77,450],[-342,10],[-814,1469],[408,1053],[-248,564],[-346,530],[-370,253],[-239,371],[11,1067],[230,847],[260,656],[202,1213],[622,306],[96,1073],[48,957],[91,1330],[77,1610],[118,906],[312,-122],[168,-1097],[437,201],[-217,591],[352,617],[42,-20],[442,-220],[447,-752],[367,-304],[-48,-843],[-111,-1578],[353,-965],[336,65],[350,85],[269,-477],[167,-744],[274,348],[38,-88],[371,-873],[204,-1294],[132,-1051],[-127,-1101],[265,-342],[131,1282],[344,520],[-413,607],[-94,996],[159,1131],[-246,112],[213,1218],[-38,1071],[291,45],[82,606],[195,325],[-123,1162],[-265,-646],[-219,-577],[-369,-1148],[-129,-806],[-240,-522],[-18,58],[-262,834],[-325,-3],[103,1033],[-385,-470],[-224,-147],[-224,492],[119,795],[216,1327],[-56,1206],[-193,137],[-211,-249],[-414,405],[-836,1225],[-77,738],[-169,-121],[-10,-825],[-138,-278],[-168,-335],[-702,911],[-586,786],[11,631],[-169,172],[-156,-383],[-95,-463],[-272,-2653],[-274,-124],[-92,1780],[-223,2065],[-552,-333],[-147,1700],[574,224],[-59,560],[77,2532],[-59,354],[-481,199],[24,740],[6,199],[138,4256],[10,308],[15,448],[12,378],[18,535],[10,305],[309,48],[82,1145],[119,1572],[14,1334],[422,44],[267,-319],[97,-1145],[558,-1247],[211,-67],[766,0],[818,384],[99,-2025],[975,-993],[-136,-521],[180,-414],[549,-141],[-89,1008],[421,684],[1376,1025],[-16,838],[58,2832],[-163,401],[-279,-186],[-365,382],[-362,41],[-608,-144],[-426,-131],[-291,360],[-452,-201],[-298,355],[182,771],[60,36],[359,213],[656,-63],[439,137],[455,-68],[392,-156],[339,-323],[347,-346],[500,-553],[287,-949],[690,-531],[426,-674],[780,-1260],[836,-1567],[333,-615],[556,-1026],[759,-1094],[409,-410],[409,-410],[409,-347],[409,-337],[393,-308],[401,-306],[274,-206],[272,-171],[269,-210],[265,-166],[261,-171],[806,-547],[543,-272],[430,-207],[311,-369],[-27,-1682],[46,-562],[-375,-178]],[[914107,6300],[337,501],[1,1],[122,-969],[376,251],[166,-530],[304,41],[-38,1156],[404,280],[317,37],[341,-369],[75,-605],[117,370],[128,406],[130,-1128],[-158,-592],[550,11],[47,1094],[16,1105],[3,-1],[319,-104],[343,-29],[420,205],[187,287],[5,7],[142,1504],[356,222],[379,-1384],[95,-1573],[-172,-718],[-148,-854],[76,-1203],[139,-335],[-131,0],[-699,34],[-264,-6],[-2713,-62],[-405,-1],[-34,-16],[-785,-17],[-10,1013],[-19,548],[-5,139],[-190,244],[-30,38],[-94,1002]],[[914107,6300],[-1,0],[-290,-319],[29,-1003],[-90,48],[-579,306],[-149,755],[-377,589],[-411,-421],[13,790],[7,428],[160,1072],[353,-889],[252,265],[309,-404],[-246,1353],[-168,929],[470,353],[103,143],[389,541],[243,-718],[67,-658],[16,-163],[281,-77],[40,-493],[40,-476],[-393,-466],[-101,-378],[-116,-434],[148,-670],[1,-3]],[[919496,19245],[-260,-507],[-139,1612],[-40,844],[285,-308],[391,-718],[107,-752],[-344,-171]],[[918318,31403],[-89,-657],[362,179],[-17,-196],[-50,-579],[-73,-444],[-41,-253],[241,-1038],[0,-1263],[-198,297],[-285,62],[-308,41],[-434,-224],[-13,727],[-19,1018],[-329,-325],[-340,904],[-93,247],[-115,470],[-270,1106],[434,56],[159,20],[24,-683],[109,15],[137,18],[-24,576],[-29,701],[-348,602],[-237,412],[7,189],[31,808],[292,898],[429,-493],[311,-778],[113,-356],[145,-461],[273,-354],[195,-816],[69,-289],[-19,-137]],[[918724,38709],[-1303,-1489],[-418,1205],[-104,1458],[-93,1307],[142,3747],[55,1429],[1328,212],[368,-2694],[17,-3473],[8,-1702]],[[895601,3350],[-25,786],[8,823],[-19,5585],[-11,2707],[23,1960],[111,1065],[-37,2308],[-61,7587],[-2,5734],[12,3973],[48,6829],[0,22],[116,77],[454,299],[566,349],[370,229],[783,482],[237,171],[95,991],[534,445],[166,68],[178,68],[747,274],[261,410],[510,547],[332,-478],[344,410],[443,-266],[126,-76],[427,2769],[-202,1607],[-107,717],[-154,513],[-391,923],[-285,923],[-593,2017],[-126,1534],[-52,620],[-59,342],[-137,68],[-551,274],[-118,34],[-333,279],[-492,412],[-195,163],[-107,240],[-19,50],[-111,291],[-62,158],[-123,318],[-2104,5404],[-311,812],[-303,791],[-445,1162],[-1738,4534],[-85,222],[-56,22],[-964,388],[-50,27],[-664,357],[-181,97],[-491,208],[-131,55],[-622,262],[-917,432],[-181,78],[-213,86],[-281,168],[-392,144],[-240,342],[-794,742],[-148,138],[-839,787],[-4,29],[-1100,8360],[-1,8],[-77,536],[-61,510],[-87,649],[-151,1124],[-34,378],[-104,662],[-54,336],[-60,425],[-61,538],[-19,142],[-49,378],[-69,496],[-66,462],[-69,371],[-68,332],[-93,669],[-82,639],[-13,368],[-124,660],[-5,501],[-85,372],[-101,512],[6,412],[-59,444],[-87,714],[-64,430],[-27,497],[233,826]],[[883335,101019],[407,-304],[294,-743],[396,-524],[266,-644],[271,672],[154,380]],[[888512,130288],[-82,-1350],[39,-1108],[-317,-408],[485,-591],[238,565],[20,47],[281,355],[-39,-746],[190,61],[202,291],[663,-205],[440,-136],[48,1196],[-731,292],[-716,187],[47,649],[214,464],[-143,1758],[-83,1254],[214,182],[249,-273],[1162,-753],[2668,-1333],[304,-627],[215,195],[387,-462],[282,-313],[41,-44],[1054,-1117],[1115,-915],[1334,-1180],[526,-624],[-28,-167],[-109,-666],[130,-945],[145,-792],[-179,-793],[-261,389],[-126,559],[-379,250],[-343,215],[345,-1109],[208,-776],[-811,-1865],[44,878],[-259,-227],[-198,-470],[-298,-571],[-284,-333],[-368,174],[234,-1350],[-274,-99],[82,-742],[-360,76],[17,-825],[290,-172],[-95,-640],[240,-56],[164,787],[295,96],[272,-434],[8,-922],[-163,-652],[380,-458],[-7,-791],[-342,-191],[-122,-739],[-189,-335],[-295,-865],[-314,701],[-58,-1206],[-249,-459],[19,-768],[265,636],[242,457],[175,-675],[-368,-801],[-252,-521],[-331,-176],[68,-1026],[288,469],[253,356],[379,337],[3,-769],[255,634],[307,166],[13,1327],[-309,759],[304,12],[213,384],[274,901],[66,866],[268,-623],[273,-163],[214,1308],[-455,-334],[-121,849],[29,912],[-292,-4],[72,1645],[-238,752],[420,271],[231,310],[-174,485],[213,432],[494,1766],[317,-328],[243,-337],[310,-337],[324,-924],[731,-462],[478,-522],[419,-1128],[268,-775],[292,-726],[-449,-442],[-244,494],[-90,-819],[363,-985],[-231,-359],[140,-727],[328,-493],[-138,-1354],[-132,-1057],[382,716],[231,-435],[-16,-1158],[514,-822],[380,44],[355,434],[-340,708],[-302,-292],[-168,372],[-130,970],[-33,1409],[-90,1340],[-249,442],[-61,699],[302,177],[296,-285],[249,-262],[-58,-605],[283,297],[86,565],[-76,990],[-246,518],[-131,807],[63,1215],[242,309],[147,772],[-282,-35],[-354,-414],[-155,-602],[-147,513],[281,1513],[241,-231],[181,564],[-157,482],[-286,553],[198,638],[-335,217],[-193,683],[-260,-591],[60,-871],[-322,-343],[-374,868],[-256,301],[152,1232],[-21,906],[-276,-830],[-207,-697],[-303,63],[-162,1287],[32,1026],[-321,880],[91,344],[262,995],[365,537],[1690,972],[732,418],[340,273],[739,1004],[500,1047],[372,1049],[303,646],[475,1183],[648,240],[396,47],[344,15],[289,-55],[1280,-401],[297,-239],[438,-342],[619,-891],[722,-1502],[153,-953],[187,-1165],[164,-1219],[120,-1119],[91,-898],[68,-740],[69,-512],[46,-796],[73,-805],[63,-639],[80,-882],[82,-992],[79,-883],[405,-3996],[158,-1242],[63,-634],[124,-1113],[82,-773],[83,-887],[139,-1528],[121,-1225],[124,-1343],[70,-679],[76,-921],[140,-1029],[21,-716],[49,-520],[124,-1034],[71,-1118],[-31,-1162],[198,-1318],[194,-2437],[71,-1094],[95,-1094],[237,-2427],[75,-688],[1574,-14421],[676,-4718],[360,-2605],[242,-1758],[429,-3190],[226,-1711],[106,-786],[369,-2957],[164,-994],[100,-914],[500,-2997],[124,-992],[178,-1128],[878,-5454],[956,-4948],[233,-1287],[1489,-9044],[1232,-9820],[712,-5676],[115,-1421],[694,-9524],[-257,0],[-139,0],[-136,0],[-148,0],[-136,0],[-187,0],[-282,0],[-221,0],[-197,0],[-538,0],[-703,0],[614,324],[223,803],[-276,35],[-129,-36],[-110,-31],[-188,-343],[-25,286],[-44,500],[-417,205],[-332,-547],[-222,351],[-16,25],[-49,1587],[199,882],[-205,306],[-105,165],[-65,103],[127,456],[77,182],[141,329],[457,-1206],[615,-667],[-228,634],[-477,1332],[-135,1076],[-25,205],[337,-299],[113,-262],[125,-293],[267,-360],[442,-595],[-11,304],[-22,634],[-127,375],[-41,120],[156,975],[-224,1079],[-68,332],[-245,1691],[-35,117],[-211,712],[-213,222],[-238,701],[427,444],[218,587],[417,882],[30,64],[-264,1074],[-353,-111],[6,786],[130,906],[-203,554],[-307,-170],[-207,402],[157,932],[56,999],[-273,559],[-521,706],[-321,69],[-88,881],[-291,42],[95,1196],[-209,441],[-273,578],[343,1305],[394,643],[-80,460],[-40,236],[-420,131],[-371,217],[-230,1919],[-123,316],[-117,303],[-24,1090],[-94,1464],[24,1395],[-22,614],[-49,1327],[48,1294],[95,851],[211,679],[45,40],[207,179],[-209,514],[-267,746],[-142,181],[-106,133],[270,810],[-107,1011],[-204,-78],[-938,5392],[-405,1572],[-418,4111],[-836,4112],[-541,780],[-47,8],[-839,134],[-442,-1985],[-566,0],[-394,-430],[-493,-537],[-23,-26],[0,-1134],[271,-1205],[541,-780],[910,0],[516,0],[0,-2127],[-590,-1435],[-197,-479],[-787,-780],[-369,-2197],[-639,-2198],[-49,-426],[49,-992],[418,-496],[566,-1489],[189,-931],[56,-274],[517,-1719],[-27,-1112],[-510,-397],[-308,-50],[-36,1002],[-12,362],[-107,213],[-143,285],[-78,1142],[-305,-600],[-262,-390],[-119,-221],[-203,-374],[-259,-306],[-69,-80],[-215,141],[106,-1212],[141,-1268],[52,-472],[-498,-591],[-6,-74],[-95,-1082],[-47,-317],[-105,-700],[-342,81],[-674,-1402],[37,-98],[256,-675],[278,-773],[-5,-151],[-12,-377],[-19,-619],[95,-373],[76,-292],[-188,-1225],[-33,-215],[-6,-206],[-23,-793],[46,-267],[126,-732],[261,-794],[-365,-452],[-301,-876],[58,-1232],[345,-667],[-30,-773],[-16,-404],[26,-506],[30,-593],[54,-252],[202,-932],[-157,-596],[-74,-284],[486,-1194],[92,-1046],[-568,-1732],[-225,-652],[-509,-2023],[-13,-786],[-12,-789],[96,-1021],[299,-1020],[28,-424],[18,-276],[20,-304],[160,-1395],[262,-254],[270,-543],[353,-509],[-330,0],[-1038,-23],[-515,-11],[-801,0],[-8,0],[-165,4],[-192,6],[-99,5],[-324,19],[-356,-1],[-93,690],[-105,780],[368,1368],[-89,683],[-40,290],[-122,873],[-161,637],[-3,12],[-211,319],[-246,125],[-255,34],[-199,777],[-530,2061],[-1103,307],[-118,1060],[-281,1128],[-148,838],[-9,53],[-317,76],[-72,963],[-24,239],[-91,939],[-357,479],[-340,245],[-348,292],[-217,303],[-166,233],[40,573],[30,432],[78,1223],[313,1088],[-95,102],[-102,110],[-92,99],[-267,-949],[-180,-638],[-47,-1333],[-95,-719],[-30,-231],[-13,-96],[393,-734],[219,-408],[380,-273],[227,-41],[57,-10],[5,-578],[7,-773],[12,-1333],[178,-1265],[46,-359],[41,-313],[24,-237],[73,-715],[413,-267],[18,-736],[10,-415],[61,-651],[120,-1298],[-104,-701],[169,-1042],[232,-240],[432,-187],[92,-152],[187,-310],[190,-427],[-83,-701],[-184,-829],[-99,-437],[-140,-2],[-163,-3],[-464,-9],[-537,-18],[-484,0],[-121,-1],[-939,-1],[-484,0],[-954,-1],[-491,0],[-746,0],[-976,1],[-248,0],[-221,0],[-189,2],[-697,10],[-124,2],[-346,22],[-724,0],[-284,0],[-166,-19],[-131,-15],[-608,0],[-70,-1],[0,1]],[[380739,57418],[200,-392],[204,-51],[157,-8],[142,-70],[141,-207],[163,-312],[89,-244],[63,-485],[10,-361],[65,-463],[-61,-349],[-118,-77],[-106,-167],[-120,-312],[-78,-385],[-15,-155],[-27,-270],[-3,-348],[-35,-368],[-211,-258],[-5,-348],[35,-433],[1,-351],[-8,-632],[-78,-278],[-98,-379],[-33,-368],[-68,-380],[-46,-199],[-36,-153],[-69,-547],[3,-25],[62,-463],[-48,-382],[-83,-255],[-115,-221],[-29,-365],[-24,-412],[-8,-486],[-68,-305],[-123,-130],[-111,-90],[-28,-23],[-114,-128],[-63,-363],[-83,-269],[-164,-199],[-121,-192],[-101,-182],[-398,-236],[-158,-45],[-54,-329],[-32,-112],[-52,-184],[-94,-235],[-142,37],[-105,133],[-5,6],[-173,192],[-106,-171],[-93,-265],[0,-1],[-86,-460],[-98,-275],[-111,-58],[-44,-23],[-56,-354],[45,-403],[-16,-370],[-78,-435],[23,-405],[92,-232],[132,-267],[23,-360],[-22,-352],[-36,-431],[-73,-396],[-136,83],[-97,376],[-93,261],[-198,-47],[-139,-30],[-124,116],[-86,279],[-125,206],[-115,171],[-154,154],[-11,38],[-64,229],[-167,222],[-125,-126],[-19,-62],[-68,-219],[-135,-177],[-95,-374],[-64,-371],[-133,-172],[-121,-51],[-122,-124],[-139,-64],[-119,-72],[-108,-271],[-157,-252],[-134,-288],[-236,287],[-138,-116],[-68,-349],[-85,-257],[-118,-173],[-296,-274],[-119,-171],[-102,-250],[-93,-239],[-124,-105],[-160,324],[-117,285],[-136,-39],[-74,-84],[-39,-43],[-150,-139],[-91,-263],[-110,-223],[-165,-188],[-139,-15],[-111,-372],[-105,-204],[0,-1],[-174,-95],[-1,1],[-248,78],[-258,327],[-179,142],[-302,96],[-42,13],[-148,-144],[-119,56],[-70,341],[-24,380],[60,385],[11,50],[60,281],[-102,698],[-101,198],[-86,168],[-19,447],[-64,292],[-79,278],[-132,33],[-123,86],[-241,-534],[-107,-156],[-117,80],[-114,132],[-118,-63],[-206,126],[-135,77],[-63,313],[110,198],[-89,444],[-83,261],[-54,169],[-142,282],[-146,-19],[-80,-125],[-49,-75],[-133,79],[-90,240],[-133,158],[0,1],[-230,465],[-39,89],[-65,152],[-198,451],[-112,194],[-37,65],[-125,26],[-130,110],[-183,80],[-123,-105],[-389,57],[-211,-57],[-138,46],[-140,-13],[-175,-185],[-216,-133],[-159,-91],[51,-205],[20,-80],[103,-392],[73,-284],[81,-263],[28,-349],[-72,-472],[-117,-174],[-114,-118],[-110,-155],[-110,-284],[-136,-345],[-113,-259],[-127,-39],[-120,17],[-108,242],[-116,246],[-100,-207],[-73,-416],[-36,-356],[22,-376],[19,-360],[-6,-352],[39,-425],[19,-430],[56,-358],[-2,-397],[-16,-387],[-13,-409],[-40,-393],[-87,-385],[-92,-254],[-134,-213],[-123,-196],[-67,-344],[-76,-271],[-198,-133],[-109,-138],[-33,-367],[-6,-376],[-106,-347],[-98,-387],[45,-322],[-110,-131],[-115,-305],[-49,-325],[113,-180],[-7,-353],[-108,-146],[-220,135],[-115,-160],[-49,-403],[-102,-183],[-97,-250],[-114,-257],[-122,-282],[-6,-568],[66,-337],[45,-389],[76,-289],[55,-310],[56,-321],[-118,-507],[-96,-410],[-42,-367],[-76,-317],[-80,-257],[-324,-506],[-9,-574],[69,-458],[37,-385],[40,-384],[5,-625],[7,-471],[35,-349],[60,-515],[48,-515],[-2,-343],[94,-324],[124,-13],[126,23],[144,-102],[312,-552],[140,-244],[27,-351],[-43,-602],[34,-371],[69,-354],[-28,-336],[-26,-367],[23,-337],[34,-383],[-3,-363],[40,-382],[77,-320],[40,-337],[56,-460],[2,-380],[-48,-349],[-36,-373],[-3,-384],[19,-483],[-93,-259],[-67,-338],[30,-368],[90,-242],[80,-273],[182,-316],[53,-342],[-92,-239],[-101,-230],[-12,-360],[27,-376],[51,-342]],[[363206,5844],[-320,36],[-631,79],[-475,63],[-566,63],[-361,0],[-120,7],[-5,1],[-284,18],[-117,8],[-188,13],[-407,55],[-688,69],[-722,67],[-13,1],[-647,103],[-147,26],[-426,76],[-57,11],[-395,92],[-483,63],[-576,102],[-341,74],[-305,54],[-98,19],[-295,59],[-62,12],[-286,61],[-27,7],[-160,62],[-445,75],[-336,34],[-10,1],[-557,72],[-454,57],[-588,-25],[-203,-5],[-316,4],[-338,2],[-386,5],[-482,19],[-699,0],[-1293,-171],[-332,-34],[-118,-23],[-60,-11],[-174,-34],[-8,-1],[-254,-17],[-47,-13],[-158,-46],[-283,-38],[-169,-22],[-154,-20],[-64,-8],[-278,-41],[-237,-34],[-175,-17],[-621,-82],[-54,-7],[-495,-63],[-22,-2],[-210,0],[-290,0],[-170,11],[-157,23],[-739,0],[-371,9],[-170,26],[-309,0],[-166,34],[-373,68],[-147,40],[-181,29],[-187,-34],[-2,-1],[-269,-47],[-1139,-180],[-830,-131],[-197,-38],[-126,-24],[-388,-43],[-419,-47],[-365,-55],[-202,-16],[-207,-26],[-68,-8],[-40,-20],[-14,-6],[-42,22]],[[336416,6286],[-457,1623],[-145,507],[-541,1889],[-158,554],[-124,419],[-223,772],[-81,288],[-111,393],[-197,696],[-110,382],[-110,382],[-19,68],[-105,362],[-248,876],[-383,1347],[-303,1067],[-142,500],[-88,309],[-198,688],[-417,1451],[-215,793],[-81,297],[-155,525],[-171,581],[-242,823],[-323,1088],[-353,1191],[-132,442],[-80,265],[-101,333],[-161,533],[-88,291],[-94,321],[-176,504],[-413,1418],[-79,267],[-231,792],[-112,397],[-77,263],[-207,707],[-105,356],[-227,771],[-78,258],[-56,192],[-36,123],[-795,2732],[-90,307]],[[327378,37429],[1235,3915],[168,541],[123,-20],[4,69],[123,153],[-49,217],[-90,-221],[-41,20],[46,149],[207,653],[95,299],[275,872],[182,575],[108,203],[256,483],[101,192],[271,512],[160,657],[153,630],[69,282],[81,335],[342,1405],[107,468],[276,1201],[174,757],[-129,146],[-11,13],[-626,710],[-97,109],[-17,-29],[-558,-813],[-207,1146],[-378,-322],[-289,-290],[-91,0],[-273,11],[-395,-432],[0,-437],[142,12],[0,-556],[142,117],[28,-225],[64,-40],[13,44],[10,48],[1,93],[30,14],[67,-4],[49,-356],[61,-173],[11,-14],[-73,-50],[-662,-447],[-158,-108],[-68,403],[81,142],[-129,506],[31,26],[-102,380],[-103,-156],[-19,123],[-115,415],[-57,331],[-1,206],[-11,27],[-37,124],[-127,245],[-125,34],[-203,-95],[-96,-112],[-41,117],[-108,-165],[-36,111],[-167,-173],[146,-285],[-24,-154],[-2,-401],[36,-483],[73,-347],[-167,-52],[-19,-204],[-16,-378],[3,-347],[-87,-600],[-25,-402],[109,-196],[78,-288],[-12,-477],[-118,-365],[-133,-187],[-134,-297],[-121,143],[-181,511],[-117,265],[27,386],[-134,172],[-153,-166],[-115,-255],[-171,-272],[-112,-206],[-258,-808],[-70,-457],[94,-677],[82,-376],[55,-452],[-139,-250],[-138,200]],[[325232,44727],[-548,1905],[-164,571],[-114,395],[-326,1135],[-205,714],[-79,273],[-132,461],[-144,497],[-84,293],[-196,684],[-308,1073],[-138,477],[-698,2428],[-288,1003],[-103,356],[-32,111],[-46,162],[-101,351],[-528,1837],[-139,482],[-152,528],[-110,382],[-79,275],[-216,753],[-446,1552],[-80,277],[-101,350],[-339,1181],[-44,150],[-200,697],[-182,640],[-288,995],[-95,331],[-152,526],[-92,323],[-135,468],[-91,317],[-134,473],[-411,1453],[-226,791],[-124,440],[-520,1873],[-138,497],[-128,462],[-398,1434],[-212,763],[-116,421],[-236,851],[-543,1953],[-207,745],[-77,279],[-161,582],[-356,1281],[-264,951],[-195,702],[-493,1778],[-154,553],[-792,2856]],[[184162,36014],[-459,1341],[-64,-172],[-32,-62],[-30,-66],[-21,-69],[-22,41],[4,64],[-24,60],[-75,91],[-29,-13],[-25,-113],[-7,-87],[23,-228],[55,-510],[240,19],[44,-69],[50,-120],[17,-145],[65,-456],[174,300],[116,194]],[[184162,36014],[740,-2176],[24,-73],[115,-337],[-68,-97],[-182,-261],[-255,-364],[-114,-162],[-79,-113],[-99,-143],[-54,-76],[-79,-171],[-59,1],[-254,7],[-264,10],[-548,19],[-19,1],[-199,9],[-180,-20],[-234,-558],[-129,593],[-257,1174],[-292,-348],[-131,-152],[-118,-137],[-480,-561],[-400,-474],[-327,-450],[-156,-167],[-248,-263],[24,-678],[24,-652],[-241,2],[-224,5],[-163,23],[-186,51],[-182,58],[-133,39],[-152,28],[-147,7],[-145,-10],[-143,-13],[-274,-23],[-138,-12],[-160,-13],[-125,-32],[-134,-79],[-112,-152],[-104,-178],[-216,-380],[-120,-210],[-134,-174],[-114,-146],[-106,-153],[-122,-227],[-117,-123],[-183,-175],[-192,-201],[-196,-278],[-108,-154],[-196,-294],[-775,-1167],[-177,-267],[-313,-485],[-287,-283],[-184,-359],[-311,-389],[-114,-147],[-230,-333],[-331,-413],[-123,-181],[-111,-143],[-162,-234],[-129,-79],[-126,-278],[-235,-252],[-137,-124],[-120,-16],[-166,71],[-63,28],[-168,251],[-41,-8],[-91,-18],[97,-879],[-74,-295],[-25,-316],[-4,-41],[-189,-240],[-208,-267],[-121,-321],[-138,-196],[-119,-164],[-166,-16],[-198,-254]],[[169758,18766],[-14,0],[-66,-2],[-378,-8],[-412,-9],[-125,-3],[-241,-4],[-140,3],[-415,9],[-293,8],[-140,4],[-174,-1],[-218,-1],[-37,0],[-144,0],[-150,-1],[-224,0],[-146,2],[-158,3],[-232,3],[-206,3],[-208,3],[-488,2],[-411,1],[-129,1],[-199,1],[-235,1],[-235,1],[-39,0],[-127,0]],[[163774,18782],[-218,886],[-395,1932],[-63,301],[-82,403],[-235,1176],[-334,1669],[-146,731],[-69,345],[-64,332],[-60,308],[-20,190],[-91,872],[-50,799],[-36,481],[-74,869],[-47,551],[-29,349],[-64,716],[-69,758],[-29,334],[-85,990],[-69,845],[-48,538],[-80,837],[-88,1031],[-33,376],[-47,529],[-44,493],[-111,1250],[-120,1402],[-113,1170],[-111,1267],[-126,1426],[-224,2505],[-42,446],[-149,1623],[-35,380],[-1,13],[-120,1338],[-51,574],[-43,365],[-78,652],[-177,1491],[-221,1998],[-144,1313]],[[245359,33488],[0,-376],[33,-362],[27,-355],[0,-364],[-12,-354],[-36,-411],[-47,-376],[-12,-652],[-16,-355],[-44,-362],[-85,-305],[-57,-309],[-47,-338],[-15,-383],[2,-375],[-66,-478],[-55,-318],[-80,-398],[-36,-344],[-116,-232],[-6,-12],[-122,-92],[-91,-69],[-46,-43],[-251,-234],[-47,-46],[-72,-72],[-98,-194],[-10,-3],[-123,-32],[-107,242],[-142,208],[-71,-275],[-108,-203],[-119,-274],[-130,-34],[-187,-46],[-198,24],[2,-421],[13,-169],[-454,10],[-664,14],[-284,9],[-257,3],[-233,8],[-276,-3],[-126,-10]],[[240490,24327],[-388,6],[-410,8],[-236,4],[-276,5],[-1012,20],[-959,16],[-835,13],[-32,1],[-499,8],[-129,2],[-215,-10],[-18,-3],[-456,-11],[-164,7],[-1132,49],[-456,7],[-714,12],[-235,3],[-1420,11],[-554,5],[-287,3],[-242,1],[-178,9],[-525,28],[-613,33],[-222,12],[-223,9],[-123,5],[-84,4],[-51,2],[-166,7],[-676,29],[-173,7],[-378,16],[-255,11],[-288,12],[-141,9],[-1724,110],[-147,9],[-221,14],[-130,9],[-480,33],[-836,52],[-286,19],[-31,2],[-61,4],[-108,8],[-499,35],[-499,34],[-345,24],[-1188,82],[-6,0],[-774,106],[-613,28],[-560,26],[-200,11],[0,34],[-103,5],[-352,16],[-341,14],[-261,11],[-354,14],[-547,24],[-142,7],[-165,7],[-121,5],[-152,7],[-204,9],[-168,7],[-171,7],[-476,21],[-255,14],[-172,10],[-57,4],[-1511,91],[-330,21],[-225,15],[-1352,71],[-336,20],[-317,22],[-829,42],[-69,3],[-215,11],[-165,-907],[-167,-920],[-82,-452],[-406,-2240],[-74,-404],[-166,-913],[-85,-470],[-124,-690],[-95,-525],[-769,9],[-123,1],[-217,2],[-186,2],[-164,2],[-592,7],[-143,1],[-133,2],[-153,1],[-555,7],[-217,2],[-252,3],[-147,1],[-453,4],[-261,2],[-648,8],[-137,2],[-129,2],[-607,7],[-1766,19],[-138,-14],[-377,0],[-350,0],[-106,2],[-16,0],[-12,0],[-244,5],[-139,3],[-101,2],[-158,3],[-186,4],[-39,-1],[-120,-2],[-34,-24],[-18,-13],[-31,-38],[-51,-16],[-334,88],[-163,0],[-278,-1],[-237,0],[-5,0],[-269,-1],[-122,-1],[-83,-1],[-421,-5],[-18,-1],[-25,0],[-11,1],[-845,-5],[-744,-3],[-94,-1],[-406,-3],[-171,8],[-173,7],[-176,-2],[-33,2],[-68,3],[-107,6],[-81,4],[-786,37],[-549,10],[-938,15],[-56,0],[-14,1],[-223,3],[-273,2],[-225,1],[-471,3],[-723,7],[-261,6],[-395,9],[-94,2],[-202,3],[-32,-1],[-707,-17],[-131,-3],[-140,-12],[-83,-7],[-268,-12],[-77,-4],[-105,-4],[-255,-6],[-4,0],[-58,-2],[-207,-3],[-10,0],[-376,-7],[-270,-8],[-14,1],[-35,45],[-53,7],[-270,34],[-21,3],[-35,0],[-295,-1],[-23,0],[-16,-4],[-9,0],[-97,1],[-243,-2],[-591,-6],[-61,0],[-429,-3],[-166,-1],[-204,-2]],[[181297,18449],[150,454],[102,308],[303,920],[998,3028],[444,1347],[156,325],[172,387],[173,390],[233,513],[147,324],[105,230],[667,1477],[309,684],[243,582],[387,444],[193,222],[-324,1139],[-51,178],[-135,472],[-341,1166],[-31,107],[99,89],[163,147],[87,398],[25,341],[151,368],[117,195],[12,250],[64,114],[-25,140],[8,42],[135,66],[-60,273],[71,91],[52,124],[75,149],[229,273],[-57,215],[-63,231],[-9,75],[-6,976],[-278,0],[-103,49],[-62,-110],[-37,-66],[-225,-403],[-35,104],[-43,128],[-132,389],[-138,397],[-428,1247],[-100,-149],[-228,715],[6,65],[13,59],[25,59],[-6,49],[-28,115],[-9,35],[-11,-21],[-68,-188],[-66,-180],[-8,35],[-34,143],[141,275],[186,246],[128,124],[15,-6],[64,214],[50,151],[81,107],[102,157],[43,920],[-295,1065],[-35,50],[-311,619],[-262,572],[-98,-209],[-113,414],[-129,361],[-98,-204],[-226,92],[-64,196],[39,129],[-101,209],[-82,319],[88,339],[-95,-206],[-149,109],[-98,224],[-120,-64],[33,-374],[148,-181],[88,-952],[35,-391],[-30,-45],[-13,-75],[18,-164],[-252,107],[-119,-78],[-134,38],[-238,68],[-175,-27],[-177,-50],[-132,159],[-156,-14],[-354,348],[5,-556],[145,54],[121,-66],[143,-82],[339,-77],[271,2],[130,-32],[145,-30],[135,-76],[62,-64],[23,-113],[19,-114],[131,-15],[26,-403],[176,-483],[98,-940],[13,-57],[11,-25],[42,0],[31,-12],[21,-63],[309,-1151],[33,-114],[85,-121],[251,-95],[32,-149],[1,-6],[-134,-274],[-30,-87],[-109,-249],[48,-44],[36,-129],[-151,-268],[-14,-22],[39,-107],[-50,-132],[-88,277],[-30,-6],[-175,-454],[0,-69],[251,-895],[42,7],[614,40],[202,-566],[-560,-967]],[[875726,96160],[-154,-1231],[95,-2150],[8,-177],[39,-991],[-71,-1434],[-107,-1572],[-150,-954],[0,-1],[-10,6],[-120,73],[-111,295],[-195,-28],[-110,-131],[-323,40],[-112,-130],[-146,-64],[-417,-184],[-134,-56],[-134,-56],[-192,-81],[-129,-38],[-187,54],[-398,-171],[-145,-62],[-125,-53],[-146,-62],[-135,-62],[-190,-223],[-362,-286],[-305,-137],[-87,-40],[-53,-25],[-858,-367],[-715,-305],[-2577,-1102],[-395,-165],[-631,-271],[-383,-161],[-88,262],[-144,425],[-122,334],[-114,366],[-593,1906],[-27,93],[-241,838],[-13,44],[-32,684],[-166,508],[-4,13],[-306,480],[-83,615],[-366,503],[-118,-341],[-297,171],[-197,63],[-241,1577],[-110,1309]],[[862299,93708],[359,572],[189,777],[-43,712],[177,642],[23,94],[391,1613],[424,115],[13,751],[326,304],[13,490],[8,313],[348,274],[246,314],[190,386],[417,-337],[307,-820],[267,-22],[-20,480],[376,135],[301,-338],[76,-1105],[161,-1093],[13,-25],[514,-988],[246,-240],[-193,961],[-305,496],[-30,175],[-121,728],[-98,1035],[313,517],[286,607],[24,1645],[11,7],[591,351],[-88,901],[187,308],[250,-103],[-48,592],[70,729],[200,583],[281,272],[206,85],[260,-152],[178,-524],[186,258],[-128,784],[226,364],[356,-32],[212,152],[187,134],[1461,842],[266,-36],[178,-664],[25,-29],[525,-575],[208,-311],[-501,-1389],[271,-71],[643,-270],[483,82],[-159,-689],[138,-917],[36,-767],[427,-134],[379,32],[12,-639],[12,-724],[-11,-594],[28,-1037],[22,-36],[150,-248]],[[864457,102262],[-388,1726],[0,1368],[118,752],[-118,615],[-356,478],[-71,753],[-285,102],[-34,5],[-144,21],[-228,82],[-198,27],[46,1289],[5,125],[32,844],[23,718],[-142,96],[-214,109],[-123,-30],[-173,30],[-376,-34],[-551,-30],[-152,-5],[-866,1]],[[860262,111304],[127,430],[30,100],[48,166],[109,366],[89,305],[419,1336],[140,324],[104,237],[37,86],[439,513],[83,273],[284,2188],[-166,376],[-11,855],[-167,615],[297,308],[107,786],[-472,1101]],[[861759,121669],[457,37],[1004,-191],[853,-190],[24,1114],[41,997],[183,7203],[70,529],[278,118],[482,-51],[629,-67],[730,101],[709,-34],[373,51],[270,-152],[95,-614],[204,-28],[530,-9499],[1129,-460],[111,-1041],[-219,-2260],[-591,76],[-665,1277],[-367,25],[-386,-94],[-421,-376],[-216,-117],[359,-852],[340,638],[356,-38],[273,-188],[107,-1056],[44,-1101],[6,-1217],[323,-2408],[543,-1385],[148,-1123],[-380,-362],[-345,-121],[-68,-61],[-433,-384],[-279,80],[-220,-526],[-341,-293],[116,-1074],[-277,-819],[-192,-685],[-257,-422],[-95,-1004],[-8,-91],[-392,-1019],[-224,59],[-346,-223],[-492,1012],[-243,-459],[-155,-615],[-477,-24]],[[860262,111304],[-106,-307],[-6,-18],[-410,-1316],[-76,-262],[-612,-2049],[-60,-199],[-30,-101],[-201,-671],[-80,-269],[-88,-293],[-124,-414],[-73,-274],[-85,-306],[-96,-311],[-106,-273],[-71,-341],[-104,-323],[-96,-311],[25,-391],[-73,-305],[-86,-354],[-192,-824],[-845,-3639],[-579,-2974],[-71,-363],[-1,-5],[-153,-715],[-449,-9677],[-108,-2331],[-49,-1052],[-91,-1976],[-5,-97],[-11,-246],[-19,-380],[-22,-458],[-47,-971],[-61,-1277],[-163,-3366],[-67,-1387],[-12,-262],[-118,-2626],[-457,-10188],[-195,-4349],[-293,-6197],[-17,-350],[-18,-383],[-53,-1128],[-291,-6152],[-40,-831],[-327,-7884],[-111,-2846],[0,-4],[-448,-10330],[-3,-62],[-187,-6712],[-373,-6790],[-1,-5]],[[851827,3379],[-2546,3],[-635,2],[-1436,0],[-1364,0],[-302,-16],[-169,-9],[-1438,-77],[-391,34],[-1664,102],[-8,0],[-2976,0],[-1271,0],[-722,0],[-865,-34],[-238,9],[-723,25],[-2039,0],[-155,0],[-385,0],[-124,0],[-297,0],[-166,0],[-280,8],[-1036,27],[-1542,0],[-391,0],[-910,0],[-276,0],[-237,0],[-434,7],[-1463,27],[-404,0],[-901,0],[-334,0],[-425,0],[-498,0],[-225,0],[-1340,-205],[-385,20],[-231,13],[-24,1],[-178,0],[-305,10],[-887,28],[-409,12],[-451,18],[-853,34],[-1174,-34],[-435,-30],[-146,-4],[-293,0],[-478,0],[-558,34],[-1091,34],[-287,0],[-180,7],[-208,28],[-143,0],[-306,0],[-610,21],[-1005,47],[-269,0],[-85,4],[-286,30],[-1316,34],[-819,35],[-913,34],[-498,68],[-272,0],[-1139,34],[-628,35],[-542,0],[-181,5],[-131,5],[-45,2],[-323,22],[-213,0],[-937,34],[-169,4],[-292,7],[-21,2]],[[847888,125406],[46,-1492],[-95,-1333],[412,376],[185,822],[255,476],[333,407],[364,258],[111,744],[411,109],[138,730],[236,-873],[311,-566],[9,1031],[98,614],[71,448],[260,516],[325,321],[303,721],[33,1211],[401,244],[316,-399],[271,-537],[321,-788],[185,-1104],[-137,-719],[64,-979],[-14,-904],[-117,-880],[-101,-1155],[-78,-980],[-157,-584],[-209,-226],[-270,32],[-259,-462],[-289,-519],[-20,-35],[-463,-181],[-359,-128],[-251,100],[-299,357],[-223,-507],[-446,-487],[6,-1187],[164,-1068],[22,-856],[-143,-562],[-398,-458],[-264,-528],[-24,-815],[-490,-533],[-383,-233],[-257,-490],[4,-1264],[-178,-728],[-152,-739],[58,-1307],[-167,-705],[-222,-603],[-112,-1281],[-341,330],[-181,-423],[-283,-319],[-241,-240],[-123,-965],[-23,-558],[-243,79],[-238,-188],[-255,-556],[-57,-955],[-159,-131],[-164,-135],[-282,79],[-201,213],[-263,69],[-299,-123],[-299,-586],[-111,-705],[-41,-258],[-71,-536],[-171,-1288],[212,-923],[186,-545],[69,-942],[180,-624],[259,-475],[165,-322],[106,-207],[-87,-884],[-344,-1125],[-16,-1354],[159,-653],[37,-150],[46,1271],[20,200],[53,556],[122,319],[247,647],[405,51],[-130,1098],[145,824],[-31,776],[-142,704],[-213,709],[-234,386],[-32,760],[26,109],[141,591],[640,363],[18,10],[551,-159],[313,619],[291,-316],[382,54],[283,-183],[3,1100],[163,1650],[290,279],[594,350],[553,-20],[224,308],[185,932],[408,163],[365,1189],[-229,625],[-400,-435],[-274,395],[-204,368],[-183,674],[372,726],[247,-69],[236,-251],[204,35],[290,457],[204,796],[207,1091],[-210,1173],[213,316],[239,-126],[235,-128],[177,399],[239,229],[248,360],[263,281],[235,208],[192,646],[-93,733],[-235,724],[-60,1161],[294,228],[97,76],[343,-46],[274,-291],[265,-634],[25,-716],[291,906],[300,807],[420,363],[335,193],[295,40],[410,166],[326,102],[364,77],[544,-235],[186,937],[143,774],[-111,653],[4,856],[225,1056],[253,909],[-18,872],[350,802],[325,543],[243,333],[257,22],[474,-155],[454,-283],[306,-235],[343,-603],[373,97],[22,-18],[463,-381],[253,-387],[96,-507],[412,208],[288,-241],[204,-155],[128,-520]],[[756324,1402],[-464,0],[-5,0],[-534,0],[-345,7],[-1256,27],[-142,0],[-249,0],[-439,0],[-154,0],[-285,0],[-225,0],[-506,0],[-286,0],[-435,-14],[-1574,-40],[-69,-2],[-548,-19],[-827,-28],[-437,0],[-192,0],[-121,0],[-128,0],[-943,16],[-1132,18],[-805,0],[-200,0],[-92,1],[-1309,9],[-1497,12],[-816,13],[-1732,0],[-178,0],[-142,0],[-960,34],[-249,0],[-463,0],[-320,0],[-996,0],[-474,0],[-143,0],[-332,34],[-901,0],[-901,0],[-237,68],[-546,0],[-759,0],[-378,0],[-338,0],[-149,0],[-1190,0],[-20,0],[-237,0],[-72,0],[-272,0],[-415,0],[-635,-24],[-254,-10],[-582,0],[-299,0],[-258,0],[-344,0],[-308,0],[-1045,0],[-249,1],[-422,6],[-144,2],[-60,1],[-89,1],[-1305,24],[-449,8],[-332,6],[-450,15],[-115,4],[-380,0],[-198,-28],[-584,-40],[-120,-11],[-335,-21],[-36,-2],[-233,0],[-450,34],[-131,0],[-652,34],[-1850,0],[-154,0],[-262,0],[-202,3],[-144,-1],[-278,2],[-321,2],[-1437,28],[-14,0],[-994,0],[-344,0],[-178,0],[-427,0],[-486,0],[-187,0],[-347,0],[-391,0],[-237,0],[-154,0],[-155,0],[-309,11],[-722,24],[-483,-31],[-310,1],[-2,0],[-172,2],[-705,28],[-320,0],[-1163,0],[-409,0],[-243,0],[-118,0],[-178,7],[-629,27],[-474,0],[-466,-20],[-435,-14],[-237,0],[-128,0],[-816,0]],[[730494,61478],[-126,-89],[-26,-15],[-38,67],[-60,-238],[-601,-2379],[-18,7],[-524,228],[-63,-342],[-235,-13],[-55,8],[-340,50],[-29,4],[-7,21],[-8,470],[-435,63],[-2,77],[-173,14],[-277,28],[-4,168],[-1,56],[-198,-459],[-104,-285],[-127,-391],[-98,-346],[-341,225],[-348,224],[-153,91],[-217,70],[-118,222],[-248,28],[-104,-242],[-101,-451],[-8,-509],[43,-477],[-88,-289],[-157,-314],[-108,79],[-8,6],[-123,136],[-71,-453],[-4,-431],[-6,-503],[-124,-108],[63,-320],[154,-228],[101,-234],[20,-345],[-37,-328],[24,-448],[9,-163],[18,-491],[45,-637],[147,-10],[63,-760],[107,-1274],[17,-390],[-17,-413],[-1,-370],[0,-13],[10,-334],[42,-786],[25,-486],[26,-507],[57,-1097],[87,-2],[45,63],[20,96],[21,34],[124,-157],[62,-47],[21,-55],[2,-93],[-34,-110],[7,-53],[34,-72],[55,-81],[114,-142],[109,-146],[2,-2],[110,-160],[208,-94],[21,5],[111,26],[206,-78],[155,32],[4,374],[57,110],[121,172],[216,492],[121,8],[178,32],[152,172],[177,-7],[43,20],[98,-97],[80,-40],[48,-21],[14,-4],[97,-16],[34,-80],[199,-165],[79,-100],[-1,-87],[-16,-46],[8,-119],[27,-53],[92,-62],[203,-94],[142,-55],[-41,383],[-57,446],[10,400],[105,328],[67,290],[-108,242],[169,-31],[-58,321],[216,-337],[0,1],[74,319],[34,329],[85,345],[94,563],[64,313],[17,406],[342,-267],[269,-195],[262,-146],[264,-149],[146,-85],[43,357],[76,613],[4,29],[110,892],[67,545],[-286,173],[36,2400],[5,383],[17,1121],[1,37],[-258,-114],[-227,-122],[-147,-172],[-332,-386],[-90,-89],[558,3596],[-121,37],[211,831],[319,1286],[-81,399],[-16,73],[-56,261],[-2,5],[-1,0],[-171,37],[0,74],[28,119],[-52,80],[-134,204],[-120,190],[-28,-7]],[[107155,88582],[-176,43],[-133,-97],[-49,-400],[-48,-346],[-82,-338],[-113,-346],[-34,-487],[-30,-369],[-144,-77],[-133,-126],[-132,-172],[-74,-274],[-105,-258],[-220,-404],[-272,-308],[-1,-422],[-1,-428],[-120,-172],[-74,-295],[-21,-361],[-88,-394],[-138,-38],[-96,-526],[-103,-198],[72,-320],[127,-320],[-16,-388],[-106,-248],[-129,-30],[-161,350],[-150,185],[-252,122],[-205,17],[-137,-17],[-165,-244],[-81,-358],[-139,-204],[-115,-284],[-196,-204],[-110,-300],[-121,-173],[-151,-30],[-1103,-3906],[-62,-221],[-43,-151],[-80,-285],[-70,-246],[-29,-102],[-314,-1094],[-461,-1604],[-311,-1053],[147,-147],[179,-348],[113,-189],[95,-400],[101,-408],[41,-464],[35,-449],[18,-451],[27,-420],[-99,-329],[11,-382],[22,-351],[57,-426],[-66,-294],[-119,-162],[-121,-157],[-142,-354],[-92,-373],[-124,-259],[-168,-227],[-141,-204],[-228,-225],[-137,-263],[-144,-154],[-107,-303],[-264,-374],[-134,-147],[-121,-119],[-131,-182],[-176,-333],[-142,-263],[-132,-85],[-106,-197],[-142,-211],[-129,-109],[-130,-103],[-172,-255],[-131,-214],[-175,-176],[-188,-54],[-246,-119],[-114,-153],[-132,-56],[-134,-129],[-118,-144],[-149,-201],[-172,-70],[-187,-201],[-157,-117],[-116,-75],[-216,-209],[-178,-242],[-117,-128],[-174,-177],[-76,-79],[-51,-52],[-120,-56],[-169,-11],[-188,-156],[-151,-182],[-165,-210],[-189,-57],[-171,-218],[-184,-219],[-172,-157],[-126,-227],[-124,-148],[-187,-172],[-152,-315],[-158,-273],[-148,-149],[-181,-174],[-114,-216],[-177,-140],[-179,-217],[-183,-262],[-149,-193],[-138,-387],[-172,-380],[-140,-296],[-129,-100],[-201,-189],[-129,-172],[-147,-166],[-158,-317],[-102,-170],[-318,-445],[-130,-169],[-112,-275],[-244,-259],[-244,-361],[-261,-389],[-235,-270],[-183,-391],[-284,-404],[-333,-364],[-236,-348],[-224,-376],[-130,-241],[-157,-240],[-120,-274],[-149,-257],[-178,-320],[-192,-330],[-117,-147],[-100,-632],[-188,-1182],[-56,-348],[-434,-2731],[-251,-1577],[-73,-460],[-132,-831],[-170,-1068],[-151,-947],[-51,-323],[-179,-1125],[-496,-3130],[-53,-332],[-74,-471],[-262,-1661],[-83,-526],[-150,-937],[-199,-1253],[-420,-2645],[-95,-599],[-76,-479],[-146,-916],[-70,-438],[-328,-2026],[-200,-1303],[-20,-130]],[[81801,18109],[-58,-1],[-142,-1],[-268,-2],[-210,0],[-124,-1],[-314,0],[-120,1],[-298,1],[-217,22],[-642,23],[-436,3],[-1106,6],[-674,4],[-272,1],[-246,0],[-569,3],[-381,2],[-182,2],[-1608,9],[-539,3],[-334,2],[-161,1],[-779,5],[-46,0],[-463,3],[-609,2],[-3085,18],[-177,2],[-516,3],[-467,2],[-543,4],[-121,1],[-867,5],[-1282,-14],[-356,-4],[-93,-1],[-543,-7],[-230,-2],[-67,-1],[-271,-3],[-798,-9],[-155,-1],[-293,-4],[-455,-5],[-216,-2],[-1128,-13],[-225,-3],[-984,2],[-311,1],[-618,1],[-885,2],[-1243,2],[-127,1],[-329,0],[-775,2],[-202,0],[-135,0],[-193,1],[-344,1],[-1071,2],[-319,-8],[-216,-6],[-188,-5],[-120,-3],[-408,-10],[-129,-4],[-140,31],[-8,3],[-8,3],[-123,-1],[-95,-1],[-355,-5],[-747,17],[-1446,1180],[-324,264],[-883,-19],[-82,-2],[-586,-12],[-312,-7],[-409,-8],[-222,-5],[-663,-14],[-421,-9],[-194,-4],[-42,-1],[-282,-6],[-515,-11],[-1127,-24],[-736,-15],[-466,-12],[-276,-8],[-142,-4],[-365,-9],[-621,-16],[-19,-1],[-1,0],[-1119,-29],[-652,-17],[-1033,-27],[-67,-2],[-457,-12],[-134,0],[-930,0],[-217,0],[-2361,0],[-40,0],[-10,0],[-1075,0],[-1226,-7],[-34,0],[-1334,-6],[-427,-3],[-222,-1],[-266,-1],[-271,-1],[-672,-4],[-339,-2],[-487,-2],[-1482,-8],[-969,-5],[-239,-1],[-400,-2],[-354,-2],[-522,-3],[-444,-2],[-369,-2],[-685,5],[-151,2],[-1592,12],[-262,2],[-189,1],[-1095,9],[-156,1],[-142,1],[-490,4],[-162,1],[-367,3],[-240,1],[-606,5],[-623,5],[-405,10],[-147,4],[-655,19],[-67,2],[-143,3],[-179,6],[-188,5],[-281,7],[-636,16],[-3,0],[-414,12],[-424,13],[-619,18],[-12,1],[-339,10],[-15,1],[-173,5],[-118,3],[-225,7],[-232,7],[-249,7],[-567,16],[-60,2],[-481,8],[-437,9],[-656,13],[-18,8],[-118,47],[-233,84],[-221,38],[-246,55],[-149,38],[-165,46],[-128,32],[-530,113],[-501,116],[-24,6],[-13,3],[-385,91],[-355,38],[-194,15],[-678,56],[-24,2],[-309,25],[-4,0],[-30,3],[-179,10],[-155,4],[-76,2],[-128,19],[-637,94],[-143,4],[-24,1],[-33,1],[0,1],[-18,0],[-386,10],[-167,4],[63,846],[50,134],[140,379],[333,121],[189,323],[284,-137],[142,239],[143,136],[214,685],[292,517],[146,405],[166,514],[210,14],[170,260],[166,717],[248,308],[107,274],[55,492],[23,413],[29,154],[-12,685],[119,101],[131,-68],[35,342],[119,171],[272,-137],[238,274],[177,-70],[198,-135],[64,0],[237,-377],[130,34],[260,137],[274,206],[142,101],[237,240],[318,490],[263,297],[296,512],[339,1111],[160,633],[189,274],[178,0],[343,710],[345,315],[403,-308],[537,362],[566,458],[581,787],[23,342],[214,342],[83,-478],[173,-267],[776,130],[498,1025],[142,33],[614,971],[263,568],[131,376],[95,273],[723,582],[285,274],[234,83],[311,-15],[188,122],[726,768],[829,1469],[152,411],[97,555],[139,533],[229,312],[296,-67],[673,300],[682,303],[163,251],[400,170],[478,-101],[501,95],[253,255],[219,265],[382,-117],[270,49],[260,-581],[283,-283],[441,-231],[272,-308],[214,-34],[155,205],[586,-360],[279,-118],[628,-171],[724,35],[202,103],[130,205],[154,-103],[142,-205],[641,205],[356,0],[482,581],[419,-171],[510,-136],[415,68],[261,205],[284,68],[368,34],[273,274],[440,231],[651,555],[652,889],[581,547],[783,786],[59,342],[-71,342],[179,421],[94,126],[149,481],[360,647],[-35,376],[451,513],[474,205],[335,565],[400,597],[237,-102],[190,34],[996,1538],[142,0],[155,-307],[189,-103],[244,279],[238,448],[181,337],[156,64],[259,386],[79,286],[171,627],[216,103],[334,102],[316,103],[315,325],[243,17],[332,376],[802,668],[621,392],[276,531],[501,53],[195,202],[190,410],[640,397],[173,-56],[88,-67],[119,273],[593,274],[249,342],[261,-137],[415,34],[260,137],[75,64],[44,38],[130,376],[327,155],[161,50],[248,-34],[237,581],[332,219],[226,9],[130,-22],[462,376],[403,547],[321,136],[225,240],[308,-137],[202,137],[107,273],[284,239],[273,188],[296,462],[202,34],[106,183],[463,56],[285,376],[344,35],[545,581],[249,-34],[344,547],[166,-103],[700,615],[261,479],[315,80],[408,262],[285,171],[160,269],[242,182],[307,289],[417,285],[202,171],[261,410],[462,0],[510,35],[541,-1],[688,58],[147,-92],[202,274],[315,-24],[266,195],[177,-205],[-83,-342],[700,239],[307,405],[173,210],[89,171],[238,-68],[130,34],[83,308],[202,-444],[508,51],[296,-13],[334,235],[474,240],[226,-171],[189,752],[60,444],[-131,615],[-35,342],[308,342],[166,-68],[148,167],[133,12],[100,326],[-125,693],[34,792],[9,956],[149,475],[96,601],[-46,68],[-208,306],[-473,764],[62,331],[106,188],[-15,470],[255,517],[-12,444],[-355,479],[83,342],[106,239],[119,0],[107,752],[-297,1504],[-189,1333],[83,274],[186,137],[304,76],[197,197],[131,0],[304,363],[237,553],[176,227],[125,545],[356,1423],[94,479],[321,888],[95,376],[272,581],[343,209],[238,680],[60,682],[-48,823],[36,615],[107,274],[189,68],[214,547],[9,794],[-22,1889],[60,906],[-379,923],[-45,458],[127,708],[345,680],[330,412],[516,454],[185,489],[211,620],[240,282],[439,307],[261,342],[391,137],[142,-34],[166,1367],[-213,1949],[391,1333],[214,-274],[142,-34],[368,-581],[166,-34],[308,273],[166,342],[119,34],[593,-410],[272,-171],[581,-68],[392,410],[249,479],[485,171],[238,-171],[285,0],[524,324],[282,52],[131,-342],[166,-867],[213,-535],[498,-273],[356,-274],[344,-513],[263,62],[308,42],[188,102],[59,307],[142,342],[124,855],[195,493],[462,1013],[549,413],[530,422],[314,-97],[276,-123],[124,156],[151,11],[342,246],[133,-91],[238,8],[237,-124],[231,-512],[198,126],[230,430],[400,402],[85,256],[174,226],[261,270],[498,256],[377,272],[37,468],[320,171],[123,137],[329,-108],[138,152],[182,-42],[248,256],[441,135],[171,600],[322,378],[138,-64],[274,129],[174,-88],[294,419],[161,426],[274,335],[341,-33],[475,65],[463,86],[24,4],[412,250],[28,370],[-68,737],[102,417],[263,191],[428,380],[305,308],[271,-8],[146,127],[112,302],[132,113],[254,77],[239,470],[164,615],[356,543],[609,207],[109,171],[50,979]],[[667467,1162],[-9,0],[-514,-5],[-303,-3],[-2,0],[-231,-11],[-244,-3],[-242,-12],[-598,0],[-799,-13],[-173,-2],[-246,-4],[-195,-1],[-213,-3],[-91,-1],[-333,-4],[-125,-1],[-356,-4],[-72,-1],[-233,-3],[-214,-2],[-797,-10],[-711,-9],[-311,-10],[-166,0],[-3,0],[-443,0],[-953,0],[-20,0],[-502,0],[-213,0],[-569,34],[-161,-29],[-93,-5],[-147,-16],[-140,-1],[-489,-27],[-496,-14],[-1004,45],[-790,47],[-180,0],[-122,6],[-189,9],[-390,19],[-287,10],[-207,6],[-250,18],[-356,0],[-273,0],[-174,0],[-163,1],[-521,27],[-126,6],[-142,-24],[-127,-3],[-150,-3],[-419,5],[-265,25],[-367,0],[-74,0],[-151,0],[-2550,35],[-320,0],[-214,0],[-664,0],[-212,0],[-250,0],[-688,0],[-255,14],[-338,20],[-154,-34],[-330,31],[-60,3],[-132,-6],[-285,-8],[-403,-20],[-166,0],[-124,0],[-575,-14],[-9,-1],[-575,-13],[-140,-7],[-119,0],[-301,-8],[-55,0],[-337,-5],[-12,0],[-797,-18],[-139,-3],[-123,-2],[-199,-4],[-515,-8],[-510,-9],[-393,-13],[-631,-19],[-607,-17],[-321,-9],[-338,-10],[-247,-11],[-150,0],[-560,-16],[-2,16],[-617,-21],[-2668,-88],[-239,-8],[-590,-20],[-150,0],[-152,-4],[-207,-6],[-315,-9],[-298,-3],[-123,22],[-738,-65],[-199,-3],[-359,0],[-167,-14],[-186,-2],[-563,-14],[-189,-5],[-713,-17],[-1003,-25],[-276,5],[-203,-9],[-182,-12],[-358,-10],[-466,-15],[-1228,-34],[-187,-8],[-369,-11],[-479,-10],[-105,-19],[-27,-5],[-269,0],[-177,34],[-121,-34],[-175,0],[-126,-8],[-644,-24],[-393,-15],[-260,-9],[-262,-47],[-107,6],[-474,28],[-130,0],[-162,-31],[-367,-5],[-145,-5],[-22,0],[-115,-4],[-136,-6],[-327,-30],[-211,-5],[-194,-4],[-190,-12],[-106,0],[-3,0],[-137,-19],[-212,-30],[-306,-54],[-89,-10],[-207,-24],[-712,-69],[-747,-34],[-163,-21],[-240,-31],[-169,-23],[-277,-32],[-166,-13],[-267,-39],[-32,3],[-195,16],[-278,-25],[-67,-6],[-120,4],[-936,35],[-143,-13],[-385,-21],[-291,13],[-124,0],[-284,8],[-199,8],[-11,1],[-295,12],[-70,1],[-1513,21],[-1122,26],[-335,8],[-806,-29],[-145,-5],[-242,0],[-42,0],[-200,0],[-180,0],[-293,11],[-34,1],[-550,22],[-759,0],[-344,0],[-130,0],[-1079,-34],[-209,33],[-236,4],[-266,2],[-959,7],[-180,22],[-462,0],[-140,7],[-756,35],[-550,-1],[-1498,94],[-618,40],[-716,44],[-344,22],[-121,21],[-207,8],[-108,-2],[-174,-6],[-258,-15],[-159,0],[-250,12],[-446,2],[-366,-7],[-167,-21],[-128,28],[-192,-20],[-264,0],[-614,-2],[-254,0],[-1039,0],[-699,0],[-1732,0],[-925,-34],[-150,0],[-85,0]],[[163774,18782],[-636,-6],[-556,-7],[-691,-17],[-165,0],[-129,-1],[-450,-11],[-1013,-28],[-230,-7],[-588,-16],[-871,-25],[-1094,-32],[-266,-8],[-576,-17],[-152,-6],[-1459,-53],[-732,-4],[-680,4],[-746,1],[-9,-2],[-30,-8],[-1407,4],[-247,2],[-580,2],[-164,2],[-333,1],[-681,-1],[-1418,-3],[-396,-10],[-1341,-33],[-968,-40],[-869,-47],[-194,-14],[-411,-32],[-136,-1],[-220,-3],[-289,40],[-383,83],[-425,135],[-313,99],[-133,32],[-275,47],[-278,17],[-152,7],[-211,-2],[-208,-25],[-150,-22],[-201,-17],[-146,-11],[-210,-7],[-179,-2],[-17,-1],[-84,0],[-450,-25],[-121,-11],[-237,-10],[-168,-7],[-178,2],[-369,1],[-363,-11],[-236,-3],[-257,3],[-19,0],[-130,-16],[-215,-8],[-278,-10],[-633,-8],[-433,-19],[-349,-15],[-206,-9],[-148,-6],[-264,-10],[-342,-17],[-371,-18],[-121,-4],[-297,-12],[-347,-35],[-237,-11],[-204,-8],[-65,1],[-162,6],[-133,1],[-96,11],[-15,-4],[-34,-6],[-31,-7],[-82,-21],[-42,-21],[-13,7],[-45,23],[-137,4],[-149,-6],[-120,-7],[-158,-9],[-173,-10],[-211,-14],[-183,-12],[-47,-1],[-26,0],[-30,-1],[-487,-24],[-141,-6],[-59,-3],[-162,-7],[-95,-5],[-266,-9],[-448,-20],[-171,0],[-141,-10],[-342,-19],[-154,-8],[-451,-25],[-431,-13],[-881,-19],[-79,-2],[-51,-4],[-16,-2],[-1,5],[-4,-5],[-26,-27],[-172,12],[-442,-10],[-554,-19],[-104,-20],[-87,-11],[-65,-7],[-194,-12],[-214,-3],[-683,0],[-4,0],[-238,0],[-141,-2],[-286,-3],[-545,3],[-382,2],[-115,0],[-167,0],[-479,0],[-23,0],[-262,0],[-111,0],[-50,0],[-163,0],[-134,-1],[-626,-13],[-224,-38],[-838,24],[-577,-7],[-470,3],[-142,3],[-147,0],[-226,1],[-101,5],[-209,16],[-125,-1],[-61,-11],[-129,-8],[-297,6],[-112,-7],[-273,-5],[-477,-2],[-455,-3],[-575,-3],[-147,-2],[-454,-4],[-59,0],[-210,-1],[-566,-5],[-186,-1],[-637,-5],[-661,-5],[-588,-5],[-236,0],[-179,2],[-301,3],[-716,7],[-260,6],[-155,3],[-215,5],[-128,3],[-548,12],[-466,10],[-328,0],[-211,0],[-417,-2],[-832,1],[-5,0],[-141,0],[-535,1],[-189,3],[-423,2],[-251,1],[-236,-3],[-259,-2],[-244,0],[-153,6],[-1175,-18],[-256,-4],[-128,-2],[-227,-3],[-253,4],[-195,2],[-240,3],[-963,14],[-155,2],[-500,7],[-456,-5],[-339,-4],[-299,-3],[-182,-2],[-386,-5],[-428,-10],[-291,-6],[-404,-9],[-1534,-41],[-454,-12],[-145,-1],[-280,-2],[-777,-7],[-346,-3],[-168,3],[-42,1],[-66,2],[-773,16],[-1041,22],[-479,7],[-521,7],[-40,1],[-638,10],[-127,0],[-299,2],[-382,2],[-381,-1],[-383,5],[-880,12],[-753,10],[-653,4],[-264,2],[-173,1],[-155,1],[-534,3],[-284,2],[-260,3],[-152,-2],[-907,-7],[-644,-9],[-159,-1],[-364,-4]],[[430862,86696],[-762,-440],[-161,-179],[-123,-14],[-120,-13],[-257,-469],[-693,646],[-237,222],[-223,-1197],[-594,-160],[-120,77],[-205,-5],[-94,235],[-157,42],[-153,13],[-134,-45],[-93,-433],[-92,-238],[-157,-31],[-261,-175],[-128,-39],[-129,-54],[-33,-385],[-73,-307],[-92,-287],[-119,-199],[-123,-172],[-162,-262],[-113,-112],[-115,-173],[-117,-271],[-122,-212],[-176,-203],[-134,-223],[-28,-362],[-32,-459],[-19,-515],[43,-670],[95,-667],[81,-609],[131,-348],[46,-1320],[22,-633],[296,-478],[19,-631],[-81,-1231],[-20,-342],[-1,-6],[-7,-496],[15,-350],[-24,-419],[-94,-320],[-56,-562],[-191,-424],[-84,-258],[-154,-259],[67,-357],[168,-400],[240,-528],[135,-309],[189,-332],[340,-144],[18,-351],[-123,-615],[-107,-183],[-174,-494],[-136,-477],[1,-546],[73,-418],[-89,-406],[-65,-424],[-94,-326],[-66,-349],[-186,-273],[-96,-287],[-23,-359],[26,-403],[44,-509],[138,-376],[70,-294],[60,-384],[30,-400],[33,-417],[60,-336],[21,-493],[46,-318],[89,-363],[101,-501],[165,-540],[79,-296],[29,-439],[172,-455],[246,-391],[88,-242],[42,-353],[-20,-372],[10,-458],[26,-420],[75,-304],[9,-355],[26,-411],[28,-380],[154,-382],[47,-539],[-8,-359],[9,-419],[10,-418],[128,-489],[58,-305],[66,-728],[9,-381],[12,-582],[83,-256],[167,-300],[106,-188],[88,-238],[93,-247],[131,-172],[34,-368],[81,-391],[0,-423],[20,-399],[84,-321],[110,-274],[73,-364],[112,-561],[46,-327],[111,-227],[121,86],[220,-305],[102,-179],[130,-455],[40,-344],[98,-635],[-4,-1072],[-5,-390],[-57,-533],[-49,-459],[-62,-415],[-22,-460],[-9,-518],[24,-345],[88,-404],[94,-664],[23,-383],[-29,-438],[-40,-424],[-5,-679],[9,-364],[-2,-420],[-26,-420],[-118,-329],[-35,-410],[105,-366],[198,-97],[133,-90],[191,-575],[41,-411],[-92,-329],[9,-400],[96,-303],[49,-452],[-26,-346],[-15,-171],[-19,-234],[84,-289],[111,-286],[164,-493],[-118,-319],[17,-452],[-34,-330],[-44,-460],[-53,-312],[-43,-358],[69,-433],[104,-393],[145,-296],[134,-231],[-15,-1057],[0,-4],[-6,-400],[-47,-3162],[-9,-583],[-10,-622],[-25,-1430],[-25,-1441],[-6,-349],[-29,-2006],[-19,-1463],[-15,-1000],[-8,-553],[-19,-907],[-1,-20],[-27,-1164],[-45,-2319],[-41,-2130],[-18,-925],[-13,-761],[-7,-556]],[[429443,591],[-466,3],[-800,21],[-1269,0],[-972,0],[-705,0],[-256,0],[-664,0],[-571,10],[-1397,25],[-439,0],[-676,0],[-352,10],[-446,7],[-503,8],[-335,9],[-174,9],[-476,30],[-974,30],[-443,13],[-139,20],[-237,0],[-181,0],[-595,21],[-380,13],[-353,0],[-175,35],[-119,0],[-246,7],[-619,8],[-229,8],[-267,8],[-861,35],[-238,10],[-385,10],[-332,16],[-1877,34],[-473,11],[-588,16],[-140,6],[-29,2],[-307,65],[-203,-25],[-163,2],[-147,2],[-354,24],[-498,0],[-261,0],[-249,0],[-795,34],[-340,-23],[-168,-2],[-160,3],[-316,22],[-249,0],[-227,0],[-601,0],[-506,-3],[-435,-5],[-302,-3],[-210,-3],[-906,-10],[-377,-5],[-422,2],[-110,1],[-1845,265],[-2069,260],[-431,58],[-134,18],[-202,26],[-259,49],[-707,85],[-149,20],[-254,38],[-609,96],[-605,68],[-427,69],[-332,26],[-567,78],[-153,22],[-126,17],[-315,52],[-238,44],[-380,0],[-126,0],[-156,7],[-261,34],[-151,21],[-397,75],[-339,25],[-299,41],[-215,36],[-226,34],[-1363,206],[-1380,172],[-252,35],[-275,36],[-422,60],[-197,23],[-194,25],[-141,-20],[-142,44],[-149,35],[-250,34],[-429,68],[0,-8],[-374,52],[-612,86],[-145,20],[-189,26],[-500,70],[-646,96],[-688,103],[-451,68],[-960,137],[-159,29],[-31,5],[-889,103],[-1423,136],[-640,69],[-475,68],[-130,0],[-178,34],[-961,103],[-437,38],[-338,39],[-196,23],[-784,105],[-581,68],[-125,0],[-493,58],[-439,51],[-1321,145],[-376,43],[-126,14],[-344,40],[-203,25],[-308,34],[0,1],[-723,102],[-430,30],[-104,11],[-130,27],[-1103,130],[-60,7],[-628,69],[-320,34],[-1364,169]],[[864457,102262],[-232,-961],[-382,-424],[68,-729],[-15,-11],[-302,-234],[-438,-359],[-110,-803],[-187,940],[-401,125],[212,-929],[176,-1430],[-112,-720],[-6,-35],[-193,-741],[-153,-900],[-83,-1343]],[[881016,100073],[276,51],[174,-637],[354,-603],[219,334],[-198,622],[-200,504],[293,567],[231,274],[299,-232],[323,145],[212,64],[336,-143]],[[895601,3350],[-1041,0],[-596,24],[-270,10],[-1280,-34],[-166,0],[-165,0],[-13,0],[-1081,-8],[-3332,-25],[-141,-1],[-239,33],[-1,0],[-29,0],[-909,0],[-1738,-1],[-1741,1],[-174,0],[-231,-2],[-1323,1],[-223,0],[-407,0],[-1092,0],[-646,0],[-961,0],[-538,0],[-421,0],[-773,0],[-183,1],[-518,-1],[-665,2],[-1299,0],[-237,0],[-178,-34],[-2998,23],[-1484,11],[-1090,12],[-898,1],[-1028,2],[-70,0],[-51,0],[-214,0],[-182,0],[-3279,4],[-2134,2],[-2403,2],[-2222,3],[-287,0],[-2823,3]],[[469596,410],[-1,-6],[-853,6],[-1168,9],[-478,-2],[-539,21],[-214,6],[-338,0],[-332,0],[-321,13],[-177,22],[-593,0],[-119,0],[-142,0],[-194,14],[-208,23],[-316,35],[-725,-27],[-363,-34],[-213,-5],[-1031,57],[-2322,73],[-344,-102],[-16,1],[-1125,67],[-17,1],[-1403,68],[-127,0],[-388,0],[-402,-12],[-528,-2],[-187,0],[-313,-24],[-1,0],[-248,3],[-541,8],[-161,3],[-389,24],[-462,0],[-558,0],[-498,34],[-593,0],[-1297,29],[-236,5],[-251,-21],[-224,-19],[-1580,-72],[-532,-13],[-63,18],[-130,37],[-150,-25],[-213,-3],[-434,-5],[-297,69],[-569,-69],[-285,35],[-130,0],[-285,-35],[-284,35],[-1933,0],[-332,0],[-901,-35],[-359,32],[-477,-57],[-996,-15],[-475,-8],[-395,-1],[-325,-14],[-122,-5],[-186,-8],[-93,-3],[-136,-5],[-263,-9],[-244,1],[-699,24],[-226,48],[-95,20],[-234,0],[-213,0],[-202,0],[-605,0],[-1494,0],[-130,0],[-1,-20],[-719,-3],[-324,-11],[-141,0],[-245,0],[-373,6],[-1177,-5],[-130,9]],[[448679,44879],[568,-1],[190,0],[131,-177],[248,-340],[10,-66],[100,-655],[66,-442],[72,-28],[273,-137],[213,-197],[118,-103],[523,-399],[38,-29],[412,-314],[242,-185],[315,-240],[274,-209],[154,-512],[-48,-479],[-12,-513],[-83,-410],[-94,-308],[23,-1664],[431,-171],[146,-96],[155,-85],[268,-69],[148,-98],[124,-148],[65,-46],[294,-320],[67,-162],[18,-371],[39,-330],[47,-178],[65,-112],[46,-20],[171,-36],[154,153],[75,91],[370,488],[-297,528],[-29,87],[-63,455],[151,415],[-222,265],[8,299],[228,-4],[-101,133],[138,597],[30,210],[-47,453],[0,439],[51,126],[49,559],[99,-254],[-68,-101],[10,-220],[-51,-118],[35,-298],[-21,-93],[26,-174],[15,-104],[-9,-215],[11,-200],[50,10],[6,-102],[-146,-159],[-28,-20],[-31,-45],[-17,-44],[3,-214],[135,-7],[91,17],[81,-46],[159,-137],[24,-105],[94,82],[94,225],[100,187],[135,-403],[63,-806],[-17,-553],[-15,-158],[-47,-9],[-7,-59],[-23,-194],[23,-87],[7,-29],[470,447],[12,0],[-35,243],[-176,1218],[-61,420],[71,68],[0,239],[83,274],[249,1059],[-78,100],[35,393],[-152,112],[-139,333],[-122,150],[-174,159],[-93,298],[-168,58],[-101,183],[-25,338],[1,344],[-96,303],[-129,490],[-28,407],[-114,126],[-210,74],[-134,-96],[-178,-76],[-82,259],[-17,388],[-110,271],[41,345],[40,566],[24,346],[66,943],[110,1581],[33,473],[29,403],[72,1030],[27,389],[56,826],[1,6],[31,434],[52,744],[84,1210],[36,506],[60,871],[-6,542],[-181,156],[-370,318],[-346,295],[-629,538],[-439,377],[-290,248],[-210,180],[-442,378],[-426,362],[-519,444],[-156,134],[-160,137],[-225,227],[-265,-446],[-107,-180],[-290,-489],[-109,-184],[-129,-444],[-109,-378],[-124,-429],[-149,-557],[-213,-713],[-167,-564],[-87,-299],[-83,-290],[-351,-1215],[-236,-817],[-82,-284],[-19,-65],[-118,-407],[-102,-355],[-350,-1210],[-95,-329],[-127,-439],[-24,-85],[-140,-490],[313,-667],[55,-201],[98,-598],[270,-742],[10,-25],[15,-299],[3,-52],[126,-250],[116,-201],[150,-582],[8,-141],[10,-150],[-5,-186],[0,-22],[5,-15],[153,-2],[194,0]],[[325232,44727],[168,-586],[-132,-214],[-108,-167],[-653,1111],[46,262],[54,275],[116,626],[-16,82],[-207,990],[-82,20],[-172,-26],[-194,-275],[-145,-317],[-74,-162],[-4,-15],[11,-203],[44,-604],[392,-454],[-89,-333],[-117,-141],[-141,40],[-140,-42],[-94,-227],[-293,-1425],[-52,-512],[-83,-271],[-71,-290],[-25,-398],[-6,-351],[-14,-694],[-24,-1274],[96,-328],[43,-344],[229,-1813],[189,-198],[19,-20],[609,-623],[630,-172],[152,-31],[1071,-295],[202,-47],[119,-28],[24,-5],[-19,-85],[-185,-805],[-88,-380],[-529,-2305],[-269,-1169],[-65,-316],[-6,-648],[77,-337],[154,-291],[515,319],[177,28],[131,-28],[161,-7],[47,-2],[7,194],[15,352],[218,214],[305,302],[33,677],[23,483],[20,402],[19,400],[24,376],[28,730],[30,566],[-33,208],[-107,519],[-73,356],[-84,412],[-7,35],[-43,205],[6,185],[6,537],[19,-38],[75,227],[49,149],[148,448],[89,268]],[[336416,6286],[-156,10],[-126,28],[-1459,171],[-2722,319],[-222,26],[-20,2],[-328,38],[-206,25],[-394,49],[-468,60],[-419,62],[-346,35],[-335,48],[-45,7],[-305,47],[-558,68],[-260,0],[-436,30],[-74,5],[-245,0],[-28,0],[-1221,68],[-424,19],[-353,47],[-125,139],[-320,0],[-140,0],[-288,9],[-129,25],[-190,0],[-249,0],[-294,59],[-148,-10],[-175,20],[-151,14],[-252,35],[-329,19],[-197,10],[-529,23],[-350,-118],[-318,-104],[-536,46],[-193,19],[-216,21],[-34,4],[-333,65],[-758,68],[-350,23],[-138,11],[-130,0],[-167,9],[-150,7],[-176,4],[-190,7],[-363,25],[-597,30],[-370,15],[-164,6],[-293,88],[-63,20],[-80,27],[-39,12],[-153,51],[-409,144],[-272,80],[-73,22],[-124,42],[-228,35],[-169,30],[-261,47],[-96,17],[-120,20],[-50,9],[-684,118],[-152,26],[-178,30],[-297,51],[-332,8],[-212,39],[-99,18],[-153,23],[-72,10],[-229,30],[-215,32],[-907,-31],[-193,-7],[-232,0],[-853,69],[-498,34],[-155,0],[-184,0],[-67,4],[-175,30],[-119,0],[-178,0],[-167,0],[-160,7],[-207,27],[-415,0],[-391,34],[-344,0],[-249,35],[-146,0],[-258,52],[-260,50],[-20,4],[-143,30],[-6,2],[-376,101],[-441,68],[-108,18],[-329,51],[-569,102],[-332,34],[-475,26],[-167,17],[-340,30],[-560,64],[-138,0],[-160,15],[-72,7],[-130,12],[-16,2],[-124,32],[-498,35],[-119,0],[-147,16],[-315,52],[-40,0],[-123,0],[-6,1],[-128,33],[-146,6],[-91,3],[-321,37],[-366,57],[-126,0],[-228,45],[-4,1],[-136,36],[-428,113],[-73,15],[-120,29],[-166,0],[-676,68],[-181,0],[-123,10],[-575,57],[-276,29],[-475,41],[-109,9],[-265,25],[-498,35],[-249,0],[-190,9],[-261,25],[-3,0],[-181,0],[-138,5],[-226,8],[-211,21],[-224,0],[-124,7],[-352,31],[-1186,99],[-503,42],[-611,60],[-782,69],[-226,34],[-718,68],[-325,5],[-311,48],[-599,95],[-241,57],[-426,69],[-522,0],[-277,0],[-145,23],[-195,45],[-50,25],[-200,172],[-291,-65],[-198,-17],[-174,22],[-109,20],[-164,82],[-166,69],[-272,-35],[-190,0],[-178,-34],[-142,0],[-120,0],[-121,3],[-196,4],[-371,5],[-165,22],[-427,0],[-248,0],[-123,0],[-170,8],[-258,13],[-205,4],[-170,8],[-244,36],[-196,9],[-254,12],[-266,13],[-54,-1],[-95,-3],[-314,-64],[-432,-43],[-333,-38],[-200,-22],[-327,0],[-308,0],[-214,0],[-296,0],[-384,-34],[-577,-34],[-270,0],[-394,0],[-296,239],[-320,239],[-24,-473],[-43,-5],[-201,-24],[-295,-80],[-422,-67],[-249,-274],[-35,479],[-126,0],[-161,9],[-271,25],[-176,0],[-244,14],[-232,20],[-213,0],[-226,34],[-201,0],[-126,16],[-210,51],[-36,2],[-116,0],[-55,4],[-169,30],[-144,6],[-72,27],[-27,11],[-171,24],[-44,6],[-304,-3],[-951,78],[-149,12],[-260,22],[-174,22],[-206,27],[-128,0],[-673,64],[-370,30],[-447,36],[-387,33],[-370,34],[-406,37],[-260,24],[-208,91],[-118,34],[-712,240],[-225,68],[-226,68],[-300,100],[-8,3],[-249,68],[-344,103],[-299,73],[-544,139],[-127,32],[-429,132],[-197,29],[-57,-15],[-1046,-308],[-170,-32],[-210,-38],[-326,73],[-306,154],[-152,58],[-192,11],[-320,0],[-181,0],[-161,8],[-172,19],[-364,41],[-1205,108],[-49,4],[-190,-10],[-133,35],[-300,34],[-14,2],[-1097,203],[-320,103],[-132,34],[-143,43],[-181,55],[-208,73],[-238,68],[-699,171],[-257,34],[-268,51],[-345,97],[-331,63],[-519,131],[-1569,352],[-204,46],[-326,81],[-237,34],[-379,68],[-237,34],[-1008,274],[-392,102],[-385,18],[-346,18],[-18,0],[-197,10],[-12,0],[-192,23],[-605,34],[-320,0],[-439,102],[-142,0],[-371,0],[-208,7],[-947,0],[-120,0],[-180,0],[-144,0],[-133,0],[-219,0],[-155,0],[-136,0],[-616,102],[-133,-6],[-503,0],[-161,7],[-253,15],[-523,46],[-342,0],[-24,2],[-156,11],[-217,11],[-941,44],[-23,1],[587,1320],[481,1081],[384,863],[508,1142],[372,836],[210,473],[659,1482],[269,601],[146,325]],[[513728,205],[-41,0],[-498,0],[-14,0],[-686,0],[-412,12],[-750,22],[-178,0],[-249,0],[-771,0],[-201,-34],[-1186,0],[-226,0],[-187,0],[-237,7],[-562,16],[-282,11],[-401,0],[-3,0],[-569,0],[-466,-28],[-305,-6],[-155,0],[-1436,-5],[-379,-1],[-142,0],[-1263,-33],[-279,5],[-8,0],[-268,-10],[-631,-43],[-170,-15],[-545,-69],[-123,0],[-244,-6],[-40,0],[-356,-1],[-170,1],[-127,-5],[-9,0],[-374,0],[-173,0]],[[181297,18449],[-8,0],[-256,4],[-60,-3],[-104,17],[-102,-17],[-5,-1],[-190,-2],[-166,12],[-112,-8],[-245,-12],[-131,-6],[-202,-10],[-40,-2],[-59,-3],[-126,-6],[-703,-10],[-180,2],[-135,1],[-254,3],[-221,7],[-17,15],[-12,9],[-14,8],[-222,23],[-15,1],[-6,1],[-131,9],[-122,9],[-58,4],[-81,7],[-49,4],[-89,8],[-117,9],[-14,2],[-165,4],[-72,8],[-173,19],[-91,7],[-89,7],[-109,10],[-11,1],[-87,5],[-12,1],[-46,4],[-64,5],[-24,3],[-26,4],[-92,10],[-62,5],[-9,0],[-175,13],[-26,2],[-189,15],[-41,4],[-241,19],[-40,3],[-11,1],[-62,6],[-218,17],[-230,17],[-209,15],[-6,0],[-281,23],[-156,13],[-58,5],[-17,1],[-78,9],[-145,15],[-36,9],[-41,18],[-24,10],[-40,2],[-62,2],[-154,-2],[-129,-1],[-115,-2],[-62,-1],[-95,-1],[-157,-2],[-160,-2],[-312,-3],[-43,23],[-16,25],[-31,20],[-113,-7],[-32,-5],[-21,-7],[-43,-79],[-152,4],[-74,27],[-6,11],[-13,11],[-36,1],[-35,-8],[-3,-3],[-20,-30],[-38,-13],[-183,-14],[-39,-3],[-281,0],[-163,-1],[-194,-1],[-164,-1],[-253,-1],[-465,-3],[-137,-1],[-36,-1]]],"transform":{"scale":[0.000008432984914984873,0.000002925258553258669],"translate":[-83.67494333699989,36.540748535000034]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment