Created
October 1, 2014 21:03
-
-
Save maggie-lee/61c03c3d646a09d5a012 to your computer and use it in GitHub Desktop.
Dekalb cities draft
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
#south_dekalb1 { /*city comprising south dekalb*/ | |
fill: gray ; | |
opacity: 0.5; | |
} | |
#lakeside_tucker1 { | |
fill: gainsboro; | |
opacity: 0.5; | |
} | |
#lakeside_tucker2 { | |
fill: dimGray; | |
opacity: 0.5; | |
} | |
#brookhaven1 { | |
fill: purple; | |
opacity: 0.5; | |
} | |
/* CSS goes here. */ | |
</style> | |
<body> | |
Proposed cities are in gray shades | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script>document.write('<script src="http://' + (location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1"></' + 'script>')</script> | |
<script src="http://d3js.org/topojson.v1.min.js"></script> | |
<script> | |
var width = 1500, | |
height = 1500; | |
var scale = 100000; | |
var svg = d3.select("body").append("svg") | |
.attr("width", width) | |
.attr("height", height); | |
var color = d3.scale.category20(); | |
d3.json("topo_cities.json", function(error, dek) { | |
if (error) return console.error(error); | |
console.log("ok dek:", dek) | |
var projection = d3.geo.mercator() | |
.scale(scale) | |
.rotate([84.2, -33.9, 0]); | |
var path = d3.geo.path() | |
.projection(projection); | |
svg.selectAll("#cities") | |
.data(topojson.feature(dek, dek.objects['cities']).features) | |
.enter().append("path") | |
.attr("id", function (d, i) {return "cities" + i; }) | |
.attr("d", path) | |
.attr("fill", function (d, i) {return color(i);}); | |
}); | |
d3.json("topo_brookhaven.json", function(error, bkh) { | |
if (error) return console.error(error); | |
console.log("ok dek:", bkh) | |
var projection = d3.geo.mercator() | |
.scale(scale) | |
.rotate([84.2, -33.9, 0]); | |
var path = d3.geo.path() | |
.projection(projection); | |
svg.selectAll("#brookhaven") | |
.data(topojson.feature(bkh, bkh.objects['brookhaven']).features) | |
.enter().append("path") | |
.attr("id", function (d, i) {return "brookhaven" + i; }) | |
.attr("d", path) | |
.attr("opacity", 0); | |
}); | |
d3.json("south_dekalb.json", function(error, south_dekalb) { | |
if (error) return console.error(error); | |
console.log("ok sdk", south_dekalb); | |
var projection = d3.geo.mercator() | |
.scale(scale) | |
.rotate([84.2, -33.9, 0]) // l/r, u/d, yawl | |
var path = d3.geo.path() | |
.projection(projection); | |
svg.selectAll("#south_dekalb") | |
.data(topojson.feature(south_dekalb, south_dekalb.objects['south_dekalb']).features) | |
.enter().append("path") | |
.attr("id", function (d, i) {return "south_dekalb" + i; }) | |
.attr("d", path) | |
.attr("opacity", 0); | |
}); | |
d3.json("lakeside-tucker.json", function(error, lakeside_tucker) { | |
if (error) return console.error(error); | |
console.log("ok lakeside:" , lakeside_tucker) | |
var projection2 = d3.geo.mercator() | |
.scale(scale) | |
.rotate([84.2, -33.9, 0]) // l/r, u/d, yawl | |
console.log("lakeside features:", lakeside_tucker.objects['lakeside-tucker']); | |
var path2 = d3.geo.path() | |
.projection(projection2); | |
svg.selectAll("#lakeside_tucker") | |
.data(topojson.feature(lakeside_tucker, lakeside_tucker.objects['lakeside-tucker']).features) | |
.enter().append("path") | |
.attr("id", function (d, i) {return "lakeside_tucker" + i; }) | |
.attr("d", path2) | |
.attr("opacity", 0); | |
}); | |
</script> | |
<!-- // var projection = d3.geo.mercator() | |
// .scale(scale) | |
// .rotate([84.2, -33.9, 0]) // l/r, u/d, yawl | |
// var path = d3.geo.path() | |
// .projection(projection); | |
// svg.selectAll("#south_dekalb") | |
// .data(topojson.feature(south_dekalb, south_dekalb.objects['south_dekalb']).features) | |
// .enter().append("path") | |
// .attr("id", function (d, i) {return "south_dekalb" + i; }) | |
// .attr("d", path) | |
// .attr("opacity", 0); | |
// }); | |
--> | |
<!-- // d3.json("lakeside-tucker.json", function(error, lakeside_tucker) { | |
// if (error) return console.error(error); | |
// console.log("ok lakeside:" , lakeside_tucker) | |
// var projection2 = d3.geo.mercator() | |
// .scale(scale) | |
// .rotate([84.2, -33.9, 0]) // l/r, u/d, yawl | |
// console.log("lakeside features:", lakeside_tucker.objects['lakeside-tucker']); | |
// var path2 = d3.geo.path() | |
// .projection(projection2); | |
// svg.selectAll("#lakeside_tucker") | |
// .data(topojson.feature(lakeside_tucker, lakeside_tucker.objects['lakeside-tucker']).features) | |
// .enter().append("path") | |
// .attr("id", function (d, i) {return "lakeside_tucker" + i; }) | |
// .attr("d", path2) | |
// .attr("opacity", 0); | |
// }); --> | |
<!-- d3.json("050_002.json", function(error, counties) { | |
if (error) return console.error(error); | |
console.log("ok counties:", counties) | |
var projection = d3.geo.mercator() | |
.scale(scale) | |
.rotate([84.2, -33.9, 0]); | |
var path = d3.geo.path() | |
.projection(projection); | |
svg.append("path") | |
.datum(topojson.feature(counties, counties.objects['050_00'])) | |
.attr("d", path) | |
// svg.selectAll("#counties") | |
// .data(topojson.feature(counties, counties.objects.geometry)) | |
// .enter().append("path") | |
// .attr("id", "counties") | |
// .attr("d", path) | |
// .attr("opacity", 0.1) | |
// .attr("stroke", "black") | |
// .attr("fill", "null"); | |
}); --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"type":"Topology","transform":{"scale":[0.000009475215517241374,0.000007192755990863689],"translate":[-85.605165,30.355757000000004]},"arcs":[[[142841,481042],[108,70],[344,225],[81,51],[72,56],[278,190],[152,101],[-5,31],[22,-20],[171,119],[103,71],[110,72],[132,86],[368,249],[165,107],[27,18],[143,92],[107,75],[243,160],[127,84],[-9,-68],[-16,-51],[-46,-99],[-67,-178],[-11,-21],[-20,-28],[5,-1],[5,-4],[7,-8],[1,-7],[-1,-16],[-1,-3],[-4,-18],[-3,-16],[-1,-5],[7,-9],[-9,-30],[-3,-28],[11,-41],[9,-32],[12,-30],[28,-38],[15,-30],[23,-39],[61,-59],[33,-15],[36,-11],[52,-16],[37,-15],[49,-47],[20,-4],[31,9],[20,9],[4,-74],[8,-193],[4,-44],[2,-24],[6,-74],[22,-109],[206,-31],[265,-37],[66,-11],[59,-8],[44,-5],[78,0],[37,5],[19,1],[38,4],[87,14],[91,26],[54,22],[31,14],[25,12],[6,4],[79,52],[63,47],[27,20],[26,22],[97,85],[15,13],[73,63],[41,34],[57,47],[290,253],[47,37],[128,96],[23,19],[67,60],[55,40],[33,19],[30,14],[29,14],[50,15],[25,6],[130,32],[89,15],[45,7],[118,17],[87,5],[46,-16],[43,-14],[72,-32],[75,-31],[95,-36],[58,-29],[78,-47],[89,-64],[159,-113],[24,-13],[51,-33],[21,-15],[25,-20],[25,-22],[11,-14],[10,-14],[27,-43],[38,-58],[44,-71],[12,-25],[46,-69],[136,-197],[279,-365],[12,-20],[30,-38],[30,-27],[28,-23],[28,-20],[30,-19],[10,-5],[47,-25],[15,-8],[27,-16],[60,-24],[71,-34],[79,-30],[22,-9],[33,38],[204,210],[86,91],[92,82],[102,83],[39,31],[22,18],[28,21],[46,34],[33,29],[112,48],[189,108],[155,66],[10,6],[68,30],[261,100],[115,49],[340,141],[56,22],[133,43],[49,17],[82,23],[32,9],[115,26],[58,11],[59,11],[58,9],[63,8],[2,2],[24,1],[39,3],[40,2],[55,2],[55,-1],[28,-1],[144,1],[39,-2],[116,-9],[267,-20],[202,-12],[206,-15],[47,-4],[24,-1],[49,-3],[42,-4],[44,-9],[83,-25],[33,-14],[67,-22],[174,-74],[27,-6],[7,-4],[20,-5],[44,-8],[96,-5],[64,7],[44,6],[28,9],[47,14],[20,5],[254,64],[9,1],[42,5],[22,6],[27,-4],[147,-20],[87,-4],[-8,12],[-1,2],[-3,4],[-16,25],[-54,80],[-100,199],[-5,10],[-507,723],[-1,2],[-128,468],[-1,6],[-2,5],[0,0],[0,0],[0,1],[-5,18],[-26,51],[0,0],[-4,7],[-58,102],[-346,258],[-19,14],[-58,74],[-13,17],[-99,75],[-91,56],[-46,28],[-358,160],[-25,24],[-369,310],[-234,486],[-242,325],[-117,158],[-59,80],[-221,306],[-18,17],[-109,108],[-255,72],[-83,24],[-10,-1],[-28,12],[-160,91],[-94,57],[-373,245],[-2,2],[-94,13],[-44,7],[-8,1],[-2,0],[0,0],[-2,0],[0,0],[-3,1],[-6,1],[-11,1],[-3,1],[-1,0],[-2,0],[-3,1],[-17,3],[-19,2],[-1,0],[-3,1],[-6,1],[-1,0],[0,0],[-1,0],[-4,1],[-14,2],[-27,4],[-114,10],[-13,-10],[-108,57],[-92,68],[-10,12],[-2,4],[-1,0],[-54,71],[-5,8],[-1,1],[0,0],[-101,132],[0,1],[-116,152],[-4,6],[-2,2],[0,0],[0,0],[-158,209],[-222,292],[-181,71],[-31,12],[-9,4],[-5,2],[0,0],[-2,1],[-1,0],[0,0],[0,0],[-1,1],[-13,5],[-38,15],[0,0],[-1,0],[0,0],[-2,1],[-2,1],[-14,5],[-227,90],[-2,0],[-49,7],[-1,1],[-38,5],[-11,1],[-11,2],[-11,1],[-6,1],[-6,1],[-8,1],[-1,0],[0,0],[0,0],[0,0],[-33,5],[-24,3],[-52,-59],[-2,-2],[-4,-4],[-15,-17],[-104,64],[-163,105],[-3,2],[-3,1],[0,1],[0,0],[-1,0],[-96,62],[-8,7],[0,0],[0,0],[-5,5],[-2,1],[-239,209],[-200,167],[-48,42],[-107,94],[-106,51],[-43,21],[-18,7],[-26,11],[-50,16],[-24,9],[-95,-25],[-11,-3],[-9,3],[-9,3],[-1,1],[-97,34],[-21,12],[-1,1],[0,0],[0,0],[-1,0],[0,1],[-11,6],[-2,0],[-90,51],[-148,82],[0,94],[0,18],[0,0],[-14,22],[-60,103],[0,0],[-28,133],[-4,20],[-17,135],[-3,21],[0,1],[0,2],[-1,4],[0,3],[0,0],[-169,140],[-22,14],[-8,5],[-13,9],[-22,14],[-11,7],[-50,34],[-22,14],[-15,16],[-2,2],[-2,1],[0,0],[0,1],[-5,5],[-1,0],[-532,546]],[[146927,490362],[-3,2],[-3,4],[0,0],[0,0],[0,0],[-6,6],[0,0],[0,1],[-212,111],[-125,68],[-1,1],[-33,108],[-131,205],[-2,3],[-233,363],[-42,66],[-139,218],[-13,18],[-83,118],[-158,0],[-56,90],[-12,21],[-53,86],[-12,19],[0,0],[-1,2],[-15,25],[-38,61],[-47,77],[-52,85],[-50,81],[-354,578],[-42,67],[-40,66],[-13,20],[-58,95],[-1,3],[-58,37],[-111,72],[-61,39],[-149,96],[-1,0],[0,0],[0,1],[-1,0],[-4,3],[-2,1],[-30,19],[-58,38],[-38,31],[-4,3],[-43,35],[-24,22],[-1,0],[-40,-28],[-68,-51],[-32,-24],[-313,-256],[-214,-175],[-130,-102],[-64,-51],[-178,-146],[-324,-265],[-76,-58],[-343,-278],[6,-32],[2,-10],[-53,-55],[-81,-100],[-37,-53],[-17,-25],[-12,-25],[-8,-20],[-6,-20],[-8,-42],[0,-28],[1,-24],[7,-25],[10,-30],[6,-14],[15,-33],[31,-64],[34,-52],[39,-55],[44,-56],[106,-113],[10,-17],[114,-112],[81,-90],[53,-62],[35,-51],[23,-41],[-33,2],[-36,0],[-20,0],[-26,1],[-58,82],[-25,35],[-16,19],[-49,52],[-102,106],[-50,51],[-125,133],[-80,57],[-37,23],[-37,20],[-35,11],[-11,-12],[-13,12],[-15,13],[-31,8],[-35,6],[-41,2],[-78,-6],[-52,-9],[-87,-19],[-23,-8],[-33,-16],[-82,-43],[-83,-64],[-124,-110],[-84,-78],[-55,-61],[-80,-83],[-1,4],[-16,-21],[-439,-731],[-196,-322],[-12,-20],[-110,-189],[-98,-155],[-160,-276],[-52,-77],[-19,-25],[-29,-38],[-37,-40],[-44,-52],[-45,-40],[-64,-59],[-211,-180],[-198,-164],[-64,-59],[-48,-48],[-34,-36],[-39,-42],[-139,-161],[-255,-303],[-19,-22],[-18,-19],[-96,-112],[-210,-265],[-52,-94],[-21,-44],[-53,-128],[-74,-190],[-59,-133],[-35,-66],[-44,-71],[-41,-54],[-44,-53],[-48,-53],[-325,-352],[-68,-70],[-115,-118],[-51,-50],[-51,-55],[-78,-105],[-37,-47],[-41,-67],[-244,-556],[-37,-88],[-21,-48],[-34,-76],[-32,-61],[-27,-43],[-31,-44],[-30,-39],[-33,-35],[-15,-12],[-16,-14],[-12,-11],[-23,-20],[-78,-49],[-16,-7],[-52,-30],[-48,-20],[-42,-13],[-50,-13],[-17,-3],[-30,-6],[-100,-13],[-28,-5],[-30,-3],[-182,-30],[-369,-59],[-87,-26],[-57,-25],[-6,-3],[-67,-31],[-72,-45],[-174,-115],[-304,-210],[-128,-90],[-43,-27],[-173,-101],[-128,-76],[-125,-68],[-106,-60],[-126,-72],[-181,-106],[-254,-152],[-303,-176],[-116,-67],[-114,-81],[-150,-148],[118,-92],[-2,-20],[-8,-71],[0,-4],[-1,-41],[3,-14],[5,-15],[9,-12],[2,-3],[7,-21],[1,-13],[1,-11],[-5,-30],[-10,-28],[-2,-44],[1,-14],[3,-39],[4,7],[24,20],[44,22],[54,23],[36,8],[51,4],[17,1],[48,-2],[57,0],[54,-1],[202,-4],[40,0],[39,-1],[14,0],[27,1],[256,-1],[-25,-42],[-52,-88],[-15,-34],[-4,-20],[-2,-34],[5,-41],[14,-134],[4,-56],[-3,-105],[-9,-81],[-27,-80],[-10,-27],[-4,-12],[-6,-24],[-2,-20],[-1,-29],[1,-37],[13,-203],[6,-80],[3,-20],[7,-32],[21,-64],[27,-67],[48,-114],[11,-36],[15,-54],[6,-57],[1,-35],[1,-23],[0,-24],[-1,-26],[-4,-16],[-15,-40],[-17,-26],[-28,-41],[-33,-65],[-11,-35],[-4,-22],[-1,-23],[3,-22],[11,-36],[23,-52],[6,-18],[5,-14],[4,-21],[1,-25],[-1,-26],[-8,-33],[-10,-26],[-9,-18],[-34,-51],[-28,-39],[-19,-38],[-13,-28],[-19,-57],[-19,-73],[-9,-33],[7,-20],[11,-30],[18,-40],[15,-30],[14,-22],[23,-20],[42,44],[33,40],[13,22],[6,23],[4,36],[8,36],[13,26],[32,34],[26,20],[34,17],[31,5],[42,2],[26,-2],[35,-3],[46,3],[50,10],[35,13],[22,16],[13,18],[8,26],[-2,28],[-7,25],[-15,32],[-24,25],[-35,39],[-13,23],[-9,26],[0,21],[3,26],[11,27],[25,25],[27,12],[19,5],[30,-1],[22,1],[17,6],[18,11],[25,19],[29,26],[102,114],[54,64],[28,50],[31,44],[31,45],[24,32],[32,32],[39,32],[18,-26],[29,-55],[14,-33],[10,-29],[3,-8],[9,-40],[58,3],[47,-3],[52,-7],[50,-12],[46,-1],[31,-2],[36,-9],[51,-18],[35,-8],[35,-4],[41,-4],[-7,-87],[0,-17],[5,-170],[1,-9],[5,-49],[7,-70],[-3,-42],[-21,-75],[-21,-49],[41,-13],[61,-9],[43,-13],[71,-36],[48,-4],[12,-1],[22,-4],[13,-6],[15,-13],[40,-48],[13,-8],[10,-3],[26,-7],[34,-2],[23,7],[149,82],[55,20],[57,11],[29,2],[65,-4],[68,-10],[72,-7],[71,-9],[71,-15],[10,45],[16,55],[89,290],[36,107],[25,62],[38,108],[22,61],[29,81],[136,-8],[562,-7],[60,2],[72,2],[50,-2],[113,-4],[123,-4],[32,0],[68,-1],[26,-2],[30,-4],[32,-9],[48,-17],[40,-18],[37,-21],[44,-30],[71,-60],[66,-55],[39,-35],[34,-26],[40,-20],[34,-15],[24,-8],[56,-10],[53,-2],[47,5],[55,11],[32,10],[62,30],[48,31],[53,29],[105,62],[71,47],[71,46],[72,34],[35,13],[56,14],[63,8],[74,-2],[29,-3],[36,-10],[35,-10],[28,-11],[166,-67],[76,-28],[174,-67],[130,-47],[257,-96],[167,-64],[67,-26],[39,-17],[46,-26],[12,-7],[37,-27],[132,64],[167,65],[113,34],[22,6],[50,14],[52,13],[58,6],[8,1],[69,12],[60,14],[71,21],[74,26],[66,30],[98,61],[19,13],[72,47],[69,46],[383,267],[215,144],[84,55]],[[237194,39151],[-10,1],[-32,2],[-10,1],[-160,13],[-482,39],[-161,13],[-288,21],[-669,49],[-196,18],[-288,26],[-2,0],[-4,1],[-1,0],[-225,17],[-675,53],[-225,17],[-10,0],[-42,2],[-41,2],[-20,0],[-214,9],[-122,5],[-112,5],[-24,1],[-158,12],[-544,43],[-182,15],[-1767,142],[-344,27],[-344,27],[-106,8],[-105,8],[-23,-2],[-17,-3],[-50,-6],[-32,5],[-170,14],[-32,3],[-67,8],[-34,3],[-143,7],[-61,6],[-53,4],[-192,16],[-40,2],[-142,8],[-95,9],[-911,51],[-5,0],[-4,1],[-94,7],[-78,6],[-78,6],[-12,0],[-14,2],[-26,2],[-196,14],[-195,15],[-75,6],[-47,3],[-122,10],[-289,21],[-867,65],[-289,22],[-109,8],[-325,25],[-109,8],[-69,5],[-207,16],[-69,6],[-196,19],[-589,58],[-197,19],[-63,6],[-63,6],[-98,10],[-401,39],[-274,27],[-225,22],[-209,13],[-628,42],[-209,13],[-21,2],[-508,34],[-674,47],[-50,3],[-1600,105],[-1090,71],[-547,36],[-97,6],[-289,19],[-97,7],[-103,6],[-309,21],[-103,6],[-86,6],[-255,17],[-86,5],[-197,13],[-593,39],[-198,13],[-403,26],[-27,2],[-430,28],[-16,1],[-16,1],[-563,37],[-159,10],[-403,27],[-616,40],[-1217,80],[-52,4],[-156,13],[-52,5],[-318,18],[-811,47],[-142,10],[-317,25],[-65,5],[-194,15],[-65,5],[-210,16],[-629,48],[-210,16],[-672,52],[-730,55],[-1284,99],[-672,52],[-2,0],[-6,1],[-3,0],[-51,5],[-153,15],[-52,5],[-4,-1],[-11,-2],[-4,-1],[-263,16],[-788,49],[-263,16],[-175,10],[-526,31],[-175,11],[-285,22],[-852,66],[-285,22],[-7,1],[-55,3],[-124,8],[-557,34],[-186,12],[-66,5],[-197,14],[-66,5],[-4,0],[-15,1],[-5,0],[-333,24],[-485,35],[-516,38],[-302,21],[-16,1],[-16,2],[-101,7],[-303,24],[-101,8],[-3,0],[-9,0],[-3,0],[-100,5],[-11,1],[-14,1],[-13,1],[-286,22],[-77,6],[-121,9],[-4,0],[-36,2],[-109,6],[-37,2],[-69,4],[-259,19],[-13,1],[-147,6],[-103,12],[-526,33],[-249,18],[-259,20],[-82,5],[-130,8],[-289,18],[-102,7],[-87,5],[-43,3],[-60,4],[-13,1],[-219,20],[-4,0],[-69,4],[-5,1],[-387,21],[-56,4],[-785,56],[-21,0],[-103,9],[-211,15],[-172,12],[-221,15],[-204,14],[-605,39],[-9,1],[-205,13],[-7,1],[-22,1],[-8,1],[-59,4],[-178,11],[-59,4],[-5,0],[-28,2],[-100,8],[-33,2],[-41,8],[-93,14],[-4,0],[-159,11],[-123,7],[-64,4],[-112,9],[-119,7],[-73,5],[-28,2],[-121,7],[-39,2],[-107,6],[-289,18],[-98,6],[-67,4],[-13,1],[-106,6],[-147,15],[-259,20],[-196,19],[-5,1],[-13,1],[-1135,62],[-45,3],[-444,27],[-261,11],[-547,81],[-16,1],[-31,3],[-216,13],[-118,7],[-29,2],[-3,0],[-22,2],[-23,2],[-64,5],[-214,17],[-577,46],[-667,48],[-14,1],[-93,10],[-119,11],[-205,17],[-198,10],[-4,0],[-6,1],[-9,0],[-5,0],[-19,2],[-188,10],[-15,0],[-18,1],[-123,9],[-39,3],[-73,-1],[-179,14],[-10,1],[-205,8],[-90,5],[-240,15],[-192,12],[-317,14],[-415,24],[-645,38],[-858,54],[-749,55],[-519,35],[-664,44],[-260,15],[-228,13],[-289,17],[-299,20],[-89,6],[-7,0],[-228,13],[-405,23],[-267,17],[-66,6],[-66,6],[-44,4],[-44,4],[-20,2],[-399,24],[-291,25],[-230,19],[-250,16],[-31,1],[-26,2],[-202,12],[-129,7],[-104,9],[-373,20],[-202,10],[-283,20],[-848,60],[-283,20],[-229,17],[-687,49],[-229,17],[-72,6],[-214,18],[-72,6],[-57,4],[-170,12],[-57,4],[-31,2],[-7,1],[-39,3],[-47,3],[-25,2],[-6,1],[-111,7],[-642,46],[-191,11],[-39,3],[-149,16],[-96,5],[-299,18],[-381,27],[-25,2],[-792,46],[-165,14],[-239,16],[-272,15],[-31,1],[-174,9],[-34,3],[-203,15],[-92,4],[-207,14],[-10,1],[-8,0],[-259,14],[-4,0],[-86,9],[-44,10],[-38,8],[-69,-2],[-54,-2],[-184,15],[-319,26],[-34,3],[0,0],[-62,5],[-101,5],[-14,1],[-20,1],[-10,0],[-10,0],[-3,2],[-11,-1],[-14,1],[-226,11],[-215,16],[0,0],[-93,7],[-662,48],[-198,12],[-1163,49],[-28,1],[-9,1],[-38,2],[-865,48],[-1280,72],[-307,17],[-268,25],[-140,13],[-128,12],[-301,29],[-8,1],[-262,24],[-30,3],[-5,0],[-673,64],[-646,40],[-3,3],[-18,2],[-116,7],[-96,3],[-62,4],[-122,8],[-186,11],[-184,12],[-262,16],[-300,19],[-473,30],[-301,19],[-380,25],[-50,2],[-2123,134],[-1248,79],[-450,29],[-345,21],[-809,53],[-949,64],[-583,37],[-685,45],[-61,4],[-2789,179],[-397,18],[-32,6],[-1486,75],[-1310,55],[-31,2],[-112,8],[-30,3],[-578,28],[-1271,68],[-2,0],[-31,2],[-254,14],[-5,0],[-198,11],[-948,52],[-176,13],[-214,15],[-1753,120],[-4,0],[-1118,77],[-17,1],[-755,52],[-136,10],[-85,5],[-148,11],[-223,15],[-238,16],[-5,0],[-782,54],[-237,17],[-567,39],[-377,17],[-7,0],[-229,10],[-5,1],[-2,0],[-16,1],[-3,0],[-6,0],[-82,4],[-245,11],[-81,4],[-153,7],[-2,0],[-203,9],[-273,13],[-800,37],[-357,16],[-1,0],[0,0],[-124,6],[-372,17],[-125,6],[-31,1],[-129,6],[-480,22],[-118,6],[-42,2],[-457,21],[-115,5],[-1258,36],[-457,13],[-4,0],[-321,9],[-894,26],[-79,3],[-324,13],[0,0],[-19,1],[-115,4],[-400,17],[-133,5],[-46,2],[-120,5],[-497,20],[-166,7],[-14,0],[-43,2],[-14,1],[-7,0],[-146,6],[-458,18],[-153,7],[-205,19],[-616,57],[-67,7],[-139,12],[-14,9],[-1,0],[-39,3],[-235,21],[-825,72],[-239,21],[-36,3],[-106,10],[-170,15],[-149,11],[-61,4],[-45,4],[-23,2],[-49,3],[-19,2],[-23,2],[-237,17],[-714,52],[-238,18],[-4,0],[-4,0],[-228,16],[-710,52],[-234,17],[-3,0],[-104,8],[-314,23],[-105,8],[-18,3],[-54,10],[-18,3],[-16,2],[-46,4],[-19,6],[-12,7],[-17,-4],[-6,-1],[-48,-3],[-69,2],[-73,6],[-45,1],[-96,9],[-89,9],[-24,-1],[-35,3],[-14,3],[-29,7],[-26,0],[-18,-5],[-4,-2],[-22,-2],[-30,0],[-19,1],[-22,0],[-20,6],[-7,1],[-1,0],[-2,0],[-1,0],[-241,18],[-157,11],[0,0],[-18,1],[-549,34],[-241,16],[-344,21],[-1032,63],[-342,21],[-2,1],[-4,0],[-49,3],[-157,10],[-37,2],[-16,1],[-237,15],[-356,22],[-357,21],[-229,13],[-9,1],[-3,0],[-84,5],[-261,15],[-87,5],[-17,1],[-147,8],[-493,29],[-164,9],[0,0],[-118,7],[-356,21],[-118,7],[-9,0],[-81,5],[-268,15],[-89,6],[-1,0],[-77,4],[-146,9],[-85,6],[-77,5],[-3,0],[-8,-1],[-3,0],[-6,0],[-160,11],[-497,36],[-163,11],[-3,0],[-232,16],[-694,48],[-201,14],[-31,2],[-23,2],[-345,26],[-960,73],[-143,11],[-368,28],[-13,1],[-6,0],[-34,3],[-11,1],[-2,0],[-57,5],[-13,1],[-94,6],[-115,7],[-70,5],[-125,7],[-374,23],[-114,6],[-11,1],[-14,1],[-43,2],[-14,1],[-20,2],[-36,2],[-25,1],[-21,2],[-120,7],[-360,21],[-121,8],[-104,6],[-312,19],[-104,6],[-1,0],[-20,1],[-3,0],[-74,5],[-19,1],[-4,0],[-1,0],[-67,4],[-203,12],[-67,4],[-15,1],[-120,7],[-404,24],[-134,8],[-36,3],[-105,6],[-29,2],[-6,0],[0,0],[-113,7],[-336,20],[-112,7],[-13,1],[-416,25],[-19,1],[-133,7],[-744,41],[-465,26],[-448,24],[-57,3],[-318,18],[-1128,62],[-375,21],[-16,0],[-63,4],[-234,13],[-76,4],[-2,0],[-1,0],[-303,17],[-736,40],[-175,10],[-304,17],[-2,0],[-14,1],[-46,2],[-187,10],[-62,4],[-127,7],[-382,21],[-127,7],[-37,2],[-62,-1],[-48,0],[-247,16],[-99,6],[0,0],[-12,1],[-90,6],[-67,4],[-48,3],[-170,11],[-342,23],[-139,9],[-217,14],[-72,4],[-217,14],[-72,5],[-3,0],[-8,0],[-97,7],[-325,21],[-109,7],[-33,2],[-347,21],[-1139,71],[-364,22],[-12,1],[-4,0],[-5,1],[-677,45],[-639,43],[-859,58],[-546,33],[-634,39],[-48,3],[-40,1],[-12,1],[-52,3],[-56,2],[-19,1],[-21,2],[-7,0],[-23,1],[-7,1],[-8,0],[-25,1],[-2,0],[-6,1],[-22,1],[-14,0],[-433,31],[-124,8],[-607,42],[-677,37],[-464,25],[-6,0],[-180,10],[-23,-1],[-610,-4],[-54,0],[-149,7],[-1,0],[-3,0],[-1,0],[-1,0],[-3,0],[-2,0],[-47,2],[-639,33],[-5,1],[-1,0],[-24,1],[-11,0],[-34,2],[-30,2],[-3,0],[-27,1],[-1,4],[-2,5],[-2,6],[-1,3],[-77,212],[-1,1],[-120,366],[-97,274],[-64,179],[-14,32],[-18,43],[-27,63],[-28,63],[-18,42],[-15,34],[-43,101],[-6,12],[-12,19],[-88,140],[-65,103],[-230,277],[-19,23],[-84,98],[-9,11],[-15,17],[-14,16],[-9,11],[-44,52],[-9,11],[-63,41],[-79,65],[-6,5],[-31,14],[-16,13],[-48,42],[-42,42],[-60,53],[-3,3],[-85,55],[-52,42],[-64,42],[-74,42],[-52,55],[-74,70],[-60,65],[-4,4],[-73,56],[-43,69],[-11,30],[-20,54],[-43,97],[-31,83],[-28,99],[-4,13],[-21,125],[-21,111],[-32,125],[-21,97],[-21,126],[-21,69],[-32,84],[-42,97],[-42,69],[-61,94],[-3,4],[-31,55],[-64,56],[-42,56],[-63,69],[-5,5],[-58,51],[-43,69],[-21,28],[-42,56],[-42,55],[-53,84],[-53,69],[-31,42],[-53,55],[-32,56],[-47,52],[-16,18],[-21,13],[-11,14],[-21,28],[-58,70],[1,4],[0,8],[1,7],[0,5],[3,31],[-1,1],[-41,41],[-23,13],[-24,14],[-27,15],[-42,28],[-33,10],[-9,3],[-116,28],[-116,28],[-32,0],[-54,0],[-9,0],[-85,0],[-16,-2],[-35,-4],[-75,-8],[-27,-14],[-32,-18],[-68,-37],[-26,-14],[-80,-42],[-105,-42],[-106,0],[-6,2],[-90,21],[-11,3],[-9,2],[-84,14],[-75,25],[-10,3],[-116,14],[-137,69],[-116,84],[-53,97],[-8,21],[-13,35],[-10,27],[-11,42],[-11,111],[0,70],[0,36],[0,103],[0,125],[0,89],[0,8],[0,98],[0,1],[-1,6],[0,2],[-8,50],[-12,80],[-12,70],[-8,50],[-1,5],[-1,18],[-7,70],[-2,23],[-49,56],[-145,167],[-48,56],[-3,2],[-6,8],[-3,3],[-49,64],[-109,144],[-40,48],[-51,62],[-16,19],[-9,10],[-11,28],[0,37],[0,28],[0,5],[28,100],[57,206],[34,109],[19,57],[14,46],[16,51],[22,70],[20,86],[12,53],[8,66],[13,101],[11,97],[8,66],[4,40],[9,75],[5,44],[4,40],[-10,52],[-17,80],[-16,79],[-11,53],[-8,41],[-13,26],[-44,90],[-38,79],[-10,15],[-38,54],[-68,98],[-36,65],[-10,17],[-39,71],[-137,292],[-105,181],[-19,38],[-97,198],[-53,89],[-95,161],[-60,107],[-50,91],[-1,2],[-4,6],[-1,3],[-66,141],[-50,109],[-53,153],[-37,194],[-5,28],[-21,134],[-1,5],[-1,5],[-1,11],[-1,5],[-3,21],[-4,28],[0,33],[0,21],[0,33],[0,66],[3,34],[2,33],[1,14],[4,43],[1,15],[17,86],[14,67],[37,191],[16,87],[12,108],[9,86],[0,126],[-24,110],[-18,84],[-6,21],[-32,117],[-4,15],[-43,139],[-52,111],[-26,71],[-18,51],[-11,31],[-11,31],[-8,25],[-48,105],[-16,34],[-73,139],[-74,139],[-35,54],[-18,29],[-60,80],[-6,8],[-7,8],[-54,71],[-97,192],[-29,58],[-95,167],[-8,17],[-66,150],[-43,167],[-21,167],[0,6],[0,174],[5,64],[6,75],[3,80],[4,98],[3,101],[14,88],[18,120],[24,145],[8,50],[6,38],[1,2],[0,4],[1,2],[2,16],[4,23],[4,24],[3,16],[4,34],[5,52],[6,52],[4,35],[2,22],[1,9],[5,93],[1,31],[0,3],[1,9],[0,10],[3,39],[3,31],[18,178],[10,69],[9,24],[4,13],[12,36],[12,35],[10,28],[6,17],[27,66],[12,28],[3,7],[12,33],[9,19],[32,56],[63,83],[64,57],[31,27],[64,69],[8,11],[11,18],[10,1],[58,10],[83,9],[88,28],[8,2],[12,3],[62,10],[76,5],[48,7],[48,13],[18,4],[23,9],[13,23],[76,107],[22,81],[12,55],[13,81],[13,162],[-5,129],[0,11],[-1,13],[-2,9],[-3,10],[-16,51],[-21,83],[-21,70],[-53,139],[-61,121],[-2,4],[-26,52],[-16,32],[-74,83],[-21,20],[-22,22],[-21,15],[-52,40],[-79,62],[-27,22],[-88,81],[-17,16],[-18,10],[-77,45],[-74,84],[-53,83],[-5,16],[-16,54],[-53,125],[-34,98],[-29,83],[-53,139],[-27,70],[-36,97],[-35,124],[-8,28],[-7,84],[-3,42],[19,100],[2,11],[47,112],[6,13],[63,83],[11,14],[20,13],[43,29],[59,36],[10,6],[22,19],[25,22],[47,37],[6,5],[53,84],[21,83],[0,28],[0,41],[-20,52],[-1,4],[-29,100],[-3,11],[-1,2],[-11,19],[-13,22],[-7,13],[-21,28],[-21,17],[-25,20],[-15,13],[-18,15],[-5,4],[-37,42],[-37,42],[-85,69],[-74,84],[-25,38],[-1,2],[-37,57],[-23,36],[-12,19],[-28,42],[-10,11],[-14,15],[-39,44],[-27,30],[-36,40],[-11,13],[-53,97],[-32,84],[-21,69],[0,70],[0,83],[17,67],[4,17],[21,41],[21,42],[28,37],[4,5],[15,30],[6,12],[7,13],[25,56],[7,10],[3,4],[1,2],[14,21],[3,5],[5,8],[30,47],[53,98],[45,59],[14,19],[4,5],[74,111],[21,42],[32,68],[53,99],[10,42],[42,97],[22,83],[10,42],[0,14],[11,28],[-10,49],[-1,6],[-4,20],[-17,78],[-32,69],[-18,61],[-3,9],[-10,28],[-11,0],[-4,0],[-6,0],[-159,152],[-60,53],[-3,3],[-85,70],[-105,41],[-26,11],[-97,39],[-14,6],[-95,28],[-64,41],[-63,70],[-20,40],[-32,58],[-31,57],[-23,40],[-84,166],[-84,153],[-85,139],[-53,98],[-73,83],[-95,125],[-64,111],[-105,167],[-52,114],[-12,25],[-73,153],[-53,139],[-6,18],[-38,109],[-51,123],[-42,56],[-53,111],[-58,89],[-6,9],[-17,35],[-35,76],[-39,72],[-14,25],[-25,56],[-7,14],[-46,72],[-7,11],[-21,45],[-31,66],[-17,22],[-12,16],[-35,46],[-5,5],[-79,78],[-3,4],[-71,93],[-63,70],[-85,83],[-15,21],[-48,63],[-27,30],[-47,53],[-25,33],[-28,37],[-84,111],[-85,97],[-15,18],[-69,80],[-4,4],[-59,78],[-53,70],[-95,112],[-36,46],[-59,79],[-36,72],[-27,53],[-64,125],[-18,38],[-35,73],[-21,58],[-21,54],[-30,85],[-13,36],[-20,59],[-22,111],[-20,98],[-32,167],[-12,69],[-20,111],[0,98],[-21,125],[-42,83],[-42,56],[-53,42],[-53,41],[-63,56],[-17,11],[-67,44],[-64,42],[-63,42],[-21,28],[-86,36],[-178,75],[-4,1],[-91,27],[-106,69],[-105,56],[-74,69],[-85,70],[-52,83],[-53,70],[-21,55],[-21,42],[-11,70],[0,69],[0,70],[3,9],[8,32],[0,56],[18,70],[3,13],[21,112],[11,166],[0,84],[0,28],[0,125],[0,83],[10,67],[1,8],[10,78],[4,27],[17,98],[10,111],[16,105],[16,104],[17,80],[25,115],[29,127],[18,80],[1,6],[2,9],[0,2],[2,6],[1,6],[53,195],[42,139],[19,49],[28,73],[6,17],[21,83],[10,97],[11,125],[0,140],[0,166],[-11,167],[-21,167],[-31,153],[-6,20],[-26,91],[-42,97],[-32,84],[-32,60],[-14,31],[-17,34],[-43,91],[-42,90],[-84,111],[-85,97],[-22,17],[-51,39],[-48,29],[-41,24],[-28,16],[-94,56],[-22,12],[-20,10],[-28,11],[-2,1],[-32,12],[-23,10],[-28,7],[-29,8],[-15,4],[-34,8],[-11,5],[-15,7],[-37,16],[-84,28],[-99,35],[-18,7],[-105,28],[-127,41],[-105,28],[-116,28],[-106,42],[-60,29],[-24,12],[-4,1],[-102,27],[-74,14],[-42,0],[-7,0],[-4,-1],[-1,-5],[0,0],[-5,-18],[-2,-9],[-2,-9],[-16,14],[-23,20],[-19,15],[-5,4],[-5,5],[-10,9],[-62,52],[-34,19],[-124,67],[-135,113],[-24,36],[-73,110],[-17,25],[-4,12],[-50,126],[-12,30],[-2,14],[-5,37],[-14,106],[0,6],[-2,38],[-6,112],[-2,44],[10,184],[29,103],[29,106],[4,14],[3,12],[3,9],[25,82],[44,144],[31,72],[27,64],[25,59],[2,4],[23,53],[22,53],[25,57],[25,58],[39,92],[2,5],[17,130],[-5,139],[-26,148],[-25,130],[-10,127],[0,25],[1,96],[14,141],[1,4],[1,4],[6,24],[2,8],[17,63],[29,107],[16,84],[12,65],[1,4],[1,6],[1,6],[1,4],[2,8],[2,12],[2,13],[2,8],[1,8],[3,13],[2,13],[2,9],[3,15],[2,74],[1,40],[-2,165],[-2,64],[-3,90],[0,10],[0,10],[0,2],[-1,47],[-15,0],[-16,0],[-7,0],[-11,0],[-7,1],[-1,0],[-7,0],[25,108],[3,34],[4,35],[7,69],[17,86],[53,194],[11,80],[110,369],[39,120],[2,62],[54,428],[0,244],[-53,83],[-3,12],[-2,13],[-4,25],[-5,25],[-32,35],[-31,35],[-29,33],[-146,184],[-45,40],[-42,37],[-70,96],[-51,70],[-4,9],[-12,23],[-12,22],[-22,61],[-17,181],[9,322],[-23,204],[-6,19],[-36,111],[-238,497],[-28,86],[-123,271],[-29,83],[-11,73],[6,147],[8,221],[9,215],[48,488],[31,308],[-3,172],[-3,26],[-23,184],[-33,134],[-118,239],[-81,366],[-3,38],[-9,10],[-4,226],[-23,96],[-62,108],[-70,150],[-51,60],[-87,67],[-39,23],[-25,16],[-22,17],[-99,100],[-28,19],[-87,58],[-11,14],[-29,35],[-28,35],[-38,46],[-37,45],[-57,125],[-2,22],[-45,102],[-131,334],[-96,268],[-48,73],[-34,83],[-69,93],[-32,44],[-75,91],[-126,152],[-156,274],[-51,111],[-32,70],[-44,73],[-6,23],[-48,82],[-26,45],[-5,14],[-17,52],[0,93],[1,38],[-1,38],[15,89],[10,58],[18,67],[39,149],[8,29],[23,85],[14,51],[134,485],[3,153],[-43,222],[-5,23],[-61,220],[-9,6],[-14,55],[-5,18],[-79,239],[-14,109],[-14,35],[-31,215],[-20,138],[-10,45],[-82,341],[-327,612],[-46,88],[-34,52],[-36,86],[-15,35],[-48,67],[-98,197],[-5,45],[1,38],[1,27],[12,282],[-4,20],[-22,123],[-11,23],[-48,95],[-93,99],[-358,258],[-219,139],[-177,141],[-116,132],[-96,172],[-20,20],[-2,2],[-51,89],[-45,38],[-301,283],[-56,35],[-69,18],[-9,3],[-6,1],[-143,23],[-46,35],[-16,13],[-32,31],[-61,58],[-36,47],[-21,46],[-16,33],[-69,154],[-15,130],[-13,66],[-2,12],[-11,104],[-17,62],[-149,267],[-59,153],[0,22],[-113,196],[-61,107],[-12,25],[-50,108],[-14,55],[-6,38],[-25,152],[-22,134],[-9,7],[-56,322],[-20,152],[-50,217],[-9,10],[0,28],[-64,149],[-9,20],[-17,10],[-16,79],[-20,32],[-35,103],[-7,21],[-115,166],[-220,267],[-180,147],[-45,48],[-3,22],[-36,51],[-5,16],[-46,143],[-36,131],[-29,54],[-2,3],[-197,287],[-112,124],[-146,195],[-57,76],[-59,127],[-17,96],[-25,54],[-13,14],[-70,76],[-41,43],[-237,118],[-78,39],[-161,47],[-134,38],[-36,-9],[-29,16],[-181,18],[-204,20],[-82,17],[-106,21],[-262,10],[-40,21],[-44,23],[-13,13],[-83,86],[-421,360],[-68,38],[-126,105],[-29,36],[-6,9],[-24,31],[-34,70],[8,102],[68,258],[18,105],[1,10],[31,411],[63,500],[32,251],[-8,332],[-9,13],[-19,70],[-67,124],[-58,105],[-81,149],[-140,176],[-90,73],[-88,41],[-73,13],[-35,-6],[-66,-10],[-59,-35],[-59,3],[-45,24],[-8,5],[-31,60],[-14,64],[-9,6],[-17,137],[0,147],[9,22],[5,166],[11,57],[0,226],[-27,155],[-1,4],[-2,6],[-20,52],[-17,220],[-2,31],[-4,54],[35,278],[24,194],[45,185],[4,171],[1,71],[14,82],[31,60],[28,55],[17,30],[65,120],[31,13],[100,137],[130,178],[203,220],[69,75],[72,78],[14,16],[59,78],[5,8],[2,5],[46,122],[22,227],[3,34],[-11,192],[-14,257],[-14,83],[3,84],[6,159],[5,108],[19,165],[58,205],[20,73],[95,336],[5,17],[8,57],[-6,60],[-2,18],[-14,152],[-10,17],[-7,15],[-35,133],[-41,163],[-23,92],[-8,6],[-3,32],[-6,7],[-18,73],[-5,21],[-27,108],[-15,59],[-33,95],[-91,102],[-13,21],[-33,70],[-29,29],[-9,15],[-37,88],[-65,154],[-19,45],[-20,46],[-3,22],[-31,55],[-64,194],[-65,185],[-20,44],[-5,51],[-34,83],[-62,312],[-23,236],[-19,68],[-23,78],[-76,169],[-11,6],[-41,93],[-83,193],[-2,4],[-64,217],[-47,220],[-65,175],[-138,271],[-74,113],[-59,91],[-16,51],[-3,86],[-29,28],[-19,51],[-4,27],[-10,69],[2,165],[0,71],[-36,175],[-27,86],[-21,70],[10,41],[21,92],[84,246],[20,127],[16,344],[-4,162],[-4,118],[-31,188],[-37,77],[-81,124],[-23,35],[-65,48],[-42,60],[-4,109],[-2,35],[12,25],[58,171],[4,7],[50,94],[58,80],[107,109],[159,127],[224,88],[23,9],[110,-3],[99,13],[473,118],[10,3],[117,49],[56,40],[18,7],[54,18],[45,35],[37,36],[18,23],[20,24],[73,92],[43,49],[13,24],[91,101],[32,41],[7,9],[41,53],[25,20],[156,216],[30,39],[166,277],[132,268],[60,197],[16,125],[-22,149],[5,99],[17,80],[51,130],[113,411],[39,261],[-6,488],[11,54],[0,101],[-2,208],[28,146],[222,481],[45,112],[6,33],[5,34],[23,22],[8,9],[23,74],[6,26],[12,48],[33,133],[0,156],[-26,223],[-3,235],[37,169],[-14,435],[-22,123],[-12,63],[-56,131],[-40,79],[-186,211],[-81,140],[0,25],[-99,153],[-49,92],[-39,156],[-6,86],[25,48],[70,73],[73,151],[78,325],[22,283],[5,249],[44,242],[2,281],[35,218],[0,5],[19,93],[-11,43],[-9,28],[-1,11],[-2,94],[22,188],[-2,48],[-14,47],[-43,47],[-39,43],[-62,41],[-68,19],[-228,-3],[-40,-17],[-5,-2],[-37,3],[-84,108],[-76,191],[-12,124],[-3,373],[12,252],[5,127],[20,115],[-3,48],[17,73],[413,964],[65,170],[45,180],[3,6],[29,56],[9,98],[1,2],[39,130],[80,335],[0,16],[0,12],[6,8],[14,18],[48,171],[36,125],[80,138],[47,82],[49,116],[64,148],[79,328],[73,574],[8,16],[5,71],[7,88],[5,67],[37,162],[50,121],[3,6],[65,115],[6,22],[31,20],[31,54],[67,162],[40,188],[31,274],[-6,277],[-54,316],[-8,6],[-3,41],[-99,249],[-3,8],[-59,138],[-39,182],[-9,121],[9,121],[8,54],[7,7],[36,38],[174,305],[6,26],[28,25],[74,188],[39,226],[17,185],[8,385],[9,370],[17,80],[58,180],[71,218],[96,153],[6,9],[39,29],[152,12],[57,-28],[68,-77],[59,-105],[87,-67],[82,7],[5,3],[7,5],[3,3],[34,27],[89,104],[2,15],[19,19],[67,128],[41,143],[10,78],[-3,249],[-9,14],[-6,63],[0,2],[-10,120],[21,348],[37,376],[-29,429],[-5,52],[-50,296],[0,35],[-9,10],[-20,258],[-155,535],[-81,185],[-34,140],[0,134],[8,54],[-11,605],[-23,147],[-17,54],[-31,57],[-39,137],[-9,67],[-19,134],[-9,6],[-65,337],[-29,293],[-5,48],[13,48],[52,194],[206,605],[76,332],[68,296],[82,280],[91,304],[15,49],[24,80],[48,96],[-3,16],[22,9],[36,47],[35,46],[13,30],[10,24],[6,2],[22,7],[99,128],[90,137],[15,49],[44,145],[59,146],[43,246],[39,254],[45,102],[91,166],[101,239],[88,181],[21,161],[12,0],[103,238],[141,159],[3,8],[161,478],[124,206],[85,147],[42,86],[36,129],[49,103],[51,126],[50,112],[38,87],[49,88],[247,347],[16,44],[53,153],[18,63],[23,81],[13,97],[-8,132],[-158,213],[-99,94],[-28,35],[-42,53],[-29,111],[-21,102],[-14,101],[14,81],[42,159],[56,130],[112,172],[60,146],[33,97],[41,68],[19,36],[56,109],[124,280],[123,355],[41,214],[13,235],[-6,210],[-55,304],[-70,176],[-112,149],[-91,79],[-2,2],[-1,2],[-2,3],[-125,148],[-73,124],[-90,163],[-130,198],[-151,268],[-98,199],[-9,33],[-57,130],[-43,159],[2,147],[-60,325],[-54,226],[-10,0],[-13,0],[-187,468],[-84,166],[-31,45],[-160,299],[-9,16],[0,13],[0,6],[-3,3],[-11,10],[-23,79],[-3,208],[29,101],[101,210],[6,20],[21,12],[4,4],[111,235],[14,80],[0,70],[-7,14],[-2,5],[-5,134],[-65,178],[-28,44],[-150,233],[-58,136],[-4,11],[-14,92],[0,18],[0,85],[0,94],[1,5],[10,34],[1,18],[14,156],[17,201],[2,20],[-1,163],[-2,241],[-8,307],[0,24],[0,13],[9,106],[13,146],[18,108],[13,76],[60,262],[42,238],[25,86],[14,227],[22,162],[7,51],[0,14],[0,10],[3,122],[-31,96],[-70,82],[-41,36],[-59,33],[-25,15],[-12,6],[-56,8],[-64,9],[-35,5],[-48,32],[-25,35],[-17,67],[13,175],[4,51],[-2,109],[-1,89],[65,149],[42,64],[4,9],[68,144],[36,79],[5,10],[7,26],[78,299],[2,94],[4,148],[-37,118],[-10,28],[-27,77],[-82,124],[-62,83],[-277,165],[-183,83],[-54,32],[-9,8],[-15,15],[-39,39],[-25,24],[-74,71],[-157,43],[-21,13],[-32,42],[-74,70],[-10,0],[-53,69],[-137,97],[-95,84],[-21,28],[-53,69],[-85,56],[-95,83],[-21,42],[-84,111],[-11,14],[-42,70],[-21,27],[-106,167],[-10,28],[-63,97],[-32,56],[-63,111],[-11,14],[-84,139],[-32,42],[-53,55],[-21,42],[-53,42],[-31,28],[-43,14],[-42,13],[-126,56],[-64,14],[-42,14],[-53,0],[-63,0],[-95,28],[-42,27],[-42,70],[-32,56],[-11,97],[0,20],[0,22],[0,27],[0,42],[64,222],[21,42],[42,70],[10,41],[32,98],[21,55],[53,98],[11,27],[31,70],[21,69],[53,167],[21,42],[23,70],[9,27],[32,28],[10,97],[11,70],[52,70],[74,27],[127,0],[62,-9],[33,-5],[26,13],[90,43],[21,42],[21,111],[-10,42],[-32,83],[-11,14],[-52,125],[-32,70],[-84,125],[-53,41],[-137,42],[-85,28],[-211,83],[-116,42],[-169,56],[-63,14],[-222,97],[-95,56],[-169,139],[-42,55],[-84,125],[-42,84],[-95,167],[-64,97],[-137,181],[-84,97],[-95,111],[-53,70],[-127,180],[-42,56],[-106,97],[-31,70],[-74,125],[-21,56],[-95,166],[-85,139],[-158,223],[-63,69],[-148,98],[-42,28],[-106,138],[-53,112],[-74,194],[-10,84],[-201,681],[-42,97],[-95,139],[-63,56],[-137,111],[-85,70],[-200,139],[-85,41],[-158,84],[-74,42],[-84,69],[-64,70],[-74,152],[-52,56],[-43,42],[-42,48],[-52,119],[0,14],[-11,13],[-32,139],[-10,42],[0,70],[0,41],[0,70],[0,56],[0,55],[10,84],[0,69],[0,35],[0,35],[11,69],[0,56],[10,41],[0,47],[0,9],[-10,42],[-11,83],[-10,70],[-11,55],[0,56],[-10,56],[-11,83],[-10,42],[-11,55],[0,70],[-11,83],[0,70],[-10,97],[-11,83],[-10,84],[0,83],[10,70],[0,83],[0,48],[0,8],[0,37],[0,60],[0,84],[0,83],[5,27],[6,42],[0,39],[0,73],[0,83],[10,83],[0,112],[0,69],[22,70],[10,69],[11,56],[21,55],[21,42],[32,42],[10,28],[21,27],[21,28],[0,-14],[21,42],[32,42],[63,97],[32,56],[53,69],[42,28],[42,97],[21,98],[0,180],[0,56],[-21,139],[0,42],[32,125],[21,83],[42,125],[42,56],[74,83],[53,42],[63,111],[11,98],[11,139],[-11,69],[-53,153],[-21,56],[-53,97],[-10,83],[-11,140],[-21,55],[-21,70],[-11,55],[-10,111],[-11,42],[-10,139],[-11,56],[-21,153],[-21,69],[-11,153],[-21,84],[-63,166],[-32,70],[-74,167],[-31,83],[-42,139],[-11,56],[-32,28],[-21,27],[-21,42],[0,14],[-10,14],[0,14],[0,3],[0,11],[-7,0],[-4,0],[0,7],[0,7],[0,14],[-21,27],[-18,35],[-3,7],[-42,84],[-21,41],[-13,42],[-19,69],[-21,56],[-21,83],[-21,70],[-43,111],[-21,83],[-53,112],[-11,36],[-10,33],[-31,98],[-21,41],[-22,139],[11,56],[32,111],[21,28],[63,139],[11,28],[31,69],[11,56],[21,56],[11,13],[10,14],[42,28],[11,0],[4,6],[38,50],[21,41],[42,112],[11,69],[5,31],[16,94],[2,9],[9,47],[0,111],[-11,41],[0,2],[-21,68],[-21,42],[-63,97],[-32,28],[-53,70],[-32,28],[-105,111],[-42,41],[-64,70],[-31,14],[-85,83],[-21,28],[-34,34],[-16,16],[-179,178],[-204,203],[-158,153],[-74,70],[-116,111],[-63,69],[-106,111],[-38,44],[-36,40],[-52,69],[-21,42],[-11,0],[-21,28],[-32,69],[-10,14],[-11,98],[6,30],[5,25],[52,111],[32,42],[63,111],[43,56],[28,38],[56,73],[53,84],[84,139],[32,69],[49,104],[4,7],[33,44],[30,40],[116,153],[11,15],[52,68],[159,181],[42,56],[53,152],[10,98],[11,139],[-11,111],[-31,153],[-11,83],[-11,167],[22,97],[12,114],[9,81],[10,67],[0,3],[0,9],[-10,144],[-11,97],[-21,222],[-11,112],[-9,206],[-1,16],[0,111],[32,237],[31,111],[53,222],[32,125],[21,223],[10,83],[0,209],[-10,111],[-31,133],[-11,48],[-43,92],[-21,47],[-84,153],[-32,55],[-21,42],[-42,69],[-48,356],[-5,34],[95,153],[42,27],[116,56],[21,56],[-18,110],[-3,15],[-42,69],[-127,139],[-84,56],[-70,39],[-78,44],[-53,56],[-84,97],[-53,84],[-116,194],[-42,84],[-84,180],[-22,84],[-15,37],[-58,144],[-19,33],[-13,22],[-12,40],[-41,133],[-10,36],[0,83],[52,167],[43,69],[95,98],[42,69],[95,125],[42,70],[42,139],[21,97],[0,209],[0,97],[11,181],[-11,83],[-31,181],[-32,97],[-65,134],[-9,19],[-42,56],[-42,139],[-43,111],[-42,195],[-10,111],[25,73],[28,80],[10,28],[53,69],[95,84],[53,28],[84,83],[42,83],[85,112],[42,55],[42,153],[21,97],[42,167],[11,112],[10,152],[22,98],[52,194],[21,84],[74,167],[43,69],[105,139],[53,70],[74,153],[31,55],[21,42],[16,14],[16,14],[32,69],[10,28],[43,56],[3,9],[7,18],[12,54],[12,51],[3,14],[5,20],[0,84],[0,125],[0,83],[-28,149],[-4,18],[-7,24],[-16,58],[-9,29],[-31,112],[-42,111],[-3,7],[-8,24],[-1,4],[-73,201],[-21,42],[-74,153],[-21,55],[-95,139],[-42,70],[-85,181],[-31,83],[-32,125],[0,49],[0,7],[1,6],[20,91],[32,42],[53,56],[42,27],[53,-14],[52,0],[64,14],[31,0],[85,0],[63,0],[137,0],[43,0],[168,-14],[53,0],[64,0],[31,-20],[106,-7],[295,69],[21,0],[32,14],[74,-14],[95,-14],[74,-14],[73,-12],[11,-2],[53,-13],[105,13],[106,14],[2,1],[104,41],[95,70],[63,69],[53,56],[42,55],[42,70],[37,97],[5,14],[21,56],[-21,97],[-21,125],[-31,125],[-22,70],[-31,97],[-32,97],[-10,112],[0,97],[21,69],[52,42],[64,28],[95,14],[126,28],[64,27],[21,42],[0,84],[-21,83],[-21,70],[-32,69],[-42,56],[-53,83],[-21,42],[-211,166],[-95,84],[-32,69],[-10,84],[-11,83],[11,42],[42,42],[74,55],[52,70],[43,28],[52,0],[43,41],[52,56],[64,56],[63,13],[74,14],[63,28],[64,56],[52,69],[53,56],[85,42],[95,41],[73,42],[85,56],[74,83],[42,97],[32,139],[31,167],[11,153],[21,167],[21,125],[32,84],[42,83],[63,69],[74,70],[85,42],[84,41],[106,42],[105,42],[106,55],[116,70],[74,69],[63,70],[74,111],[42,111],[53,139],[63,112],[63,111],[53,111],[74,111],[85,112],[105,111],[74,83],[116,70],[116,69],[116,70],[169,97],[95,83],[21,98],[-21,83],[-42,56],[-42,28],[-64,69],[0,14],[-190,278],[-31,97],[-11,84],[-21,111],[-21,125],[-32,97],[-21,84],[-21,111],[-21,111],[-11,111],[-10,70],[-11,83],[-10,84],[-11,83],[-10,56],[-32,83],[-42,84],[-53,83],[-42,83],[-53,98],[-32,83],[0,98],[11,97],[42,111],[63,111],[39,44],[35,40],[53,55],[53,42],[84,56],[95,27],[85,28],[179,28],[148,42],[148,28],[179,41],[148,42],[169,83],[137,70],[84,56],[95,69],[95,97],[64,70],[52,125],[43,97],[21,84],[31,83],[21,56],[32,83],[0,70],[0,111],[-21,111],[-32,84],[-42,125],[-53,83],[-42,56],[-42,83],[-53,70],[-63,69],[-42,70],[-32,69],[-21,56],[-21,55],[0,42],[0,28],[-53,181],[-11,97],[11,69],[21,98],[32,69],[42,84],[53,97],[52,97],[43,98],[21,97],[10,97],[11,125],[0,112],[-11,83],[0,111],[0,84],[0,55],[0,14],[0,14],[0,14],[0,14],[0,14],[-10,14],[10,27],[0,28],[0,14],[11,28],[0,28],[10,42],[11,27],[11,42],[10,14],[0,28],[11,41],[10,28],[11,56],[0,28],[10,41],[21,56],[32,83],[21,98],[21,69],[121,334],[78,324],[117,230],[534,591],[349,323],[133,387],[-86,318],[-72,273],[36,138],[137,267],[260,0],[232,71],[19,73],[-1,72],[-3,110],[-142,165],[-256,214],[-169,128],[-103,77],[-110,157],[-92,220],[-68,263],[-28,249],[116,104],[205,104],[155,118],[6,261],[-72,208],[-114,199],[-42,56],[-53,69],[-63,84],[-32,41],[-52,70],[-32,56],[-21,41],[0,42],[0,28],[0,42],[-11,14],[0,41],[-21,28],[-10,42],[-11,41],[-21,84],[-11,42],[0,41],[11,70],[10,83],[32,97],[32,112],[31,83],[32,153],[21,125],[21,70],[21,55],[22,153],[0,125],[10,125],[11,167],[0,125],[-21,98],[-11,69],[-11,70],[11,83],[21,97],[21,125],[21,112],[21,42],[-10,0],[195,685],[10,309],[-14,98],[-8,10],[-60,91],[-66,141],[-34,248],[185,482],[87,375],[219,268],[230,74],[225,100],[220,286],[-32,309],[-92,151],[-185,384],[-196,480],[-79,357],[-147,499],[-181,462],[-39,395],[-134,832],[-227,819],[-210,778],[3,14],[-28,88],[-30,72],[-39,79],[-32,60],[-33,63],[-27,59],[-41,123],[-22,70],[-13,58],[-26,113],[-13,92],[-3,72],[0,56],[17,53],[32,76],[48,91],[62,85],[59,62],[64,62],[68,62],[36,26],[99,84],[61,47],[62,50],[80,41],[65,29],[72,25],[75,46],[74,49],[38,26],[45,47],[4,3],[8,8],[40,36],[55,56],[71,56],[58,42],[14,9],[34,22],[33,25],[28,21],[69,65],[28,24],[38,32],[65,62],[78,79],[17,19],[41,48],[21,31],[34,54],[47,79],[35,66],[24,42],[16,29],[43,79],[51,79],[53,72],[60,78],[57,99],[34,65],[35,43],[61,112],[50,97],[102,157],[56,76],[58,65],[114,117],[148,157],[10,11],[64,66],[52,76],[53,80],[61,120],[60,126],[79,164],[76,147],[57,111],[65,105],[76,130],[87,125],[87,131],[81,117],[75,87],[98,113],[97,112],[88,92],[80,83],[52,45],[144,135],[176,166],[76,80],[59,58],[43,44],[15,16],[55,77],[35,57],[47,86],[37,71],[37,80],[45,97],[56,107],[38,90],[33,55],[40,58],[50,53],[41,43],[60,60],[39,36],[7,5],[32,27],[46,35],[40,31],[50,36],[41,26],[73,36],[77,27],[161,46],[79,15],[81,8],[86,16],[133,12],[135,20],[92,20],[64,30],[74,63],[116,55],[126,56],[106,42],[116,42],[84,41],[53,28],[95,42],[11,0],[10,0],[211,111],[32,14],[74,14],[95,27],[63,28],[53,14],[53,28],[105,56],[159,55],[137,56],[93,41],[65,28],[137,56],[116,42],[85,28],[42,13],[21,14],[85,14],[84,28],[53,14],[74,28],[63,28],[74,41],[21,14],[53,42],[63,42],[63,41],[43,28],[42,14],[63,42],[64,41],[63,42],[10,14],[95,28],[43,0],[21,0],[21,-14],[31,-14],[32,14],[63,42],[53,41],[53,28],[11,14],[10,0],[21,14],[0,14],[21,14],[0,14],[74,69],[21,14],[11,28],[10,14],[11,28],[0,27],[32,56],[10,14],[32,28],[21,41],[32,42],[21,42],[26,46],[5,9],[0,14],[0,14],[-17,114],[-4,25],[-31,42],[-11,69],[-11,42],[-10,28],[-21,69],[-24,45],[-20,36],[-9,17],[-84,111],[-64,69],[-63,56],[-84,28],[-95,42],[-95,0],[-106,0],[-63,0],[-64,-14],[-63,-28],[-105,-56],[-74,-28],[-47,-20],[-17,-7],[-5,0],[-16,0],[-31,0],[-64,14],[-42,13],[-21,14],[-32,14],[-31,42],[-32,42],[-53,41],[-42,56],[-53,70],[-21,27],[-53,70],[-42,28],[-42,41],[-64,56],[-31,14],[-53,28],[-32,28],[-10,13],[-11,42],[-10,56],[0,55],[0,84],[21,83],[21,70],[21,69],[32,56],[84,153],[42,55],[85,139],[53,84],[95,111],[95,125],[105,98],[95,97],[127,83],[137,84],[95,27],[95,28],[95,14],[63,0],[11,0],[232,-56],[158,-41],[127,-42],[53,-14],[63,-28],[106,-13],[108,-14],[8,0],[95,14],[74,-14],[147,0],[116,14],[85,0],[84,13],[85,28],[126,14],[148,14],[82,8],[55,6],[116,-14],[106,0],[137,-28],[85,-14],[110,-13],[6,-1],[95,-13],[63,0],[6,0],[78,0],[106,0],[50,0],[55,0],[138,13],[105,14],[159,28],[190,42],[168,28],[148,13],[42,14],[21,0],[64,28],[63,42],[74,42],[53,55],[105,70],[106,83],[32,28],[42,83],[14,23],[39,61],[31,55],[53,70],[32,56],[52,97],[0,55],[-10,56],[0,70],[-21,111],[-11,69],[-21,70],[0,97],[0,111],[0,56],[5,18],[6,24],[10,28],[0,41],[0,42],[32,0],[10,42],[11,27],[21,56],[42,84],[42,69],[74,83],[53,70],[63,55],[64,42],[42,28],[84,70],[53,27],[63,42],[53,70],[11,14],[10,13],[11,0],[63,153],[21,70],[32,83],[42,84],[32,69],[32,70],[21,47],[10,22],[32,56],[3,8],[4,14],[14,47],[32,70],[10,42],[11,55],[21,56],[-11,41],[-10,28],[-21,28],[-21,28],[-32,69],[-32,56],[-31,42],[-64,55],[-63,28],[-116,14],[-42,-14],[-32,-14],[-32,-42],[-42,-41],[-74,-56],[-74,-69],[-52,-42],[-53,-14],[-64,14],[-42,0],[-126,42],[-53,13],[-21,14],[-32,28],[-21,42],[-21,42],[-21,27],[-21,56],[0,42],[0,69],[0,56],[0,28],[0,97],[0,28],[0,97],[-11,104],[0,49],[60,60],[89,34],[83,-16],[30,-7],[20,0],[75,-38],[99,-28],[19,-5],[21,0],[53,-42],[63,-41],[64,-42],[73,-28],[85,0],[53,0],[31,0],[21,14],[32,14],[32,14],[31,-14],[21,-14],[11,-14],[11,-28],[21,-14],[52,-14],[64,14],[31,14],[22,14],[21,0],[10,-14],[42,0],[11,-14],[21,0],[63,-14],[74,0],[53,14],[42,14],[64,14],[42,-14],[42,14],[63,14],[43,42],[73,42],[74,41],[21,28],[67,47],[54,49],[20,46],[10,34],[-3,100],[-14,180],[14,149],[37,154],[54,142],[94,156],[93,86],[110,56],[61,27],[137,9],[197,-38],[237,-47],[109,-49],[120,-60],[85,-20],[72,18],[48,27],[96,80],[61,71],[30,60],[4,47],[-29,166],[-49,89],[-48,60],[-135,134],[-109,100],[-134,122],[-55,112],[-44,75],[-73,60],[-106,63],[-93,91],[-117,82],[-106,65],[-37,53],[-37,85],[-4,11],[-79,73],[-69,87],[-60,104],[-33,45],[-76,93],[-51,45],[-30,31],[-49,53],[-43,58],[-43,36],[-87,51],[-96,64],[-120,72],[-307,155],[-96,67],[-97,91],[-82,76],[-140,167],[-107,91],[-93,107],[-10,24],[-192,129],[-90,80],[-143,116],[-63,71],[-103,107],[-120,107],[-103,144],[-93,129],[-82,149],[-83,149],[-59,89],[-90,140],[-72,143],[-134,198],[-111,180],[-98,140],[-91,127],[-71,102],[-66,107],[-90,91],[-47,31],[-89,56],[-63,26],[-74,40],[-89,56],[-8,5],[-55,35],[-36,34],[-40,31],[-80,73],[-69,51],[-111,71],[-130,54],[-103,53],[-115,22],[-115,27],[-120,49],[-115,33],[-104,18],[-117,34],[-78,31],[-81,60],[-103,31],[-54,49],[-93,51],[-87,49],[-28,11],[-26,11],[-35,17],[-1,1],[-49,22],[-16,12],[-41,31],[-36,8],[-111,25],[-115,47],[-86,33],[-90,53],[-104,49],[-39,34],[-93,55],[-103,40],[-84,23],[-58,31],[-132,69],[-91,46],[-206,87],[-191,105],[-168,106],[-134,63],[-115,49],[-175,95],[-149,56],[-106,51],[-218,114],[-139,62],[-79,31],[-187,107],[-191,106],[-146,96],[-72,20],[-159,47],[-108,33],[-64,20],[-155,60],[-136,42],[-173,49],[-114,35],[-7,2],[-179,-2],[-2,0],[-3,0],[-35,5],[-8,1],[-162,83],[-96,58],[-52,51],[-59,73],[0,16],[-160,223],[-110,239],[-57,184],[-17,39],[-20,134],[-4,109],[-7,209],[-34,302],[-40,201],[0,201],[88,321],[81,178],[41,90],[21,47],[37,80],[23,73],[29,240],[2,18],[49,137],[37,58],[119,152],[17,32],[18,6],[29,40],[51,68],[31,42],[189,207],[55,-1],[340,262],[366,336],[134,142],[22,23],[172,211],[164,176],[0,18],[135,155],[86,127],[131,196],[53,82],[37,58],[42,111],[14,74],[12,115],[-2,81],[-39,91],[-42,58],[-208,204],[-37,143],[3,135],[26,149],[17,58],[25,80],[35,109],[63,65],[67,75],[80,58],[35,16],[51,24],[50,16],[92,15],[94,-8],[91,-23],[105,-31],[122,-22],[114,4],[102,40],[94,58],[78,58],[46,47],[49,86],[57,134],[20,109],[-6,51],[-7,31],[-49,93],[-46,61],[-88,66],[-104,54],[-176,38],[-152,17],[-152,7],[-125,-42],[-145,-29],[-145,-25],[-98,-4],[-76,-5],[-142,54],[-117,120],[-72,129],[-44,136],[-7,135],[15,158],[51,149],[61,138],[13,49],[43,94],[35,80],[54,109],[51,91],[93,91],[130,109],[40,27],[49,-14],[103,-37],[135,-89],[203,-63],[37,9],[57,11],[41,25],[73,29],[74,4],[67,-9],[80,5],[147,-27],[157,-33],[89,4],[113,53],[81,63],[34,75],[-3,63],[-34,78],[-54,60],[-84,38],[-98,28],[-88,14],[-69,51],[-66,78],[-81,38],[-92,53],[-11,27],[20,11],[-3,15],[-21,25],[-28,18],[-22,15],[-34,25],[-68,46],[-74,60],[-61,20],[-17,58],[-27,58],[-55,102],[-71,83],[-71,62],[-54,96],[-32,104],[-41,180],[2,127],[5,176],[8,147],[34,178],[127,681],[264,278],[186,96],[352,182],[612,653],[275,223],[12,70],[30,166],[-179,431],[-208,950],[-35,162],[-296,709],[-211,334],[-601,153],[-190,50],[-180,47],[-295,139],[-190,125],[-275,195],[-179,153],[-49,30],[-331,206],[-176,322],[-5,9],[-9,17],[-137,459],[-3,51],[-8,143],[-36,139],[-65,252],[-36,138],[0,9],[0,17],[0,3],[0,207],[-1,3],[0,3],[-20,106],[-21,110],[3,46],[7,93],[-10,70],[0,14],[0,111],[-11,181],[32,153],[58,142],[90,219],[11,23],[105,213],[53,161],[-11,270],[2,21],[0,3],[20,190],[20,190],[1,125],[0,97],[0,7],[3,180],[2,115],[2,117],[2,113],[1,74],[-25,146],[-39,249],[-46,160],[-91,313],[-169,250],[-7,54],[-18,141],[-28,208],[109,261],[18,45],[103,296],[13,38],[-42,208],[-306,167],[0,111],[95,167],[-15,45],[-20,59],[-5,15],[-3,9],[-11,31],[-3,10],[-9,25],[-19,56],[-126,84],[-9,197],[-2,25],[-2,19],[-7,82],[-20,247],[-2,18],[-21,246],[-201,264],[-56,57],[-115,94],[-140,107],[-32,220],[8,160],[14,164],[-66,203],[-136,139],[-1,1],[-160,64],[-34,14],[-208,69],[-167,24],[-66,65],[-89,153],[-58,105],[36,109],[62,129],[-40,135],[-5,5],[-36,38],[-71,60],[-121,147],[-75,84],[-37,122],[-54,29],[-127,20],[-67,154],[-34,236],[-89,347],[0,109],[69,73],[45,85],[17,111],[-54,44],[-126,-22],[-120,4],[-88,85],[-112,125],[-69,53],[-76,-9],[-182,-20],[-176,-16],[-115,-48],[-67,93],[-71,147],[-35,146],[-6,347],[-33,179],[-7,22],[-49,111],[-106,67],[-14,75],[-12,76],[-57,98],[-97,62],[-79,-2],[-81,2],[-13,94],[-75,102],[-88,40],[-131,-45],[-164,3],[-110,100],[-126,164],[28,121],[-1,129],[-43,153],[-4,15],[-45,141],[-35,49],[-7,9],[-99,122],[-132,124],[-93,22],[-110,38],[-30,116],[-120,151],[-134,134],[-118,129],[-167,220],[-164,209],[-3,89],[39,114],[-10,84],[-58,96],[-71,91],[-148,185],[-146,180],[-136,135],[-203,120],[-147,3],[-201,24],[-35,34],[-14,64],[-202,545],[-178,367],[-57,113],[-74,183],[-107,196],[-43,73],[-70,120],[-56,125],[-32,71],[-15,53],[-7,23],[-40,82],[-41,87],[-25,64],[-15,51],[-22,80],[-56,138],[-35,71],[-12,74],[12,4],[-7,45],[-39,69],[-29,44],[-17,45],[-27,80],[-10,69],[-3,111],[-27,96],[-19,40],[-13,26],[-29,36],[-37,96],[-19,69],[-13,88],[1,103],[0,107],[-5,124],[-17,134],[-1,118],[0,60],[0,21],[3,90],[-24,75],[-50,76],[-46,56],[-29,49],[-13,55],[3,129],[16,156],[6,142],[-18,112],[-27,44],[-32,27],[-1,2],[-18,69],[-68,71],[-72,42],[-112,60],[-103,100],[-104,94],[-31,40],[-33,42],[-48,65],[-61,102],[-60,107],[-71,160],[-26,58],[-14,48],[-32,102],[-5,83],[0,14],[0,14],[0,28],[0,14],[11,14],[10,28],[11,27],[0,14],[10,14],[0,14],[11,14],[10,28],[21,28],[11,14],[21,13],[11,14],[10,14],[21,14],[11,0],[10,14],[11,14],[10,0],[243,111],[21,28],[21,14],[22,14],[21,27],[21,28],[21,28],[10,28],[22,28],[10,28],[11,27],[10,28],[11,28],[0,14],[21,14],[10,14],[11,0],[32,14],[10,27],[21,14],[11,28],[10,28],[0,42],[-10,27],[0,42],[0,14],[0,14],[10,14],[21,14],[11,14],[11,0],[10,14],[21,14],[21,27],[0,14],[0,56],[0,14],[-8,34],[-3,104],[0,2],[0,5],[-10,21],[-19,46],[-37,38],[-54,19],[-19,-2],[-8,11],[-21,0],[-21,0],[-11,0],[-10,0],[-11,0],[-21,-14],[-10,0],[-11,-14],[-32,-14],[-21,-14],[-21,-28],[-32,-28],[-31,-27],[-42,-28],[-22,-28],[-21,-14],[-21,-14],[-21,-27],[-10,0],[-11,-14],[-21,-14],[-11,-14],[-10,0],[-21,-14],[-11,0],[-10,-14],[-22,0],[-21,-14],[-21,-14],[-31,0],[-32,-14],[-32,0],[-21,0],[-21,0],[-21,0],[-32,0],[-10,0],[-32,0],[-32,14],[-31,14],[-26,12],[0,4],[-16,3],[-199,32],[-11,19],[0,17],[-12,10],[-32,14],[-31,28],[-32,42],[-32,27],[-31,28],[-22,28],[-26,9],[-11,-6],[61,-118],[0,-66],[-40,-23],[-103,-22],[-52,9],[-71,26],[-17,28],[-6,10],[-9,-1],[-25,-2],[-52,-54],[-34,-7],[3,32],[57,48],[11,67],[24,49],[36,75],[-5,57],[-20,10],[-13,-3],[-23,-4],[-16,-3],[-26,26],[-60,0],[13,51],[2,9],[-15,19],[-3,-1],[-12,21],[-11,28],[-10,42],[-11,42],[0,41],[0,28],[0,28],[-10,56],[0,13],[-11,21],[-55,57],[-65,-9],[-43,38],[-43,60],[-37,16],[-60,-9],[-37,-32],[-29,22],[6,54],[26,32],[0,14],[-1,43],[-40,58],[-18,12],[-5,13],[-11,27],[-10,15],[-11,41],[-10,14],[0,14],[-11,14],[0,14],[0,14],[11,41],[0,14],[-11,28],[0,14],[0,28],[0,28],[-10,13],[10,14],[11,14],[21,28],[21,42],[10,28],[22,14],[10,41],[11,28],[31,42],[32,42],[21,27],[32,28],[21,14],[21,14],[21,28],[29,9],[13,5],[32,41],[53,56],[31,55],[32,56],[32,56],[21,42],[10,27],[21,42],[22,28],[31,41],[42,42],[43,42],[42,42],[42,27],[32,14],[53,14],[52,14],[32,42],[32,14],[31,28],[32,14],[11,13],[21,0],[21,14],[31,14],[32,28],[32,14],[31,14],[32,14],[32,14],[31,14],[22,27],[21,28],[31,28],[21,28],[22,14],[21,0],[31,13],[11,28],[10,0],[11,14],[63,0],[21,14],[11,0],[10,0],[11,0],[11,0],[10,14],[0,14],[11,0],[8,22],[4,5],[53,62],[3,3],[6,19],[31,97],[6,18],[0,41],[-20,54],[-37,61],[-60,54],[-3,4],[-4,7],[-30,43],[-15,23],[-26,12],[-120,169],[-9,23],[2,48],[0,13],[0,14],[0,14],[10,14],[21,14],[11,14],[0,14],[0,14],[0,14],[-11,14],[-4,5],[-17,23],[-9,11],[-1,2],[-11,14],[-21,28],[-27,36],[-5,6],[-31,55],[-32,56],[-32,56],[-10,55],[-11,56],[-10,69],[0,56],[0,69],[-11,84],[11,125],[0,111],[0,42],[-21,55],[0,14],[-22,28],[-42,42],[-42,42],[-53,41],[-42,70],[-63,69],[-74,125],[-74,126],[-32,83],[-21,70],[-10,27],[-11,14],[-21,28],[-63,28],[-53,28],[-53,27],[-42,14],[-32,42],[-42,56],[-32,55],[-31,42],[-43,69],[-74,70],[-4,10],[-4,20],[-13,13],[-21,40],[-42,42],[-53,56],[-21,14],[-10,14],[-32,13],[-42,14],[-64,14],[-63,42],[-53,42],[-52,41],[-32,42],[-21,28],[-32,14],[-32,0],[-42,14],[-53,14],[-42,27],[-31,14],[-32,0],[-9,6],[0,5],[-31,35],[-38,8],[-144,99],[-31,28],[-11,14],[-21,28],[-11,28],[-21,27],[-10,28],[-11,28],[-10,14],[-32,28],[-21,28],[-21,13],[-21,14],[-11,28],[-21,28],[-11,42],[-21,69],[-10,56],[-11,69],[-10,70],[0,55],[-11,28],[0,42],[0,14],[0,14],[0,41],[11,28],[-11,28],[-10,28],[-11,28],[-32,55],[-21,42],[-31,41],[-21,42],[-22,28],[-10,42],[-11,28],[-10,55],[0,70],[0,41],[10,56],[0,42],[0,41],[-10,42],[-11,14],[-10,28],[-11,28],[0,27],[11,42],[0,28],[0,28],[10,55],[0,14],[0,14],[-10,42],[0,14],[-11,28],[0,13],[-21,14],[-11,28],[-10,14],[-11,28],[-10,56],[-11,55],[0,56],[-21,55],[-11,56],[-10,55],[-11,56],[-10,28],[0,42],[0,28],[-11,41],[0,28],[0,28],[11,28],[-11,14],[0,13],[-10,28],[-11,28],[-10,14],[-22,28],[0,14],[-10,27],[0,42],[-11,28],[0,42],[0,28],[0,27],[0,14],[11,28],[10,28],[0,14],[11,14],[0,27],[-11,14],[0,14],[-10,0],[-11,14],[-10,14],[-11,14],[-10,28],[-11,27],[-10,14],[0,28],[10,28],[11,14],[10,28],[21,28],[11,27],[21,14],[21,42],[42,42],[32,41],[11,14],[0,42],[10,28],[0,28],[-10,27],[-11,28],[-21,42],[-21,28],[-21,14],[-21,13],[-32,28],[-63,28],[-32,14],[-10,13],[-22,29],[-31,42],[-22,27],[-21,28],[-21,42],[-31,41],[-22,42],[-10,42],[-11,42],[-10,69],[-11,28],[0,28],[-10,28],[0,27],[-11,42],[-10,13],[16,5],[0,38],[-9,23],[-2,5],[-5,-1],[0,14],[0,28],[10,28],[11,28],[10,14],[0,27],[0,14],[0,28],[0,42],[0,28],[0,14],[11,27],[21,42],[21,42],[11,28],[10,27],[11,28],[10,28],[11,42],[10,28],[11,41],[0,42],[10,28],[0,41],[-10,28],[-11,28],[0,28],[11,55],[10,42],[11,56],[21,55],[21,42],[21,28],[11,28],[32,28],[31,41],[32,14],[21,28],[21,28],[21,28],[32,13],[10,28],[32,42],[21,42],[21,41],[21,42],[22,42],[42,28],[42,41],[21,14],[21,28],[21,42],[32,41],[32,56],[31,56],[32,69],[32,70],[31,83],[21,70],[7,48],[75,213],[-17,409],[-155,327],[-207,255],[-189,122],[-207,102],[-224,61],[-244,20],[-138,0],[-9,0],[-21,0],[-43,0],[-42,0],[-32,0],[-63,14],[-42,27],[-42,42],[-53,42],[-42,41],[-53,28],[-63,28],[-127,56],[-53,41],[-42,28],[-42,56],[-42,55],[-43,70],[-42,42],[-10,27],[-22,14],[-68,58],[-50,46],[-35,58],[-39,73],[-38,92],[-65,174],[-55,74],[-23,28],[-51,56],[-42,78],[-11,61],[-11,83],[-4,51],[-3,53],[-18,86],[-64,179],[-23,101],[-30,101],[-48,84],[-29,51],[-35,56],[-57,91],[-29,65],[-10,65],[-3,76],[-1,51],[1,64],[3,48],[16,64],[29,72],[26,38],[29,43],[22,91],[22,41],[42,41],[27,29],[55,52],[84,64],[100,85],[8,6],[60,53],[51,66],[16,25],[7,52],[-4,78],[0,50],[-29,76],[-7,42],[3,46],[-1,25],[22,61],[19,49],[30,39],[37,35],[40,10],[84,-15],[53,-19],[42,-20],[47,-27],[32,-22],[43,-12],[33,5],[104,-25],[78,-39],[30,-29],[27,-31],[38,29],[589,259],[85,28],[10,14],[32,14],[32,27],[2,3],[9,4],[86,76],[35,73],[-15,144],[-46,111],[-23,42],[-65,31],[-20,20],[-12,12],[-1,9],[-5,42],[-34,54],[-20,64],[-28,23],[-22,18],[-52,89],[-17,73],[-54,65],[-12,15],[-31,10],[-43,15],[-57,19],[-130,-4],[-45,-2],[-86,26],[-123,92],[-114,121],[-6,19],[-46,42],[-34,16],[-34,47],[2,20],[6,41],[-52,90],[-22,37],[-46,54],[-11,36],[-6,19],[-17,16],[-12,11],[-4,3],[-4,5],[-72,25],[-52,-16],[-51,-16],[-51,10],[-48,15],[-121,39],[-69,7],[-40,32],[-23,70],[0,44],[2,6],[10,26],[-4,99],[-2,32],[-43,76],[-17,29],[-32,40],[-33,42],[-18,23],[-26,95],[-14,19],[-14,74],[8,188],[-11,41],[-49,67],[-40,10],[-22,6],[-24,-12],[-2,-1],[-1,-3],[-8,-22],[-51,-48],[-53,-19],[-27,-10],[-30,0],[-50,0],[-29,0],[-100,20],[-12,4],[-111,43],[-26,10],[-59,35],[-30,19],[-78,48],[-140,86],[-37,22],[-15,14],[-81,71],[-12,11],[-92,108],[-11,3],[-46,80],[-23,51],[-22,49],[-18,40],[-57,92],[-52,121],[-68,92],[-63,84],[-126,108],[-46,25],[-52,74],[-28,76],[-13,14],[-39,40],[-13,30],[-24,53],[-60,77],[-160,121],[-54,60],[-32,83],[-54,92],[-17,18],[-6,7],[-11,26],[-29,67],[-32,36],[-8,8],[-52,83],[-7,2],[-4,1],[-2,7],[-4,16],[-13,12],[-18,18],[-16,15],[-38,38],[-27,25],[-23,38],[-20,51],[-5,67],[-55,96],[-3,25],[-37,64],[-92,120],[-8,10],[-11,32],[-3,27],[-6,47],[-12,22],[-16,32],[0,10],[2,108],[-28,47],[0,42],[3,2],[20,14],[48,-4],[72,150],[64,111],[151,265],[28,86],[3,9],[5,55],[7,82],[-22,91],[-20,82],[-17,68],[-21,90],[-29,55],[-14,66],[-35,79],[-63,144],[-99,152],[-1,1],[-46,105],[-11,46],[-11,44],[13,124],[7,67],[34,95],[65,162],[23,58],[101,251],[28,42],[18,25],[14,45],[8,13],[85,157],[13,24],[57,70],[215,204],[44,57],[68,89],[22,30],[24,31],[26,16],[108,66],[12,7],[186,76],[135,32],[92,2],[45,1],[29,16],[7,28],[8,31],[8,30],[37,42],[11,38],[12,124],[31,121],[4,92],[1,37],[7,161],[-34,111],[-58,252],[-37,74],[-28,56],[-49,96],[-100,197],[-92,135],[-74,111],[-52,114],[-74,108],[-6,23],[-69,95],[-8,29],[-132,153],[-86,48],[-43,12],[-132,-6],[-80,-35],[-120,-102],[-54,-28],[-66,-55],[-18,-15],[-48,-77],[-20,-53],[-23,-61],[-19,-29],[-27,-41],[-66,-39],[-119,-10],[-14,-1],[-16,-1],[-69,19],[-145,58],[-41,17],[-11,4],[-318,44],[-157,51],[-89,54],[-48,45],[-9,9],[-7,7],[-10,9],[-19,18],[-53,50],[-81,89],[-3,5],[-145,215],[-26,29],[-86,143],[-32,45],[-5,22],[-112,178],[-4,9],[-39,106],[6,12],[-58,271],[1,13],[2,223],[12,25],[-3,262],[-9,22],[-5,232],[8,58],[15,19],[-3,12],[17,37],[45,94],[-64,-1],[-34,206],[-30,184],[-28,169],[-14,82],[-3,25],[-12,85],[-32,186],[-24,186],[-5,34],[-24,128],[-9,66],[-4,31],[-18,165],[-6,39],[-44,272],[-7,45],[-44,267],[-6,36],[-78,465],[-24,163],[-11,71],[-44,298],[-16,107],[-106,723],[-9,60],[-31,203],[-27,172],[-38,241],[-6,43],[-16,110],[-2,18],[-95,656],[-8,54],[-48,297],[-11,66],[-19,115],[-38,231],[-25,193],[-12,92],[-15,116],[-10,62],[-9,54],[-46,300],[-88,560],[-13,84],[-132,850],[-11,67],[-9,55],[-29,193],[-167,1083],[-57,365],[-60,457],[-24,182],[-68,427],[-26,166],[-65,408],[-35,270],[-70,523],[-36,227],[-7,42],[-46,290],[-101,636],[-3,20],[-49,311],[-13,83],[-57,360],[-4,32],[-40,294],[-54,340],[-19,127],[-25,171],[-76,467],[-93,576],[-2,15],[-41,283],[-75,524],[-60,415],[-10,68],[-185,1217],[-66,433],[-98,638],[-9,59],[-65,320],[-20,239],[-53,348],[-141,919],[-43,284],[-56,373],[-40,264],[-42,281],[-20,115],[-48,310],[0,20],[0,10],[-17,107],[0,6],[-41,240],[-41,268],[-11,88],[-51,322],[-41,269],[-21,139],[-60,393],[-166,1090],[-5,41],[-9,64],[-20,150],[-15,110],[-100,638],[-120,794],[-183,1204],[-117,758],[-371,2430],[-14,94],[-63,411],[-48,330],[-224,1534],[-80,562],[-7,49],[-1,6],[-1,8],[0,5],[-2,15],[-174,1232],[-186,1317],[-51,335],[-21,141],[-16,112],[-51,361],[-163,1078],[-234,1552],[-161,1064],[-3,16],[-66,419],[-176,1290],[-112,810],[-82,576],[-103,700],[-13,86],[-4,27],[-25,171],[-152,1019],[-104,752],[-108,790],[-12,80],[-36,256],[-7,12],[-83,546],[-19,104],[-43,214],[-49,418],[-17,145],[-130,871],[-24,231],[-96,648],[-218,1508],[-1,5],[-152,1050],[-73,504],[-241,1661],[-131,903],[-159,1124],[-135,894],[-264,1819],[-222,1535],[-107,741],[-97,670],[-115,816],[-287,1938],[-3,42],[-226,1528],[-92,612],[-209,1389],[-403,2769],[-146,994],[-31,172],[-52,399],[-79,507],[-79,525],[-7,50],[-273,1671],[-3,20],[-121,875],[-148,1017],[-48,338],[-187,1314],[-182,1268],[-44,304],[-109,760],[-104,629],[-22,131],[-57,344],[-47,292],[-140,999],[-42,311],[-4,34],[-132,843],[-214,1365],[-27,173],[-101,674],[-62,381],[-56,342],[-1,3],[1,21],[-1,29],[0,15],[-1,14],[-2,29],[-3,28],[-5,30],[-5,31],[-4,29],[-58,376],[-10,58],[-8,56],[0,4],[-6,59],[-1,48],[0,11],[-1,7],[-37,247],[-42,278],[-85,571],[-104,697],[-106,705],[0,9],[1,13],[-31,283],[-38,153],[-119,794],[-236,1574],[-2,15],[-80,535],[-46,309],[-188,1255],[-284,1894],[-98,658],[-330,2199],[-46,217],[-249,1665],[-119,796],[-167,1118],[-47,316],[-21,137],[0,5],[-362,2418],[-4,26],[-82,550],[0,1],[-5,35],[-1,3],[-140,936],[-2,19],[-260,1740],[-1,5],[-85,565],[0,5],[-265,1808],[-12,75],[-266,1788],[0,3],[-3,32],[-9,43],[-6,19],[-262,1761],[-4,29],[-44,294],[-134,892],[0,0],[-5,35],[-51,260],[-62,480],[-32,236],[-26,206],[-11,81],[-174,1324],[-1,4],[-6,13],[-11,48],[-15,92],[-7,46],[-18,94],[-21,123],[-13,80],[-7,41],[-16,80],[-3,15],[-5,34],[-7,51],[-6,39],[-22,123],[-5,40],[-1,32],[3,33],[-105,717],[-2,12],[-11,77],[-2,13],[-172,1196],[0,0],[-336,2327],[-1,10],[-239,1681],[-1,1],[-17,121],[-8,55],[-161,1114],[-2,10],[-21,148],[-9,69],[-71,499],[-3,21],[-132,903],[-42,285],[-6,42],[-44,297],[-44,299],[-66,462],[-47,305],[0,2],[-3,21],[-75,479],[0,3],[-27,245],[-155,1006],[-65,417],[-33,213],[-1,4],[-78,503],[-49,280],[-40,226],[-38,257],[-6,39],[-303,2059],[-1,8],[-1,7],[-20,136],[-6,42],[0,2],[-74,496],[-61,417],[-1,7],[-34,231],[-1,10],[-141,953],[0,1],[-90,608],[-84,562],[-207,1389],[-264,1762],[-195,1307],[-22,149],[-6,41],[-134,896],[-25,167],[-44,291],[-80,541],[-52,344],[-6,41],[-17,115],[-8,50],[-298,1999],[-256,1712],[-111,740],[-87,307],[-6,36],[-4,29],[-250,1717],[-13,86],[-5,33],[-44,305],[-8,55],[-99,671],[-6,45],[-164,1117],[-358,2450],[-215,1471],[-67,455],[-78,531],[-22,153],[-84,573],[-67,462],[-9,60],[-95,666],[-51,349],[-5,34],[-452,3145],[-20,136],[-4,25],[-105,735],[-36,244],[-1,12],[-130,1476],[-318,2004],[-52,328],[-155,944],[-205,1309],[-9,60],[-63,412],[0,3],[-158,1035],[-374,2461],[-2,10],[-95,624],[-73,429],[-62,470],[-1,15],[-2,14],[-8,92],[-5,36],[-4,31],[-19,122],[-16,106],[-17,115],[-11,77],[-42,256],[-35,231],[-7,32],[-15,115],[-72,475],[-2,12],[-135,882],[-2,11],[-377,2469],[-234,1512],[-40,260],[-4,30],[-28,177],[-48,219],[-11,83],[0,4],[-33,297],[-106,656],[-179,1135],[-6,48],[-9,29],[-12,26],[1,43],[1,21],[-3,41],[-20,47],[-11,66],[5,85],[-11,105],[-1,3],[-64,420],[-220,1390],[-86,547],[-78,490],[-4,28],[-30,199],[-30,206],[-127,811],[-5,35],[-112,717],[-1,8],[-1,2],[-2,12],[-201,1378],[0,5],[-69,467],[-2,15],[0,3],[-1,3],[-2,13],[-202,1400],[-2,15],[0,2],[-1,9],[-378,2268],[0,1],[-43,266],[-2,11],[-388,2382],[-6,35],[-247,1551],[-126,774],[-279,1707],[-16,84],[-2,12],[0,2],[-6,33],[-88,539],[-2,12],[-104,632],[0,1],[-5,30],[-7,42],[-5,31],[-201,1220],[-6,39],[0,0],[-9,55],[-5,28],[-122,744],[-3,18],[-8,49],[-175,1017],[-342,2016],[-3,16],[-225,1320],[-9,53],[-6,32],[-1,10],[-3,16],[-114,671],[-8,43],[-145,853],[-25,187],[-41,193],[-47,296],[-11,65],[-2,13],[0,1],[-3,21],[-24,153],[-16,99],[-77,476],[-28,142],[-5,32],[-9,48],[-52,291],[-165,1075],[-32,170],[1,9],[-3,14],[0,3],[0,0],[-1,5],[-1,8],[-35,202],[-30,171],[-76,474],[-35,212],[-27,169],[-68,423],[-39,229],[-20,98],[-20,70],[1,4],[-1,30],[-2,20],[-3,21],[0,1],[-3,14],[-3,14],[-8,49],[-6,51],[-2,14],[-3,20],[-2,15],[-8,50],[-11,49],[-9,50],[-8,49],[-34,197],[-7,49],[-7,34],[-23,139],[-4,36],[-1,10],[0,5],[-2,9],[-1,10],[-2,11],[-8,52],[-8,51],[-26,151],[-25,151],[-43,251],[-32,200],[-26,151],[-36,199],[-25,150],[-7,50],[-3,20],[-3,10],[-3,18],[-3,19],[-3,9],[-3,9],[-4,9],[-5,10],[-1,0],[-7,10],[-70,351],[0,3],[-9,43],[-16,77],[-61,285],[-15,104],[-18,86],[-6,41],[-15,110],[-12,89],[-33,241],[-15,110],[-5,36],[-14,105],[-5,35],[-23,166],[-50,364],[-1,8],[-3,24],[-4,25],[-10,77],[-19,133],[-4,33],[-23,165],[-67,494],[-23,164],[-21,125],[-63,375],[-21,125],[-6,34],[-17,101],[-6,34],[0,4],[-2,10],[-1,4],[0,1],[-1,5],[0,2],[-2,14],[-2,12],[-7,40],[-6,39],[-4,26],[-4,23],[-3,22],[-23,136],[-8,46],[-17,101],[-51,307],[-17,98],[-1,4],[-5,34],[-18,105],[-5,28],[-1,7],[-5,31],[-16,93],[-1,6],[-4,25],[-24,142],[-71,427],[-22,127],[-2,15],[-45,264],[-132,790],[-45,264],[-59,357],[-97,574],[-83,497],[-60,358],[-2,9],[-15,91],[-51,300],[-16,97],[0,3],[-3,15],[-8,45],[-2,15],[-373,2532],[-2,11],[-143,972],[-50,339],[-122,831],[-31,206],[-25,170],[-234,1405],[-294,1766],[-200,1200],[-4,25],[0,11],[-73,438],[-6,36],[-52,313],[-351,2112],[-61,369],[-52,309],[-36,219],[-7,43],[-11,65],[-12,73],[-90,539],[-1,9],[-110,662],[-5,31],[-4,21],[-79,475],[-47,290],[-55,340],[-91,563],[-38,233],[-3,26],[-19,115],[-24,147],[-24,145],[-36,217],[-23,143],[-6,39],[-4,27],[-367,2260],[-1,6],[-86,530],[-65,400],[-17,109],[-260,1599],[-11,68],[-266,1752],[-22,146],[-85,559],[-134,889],[-120,790],[-550,3623],[-19,127],[-31,206],[-153,1003],[-110,727],[-9,59],[-50,355],[-6,27],[-33,216],[-15,105],[-14,92],[-4,32],[-152,1043],[-84,581],[-155,1066],[-120,825],[-48,335],[-96,658],[-17,118],[-2,15],[-87,611],[-13,86],[-39,272],[-25,183],[-12,77],[-31,220],[-83,581],[-2,11],[-7,55],[-40,289],[-69,514],[-1,8],[-31,230],[-187,1228],[-128,855],[-17,114],[-2,14],[-38,323],[-30,265],[-22,184],[-3,28],[-14,61],[-7,33],[-13,52],[-10,76],[-42,337],[-13,162],[-7,84],[-3,17],[-5,23],[-6,34],[-9,82],[-14,89],[-27,169],[-167,1065],[-62,423],[-3,22],[-66,465],[-86,597],[-37,250],[3,16],[-135,1059],[-55,440],[-2,9],[0,0],[0,7],[-50,744],[-15,227],[-76,569],[-90,679],[-58,432],[-3,26],[-100,747],[-142,1063],[-141,1060],[23,0],[68,-1],[23,0],[17,0],[51,-1],[17,0],[72,-3],[108,-3],[106,-4],[71,-2],[20,1],[29,0],[1,0],[88,-1],[30,0],[47,1],[51,-1],[151,-3],[51,0],[55,-1],[470,-9],[1576,-26],[304,-6],[221,-3],[327,-6],[980,-17],[327,-5],[26,-1],[78,-1],[26,-1],[16,0],[8,0],[73,-1],[25,-1],[332,-5],[996,-17],[332,-6],[59,-1],[179,-3],[59,-1],[17,0],[5,-1],[65,-1],[21,0],[236,-4],[706,-12],[235,-4],[9,0],[28,-1],[9,0],[28,0],[83,-2],[28,0],[23,-1],[216,-3],[47,-1],[351,-6],[1151,-18],[71,-3],[211,-8],[70,-3],[37,-2],[112,-5],[37,-2],[6,-1],[3,0],[25,0],[8,1],[1,0],[99,1],[136,-1],[707,-9],[236,-3],[30,-1],[91,-1],[15,0],[13,0],[2,0],[4,0],[11,1],[3,0],[35,1],[197,-2],[272,-4],[421,-5],[24,0],[207,-2],[160,-2],[479,-4],[138,-1],[19,0],[3,0],[64,0],[192,0],[64,0],[4,0],[87,0],[270,2],[69,0],[20,2],[2,0],[13,1],[5,0],[23,2],[10,0],[13,0],[568,-2],[1702,-5],[568,-2],[55,-1],[165,-1],[55,0],[42,-1],[126,-1],[42,0],[30,0],[89,-1],[30,0],[2,0],[7,0],[2,0],[50,0],[114,0],[38,0],[15,0],[35,0],[14,1],[41,2],[13,1],[7,0],[16,1],[3,0],[6,0],[23,0],[190,1],[494,3],[142,-3],[24,-1],[189,-5],[46,1],[139,1],[47,1],[9,0],[22,0],[5,0],[8,2],[8,1],[7,1],[18,-1],[7,-1],[1,0],[19,-1],[58,-4],[3,0],[16,1],[9,0],[26,1],[9,0],[24,0],[35,1],[19,0],[19,0],[21,0],[21,0],[461,2],[28,0],[301,2],[66,0],[52,0],[250,0],[37,0],[12,0],[16,-2],[11,-1],[10,1],[66,0],[262,1],[42,0],[45,0],[125,1],[376,2],[116,0],[9,0],[545,7],[11,0],[11,0],[1096,24],[411,11],[10,3],[30,7],[10,2],[18,0],[53,0],[18,0],[21,0],[17,0],[46,0],[17,0],[4,0],[10,0],[28,0],[9,0],[13,0],[20,4],[98,18],[30,6],[2,0],[32,-2],[31,-1],[188,-7],[61,-2],[2,0],[42,-2],[2,0],[135,9],[45,3],[5,1],[14,1],[15,0],[102,0],[34,0],[109,0],[326,0],[108,0],[1,0],[74,3],[68,2],[154,6],[75,3],[24,-1],[74,0],[25,-1],[4,1],[37,2],[122,9],[41,4],[19,0],[57,0],[19,0],[175,5],[525,17],[175,6],[0,0],[64,-1],[9,0],[57,1],[371,0],[65,-1],[10,0],[5,0],[3,0],[1,0],[23,0],[8,1],[8,0],[33,2],[122,6],[41,2],[27,1],[80,4],[27,2],[29,1],[89,5],[1,0],[14,1],[15,0],[15,0],[13,1],[252,10],[11,1],[5,-1],[7,0],[8,0],[134,-4],[105,-2],[11,-1],[11,0],[10,0],[11,0],[5,-1],[83,4],[10,0],[10,0],[7,1],[8,0],[60,2],[25,1],[108,4],[92,4],[75,3],[47,2],[110,4],[33,1],[47,2],[4,0],[53,0],[169,0],[2,0],[10,0],[12,0],[20,0],[8,0],[7,0],[1,0],[3,0],[1,0],[13,1],[26,1],[7,1],[138,8],[45,3],[427,-1],[44,2],[29,2],[57,-1],[41,1],[36,1],[9,0],[204,6],[86,1],[6,1],[154,5],[23,2],[26,0],[3,1],[12,4],[490,18],[31,0],[9,0],[169,1],[5,0],[86,12],[6,0],[5,0],[5,-1],[19,-2],[72,-9],[15,-1],[9,0],[4,0],[20,0],[74,0],[25,0],[6,0],[68,3],[220,8],[74,3],[1,1],[75,2],[228,8],[76,2],[35,0],[106,0],[19,0],[16,0],[46,0],[138,0],[46,0],[9,0],[4,0],[39,0],[13,0],[1,0],[2,0],[1,0],[7,0],[10,0],[9,1],[6,0],[37,3],[104,8],[7,0],[37,2],[3,0],[25,0],[82,0],[28,0],[64,0],[10,0],[180,13],[20,1],[43,-3],[23,-1],[67,-5],[23,-1],[11,-1],[34,-2],[11,-1],[20,0],[53,0],[8,0],[20,0],[4,0],[145,2],[448,7],[125,2],[25,0],[35,0],[10,0],[82,2],[15,0],[36,1],[11,-5],[32,-13],[11,-4],[56,6],[84,9],[82,9],[56,6],[3,-26],[48,1],[146,5],[49,2],[7,28],[24,-4],[69,-12],[23,-4],[3,20],[24,-3],[70,-6],[23,-2],[1,15],[24,0],[72,2],[24,1],[1,-9],[32,2],[65,5],[30,2],[16,2],[15,1],[5,0],[53,4],[171,12],[57,4],[51,4],[152,11],[51,3],[11,0],[16,1],[12,1],[69,6],[27,2],[15,1],[46,3],[15,1],[45,2],[136,7],[45,2],[111,-10],[331,-29],[110,-9],[50,0],[150,-2],[50,0],[12,0],[8,0],[10,1],[90,9],[30,3],[3,0],[2,1],[2,0],[3,-1],[3,0],[29,-2],[87,-8],[29,-2],[1,0],[1,-1],[4,0],[2,0],[35,3],[106,9],[17,2],[10,-1],[0,0],[8,-1],[26,-2],[78,-6],[27,-2],[28,-2],[2,0],[2,0],[95,10],[32,3],[18,2],[10,0],[142,9],[47,3],[1,0],[11,1],[1,0],[34,0],[12,0],[31,0],[93,0],[30,0],[2,0],[108,0],[330,0],[110,0],[10,0],[21,0],[92,0],[13,0],[18,2],[25,2],[74,8],[21,2],[4,0],[122,0],[27,0],[339,0],[120,0],[3,0],[33,3],[99,9],[3,0],[10,1],[20,1],[87,0],[260,0],[86,0],[33,-3],[4,0],[48,-4],[47,-4],[1,0],[19,-2],[13,-1],[4,0],[9,1],[45,4],[173,17],[58,6],[13,-3],[40,-9],[11,-2],[2,0],[96,3],[288,8],[88,3],[8,0],[39,0],[9,0],[110,2],[40,0],[6,0],[67,3],[217,6],[64,2],[9,0],[42,0],[125,0],[35,0],[7,0],[407,-8],[148,-5],[8,-1],[11,0],[19,1],[115,1],[38,1],[182,3],[547,8],[41,1],[142,3],[56,0],[160,3],[9,0],[28,0],[28,1],[88,4],[3,0],[144,8],[19,1],[108,5],[72,4],[19,2],[73,-1],[218,-2],[54,0],[19,-1],[53,0],[13,0],[11,0],[2,0],[12,0],[217,0],[77,0],[68,0],[204,0],[52,0],[16,1],[40,1],[37,1],[228,9],[70,2],[7,0],[80,-5],[145,-9],[96,11],[25,3],[55,6],[6,1],[17,2],[6,1],[104,0],[63,1],[502,5],[167,2],[5,0],[73,0],[18,1],[19,0],[195,2],[77,1],[29,0],[52,0],[33,0],[17,1],[11,-6],[5,-2],[10,-6],[4,0],[4,1],[52,1],[154,5],[34,1],[17,1],[128,1],[386,2],[111,1],[17,0],[15,0],[43,0],[15,0],[86,1],[200,1],[59,0],[15,0],[72,1],[19,0],[58,0],[20,0],[7,0],[24,0],[7,1],[12,0],[34,0],[12,0],[5,0],[14,0],[5,0],[7,0],[22,0],[7,0],[81,1],[242,1],[81,0],[1,0],[4,0],[2,0],[1,0],[5,0],[1,0],[18,0],[40,1],[15,0],[19,0],[20,0],[60,1],[1,0],[19,1],[5,-1],[15,-1],[4,0],[60,0],[167,-1],[13,0],[60,-1],[1,0],[1,0],[1,0],[8,0],[10,0],[53,0],[18,0],[11,0],[18,0],[80,-1],[325,-3],[109,0],[13,0],[250,3],[8,0],[782,11],[264,4],[396,-1],[25,0],[1091,-3],[73,0],[282,0],[96,-1],[4,0],[15,2],[35,1],[45,1],[59,2],[34,1],[76,0],[228,0],[75,0],[1,0],[41,0],[125,1],[41,1],[26,0],[2,0],[74,1],[26,0],[75,1],[178,1],[48,1],[64,1],[11,0],[134,3],[180,5],[222,5],[134,3],[140,5],[13,-4],[160,4],[70,2],[408,9],[139,3],[20,0],[76,1],[175,2],[487,5],[265,3],[239,3],[12,0],[335,7],[62,1],[50,2],[51,1],[200,4],[642,14],[54,1],[225,5],[56,1],[37,0],[112,1],[37,0],[179,5],[537,12],[133,3],[43,9],[2,0],[54,-3],[163,-8],[42,-2],[12,1],[36,2],[105,7],[35,3],[17,0],[211,2],[684,5],[227,1],[12,1],[43,0],[165,1],[55,1],[25,0],[6,0],[92,0],[30,1],[12,0],[37,0],[12,0],[61,0],[182,2],[61,0],[308,3],[923,7],[307,2],[17,0],[52,0],[10,1],[7,0],[127,2],[379,6],[39,1],[80,1],[3,0],[2,0],[3,1],[59,3],[179,9],[60,3],[125,-3],[10,0],[407,-8],[123,-2],[13,0],[29,0],[85,2],[29,1],[17,-1],[31,0],[19,-1],[16,-1],[1,-6],[6,2],[19,5],[6,2],[39,1],[114,2],[38,1],[30,-1],[25,0],[165,2],[8,0],[46,1],[4,0],[12,0],[4,0],[0,0],[180,0],[541,-1],[46,0],[124,0],[9,0],[2,0],[6,-1],[36,0],[35,0],[93,0],[42,0],[61,0],[183,0],[61,0],[82,0],[244,-1],[82,0],[23,2],[23,1],[46,0],[23,0],[92,-1],[278,-2],[92,-1],[130,0],[387,-2],[129,0],[116,-1],[348,0],[106,0],[10,0],[283,11],[848,31],[283,11],[-1,-11],[0,-31],[-1,-10],[72,0],[34,0],[317,0],[105,0],[138,0],[116,0],[13,0],[286,1],[134,0],[4,0],[394,0],[11,0],[127,1],[1044,-8],[394,-3],[38,0],[29,-1],[200,-5],[63,-1],[3,0],[13,0],[127,0],[420,0],[104,0],[36,1],[416,6],[1250,20],[407,6],[9,0],[11,-6],[34,-20],[11,-6],[4,-3],[136,4],[419,12],[140,4],[13,-2],[39,-6],[13,-2],[22,15],[71,1],[212,5],[71,2],[13,-4],[20,-6],[16,-10],[11,-8],[162,-10],[114,7],[575,-16],[143,-5],[63,-2],[74,-3],[34,1],[77,2],[29,1],[1,0],[406,4],[169,2],[2,0],[480,6],[566,7],[121,1],[71,1],[680,8],[465,6],[7,0],[7,0],[8,0],[7,0],[61,1],[227,2],[75,1],[1,0],[3,0],[1,0],[15,1],[4,0],[1094,13],[1632,20],[9,0],[1029,-35],[163,-5],[17,1],[141,5],[11,1],[11,0],[21,1],[30,-1],[69,1],[24,1],[75,4],[25,1],[6,1],[17,1],[6,0],[47,3],[141,7],[47,3],[14,1],[39,2],[1,0],[13,1],[11,3],[34,7],[11,2],[9,2],[13,-1],[67,-2],[22,0],[58,-2],[124,-2],[12,0],[38,5],[5,1],[28,9],[25,2],[32,-6],[97,-18],[32,-6],[173,2],[518,4],[104,1],[68,1],[74,-2],[220,-7],[4,0],[69,2],[94,2],[281,6],[72,2],[22,0],[8,0],[217,1],[93,0],[954,4],[264,1],[54,0],[140,0],[420,2],[122,1],[18,0],[117,0],[353,1],[90,1],[16,-1],[11,0],[11,0],[95,-2],[320,-7],[74,-1],[19,0],[14,0],[7,0],[7,0],[74,0],[265,0],[76,0],[3,0],[9,0],[11,0],[145,0],[466,0],[143,1],[7,0],[5,0],[7,0],[7,0],[601,-3],[1846,-8],[584,-3],[23,0],[9,0],[8,0],[35,0],[129,-1],[28,0],[15,0],[13,0],[35,0],[2,0],[5,0],[7,0],[0,0],[7,0],[8,0],[248,-1],[684,-3],[103,14],[261,35],[352,-1],[96,0],[957,-1],[226,0],[125,0],[26,0],[75,-1],[26,0],[62,0],[179,-1],[7,0],[62,0],[48,-1],[145,-2],[48,-1],[27,0],[79,-1],[26,0],[17,1],[51,2],[18,1],[19,0],[59,0],[19,0],[36,0],[107,3],[36,0],[172,0],[19,0],[499,0],[32,1],[140,-1],[266,-1],[231,-1],[567,-3],[265,-1],[36,-1],[108,0],[36,0],[29,1],[89,2],[29,1],[12,0],[35,0],[12,0],[23,0],[69,0],[10,0],[13,0],[27,0],[184,-1],[633,-3],[192,-1],[19,-1],[50,-1],[150,-3],[50,-1],[74,-1],[441,-2],[138,-1],[866,-4],[541,-2],[515,-2],[266,-2],[799,-3],[266,-1],[65,-1],[197,-1],[66,0],[124,-1],[371,-6],[124,-2],[38,1],[114,2],[38,0],[104,0],[310,-1],[88,-1],[15,1],[314,3],[30,0],[305,9],[913,8],[9,1],[47,1],[54,0],[2181,-9],[18,0],[30,0],[24,0],[270,-1],[89,0],[484,-2],[68,-1],[223,4],[36,1],[17,0],[153,0],[856,-2],[38,0],[12,0],[584,-2],[60,0],[17,0],[379,0],[149,-1],[36,0],[232,0],[55,0],[465,-1],[649,-2],[449,-1],[161,0],[24,0],[555,-1],[508,-1],[13,0],[178,-1],[58,0],[6,0],[281,0],[26,0],[156,-1],[97,0],[119,0],[115,5],[189,-3],[117,-2],[17,0],[6,0],[80,-1],[9,0],[73,0],[187,-1],[59,0],[81,-1],[173,-1],[65,0],[7,0],[17,0],[48,0],[13,0],[12,0],[11,0],[10,0],[4,0],[140,-1],[7,0],[225,0],[184,-1],[261,-1],[134,28],[6,1],[58,3],[84,0],[31,0],[32,0],[60,5],[32,0],[65,0],[96,1],[20,1],[30,0],[44,0],[106,0],[329,1],[35,0],[5,0],[13,0],[5,0],[54,1],[161,1],[40,0],[14,0],[1,0],[46,0],[35,0],[105,-2],[6,0],[16,0],[6,0],[145,-1],[435,-4],[145,-1],[144,1],[68,1],[219,2],[142,2],[143,1],[10,1],[31,1],[10,1],[15,1],[35,2],[9,0],[14,0],[18,0],[53,0],[17,1],[15,0],[43,0],[15,0],[94,1],[282,2],[94,1],[0,0],[15,0],[38,0],[7,0],[15,0],[4,0],[29,0],[45,1],[57,0],[33,1],[345,2],[9,0],[34,1],[37,0],[337,3],[30,0],[38,0],[188,0],[269,0],[8,0],[195,0],[100,-1],[246,0],[55,0],[100,0],[1,0],[57,0],[170,0],[56,0],[25,0],[74,0],[21,0],[4,0],[179,0],[536,0],[178,0],[385,-4],[1154,-12],[323,-3],[25,-1],[23,0],[14,0],[1,0],[3,0],[2,0],[7,0],[44,1],[32,-1],[250,-3],[84,-1],[1,0],[20,-1],[63,0],[21,-1],[170,-1],[511,-5],[122,-2],[48,0],[103,-1],[310,-3],[100,-1],[3,0],[93,-1],[236,-2],[3,0],[40,-1],[93,0],[28,-1],[83,-1],[28,0],[15,0],[46,-1],[15,0],[17,0],[48,0],[16,-1],[71,0],[211,-2],[71,-1],[208,0],[625,0],[26,0],[181,-17],[84,1],[19,0],[27,0],[206,1],[58,0],[26,0],[2,0],[81,0],[248,0],[83,0],[90,0],[272,1],[83,0],[8,0],[57,-1],[171,-3],[57,0],[1,0],[57,0],[171,-1],[57,0],[0,1],[35,-1],[42,0],[61,0],[35,0],[207,0],[620,-1],[206,0],[13,0],[39,0],[13,0],[54,0],[164,0],[54,0],[25,0],[76,0],[25,0],[26,-1],[79,0],[26,0],[277,0],[40,0],[952,-1],[317,-1],[44,0],[25,0],[106,0],[44,0],[0,0],[22,0],[7,0],[58,0],[21,0],[91,0],[273,0],[91,0],[122,-1],[58,-1],[541,-4],[180,-1],[19,0],[11,0],[91,-1],[30,0],[5,0],[82,-1],[261,-4],[87,-1],[3,0],[9,0],[3,0],[9,0],[173,-3],[154,-2],[1,0],[5,0],[206,-2],[360,-3],[227,-3],[53,0],[159,-1],[53,0],[38,0],[117,0],[38,0],[1,0],[41,0],[129,0],[510,2],[171,0],[78,-1],[86,0],[147,-1],[78,0],[96,0],[139,-1],[147,0],[96,0],[1,-1],[6,0],[1,0],[0,0],[31,0],[36,0],[200,-3],[67,-1],[16,0],[38,-1],[162,-2],[54,0],[26,-1],[191,-1],[337,-3],[312,-3],[216,-1],[22,-1],[7,0],[75,-3],[14,0],[30,-1],[43,0],[131,-1],[44,-1],[22,0],[66,0],[21,-1],[3,0],[280,-1],[849,-2],[283,-1],[1,0],[1,0],[468,-2],[78,0],[98,0],[3,0],[1,0],[35,0],[244,-1],[3,-2],[5,2],[13,0],[578,-2],[6,0],[1,0],[10,0],[9,0],[2,0],[8,0],[117,-1],[352,-1],[117,0],[96,-1],[289,-1],[96,0],[24,0],[43,0],[30,-1],[24,0],[6,0],[18,-1],[6,0],[5,0],[12,0],[5,0],[20,-1],[3,0],[69,-1],[23,-1],[70,-1],[27,-1],[69,-1],[65,-3],[33,-1],[39,0],[42,0],[10,-1],[67,-1],[4,1],[577,-8],[18,0],[52,0],[224,-3],[565,0],[48,0],[46,0],[25,-1],[214,-2],[70,-1],[1,0],[16,-1],[48,0],[15,0],[66,-1],[46,-1],[142,-4],[120,-3],[74,1],[112,0],[13,0],[131,0],[340,1],[90,-1],[144,-2],[172,-2],[14,-1],[237,-2],[266,-6],[173,-4],[4,0],[207,-5],[425,7],[61,1],[56,1],[166,-2],[21,0],[4,0],[14,0],[5,0],[3,0],[10,0],[4,0],[45,-1],[134,-1],[45,0],[47,-1],[81,-1],[61,2],[48,1],[97,3],[164,4],[129,-2],[97,-2],[37,-1],[43,0],[69,3],[37,2],[147,8],[28,2],[315,4],[98,-4],[0,0],[136,-5],[11,0],[6,0],[184,0],[35,0],[29,0],[64,0],[395,6],[45,2],[189,8],[22,1],[55,1],[205,1],[10,0],[15,0],[77,1],[151,0],[141,1],[300,1],[577,-2],[264,-1],[29,0],[7,0],[16,0],[48,0],[11,0],[12,-1],[23,0],[9,0],[144,-3],[248,-4],[211,4],[1,0],[152,8],[22,2],[87,2],[220,4],[26,1],[80,0],[95,0],[14,0],[36,1],[111,4],[1,0],[36,-2],[37,-3],[1,0],[110,4],[24,1],[13,0],[86,-2],[28,0],[231,0],[86,0],[74,0],[60,0],[148,-1],[14,-1],[7,0],[67,0],[19,-1],[57,-1],[9,0],[11,-1],[5,0],[16,0],[5,1],[8,-1],[12,0],[9,0],[1,0],[7,0],[25,-1],[64,-2],[13,0],[25,0],[84,1],[198,0],[55,2],[12,1],[72,1],[19,0],[57,0],[19,0],[38,1],[36,0],[221,1],[74,1],[30,0],[91,1],[30,0],[2,0],[6,0],[2,0],[66,1],[8,0],[221,6],[74,2],[45,1],[84,0],[98,-1],[220,2],[70,3],[117,4],[13,0],[68,0],[191,0],[14,0],[68,2],[17,1],[54,1],[17,1],[13,-2],[25,-4],[12,0],[13,0],[161,-1],[483,-3],[161,-2],[135,-1],[404,-2],[135,-1],[31,-1],[94,0],[31,-1],[46,0],[137,-1],[46,0],[36,0],[11,0],[99,0],[436,0],[145,0],[52,0],[153,0],[51,0],[83,0],[249,0],[84,0],[23,0],[72,0],[24,0],[91,0],[273,0],[91,0],[12,0],[10,0],[66,0],[22,0],[101,0],[305,0],[86,0],[8,0],[7,0],[3,0],[8,0],[2,0],[36,0],[106,0],[36,0],[161,0],[483,0],[79,0],[82,0],[36,0],[107,0],[36,0],[203,0],[7,0],[629,0],[24,0],[186,-1],[313,-1],[705,-2],[233,-1],[138,0],[174,0],[33,-1],[97,0],[33,0],[23,0],[72,0],[23,0],[121,-1],[361,-1],[121,0],[338,-1],[1016,-3],[339,-1],[7,0],[152,-1],[137,0],[341,3],[159,2],[19,0],[57,1],[19,0],[16,0],[49,1],[17,0],[4,0],[161,2],[497,4],[165,2],[52,1],[77,1],[78,0],[23,1],[14,0],[14,0],[231,-1],[21,-2],[28,0],[182,7],[8,0],[25,0],[9,1],[15,0],[24,0],[23,0],[16,1],[13,0],[19,0],[20,0],[13,0],[18,0],[28,0],[27,1],[18,0],[9,0],[31,-2],[729,10],[163,2],[97,0],[277,5],[277,4],[98,2],[62,-4],[75,0],[74,1],[50,0],[50,0],[105,0],[43,0],[40,0],[562,2],[188,1],[103,0],[308,1],[103,0],[202,1],[108,0],[93,1],[422,1],[415,1],[7,0],[151,1],[152,0],[33,0],[98,1],[33,0],[3,0],[20,0],[69,0],[23,0],[61,0],[185,1],[61,0],[180,1],[311,1],[226,-2],[179,-2],[1097,-11],[31,0],[25,0],[58,-1],[173,-2],[58,0],[6,-1],[19,0],[7,0],[212,-2],[637,-6],[212,-3],[12,0],[35,0],[11,0],[63,-1],[188,-2],[63,0],[37,-1],[112,-1],[38,0],[75,-1],[224,-2],[75,0],[60,-1],[182,-2],[61,-1],[36,0],[0,0],[109,-1],[36,-1],[20,0],[61,0],[21,0],[1,-1],[2,0],[1,0],[22,0],[66,-1],[22,0],[29,0],[87,-1],[29,-1],[477,-4],[1431,-14],[477,-5],[118,-1],[354,-4],[118,-1],[85,-1],[254,-3],[61,0],[24,0],[224,-3],[672,-6],[225,-3],[14,0],[47,0],[183,-2],[61,0],[911,-10],[408,-4],[43,0],[47,-1],[80,0],[43,-1],[213,-2],[638,-6],[212,-2],[52,-1],[157,-1],[52,-1],[262,-2],[532,-6],[255,-10],[262,-11],[-6,233],[-15,532],[126,1],[176,1],[376,3],[1127,8],[351,3],[25,0],[265,2],[409,3],[385,3],[265,2],[276,2],[78,1],[751,5],[276,2],[181,1],[545,4],[181,2],[115,0],[347,3],[116,1],[45,1],[137,1],[45,1],[19,-1],[57,0],[19,0],[63,1],[189,1],[63,1],[13,0],[38,0],[12,0],[80,1],[241,2],[80,1],[3009,27],[223,3],[773,10],[43,0],[230,1],[1,0],[288,2],[483,8],[123,3],[213,5],[10,1],[535,16],[333,15],[393,8],[186,3],[186,4],[511,9],[511,10],[21,0],[21,1],[992,20],[1346,27],[345,6],[99,0],[21,0],[659,14],[235,5],[37,1],[51,1],[47,1],[11,0],[13,0],[11,1],[951,20],[536,8],[12,0],[418,11],[168,5],[522,7],[1933,38],[261,5],[737,15],[76,1],[3,1],[4,0],[47,1],[1,0],[51,1],[18,0],[27,1],[36,1],[98,1],[14,1],[4,0],[6,0],[5,0],[5,0],[9,0],[17,1],[49,1],[67,2],[927,34],[148,4],[58,2],[463,13],[65,1],[7,0],[126,3],[131,4],[23,0],[22,1],[82,2],[67,1],[255,6],[43,1],[55,1],[4,0],[3,0],[7,1],[105,2],[54,1],[7,-1],[9,2],[89,2],[119,3],[328,8],[654,15],[467,14],[53,1],[16,1],[66,1],[223,5],[253,5],[144,2],[62,2],[14,0],[14,0],[18,0],[110,3],[197,3],[118,2],[261,3],[42,1],[226,2],[204,7],[328,10],[19,1],[9,-2],[35,2],[14,1],[3,0],[819,23],[111,1],[626,6],[166,6],[80,-4],[72,-2],[485,27],[285,10],[61,2],[39,2],[313,15],[110,5],[60,3],[986,40],[740,28],[1099,44],[573,21],[909,30],[569,19],[779,26],[9,1],[166,5],[2,0],[363,13],[342,9],[687,19],[214,7],[121,5],[41,1],[148,5],[1180,42],[160,5],[107,3],[157,5],[41,1],[355,11],[54,1],[29,1],[72,2],[737,29],[147,4],[633,18],[187,6],[596,19],[587,19],[20,1],[13,-1],[14,2],[16,1],[12,-1],[8,1],[600,20],[347,7],[233,4],[61,1],[97,2],[5,1],[6,-1],[92,2],[2866,54],[51,1],[1268,15],[10,0],[66,-61],[21,-22],[18,-23],[19,-25],[30,-39],[91,-102],[13,-7],[97,-20],[59,-22],[76,-47],[64,-52],[53,-53],[42,-50],[12,-23],[8,-23],[8,-53],[-1,-27],[-4,-24],[-29,-71],[-13,-16],[-38,-25],[-26,-25],[-12,-12],[-13,-26],[-10,-31],[-3,-33],[2,-36],[8,-23],[16,-18],[19,-13],[79,-18],[36,-11],[32,-10],[62,-43],[23,-15],[21,-7],[41,-15],[54,-20],[112,-69],[22,-29],[14,-33],[8,-41],[3,-13],[15,-28],[0,-14],[-8,-21],[-25,-45],[-23,-24],[-21,-10],[-154,-28],[-29,2],[-38,10],[-29,-6],[-31,-23],[-38,-45],[-60,-62],[-31,-42],[-5,-29],[9,-30],[58,-78],[41,-70],[17,-45],[4,-43],[-7,-49],[-6,-15],[-8,-11],[-4,-3],[-15,-8],[-18,-4],[-80,18],[-41,4],[-46,-11],[-44,-26],[-18,-21],[-27,-56],[-17,-26],[-25,-24],[-70,-46],[-38,-36],[-12,-12],[-82,-98],[-11,-21],[-6,-22],[-2,-52],[1,-37],[8,-36],[12,-14],[15,-10],[60,-12],[35,-14],[8,-10],[4,-10],[3,-44],[-5,-19],[-15,-23],[-66,-60],[-33,-25],[-32,-47],[-44,-44],[-13,-18],[-19,-13],[-30,-7],[-24,2],[-23,9],[-33,26],[-77,72],[-60,72],[-28,22],[-30,9],[-22,-5],[-23,-17],[-5,-4],[-15,-28],[-20,-58],[-37,-107],[-9,-8],[-2,-7],[-3,-14],[-1,-58],[17,-77],[15,-42],[39,-79],[7,-25],[8,-26],[38,-78],[6,-22],[2,-23],[-2,-22],[-7,-24],[-11,-19],[-15,-17],[-17,-13],[-19,-10],[-56,-12],[-46,3],[-95,-7],[-80,21],[-70,8],[-15,4],[-71,18],[-37,6],[-31,-1],[-19,-10],[-8,-7],[-11,-15],[-2,-21],[3,-21],[11,-31],[8,-15],[10,-18],[20,-29],[2,-2],[1,-2],[1,-2],[5,-7],[23,-23],[5,-4],[4,-5],[21,-21],[10,-18],[8,-56],[-23,-81],[-23,-42],[-130,-156],[-49,-55],[-112,-152],[-40,-41],[-60,-49],[-25,-34],[-9,-11],[-34,-32],[-4,-5],[-11,-17],[-22,-47],[-5,-17],[-8,-34],[-2,-30],[2,-123],[-1,-38],[-2,-13],[-18,-35],[-24,-26],[-21,-30],[-30,-52],[-23,-53],[-20,-61],[-14,-60],[-3,-36],[4,-36],[15,-87],[16,-36],[20,-22],[50,-39],[86,-62],[52,-32],[50,-26],[60,-25],[3,-1],[99,-28],[33,-13],[55,-30],[55,-40],[57,-46],[15,-20],[9,-24],[8,-40],[-1,-36],[-9,-21],[-2,-3],[-19,-18],[-52,-16],[-102,-18],[-140,16],[-65,16],[-36,4],[-40,1],[-7,1],[-13,-6],[-10,-10],[-6,-11],[-2,-16],[12,-125],[8,-25],[20,-42],[10,-16],[16,-17],[24,-26],[26,-30],[103,-144],[80,-99],[52,-57],[69,-95],[60,-75],[12,-10],[62,-35],[19,-17],[16,-23],[14,-27],[10,-31],[5,-28],[2,-40],[6,-26],[48,-117],[4,-47],[-3,-21],[-5,-20],[-7,-13],[-22,-20],[-10,-4],[-11,2],[-22,18],[-9,14],[-10,23],[-42,44],[-24,13],[-88,31],[-14,9],[-12,14],[-7,16],[-24,81],[-7,35],[-22,49],[-11,14],[-30,23],[-26,13],[-24,10],[-50,24],[-8,4],[-24,18],[-66,-6],[-94,-8],[-23,4],[-20,9],[-27,22],[-102,67],[-77,52],[-56,37],[-61,34],[-68,31],[-7,2],[-31,7],[-41,0],[-23,0],[-18,-2],[-80,-19],[-25,-11],[-20,-19],[-29,-68],[-2,-27],[7,-43],[7,-20],[17,-56],[53,-81],[13,-17],[72,-71],[9,-10],[4,-3],[7,-9],[45,-53],[7,-18],[4,-32],[-8,-12],[-30,-34],[-7,-9],[-22,-17],[-13,-10],[-18,-10],[-32,-7],[-31,2],[-11,-1],[-27,-3],[-76,-21],[-12,-11],[-11,-20],[-5,-20],[0,-19],[7,-29],[13,-25],[66,-82],[15,-18],[108,-81],[10,-8],[40,-42],[5,-7],[39,-55],[92,-160],[51,-94],[14,-42],[40,-126],[2,-8],[51,-106],[19,-32],[3,-5],[63,-76],[53,-52],[22,-16],[15,-3],[17,4],[18,18],[11,16],[21,31],[22,19],[6,12],[23,20],[4,4],[32,4],[38,12],[49,-3],[40,-7],[28,-5],[92,-25],[24,-15],[16,-17],[35,-53],[60,-132],[10,-42],[6,-51],[12,-96],[24,-65],[7,-47],[13,-25],[104,-121],[65,-75],[21,-28],[13,-13],[58,-53],[21,-15],[37,-44],[13,-25],[10,-39],[4,-31],[2,-14],[-2,-28],[0,-14],[-7,-38],[-16,-15],[-21,-11],[-23,-2],[-51,-5],[-29,5],[-18,10],[-25,27],[-23,32],[-11,14],[-31,17],[-41,10],[-53,6],[-46,0],[-7,-1],[-38,-4],[-14,6],[-4,-2],[-44,4],[-35,28],[-33,12],[-32,12],[-35,9],[-19,-1],[-17,-13],[-12,-15],[-22,-27],[-16,-43],[-11,-61],[-17,-79],[-3,-27],[4,-56],[-3,-21],[-10,-27],[-18,-30],[-19,-20],[-22,-14],[-39,-7],[-38,2],[-36,7],[-29,14],[-39,34],[-30,32],[-7,9],[-58,79],[-25,43],[-8,13],[-104,126],[-52,80],[-32,28],[-12,11],[-26,34],[-16,10],[-31,19],[-13,16],[-11,12],[-61,76],[-57,71],[-30,32],[-13,11],[-11,22],[-7,10],[-20,11],[-11,1],[-11,-3],[-127,-86],[-17,-7],[-16,-15],[-32,-30],[-75,-47],[-120,-102],[-51,-59],[-5,-14],[-14,-23],[-10,-23],[-6,-26],[0,-9],[0,-18],[16,-65],[14,-29],[26,-54],[48,-72],[26,-41],[80,-134],[8,-37],[4,-38],[-4,-26],[-7,-26],[-17,-32],[-24,-28],[-3,-3],[-20,-30],[-38,-34],[-43,-30],[-21,-10],[-5,-3],[-25,-6],[-75,2],[-45,1],[-16,-3],[-13,-5],[-22,-17],[-16,-20],[-15,-17],[-39,-65],[-29,-69],[-16,-23],[-18,-19],[-36,-29],[-37,-22],[-40,-19],[-40,-12],[-28,-15],[-31,-24],[-33,-34],[-85,-60],[-21,-18],[-28,-22],[-40,-24],[-56,-23],[-23,-13],[-20,-17],[-11,-14],[-6,-7],[-13,-23],[-15,-34],[-14,-26],[-45,-65],[-22,-23],[-26,-19],[-28,-14],[-13,-6],[-26,-8],[-39,-3],[-42,6],[-109,41],[-26,10],[-22,5],[-21,13],[-84,73],[-19,24],[-38,62],[-59,65],[-29,21],[-41,19],[-49,15],[-58,12],[-41,2],[-68,24],[-25,14],[-203,152],[-59,44],[-67,31],[-30,10],[-49,15],[-48,25],[-23,18],[-12,10],[-33,35],[-3,2],[-38,29],[-27,21],[-23,18],[-13,15],[-23,23],[-15,10],[-34,17],[-30,15],[-21,5],[-33,1],[-24,-4],[-23,-10],[-22,-16],[-14,-14],[-90,-88],[-66,-72],[-49,-52],[-23,-43],[-5,-14],[-1,-17],[3,-36],[12,-24],[33,-33],[19,-15],[40,-33],[11,-15],[3,-18],[1,-33],[-6,-31],[-45,-97],[-2,-7],[-9,-32],[-2,-28],[6,-48],[12,-45],[86,-214],[24,-53],[14,-58],[1,-68],[-39,-138],[-14,-106],[-5,-80],[26,-133],[48,-103],[58,-89],[13,-33],[7,-36],[3,-58],[-6,-51],[-54,-160],[-20,-24],[-3,-2],[-24,-16],[-30,-8],[-19,-2],[-19,-1],[-124,19],[-124,19],[-23,12],[-4,5],[-19,20],[-17,33],[-8,21],[-2,20],[-7,14],[-24,29],[-136,166],[-21,28],[-10,11],[-24,34],[-11,15],[-57,75],[-42,44],[-61,51],[-3,1],[-30,17],[-43,17],[-45,14],[-51,9],[-97,5],[-36,-10],[-54,-14],[-38,-14],[-51,-80],[-26,-48],[-16,-33],[-26,-56],[-8,-17],[-30,-83],[-5,-12],[-6,-29],[-8,-64],[-11,-37],[-18,-39],[-8,-40],[-5,-37],[-3,-26],[6,-63],[1,-12],[-2,-19],[-6,-16],[-27,-41],[-5,-3],[-20,-17],[-69,-21],[-84,-21],[-19,-12],[-10,-7],[-25,-29],[-32,-46],[-6,-19],[1,-52],[6,-69],[-6,-27],[-9,-21],[-4,-11],[-36,-63],[-27,-42],[-8,-10],[-34,-39],[-26,-21],[-22,-8],[-21,-2],[-32,1],[-72,12],[-45,-3],[-73,-20],[-96,-37],[-31,-6],[-10,0],[-86,6],[-36,4],[-13,4],[-5,0],[-34,4],[-15,-4],[-15,-8],[-18,-16],[-13,-19],[-11,-20],[-6,-23],[-9,-81],[0,-17],[0,-67],[11,-56],[20,-61],[5,-41],[11,-29],[8,-29],[3,-33],[-2,-39],[11,-55],[3,-42],[-4,-26],[-2,-14],[-15,-47],[-11,-17],[-17,-17],[-32,-40],[-16,-27],[-15,-32],[-23,-37],[-24,-38],[-43,-59],[-55,-67],[-99,-94],[-61,-67],[-156,-164],[-18,-17],[-50,-50],[-135,-140],[-29,-36],[-41,-40],[-39,-33],[-26,-31],[-16,-12],[-101,-49],[-73,-21],[-36,-2],[-24,6],[-16,14],[-45,71],[-16,21],[-67,127],[-30,58],[-46,60],[-12,10],[-35,33],[-12,4],[-13,-2],[-12,-9],[-14,-18],[-13,-26],[-27,-88],[-17,-30],[-57,-69],[-44,-66],[-7,-17],[-16,-63],[-3,-7],[-15,-38],[-38,-57],[-36,-36],[-14,-20],[-32,-87],[-4,-10],[-10,-35],[-8,-87],[5,-72],[35,-135],[13,-50],[20,-34],[21,-40],[10,-20],[4,-23],[-4,-26],[-24,-61],[-4,-9],[-17,-23],[-28,-23],[-34,-15],[-39,-6],[-35,6],[-14,9],[-13,19],[-14,31],[-6,13],[-10,60],[-1,61],[-4,48],[-5,14],[-12,36],[-15,22],[-4,5],[-21,17],[-56,58],[-22,14],[-57,19],[-11,5],[-81,39],[-16,5],[-50,10],[-46,-4],[-28,-9],[-25,-14],[-15,-15],[-9,-8],[-14,-22],[-14,-46],[-14,-78],[-5,-16],[-14,-34],[-1,-3],[-54,-101],[-11,-35],[-4,-32],[-1,-8],[3,-75],[6,-26],[11,-26],[30,-47],[14,-12],[23,-10],[15,-9],[14,-15],[15,-25],[4,-18],[5,-71],[22,-63],[2,-12],[3,-17],[-2,-14],[5,-30],[3,-13],[16,-38],[42,-55],[49,-37],[43,-65],[56,-94],[12,-28],[7,-29],[-2,-53],[-4,-15],[-10,-18],[-12,-15],[-15,-20],[-11,-15],[-27,-26],[-56,-45],[-31,-30],[-55,-82],[-201,-301],[-24,-23],[-34,-20],[-26,-19],[-24,-12],[-20,-17],[-30,-10],[-25,0],[-49,10],[-40,9],[-51,19],[-42,7],[-42,0],[-54,-12],[-18,2],[-42,26],[-20,15],[-18,14],[-11,13],[-1,1],[-4,10],[-14,28],[-24,50],[-1,3],[-2,11],[-3,5],[-26,78],[-11,24],[-8,17],[-10,13],[-7,9],[-23,17],[-30,15],[-24,7],[-28,17],[-43,10],[-33,-3],[-19,5],[-35,34],[-48,63],[-43,42],[-10,14],[-5,14],[0,2],[-3,16],[-3,18],[3,32],[10,28],[9,29],[9,20],[16,34],[14,38],[3,11],[26,108],[11,24],[3,6],[2,4],[11,15],[6,9],[17,15],[27,23],[7,7],[21,27],[7,16],[1,4],[9,41],[2,34],[-3,26],[-8,21],[-18,22],[-21,16],[-22,11],[-63,2],[-22,-3],[-26,-10],[-45,-36],[-40,-17],[-12,-8],[-25,-32],[-71,-103],[-49,-61],[-33,-41],[-20,-34],[-24,-57],[-11,-35],[-4,-40],[8,-68],[13,-73],[7,-27],[3,-40],[2,-106],[-9,-69],[-13,-33],[-25,-30],[-29,-21],[-32,-8],[-53,-3],[-27,-12],[-11,-4],[-45,-34],[-25,-32],[0,-51],[5,-66],[11,-38],[22,-57],[8,-35],[5,-78],[-3,-27],[-7,-17],[-12,-17],[-35,-30],[-16,-9],[-4,-2],[-23,-2],[-27,9],[-52,39],[-120,50],[-85,41],[-61,17],[-117,20],[-38,6],[-37,4],[-71,-8],[-43,5],[-4,0],[-46,-2],[-31,-10],[-12,-8],[-8,-9],[-12,-9],[-15,-5],[-19,-1],[-17,5],[-13,6],[-3,2],[-12,13],[-21,43],[-11,16],[-11,9],[-13,6],[-14,3],[-4,0],[-22,0],[-23,-4],[-35,-15],[-41,-31],[-4,-5],[-33,-36],[-35,-39],[-5,-5],[-117,-118],[-19,-13],[-24,-8],[-6,-2],[-41,-5],[-46,0],[-51,8],[-45,-9],[-30,1],[-136,21],[-85,36],[-39,17],[-57,16],[-183,65],[-28,4],[-45,-1],[-23,-6],[-4,-1],[-14,-8],[-9,-12],[-27,-44],[-12,-12],[-20,-11],[-53,-21],[-74,-15],[-45,-19],[-42,-37],[-14,-21],[-6,-18],[-3,-27],[7,-28],[23,-38],[48,-49],[37,-67],[46,-58],[15,-29],[29,-57],[13,-38],[0,-37],[8,-46],[14,-37],[25,-42],[5,-26],[1,-29],[6,-13],[13,-10],[35,-13],[54,-69],[83,-72],[15,-6],[105,-24],[60,-9],[73,-2],[20,0],[68,-21],[51,-10],[38,-20],[5,-12],[1,-17],[-7,-11],[-34,-23],[-5,-1],[-10,-2],[-21,1],[-3,-4],[2,-7],[10,-8],[6,-9],[-1,-11],[-52,-49],[-49,-33],[-19,-28],[-16,-18],[-21,-13],[-12,-5],[-10,-4],[-27,-7],[-22,-2],[-16,-2],[-20,-11],[-8,-12],[-15,-41],[-15,-23],[-30,-45],[-3,-16],[-4,-46],[-1,-10],[-13,-41],[-4,-68],[9,-37],[21,-39],[9,-53],[-6,-17],[-22,-23],[-3,-18],[-24,-28],[-29,-23],[-34,-15],[-21,0],[-26,1],[-57,14],[-27,12],[-8,0],[-40,3],[-36,7],[-57,19],[-20,9],[-47,35],[-47,28],[-17,19],[-9,9],[-20,16],[-80,31],[-76,36],[-23,9],[-21,19],[-23,27],[-18,13],[-23,6],[-3,0],[-19,-1],[-25,-11],[-26,-19],[-57,-54],[-21,-20],[-27,-43],[-40,-81],[-4,-13],[-1,-16],[0,-7],[15,-72],[0,-73],[-10,-137],[4,-24],[11,-47],[3,-18],[1,-66],[3,-19],[12,-26],[17,-27],[66,-78],[9,-14],[38,-53],[7,-21],[8,-21],[6,-40],[-6,-26],[-6,-10],[-9,-14],[-41,-28],[-10,-7],[-51,-18],[-22,-14],[-38,-41],[-18,-36],[-4,-24],[3,-30],[2,-10],[9,-27],[24,-44],[14,-14],[17,-11],[18,-6],[26,-3],[24,-12],[18,-18],[35,-52],[13,-41],[4,-54],[0,-50],[-10,-37],[-19,-32],[-36,-39],[-36,-22],[-34,-8],[-26,-1],[-31,7],[-31,12],[-34,22],[-132,21],[-4,0],[-43,11],[-95,31],[-140,67],[-52,-3],[-16,-9],[-13,-17],[-3,-9],[5,-24],[-2,-28],[-14,-92],[4,-57],[20,-72],[14,-33],[16,-27],[41,-55],[13,-29],[7,-26],[1,-5],[3,-46],[-4,-44],[-9,-26],[-54,-102],[-15,-33],[-8,-18],[-21,-57],[-18,-62],[-17,-77],[-8,-56],[3,-38],[14,-55],[8,-20],[38,-51],[15,-18],[29,-20],[22,-10],[75,-28],[143,-64],[56,-16],[35,-4],[25,-7],[35,1],[17,-4],[33,-24],[13,-17],[7,-17],[4,-18],[0,-19],[-4,-19],[-8,-19],[-34,-37],[-49,-36],[-22,-11],[-60,-29],[-38,-16],[-49,-21],[-43,-14],[-44,-7],[-39,1],[-88,2],[-29,10],[-73,39],[-16,3],[-9,-2],[-15,-2],[-47,-10],[-58,-31],[-35,-14],[-30,-6],[-58,-6],[-42,-1],[-38,6],[-50,14],[-26,15],[-42,32],[-44,19],[-36,10],[-79,16],[-18,6],[-26,20],[-24,24],[-9,9],[-13,24],[-7,25],[-2,36],[3,34],[20,102],[7,24],[3,15],[4,19],[-2,32],[-18,54],[-22,43],[-16,14],[-72,44],[-39,18],[-3,0],[-39,13],[-64,15],[-67,10],[-62,2],[-70,-1],[-5,0],[-78,8],[-24,-1],[-10,-3],[-22,-5],[-37,-19],[-31,-26],[-26,-35],[-6,-11],[-57,-117],[-20,-55],[-45,-155],[-18,-91],[-20,-117],[-2,-11],[-39,-129],[-29,-72],[-15,-51],[-58,-150],[-12,-32],[-26,-106],[-5,-39],[-8,-100],[-5,-73],[-31,-153],[-20,-53],[-25,-55],[-22,-38],[-29,-42],[-19,-36],[-51,-94],[-7,-21],[-2,-19],[8,-49],[11,-43],[17,-50],[18,-24],[9,-5],[23,-1],[5,1],[50,14],[40,-1],[28,-11],[19,-17],[13,-12],[107,-51],[10,-5],[74,-46],[49,-19],[22,-15],[24,-24],[19,-30],[10,-30],[16,-145],[-7,-177],[-10,-254],[-8,-82],[-12,-74],[-22,-82],[-24,-63],[-20,-50],[-55,-106],[-37,-53],[-27,-35],[-24,-49],[-13,-43],[0,-40],[17,-53],[26,-50],[34,-42],[42,-37],[11,-18],[6,-19],[6,-44],[-3,-47],[-9,-33],[-16,-26],[-15,-18],[-36,-45],[-62,-75],[-96,-117],[-36,-39],[-42,-37],[-55,-39],[-56,-32],[-24,-8],[-35,-8],[-17,-2],[-73,2],[-17,-4],[-4,-2],[-12,-6],[-22,-16],[-24,-21],[-52,-78],[-17,-12],[-20,-6],[-4,0],[-56,4],[-83,29],[-42,15],[-51,42],[-65,45],[-58,51],[-48,31],[-113,87],[-177,163],[-35,32],[-28,32],[-25,36],[-23,43],[-17,40],[-5,11],[-5,12],[-2,4],[-7,11],[-24,36],[-23,31],[-12,17],[-76,87],[-53,38],[-44,32],[-47,19],[-26,13],[-64,49],[-52,40],[-41,19],[-50,30],[-25,12],[-24,4],[-41,-4],[-44,-11],[-31,-14],[-68,-56],[-26,-27],[-26,-40],[-21,-54],[-2,-35],[-2,-52],[3,-46],[25,-109],[16,-49],[80,-261],[8,-58],[-2,-24],[-7,-24],[-27,-60],[-17,-19],[-22,-19],[-168,-83],[-47,-20],[-39,-26],[-48,-32],[-35,-16],[-27,-17],[-36,-28],[-16,-17],[-13,-21],[-8,-21],[-9,-62],[3,-31],[13,-41],[8,-45],[5,-55],[-1,-26],[-11,-36],[-41,-44],[-12,-9],[-21,-10],[-24,-6],[-26,-2],[-25,3],[-28,15],[-63,68],[-39,33],[-44,32],[-82,40],[-83,33],[-40,24],[-22,22],[-17,29],[-8,32],[0,39],[6,22],[21,35],[59,79],[21,25],[10,20],[6,28],[-3,26],[-4,15],[-33,58],[-25,30],[-25,24],[-43,27],[-40,15],[-91,13],[-51,8],[-83,12],[-15,-1],[-18,-8],[-6,-6],[-7,-6],[-34,-72],[-16,-24],[-18,-27],[-37,-38],[-93,-79],[-8,-8],[-30,-30],[-26,-32],[-47,-65],[-32,-53],[-9,-18],[-11,-33],[-12,-63],[-1,-63],[9,-44],[0,-5],[25,-52],[27,-48],[92,-136],[42,-81],[45,-85],[17,-18],[21,-14],[29,-12],[29,-7],[28,-1],[26,-1],[55,12],[23,2],[72,-5],[42,-10],[67,-28],[30,-16],[23,-21],[24,-32],[40,-85],[6,-28],[0,-27],[-12,-88],[-11,-46],[-14,-34],[-44,-107],[-34,-100],[-10,-51],[-5,-155],[-8,-39],[-18,-35],[-144,-213],[-21,-23],[-61,-48],[-26,-13],[-29,-12],[-64,-13],[-121,-3],[-28,-4],[-113,-47],[-110,-40],[-67,-21],[-36,-11],[-31,-11],[-16,-9],[-59,-8],[-39,-13],[-76,-17],[-35,-11],[-99,-39],[-106,-47],[-84,-33],[-41,-29],[-35,-43],[-9,-21],[-4,-25],[10,-65],[13,-30],[40,-50],[17,-27],[7,-24],[1,-39],[-5,-56],[-25,-50],[-18,-23],[-38,-32],[-49,-28],[-39,-28],[-109,-94],[-57,-38],[-60,-24],[-55,-6],[-16,-7],[-26,-16],[-107,-77],[-95,-85],[-12,-18],[-8,-19],[-6,-21],[1,-12],[17,-58],[34,-93],[7,-51],[-1,-19],[-7,-20],[-17,-36],[-12,-14],[-53,-27],[-51,-18],[-78,-17],[-56,-18],[-63,-7],[-26,-8],[-21,-15],[-20,-22],[-9,-16],[-4,-8],[-9,-29],[-7,-94],[4,-47],[5,-57],[-3,-48],[2,-23],[6,-20],[16,-36],[23,-90],[20,-76],[5,-30],[16,-51],[4,-15],[27,-113],[65,-269],[22,-86],[25,-84],[43,-119],[22,-63],[8,-41],[6,-57],[-2,-17],[-7,-20],[-25,-37],[-35,-36],[-30,-24],[-23,-14],[-18,-21],[-13,-29],[0,-32],[7,-20],[167,-300],[91,-180],[26,-73],[23,-54],[14,-31],[29,-81],[27,-76],[5,-30],[-5,-29],[-78,-166],[-69,-149],[-40,-67],[-38,-50],[-33,-29],[-45,-46],[-42,-44],[-43,-41],[-19,-33],[-5,-18],[-5,-21],[-3,-11],[2,-16],[0,-5],[3,-7],[3,-7],[5,-9],[3,-6],[16,-22],[22,-17],[27,-11],[28,-12],[12,-3],[77,-14],[47,-15],[47,-13],[59,-16],[38,-18],[8,-9],[6,-12],[1,-15],[-5,-14],[-10,-16],[-11,-12],[-77,-63],[-126,-101],[-28,-27],[-48,-54],[-45,-83],[-47,-85],[-28,-62],[-10,-22],[2,-12],[7,-10],[22,-19],[5,-5],[10,-4],[14,-6],[16,-7],[42,-14],[37,-13],[50,-22],[32,-19],[54,-31],[9,-5],[28,-20],[19,-15],[38,-32],[37,-43],[11,-12],[27,-46],[8,-25],[14,-39],[1,-17],[-2,-9],[-1,-8],[-16,-29],[-23,-23],[-66,-33],[-46,-19],[-50,-13],[-68,-11],[-58,-5],[-87,-2],[-45,-1],[-43,0],[-72,10],[-37,0],[-60,-7],[-51,-11],[-32,-16],[-36,-31],[-27,-30],[-49,-67],[-13,-27],[-8,-29],[-3,-29],[-2,-25],[1,-23],[19,-79],[6,-28],[28,-94],[8,-50],[19,-68],[8,-28],[8,-48],[8,-55],[1,-27],[-3,-21],[-9,-24],[-8,-13],[-14,-11],[-21,-10],[-20,-4],[-3,1],[-12,-4],[-46,-10],[-34,-7],[-63,-18],[-57,-20],[-46,-20],[-10,-5],[-96,-26],[-61,-22],[-65,-23],[-43,-21],[-36,-27],[-10,-17],[-4,-14],[-2,-7],[-3,-47],[-7,-115],[-8,-199],[-3,-12],[-4,-8],[-36,-69],[-35,-42],[-83,-51],[-76,-47],[-17,-15],[-140,-125],[-53,-44],[-6,-7],[-42,-34],[-15,-11],[-94,-79],[-3,-2],[-31,-34],[-23,-40],[-19,-55],[0,-84],[0,-12],[0,-6],[1,-9],[5,-26],[9,-27],[15,-47],[3,-11],[10,-45],[8,-60],[-3,-26],[-1,-14],[-9,-19],[-25,-25],[-21,-21],[-30,-11],[-7,-4],[-8,-1],[-25,-8],[-20,1],[-14,1],[-35,3],[-35,6],[-52,9],[-83,15],[-53,2],[-90,12],[-88,12],[-12,-1],[-14,0],[-27,-1],[-69,-11],[-22,-5],[-8,-3],[-21,-5],[-52,-14],[-26,-12],[-6,-4],[-7,-3],[-25,-14],[-30,-20],[-30,-21],[-56,-45],[-53,-50],[-25,-28],[-23,-29],[-18,-32],[-12,-25],[-32,-134],[-13,-111],[-7,-43],[-10,-33],[-10,-35],[-9,-26],[-5,-17],[-4,-16],[-6,-22],[-16,-55],[-26,-70],[-31,-69],[-50,-89],[-9,-15],[-15,-26],[-22,-38],[-9,-15],[-17,-28],[-9,-15],[-26,-39],[-35,-56],[-13,-22],[-11,-16],[-33,-57],[-10,-37],[0,-76],[0,-11],[1,-28],[1,-18],[5,-118],[1,-17],[2,-50],[7,-277],[4,-144],[2,-88],[6,-141],[8,-171],[0,-44],[7,-116],[9,-103],[4,-49],[8,-76],[12,-75],[8,-38],[17,-70],[31,-108],[16,-52],[20,-50],[5,-14],[6,-20],[20,-63],[20,-63],[19,-61],[6,-18],[3,-10],[4,-13],[3,-13],[10,-61],[3,-18],[6,-124],[31,-161],[4,-46],[26,-40],[21,-70],[34,-78],[133,-236],[49,-77],[60,-86],[7,-10],[22,-38],[20,-42],[21,-45],[12,-39],[-13,-97],[-12,-19],[-33,-27],[-35,-20],[-39,-16],[-26,-10],[-20,-8],[-30,-12],[-23,-7],[-16,-6],[-76,-28],[-80,-32],[-73,-31],[-31,-15],[-42,-22],[-32,-26],[-31,-30],[-57,-63],[-27,-34],[-24,-35],[-21,-38],[-16,-41],[-11,-42],[2,-36],[2,-14],[-1,-70],[6,-33],[6,-29],[17,-52],[7,-13],[20,-38],[45,-52],[52,-47],[63,-40],[5,-3],[77,-37],[150,-51],[396,-133],[158,-54],[51,-20],[56,-30],[26,-17],[58,-47],[27,-25],[80,-74],[56,-65],[35,-48],[20,-32],[13,-20],[8,-6],[8,-7],[6,-9],[7,-9],[8,-23],[0,-4],[0,-29],[6,-20],[54,-87],[91,-190],[27,-57],[9,-28],[10,-52],[2,-54],[-2,-16],[-5,-38],[-1,-21],[-12,-19],[-23,-22],[-29,-24],[-124,-156],[-67,-82],[-19,-23],[-91,-116],[-96,-120],[48,-126],[17,-44],[12,-10],[40,-33],[14,-14],[89,-87],[19,-12],[86,-60],[67,-24],[81,1],[71,9],[34,4],[137,50],[93,31],[127,42],[99,22],[128,18],[140,4],[135,-29],[91,-45],[58,-36],[238,-144],[29,-21],[72,-50],[109,-76],[9,-7],[189,-120],[26,-24],[20,-19],[48,-43],[18,-21],[21,-23],[81,-89],[97,-167],[54,-230],[14,-59],[54,-228],[53,-164],[49,-77],[95,-39],[117,-13],[162,68],[35,15],[37,16],[184,67],[160,19],[59,-1],[133,-3],[132,-27],[127,-68],[140,-151],[138,-167],[56,-96],[13,-68],[2,-272],[0,-44],[11,-67],[2,-11],[38,-110],[70,-80],[32,-69],[42,-56],[53,-56],[32,-55],[42,-42],[74,-111],[53,-70],[31,-55],[53,-70],[32,-55],[42,-70],[42,-55],[169,-195],[42,-97],[11,0],[21,-14],[44,-34],[22,-16],[8,-6],[52,-56],[34,-24],[32,-24],[29,-21],[74,-56],[85,-41],[2,-1],[124,-69],[95,-56],[64,-55],[84,-42],[63,-42],[53,-13],[74,-28],[15,-4],[39,-10],[41,0],[63,-14],[43,-14],[52,-42],[43,-27],[42,-28],[42,-42],[20,-17],[1,-1],[11,-10],[9,-12],[22,-29],[22,-28],[13,-26],[7,-15],[28,-74],[13,-72],[17,-71],[9,-41],[4,-16],[21,-48],[22,-28],[37,-46],[2,-2],[71,-45],[40,-18],[23,-10],[157,-86],[21,-28],[32,-14],[21,-14],[21,-28],[31,-13],[1,0],[42,-42],[84,-56],[85,-55],[52,-28],[22,0],[42,-14],[52,-28],[159,-28],[53,0],[126,0],[23,-5],[320,-79],[111,-27],[21,0],[11,0],[31,-14],[133,-50],[15,-5],[85,-42],[52,-28],[106,-56],[42,-13],[46,-36],[7,-6],[42,-14],[13,-4],[72,-24],[14,-9],[112,-74],[54,-53],[31,-31],[40,-35],[23,-20],[32,-84],[42,-69],[14,-23],[28,-47],[42,-69],[2,-6],[9,-36],[8,-14],[24,-42],[21,-14],[31,-41],[74,-28],[27,-24],[68,-59],[42,0],[0,-14],[32,-42],[11,-14],[21,-14],[42,-28],[21,-27],[63,-112],[11,-27],[10,-28],[0,-42],[11,-67],[0,-3],[32,-180],[21,-84],[10,-13],[11,-42],[16,-53],[5,-17],[4,0],[17,0],[63,-27],[64,-42],[52,-14],[74,-56],[85,-41],[74,-28],[29,-13],[3,-2],[31,-13],[0,-7],[0,-7],[3,-2],[114,-80],[0,-28],[-3,-5],[-8,-52],[-32,-69],[-21,-98],[-19,-48],[-13,-35],[-42,-97],[-42,-125],[-29,-58],[-14,-26],[-21,-42],[-42,-55],[-7,-14],[-14,-28],[11,-97],[6,-16],[4,-12],[32,-14],[9,-3],[38,-13],[458,-278],[9,-5],[35,-35],[105,-97],[95,-111],[65,-60],[72,-65],[95,-84],[74,-69],[14,-14],[39,-42],[84,-42],[47,-15],[52,-17],[28,-9],[95,-14],[74,28],[22,4],[105,23],[56,-22],[20,-8],[2,0],[13,-3],[115,-23],[121,-81],[107,-79],[35,-26],[111,-11],[93,66],[527,148],[80,-3],[92,-2],[335,-10],[171,-16],[121,-12],[125,-36],[408,-118],[296,-111],[127,-56],[74,-55],[137,-125],[63,-98],[21,-55],[0,-42],[-21,-83],[-10,-98],[-11,-83],[0,-56],[0,-5],[0,-23],[17,-4],[5,-1],[31,-8],[95,13],[84,28],[43,14],[67,34],[101,50],[59,51],[5,4],[31,14],[57,50],[7,6],[11,3],[94,25],[127,41],[62,25],[14,6],[61,25],[21,14],[64,41],[12,6],[83,36],[95,42],[31,14],[85,14],[200,41],[95,0],[95,14],[116,-14],[190,0],[65,-5],[94,-8],[73,0],[106,13],[105,28],[117,28],[21,0],[74,0],[42,0],[10,0],[36,-7],[38,-7],[46,-23],[39,-19],[74,-41],[116,-84],[137,-111],[21,0],[0,-14],[222,-167],[74,-27],[126,-28],[95,-14],[95,-42],[4,0],[28,0],[10,0],[24,-19],[24,-18],[5,-5],[3,-4],[29,-51],[24,-76],[7,-22],[-21,-55],[-32,-42],[-16,-22],[-4,-6],[-3,-8],[-19,-61],[-21,-98],[-42,-83],[-12,-3],[-48,-10],[-3,-1],[-27,24],[-37,32],[-42,41],[-25,13],[-59,29],[-95,56],[-42,14],[-5,0],[-80,0],[-36,-7],[-112,-21],[-59,-26],[-4,-2],[-47,-10],[-6,-2],[-74,-16],[-105,-41],[-85,-56],[-85,-100],[-10,-11],[0,-26],[0,-9],[0,-44],[0,-19],[28,-98],[11,-42],[4,-12],[10,-48],[21,-92],[10,-91],[1,-6],[-21,-194],[0,-167],[10,-42],[6,-9],[20,-30],[38,-59],[74,-55],[73,-42],[64,-14],[28,0],[24,0],[106,-27],[180,-42],[116,-42],[144,-38],[14,-3],[105,-42],[64,-14],[53,14],[95,14],[73,0],[43,-14],[116,-42],[105,-56],[69,-38],[5,-3],[11,-11],[9,-9],[22,-22],[21,-97],[0,-42],[-21,-42],[-31,-27],[-21,-28],[-95,-139],[-43,-42],[-42,-70],[-63,-83],[-32,-42],[-10,0],[-138,-319],[-10,-70],[10,-111],[6,-46],[5,-51],[0,-28],[32,-42],[52,-14],[64,0],[169,-14],[116,0],[126,-14],[116,-55],[127,-70],[85,-83],[73,-97],[95,-70],[95,-42],[30,-5],[4,-1],[40,-8],[53,-13],[34,-18],[19,-10],[63,-42],[95,-56],[65,-54],[51,-43],[13,-14],[51,-55],[42,-84],[31,-97],[32,-84],[42,-97],[64,-111],[42,-97],[53,-98],[42,-83],[10,-52],[11,-59],[0,-42],[-21,-56],[-5,-31],[-16,-94],[-32,-55],[-21,-98],[-3,-47],[-8,-106],[0,-69],[0,-1],[-10,-27],[27,-44],[26,-39],[15,-15],[27,-27],[84,-56],[10,0],[22,0],[53,-41],[13,-6],[92,-36],[137,-56],[106,-42],[28,-18],[56,-37],[85,-28],[116,28],[53,42],[10,27],[21,70],[26,27],[11,11],[16,18],[28,16],[34,20],[33,19],[42,28],[41,9],[86,19],[137,14],[85,-14],[63,-42],[63,-42],[21,-27],[11,0],[188,-124],[20,-13],[42,-60],[27,-43],[24,-63],[-3,-124],[-27,-46],[-68,-80],[-66,-52],[-12,-20],[-39,-67],[-13,-50],[-5,-23],[-3,-84],[22,-129],[61,-106],[94,-96],[3,-2],[70,-37],[96,-1],[109,30],[129,32],[7,-1],[80,-3],[73,-29],[100,-51],[17,-13],[52,-42],[141,-132],[96,-93],[111,-107],[32,-39],[141,-173],[45,-112],[-22,-148],[-6,-123],[20,-120],[114,-287],[66,-88],[22,-9],[73,-31],[52,-4],[107,-8],[115,-18],[16,-14],[29,-25],[65,-100],[66,-197],[-9,-164],[-12,-67],[-2,-48],[-1,-11],[1,-23],[-1,-44],[11,-112],[5,-28],[4,-51],[5,-33],[3,-17],[12,-50],[5,-16],[21,-123],[8,-27],[13,-27],[8,-10],[9,-14],[18,-15],[44,-27],[46,-19],[11,-3],[26,-8],[45,-8],[87,-6],[28,-2],[84,-5],[30,-2],[12,-1],[44,-19],[44,-6],[30,2],[105,15],[24,7],[22,11],[19,13],[20,21],[23,18],[43,21],[65,37],[11,5],[63,23],[74,15],[19,1],[17,0],[38,-4],[65,-28],[105,-60],[44,-13],[33,2],[71,-2],[139,-5],[21,-2],[59,-24],[82,-40],[64,-37],[39,-30],[60,-42],[27,-22],[23,-25],[150,-190],[126,-144],[149,-155],[215,-225],[15,-18],[12,-18],[22,-48],[11,-32],[7,-32],[1,-17],[-3,-17],[-13,-40],[-14,-15],[-86,-62],[-95,-62],[-146,-103],[-35,-25],[-33,-16],[-48,-46],[-56,-59],[-219,-245],[-25,-21],[-81,-77],[-55,-61],[-46,-72],[-26,-57],[-18,-57],[-3,-25],[-3,-19],[4,-33],[4,-9],[3,-7],[11,-14],[31,-28],[17,-5],[31,-1],[151,-27],[127,-29],[295,-79],[38,-11],[39,-14],[34,-16],[35,-23],[28,-24],[30,-34],[25,-36],[18,-33],[14,-41],[12,-48],[59,-339],[10,-41],[15,-63],[15,-46],[23,-53],[52,-95],[21,-51],[21,-32],[26,-34],[66,-67],[57,-71],[36,-39],[26,-35],[27,-45],[51,-58],[62,-91],[37,-40],[51,-52],[60,-53],[107,-76],[101,-81],[79,-50],[81,-39],[189,-68],[48,-7],[45,7],[147,71],[148,84],[293,136],[61,34],[55,21],[75,12],[90,-4],[102,-22],[69,-23],[45,-21],[43,-25],[38,-27],[39,-32],[30,-35],[25,-36],[18,-35],[12,-36],[5,-30],[4,-59],[-4,-93],[-4,-51],[-10,-113],[-14,-117],[-12,-132],[22,-126],[43,-143],[116,-156],[41,-30],[-5,-9],[-23,-31],[29,-16],[2,0],[34,-8],[67,1],[7,0],[26,5],[43,8],[5,1],[36,3],[27,-1],[27,-7],[30,-18],[7,-4],[28,-30],[29,-32],[75,-82],[13,-12],[30,-30],[71,-43],[89,-85],[65,-125],[2,-5],[36,-48],[73,-113],[29,-34],[102,-107],[104,-73],[142,-88],[125,-78],[42,-33],[93,-74],[4,-3],[248,-217],[12,-12],[38,-36],[12,-12],[42,-22],[85,-45],[45,-4],[45,-4],[25,11],[75,35],[25,11],[26,12],[36,17],[42,28],[11,8],[15,-5],[32,12],[7,3],[32,6],[31,1],[30,-6],[4,0],[28,-14],[0,0],[5,-1],[7,0],[3,-1],[4,-2],[4,-3],[7,-4],[43,-24],[36,-27],[35,-26],[59,-44],[55,-30],[143,-77],[85,-44],[164,-67],[56,-32],[70,-39],[117,-90],[49,-42],[33,-34],[68,-71],[148,-126],[38,-12],[111,-36],[38,-12],[24,-6],[24,-5],[156,-37],[91,-57],[44,-15],[90,-91],[4,0],[114,-14],[181,-23],[922,-463],[20,-8],[27,-18],[22,-10],[43,3],[16,6],[14,4],[4,1],[8,3],[9,1],[2,1],[160,-41],[39,-7],[53,-4],[25,1],[24,8],[20,13],[11,6],[20,18],[14,25],[5,11],[2,36],[-4,20],[-14,35],[-8,36],[-4,40],[2,57],[-6,24],[-14,38],[0,2],[-2,43],[4,41],[17,39],[19,67],[17,43],[50,99],[34,80],[26,45],[25,35],[33,38],[38,37],[36,31],[17,12],[23,17],[12,8],[46,28],[34,23],[29,14],[19,9],[20,5],[2,0],[5,2],[2,0],[77,20],[174,23],[110,27],[15,3],[68,24],[347,181],[210,92],[60,21],[65,15],[28,3],[36,-6],[33,-17],[66,-53],[57,-57],[27,-35],[10,-12],[252,-322],[2,1],[6,2],[2,0],[2,1],[5,2],[1,0],[2,1],[5,2],[2,0],[35,13],[32,11],[69,28],[4,1],[36,13],[8,15],[3,6],[33,24],[12,9],[20,14],[35,25],[8,6],[7,5],[7,6],[60,48],[23,24],[7,6],[27,9],[40,12],[10,4],[30,10],[13,4],[14,3],[18,6],[25,11],[9,3],[9,4],[37,19],[17,8],[39,15],[13,5],[23,7],[23,5],[85,21],[10,1],[14,2],[5,1],[4,2],[3,2],[3,4],[4,8],[8,20],[3,4],[14,19],[54,68],[56,73],[91,113],[65,-18],[27,-7],[10,-2],[4,-2],[3,-3],[8,-12],[16,-25],[47,-69],[21,-32],[25,-29],[61,-68],[52,-56],[26,-21],[20,-22],[24,-23],[9,-11],[7,-13],[16,-36],[9,-17],[5,-9],[44,-57],[41,-55],[14,-19],[44,-88],[3,-4],[7,-6],[12,-7],[23,-6],[10,-3],[30,-9],[59,-14],[72,-19],[40,-12],[14,-4],[7,-2],[18,-6],[6,-2],[2,0],[5,-2],[1,0],[13,11],[35,31],[3,1],[15,4],[16,3],[8,3],[40,9],[16,4],[21,4],[55,12],[15,3],[26,5],[64,12],[100,16],[69,10],[15,2],[13,3],[55,10],[9,3],[13,4],[10,3],[12,4],[16,6],[10,4],[26,11],[81,34],[27,11],[1,10],[26,162],[8,26],[0,0],[7,18],[3,4],[87,81],[78,70],[25,39],[3,4],[6,7],[6,7],[57,79],[70,95],[19,26],[52,70],[50,23],[52,24],[17,8],[4,1],[24,0],[5,0],[64,-1],[28,1],[14,1],[36,6],[74,5],[47,4],[73,5],[28,3],[28,5],[50,10],[78,13],[18,3],[18,5],[9,3],[4,2],[3,3],[4,3],[9,12],[4,3],[67,-8],[203,-28],[124,-14],[12,-8],[4,-2],[48,-19],[111,-26],[13,-3],[57,-13],[9,-2],[9,-2],[25,-1],[9,-2],[4,-2],[4,-2],[12,-14],[12,-15],[11,-15],[17,-24],[25,-41],[14,-22],[19,-29],[6,-6],[4,-4],[12,-12],[2,-2],[1,-1],[27,-29],[53,-58],[17,-18],[9,-10],[13,-15],[3,-4],[7,-14],[2,-4],[7,-13],[2,-4],[9,-19],[29,-56],[3,-8],[7,-10],[3,-6],[8,-13],[2,-3],[4,-6],[25,-18],[77,-54],[6,-4],[19,-13],[11,-2],[2,0],[25,-4],[13,-2],[10,-2],[2,0],[12,1],[39,15],[13,4],[5,2],[29,9],[29,8],[18,5],[32,6],[54,14],[14,3],[23,4],[40,12],[27,7],[13,3],[28,5],[22,7],[36,11],[26,8],[5,0],[19,-1],[14,-1],[2,2],[5,6],[2,3],[18,19],[35,41],[20,21],[24,13],[20,13],[16,10],[43,31],[22,17],[36,30],[4,3],[16,12],[19,13],[20,21],[64,12],[1,0],[31,12],[32,5],[37,6],[82,9],[10,0],[37,3],[27,3],[2,1],[6,4],[2,2],[14,9],[21,14],[5,2],[18,3],[30,13],[30,13],[26,12],[22,6],[44,14],[40,11],[37,10],[17,7],[44,17],[4,1],[14,-1],[14,-1],[18,2],[23,2],[32,6],[31,9],[5,1],[42,0],[41,3],[23,2],[37,6],[64,14],[18,3],[32,2],[9,0],[37,-3],[47,-1],[4,2],[15,12],[44,28],[4,1],[9,1],[56,3],[41,4],[7,2],[47,15],[13,3],[9,2],[38,2],[59,6],[74,6],[19,2],[6,1],[12,1],[5,1],[0,0],[5,3],[3,1],[11,5],[28,12],[15,8],[14,7],[68,-46],[67,-46],[55,-37],[44,-27],[40,-22],[14,-8],[55,-36],[41,-68],[11,-16],[7,-28],[3,-16],[2,-4],[9,-10],[13,-14],[46,-43],[28,-28],[6,-6],[32,-29],[14,-13],[44,-36],[34,-34],[32,-28],[53,-40],[41,-11],[27,-19],[79,-51],[22,-19],[59,-40],[11,-9],[4,-3],[4,-1],[5,-1],[14,0],[14,-1],[55,-6],[55,-9],[23,-3],[22,-2],[20,-1],[69,-7],[14,0],[4,0],[9,2],[18,6],[40,12],[64,16],[20,-6],[2,0],[60,-14],[21,-5],[33,-38],[2,-3],[26,-31],[40,-48],[21,-27],[16,-22],[17,-25],[15,-20],[3,-3],[6,-9],[3,-3],[14,-20],[8,-13],[33,-51],[33,-50],[8,-12],[14,-22],[6,-9],[2,-2],[10,-17],[4,-8],[1,-3],[3,-6],[2,-5],[1,-4],[2,-10],[7,-39],[0,-15],[1,-5],[10,-28],[15,-37],[20,-50],[8,-18],[6,-13],[94,-167],[25,-44],[24,-44],[34,-60],[37,-73],[23,-45],[2,-4],[10,-22],[34,-80],[11,-26],[13,-31],[-19,-34],[-5,-14],[13,-90],[-19,-131],[-10,-65],[40,-48],[16,-19],[1,-1],[51,-61],[18,-20],[44,-52],[51,-61],[84,-97],[45,-52],[10,-11],[57,-47],[32,-25],[54,-46],[43,-38],[15,-12],[41,-23],[23,-12],[27,-13],[43,-21],[5,-3],[7,-3],[20,-10],[7,-4],[37,-18],[41,-21],[16,-43],[17,-44],[0,-2],[16,-45],[2,-5],[6,-17],[2,-5],[7,-21],[11,-30],[8,-21],[28,-84],[12,-32],[6,-15],[2,-4],[9,-17],[14,-23],[2,-4],[6,-9],[2,-3],[1,-2],[4,-7],[1,-2],[168,-21],[42,-6],[4,0],[41,-7],[9,-3],[9,-3],[43,-19],[53,-19],[13,-5],[13,-3],[9,0],[10,0],[27,5],[111,11],[35,-19],[116,-62],[83,-44],[11,-12],[12,-16],[12,-14],[13,-14],[64,-57],[83,-76],[5,-5],[16,-15],[6,-5],[45,-41],[31,-38],[62,-73],[59,-70],[96,-113],[48,-56],[24,-30],[-27,-66],[-81,-199],[-22,-54],[-5,-12],[143,-552],[5,-16],[1,-6],[5,-19],[2,-6],[12,-45],[35,-136],[11,-45],[24,-91],[71,-273],[24,-90],[14,-30],[11,-22],[35,-39],[8,-15],[17,-28],[14,-24],[23,-40],[20,-34],[14,-25],[0,-18],[1,-19],[5,-34],[2,-18],[1,-4],[2,-14],[0,-4],[13,-82],[26,-179],[1,-70],[2,-83],[1,-61],[1,-86],[0,-97],[-1,-61],[0,-46],[1,-5],[26,-149],[8,-49],[1,-7],[1,-40],[1,-141],[0,-2],[6,-46],[2,-18],[6,-45],[0,-9],[1,-18],[6,-114],[4,-95],[39,-189],[30,-33],[67,-72],[2,-2],[7,-7],[2,-2],[97,-106],[14,-11],[243,-204],[66,-164],[35,-89],[14,-86],[10,-54],[28,-162],[9,-54],[19,-63],[10,-34],[3,-9],[3,-4],[10,-11],[37,-24],[4,-4],[13,-13],[3,-3],[17,-33],[1,-4],[8,-29],[-2,-36],[-8,-28],[-3,-7],[-2,-6],[-1,-3],[-11,-17],[-2,-2],[-2,-4],[-23,-20],[-39,-34],[-28,-25],[12,-132],[34,-368],[1,-31],[4,-133],[3,-96],[1,-14],[71,-257],[25,-90],[1,-3],[2,-9],[1,-3],[57,-206],[67,-241],[131,-359],[72,-197],[28,-76],[4,-10],[39,-109],[20,-55],[117,-281],[2,-4],[2,-5],[0,-7],[0,-5],[2,-51],[5,-154],[2,-51],[0,-6],[-36,-423],[-4,-227],[-3,-119],[44,-197],[100,-206],[295,-507],[99,-260],[74,-310],[10,-153],[42,-656],[13,-216],[16,-253],[3,-396],[2,-203],[3,-12],[6,-26],[19,-77],[6,-26],[1,-3],[3,-10],[0,-3],[19,-75],[17,-72],[76,-127],[18,-30],[27,-20],[109,-79],[328,-238],[68,-49],[43,-25],[145,-85],[2,0],[125,1],[67,-17],[88,-108],[141,-119],[136,-113],[6,-3],[17,-10],[6,-3],[3,-1],[9,-5],[2,-2],[66,-62],[71,-68],[433,-410],[120,13],[24,0],[25,7],[8,-5],[21,-11],[22,-27],[2,-1],[10,-20],[24,-44],[0,-52],[-20,-57],[11,-13],[15,-19],[9,-12],[12,-21],[6,-13],[6,-14],[15,-47],[10,-48],[32,-17],[27,-9],[18,-5],[44,-13],[50,-14],[31,-9],[8,-4],[17,-9],[11,-8],[26,-28],[17,-18],[9,-11],[17,-17],[7,-12],[2,-4],[3,-4],[20,-21],[9,-9],[8,-8],[19,-21],[48,-47],[10,-8],[15,-14],[23,-18],[11,-8],[26,-21],[21,-20],[16,-17],[14,-13],[9,-11],[21,-27],[37,-45],[16,-24],[13,-20],[14,-21],[5,-9],[4,-8],[5,-8],[3,-9],[4,-4],[10,-9],[10,-11],[13,-14],[9,-11],[7,-7],[12,-12],[2,-2],[7,-6],[2,-2],[26,-24],[14,-12],[28,-26],[5,-4],[24,-20],[20,-21],[204,-89],[85,-37],[9,-7],[15,-12],[11,-9],[12,-15],[12,-15],[7,-12],[6,-9],[6,-13],[9,-18],[31,-33],[16,-18],[14,-20],[13,-20],[7,-13],[35,-46],[13,-15],[9,-11],[17,-23],[10,-11],[8,-12],[35,-53],[4,-7],[1,-2],[3,-6],[2,-3],[35,-30],[4,-3],[36,-19],[9,-3],[24,-7],[24,-4],[16,-2],[4,-1],[22,-3],[5,0],[20,-3],[43,-11],[2,-1],[34,-8],[42,-11],[22,-11],[32,-16],[3,-2],[10,-8],[3,-2],[2,-1],[15,-11],[2,-2],[6,-5],[2,-2],[1,-6],[5,-3],[9,-8],[10,-11],[2,-4],[0,-1],[5,-10],[1,-3],[9,-17],[1,-7],[3,-17],[1,-5],[-1,-5],[10,-17],[8,-18],[1,-5],[4,-15],[0,-4],[4,-15],[3,-10],[1,-1],[1,-2],[1,-2],[0,-1],[3,-5],[7,-13],[0,-1],[2,-4],[6,-14],[16,-36],[2,-5],[4,-13],[0,-2],[1,-3],[1,-9],[0,-3],[2,-8],[0,-15],[-2,-19],[-2,-15],[-4,-18],[-1,-6],[-4,-15],[-4,-24],[-2,-20],[1,-19],[3,-25],[3,-14],[6,-19],[3,-15],[0,-5],[2,-14],[9,-43],[1,-1],[4,-14],[4,-20],[4,-29],[2,-5],[0,-3],[1,-3],[0,-3],[1,-3],[0,-2],[13,-62],[17,-80],[20,-33],[20,-25],[18,-20],[27,-29],[8,-14],[21,-33],[33,-96],[3,-15],[-4,-14],[17,-91],[31,-212],[3,-54],[2,-42],[-1,-54],[-5,-46],[-4,-24],[-3,-16],[-42,-93],[-12,-45],[-41,65],[13,-102],[0,-20],[-2,-30],[0,-15],[-2,-49],[1,-12],[10,-64],[1,-10],[2,-29],[3,-25],[17,-83],[15,-47],[7,-15],[18,-42],[35,-70],[15,-37],[9,-23],[6,-18],[13,-32],[18,-35],[4,-9],[14,-47],[13,-48],[0,-3],[3,-17],[1,-18],[10,-74],[8,-33],[6,-24],[8,-44],[0,0],[3,-20],[3,-24],[9,-49],[1,-15],[5,-19],[4,-25],[2,-10],[3,-14],[9,-33],[4,-20],[7,-59],[1,-10],[3,-15],[16,-36],[5,-14],[12,-48],[6,-34],[13,-47],[7,-34],[4,-20],[3,-25],[0,-1],[4,-18],[5,-49],[3,-20],[4,-34],[1,-10],[-2,-45],[0,-20],[1,-13],[1,-21],[1,-20],[0,-5],[0,-8],[3,-32],[3,-24],[2,-20],[1,-20],[14,-15],[11,-16],[10,-17],[7,-18],[3,-6],[9,-15],[7,-14],[1,-4],[2,-10],[3,-20],[0,-10],[20,-44],[3,-15],[10,-43],[1,-10],[2,-25],[0,-10],[-2,-15],[1,-15],[0,-10],[-2,-15],[-2,-12],[6,-13],[12,-32],[10,-28],[11,-43],[7,-24],[9,-18],[5,-14],[4,-8],[21,-39],[8,-14],[13,-19],[5,-8],[22,-26],[24,-36],[8,-12],[6,-14],[8,-18],[4,-14],[2,-8],[3,-15],[8,-8],[19,-22],[8,-12],[5,-8],[9,-16],[5,-10],[5,-8],[13,-26],[24,-54],[7,-19],[13,-42],[17,-52],[10,-23],[8,-17],[25,-56],[1,-2],[35,-65],[17,-28],[1,-3],[6,-9],[2,-3],[7,-11],[0,-1],[13,-20],[5,-8],[4,-7],[8,-10],[3,-4],[5,-6],[2,-4],[3,-3],[10,-12],[14,-19],[2,-3],[37,-53],[20,-34],[11,-25],[6,-10],[5,-14],[5,-19],[5,-20],[2,-9],[6,-24],[4,-20],[1,-6],[1,-8],[1,-12],[1,-14],[1,-4],[0,-15],[0,-15],[0,-6],[2,-14],[1,-26],[1,-13],[4,-25],[3,-14],[7,-26],[0,-3],[3,-15],[3,-8],[7,-25],[1,-9],[6,-40],[2,-25],[1,-20],[0,-10],[-1,-11],[0,-3],[-3,-20],[-2,-12],[-1,-8],[-5,-19],[-5,-13],[-2,-5],[-5,-14],[-41,-95],[0,0],[-17,-36],[9,-12],[3,-5],[14,-20],[7,-13],[8,-13],[5,-8],[1,-1],[15,-29],[7,-7],[5,-7],[27,-35],[39,-49],[8,-12],[11,-16],[14,-26],[17,-62],[2,-9],[8,-29],[1,-5],[3,-10],[11,-32],[9,-18],[8,-14],[1,-3],[13,-21],[11,-16],[28,-39],[24,-30],[30,-32],[28,-25],[5,-4],[14,-11],[41,-30],[19,-14],[13,-9],[32,-20],[6,-14],[5,-12],[5,-13],[5,-13],[15,-41],[2,-7],[2,-6],[3,-7],[6,-20],[1,-1],[2,-7],[1,-3],[2,-7],[1,-3],[2,-6],[3,-11],[1,-10],[1,-7],[0,-4],[0,-6],[1,-8],[0,-4],[59,-66],[29,-32],[147,-163],[58,-65],[13,-13],[23,-27],[36,-47],[33,-49],[23,-56],[21,-26],[43,-34],[40,-88],[4,-37],[18,-62],[18,-39],[7,-8],[33,-37],[40,-45],[9,-9],[108,-112],[127,-117],[124,-140],[42,-39],[13,-12],[37,-21],[4,-2],[1,0],[29,-12],[47,-13],[48,-26],[27,-6],[33,2],[40,12],[65,14],[78,9],[30,-2],[28,-6],[50,-21],[5,-5],[12,-11],[13,-23],[48,-156],[25,-46],[29,-34],[52,-36],[9,-8],[7,-7],[60,-55],[87,-84],[156,-169],[101,-95],[26,-17],[68,-33],[20,-9],[70,-39],[15,-9],[35,-47],[34,-67],[57,-188],[35,-60],[62,-89],[35,-46],[8,-11],[76,-87],[38,-53],[30,-47],[4,-6],[21,-26],[7,-9],[2,-3],[1,-1],[0,-1],[11,-13],[34,-63],[39,-106],[40,-83],[9,-12],[2,-2],[2,-3],[15,-21],[35,-26],[15,-7],[6,-4],[1,-2],[7,-5],[29,-37],[1,-2],[5,-7],[0,-1],[0,-1],[1,-1],[38,-64],[0,-1],[10,-15],[27,-42],[5,-15],[7,-5],[4,-28],[-3,-19],[-1,-1],[0,-1],[0,-1],[0,-2],[-6,-5],[-2,-8],[-3,-9],[-3,-6],[-1,-1],[-9,-22],[-7,-9],[0,-1],[-1,0],[0,-1],[-6,-8],[-49,-54],[-23,-31],[-8,-11],[-1,-1],[0,-1],[-1,-1],[-39,-62],[-17,-32],[0,-1],[-1,-2],[-2,-13],[-1,-7],[-2,-8],[-6,-40],[0,0],[1,-36],[0,-14],[0,-7],[5,-38],[27,-118],[0,-1],[31,-124],[0,-1],[0,0],[1,-3],[7,-32],[21,-58],[11,-25],[2,-3],[0,-1],[1,-3],[9,-20],[13,-29],[1,0],[0,-2],[3,-6],[55,-62],[1,-2],[53,-73],[1,0],[1,-1],[2,-4],[11,-15],[18,-33],[2,-5],[15,-42],[17,-83],[-8,-331],[0,-9],[0,-1],[0,-9],[-1,-8],[0,-17],[0,-9],[-1,-46],[2,-19],[19,-65],[23,-51],[28,-46],[201,-246],[18,-30],[9,-43],[-2,-40],[-5,-40],[-5,-38],[-7,-50],[-1,-12],[-5,-101],[3,-17],[4,-20],[8,-45],[-2,-43],[-6,-24],[-19,-51],[-28,-47],[-42,-46],[-60,-45],[-17,-23],[-6,-20],[2,-29],[-18,-165],[2,-34],[12,-125],[9,-87],[24,-159],[15,-68],[4,-19],[53,-119],[27,-87],[15,-90],[22,-419],[1,-110],[0,-2],[2,-18],[0,-10],[1,-10],[3,-37],[1,-24],[1,-6],[0,-1],[0,-1],[0,-1],[0,-4],[3,-32],[6,-59],[11,-58],[11,-105],[20,-195],[11,-76],[3,-44],[3,-9],[39,-107],[2,-40],[1,-11],[-7,-51],[-20,-53],[-46,-81],[-93,-122],[-27,-35],[-28,-37],[-15,-39],[-11,-55],[-3,-35],[1,-20],[0,-9],[1,-8],[14,-80],[24,-59],[31,-47],[6,-10],[22,-39],[219,-347],[39,-67],[52,-101],[19,-37],[7,-42],[0,-59],[-10,-54],[-23,-73],[-1,-2],[0,-1],[0,-1],[-1,-2],[-1,-4],[-3,-9],[-14,-44],[-20,-63],[-5,-41],[-83,-282],[-23,-79],[-3,-11],[0,0],[-1,-2],[0,-2],[-2,-7],[-30,-100],[10,-97],[15,-116],[20,-176],[4,-31],[0,-28],[8,-36],[16,-34],[50,-80],[18,-38],[13,-29],[14,-41],[10,-45],[5,-51],[-1,-40],[3,-15],[44,-87],[9,-17],[63,-137],[130,-250],[6,-10],[96,-204],[185,-372],[157,-312],[4,-7],[44,-79],[31,-67],[10,-27],[14,-36],[56,-168],[25,-87],[4,-16],[15,-63],[20,-99],[16,-112],[6,-74],[3,-75],[-3,-75],[-2,-53],[-28,-186],[-6,-77],[-5,-161],[6,-134],[-2,-21],[-1,-69],[11,-290],[-6,-105],[-16,-134],[-3,-111],[7,-129],[18,-112],[22,-108],[4,-13],[2,-10],[3,-9],[25,-100],[6,-18],[23,-65],[34,-75],[3,-5],[44,-82],[52,-82],[191,-257],[124,-182],[56,-82],[47,-73],[20,-34],[23,-42],[30,-57],[14,-28],[2,-4],[37,-81],[13,-35],[75,-197],[92,-243],[12,-32],[36,-80],[33,-88],[33,-105],[27,-105],[13,-26],[15,-57],[5,-16],[26,-67],[28,-88],[8,-28],[216,-837],[87,-324],[52,-195],[225,-326],[356,-329],[88,-82],[352,-280],[386,-307],[13,-7],[206,-106],[207,-106],[35,-18],[95,-19],[31,-6],[31,-7],[109,-21],[56,-6],[125,-11],[104,30],[134,11],[36,-5],[12,-2],[2,0],[68,-10],[186,-97],[56,-69],[74,-94],[303,-370],[4,-3],[79,-43],[119,-36],[109,-29],[58,-15],[324,-125],[105,-36],[148,-102],[34,-31],[2,-2],[4,-4],[23,-24],[15,-19],[3,-3],[46,-66],[52,-61],[43,-51],[43,-76],[38,-66],[25,-43],[1,-2],[1,-2],[4,-7],[7,-13],[92,-159],[8,-14],[0,-1],[1,-1],[11,-20],[123,-214],[17,-31],[1,-2],[4,-8],[1,-2],[15,-34],[16,-33],[4,-8],[0,-1],[12,-26],[17,-36],[10,-24],[10,-23],[16,-32],[16,-31],[52,-112],[39,-68],[30,-54],[10,-17],[1,-1],[20,-36],[23,-41],[24,-41],[5,-10],[6,-10],[6,-33],[24,-58],[12,-31],[11,-42],[5,-47],[4,-40],[9,-50],[2,-16],[8,-88],[1,-21],[2,-17],[0,-3],[8,-82],[5,-59],[12,-95],[19,-106],[20,-82],[39,-103],[36,-72],[11,-24],[29,-49],[35,-44],[42,-40],[50,-36],[6,-5],[29,-33],[38,-65],[7,-13],[5,-9],[1,-1],[0,-1],[1,-1],[0,-1],[7,-12],[1,-1],[22,-39],[63,-110],[51,-97],[52,-85],[17,-23],[9,-13],[21,-23],[10,-11],[35,-31],[12,-8],[49,-34],[3,-2],[73,-47],[8,-21],[13,-37],[11,-27],[3,-10],[8,-29],[7,-23],[11,-28],[9,-35],[4,-15],[16,-70],[5,-19],[9,-28],[8,-20],[1,-1],[10,-25],[1,-3],[3,-4],[8,-19],[21,-12],[16,-2],[6,0],[12,-5],[8,-5],[3,-3],[5,-2],[17,-7],[26,-14],[2,0],[13,-7],[21,-11],[17,-7],[8,-5],[4,-2],[57,-40],[4,-7],[2,-3],[3,-2],[40,-39],[13,-14],[5,-9],[7,-13],[8,-13],[7,-22],[3,-3],[22,-28],[3,-4],[22,-28],[6,-15],[9,-17],[17,-24],[9,-11],[8,-12],[6,-7],[45,-43],[23,-17],[7,-7],[11,-9],[12,-14],[2,-3],[16,-8],[11,-3],[13,-4],[37,-8],[22,-7],[18,-3],[13,-3],[12,-2],[25,-2],[13,-4],[18,-4],[10,0],[27,-5],[4,-1],[10,-1],[4,-1],[9,-4],[4,-1],[9,-1],[9,-3],[9,-3],[13,-3],[14,-3],[18,-4],[13,-6],[13,-3],[30,-13],[9,-3],[4,-2],[17,-6],[2,-1],[1,0],[40,-19],[48,-29],[23,-15],[38,-29],[44,-36],[3,-4],[8,-6],[28,-27],[3,-2],[1,-2],[19,-19],[9,-10],[35,-40],[9,-11],[26,-39],[5,-7],[7,-11],[21,-32],[24,-43],[18,-35],[5,-8],[21,-33],[6,-13],[13,-21],[8,-12],[6,-7],[9,-11],[8,-13],[13,-20],[20,-33],[8,-12],[7,-13],[13,-15],[24,-36],[13,-14],[2,-2],[7,-10],[9,-10],[7,-7],[19,-22],[23,-25],[33,-27],[30,-30],[10,-10],[25,-23],[6,-7],[6,-8],[5,-5],[11,-36],[8,-19],[12,-26],[1,-2],[16,-19],[31,-53],[3,-8],[24,-55],[1,-1],[3,-6],[7,-13],[6,-19],[1,-1],[11,-32],[4,-11],[0,0],[9,-27],[2,-29],[4,-11],[1,-28],[0,-30],[0,-16],[-2,-45],[-2,-55],[0,-5],[-1,-8],[-3,-12],[16,-38],[15,-37],[11,-18],[17,-27],[23,-70],[8,-68],[-4,-16],[0,-2],[-2,-43],[1,-18],[-4,-25],[0,-6],[-1,-24],[-25,-81],[-1,-1],[-9,-31],[-14,-33],[-44,-94],[-15,-29],[-36,-63],[-2,-5],[-17,-33],[-6,-12],[-69,-196],[0,-1],[-38,-108],[-8,-18],[-8,-15],[1,-10],[-16,-23],[-58,-51],[-5,-5],[-1,0],[-7,-7],[-33,-34],[-26,-27],[-4,-4],[-12,-21],[-21,-33],[-7,-12],[-20,-49],[-9,-19],[-12,-49],[-5,-14],[-2,-17],[-5,-16],[-4,-16],[-9,-57],[0,-27],[0,-1],[0,-43],[0,-1],[0,-20],[0,-1],[0,-5],[-1,-9],[-1,-22],[0,-3],[0,-9],[-1,-31],[-1,-6],[-5,-36],[1,-34],[13,-62],[19,-54],[14,-24],[11,-22],[49,-68],[10,-24],[13,-27],[12,-42],[4,-25],[7,-48],[12,-55],[16,-54],[6,-18],[11,-28],[82,-175],[71,-136],[76,-135],[47,-65],[1,-1],[13,-23],[41,-52],[62,-62],[1,-1],[1,0],[16,-17],[19,-19],[9,-9],[54,-45],[62,-42],[49,-25],[27,-14],[27,-9],[24,-8],[23,-9],[23,-8],[22,-10],[27,-18],[21,-27],[30,-36],[2,-1],[1,-1],[37,-27],[47,-20],[48,-8],[28,2],[29,8],[77,43],[7,2],[64,23],[71,11],[36,-2],[19,-1],[47,-13],[79,-36],[4,-2],[90,-46],[29,-16],[57,-31],[62,-39],[39,-29],[13,-10],[61,-54],[22,-25],[9,-12],[32,-54],[11,-26],[3,-9],[5,-12],[9,-20],[33,-79],[33,-80],[7,-18],[37,-70],[31,-48],[32,-42],[48,-54],[17,-17],[21,-22],[7,-6],[88,-75],[87,-58],[6,-4],[2,-1],[1,-1],[0,0],[15,-11],[17,-21],[6,-12],[7,-14],[11,-24],[12,-30],[6,-15],[13,-40],[9,-39],[6,-32],[23,-176],[3,-43],[12,-145],[12,-70],[25,-95],[40,-96],[53,-96],[60,-82],[27,-29],[82,-89],[78,-73],[44,-38],[277,-213],[43,-45],[37,-50],[9,-16],[21,-38],[51,-149],[44,-148],[49,-194],[31,-94],[49,-118],[67,-125],[58,-90],[54,-75],[66,-82],[66,-72],[26,-26],[150,-125],[8,-8],[2,-1],[33,-30],[36,-30],[29,-26],[171,-151],[130,-127],[126,-137],[37,-42],[41,-31],[87,-64],[76,-50],[2,-2],[13,-8],[13,-9],[2,-1],[45,-28],[46,-27],[65,-40],[64,-40],[28,-16],[24,-28],[27,-31],[49,-64],[34,-53],[29,-50],[29,-61],[4,-13],[6,-17],[1,-1],[0,-1],[1,-3],[4,-13],[6,-19],[4,-16],[0,-2],[1,-2],[5,-18],[9,-55],[3,-59],[-2,-77],[-4,-62],[-6,-50],[-2,-15],[-11,-56],[-9,-46],[-1,-4],[-109,-413],[-31,-131],[-11,-93],[-7,-57],[-8,-129],[-1,-23],[-2,-50],[-2,-49],[0,-9],[0,-11],[-3,-80],[0,-8],[2,-15],[0,-1],[0,-1],[8,-69],[17,-140],[19,-89],[39,-113],[25,-63],[8,-22],[30,-78],[61,-140],[19,-39],[47,-98],[50,-122],[39,-119],[87,-310],[115,-410],[59,-213],[61,-225],[31,-93],[43,-104],[12,-28],[62,-121],[58,-87],[82,-106],[77,-85],[81,-73],[82,-61],[91,-56],[67,-34],[74,-32],[68,-24],[61,-17],[209,-74],[162,-67],[63,-34],[49,-40],[27,-33],[26,-39],[21,-39],[17,-44],[15,-64],[5,-42],[-3,-42],[-11,-38],[-25,-45],[-33,-39],[-225,-183],[-23,-17],[-50,-62],[-35,-37],[-30,-28],[-31,-48],[-30,-53],[-24,-60],[-18,-63],[-7,-25],[-25,-205],[0,-141],[8,-81],[7,-84],[20,-117],[30,-108],[46,-115],[74,-147],[92,-164],[113,-182],[25,-34],[170,-206],[49,-70],[46,-51],[53,-46],[56,-36],[54,-43],[57,-54],[32,-26],[40,-47],[15,-18],[79,-64],[50,-49],[45,-52],[55,-74],[23,-36],[25,-38],[39,-69],[70,-136],[7,-17],[27,-60],[27,-75],[37,-127],[40,-112],[9,-41],[13,-112],[17,-222],[9,-84],[4,-72],[-1,-75],[-5,-128],[20,-127],[3,-52],[0,-45],[0,-9],[6,-55],[15,-64],[24,-68],[35,-73],[34,-59],[9,-12],[-3,0],[49,-78],[48,-78],[321,-516],[137,-320],[261,-455],[245,-212],[436,-173],[124,-24],[253,-86],[383,-113],[353,84],[196,106],[158,86],[72,29],[170,70],[363,28],[142,-4],[273,-8],[235,-56],[578,-421],[125,-91],[125,-91],[393,-286],[161,-188],[149,-222],[54,-79],[196,-277],[210,-378],[218,-374],[175,-401],[219,-456],[77,-122],[9,-22],[57,-141],[80,-176],[61,-146],[34,-98],[32,-94],[45,-94],[28,-54],[109,-189],[70,-100],[129,-172],[125,-120],[233,-168],[102,-74],[88,-65],[106,-95],[98,-84],[27,-33],[299,-207],[89,-75],[44,-41],[142,-131],[90,-122],[128,-139],[95,-107],[144,-155],[96,-122],[150,-168],[373,-446],[29,-27],[52,-44],[131,-87],[63,-49],[74,-75],[111,-106],[454,-344],[103,-83],[93,-82],[21,-27],[23,-30],[71,-92],[44,-71],[6,-9],[65,-101],[19,-47],[46,-79],[21,-38],[33,-52],[59,-69],[45,-43],[61,-45],[79,-57],[107,-69],[158,-97],[76,-63],[90,-85],[57,-41],[51,-43],[59,-71],[114,-53],[132,-47],[212,-64],[126,-45],[127,-80],[37,-19],[55,-29],[196,-167],[254,-291],[288,-392],[249,-272],[209,-168],[229,-141],[51,-22],[172,-75],[219,-52],[231,-1],[225,52],[9,2],[57,14],[381,154],[22,5],[303,62],[141,32],[157,36],[292,-41],[180,-76],[177,-114],[178,-183],[446,-531],[41,-43],[17,-17],[9,-5],[4,-2],[14,-7],[13,-8],[163,-87],[298,-131],[41,-23],[0,0],[2,-1],[6,-4],[212,-134],[146,-96],[32,-21],[196,-129],[197,-165],[116,-97],[69,-59],[167,-142],[233,-268],[31,-37],[157,-199],[99,-166],[23,-37],[22,-36],[14,-23],[104,-117],[161,-130],[282,-200],[34,-9],[71,-18],[104,-38],[201,-106],[92,-58],[61,-50],[76,-38],[87,-46],[77,-35],[55,-21],[67,-30],[141,-54],[26,-9],[53,-35],[41,-14],[69,-24],[86,-30],[8,-2],[95,-34],[60,-32],[46,-26],[86,-36],[17,-9],[97,-47],[68,-25],[73,-41],[82,-39],[73,-45],[58,-39],[79,-43],[70,-40],[87,-50],[77,-65],[194,-202],[145,-165],[107,-110],[113,-103],[77,-88],[61,-71],[187,-189],[158,-113],[52,-42],[5,-3],[73,-60],[88,-72],[55,-40],[86,-38],[36,-35],[49,-46],[56,-37],[74,-50],[89,-71],[154,-68],[69,-37],[73,-52],[80,-46],[44,-31],[57,-56],[58,-47],[53,-46],[29,-33],[35,-40],[42,-45],[42,-50],[42,-105],[61,-121],[22,-59],[55,-56],[33,-40],[50,-43],[76,-55],[50,-35],[57,-49],[56,-41],[46,-44],[61,-57],[46,-47],[61,-68],[54,-73],[68,-83],[41,-42],[42,-54],[39,-67],[19,-50],[36,-86],[12,-62],[6,-37],[8,-47],[0,-62],[5,-47],[28,-46],[49,-46],[41,-42],[66,-54],[64,-17],[56,-10],[58,-25],[16,-7],[62,-21],[61,-39],[37,-34],[64,-41],[83,-30],[80,-53],[88,-44],[40,-30],[27,-20],[57,-33],[4,-3],[44,-38],[60,-50],[48,-43],[47,-48],[55,-54],[34,-48],[18,-26],[31,-37],[49,-61],[23,-50],[3,-6],[31,-60],[19,-62],[22,-57],[13,-79],[4,-164],[21,-188],[2,-185],[4,-186],[-22,-180],[0,-6],[-16,-207],[-12,-159],[-4,-34],[-10,-78],[-9,-78],[-3,-24],[-2,-163],[7,-76],[15,-125],[72,-140],[45,-72],[142,-125],[75,-53],[56,-31],[76,-20],[68,3],[14,0],[131,49],[52,23],[101,-18],[99,-17],[86,-17],[117,-55],[107,-80],[107,-80],[86,-60],[80,-75],[58,-62],[44,-40],[130,-162],[56,-51],[47,-61],[44,-54],[42,-51],[47,-71],[38,-53],[37,-58],[35,-53],[20,-35],[13,-23],[26,-52],[54,-100],[24,-48],[63,-66],[103,-82],[107,-78],[82,-76],[79,-76],[94,-70],[88,-56],[30,-17],[61,-36],[54,-39],[57,-37],[8,-6],[55,-8],[46,-2],[57,-7],[47,-5],[83,-15],[110,-77],[58,-49],[39,-47],[53,-54],[25,-38],[13,-55],[11,-74],[22,-85],[21,-100],[36,-89],[33,-67],[55,-56],[69,-40],[67,-51],[108,-76],[90,-45],[61,-26],[34,15],[56,9],[60,1],[259,-77],[34,-25],[23,-28],[25,-27],[24,-32],[33,-52],[43,-59],[38,-53],[49,-47],[53,-46],[46,-60],[56,-70],[28,-39],[56,-50],[39,-43],[34,-36],[26,-29],[65,-79],[43,-51],[69,-79],[73,-107],[28,-271],[13,-72],[97,-525],[46,-295],[7,-109],[27,-72],[137,-214],[91,-177],[107,-311],[56,-137],[46,-92],[11,-21],[13,-26],[4,-9],[43,-85],[20,-44],[16,-65],[42,-213],[53,-166],[2,-10],[25,-106],[-1,-72],[-20,-57],[-19,-54],[-2,-31],[-3,-29],[6,-55],[20,-215],[55,-275],[86,-217],[45,-148],[21,-95],[162,-1011],[3,-32],[-7,-81],[-65,-350],[-75,-402],[-5,-72],[13,-73],[40,-161],[85,-172],[51,-81],[15,-51],[4,-81],[-8,-111],[6,-38],[43,-103],[9,-56],[4,-72],[0,-11],[8,-32],[6,-24],[27,-53],[99,-112],[275,-328],[59,-70],[33,-41],[38,-47],[38,-47],[26,-31],[26,-32],[58,-72],[59,-72],[19,-24],[28,-44],[8,-14],[9,-13],[22,-35],[28,-66],[4,-9],[4,-9],[40,-65],[38,-37],[68,-31],[21,-16],[33,-25],[60,-68],[7,-9],[15,-19],[18,-25],[18,-25],[74,-103],[105,-114],[4,-5],[72,-60],[26,-20],[132,-103],[23,-18],[12,-14],[44,-47],[11,-12],[9,-12],[3,-4],[9,-11],[60,-79],[80,-166],[163,-408],[19,-43],[236,-540],[51,-154],[107,-494],[28,-113],[60,-158],[50,-107],[58,-78],[338,-333],[110,-109],[130,-128],[86,-134],[244,-193],[110,-112],[28,-44],[10,-52],[1,-7],[0,-12],[1,-41],[5,-300],[-1,-156],[-7,-89],[-13,-194],[-5,-32],[-81,-553],[-26,-176],[-20,-210],[0,-146],[0,-90],[18,-122],[39,-120],[9,-23],[79,-206],[28,-118],[54,-357],[13,-87],[1,-68],[0,-35],[2,-10],[46,-221],[47,-222],[41,-198],[41,-197],[13,-63],[13,-62],[9,-40],[5,-21],[8,-28],[8,-28],[12,-42],[22,-39],[23,-41],[7,-7],[63,-59],[24,-27],[48,-54],[47,-54],[161,-185],[162,-184],[47,-54],[46,-54],[62,-89],[62,-90],[11,-17],[315,-395],[10,-10],[384,-405],[271,-271],[92,-78],[155,-131],[85,-55],[57,-38],[192,-91],[240,-74],[3,-1],[130,-25],[74,-14],[56,-11],[52,-10],[282,-54],[201,-71],[14,-5],[30,-9],[8,-3],[21,-6],[7,-2],[37,-12],[38,-11],[120,-36],[172,-59],[206,-71],[164,-114],[51,-36],[141,-129],[113,-129],[7,-8],[6,-7],[43,-48],[113,-311],[41,-190],[88,-245],[83,-168],[120,-179],[34,-51],[130,-127],[29,-26],[6,-5],[5,-6],[110,-101],[112,-81],[34,-24],[152,-122],[49,-38],[118,-64],[142,-77],[251,-143],[183,-98],[88,-45],[44,-23],[10,1],[151,-72],[60,-16],[108,-30],[139,-31],[162,-8],[169,46],[75,30],[95,38],[108,74],[34,41],[33,41],[68,82],[1,1],[16,20],[17,21],[1,0],[3,5],[113,124],[31,28],[153,139],[147,93],[151,90],[6,4],[44,15],[43,15],[15,5],[77,16],[51,2],[133,13],[129,12],[118,-7],[83,-4],[103,-12],[62,-6],[135,-38],[27,-4],[169,-89],[108,-138],[65,-114],[60,-90],[5,-8],[124,-222],[143,-269],[45,-71],[143,-223],[91,-156],[148,-166],[53,-72],[59,-80],[235,-184],[217,-120],[5,-3],[151,-57],[106,-40],[155,-54],[66,-22],[81,-20],[682,-180],[154,-40],[103,-18],[201,-65],[66,-22],[210,-79],[21,-8],[159,-102],[179,-131],[91,-63],[9,-7],[127,-117],[231,-256],[63,-64],[242,-245],[207,-196],[315,-311],[227,-150],[67,-44],[206,-58],[84,-5],[29,-2],[88,-5],[17,-1],[12,0],[196,0],[40,-20],[27,-10],[4,-2],[33,-12],[107,-54],[66,-47],[945,-1274],[6,-14],[75,-171],[23,-79],[62,-219],[96,-282],[100,-194],[20,-42],[77,-140],[75,-56],[84,-33],[14,0],[101,0],[231,-123],[106,-122],[19,-19],[153,-161],[217,-267],[12,-15],[11,-194],[-2,-38],[-2,-37],[-7,-120],[115,-122],[265,-281],[194,-100],[315,-162],[166,-85],[108,-62],[14,-7],[10,-6],[4,-2],[18,-9],[47,-26],[43,-42],[17,-13],[120,-142],[162,-806],[70,-165],[52,-69],[27,-12],[82,-34],[27,-11],[3,-2],[7,-3],[3,-1],[51,-21],[96,-41],[44,-51],[40,-46],[44,-29],[65,-43],[65,-43],[43,-28],[0,0],[15,-10],[8,-26],[41,-141],[13,-47],[9,-29],[14,-49],[18,-33],[14,-24],[0,0],[19,-33],[27,-48],[28,-48],[18,-32],[23,-41],[35,-61],[34,-61],[23,-40],[14,-24],[15,-31],[83,-169],[28,-56],[7,-15],[11,-23],[12,-23],[7,-15],[14,-29],[42,-84],[13,-28],[12,-32],[18,-47],[14,-29],[7,-16],[13,-31],[9,-19],[1,-14],[1,-9],[0,-1],[5,-13],[5,-11],[10,-70],[64,-236],[264,-445],[23,-73],[11,-35],[17,-51],[16,-51],[11,-35],[19,-59],[57,-177],[10,-30],[-1,-31],[0,0],[-2,-66],[-3,-98],[-4,-99],[-2,-66],[0,-1],[0,-5],[0,-1],[-10,-107],[-26,-266],[-4,-52],[-6,-107],[-1,-8],[32,-111],[103,-355],[34,-118],[58,-79],[72,-97],[229,-311],[207,-129],[169,-104],[68,-43],[115,-71],[739,-192],[11,-3],[12,-3],[172,-72],[0,0],[502,-203],[736,-381],[22,-11],[14,-7],[9,-5],[16,-8],[5,-3],[11,-6],[20,-10],[80,-37],[22,-10],[21,-10],[57,-26],[13,-9],[38,-25],[12,-8],[14,-9],[148,-116],[8,-7],[10,-7],[96,-57],[581,-343],[230,-136],[3,-2],[6,-3],[2,-1],[275,-131],[221,-105],[626,-185],[176,-52],[99,-69],[35,-25],[53,-37],[53,-37],[35,-25],[0,0],[51,-35],[151,-106],[19,-13],[26,-33],[111,-137],[190,-234],[32,-77],[32,-76],[30,-73],[73,-175],[1,-2],[1,-4],[1,-1],[73,-176],[30,-82],[29,-80],[256,-708],[23,-61],[68,-204],[1,-4],[3,-11],[1,-3],[1,-2],[2,-6],[1,-1],[0,0],[70,-178],[144,-267],[181,-280],[163,-231],[41,-87],[61,-118],[33,-104],[15,-111],[6,-46],[5,-44],[0,0],[2,-9],[1,-16],[0,0],[14,-183],[-21,-113],[-82,-257],[-10,-26],[-8,-22],[-1,-4],[-71,-105],[-11,-21],[-58,-104],[-66,-74],[-31,-29],[-3,-3],[-44,-40],[-37,-35],[-115,-65],[-52,-30],[-7,-4],[-13,-7],[-58,-34],[-17,-9],[-3,-1],[-10,-4],[-83,-35],[-55,-12],[-85,-19],[-297,-24],[-73,-15],[-151,-30],[-13,-2],[-8,-3],[-90,-35],[-31,-9],[-149,-44],[-112,-78],[-62,-78],[-36,-88],[-50,-123],[-11,-51],[-6,-27],[-3,-16],[-2,-9],[-2,-57],[0,-14],[5,-11],[19,-40],[30,-64],[19,-52],[30,-35],[34,-38],[317,-298],[78,-71],[146,-132],[9,-8],[29,-24],[10,-12],[11,-13],[95,-119],[47,-26],[48,-31],[165,-99],[138,-95],[469,-165],[58,5],[30,3],[158,-20],[0,0],[44,-5],[137,-46],[27,-9],[133,-78],[58,-65],[12,-25],[23,-50],[7,-28],[6,-27],[1,-1],[8,-36],[5,-106],[-6,-87],[-11,-82],[-62,-136],[-12,-14],[-27,-81],[-47,-77],[-53,-70],[-42,-57],[-29,-24],[-25,-13],[-21,-4],[-28,0],[-27,7],[-50,-5],[-33,-5],[-32,-15],[-83,-24],[-56,-22],[-71,-22],[-32,-1],[-34,0],[-35,4],[-115,2],[-46,9],[-18,9],[-19,7],[-29,19],[-95,56],[-22,18],[-44,30],[-25,21],[-37,24],[-15,13],[-43,39],[-15,18],[-14,15],[-41,55],[-20,33],[-22,34],[-18,12],[-47,16],[-32,27],[-11,22],[-7,16],[-6,32],[-9,65],[-9,67],[-4,17],[16,21],[-6,13],[-6,-1],[-22,-7],[-17,-5],[-15,-5],[-80,-95],[-12,-16],[-21,-25],[-196,-347],[-154,-155],[-89,-60],[-49,-29],[-66,-23],[-149,-22],[-69,-13],[-139,13],[-273,94],[-260,124],[-15,8],[-10,5],[-77,40],[-86,45],[-10,5],[-1,-1],[-9,2],[-10,1],[-36,5],[-47,6],[-50,-23],[-68,-31],[-116,-118],[-31,-60],[-28,-91],[-19,-144],[35,-134],[61,-111],[26,-56],[182,-167],[130,-113],[117,-91],[243,-149],[91,-95],[4,-4],[185,-190],[39,-85],[40,-191],[39,-258],[120,-554],[61,-171],[28,-90],[1,-2],[30,-96],[5,-17],[15,-291],[5,-103],[11,-121],[18,-203],[38,-153],[29,-116],[6,-21],[6,-11],[47,-87],[15,-28],[0,0],[4,-8],[6,-10],[6,-11],[4,-7],[0,0],[31,-57],[4,-8],[83,-122],[24,-15],[48,-28],[53,-32],[20,-12],[131,-96],[33,-24],[14,-18],[0,0],[18,-22],[28,-34],[27,-34],[18,-22],[7,-59],[8,-80],[7,-99],[3,-60],[1,-8],[-19,-98],[-2,-13],[-85,-139],[-79,-88],[-47,-51],[-19,-16],[-62,-55],[-14,-12],[-95,-56],[-95,-56],[-1,0],[-63,-55],[-22,-13],[-20,-12],[-39,-1],[-11,-1],[-24,-1],[-69,0],[-26,0],[-74,14],[-84,42],[-16,9],[-64,37],[0,0],[-15,9],[-53,56],[-28,42],[-46,69],[-95,111],[-105,111],[-43,29],[-63,41],[-54,24],[-41,18],[-20,2],[-117,12],[-74,-8],[-64,-5],[0,-1],[-10,0],[-76,-15],[-71,-13],[-95,-42],[-74,-56],[-2,-2],[-40,-53],[-24,-23],[-14,-15],[-5,-4],[-21,-42],[-4,-11],[-7,-22],[-20,-64],[-3,-12],[-19,-85],[0,-111],[4,-48],[5,-82],[2,-23],[30,-105],[2,-7],[31,-83],[74,-139],[64,-108],[10,-17],[60,-82],[4,-5],[4,-5],[7,-9],[3,-5],[7,-8],[21,-26],[6,-8],[36,-47],[3,-3],[81,-80],[44,-51],[41,-46],[89,-66],[6,-4],[260,-197],[88,-67],[0,-14],[10,-14],[50,-39],[3,-3],[74,-69],[74,-111],[24,-49],[44,-93],[1,-2],[2,-3],[3,-6],[2,-11],[0,-1],[1,-5],[3,-19],[9,-54],[3,-18],[1,-6],[2,-11],[0,-7],[-1,-6],[-10,-154],[-7,-25],[-45,-142],[-43,-97],[-84,-139],[-57,-68],[-59,-71],[-44,-49],[-4,-4],[-5,-5],[-5,-6],[-3,-3],[0,0],[-46,-51],[-20,-21],[-63,-84],[-37,-68],[-16,-29],[-10,-41],[-11,-43],[-21,-97],[3,-20],[8,-63],[42,-125],[84,-84],[95,-69],[11,-4],[74,-24],[50,-8],[0,-1],[7,-1],[10,-1],[10,-2],[7,-1],[2,0],[4,0],[1,0],[77,0],[85,0],[145,0],[13,0],[64,0],[73,14],[49,7],[46,7],[85,28],[95,69],[118,65],[8,5],[74,27],[37,10],[39,10],[30,8],[89,0],[38,0],[2,0],[35,0],[26,0],[73,-29],[32,-13],[30,-19],[31,-36],[196,-289],[187,-239],[27,-70],[50,-18],[21,19],[6,7],[43,48],[85,83],[43,38],[20,18],[15,14],[59,55],[32,57],[25,45],[59,107],[42,139],[29,67],[0,0],[24,58],[42,111],[19,22],[22,26],[4,5],[6,3],[14,6],[12,6],[8,3],[42,13],[53,13],[8,2],[38,1],[4,0],[70,-8],[66,-13],[21,-4],[25,-5],[7,-5],[21,-14],[7,-5],[1,0],[1,-1],[0,0],[26,-17],[22,-52],[31,-73],[21,-97],[0,-107],[0,-60],[-20,-26],[-3,-5],[-18,-24],[-38,-49],[-28,-38],[-22,-29],[-5,-6],[-14,-18],[-21,0],[-10,-14],[-38,-8],[-26,-6],[-95,-27],[-105,0],[-71,-11],[-24,-3],[-74,-14],[-1,-1],[-12,-6],[-21,-10],[-50,-25],[-29,-60],[-19,-39],[-3,-7],[-2,-5],[-3,-6],[-3,-10],[-3,-6],[-1,-1],[-6,-13],[-2,-4],[-16,-38],[-6,-14],[-2,-6],[-1,-7],[-1,-9],[-3,-30],[0,-2],[-1,-10],[-2,-15],[-1,-8],[-2,-16],[-3,-18],[-3,-14],[-5,-23],[-6,-13],[-15,-29],[-31,-14],[-25,-22],[-7,-6],[-15,-19],[-3,-4],[-8,-12],[-3,-3],[-14,-19],[-25,-44],[-6,-10],[-21,-84],[-11,-55],[-31,-70],[-2,-2],[-39,-62],[-12,-19],[0,0],[-20,-67],[-1,-3],[-6,-19],[0,-1],[-3,-10],[-5,-14],[-4,-15],[-3,-10],[6,-57],[4,-40],[22,-42],[39,-62],[13,-22],[19,-15],[57,-44],[30,-24],[21,0],[53,-28],[31,0],[43,-28],[0,-6],[0,-21],[31,-42],[4,-4],[28,-24],[17,-13],[57,-43],[80,-63],[25,-20],[23,-10],[0,0],[72,-32],[32,-27],[19,0],[2,0],[106,-70],[95,-42],[95,-69],[53,-60],[20,-24],[64,-83],[4,-21],[6,-35],[-21,-139],[-31,-125],[-64,-125],[-84,-111],[-85,-56],[-63,-28],[-105,-55],[-64,-56],[-74,-111],[-10,-69],[0,-56],[53,-70],[42,-27],[74,-28],[63,0],[63,28],[95,27],[100,62],[81,41],[4,3],[1,1],[129,74],[98,108],[23,105],[-1,137],[-14,118],[-2,18],[-15,109],[1,34],[17,94],[95,83],[53,70],[14,26],[12,22],[35,67],[13,24],[74,153],[11,29],[21,56],[6,16],[8,20],[7,18],[0,46],[0,5],[0,17],[0,71],[-9,93],[-2,18],[-21,84],[-11,41],[-21,70],[-21,42],[-10,83],[0,70],[21,41],[10,9],[106,89],[14,5],[2,0],[46,2],[2,-1],[16,-7],[0,0],[9,-4],[11,-5],[15,-15],[8,-8],[17,-17],[6,-6],[34,-57],[12,-22],[4,-7],[6,-9],[5,-10],[4,-6],[2,-10],[3,-14],[2,-15],[2,-10],[8,-39],[15,-79],[18,-32],[18,-32],[0,0],[3,-6],[5,-8],[5,-9],[3,-6],[11,-18],[53,-56],[5,-7],[5,-7],[11,-14],[95,-83],[31,-42],[64,-83],[3,-10],[34,-113],[3,-9],[2,-7],[-1,-20],[-1,-9],[-1,-12],[-1,-17],[-2,-18],[-1,-12],[0,-7],[-1,-10],[-1,-11],[0,-6],[-2,-17],[-4,-20],[-27,-105],[0,-1],[-20,-26],[-56,-73],[-19,-26],[-43,-54],[-94,-99],[-15,-31],[-17,-38],[-11,-56],[1,-1],[0,0],[10,-82],[42,-111],[42,-56],[6,-5],[79,-78],[116,-70],[127,-28],[52,14],[21,14],[53,14],[64,14],[105,42],[11,2],[116,25],[105,-13],[22,-17],[28,-22],[34,-31],[4,-4],[13,-19],[4,-5],[5,-7],[5,-8],[4,-5],[5,-14],[8,-21],[8,-21],[5,-14],[1,-2],[2,-5],[-1,-3],[0,-2],[-25,-81],[-58,-192],[-11,-14],[-21,-24],[-42,-45],[-9,-12],[-36,-47],[-19,-25],[-84,-83],[-17,-16],[-41,-39],[-16,-15],[-6,-23],[-4,-18],[-11,-70],[21,-42],[3,-6],[18,-35],[5,-4],[48,-38],[84,-28],[71,0],[3,0],[53,28],[116,83],[74,56],[84,69],[85,56],[84,42],[64,28],[12,2],[72,11],[74,14],[63,-27],[46,-41],[18,-15],[52,-83],[35,-69],[8,-15],[10,-53],[0,0],[11,-58],[-9,-113],[-2,-26],[-32,-125],[-21,-70],[-42,-69],[-32,-56],[-52,-56],[-22,-23],[-31,-32],[-42,-70],[-14,-26],[-29,-57],[-10,-83],[0,-42],[1,-2],[31,-109],[42,-70],[53,-83],[42,-28],[42,-42],[42,-55],[20,-62],[12,-36],[10,-97],[-7,-59],[-2,-15],[-1,-10],[8,-31],[2,-10],[1,-3],[1,0],[7,-20],[2,-5],[16,-58],[6,-21],[10,-32],[1,-3],[20,-39],[31,-28],[12,-7],[10,-7],[17,0],[0,0],[1,0],[0,0],[0,0],[13,0],[53,0],[1,0],[52,14],[42,28],[42,56],[29,38],[3,3],[39,65],[3,5],[19,51],[2,4],[42,98],[21,67],[1,2],[24,52],[12,40],[10,34],[34,83],[1,2],[24,26],[22,38],[10,17],[42,42],[35,23],[7,5],[14,31],[6,14],[1,3],[32,7],[11,7],[1,1],[3,2],[1,1],[5,3],[63,84],[22,41],[5,9],[68,103],[64,111],[74,125],[52,70],[16,20],[48,63],[57,63],[6,6],[53,42],[9,4],[65,24],[74,14],[52,-14],[41,-14],[2,0],[52,-14],[20,-18],[3,-2],[4,-3],[4,-4],[2,-2],[20,-24],[5,-7],[43,-79],[9,-16],[6,-13],[11,-19],[16,-29],[16,-29],[10,-19],[11,-70],[10,-55],[20,-126],[22,-138],[0,-42],[22,-70],[10,-55],[11,-28],[0,-42],[0,-27],[0,-56],[0,-42],[-21,-55],[-11,-42],[-11,-42],[-21,-41],[-8,-55],[-2,-15],[-11,-83],[0,-42],[11,-56],[10,-55],[8,-20],[12,-30],[11,-29],[8,-20],[0,-1],[16,-16],[9,-10],[49,-8],[20,-2],[0,-1],[3,0],[8,3],[33,10],[10,4],[2,0],[4,2],[0,0],[1,1],[25,19],[43,34],[25,35],[19,29],[43,55],[0,1],[10,27],[21,97],[41,94],[2,4],[21,41],[10,14],[4,3],[52,34],[7,5],[11,0],[42,56],[84,58],[52,35],[11,22],[15,34],[16,33],[11,22],[0,0],[29,61],[1,2],[53,124],[22,77],[8,32],[22,29],[41,54],[52,22],[11,2],[63,13],[33,-3],[55,-22],[34,-37],[60,-72],[72,-73],[37,-38],[61,-36],[9,-3],[24,-9],[35,-13],[36,-14],[24,-8],[32,-14],[53,-14],[10,-7],[137,-91],[11,-13],[32,-42],[21,-42],[31,-42],[32,-69],[19,-42],[0,0],[13,-28],[3,-9],[18,-46],[0,-70],[-1,-5],[-6,-42],[0,0],[-4,-22],[-2,-9],[-19,-61],[-8,-28],[-7,-24],[-2,-6],[-1,-4],[-2,-6],[-3,-5],[-2,-3],[-1,-1],[-18,-23],[-19,-25],[-32,-41],[-5,-7],[-18,-24],[-6,-8],[-13,-17],[-5,-2],[-7,-3],[-17,-8],[-3,-1],[-38,-42],[-13,-15],[-10,-10],[-2,-2],[-27,-27],[-9,-9],[-6,-6],[-10,-13],[-32,-43],[-9,-22],[-10,-25],[-3,-8],[-2,-20],[-8,-50],[6,-34],[4,-22],[3,-5],[18,-36],[1,0],[10,-43],[16,-82],[5,-28],[5,-12],[0,0],[15,-41],[22,-58],[-10,-28],[-22,-29],[-10,-13],[-19,-12],[-10,-8],[-33,-21],[-1,-1],[-10,6],[-64,36],[-7,11],[-46,73],[-10,27],[-11,42],[-21,56],[-35,70],[-7,13],[-43,68],[-10,15],[-34,23],[-8,5],[-42,42],[-64,14],[-31,0],[-43,0],[-9,-2],[-22,-4],[-42,-8],[-23,0],[-22,0],[-40,0],[-22,0],[-20,0],[-85,-14],[-42,0],[-36,-16],[-59,-26],[0,0],[-53,0],[-73,-14],[-57,0],[-7,0],[-42,-41],[-42,-28],[-32,-42],[-42,-55],[-32,-56],[-10,-42],[0,-14],[-11,-27],[0,-14],[0,-42],[0,-42],[0,-28],[11,-41],[15,-122],[6,-45],[0,-14],[0,-14],[10,-55],[0,-28],[-10,-70],[-5,-12],[-15,-33],[-22,-52],[0,-28],[-9,-23],[-2,-5],[-9,-30],[-12,-39],[-11,-28],[-31,-83],[-11,-14],[0,-28],[-10,-14],[-11,-28],[-9,-25],[-12,-31],[0,-41],[0,-42],[11,-56],[21,-55],[31,-84],[32,-41],[11,-42],[42,-56],[31,-41],[32,-42],[63,-56],[32,-14],[53,-27],[20,-11],[33,-17],[42,-28],[53,-28],[31,-14],[42,-14],[6,-3],[0,0],[16,-10],[19,-4],[65,-10],[46,-11],[17,-3],[20,-5],[9,-3],[13,-2],[22,-4],[43,-12],[9,-2],[53,-14],[42,-14],[64,0],[52,-14],[32,-14],[7,-2],[35,-12],[50,-21],[10,-5],[4,-1],[26,0],[11,0],[15,0],[21,0],[53,0],[56,0],[8,0],[29,4],[54,9],[1,1],[106,27],[50,27],[2,1],[43,14],[0,11],[0,3],[31,14],[0,0],[53,14],[51,-14],[2,0],[32,-11],[0,0],[10,-3],[0,-14],[11,0],[10,-14],[0,-13],[0,-15],[53,-41],[0,-14],[10,-28],[22,-28],[10,-14],[8,-21],[3,-7],[21,-55],[0,-4],[10,-80],[-10,-83],[0,-66],[0,-17],[-11,-42],[-10,-56],[10,-28],[11,-41],[10,-70],[11,-28],[53,-83],[52,-83],[43,-56],[21,-28],[37,-33],[58,-50],[53,-70],[21,-29],[24,-44],[15,-28],[46,-53],[28,-25],[34,-29],[3,-6],[4,-8],[4,-8],[3,-5],[7,-15],[10,-6],[33,-22],[21,0],[15,4],[24,6],[2,1],[12,3],[2,2],[40,26],[8,0],[2,0],[11,0],[2,1],[2,0],[49,13],[41,27],[1,1],[32,14],[52,55],[106,70],[21,28],[33,21],[9,6],[78,46],[17,10],[8,-3],[34,-11],[32,-28],[2,-7],[10,-33],[6,-19],[3,-10],[0,-42],[0,-8],[0,-20],[-5,-20],[-7,-27],[-12,-30],[-8,-18],[0,0],[-4,-11],[-6,-14],[-1,-5],[-6,-12],[-3,-8],[-1,-2],[-6,-15],[-9,-21],[-10,-24],[-6,-15],[-2,-2],[-4,-5],[-2,-1],[-20,-23],[-36,-39],[-21,-14],[-10,-7],[-8,-6],[-15,-12],[0,0],[-26,-21],[-99,-93],[0,-27],[-19,-50],[-2,-6],[0,-56],[0,-69],[10,-56],[0,-55],[11,-70],[32,-222],[0,-28],[0,-28],[0,-42],[-21,-69],[-22,-70],[-10,-55],[-1,-4],[-10,-52],[-21,-69],[0,-28],[0,-28],[0,-42],[11,-28],[0,-26],[0,-1],[10,-28],[0,-14],[1,-1],[10,-27],[21,-28],[21,-14],[29,-9],[13,-5],[22,-4],[25,-6],[17,-3],[21,0],[21,13],[15,0],[25,0],[2,0],[4,0],[7,0],[8,6],[5,3],[8,5],[4,4],[27,24],[6,0],[5,0],[7,5],[5,3],[9,6],[5,7],[4,5],[9,12],[24,32],[3,2],[9,10],[30,29],[3,3],[61,67],[0,14],[27,24],[4,4],[24,20],[6,5],[6,4],[6,3],[37,20],[6,3],[0,-9],[0,-5],[10,-14],[19,8],[13,6],[21,-14],[32,0],[10,-13],[27,-24],[5,-4],[27,-24],[3,-2],[2,-2],[2,-10],[0,-4],[3,-15],[5,-27],[4,-18],[3,-15],[0,-2],[4,-20],[-11,-84],[-10,-14],[-5,-6],[-6,-8],[-21,-27],[-42,-28],[-53,-42],[-21,-14],[-42,-28],[-53,-41],[-21,-14],[-4,-6],[-70,-92],[-5,0],[-16,0],[-19,-30],[-23,-39],[-11,-14],[-53,-69],[-8,-11],[-2,-3],[-34,-34],[-11,-11],[-31,-31],[-9,-8],[-2,0],[-4,0],[-4,0],[-7,5],[-4,2],[-9,6],[-1,1],[-29,-9],[-10,-3],[-1,-1],[-2,-1],[-1,1],[-1,1],[-9,12],[-42,28],[-32,14],[-3,1],[-39,13],[-32,41],[-42,42],[-21,28],[-11,14],[-10,42],[-11,41],[-10,42],[-3,7],[-18,49],[0,41],[-11,28],[-11,42],[-6,17],[-4,11],[-53,69],[-32,28],[0,14],[-10,0],[-2,1],[-45,23],[-4,2],[-2,2],[-10,0],[-4,1],[-7,0],[-3,1],[-8,3],[-13,7],[-26,12],[-26,3],[-40,0],[-38,3],[-21,2],[-36,18],[-106,75],[-56,80],[-51,117],[-4,70],[-35,53],[-36,52],[-54,10],[-2,1],[-14,3],[-17,3],[-31,0],[-16,0],[-47,0],[-6,0],[-127,-14],[-7,-6],[-41,-32],[-2,-2],[-2,-2],[-3,-5],[-2,-3],[-16,-33],[-22,-42],[-10,-14],[-11,-28],[-10,-55],[-11,-28],[0,-42],[0,-55],[0,-28],[11,-84],[21,-83],[53,-111],[10,-28],[21,-56],[11,-55],[0,-70],[10,-83],[21,-98],[11,-27],[21,-70],[9,-17],[3,-7],[1,0],[8,-18],[7,-4],[0,0],[0,0],[14,-9],[15,-13],[17,-15],[53,-28],[42,-28],[32,0],[74,-14],[42,-14],[42,0],[42,-4],[53,4],[53,0],[21,-14],[32,-14],[11,-15],[10,-12],[42,-28],[11,-5],[0,0],[9,-4],[12,-5],[10,-18],[5,-10],[16,-28],[21,-55],[0,-64],[0,-6],[-21,-41],[-21,-42],[-10,-14],[-22,-28],[-47,-19],[-26,-9],[-43,-14],[-84,-41],[-28,-13],[-4,-1],[-21,-14],[-84,-56],[-15,-7],[-38,-21],[-5,-2],[-15,-5],[-13,-5],[-39,-14],[-2,-1],[-10,-7],[0,0],[-10,-7],[-22,-14],[-9,0],[-12,0],[0,0],[-32,0],[-49,-9],[-25,-5],[-32,14],[-42,14],[-74,14],[-63,14],[-5,2],[-69,25],[-8,-10],[-2,-4],[-21,0],[-43,0],[-9,-3],[-33,-10],[-53,-14],[-53,-28],[-70,-66],[-3,-4],[-56,-62],[0,0],[-18,-21],[-3,-5],[-57,-88],[-4,-4],[0,-28],[3,-3],[6,-8],[2,-3],[-4,-30],[-1,-12],[-6,-14],[-10,-42],[0,-23],[0,-4],[10,-28],[11,-42],[11,-42],[12,-28],[7,-11],[18,-20],[26,-33],[6,-7],[15,-18],[0,-46],[0,-4],[1,-4],[3,-18],[1,-5],[1,-8],[-3,35],[18,1],[27,-36],[15,-20],[14,-9],[50,-33],[52,-55],[30,-30],[13,-12],[14,-10],[28,-18],[42,-41],[63,-84],[43,-69],[31,-70],[32,-83],[32,-70],[52,-97],[10,-21],[22,-49],[53,-41],[27,-18],[23,-15],[5,-4],[1,0],[2,-1],[4,-3],[11,-7],[11,-8],[74,-28],[74,-55],[63,-42],[43,-28],[84,-41],[74,-15],[52,-27],[3,-1],[3,-1],[17,-6],[1,0],[1,0],[4,-2],[24,-8],[15,-5],[11,-3],[6,-2],[74,-28],[42,-14],[53,-41],[53,-28],[21,-28],[63,-56],[28,-31],[173,-191],[4,0],[17,0],[15,-30],[6,-12],[42,-41],[2,-3],[17,-16],[23,-23],[74,-70],[16,-21],[26,-34],[48,-39],[37,-31],[42,-42],[21,-27],[21,-28],[26,-51],[16,-33],[29,-43],[35,-54],[42,-56],[53,-83],[53,-97],[52,-98],[20,-52],[1,-3],[32,-42],[63,-14],[106,-41],[84,-28],[85,-14],[7,-3],[77,-25],[74,-14],[74,-14],[25,-10],[15,-6],[15,-6],[51,-20],[63,-41],[74,-28],[63,-28],[53,-28],[63,-41],[47,-23],[38,-19],[63,-42],[64,-55],[105,-56],[95,-42],[126,-41],[106,-28],[74,-14],[17,-9],[57,-33],[63,-41],[65,-64],[19,-20],[43,-69],[31,-84],[43,-125],[12,-68],[9,-43],[21,-56],[10,-83],[0,-125],[-10,-125],[0,-112],[0,-97],[0,-97],[21,-153],[56,-135],[7,-18],[63,-56],[25,-20],[28,-21],[74,-42],[27,-25],[5,-4],[3,0],[71,-13],[63,0],[74,0],[74,14],[253,42],[74,0],[127,-14],[59,-20],[67,-22],[106,-56],[18,-12],[130,-85],[105,-83],[137,-84],[148,-55],[74,-28],[105,-28],[169,-14],[159,0],[169,0],[95,28],[95,28],[116,55],[105,42],[7,3],[67,25],[63,42],[43,14],[52,55],[43,70],[52,83],[21,84],[11,69],[11,111],[0,84],[-22,153],[-31,55],[-32,84],[-42,97],[-32,69],[-42,28],[-42,42],[-21,42],[-32,28],[-53,83],[-31,83],[-32,70],[10,28],[22,83],[21,28],[42,42],[42,27],[42,28],[43,14],[52,28],[74,0],[85,0],[30,-8],[75,-20],[116,-55],[53,-14],[29,0],[3,0],[31,-14],[32,-56],[63,-83],[64,-84],[74,-69],[63,-56],[74,-55],[74,-42],[2,-2],[61,-54],[35,-51],[65,-94],[5,-8],[11,-41],[21,-42],[11,-70],[7,-32],[14,-65],[0,-84],[0,-83],[10,-83],[43,-84],[63,-111],[42,-83],[32,-98],[24,-75],[7,-22],[22,-83],[21,-70],[21,-69],[31,-84],[9,-44],[13,-67],[10,-69],[11,-70],[10,-97],[21,-84],[11,-55],[53,-98],[52,-69],[43,-42],[52,-55],[74,-42],[53,-42],[8,-4],[76,-38],[43,-27],[31,-14],[43,-28],[31,-14],[42,-69],[22,-42],[10,-28],[11,-28],[10,-41],[11,-28],[10,-14],[11,-42],[21,-28],[-11,-14],[-21,-83],[-42,-56],[-42,-83],[-53,-70],[-63,-69],[-53,-70],[-32,-97],[-10,-111],[0,-97],[0,-98],[-11,-97],[-21,-97],[-32,-112],[-10,-55],[-21,-28],[-32,-28],[-95,-42],[-74,-28],[-10,-13],[-11,0],[-53,0],[-31,0],[-53,0],[-32,0],[-21,-14],[-42,0],[-63,-28],[-21,-14],[-32,-42],[-42,-83],[-43,-56],[-21,-69],[-21,-84],[-31,-111],[0,-69],[10,-84],[21,-83],[32,-69],[21,-56],[42,-42],[64,-56],[42,-55],[31,-70],[22,-41],[10,-28],[0,-56],[-10,-55],[-22,-70],[-21,-42],[-42,-41],[-32,-28],[-42,0],[-21,0],[-32,0],[-73,28],[-53,28],[-42,27],[-53,56],[-21,28],[-53,83],[-21,42],[-42,56],[-43,69],[-21,28],[-21,28],[-53,41],[-21,0],[-31,-28],[-21,-13],[0,-42],[0,-70],[31,-69],[21,-42],[53,-83],[42,-84],[21,-41],[22,-56],[21,-69],[31,-70],[21,-42],[85,-181],[0,-13],[21,-28],[42,-84],[42,-83],[43,-69],[31,-56],[42,-84],[32,-97],[0,-97],[-10,-70],[-22,-55],[-31,-42],[-42,-56],[-22,-41],[-21,-84],[-10,-41],[21,-56],[42,-42],[63,-69],[53,-42],[74,-56],[74,-27],[74,-42],[21,-42],[21,-83],[21,-98],[0,-83],[0,-84],[11,-83],[10,-69],[21,-84],[11,-69],[0,-84],[14,-47],[7,-22],[21,-42],[21,-42],[74,-83],[42,-42],[53,-41],[63,-70],[74,-83],[43,-56],[63,-69],[42,-70],[42,-69],[43,-56],[31,-56],[42,-55],[32,-42],[53,-69],[42,-56],[63,-97],[64,-84],[42,-55],[42,-70],[53,-55],[84,-112],[32,-41],[42,-42],[42,-28],[11,-14],[21,-14],[32,-28],[74,-41],[10,-14],[11,0],[21,-28],[21,0],[200,-56],[127,-83],[95,-250],[21,-126],[74,-166],[74,-98],[148,-83],[169,-111],[190,-97],[137,-112],[116,-125],[158,-139],[148,-111],[148,-84],[116,-83],[179,-125],[169,-167],[137,-167],[127,-125],[116,-139],[95,-167],[95,-153],[84,-97],[65,-47],[30,-22],[95,-70],[64,-42],[53,-27],[21,-14],[31,-28],[43,-28],[42,-28],[42,-27],[32,-14],[42,-28],[42,-14],[42,-14],[64,-42],[63,-14],[42,-27],[32,-14],[42,-14],[42,-28],[53,-28],[42,-28],[42,-27],[53,-42],[42,-42],[644,-681],[64,-28],[42,0],[52,-14],[74,14],[95,14],[95,28],[85,28],[84,0],[53,0],[42,0],[64,-14],[63,-14],[53,-28],[63,-28],[74,-28],[74,-27],[74,-42],[84,-28],[84,-28],[64,-28],[74,-27],[73,-28],[64,-28],[74,-28],[74,-28],[52,-28],[64,-27],[74,-14],[74,-28],[63,-14],[74,-28],[84,-27],[74,-14],[63,-28],[74,-14],[74,-14],[74,-28],[74,-28],[63,-41],[53,-28],[63,-42],[74,-42],[53,-41],[53,-42],[63,-42],[63,-41],[53,-42],[53,-42],[53,-41],[52,-28],[53,-42],[53,-42],[74,-27],[63,-28],[53,-14],[53,-28],[52,-14],[74,-28],[64,-27],[74,-28],[73,-28],[53,-14],[74,-28],[84,-41],[74,-42],[74,-42],[64,-28],[63,-41],[53,-28],[63,-28],[63,-28],[53,-28],[53,-27],[63,-42],[74,-56],[42,-41],[53,-42],[63,-42],[64,-55],[63,-56],[63,-84],[64,-69],[52,-69],[95,-126],[53,-41],[32,-42],[42,-42],[42,-41],[53,-42],[53,-42],[53,-42],[42,-41],[42,-42],[53,-28],[53,-41],[42,-42],[31,-28],[43,-42],[52,-28],[53,-41],[53,-14],[63,-28],[64,-28],[73,-28],[74,-27],[64,-14],[63,-14],[32,0],[42,0],[42,-14],[32,0],[31,0],[22,0],[31,0],[42,14],[43,0],[52,0],[43,0],[52,14],[53,14],[53,27],[53,14],[53,14],[31,14],[42,14],[43,0],[52,14],[43,0],[52,14],[32,0],[32,0],[21,0],[21,0],[53,0],[42,0],[63,14],[42,0],[22,14],[21,0],[63,13],[42,0],[42,14],[43,14],[42,0],[31,14],[43,14],[21,0],[105,7],[294,12],[186,86],[272,35],[48,6],[239,-21],[74,-30],[10,-4],[2,-1],[1,-1],[1,0],[6,-2],[7,-4],[251,-137],[178,-174],[108,-262],[70,-293],[-132,-298],[-213,-241],[-147,-161],[4,-411],[88,-140],[145,-10],[408,246],[343,398],[111,310],[128,33],[145,-271],[161,-299],[202,-425],[-35,-185],[-227,-261],[-252,-121],[-203,-100],[6,-94],[109,-131],[133,-92],[257,-60],[263,43],[126,-295],[131,-149],[99,57],[14,439],[175,-46],[374,-401],[312,7],[146,-184],[-88,-216],[74,-287],[460,172],[165,-36],[28,-103],[-25,-120],[-405,-227],[78,-130],[315,-12],[249,17],[85,-154],[-42,-90],[-404,-154],[22,-162],[114,-73],[171,29],[168,118],[106,46],[108,-78],[52,-167],[-106,-172],[-98,-102],[38,-101],[103,-26],[114,28],[99,43],[112,-68],[133,-108],[133,27],[141,127],[186,170],[46,78],[-70,192],[-218,136],[-165,173],[8,93],[83,64],[201,-11],[98,-87],[51,-154],[67,-201],[104,-61],[85,-95],[112,-219],[38,-181],[-14,-255],[-62,-184],[-62,-57],[-148,-37],[-158,-4],[-190,-6],[-101,-39],[-11,-87],[64,-125],[375,-285],[352,-185],[279,-93],[298,-90],[144,27],[235,324],[189,299],[123,133],[122,23],[176,-58],[162,-168],[43,-238],[181,-685],[4,-16],[136,-198],[5,-2],[343,-95],[504,330],[9,0],[157,-7],[2,0],[73,-122],[0,-7],[-37,-419],[0,-2],[34,-164],[1,-4],[603,-669],[9,-7],[319,-223],[5,-1],[671,-87],[103,-53],[106,-53],[70,-276],[-117,-180],[-246,-117],[-377,45],[-156,-110],[9,-97],[64,-127],[244,-105],[248,-36],[252,124],[111,-32],[217,-518],[-18,-273],[-204,-250],[-130,-192],[-8,-108],[100,-177],[123,-42],[138,71],[85,141],[45,289],[33,204],[104,124],[172,38],[214,-158],[115,-172],[78,-141],[39,-46],[0,-7],[0,-24],[26,-29],[95,-106],[216,-155],[123,-36],[340,-86],[31,-35],[30,-69],[27,-72],[-2,-100],[-22,-52],[-27,-40],[-125,-56],[-136,-73],[-83,-19],[-102,-21],[-121,16],[-56,-22],[-100,-52],[-114,-127],[-11,-27],[-21,-28],[-10,-42],[-11,-55],[-10,-28],[-22,-56],[0,-69],[11,-56],[21,-42],[42,-69],[11,-14],[0,7],[18,-12],[94,-65],[42,0],[106,-55],[175,-41],[154,-27],[159,-22],[132,-75],[31,-104],[0,-20],[-3,-130],[-14,-104],[-10,-78],[-84,-267],[-126,-151],[-168,-98],[-116,-113],[-20,-97],[-10,-83],[45,-183],[68,-79],[107,-204],[18,-78],[-19,-86],[-58,-94],[-65,-121],[-17,-113],[18,-131],[45,-70],[29,-96],[10,-63],[-4,-158],[-80,-200],[-116,-318],[-131,-314],[-77,-441],[-47,-490],[-48,-214],[-38,-134],[-42,-37],[-38,-47],[-83,-41],[-114,-16],[-94,21],[-177,85],[-118,79],[-97,96],[-54,107],[-21,141],[1,147],[-9,166],[-44,42],[-61,29],[-59,-17],[-79,-35],[-69,-65],[-37,-75],[-21,-176],[12,-117],[42,-170],[39,-247],[45,-265],[-14,-172],[3,-166],[15,-169],[77,-353],[70,-311],[147,-207],[187,-234],[151,-179],[321,-246],[65,-80],[56,-48],[40,-57],[8,-91],[-20,-85],[-28,-58],[-43,-98],[-75,-136],[-80,-154],[-68,-135],[-39,-119],[-4,-68],[-1,-12],[0,-1],[-5,-68],[11,-198],[30,-117],[80,-124],[66,-130],[128,-127],[159,-58],[210,-36],[131,-47],[58,-115],[104,-176],[46,-109],[111,-125],[17,-7],[243,-102],[182,-176],[79,-70],[102,-124],[106,-123],[108,-90],[99,-145],[3,-117],[-8,-47],[-48,-120],[-78,-130],[-120,-59],[-177,-76],[-40,-106],[1,-95],[24,-114],[37,-113],[130,-55],[124,-21],[249,33],[104,17],[96,-63],[40,-96],[4,-110],[-43,-112],[-81,-177],[-33,-132],[1,-101],[75,-157],[58,-125],[106,-171],[0,-200],[-20,-260],[-158,-294],[6,-223],[92,-90],[214,-76],[163,-36],[88,-60],[81,-61],[89,-114],[104,-134],[84,-96],[37,-1],[65,42],[56,130],[-8,64],[-14,96],[-88,186],[-12,134],[20,210],[38,73],[52,51],[80,30],[108,-4],[135,-26],[108,-77],[79,-63],[84,-80],[74,-99],[38,-110],[-11,-125],[-51,-127],[-58,-73],[-73,-67],[-62,-66],[-94,-80],[-90,-96],[-5,-136],[5,-87],[33,-66],[43,-46],[102,-67],[49,-58],[15,-69],[-27,-45],[-37,-22],[-59,5],[-90,50],[-92,59],[-150,83],[-62,19],[-92,-11],[-119,-98],[-122,-80],[-133,-83],[-121,-84],[-74,-68],[-39,-109],[23,-158],[-90,-226],[-96,-190],[-46,-129],[0,-76],[87,-112],[117,-85],[140,-202],[29,-80],[218,-79],[225,-22],[141,-90],[247,57],[28,101],[31,172],[13,188],[23,85],[46,46],[81,18],[93,-23],[88,-86],[87,-116],[160,-263],[40,-143],[51,-123],[49,-66],[127,-75],[99,-93],[127,-22],[189,20],[158,19],[56,-27],[54,-128],[50,-167],[4,-12],[10,-35],[75,-304],[22,-91],[-1,-197],[-63,-163],[-106,-147],[-42,-151],[34,-277],[14,-125],[-12,-184],[-93,-138],[-216,-485],[-102,-354],[-15,-308],[94,-230],[66,-201],[-2,-109],[-225,8],[-141,80],[-125,36],[-37,-67],[-17,-122],[63,-37],[165,-51],[231,-81],[139,-48],[109,-39],[135,-7],[106,86],[22,217],[35,222],[191,167],[281,125],[197,131],[134,-47],[97,-73],[42,-211],[-45,-218],[-19,-163],[135,-400],[132,-256],[180,-146],[155,63],[109,163],[43,140],[98,115],[128,19],[78,-27],[100,-84],[189,-136],[218,-48],[167,-108],[148,-206],[185,-374],[101,-118],[79,-80],[61,-246],[44,-304],[-66,-153],[-62,-119],[-195,-133],[-378,57],[-200,-11],[-83,-55],[-23,-66],[67,-87],[156,-106],[144,-91],[194,-189],[144,-112],[104,-93],[57,-199],[-43,-169],[-72,-70],[-221,-10],[-190,5],[-55,-24],[-52,-22],[-30,-110],[36,-76],[84,-162],[71,-57],[148,-34],[71,-6],[246,198],[151,146],[82,14],[129,-10],[64,-67],[-54,-352],[-133,-269],[-168,-226],[-256,-221],[-96,63],[-78,23],[-59,-8],[-23,-18],[-26,-33],[5,-31],[7,-78],[53,-71],[28,-62],[30,-67],[64,-258],[72,-151],[52,-76],[74,-98],[58,-162],[-21,-91],[-31,-67],[-75,-33],[-150,18],[-134,44],[-80,5],[-67,-40],[-65,-59],[-15,-96],[12,-45],[38,-77],[85,-77],[70,-73],[36,-196],[45,-139],[32,-156],[3,-102],[2,-59],[118,-7],[120,-19],[111,27],[121,39],[95,53],[20,-149],[-1,-78],[-33,-47],[-85,-82],[-146,-60],[-123,-59],[-53,-63],[-120,-91],[-79,-114],[-120,-78],[-57,-88],[-25,-98],[9,-93],[94,-60],[164,-46],[144,-9],[120,-28],[60,-49],[4,-138],[-22,-81],[-59,-80],[-120,-95],[-180,-17],[-83,9],[-86,78],[-155,166],[-134,112],[-98,-17],[-22,-41],[-13,-94],[15,-53],[16,-56],[18,-64],[73,-156],[203,-214],[138,-108],[213,-105],[158,-26],[351,56],[243,103],[162,19],[105,-29],[83,-91],[-7,-109],[-33,-68],[-83,-157],[-81,-141],[-41,-137],[-68,-166],[-131,-84],[-129,9],[-138,13],[-154,15],[-224,-49],[-182,-38],[-361,-34],[-175,-89],[-60,-130],[15,-228],[87,-59],[211,-81],[433,21],[131,56],[93,5],[182,-36],[235,-84],[100,-94],[95,-121],[27,-107],[0,-92],[-15,-73],[-40,-111],[-69,-111],[-67,-104],[-27,-91],[41,-71],[26,-23],[53,-32],[63,19],[57,25],[36,77],[104,228],[71,202],[65,47],[80,12],[75,-65],[48,-39],[28,-103],[-2,-136],[-79,-312],[-130,-345],[-31,-195],[8,-82],[62,-60],[126,-42],[121,22],[171,124],[98,123],[42,-1],[19,-47],[-18,-67],[-73,-106],[-144,-182],[-143,-85],[-227,-39],[-215,49],[-103,12],[-94,-88],[-91,-63],[-65,-97],[-68,-184],[-10,-52],[15,-87],[37,-80],[78,-84],[78,-23],[136,17],[160,52],[125,46],[222,57],[118,36],[228,12],[188,-16],[90,-20],[64,-52],[25,-68],[7,-175],[2,-204],[-13,-83],[-22,-146],[-85,-318],[-103,-134],[-126,-97],[-171,-62],[-194,-37],[-102,-23],[-57,-66],[-50,-86],[-20,-71],[10,-101],[67,-122],[107,-164],[56,-117],[-3,-79],[-50,-92],[-124,-75],[-148,-1],[-139,88],[-110,52],[-91,-12],[-68,-58],[-12,-115],[40,-116],[72,-104],[56,-69],[33,-127],[-23,-100],[-65,-129],[-24,-74],[-6,-164],[10,-46],[59,-58],[70,-69],[101,-87],[193,-48],[143,9],[114,25],[80,-16],[53,-31],[24,-88],[-15,-83],[-51,-66],[-47,-25],[-70,-3],[-103,27],[-107,33],[-180,12],[-241,37],[-87,-1],[-104,-40],[-103,-87],[-18,-113],[24,-92],[99,-164],[130,-119],[122,-96],[127,-135],[41,-84],[35,-110],[-9,-113],[-47,-113],[-117,-80],[-228,14],[-127,5],[-122,-61],[-45,-135],[-30,-109],[-26,-67],[-30,-19],[-74,6],[-73,7],[-108,39],[-31,2],[-83,6],[-44,-57],[-12,-85],[49,-68],[118,-30],[55,-33],[27,-72],[3,-75],[0,-101],[-51,-134],[-59,-74],[-97,-129],[-95,-121],[-60,-105],[-1,-48],[45,-119],[37,-24],[109,-16],[141,2],[184,13],[61,-22],[66,-30],[87,-91],[30,-85],[19,-50],[51,-197],[29,-60],[52,-111],[113,-90],[123,-9],[94,11],[103,29],[58,-6],[69,-38],[22,-73],[33,-138],[20,-162],[49,-97],[63,-7],[67,23],[66,42],[26,130],[-50,180],[-45,150],[7,86],[27,59],[59,27],[74,-1],[64,-69],[30,-103],[43,-160],[32,-172],[55,-152],[86,-126],[62,-80],[27,-54],[16,-80],[-3,-161],[-50,-190],[-67,-162],[-20,-90],[40,-95],[87,-114],[73,-23],[84,-16],[61,-56],[12,-15],[31,-38],[12,-13],[54,-93],[97,-145],[56,-142],[5,-38],[25,-202],[-6,-130],[-99,-286],[-128,-361],[-77,-305],[-39,-242],[-1,-154],[40,-128],[119,-159],[139,-144],[172,-136],[148,-84],[94,-73],[41,-168],[-38,-162],[-82,-99],[-127,-101],[-89,-40],[-96,12],[-114,31],[-98,93],[-43,125],[-18,121],[-30,115],[-41,80],[-91,39],[-118,-49],[-17,-7],[-69,-133],[12,-145],[51,-176],[40,-153],[50,-139],[61,-88],[76,-31],[136,-19],[146,40],[115,53],[69,16],[75,-18],[118,-70],[94,-94],[51,-69],[139,-97],[106,-64],[84,-68],[58,-100],[25,-171],[-54,-144],[-110,-130],[-151,-136],[-113,-60],[-100,-51],[-98,-144],[-112,-138],[-192,-184],[-183,-145],[-161,-99],[-317,-63],[-185,-30],[-104,35],[-102,-16],[-78,-88],[5,-143],[72,-154],[187,-84],[201,-33],[257,-32],[156,-8],[63,-46],[42,-31],[53,-93],[-12,-114],[-81,-91],[-63,-44],[-71,-100],[-129,-234],[-123,-153],[-97,-60],[-120,-29],[-98,41],[-69,79],[-64,131],[-30,104],[-37,136],[-40,162],[-37,123],[-56,96],[-56,18],[-86,-9],[-130,-74],[-108,-105],[-122,-138],[-27,-63],[-17,-131],[11,-139],[1,-97],[-23,-120],[-13,-85],[16,-166],[58,-145],[77,-133],[119,-103],[110,-68],[133,-138],[92,-51],[49,-131],[28,-160],[-17,-159],[-48,-162],[36,-117],[76,-160],[52,-69],[20,-26],[78,-45],[129,-7],[87,-23],[97,-84],[44,-178],[22,-186],[46,-128],[72,-111],[117,-145],[83,-84],[139,-126],[226,-199],[252,-258],[107,-115],[153,-206],[191,-246],[130,-262],[143,-291],[119,-243],[89,-165],[89,-79],[360,-379],[68,-62],[323,-254],[63,-45],[42,-28],[40,-19],[51,-22],[53,-16],[75,-13],[45,-1],[41,5],[42,8],[41,14],[60,35],[33,30],[26,35],[68,121],[69,137],[20,31],[40,25],[46,15],[46,3],[47,-10],[100,-33],[85,-43],[72,-45],[32,-30],[27,-35],[19,-38],[15,-44],[7,-51],[-6,-39],[-37,-90],[-74,-156],[-15,-43],[-10,-41],[-6,-55],[-2,-76],[8,-52],[14,-47],[29,-54],[39,-47],[46,-36],[54,-26],[32,-10],[34,-5],[155,1],[106,5],[29,-3],[34,-8],[32,-12],[32,-19],[28,-23],[22,-47],[15,-58],[6,-53],[-1,-69],[-6,-43],[-15,-51],[-21,-43],[-28,-39],[-48,-57],[-49,-50],[-169,-149],[-20,-21],[-21,-33],[-15,-34],[-8,-37],[-1,-38],[9,-53],[20,-44],[12,-15],[18,-14],[42,-25],[46,-14],[78,-9],[64,4],[59,13],[29,12],[29,18],[58,55],[62,76],[55,87],[47,90],[38,91],[55,213],[15,35],[21,30],[20,21],[22,17],[30,15],[31,11],[32,6],[29,1],[31,-3],[30,-8],[30,-13],[30,-18],[105,-101],[48,-40],[47,-31],[62,-33],[38,-27],[28,-28],[25,-29],[39,-61],[15,-42],[12,-55],[1,-41],[-7,-40],[-16,-39],[-29,-45],[-18,-23],[-21,-26],[-39,-39],[-41,-32],[-161,-114],[-124,-99],[-22,-31],[-20,-36],[-12,-36],[-10,-53],[-1,-19],[3,-22],[8,-20],[9,-16],[116,-121],[127,-144],[24,-22],[29,-21],[66,-31],[56,-21],[155,-41],[115,-28],[55,-17],[45,-19],[240,-116],[148,-86],[108,-62],[159,-82],[464,-265],[160,-87],[254,-126],[87,-29],[126,-24],[61,-24],[48,-26],[115,-79],[60,-32],[26,-13],[53,-36],[45,-35],[44,-40],[141,-100],[77,-32],[89,-33],[51,-15],[166,-41],[229,-78],[52,-11],[53,-6],[233,3],[51,5],[50,10],[47,12],[48,17],[83,16],[114,29],[137,35],[98,18],[747,88],[141,42],[140,67],[68,28],[64,20],[5,2],[68,15],[96,34],[68,28],[65,19],[53,5],[53,-1],[53,-7],[67,-13],[54,-26],[49,-34],[45,-39],[32,-37],[36,-58],[20,-48],[12,-54],[3,-59],[-6,-47],[-25,-114],[-14,-51],[-17,-46],[-25,-52],[-38,-61],[-23,-44],[-17,-25],[-85,-117],[-9,-16],[-24,-60],[-7,-33],[-5,-34],[3,-123],[8,-26],[11,-25],[30,-42],[21,-19],[21,-15],[52,-21],[55,-7],[57,7],[84,26],[78,39],[122,86],[82,69],[42,49],[30,53],[8,26],[11,32],[11,72],[4,80],[-5,85],[-11,74],[-18,63],[-1,5],[-24,59],[-32,59],[-31,48],[-35,43],[-83,134],[-3,36],[5,42],[13,41],[18,30],[25,23],[29,14],[43,9],[53,5],[43,-3],[35,-11],[35,-18],[52,-34],[28,-28],[17,-22],[14,-26],[49,-122],[32,-115],[11,-88],[25,-131],[18,-239],[4,-49],[-9,-66],[-19,-86],[-19,-63],[-4,-14],[-34,-86],[-66,-185],[-26,-51],[-3,-34],[6,-33],[2,-5],[12,-26],[1,-1],[21,-27],[23,-22],[24,-15],[25,-12],[27,-7],[39,-5],[41,1],[42,5],[22,8],[84,41],[76,53],[37,35],[26,33],[26,42],[19,41],[20,66],[20,122],[4,53],[0,148],[5,33],[2,7],[7,22],[13,25],[20,24],[10,7],[14,11],[38,16],[41,3],[56,-8],[59,-21],[47,-27],[8,10],[9,-7],[57,-49],[7,-6],[13,-13],[7,-7],[20,-20],[6,-7],[6,-8],[40,-54],[14,-20],[8,-14],[7,-13],[30,-84],[11,-38],[10,-38],[13,-63],[5,-30],[3,-34],[2,-25],[0,-30],[-3,-15],[-4,-19],[-8,-29],[-7,-18],[-4,-9],[-11,-22],[-15,-18],[-20,-21],[-21,-19],[-24,-22],[-8,-8],[-1,-1],[-14,-15],[-26,-28],[-9,-12],[-8,-12],[-23,-42],[-10,-23],[-12,-21],[-15,-31],[-4,-14],[-7,-34],[-2,-15],[-1,-40],[2,-24],[2,-25],[5,-25],[7,-29],[4,-10],[11,-31],[15,-36],[15,-31],[4,-9],[16,-25],[5,-8],[28,-32],[28,-29],[5,-5],[7,-6],[36,-23],[3,-1],[30,-15],[63,-25],[24,-8],[1,0],[1,-1],[1,0],[17,-6],[39,-12],[9,-2],[27,-4],[22,-3],[27,-1],[53,-4],[7,0],[11,-5],[2,-1],[19,-6],[7,-3],[8,-4],[12,-6],[11,-10],[10,-9],[6,-8],[5,-8],[6,-13],[17,-24],[12,-21],[16,-24],[2,-4],[3,-4],[5,-15],[2,-9],[4,-24],[-1,-15],[-2,-9],[0,-1],[-6,-29],[-2,-10],[0,-10],[2,-20],[3,-29],[0,-1],[2,-19],[2,-40],[0,-17],[-1,-207],[-1,-25],[-2,-35],[-7,-49],[-10,-49],[-10,-38],[-4,-15],[-9,-22],[-19,-40],[-22,-38],[-21,-32],[-17,-24],[-21,-28],[-14,-18],[-20,-22],[-91,-18],[-40,-4],[-2,-1],[-92,-25],[-66,-18],[-34,-9],[-20,-11],[-15,-15],[-14,-20],[-10,-24],[-3,-27],[3,-23],[7,-21],[9,-14],[9,-16],[27,-36],[14,-15],[32,-18],[3,-2],[1,0],[0,0],[1,-1],[7,-3],[24,-11],[6,-2],[3,-2],[6,-1],[91,-27],[48,-21],[61,-20],[12,-15],[9,-11],[31,-29],[11,-9],[22,-17],[10,-6],[1,0],[9,-7],[8,-4],[8,-4],[3,-1],[14,-5],[9,-3],[13,-3],[22,-17],[19,-16],[1,0],[13,-11],[16,-17],[29,-32],[21,-26],[57,-84],[13,-26],[6,-14],[7,-28],[2,-10],[1,-10],[1,-20],[-1,-10],[-1,-10],[-2,-15],[16,-40],[11,-34],[5,-24],[7,-24],[2,-14],[0,-10],[2,-5],[35,-58],[6,-8],[18,-22],[14,-19],[19,-21],[20,-21],[26,-20],[22,-14],[5,-3],[32,-19],[38,-17],[24,-13],[87,-43],[117,-51],[14,-9],[14,-9],[5,-3],[24,-15],[33,-17],[36,-21],[20,-12],[31,-20],[11,-8],[11,-12],[8,-9],[11,-11],[7,-5],[11,-8],[4,-3],[15,-12],[6,-8],[1,0],[9,-9],[20,-27],[17,-23],[21,-33],[14,-19],[13,-14],[29,-25],[40,-40],[81,-87],[28,-31],[7,-6],[30,-23],[37,-23],[10,-6],[31,-20],[72,-43],[8,-4],[8,-4],[18,-5],[4,-2],[15,-11],[24,-15],[11,-8],[20,-20],[11,-9],[19,-14],[40,-23],[15,-10],[39,-35],[8,-5],[27,-18],[58,-47],[36,-31],[24,-23],[34,-32],[180,-204],[20,-26],[28,-33],[9,-11],[17,-17],[42,-38],[34,-32],[23,-25],[14,-13],[25,-20],[31,-21],[2,0],[23,-12],[44,-26],[32,-17],[28,-16],[53,-29],[54,-26],[38,-16],[13,-4],[35,-8],[2,0],[1,-1],[1,0],[10,-2],[18,0],[36,1],[0,0],[13,2],[9,2],[34,13],[13,4],[27,4],[23,2],[13,2],[39,11],[35,12],[30,9],[1,0],[41,15],[32,17],[31,22],[32,29],[59,70],[46,71],[1,1],[19,38],[24,32],[34,31],[1,1],[1,2],[41,37],[24,10],[26,4],[25,-8],[23,-22],[39,-64],[33,-66],[17,-54],[15,-98],[6,-63],[13,-50],[16,-42],[12,-22],[15,-30],[16,-30],[2,-2],[1,-1],[29,-22],[0,0],[4,-3],[23,-16],[19,-14],[17,-8],[13,-2],[13,-3],[18,-4],[22,-7],[4,0],[9,1],[14,1],[27,0],[9,-1],[4,1],[13,4],[26,10],[30,10],[18,3],[9,3],[37,27],[3,2],[5,3],[3,1],[10,1],[17,4],[9,3],[13,5],[12,7],[15,11],[15,10],[17,10],[17,21],[23,28],[145,138],[21,13],[24,6],[26,-2],[40,-12],[36,-18],[29,-20],[21,-22],[18,-26],[16,-58],[38,-207],[2,-7],[3,-14],[17,-67],[13,-53],[10,-33],[8,-24],[7,-23],[5,-20],[2,-14],[4,-14],[2,-10],[8,-29],[3,-14],[1,-10],[0,-15],[-4,-31],[-4,-28],[4,-40],[-1,-11],[0,-1],[0,-8],[-2,-25],[-1,-9],[-2,-15],[-8,-24],[-4,-12],[-1,-2],[-2,-1],[-6,-7],[-10,-11],[-21,-19],[-4,-3],[-3,-3],[-12,-7],[-8,-3],[-3,-1],[-6,-2],[-22,-6],[-11,-2],[-16,-3],[-45,-4],[-18,1],[-18,0],[-22,1],[-36,3],[-27,3],[-23,2],[-36,-2],[-26,6],[-5,1],[-13,-1],[-9,-1],[-31,-10],[-25,-11],[-33,-17],[-19,-12],[-4,-3],[-34,-33],[-26,-20],[-18,-15],[-3,-3],[-6,-8],[-11,-16],[-10,-16],[-9,-17],[-9,-18],[-19,-51],[-2,-9],[-7,-29],[-10,-54],[-5,-50],[-3,-39],[-1,-20],[1,-50],[5,-50],[7,-84],[3,-15],[13,-63],[1,-5],[11,-32],[14,-42],[4,-9],[6,-14],[44,-73],[1,-2],[14,-19],[47,-47],[28,-26],[18,-14],[35,-23],[29,-15],[4,-1],[13,-5],[26,-6],[16,-10],[8,-5],[7,-6],[36,-37],[36,-39],[6,-7],[21,-33],[19,-34],[10,-22],[5,-13],[3,-50],[1,-10],[10,-18],[4,-10],[2,-4],[4,-14],[7,-29],[2,-9],[0,-10],[-1,-10],[-8,-39],[1,-10],[1,-30],[-3,-44],[0,-11],[0,-10],[2,-25],[0,-1],[1,-8],[1,-15],[8,-44],[3,-25],[3,-40],[0,-21],[0,-9],[1,-4],[13,-25],[6,-10],[16,-29],[7,-13],[14,-27],[18,-33],[3,-4],[7,-5],[17,-14],[5,-4],[17,-17],[22,-25],[17,-23],[7,-7],[30,-30],[131,-123],[1,-1],[4,-4],[32,-31],[44,-43],[39,-41],[43,-51],[21,-26],[13,-15],[16,-17],[36,-38],[45,-48],[27,-28],[35,-31],[33,-34],[11,-12],[3,-2],[23,-23],[23,-23],[17,-17],[3,-2],[13,-7],[23,-15],[11,-9],[9,-11],[25,-28],[34,-34],[17,-17],[16,-17],[14,-19],[14,-20],[29,-38],[29,-45],[31,-42],[14,-20],[59,-76],[37,-56],[28,-39],[19,-33],[1,-2],[39,-66],[6,-7],[14,-13],[12,-15],[5,-8],[14,-25],[13,-27],[5,-8],[18,-29],[5,-8],[36,-74],[0,-1],[14,-26],[15,-25],[23,-37],[21,-32],[4,-9],[15,-24],[20,-29],[21,-31],[8,-12],[12,-21],[6,-8],[55,-73],[19,-22],[23,-32],[46,-61],[13,-20],[17,-23],[33,-40],[1,-2],[6,-6],[33,-41],[34,-40],[12,-15],[4,-6],[23,-25],[17,-16],[25,-21],[18,-16],[13,-14],[6,-6],[53,-47],[25,-21],[8,-8],[2,-1],[35,-34],[21,-18],[75,-73],[29,-30],[19,-22],[12,-15],[16,-17],[36,-45],[34,-40],[36,-38],[38,-43],[45,-48],[52,-56],[53,-62],[44,-56],[41,-53],[21,-27],[39,-48],[19,-21],[51,-63],[16,-18],[17,-23],[28,-33],[8,-10],[18,-22],[1,-2],[2,-1],[26,-28],[54,-68],[12,-14],[7,-13],[7,-13],[11,-15],[9,-11],[5,-9],[16,-24],[19,-28],[14,-20],[0,-1],[2,-3],[17,-23],[6,-8],[23,-23],[17,-24],[29,-38],[28,-39],[14,-20],[47,-54],[32,-35],[23,-31],[9,-11],[10,-10],[22,-18],[52,-62],[44,-57],[30,-39],[2,-2],[16,-19],[24,-29],[13,-14],[6,-9],[15,-20],[24,-29],[11,-9],[15,-12],[17,-16],[18,-14],[22,-18],[29,-24],[14,-11],[20,-13],[22,-18],[68,-58],[31,-20],[8,-4],[12,-6],[14,-13],[16,-10],[12,-7],[8,-4],[38,-15],[12,-7],[12,-9],[47,-38],[11,-8],[23,-16],[18,-15],[17,-17],[14,-12],[11,-9],[15,-10],[12,-9],[15,-10],[13,-6],[0,0],[38,-14],[18,-6],[30,-8],[58,-13],[22,-5],[9,-1],[90,-5],[50,2],[27,2],[22,3],[27,4],[40,9],[70,18],[31,9],[21,7],[22,4],[45,11],[26,4],[5,-1],[46,-20],[12,-7],[13,-5],[11,-13],[10,-11],[1,-2],[6,-6],[6,-8],[11,-16],[17,-29],[8,-16],[14,-28],[3,-9],[13,-37],[2,-15],[2,-20],[0,-25],[0,-5],[-3,-15],[-1,-4],[-7,-29],[-4,-9],[-5,-14],[-19,-34],[-13,-20],[-5,-9],[-5,-14],[-12,-15],[-8,-12],[-7,-13],[-10,-16],[-5,-9],[-5,-11],[-1,-3],[-12,-13],[-15,-19],[-38,-36],[-20,-19],[-34,-26],[-18,-12],[-45,-27],[-20,-10],[-17,-7],[-13,-6],[-25,-11],[-8,-4],[-16,-10],[-26,-8],[-9,-2],[-31,-5],[-125,-24],[-20,-2],[-13,-2],[-44,-10],[-26,-9],[-4,-2],[-15,-11],[-11,-9],[-21,-19],[-6,-7],[-9,-12],[-12,-21],[-19,-34],[-6,-13],[-7,-29],[-3,-15],[-5,-45],[-2,-29],[0,-15],[2,-25],[3,-26],[7,-21],[7,-18],[7,-13],[10,-17],[12,-15],[32,-35],[20,-20],[21,-18],[36,-23],[19,-11],[14,-14],[4,-3],[7,-6],[7,-5],[11,-9],[11,-8],[20,-13],[19,-28],[6,-7],[14,-13],[15,-22],[1,-2],[7,-13],[2,-25],[0,-29],[-3,-30],[-5,-40],[-3,-11],[-8,-18],[-6,-13],[-5,-9],[-5,-8],[-9,-12],[-17,-16],[-7,-4],[-33,-20],[-29,-14],[-13,-4],[-13,-4],[-13,-3],[-12,-1],[-2,0],[-11,1],[-19,2],[-8,1],[-14,3],[-5,2],[-20,8],[-25,13],[-19,13],[-21,18],[-10,11],[-12,16],[-8,11],[-16,24],[-11,15],[-19,13],[-11,10],[-6,7],[-16,30],[-3,4],[-9,11],[-13,14],[-7,6],[-37,20],[-8,3],[-28,-4],[-28,-9],[-28,-15],[-26,-22],[-19,-25],[-11,-27],[-9,-24],[-12,-51],[0,-3],[-2,-45],[0,-1],[1,-35],[4,-43],[25,-110],[5,-22],[20,-105],[14,-101],[4,-70],[-5,-29],[-15,-95],[-2,-11],[-2,-12],[-4,-9],[-6,-11],[-6,-11],[-8,-12],[-9,-11],[-2,-3],[-2,-1],[-7,-6],[-12,-5],[-17,-7],[-9,-1],[-9,-1],[-9,0],[-9,1],[-5,2],[-19,12],[-11,9],[-9,11],[-3,4],[-5,9],[-5,13],[-3,9],[-15,26],[-26,52],[-8,18],[-12,21],[-23,31],[-23,24],[-14,12],[-22,17],[-12,8],[-28,17],[-15,11],[-74,64],[-7,7],[-23,31],[-13,20],[-57,77],[-3,4],[-10,12],[-11,15],[-16,23],[-7,13],[-4,11],[-1,3],[-4,9],[-11,41],[-14,4],[-18,1],[-9,0],[-31,-4],[-22,-8],[-8,-3],[-19,-13],[-7,-7],[-9,-11],[-7,-13],[-8,-17],[-5,-14],[-6,-14],[-25,-53],[-14,-37],[-29,-78],[-12,-33],[-6,-13],[-14,-37],[-16,-57],[-3,-15],[-7,-18],[-4,-14],[-13,-37],[-22,-55],[-7,-24],[-16,-67],[-3,-25],[-2,-10],[-1,-7],[0,-1],[0,-1],[-2,-16],[0,-15],[2,-14],[3,-25],[5,-19],[5,-14],[0,-2],[14,-29],[10,-17],[5,-8],[18,-23],[10,-10],[11,-9],[8,-4],[8,-4],[20,-13],[6,-6],[7,-7],[7,-6],[16,-9],[13,-5],[4,-1],[9,0],[27,-1],[68,4],[67,11],[27,1],[14,-1],[8,2],[31,7],[23,3],[36,4],[13,-1],[18,-3],[39,-12],[42,-18],[20,-11],[12,-8],[6,-7],[16,-17],[9,-12],[38,-56],[13,-26],[19,-34],[15,-30],[4,-10],[7,-23],[7,-29],[5,-19],[9,-54],[1,-10],[2,-35],[0,-5],[3,-74],[-1,-20],[-3,-31],[0,0],[-1,-14],[-2,-10],[-2,-9],[-4,-9],[-7,-29],[-3,-20],[-10,-33],[-4,-9],[-14,-20],[-15,-25],[-5,-8],[-38,-47],[-13,-13],[-14,-12],[-8,-6],[-19,-13],[-33,-17],[-16,-8],[-39,-14],[-9,-1],[-9,-3],[-19,-8],[-18,-3],[-13,-4],[-18,-3],[-8,-3],[-4,-3],[-10,-10],[-9,-12],[-6,-7],[-31,-28],[-13,-13],[-47,-48],[-48,-45],[-47,-39],[-56,-38],[-10,-6],[-8,-5],[-24,-13],[-25,-11],[-26,-9],[-13,-5],[-4,-1],[-9,-1],[-14,-1],[-9,0],[-9,1],[-4,0],[-26,-10],[-16,-5],[-1,-1],[-9,-1],[-13,-3],[-18,-2],[-9,-1],[-5,0],[-32,1],[-7,-6],[-10,-10],[-22,-25],[-8,-13],[-9,-17],[-4,-9],[-2,-9],[-4,-25],[-4,-40],[-2,-29],[1,-30],[2,-14],[0,-1],[6,-18],[1,-6],[9,-23],[6,-24],[11,-33],[26,-68],[6,-19],[7,-18],[9,-24],[5,-19],[9,-28],[3,-9],[7,-24],[3,-9],[2,-10],[3,-15],[5,-34],[1,-10],[1,-5],[3,-9],[8,-16],[5,-22],[6,-34],[4,-16],[0,-1],[0,-2],[9,-34],[12,-32],[2,-7],[14,-34],[5,-14],[11,-22],[15,-39],[12,-37],[25,-91],[16,-62],[1,-6],[1,-9],[2,-9],[6,-23],[7,-45],[5,-29],[6,-19],[22,-81],[2,-8],[0,-1],[1,-1],[11,-38],[7,-27],[1,-6],[4,-20],[4,-23],[2,-10],[4,-13],[1,-8],[1,-1],[9,-59],[3,-35],[1,-30],[1,-10],[0,-5],[-2,-19],[-1,-20],[0,-1],[0,-20],[0,-9],[-4,-35],[-6,-24],[-9,-34],[-12,-37],[-2,-9],[-2,-10],[-5,-19],[-4,-25],[-2,-10],[-9,-33],[-4,-15],[-1,-5],[1,-9],[3,-16],[1,-4],[2,-10],[5,-16],[3,-12],[3,-10],[13,-31],[2,-5],[1,-1],[11,-20],[8,-12],[19,-19],[1,0],[4,-4],[14,-13],[36,-37],[28,-32],[22,-32],[12,-15],[16,-24],[25,-36],[32,-42],[36,-50],[51,-64],[23,-30],[20,-26],[76,-105],[34,-47],[22,-34],[25,-42],[14,-25],[13,-21],[26,-40],[70,-98],[32,-48],[17,-30],[43,-63],[5,-9],[0,-1],[8,-14],[5,-9],[22,-37],[23,-36],[12,-19],[3,-5],[3,-5],[21,-39],[15,-31],[8,-19],[5,-12],[10,-17],[12,-27],[12,-21],[3,-6],[6,-15],[11,-22],[7,-13],[23,-36],[24,-37],[8,-12],[32,-42],[22,-32],[23,-30],[21,-26],[21,-23],[1,-1],[134,-149],[50,-58],[21,-25],[38,-44],[27,-33],[25,-29],[59,-75],[9,-11],[29,-31],[34,-41],[22,-25],[75,-99],[20,-27],[39,-68],[13,-20],[30,-61],[38,-68],[34,-59],[23,-49],[41,-88],[7,-18],[14,-38],[7,-22],[19,-52],[24,-67],[19,-51],[4,-8],[36,-97],[4,-10],[4,-8],[13,-21],[29,-44],[3,-4],[23,-37],[32,-48],[5,-9],[5,-8],[60,-75],[31,-42],[29,-39],[28,-32],[26,-27],[13,-14],[25,-22],[47,-46],[58,-56],[39,-41],[40,-48],[22,-32],[43,-57],[25,-35],[26,-35],[32,-42],[37,-50],[28,-45],[22,-38],[14,-25],[13,-21],[10,-16],[18,-29],[10,-17],[28,-51],[4,-9],[13,-32],[15,-42],[21,-71],[2,-9],[14,-53],[7,-24],[6,-34],[7,-29],[3,-14],[3,-15],[12,-84],[5,-26],[1,-5],[7,-39],[1,-15],[3,-45],[-2,-40],[-1,-15],[-3,-39],[-8,-74],[-9,-70],[-12,-53],[-3,-14],[-6,-45],[-6,-49],[-4,-35],[-11,-53],[-6,-24],[-30,-94],[-28,-74],[-17,-40],[-10,-28],[-14,-31],[-17,-36],[-11,-25],[-3,-6],[-20,-48],[-8,-20],[-27,-63],[-28,-51],[-13,-27],[-7,-12],[-5,-8],[-14,-20],[-40,-47],[-25,-33],[-1,-1],[-3,-4],[-1,-1],[-1,-2],[-4,-6],[-12,-14],[-7,-13],[-12,-15],[-6,-7],[-2,-2],[-1,-1],[-22,-21],[-6,-19],[-6,-13],[-5,-14],[-4,-15],[-3,-14],[0,-10],[0,-35],[0,-5],[2,-5],[12,-20],[6,-8],[14,-13],[28,-24],[21,-15],[8,-7],[1,0],[25,-13],[17,-7],[14,-4],[1,0],[37,-10],[40,-10],[21,-8],[21,-10],[28,-15],[21,-11],[38,-25],[37,-28],[54,-46],[35,-32],[61,-59],[6,-7],[28,-33],[57,-71],[11,-15],[37,-57],[8,-21],[11,-30],[9,-17],[7,-11],[0,-1],[3,-4],[3,-8],[9,-24],[10,-23],[15,-31],[18,-34],[10,-17],[18,-28],[25,-36],[14,-20],[11,-16],[9,-11],[11,-8],[8,-7],[17,-15],[34,-36],[38,-43],[36,-45],[32,-35],[28,-25],[25,-22],[41,-38],[24,-23],[11,-10],[22,-17],[15,-10],[57,-31],[74,-35],[40,-24],[4,-3],[6,-7],[15,-18],[5,-7],[15,-26],[4,-8],[19,-33],[4,-8],[0,-1],[10,-22],[2,-5],[11,-43],[3,-25],[1,-25],[-2,-20],[-3,-20],[-7,-35],[0,-4],[-4,-24],[-1,-5],[-8,-23],[-12,-54],[-7,-29],[-5,-28],[-4,-29],[-2,-7],[-6,-27],[-3,-12],[0,-1],[-11,-39],[-7,-19],[-10,-22],[-5,-10],[-6,-12],[-5,-9],[-7,-14],[-5,-1],[-8,-3],[-8,-5],[-4,-3],[-11,-8],[-7,-6],[-21,-19],[-51,-32],[-12,-7],[-25,-11],[-9,-2],[-31,-7],[-61,-18],[-39,-10],[-88,-26],[-30,-10],[-69,-24],[-20,-9],[-12,-8],[-10,-10],[-16,-24],[2,-23],[6,-29],[3,-7],[1,-4],[1,-1],[4,-11],[5,-9],[5,-8],[3,-4],[2,-1],[2,-1],[16,-10],[8,-5],[20,-10],[4,-1],[18,-5],[10,-1],[26,-3],[13,-2],[18,-4],[21,-8],[17,-8],[28,-15],[30,-17],[4,-3],[22,-13],[21,-8],[22,-5],[31,-5],[31,-9],[39,-13],[12,-2],[1,0],[36,-6],[9,0],[4,0],[18,2],[50,6],[26,5],[4,2],[42,19],[29,15],[27,1],[9,-1],[17,-3],[13,-5],[9,-4],[7,-5],[11,-9],[7,-6],[9,-12],[5,-8],[2,-15],[4,-49],[4,-20],[0,-5],[-3,-9],[-2,-5],[-15,-18],[-5,-5],[-12,-12],[-9,-11],[-14,-25],[-30,-45],[-8,-17],[-4,-9],[-10,-34],[-14,-41],[0,-5],[2,-10],[4,-14],[9,-23],[5,-9],[5,-8],[3,-3],[3,-3],[7,-6],[1,-1],[14,-12],[7,-6],[1,0],[14,-10],[16,-11],[22,-17],[14,-12],[14,-13],[40,-32],[11,-9],[19,-13],[37,-29],[19,-13],[12,-7],[4,-2],[44,-11],[63,-19],[31,-5],[5,-1],[18,-5],[40,-7],[26,-6],[4,-2],[20,-12],[18,-16],[19,-13],[17,-17],[33,-40],[31,-30],[2,-3],[13,-15],[8,-12],[12,-21],[8,-12],[2,-4],[16,-22],[4,-6],[4,-9],[10,-38],[1,-6],[3,-23],[2,-45],[0,-20],[0,-25],[-3,-25],[0,-20],[-3,-50],[-4,-39],[-2,-13],[-1,-7],[-3,-14],[0,-1],[-4,-19],[-14,-42],[-18,-40],[-6,-19],[-6,-19],[-7,-34],[-2,-15],[-1,-40],[2,-30],[3,-29],[1,-10],[3,-15],[5,-19],[11,-22],[5,-8],[6,-8],[10,-11],[6,-6],[24,-22],[8,-6],[16,-9],[25,-11],[25,-10],[17,-7],[9,-3],[13,-6],[8,-3],[17,-6],[14,-2],[35,-4],[18,-1],[27,-3],[27,-1],[19,0],[13,1],[25,3],[71,22],[1,0],[51,29],[46,34],[54,54],[20,13],[8,2],[3,1],[6,1],[7,-2],[2,0],[5,-2],[4,-5],[1,-1],[2,-2],[0,-1],[8,-9],[8,-19],[4,-8],[1,-22],[3,-45],[2,-27],[0,-1],[0,-7],[1,-10],[6,-87],[0,-1],[-8,-111],[0,-3],[4,-27],[2,-24],[3,-45],[0,-12],[0,-23],[-1,-10],[-2,-15],[0,-2],[0,-1],[0,0],[0,-2],[0,-5],[1,-25],[-3,-8],[-5,-15],[0,-2],[-4,-18],[-3,-19],[-2,-35],[-2,-35],[-1,-35],[-1,-29],[-5,-55],[-4,-40],[0,-10],[1,-7],[1,-8],[-2,-4],[-2,-4],[-4,-10],[-9,-33],[-3,-10],[-2,-4],[-31,-77],[-4,-9],[-20,-33],[-7,-7],[-7,-6],[-41,-31],[-29,-14],[-8,-3],[-23,-4],[-31,-2],[-27,0],[-22,3],[-5,1],[-26,9],[-26,7],[-9,3],[-66,32],[-28,15],[-8,4],[-9,0],[-18,-2],[-9,-2],[-8,-4],[-8,-4],[-22,-18],[-10,-10],[-9,-11],[-5,-9],[-7,-12],[-4,-9],[-6,-19],[-6,-29],[-6,-34],[-1,-20],[0,-20],[3,-30],[7,-34],[9,-28],[6,-12],[0,-1],[8,-19],[20,-33],[11,-16],[17,-16],[15,-11],[18,-15],[19,-13],[12,-6],[4,-2],[18,-3],[10,-1],[17,-1],[27,-1],[14,1],[13,1],[18,4],[38,15],[21,9],[69,38],[23,14],[23,16],[18,14],[4,4],[19,21],[49,51],[3,3],[16,10],[8,4],[9,4],[22,6],[22,4],[13,1],[14,1],[27,-5],[15,-3],[11,-3],[18,-4],[8,-4],[9,-2],[13,-1],[9,0],[14,0],[22,-1],[9,0],[5,1],[13,4],[12,5],[16,9],[13,5],[3,2],[9,5],[17,7],[4,3],[7,5],[3,4],[2,10],[4,19],[2,25],[0,5],[-1,10],[-2,20],[0,20],[1,9],[5,25],[7,34],[1,5],[1,9],[6,8],[9,17],[6,13],[10,17],[16,24],[30,37],[23,24],[6,7],[28,25],[17,17],[22,25],[40,48],[10,10],[18,14],[7,4],[20,10],[13,5],[17,6],[35,9],[9,1],[14,0],[28,0],[54,-5],[9,1],[13,2],[12,-5],[9,-3],[13,-2],[22,-2],[26,-9],[13,-5],[9,-6],[11,-6],[8,-1],[17,-2],[17,0],[9,0],[14,3],[13,2],[18,5],[8,4],[8,5],[3,4],[8,17],[1,3],[2,12],[0,10],[0,18],[0,2],[-4,29],[-9,23],[-2,5],[-38,55],[-27,34],[-3,3],[-19,22],[-7,6],[-14,12],[-46,32],[-4,2],[-5,2],[-4,1],[-4,1],[-9,0],[-3,4],[-4,8],[-3,5],[-2,4],[-10,11],[-12,14],[-22,25],[-18,27],[-1,1],[-5,8],[-4,9],[-4,15],[-7,34],[-2,9],[0,15],[-1,15],[0,5],[3,20],[2,10],[7,12],[14,20],[10,14],[17,25],[10,17],[2,5],[21,32],[3,4],[11,12],[8,7],[52,38],[18,15],[18,16],[11,9],[76,53],[45,26],[19,11],[5,3],[3,3],[4,2],[22,4],[13,5],[24,12],[0,1],[16,10],[6,-2],[27,-8],[10,-4],[29,-11],[12,-5],[13,-6],[11,-8],[7,-3],[10,-4],[5,-5],[2,-2],[3,-3],[13,-6],[20,-9],[1,0],[19,-12],[8,-6],[3,-4],[11,-15],[37,-57],[16,-24],[4,-9],[9,-23],[4,-14],[4,-20],[2,-9],[9,-28],[8,-19],[12,-37],[7,-24],[10,-33],[20,-50],[12,-43],[12,-43],[11,-38],[7,-28],[12,-49],[11,-35],[0,-2],[2,-9],[0,-1],[2,-15],[5,-55],[4,-24],[2,-10],[12,-32],[2,-5],[21,-38],[8,-12],[6,-8],[26,-27],[22,-18],[26,-19],[37,-18],[17,-7],[11,-3],[9,-3],[17,-7],[4,-2],[22,-18],[11,-9],[27,-18],[27,-17],[20,-11],[41,-22],[20,-11],[11,-8],[12,-7],[25,-21],[25,-22],[6,-7],[6,-8],[14,-20],[4,-8],[4,-9],[10,-28],[3,-10],[11,-32],[2,-10],[13,-32],[4,-9],[7,-12],[8,-13],[9,-11],[19,-28],[3,-4],[6,-6],[19,-15],[13,-9],[14,-8],[29,-15],[8,-3],[0,-1],[9,-2],[22,-4],[9,-1],[32,0],[13,2],[13,3],[4,3],[15,18],[1,1],[13,12],[4,2],[1,0],[6,2],[11,3],[16,9],[7,6],[7,6],[6,8],[28,38],[1,0],[11,15],[18,24],[3,2],[14,1],[27,-1],[31,-4],[13,-3],[5,-3],[12,-5],[8,-3],[9,-4],[23,-14],[5,-3],[0,-1],[0,0],[3,-2],[7,-6],[12,-15],[8,-12],[4,-9],[18,-56],[3,-14],[0,-1],[2,-20],[1,-40],[1,-55],[-1,-15],[1,-4],[2,-15],[20,-72],[11,-38],[8,-28],[8,-29],[9,-33],[4,-30],[1,-15],[0,-10],[-3,-44],[-1,-25],[-1,-15],[-5,-25],[-5,-24],[-9,-28],[-5,-14],[-8,-18],[-5,-9],[-8,-11],[-17,-23],[-12,-15],[-6,-5],[0,-1],[-2,0],[-11,-4],[-22,-6],[-13,-4],[-13,-4],[-27,-3],[-18,0],[-18,2],[-36,0],[-22,-3],[-18,-5],[-21,-10],[-7,-5],[-19,-15],[-6,-6],[-34,-41],[-3,-3],[-10,-10],[-17,-16],[-18,-23],[-36,-38],[-21,-25],[-27,-40],[-11,-22],[-8,-12],[-18,-29],[-16,-30],[-12,-27],[-4,-14],[-7,-34],[-11,-22],[-4,-8],[-3,-10],[-9,-38],[-2,-10],[-3,-15],[-11,-38],[-2,-9],[-3,-15],[0,-2],[-9,-26],[-22,-49],[-4,-9],[-6,-8],[-14,-20],[-6,-7],[-10,-10],[-18,-15],[-11,-8],[-8,-5],[-3,-3],[-7,-11],[-1,-2],[-5,-16],[-1,-4],[-5,-10],[-9,-17],[-8,-12],[-9,-11],[-15,-11],[-20,-13],[-8,-5],[-8,-3],[-9,-3],[-4,-2],[-22,-5],[-13,-3],[-12,-1],[-16,-9],[-12,-6],[-13,-20],[-17,-30],[-16,-23],[-5,-9],[-9,-23],[-7,-13],[-1,-5],[-2,-9],[-3,-9],[-4,-20],[-4,-14],[-2,-15],[1,-10],[3,-20],[3,-9],[5,-9],[25,-35],[10,-17],[21,-38],[13,-31],[8,-24],[8,-28],[11,-33],[16,-52],[11,-43],[8,-39],[5,-14],[11,-22],[12,-21],[11,-16],[27,-33],[17,-24],[10,-16],[9,-11],[4,-3],[12,-7],[8,-3],[30,-10],[14,-3],[17,-6],[12,-6],[13,-5],[5,-1],[9,0],[4,1],[35,7],[14,2],[10,1],[15,16],[2,1],[1,2],[22,17],[31,30],[13,14],[14,18],[8,12],[16,25],[5,8],[29,68],[15,42],[6,13],[11,16],[14,19],[9,11],[9,5],[9,4],[4,0],[0,0],[32,-2],[4,-2],[13,-5],[11,-9],[3,-3],[6,-8],[24,-42],[11,-27],[6,-19],[2,-20],[1,-10],[-3,-20],[-3,-29],[0,-45],[-2,-75],[-2,-45],[-1,-15],[-6,-29],[-7,-44],[-3,-35],[-3,-65],[-1,-4],[-3,-10],[-7,-13],[-4,-9],[-8,-12],[2,-20],[2,-15],[0,-29],[0,-10],[-3,-15],[-2,-8],[0,-2],[-5,-14],[-9,-28],[-5,-19],[-18,-72],[-4,-20],[-3,-19],[-6,-60],[-2,-40],[1,-89],[1,-30],[4,-40],[4,-24],[8,-39],[5,-24],[2,-15],[4,-35],[1,-10],[11,-59],[6,-29],[4,-14],[3,-9],[9,-18],[13,-26],[19,-34],[9,-17],[8,-12],[8,-12],[10,-10],[3,-5],[9,-16],[10,-17],[12,-27],[18,-51],[13,-48],[3,-19],[2,-40],[2,-35],[-1,-20],[-3,-40],[-10,-59],[-3,-29],[-7,-39],[0,-1],[-3,-14],[-4,-14],[-1,-1],[0,0],[-1,-4],[-4,-12],[-10,-35],[-22,-49],[-5,-9],[-28,-36],[-15,-18],[-10,-9],[-19,-16],[-45,-33],[-42,-29],[-8,-5],[-12,-6],[-8,-5],[-11,-8],[-10,-11],[-6,-7],[-9,-17],[-27,-40],[-15,-25],[-3,-10],[-3,-19],[-5,-29],[0,-6],[3,-54],[1,-10],[1,-5],[20,-34],[7,-12],[23,-30],[15,-26],[9,-11],[10,-10],[24,-23],[3,-3],[25,-13],[20,-10],[12,-4],[5,-2],[40,-12],[26,-6],[25,-10],[57,-17],[17,-5],[32,-3],[40,0],[41,2],[1,0],[17,1],[9,2],[2,1],[11,4],[30,9],[20,12],[12,6],[25,11],[25,12],[16,10],[18,14],[7,7],[19,21],[5,8],[16,24],[13,27],[6,13],[9,23],[10,22],[10,17],[14,19],[11,16],[14,19],[9,3],[5,1],[8,2],[27,3],[17,-8],[23,-15],[16,-8],[44,-26],[4,-3],[16,-18],[31,-28],[9,-11],[12,-15],[23,-31],[4,-6],[27,-43],[8,-12],[13,-21],[14,-19],[10,-17],[4,-8],[7,-24],[2,-5],[4,-29],[0,-7],[2,-28],[2,-15],[1,-15],[13,-58],[5,-34],[8,-54],[4,-25],[2,-14],[2,-10],[0,-1],[5,-28],[1,-5],[-5,-21],[0,-1],[-5,-22],[-8,-44],[-5,-69],[-1,-48],[0,-12],[-9,-114],[-2,-70],[-1,-45],[-7,-85],[-4,-34],[-4,-75],[-1,-10],[-4,-18],[-5,-21],[-19,-61],[-21,-55],[-11,-27],[-19,-51],[-13,-37],[-27,-85],[-11,-43],[-5,-22],[-2,-13],[-5,-36],[-2,-25],[-1,-75],[1,-40],[2,-29],[2,-10],[13,-58],[10,-39],[15,-41],[4,-9],[15,-31],[5,-8],[6,-14],[5,-8],[23,-37],[32,-42],[25,-29],[26,-26],[1,0],[23,-23],[32,-36],[30,-30],[16,-18],[12,-15],[16,-24],[28,-51],[15,-31],[11,-21],[18,-46],[3,-10],[26,-74],[5,-19],[13,-58],[5,-24],[26,-96],[2,-15],[3,-74],[1,-28],[0,-17],[-3,-25],[-8,-69],[-3,-15],[-17,-57],[-4,-14],[-4,-8],[-23,-44],[-15,-24],[-19,-28],[-6,-7],[-20,-21],[-57,-64],[-53,-46],[-15,-12],[-43,-27],[-84,-35],[-8,-3],[-40,-10],[-38,-6],[-11,-2],[-45,-4],[-9,0],[-18,1],[-54,-2],[-9,-3],[-30,-8],[-13,-5],[-8,-5],[-27,-17],[-12,-8],[-13,-13],[-9,-11],[-23,-31],[-7,-7],[-20,-20],[-16,-17],[-5,-9],[-18,-61],[-16,-68],[-3,-19],[-1,-15],[0,-10],[1,-30],[1,-5],[16,-58],[11,-48],[15,-47],[22,-54],[14,-37],[11,-27],[8,-13],[10,-16],[15,-19],[10,-10],[15,-11],[8,-4],[13,-4],[18,-4],[7,-2],[6,-2],[25,-11],[16,-10],[10,-11],[10,-9],[26,-28],[17,-15],[5,-5],[12,-16],[84,-97],[6,-7],[14,-18],[2,-4],[8,-24],[3,-18],[1,-3],[6,-21],[3,-14],[5,-50],[-1,-15],[-5,-19],[-11,-38],[-4,-9],[-4,-9],[-19,-28],[-6,-7],[-22,-18],[-8,-4],[-22,-12],[-3,-1],[-12,-5],[-18,-4],[-5,0],[-11,0],[-2,0],[-4,1],[-9,4],[-1,0],[-1,0],[-6,3],[-15,3],[-12,3],[-17,7],[-16,8],[-36,20],[-20,13],[-36,30],[-10,9],[-58,60],[-2,1],[-13,13],[-15,12],[-19,13],[-16,9],[-9,4],[-8,3],[-44,12],[-27,1],[-36,-3],[-26,-4],[-18,-4],[-18,-5],[-8,-3],[-17,-8],[-11,-9],[-7,-6],[-6,-7],[-19,-21],[-11,-10],[-12,-14],[-13,-21],[-5,-8],[-20,-55],[-9,-18],[-2,-5],[-6,-13],[-17,-29],[-21,-39],[-23,-37],[-39,-54],[-21,-33],[-28,-56],[-4,-10],[-7,-18],[-9,-28],[-10,-49],[-7,-39],[-3,-20],[-2,-14],[-4,-65],[-4,-50],[-5,-39],[-6,-60],[-2,-12],[-4,-8],[-17,-24],[-6,-7],[-5,-5],[-18,-19],[-18,-16],[-33,16],[-10,5],[-1,0],[-10,5],[-13,4],[-4,2],[-4,4],[-19,27],[-9,11],[-10,9],[-7,7],[-10,17],[-5,8],[-6,17],[-9,25],[-17,51],[-4,10],[-6,18],[-13,32],[-3,9],[-1,8],[-3,17],[-3,15],[-4,14],[-10,17],[-6,7],[-13,14],[-13,13],[-7,7],[-12,8],[-24,13],[-13,5],[-13,3],[-13,1],[-14,1],[-40,-2],[-23,-2],[-26,-5],[-8,-1],[-19,-14],[-31,-20],[-12,-9],[-4,-2],[-30,-11],[-30,-7],[-14,-3],[-40,-5],[-22,-4],[-40,-5],[-14,-1],[-27,-1],[-27,-2],[-36,1],[-26,5],[-14,2],[-9,0],[-18,-2],[-17,-4],[-13,-6],[-29,-23],[-4,-4],[-8,-8],[-1,-1],[-7,-7],[-6,-7],[-6,-8],[-4,-9],[-4,-9],[-7,-23],[-2,-10],[-2,-10],[0,-10],[4,-40],[3,-9],[1,-5],[10,-17],[5,-8],[15,-19],[19,-20],[7,-7],[8,-4],[8,-4],[21,-10],[26,-8],[35,-9],[85,-12],[27,-5],[13,-5],[58,-26],[12,-7],[19,-14],[24,-23],[52,-39],[9,-11],[8,-12],[18,-35],[4,-9],[9,-23],[2,-9],[7,-24],[11,-28],[3,-9],[7,-34],[6,-34],[6,-37],[2,-26],[2,-30],[2,-15],[3,-14],[4,-17],[2,-7],[3,-9],[6,-14],[-22,-49],[-7,-13],[-48,-91],[-17,-29],[-9,-17],[-11,-16],[-40,-47],[-7,-7],[-47,-38],[-19,-14],[-30,-15],[-13,-4],[-9,-2],[-46,-8],[-12,-2],[-9,-1],[-67,6],[-36,6],[-13,2],[-11,2],[-69,12],[-31,8],[-2,0],[-28,9],[-49,12],[-49,9],[-58,9],[-13,1],[-14,0],[-35,-2],[-40,-8],[-26,-8],[-17,-9],[-16,-9],[-11,-8],[-7,-6],[-23,-24],[-7,-7],[-23,-30],[-5,-9],[-7,-12],[-18,-57],[-7,-29],[0,-5],[-1,-20],[0,-54],[-3,-45],[-1,-15],[3,-40],[2,-20],[3,-14],[13,-43],[6,-29],[2,-5],[7,-12],[21,-33],[12,-21],[29,-38],[22,-25],[10,-10],[8,-5],[2,-1],[11,-6],[22,-13],[6,-6],[6,-7],[6,-8],[11,-22],[6,-24],[1,-5],[1,-5],[3,-45],[0,-15],[-4,-34],[-2,-5],[-2,-4],[-3,-6],[-2,-2],[-2,-3],[-1,-1],[-6,-7],[-16,-15],[-15,-14],[-7,-6],[-24,-15],[-19,-12],[-15,-12],[-8,-5],[-1,0],[-1,-1],[-11,-7],[-29,-14],[-33,-17],[-24,-13],[-16,-10],[-2,-1],[-6,-3],[-20,-12],[-11,-8],[-10,-10],[-8,-12],[-5,-8],[-28,-33],[-20,-28],[-1,-20],[-2,-15],[-1,-2],[0,-2],[-4,-35],[-3,-55],[2,-25],[2,-35],[2,-19],[3,-20],[5,-24],[13,-21],[19,-27],[16,-25],[13,-19],[16,-19],[16,-17],[27,-33],[19,-28],[19,-23],[9,-10],[19,-21],[15,-19],[2,-4],[7,-13],[12,-32],[5,-14],[1,-4],[9,-34],[2,-10],[0,-9],[1,-18],[0,-3],[0,-2],[-1,-16],[0,-7],[-5,-17],[0,-1],[0,-1],[-5,-14],[-8,-23],[-6,-14],[-22,-37],[-11,-17],[-13,-19],[-6,-8],[-2,-2],[-10,-13],[-17,-17],[-40,-34],[-3,-2],[-16,-9],[-89,-46],[-9,-4],[-39,-13],[-42,-14],[-10,-2],[-13,-3],[-4,-2],[-20,-11],[-11,-4],[-2,-1],[-1,-1],[-12,-3],[-13,-4],[-25,-12],[0,0],[-17,-7],[-3,-1],[-18,-5],[-25,-12],[-1,0],[-1,0],[-7,-3],[-25,-11],[-43,-16],[-13,-4],[-9,-2],[-84,-35],[-43,-14],[-13,-4],[-17,-3],[-13,-12],[-7,-7],[-7,-6],[-14,-13],[-97,-73],[-11,-9],[-67,-66],[-19,-21],[-12,-15],[-40,-55],[-10,-16],[-7,-13],[-6,-13],[-30,-67],[-17,-57],[-10,-48],[-3,-15],[-3,-20],[-2,-25],[-1,-50],[1,-24],[10,-90],[2,-14],[4,-20],[17,-67],[5,-19],[19,-56],[20,-56],[14,-37],[13,-35],[27,-63],[7,-13],[22,-41],[3,-6],[12,-27],[16,-36],[34,-64],[15,-24],[17,-25],[19,-33],[60,-94],[57,-84],[9,-11],[19,-28],[25,-28],[10,-11],[30,-30],[48,-36],[8,-6],[24,-20],[12,-10],[14,-12],[37,-36],[27,-27],[63,-57],[14,-12],[19,-14],[27,-17],[30,-22],[51,-42],[15,-11],[31,-20],[76,-44],[89,-59],[36,-29],[10,-9],[9,-9],[18,-18],[4,-12],[13,-27],[8,-20],[1,-2],[11,-28],[9,-17],[9,-17],[11,-16],[20,-27],[27,-33],[26,-35],[25,-36],[11,-15],[10,-10],[13,-38],[19,-56],[5,-19],[3,-19],[2,-15],[1,-30],[0,-35],[-1,-20],[-1,-10],[-2,-10],[-36,-134],[-25,-85],[-18,-56],[-4,-10],[-3,-9],[-9,-17],[-3,-6],[-25,-18],[-70,-87],[-11,-15],[-12,-13],[-69,-85],[-181,-108],[-40,-12],[-5,-1],[-162,-51],[-45,-16],[-61,-21],[-61,-21],[-54,-42],[-4,-39],[2,-6],[8,-33],[22,-22],[31,-37],[10,-13],[21,-19],[19,-15],[26,-11],[84,-17],[48,3],[51,20],[107,43],[162,28],[138,13],[125,-11],[42,5],[52,-9],[89,-59],[63,-61],[76,-66],[171,-52],[49,-36],[52,-71],[64,-107],[36,-86],[57,-120],[24,-103],[10,-61],[1,-10],[1,-9],[-1,-17],[-8,-116],[-4,-147],[52,-78],[10,-13],[8,-13],[3,-6],[3,-4],[99,-110],[104,-84],[239,-154],[65,-29],[200,-91],[108,-119],[91,-150],[61,-134],[7,-16],[20,-45],[34,-74],[53,-117],[98,-262],[178,-219],[21,-141],[38,-260],[1,-3],[32,-312],[42,-88],[67,-57],[8,-6],[116,-38],[23,0],[34,-2],[145,109],[19,14],[1,1],[3,2],[195,108],[6,3],[11,-6],[4,-2],[76,-39],[77,-41],[43,-23],[2,-35],[9,-200],[-20,-12],[-14,-8],[-60,-62],[-149,-59],[-109,10],[-14,1],[-48,4],[-48,4],[-108,9],[-201,-83],[-37,-55],[-1,-4],[-21,-53],[-9,-63],[3,-52],[2,-23],[11,-20],[19,-34],[41,-46],[55,-27],[10,1],[29,2],[31,-14],[1,0],[90,-42],[91,-42],[2,0],[0,-2],[10,-175],[10,-175],[12,-191],[-18,-49],[-10,-30],[-11,-30],[-37,-105],[-36,-103],[-1,-2],[-26,-75],[-26,-75],[-36,-100],[-64,-348],[7,-11],[4,-7],[3,-13],[11,-50],[16,-31],[23,-46],[59,-49],[26,-22],[103,-52],[17,-15],[17,-9],[84,-43],[42,-5],[20,7],[58,8],[46,23],[28,25],[39,35],[16,11],[68,91],[72,19],[37,10],[37,9],[65,17],[31,-29],[30,-28],[45,-41],[17,-16],[11,-10],[9,-9],[10,-9],[26,-25],[0,-319],[-15,-40],[-3,-7],[-34,-91],[-43,-112],[-256,-189],[-7,-6],[-22,-6],[-179,-50],[-149,2],[-67,47],[-33,40],[-41,175],[-8,23],[-3,7],[-5,15],[-8,24],[-35,113],[-28,81],[-20,55],[-4,9],[-4,10],[-7,19],[-17,-6],[-37,-13],[-37,-13],[-34,-12],[-35,-12],[-21,-8],[-38,-40],[-106,-118],[-85,-91],[-39,-42],[-26,-28],[-14,-20],[-60,-79],[-63,-83],[-96,-94],[-62,-63],[-34,-34],[-115,-115],[-46,-96],[-1,-1],[-46,-77],[-7,-16],[-21,-40],[-5,-13],[-19,-41],[-7,-28],[-7,-29],[-7,-39],[-2,-45],[-1,-14],[-1,-6],[0,-8],[13,-33],[127,-165],[204,-78],[28,-11],[25,-9],[1,0],[2,-1],[79,-30],[12,-4],[45,-17],[42,-16],[4,-1],[117,-43],[116,-154],[-11,-333],[0,-291],[64,-306],[3,-7],[34,-67],[7,-9],[44,-57],[70,-110],[218,-135],[24,-15],[363,-29],[28,-2],[190,-167],[0,-208],[-26,-22],[-10,-8],[-10,-8],[-123,-102],[-16,-9],[-36,-22],[-35,-22],[-47,-28],[-119,-72],[-103,-122],[-13,-16],[-22,-42],[-83,-208],[-44,-163],[-41,-153],[-1,-381],[-1,-8],[0,-8],[0,-26],[0,-6],[1,-14],[0,-10],[3,-55],[-8,-95],[-5,-70],[-44,-166],[-30,-111],[1,-40],[-7,-104],[6,-37],[0,-4],[13,-66],[38,-74],[26,-51],[26,-52],[22,-43],[23,-44],[15,-24],[15,-23],[27,-43],[27,-43],[6,-8],[59,-94],[25,-42],[20,-32],[30,-47],[22,-36],[8,-14],[9,-41],[38,-174],[36,-174],[11,-52],[-44,-165],[-23,-89],[-24,-89],[-119,-450],[0,-26],[0,-130],[0,-131],[0,-19],[3,-3],[42,-62],[43,-64],[40,-60],[39,-59],[51,-77],[128,-190],[64,-97],[234,-165],[178,-18],[18,-2],[18,-2],[2,0],[2,0],[85,-8],[126,-12],[2,0],[251,-7],[141,-35],[300,-32],[157,37],[208,-6],[170,-22],[2,0],[217,0],[187,-46],[43,-112],[16,-104],[7,-108],[18,-148],[9,-89],[8,-40],[9,-29],[0,0],[108,-132],[137,-207],[74,-77],[7,-7],[1,-1],[2,-1],[4,-5],[78,-40],[115,-59],[34,-23],[134,-177],[10,-11],[35,-38],[71,-49],[93,-60],[4,-3],[45,-26],[2,-1],[67,-38],[36,-10],[5,-2],[67,-28],[3,-2],[20,-13],[4,-15],[-4,-25],[10,-4],[13,-6],[5,13],[9,20],[10,4],[11,-3],[3,-1],[31,-10],[1,-1],[56,-31],[33,-20],[82,-61],[176,-145],[81,-94],[108,-84],[9,-21],[6,-13],[39,-92],[17,-40],[58,-52],[110,-94],[47,-43],[101,-109],[164,-156],[84,-71],[71,-60],[126,-87],[88,-54],[89,-47],[84,-62],[68,-40],[80,-47],[150,-60],[79,-33],[16,-7],[64,-25],[64,-20],[15,-5],[4,-1],[6,-2],[14,-4],[12,-4],[51,-16],[98,-31],[110,-36],[232,-62],[307,-60],[791,-114],[29,0],[29,-1],[17,0],[17,0],[390,-3],[514,120],[79,19],[73,41],[480,271],[131,95],[7,6],[465,336],[19,28],[19,29],[64,96],[8,11],[57,85],[189,291],[190,290],[53,82],[146,156],[123,108],[29,25],[26,19],[26,20],[42,30],[34,25],[62,27],[34,14],[4,2],[1,1],[4,1],[24,11],[46,15],[30,9],[30,10],[39,12],[42,9],[92,18],[107,5],[9,1],[26,1],[77,-17],[74,-16],[149,-45],[132,-59],[37,-16],[35,-21],[112,-61],[112,-62],[3,-9],[3,-10],[28,-79],[32,-29],[53,-28],[41,-37],[39,-32],[35,-29],[101,-93],[107,-112],[29,-32],[15,-17],[26,-28],[25,-28],[32,-35],[13,-22],[104,-173],[95,-154],[10,-19],[54,-106],[64,-154],[74,-167],[71,-164],[24,-56],[97,-227],[96,-209],[106,-182],[117,-167],[36,-40],[91,-100],[138,-154],[148,-126],[159,-112],[149,-84],[159,-70],[169,-70],[170,-71],[159,-70],[148,-70],[148,-70],[137,-53],[355,-132],[348,-139],[42,-16],[11,-5],[32,-12],[176,-70],[198,-109],[322,-256],[401,-558],[74,-132],[2,-3],[1,-1],[1,-1],[0,-1],[16,-29],[20,-36],[49,-59],[19,-20],[20,-20],[23,-24],[96,-104],[71,-79],[50,-64],[2,-3],[5,-6],[6,-8],[60,-82],[132,-143],[80,-79],[61,-49],[243,-341],[246,-345],[4,-5],[80,-109],[64,-95],[15,-24],[366,-508],[718,-820],[394,-329],[24,-21],[507,-217],[775,-119],[546,28],[200,-41],[401,-77],[298,-62],[232,-52],[191,-43],[681,-43],[55,-4],[48,-2],[95,-1],[95,-1],[25,-1],[24,0],[78,-1],[11,0],[88,-1],[256,-3],[255,-3],[311,-4],[960,-20],[824,-9],[705,-20],[930,-41],[71,-3],[67,-3],[134,-6],[965,-41],[2947,-1],[5312,2],[-63,-126],[-8,-9],[-85,-134],[-120,-187],[-83,-130],[-338,-455],[-475,-468],[-341,-229],[-422,-163],[-136,-239],[-362,-390],[-206,-170],[-449,-372],[2,-146],[-11,-208],[-8,-168],[-41,-371],[-103,-547],[-10,-52],[-9,-52],[-2,-7],[-34,-352],[-28,-280],[-34,-156],[-15,-70],[-24,-110],[-145,-666],[-124,-377],[29,-494],[15,-255],[-91,-660],[-167,-786],[-166,-775],[-268,-599],[-411,-920],[-821,-1019],[-1114,-853],[-492,-854],[-844,-812],[-206,-199],[-611,-376],[-793,-698],[-1353,-1119],[-702,-1605],[-348,-674],[-454,-884],[-551,-1022],[-1,-3],[-506,-749],[-8,-11],[-959,-1312],[-247,-642],[-619,-1162],[-820,-967],[-733,-723],[-540,-316],[-105,-636],[-456,-1185],[-681,-1154],[-1027,-1108],[-436,-303],[-758,-526],[-1046,-422],[-1180,-231],[-251,-1408],[-406,-1021],[-479,-854],[-160,-286],[-959,-1165],[-431,-301],[13,-823],[-94,-823],[-27,-249],[-277,-620],[-134,-193],[-134,-194],[-1209,-1754],[-1267,-1170],[-3251,-744],[539,-1346],[183,-2303],[-973,-3145],[-805,-1207],[-317,-2075],[402,-2388],[-441,-1238],[-343,-984],[-362,-1571],[-257,-1595],[-429,-2998],[-154,-1644],[-98,-1462],[-26,-818],[-74,-663],[-58,-384],[-98,-255],[-460,-577],[-319,-304],[-181,-173],[-274,-169],[-84,-205],[-85,-207],[-215,-1203],[-248,-929],[-103,-299],[-51,-201],[-348,-648],[-482,-689],[-472,-596],[-259,-303],[-305,-288],[-65,-130],[-116,-74],[-523,-357],[-215,-97],[-277,-97],[-302,-74],[-245,-64],[-265,-74],[-226,-676],[-79,-200],[-22,-112],[-183,-522],[-155,-364],[-159,-307],[-441,-773],[-105,-200],[-157,-252],[-133,-172],[-162,-228],[-142,-172],[-116,-121],[86,-327],[31,-369],[-30,-196],[-34,-173],[-17,-186],[-96,-322],[-34,-229],[-88,-331],[-75,-205],[-100,-247],[-117,-172],[-96,-219],[-142,-191],[-219,-358],[-92,-187],[-79,-135],[-92,-144],[-137,-205],[-117,-224],[-186,-247],[-171,-218],[-162,-219],[-112,-121],[-154,-130],[-153,-144],[-170,-145],[-145,-134],[-170,-83],[173,-230],[156,-192],[194,-243],[160,-243],[271,-389],[308,-505],[185,-327],[151,-290],[185,-374],[139,-411],[32,-173],[9,-50],[113,-682],[1,-956],[-96,-1133],[-139,-623],[-181,-627],[-221,-977],[-250,-539],[-432,-863],[-193,-242],[-76,-92],[4,-8],[-3,-3],[164,-450],[99,-1106],[29,-596],[-63,-749],[-74,-648],[-4,-9],[5,-29],[-3,-7],[77,-467],[23,-448],[82,-1056],[32,-1741],[8,-719],[-22,-437],[-354,-2171],[-164,-553],[-448,-795],[-445,-738],[-275,-467],[-391,-583],[-276,-938],[-113,-384],[-317,-701],[-361,-705],[-190,-360],[-201,-113],[-139,-714],[-283,-910],[-200,-696],[-312,-658],[-617,-1140],[-356,-664],[-404,-413],[-436,-515],[-593,-385],[-198,37],[-3,1],[-38,-18],[-751,-349],[-1021,-197],[-590,-91],[-746,51],[-786,-177],[-535,-8],[-451,-491],[221,-650],[168,-609],[11,-364],[-146,-631],[25,-83],[412,-544],[121,-692],[16,-95],[17,-81],[88,-427],[110,-717],[69,-1007],[-46,-884],[-93,-416],[-28,-122],[-289,-795],[-348,-823],[-462,-921],[-817,-948],[-347,-392],[-500,-481],[-465,-289],[-470,-275],[-388,-158],[-420,-140],[-519,-157],[-437,-55],[-643,-107],[-134,-486],[-722,-2606],[941,-2643],[231,-47],[461,-202],[325,-240],[432,-278],[395,-324],[326,-202],[373,-319],[290,-334],[106,-121],[217,-238],[166,-180],[244,-404],[452,-929],[174,-686],[19,-396],[26,-549],[-50,-1132],[-261,-1188],[-509,-1081],[-571,-828],[-851,-940],[-805,-716],[-177,-99],[-1087,-608],[-13,-1127],[-96,-926],[-124,-899],[-54,-729],[-125,-1277],[-116,-936],[-194,-838],[-357,-1090],[-144,-302],[-218,-772],[-62,-565],[-242,-1044],[-169,-749],[69,-643],[-77,-169],[-273,-594],[-160,-570],[-194,-729],[-222,-758],[-173,-466],[-181,-684],[-809,-1646],[-304,-499],[-102,-80],[-50,-137],[-16,-117],[-4,-150],[-161,-348],[-311,-795],[-214,-753],[-197,-710],[-423,-1227],[-118,-621],[419,-99],[550,-146],[537,-273],[580,-335],[117,-68],[350,-222],[83,-53],[73,-48],[84,-69],[165,-138],[288,-244],[244,-239],[872,-1140],[463,-812],[355,-1056],[154,-954],[-33,-364],[62,-102],[141,-454],[108,-443],[31,-246],[-505,-1],[-1513,-4],[-505,-1],[-40,-1],[-58,0],[-62,0],[-40,0],[-23,0],[-70,0],[-23,0],[-19,0],[-58,0],[-19,1],[-9,0],[-10,0],[-11,0],[-55,0],[-36,1],[-31,0],[-8,0],[-479,1],[-1461,2],[-488,0],[-510,1],[50,-365],[-644,-32],[-1541,-77],[-586,-29],[-167,-11],[-269,17],[-247,41],[-183,60],[-104,23],[-7,2],[-126,28],[-8,1],[-149,-2],[-286,-42],[-23,-3],[-229,-31],[-182,-9],[-187,13],[-79,5],[-135,19],[-245,35],[-542,78],[-86,16],[-170,30],[-170,31],[-29,7],[-40,11],[-48,12],[-29,8],[-340,102],[-113,50],[-29,12],[-14,5],[-181,76],[-64,35],[-123,57],[-56,32],[-49,32],[-48,36],[-48,39],[-43,46],[-140,178],[-254,365],[-73,117],[-134,216],[-68,125],[-79,121],[-10,19],[-25,45],[-47,61],[-21,28],[-62,95],[-30,34],[-63,53],[-68,42],[-10,5],[-44,21],[-59,19],[-44,16],[-46,7],[-50,3],[-55,-3],[-48,-7],[-4,0],[-44,-11],[-104,-31],[-347,-92],[-179,-40],[-45,-10],[-35,-7],[-67,-8],[-68,-2],[-75,-10],[-96,-13],[-48,-18],[-4,-1],[-15,-2],[-160,-27],[-127,-41],[-139,-57],[-26,-11],[-106,-38],[-14,-3],[-35,-7],[-104,-22],[-35,-7],[-12,-3],[-12,-2],[-51,-11],[-1,0],[-205,-29],[-21,-1],[-76,-3],[-45,-2],[-121,-5],[-13,0],[-13,0],[-16,0],[-16,0],[-63,-1],[-13,0],[-88,2],[-88,7],[-16,1],[-47,5],[-60,8],[-33,4],[-60,2],[-61,1],[-22,1],[-22,1],[-66,1],[-211,5],[-29,2],[-149,9],[-144,16],[-39,3],[-35,3],[-44,6],[-115,43],[-115,36],[-82,19],[-213,49],[-54,9],[-54,2],[-33,1],[-2,0],[-38,-7],[-5,-1],[-15,-2],[-27,-9],[-11,-6],[-30,-19],[-10,-8],[-5,-4],[-34,-27],[-2,-3],[-8,-9],[-3,-3],[-10,-12],[-35,-52],[-23,-57],[-16,-56],[-5,-32],[-5,-32],[-4,-69],[-6,-45],[-15,-58],[-8,-54],[-2,-12],[-1,-3],[-6,-73],[-1,-81],[9,-119],[10,-74],[5,-34],[1,-15],[3,-30],[5,-36],[14,-118],[4,-40],[13,-121],[9,-94],[6,-122],[0,-149],[0,-6],[-8,-40],[-13,-45],[-9,-24],[-8,-19],[-32,-63],[-71,-136],[-19,-29],[-21,-25],[-16,-14],[-10,-9],[-6,-5],[-22,-14],[-47,-23],[-8,-4],[-53,-16],[-4,-1],[-52,-7],[-6,1],[-54,2],[-24,-2],[-28,5],[-49,16],[-12,6],[-11,5],[-58,27],[-81,53],[-99,84],[-94,108],[-36,41],[-66,90],[-33,59],[-44,86],[-54,124],[-51,176],[-17,58],[-32,99],[-34,86],[-1,17],[-5,12],[-8,12],[-24,27],[-14,17],[-15,16],[-12,14],[-12,14],[-16,18],[-1,1],[-30,22],[-37,21],[-40,15],[-40,9],[-2,0],[-38,4],[-1,0],[-7,-1],[-7,0],[-42,-1],[-73,-12],[-12,-3],[-31,-8],[-41,-15],[-44,-23],[-98,-65],[-54,-38],[-52,-46],[-20,-21],[-12,-12],[-74,-87],[-9,-12],[-25,-36],[-3,-6],[-2,-3],[-46,-70],[-18,-26],[-5,-6],[-25,-36],[-18,-27],[-7,-10],[-17,-24],[-13,-17],[-11,-14],[-4,-5],[-5,-6],[-4,-4],[-69,-60],[-68,-60],[-72,-64],[-19,-16],[-142,-66],[-17,-8],[-17,-8],[-4,-2],[-24,-1],[-21,0],[-28,-1],[-76,-3],[-37,13],[-15,8],[-18,10],[-35,26],[-29,29],[-23,28],[-20,34],[-20,43],[-18,53],[-10,42],[-7,37],[-1,37],[1,40],[17,103],[14,53],[1,2],[7,32],[7,17],[1,10],[6,55],[0,32],[-3,25],[-2,13],[-12,33],[-12,20],[-11,17],[-31,33],[-32,28],[-32,23],[-37,21],[-34,15],[-12,4],[-10,3],[-72,23],[-60,6],[-36,3],[-49,4],[-30,6],[-26,8],[-18,6],[-15,9],[-7,3],[-17,9],[-35,25],[-28,27],[-8,10],[-40,53],[-36,38],[-47,57],[-20,26],[-53,55],[-60,51],[-10,9],[-6,4],[-78,51],[-5,2],[-75,37],[-23,12],[-5,1],[-84,32],[-107,28],[-15,2],[-53,8],[-27,0],[-82,-1],[-82,-1],[-207,-1],[-115,16],[-23,5],[-64,15],[-49,12],[-111,33],[-29,9],[-30,9],[-1,0],[-88,16],[-80,15],[-162,6],[-49,-4],[-47,-9],[-47,-16],[-21,-11],[-19,-10],[-36,-26],[-37,-34],[-10,-14],[-56,-75],[-51,-85],[-18,-31],[-18,-31],[-45,-76],[-53,-101],[-46,-63],[-16,-29],[-18,-25],[-4,-3],[-30,-28],[-44,-29],[-38,-18],[-21,-6],[-22,-6],[-12,-2],[-18,-2],[-17,-2],[-31,-4],[-44,8],[-36,6],[-35,6],[-1,1],[-12,2],[-40,13],[-24,13],[-18,12],[-28,23],[-11,9],[-17,35],[-14,37],[-11,57],[-4,31],[1,6],[8,101],[30,101],[44,164],[8,30],[14,53],[8,38],[7,30],[16,87],[6,65],[1,36],[-6,56],[-2,21],[-2,22],[-1,5],[-6,61],[-28,100],[-9,31],[-24,30],[-30,48],[-22,29],[-30,31],[-35,26],[-45,25],[-7,3],[-69,28],[-67,24],[-74,20],[-55,10],[-98,18],[-9,2],[-12,-1],[-16,-1],[-15,-1],[-34,-2],[-18,-5],[-11,-2],[-10,-2],[-22,-5],[-9,-5],[-25,-12],[-26,-12],[-15,-12],[-41,-30],[-36,-37],[-27,-38],[-32,-46],[-7,-12],[-61,-100],[-12,-35],[-3,-16],[-5,-23],[0,-9],[1,-62],[2,-50],[7,-183],[2,-46],[10,-103],[6,-51],[4,-86],[1,-79],[-2,-67],[-10,-243],[-9,-70],[-10,-50],[-4,-21],[-16,-58],[-24,-66],[-29,-66],[-21,-38],[-27,-32],[-49,-60],[-47,-43],[-36,-26],[-23,-10],[-49,2],[-18,3],[-35,6],[-30,7],[-26,11],[-17,7],[-40,21],[-59,42],[-6,5],[-1,2],[-49,57],[-19,31],[-24,50],[-19,53],[-17,88],[-12,93],[-19,69],[-27,99],[-30,99],[-29,73],[-13,32],[-13,22],[-33,38],[-39,27],[-8,3],[-48,17],[-58,7],[-159,-13],[-107,-19],[-40,-7],[-15,-3],[-8,-1],[-58,-11],[-151,17],[-25,5],[-20,4],[-45,16],[-43,20],[-43,27],[-36,30],[-27,36],[-40,82],[-19,87],[-2,38],[3,38],[10,46],[7,25],[10,19],[16,30],[40,77],[12,22],[65,104],[3,4],[25,46],[16,22],[13,17],[20,42],[16,47],[17,47],[12,42],[13,43],[3,11],[2,23],[4,42],[-3,78],[-1,10],[-1,17],[-5,21],[-5,29],[-4,25],[-24,95],[-4,21],[-5,21],[-4,17],[-4,11],[-13,35],[-21,47],[-43,98],[-27,53],[-38,59],[-97,121],[-31,38],[-8,7],[-17,15],[-37,18],[-38,12],[-9,3],[-19,4],[-10,1],[-17,3],[-15,0],[-11,-1],[-25,-1],[-41,-7],[-63,-11],[-5,-1],[-21,-6],[-34,-16],[-35,-26],[-27,-26],[-10,-9],[-30,-36],[-9,-15],[-32,-58],[-7,-16],[-18,-31],[-12,-33],[-9,-38],[-2,-7],[-11,-84],[0,-92],[6,-92],[25,-178],[13,-74],[3,-44],[-2,-36],[-1,-4],[-5,-59],[-10,-33],[-24,-48],[-18,-27],[-11,-10],[-12,-10],[-36,-19],[-59,-22],[-27,1],[-97,3],[-28,9],[-5,1],[-30,22],[-26,13],[-24,21],[-17,23],[-44,82],[-24,59],[-18,72],[-10,27],[-9,89],[-19,83],[-21,61],[-6,19],[-45,93],[-37,43],[-39,36],[-49,36],[-26,12],[-9,2],[-18,5],[-25,1],[-26,-2],[-27,-7],[-31,-17],[-13,-6],[-54,-47],[-44,-52],[-51,-60],[-14,-23],[-28,-43],[-27,-44],[-24,-34],[-25,-55],[-22,-52],[-27,-59],[-3,-6],[-2,-5],[-51,-93],[-32,-39],[-48,-46],[-10,-7],[-46,-21],[-130,-79],[-16,-7],[-22,-9],[-22,-10],[-30,-12],[-4,-1],[-204,-59],[-56,-10],[-57,-5],[-111,4],[-52,11],[-59,23],[-8,4],[-48,22],[-6,3],[-116,65],[-10,5],[-83,68],[-8,9],[-22,24],[-23,25],[-5,5],[-14,16],[-31,51],[-11,17],[-14,25],[-14,33],[-1,7],[-8,39],[-12,33],[-25,90],[-3,23],[-9,63],[-4,128],[2,53],[6,53],[27,170],[13,58],[2,9],[28,118],[1,6],[21,65],[23,58],[37,116],[9,31],[32,87],[1,2],[33,77],[10,43],[3,9],[7,29],[2,10],[15,60],[0,38],[-3,22],[-6,32],[-5,31],[-9,50],[-11,40],[-25,67],[-25,52],[-3,5],[-29,49],[-27,33],[-34,31],[-14,9],[-44,29],[-18,10],[-8,4],[-10,2],[-20,7],[-4,1],[-14,1],[-8,1],[-13,1],[-13,-3],[-12,-3],[-5,-1],[-17,-5],[-3,-1],[-107,-46],[-44,-19],[-15,-7],[-132,-72],[-80,-40],[-6,-3],[-98,-42],[-72,-32],[-50,-10],[-64,18],[-26,12],[-23,12],[-44,31],[-36,36],[-29,40],[-8,11],[-26,48],[-36,83],[-5,50],[-1,49],[4,48],[6,30],[2,3],[6,18],[3,3],[11,17],[11,17],[27,40],[15,18],[23,26],[18,21],[20,24],[40,51],[13,16],[7,8],[5,5],[3,3],[2,3],[40,41],[45,46],[29,30],[13,14],[29,36],[9,15],[16,25],[13,39],[4,39],[0,71],[0,13],[-4,62],[-2,20],[0,0],[-2,49],[-10,43],[-2,9],[-6,15],[-6,14],[-13,22],[-18,60],[-1,4],[-52,101],[-25,37],[-35,37],[-15,12],[-16,13],[-10,7],[-23,14],[-33,17],[-20,7],[-16,6],[-41,10],[-31,8],[-12,-1],[-12,-1],[-23,-7],[-8,-2],[-57,-25],[-15,-6],[-17,-8],[-74,-41],[-17,-10],[-71,-49],[-123,-105],[-12,-9],[-7,-5],[-10,-8],[-11,-6],[-40,-24],[-40,-24],[-43,-21],[-12,-4],[-2,-1],[-50,-18],[-30,-5],[-41,-6],[-58,-5],[-61,-5],[-32,-5],[-49,-8],[-29,-5],[-17,6],[-25,10],[-6,2],[-32,5],[-32,5],[-13,3],[-5,1],[-45,-9],[-21,-4],[-11,-2],[-38,-1],[-42,-5],[-6,0],[-48,-5],[-121,-20],[-90,-15],[-19,-3],[-66,-17],[-46,-16],[-21,-7],[-115,-54],[-45,-21],[-50,-23],[-46,-44],[-50,-46],[-41,-47],[-32,-38],[-35,-41],[-11,-22],[-12,-27],[-4,-25],[-4,-26],[-1,-18],[-3,-34],[2,-61],[5,-38],[21,-62],[30,-59],[44,-68],[13,-14],[9,-9],[27,-19],[9,-5],[58,-26],[18,-6],[58,-18],[48,-9],[19,-4],[32,2],[31,6],[29,9],[14,8],[9,4],[56,30],[41,27],[4,3],[44,33],[39,35],[39,40],[36,38],[95,99],[12,14],[1,1],[33,40],[26,30],[27,40],[32,31],[58,35],[20,12],[24,8],[18,0],[25,-6],[40,-18],[8,-4],[45,-30],[4,-4],[37,-29],[40,-37],[28,-30],[10,-11],[18,-22],[19,-24],[19,-25],[50,-63],[6,-9],[6,-11],[13,-23],[26,-63],[21,-65],[8,-30],[23,-66],[7,-32],[4,-39],[0,-81],[-7,-68],[-2,-23],[0,-35],[-27,-116],[-11,-29],[-8,-24],[-2,-4],[-42,-77],[-31,-47],[-71,-85],[-65,-60],[-14,-10],[-66,-44],[-14,-7],[-9,-4],[-26,-10],[-57,-1],[-51,0],[-27,7],[-58,26],[-30,17],[-10,6],[-33,18],[-2,1],[-55,34],[-99,78],[-70,66],[-72,54],[-52,32],[-58,25],[-57,16],[-5,1],[-66,10],[-266,1],[-60,0],[-25,-2],[-115,-6],[-8,0],[-23,-1],[-23,-1],[-111,-6],[-111,-6],[-64,-3],[-25,1],[-12,1],[-12,1],[-24,5],[-12,2],[-12,2],[-53,17],[-24,14],[-49,38],[-11,12],[-36,38],[-44,60],[-36,67],[-39,104],[-16,56],[-8,41],[-4,67],[-8,60],[-13,103],[-35,127],[-21,48],[-27,36],[-34,34],[-38,23],[-57,23],[-49,7],[-13,-1],[-32,-4],[-58,-21],[-66,-30],[-26,-14],[-37,-21],[-99,-65],[-12,-9],[-13,-8],[-36,-24],[-153,-93],[-23,-15],[-35,-20],[-57,-35],[-41,-25],[-37,-17],[-18,-7],[-21,-7],[-39,-9],[-40,-4],[-7,0],[-8,1],[-11,-1],[-35,1],[-26,6],[-31,7],[-141,61],[-41,27],[-45,36],[-41,39],[-105,97],[-44,30],[-47,23],[-58,18],[-62,8],[-60,-4],[-65,-16],[-117,-35],[-2,-1],[-25,-10],[-9,-4],[-16,-7],[-59,-25],[-24,-14],[-32,-18],[-91,-51],[-22,-10],[-106,-45],[-68,-34],[-2,-1],[-54,-33],[-58,-38],[-52,-34],[-27,-18],[-39,-28],[-21,-15],[-23,-9],[-24,-10],[-35,-7],[-35,-2],[-35,2],[-18,4],[-25,6],[-18,4],[-20,10],[-3,2],[-62,44],[-38,35],[-80,86],[-43,51],[-19,16],[-20,11],[-32,9],[-21,1],[-29,2],[-35,-3],[-55,-10],[-14,-3],[-15,0],[-15,-1],[-16,0],[-11,-1],[-67,9],[-66,20],[-4,2],[-79,41],[-46,31],[-65,32],[-3,1],[-20,17],[-2,2],[-88,88],[-42,36],[-52,47],[-58,41],[-11,8],[-8,5],[-40,24],[-37,22],[-18,14],[-25,19],[-38,38],[-8,8],[-37,48],[-26,47],[-9,27],[-2,13],[-2,23],[5,43],[9,31],[13,28],[52,80],[55,73],[49,80],[8,16],[5,28],[-1,34],[-6,21],[-6,17],[-17,35],[-23,31],[-31,28],[-20,13],[-9,5],[-9,4],[-40,20],[-25,16],[-19,8],[-63,26],[-11,4],[-16,5],[-16,5],[-110,38],[-2,1],[-13,5],[-14,6],[-56,25],[-13,5],[-43,19],[-24,10],[-36,19],[-31,16],[-32,17],[-96,49],[-97,50],[-6,4],[-70,36],[-71,47],[-66,55],[-31,30],[-21,26],[-20,32],[-15,36],[-13,42],[-8,39],[-2,36],[3,36],[22,85],[25,50],[14,19],[140,146],[26,37],[19,46],[11,57],[0,33],[-12,41],[-22,43],[-16,22],[-22,18],[-107,66],[-4,2],[-145,77],[-45,20],[-19,8],[-57,21],[-11,4],[-83,23],[-107,22],[-21,5],[-128,20],[-16,2],[-55,3],[-93,-1],[-42,-1],[-25,3],[-83,29],[-2,1],[-147,60],[-58,34],[-120,69],[-67,35],[-69,36],[-77,46],[-54,38],[-59,46],[-128,117],[-4,3],[-28,38],[-52,72],[-32,61],[-22,45],[-27,80],[-56,213],[-6,29],[-15,34],[-4,9],[-5,5],[-14,19],[-14,20],[-4,5],[-34,26],[-52,24],[-31,5],[-25,5],[-94,22],[-7,2],[-20,1],[-30,1],[-45,-9],[-132,29],[-22,6],[-28,8],[-28,7],[-4,1],[-77,26],[-78,31],[-27,12],[-71,32],[-86,16],[-30,2],[-8,-1],[-17,-2],[-19,-4],[-40,-14],[-29,-20],[-46,-44],[-17,-25],[-1,-1],[-5,-16],[-1,-6],[0,-19],[1,-3],[11,-39],[36,-73],[53,-96],[6,-14],[16,-42],[2,-15],[-2,-17],[-6,-28],[-10,-26],[-35,-59],[-7,-11],[-18,-17],[-46,-23],[-12,-9],[-14,-12],[-14,-15],[-13,-16],[-20,-37],[-21,-69],[-23,-44],[-3,-73],[-1,-20],[8,-99],[-6,-39],[-20,-42],[-7,-14],[-38,-58],[-9,-17],[-25,-46],[-14,-41],[-3,-42],[11,-99],[6,-22],[5,-12],[3,-7],[4,-5],[10,-14],[82,-76],[19,-23],[18,-16],[7,-6],[23,-32],[15,-19],[6,-8],[4,-15],[14,-28],[7,-21],[0,-2],[2,-20],[-3,-25],[-8,-23],[-12,-23],[-18,-24],[-22,-22],[-2,-1],[-21,-15],[-19,-8],[-169,-49],[-239,-78],[-17,-6],[-17,-5],[-14,-5],[-77,-25],[-302,-103],[-33,-16],[-89,-25],[-78,-7],[-17,1],[-17,5],[-16,10],[-22,19],[-19,16],[-21,24],[-13,24],[-12,28],[-8,29],[-5,32],[2,39],[9,46],[29,76],[31,50],[12,27],[11,38],[5,38],[7,28],[2,80],[-4,48],[-8,41],[-10,34],[-15,35],[-33,54],[-48,50],[-38,40],[-179,138],[-24,13],[-25,20],[-31,40],[-17,30],[-6,23],[-1,29],[6,25],[15,28],[4,6],[15,19],[9,12],[20,18],[38,24],[1,1],[25,15],[106,61],[30,24],[20,23],[14,24],[10,25],[1,4],[1,4],[1,9],[3,9],[3,30],[-2,38],[-4,36],[-8,27],[-11,28],[-19,29],[-6,8],[-24,30],[-71,90],[-76,158],[-55,106],[-29,47],[-29,42],[-24,30],[-78,101],[-18,24],[-13,16],[-37,54],[-5,8],[-6,9],[-6,9],[-6,9],[-13,19],[-13,19],[-6,9],[-5,10],[-22,47],[-12,22],[-7,14],[0,0],[-8,14],[-154,287],[-45,78],[-26,71],[-20,44],[-32,68],[-26,75],[-10,34],[-14,48],[-2,31],[-3,52],[4,67],[-4,62],[-17,40],[-9,13],[-3,1],[-4,3],[-16,9],[-33,8],[-7,0],[-8,-1],[-15,0],[-8,-3],[-8,-2],[-15,-4],[-47,-32],[-31,-21],[-34,-28],[-57,-40],[-39,-31],[-17,-16],[-18,-16],[-36,-41],[-27,-36],[-27,-46],[-13,-25],[-4,-20],[-14,-62],[-2,-21],[5,-39],[15,-36],[52,-71],[13,-18],[41,-46],[4,-5],[18,-29],[6,-16],[1,-15],[-2,-15],[-7,-15],[-4,-7],[-14,-20],[-27,-20],[-39,-16],[-30,1],[-4,0],[-11,4],[-21,8],[-21,16],[-8,6],[-2,1],[-4,3],[-4,5],[-23,20],[-128,142],[-64,82],[-60,94],[-37,73],[-7,17],[-45,104],[-8,20],[-29,92],[-4,20],[-2,9],[-8,17],[-12,19],[-9,8],[-45,37],[-49,26],[-48,37],[-34,34],[-85,85],[-45,51],[-19,19],[-6,6],[-28,27],[-75,68],[-36,22],[-18,12],[-90,19],[-159,18],[-162,3],[-49,3],[-40,-4],[-38,-9],[-153,-67],[-34,-9],[-34,-5],[-94,-4],[-53,1],[-41,1],[-96,12],[-73,9],[-5,1],[-11,1],[-162,19],[-37,1],[-29,-4],[-28,-7],[-31,-13],[-36,-20],[-14,-8],[-47,-37],[-23,-29],[-17,-20],[-31,-37],[-61,-58],[-39,-48],[-78,-108],[-18,-26],[-14,-11],[-8,-2],[-10,-3],[-24,2],[-16,6],[-5,2],[-27,19],[-15,16],[-22,31],[-29,52],[-40,75],[-9,21],[-14,17],[-19,16],[-13,7],[0,0],[-12,7],[-36,11],[-20,7],[-21,9],[-81,35],[-46,13],[-37,6],[-10,2],[-108,4],[-52,-4],[-79,-17],[-108,-31],[-143,-48],[-65,-21],[-4,-1],[-32,-12],[-74,-27],[-38,-19],[-24,-8],[-25,-16],[-43,-38],[-18,-14],[-17,-13],[-37,-22],[-6,-3],[-35,-15],[-16,-5],[-26,-8],[-13,-4],[-25,-6],[-9,-3],[-19,-7],[-5,-2],[-1,-1],[-23,-13],[-24,-8],[-65,-21],[-25,-2],[-39,9],[-60,15],[-58,13],[-1,1],[-2,0],[-7,2],[-30,13],[-25,19],[-20,25],[-10,26],[-2,13],[12,40],[16,38],[23,42],[141,285],[27,66],[4,10],[8,24],[4,26],[5,70],[-5,26],[-19,35],[-20,24],[-12,6],[-14,6],[-14,0],[-1,0],[-18,-2],[-63,-42],[-8,-6],[-18,-15],[-35,-30],[-54,-40],[-83,-53],[-26,-14],[-54,-30],[-94,-24],[-27,-4],[-18,-1],[-34,0],[-19,2],[-25,4],[-37,11],[-34,17],[-22,16],[-42,32],[-101,61],[-48,36],[-67,56],[-134,111],[-13,11],[-16,20],[-10,13],[-11,13],[-106,133],[-43,37],[-22,9],[-14,0],[-7,-2],[-14,-3],[-42,-19],[-23,-13],[-81,-68],[-18,-10],[-19,-6],[-20,-1],[-6,1],[-26,3],[-104,27],[-37,3],[-22,1],[-28,-3],[-160,-47],[-59,-1],[-12,1],[-15,2],[-15,2],[-19,2],[-44,11],[-29,3],[-123,13],[-55,6],[-153,14],[-35,-2],[-28,-8],[-25,-12],[-29,-23],[-6,-4],[-68,-46],[-61,-11],[-18,-3],[-49,-13],[-82,-35],[-29,-12],[-29,-12],[-20,-9],[-33,-10],[-11,0],[-16,7],[-43,45],[-81,97],[-49,54],[-15,34],[-11,36],[-13,71],[0,17],[3,19],[19,43],[14,44],[0,22],[-2,75],[-1,9],[-5,39],[-10,32],[-15,24],[-23,22],[-14,10],[-31,21],[-24,11],[-23,10],[-32,9],[-138,25],[-136,105],[-7,5],[-126,65],[-47,15],[-50,12],[-4,1],[-55,7],[-32,2],[-22,0],[-153,3],[-11,0],[-15,0],[-74,1],[-105,-10],[-38,0],[-39,6],[-37,13],[-32,15],[-16,17],[-8,17],[-7,16],[-2,20],[-2,20],[3,11],[34,150],[8,154],[22,175],[7,34],[0,36],[-9,40],[-21,47],[-4,5],[-23,26],[-23,27],[-57,51],[-45,46],[-26,37],[-24,48],[-2,3],[-18,54],[-20,157],[-4,51],[2,56],[9,90],[0,3],[6,88],[-6,65],[-5,15],[-2,7],[-10,14],[-36,39],[-11,8],[-12,5],[-52,8],[-55,16],[-27,4],[-14,5],[-16,5],[-48,28],[-40,41],[-10,13],[-31,27],[-100,84],[-14,15],[-21,22],[-32,40],[-43,104],[-12,28],[-2,3],[-6,10],[-6,10],[-43,72],[-44,74],[-11,18],[-6,10],[-6,14],[-7,24],[-1,9],[-2,9],[0,4],[1,55],[0,18],[5,19],[10,26],[19,44],[16,60],[-2,51],[-4,46],[-38,205],[3,72],[11,69],[29,85],[3,23],[-1,19],[-4,22],[-9,21],[-70,237],[-17,36],[-17,25],[-2,2],[-41,41],[-11,8],[-11,6],[-16,6],[-8,1],[-20,1],[-20,-3],[-9,-3],[-33,-11],[-22,-8],[-25,-9],[-55,-13],[-13,-4],[-37,2],[-36,15],[-4,4],[-68,51],[-68,52],[-34,27],[-66,58],[-36,36],[-21,22],[-23,26],[-64,73],[-41,48],[-24,36],[-27,42],[-48,81],[-18,25],[-23,29],[-8,8],[-10,9],[-19,12],[-21,6],[-21,0],[-18,-4],[-23,-12],[-38,-28],[-18,-13],[-19,-15],[-63,-47],[-36,-27],[-13,-9],[-38,-27],[-12,-7],[-33,-23],[-11,-8],[-2,-1],[-6,-5],[-2,-1],[-3,-2],[-5,-3],[1,7],[0,5],[-20,-11],[-18,-9],[-33,-24],[-8,-9],[-40,-44],[-34,-43],[-28,-42],[-6,-10],[-36,-66],[-11,-28],[-15,-59],[0,0],[-6,-43],[1,-18],[0,-26],[30,-183],[11,-37],[17,-37],[5,-9],[15,-26],[21,-29],[38,-35],[72,-45],[13,-14],[25,-42],[21,-44],[28,-69],[24,-49],[1,-5],[14,-47],[1,-70],[-5,-105],[-2,-20],[-7,-58],[-12,-53],[-22,-65],[-30,-61],[-27,-39],[-20,-20],[-15,-15],[-14,-7],[-15,-2],[-13,1],[-16,8],[-12,10],[-30,38],[-10,9],[-27,24],[-37,21],[-26,3],[-27,-12],[-20,-25],[-8,-21],[-2,-2],[-4,-15],[-8,-30],[-3,-11],[-8,-28],[-16,-40],[-16,-29],[-22,-20],[-31,-15],[-26,-8],[-47,1],[-31,6],[-32,11],[-30,14],[-51,29],[-116,69],[-31,14],[-32,9],[-36,4],[-118,-3],[-98,2],[-82,2],[-67,12],[-2,1],[-36,12],[-57,31],[-4,3],[-4,4],[-45,39],[-26,17],[-30,14],[-31,6],[-50,-2],[-33,-9],[-52,-28],[-120,-63],[-26,-14],[-20,-7],[-32,-11],[-15,-3],[-36,7],[-29,10],[-29,15],[-42,35],[-17,22],[-16,22],[-14,15],[-20,13],[-24,9],[-69,-6],[-17,-3],[-71,-13],[-95,-13],[-115,-21],[-58,-11],[-34,2],[-30,10],[-2,1],[-11,9],[-8,12],[-11,44],[6,63],[2,72],[-17,60],[-23,47],[-21,25],[-32,24],[-2,1],[-25,14],[-4,1],[-52,19],[-99,15],[-132,-3],[-30,4],[-29,3],[-43,13],[-72,30],[0,0],[-39,16],[-17,5],[-15,8],[-13,12],[-13,22],[-7,24],[0,1],[1,25],[10,19],[8,6],[38,19],[55,24],[40,16],[24,17],[13,18],[9,25],[6,30],[2,30],[-3,45],[-7,20],[-11,17],[-12,15],[-35,24],[-38,16],[-35,6],[-50,-2],[-30,7],[-39,33],[-12,18],[-12,32],[-5,33],[2,65],[6,65],[4,62],[0,39],[0,23],[-2,60],[-6,48],[-11,30],[-19,27],[-32,49],[-21,27],[-21,49],[-54,40],[-38,27],[-35,34],[-48,36],[-40,-9],[-3,-10],[2,-21],[5,-18],[67,-133],[9,-33],[3,-32],[-2,-30],[-8,-23],[-14,-21],[-14,-15],[-7,-7],[-24,-14],[-26,-9],[-26,0],[-39,10],[-41,26],[-47,40],[-43,43],[-29,36],[-38,31],[-39,15],[-39,-2],[-27,-11],[-4,-20],[-2,-38],[19,-41],[45,-72],[43,-54],[20,-31],[21,-43],[5,-30],[-3,-24],[-9,-21],[-14,-17],[-6,-4],[-11,-7],[-21,-8],[-30,-3],[-28,3],[-25,8],[-15,9],[-19,12],[-59,31],[-43,17],[-125,49],[-94,28],[-30,9],[-17,7],[-40,15],[-81,43],[-31,21],[-35,28],[-29,18],[-44,18],[-44,9],[-14,-3],[-18,-11],[-7,-8],[-165,-245],[-220,-171],[-182,-221],[-48,-52],[-391,-189],[-39,-29],[-185,-190],[-150,-135],[-103,-104],[-31,-45],[-28,-67],[-3,-24],[4,-25],[6,-36],[23,-34],[34,-34],[43,-34],[189,-196],[49,-70],[-11,-13],[-17,-11],[-26,-9],[-11,-1],[-48,-4],[-52,-13],[-35,-13],[-49,-33],[-20,-25],[-12,-30],[-3,-34],[7,-33],[14,-33],[7,-9],[19,-29],[128,-225],[0,-1],[3,-5],[13,-27],[15,-56],[10,-112],[-9,-25],[-10,-19],[-17,-20],[-18,-16],[-74,-36],[-108,-53],[-29,-19],[-14,-11],[-12,-11],[-26,-31],[-15,-26],[-4,-22],[1,-46],[19,-67],[3,-7],[15,-32],[18,-30],[24,-26],[49,-73],[58,-98],[34,-82],[0,-1],[13,-32],[21,-74],[15,-46],[10,-31],[21,-53],[20,-34],[17,-37],[9,-30],[3,-9],[4,-28],[-7,-72],[-17,-82],[-12,-76],[-10,-259],[-5,-42],[-9,-41],[-10,-28],[-8,-16],[-5,-10],[-45,-62],[-25,-25],[-34,-20],[-69,-19],[-73,-28],[-54,-26],[-39,-34],[-51,-64],[-48,-52],[-136,-171],[-58,-74],[-59,-122],[-56,-141],[-42,-165],[-29,-148],[-4,-27],[-13,-86],[-6,-88],[8,-97],[3,-31],[1,-17],[11,-64],[12,-58],[-1,-40],[-6,-20],[-9,-13],[-7,-4],[-52,-33],[-1,0],[-41,-26],[0,0],[-11,-15],[-20,-44],[-8,-31],[-8,-88],[-14,-125],[-22,-98],[-20,-60],[-28,-59],[-24,-41],[-2,-3],[-37,-50],[-24,-41],[-16,-18],[-21,-15],[-24,-8],[-19,-2],[-22,5],[-28,0],[-56,-9],[-40,-15],[-17,-6],[-25,-14],[-25,-20],[-33,-36],[-41,-70],[-66,-86],[-35,-29],[-34,-11],[-20,-1],[-69,5],[-15,3],[-210,52],[-26,16],[-228,143],[-176,108],[-113,88],[-23,16],[-26,11],[-51,15],[-58,9],[-29,10],[-27,14],[-29,18],[-26,22],[-1,1],[-25,25],[-72,86],[-181,194],[-40,24],[-38,37],[-27,34],[-30,55],[-81,126],[-61,80],[-80,106],[-10,20],[-9,19],[-20,34],[-22,30],[-27,30],[-21,11],[-13,0],[-12,-3],[-11,-8],[-21,-25],[-33,-29],[-6,-5],[-15,-8],[-17,-5],[-22,1],[-23,9],[-18,15],[-16,22],[-12,26],[0,1],[1,24],[-10,41],[-11,30],[-32,65],[-15,18],[-6,9],[-17,10],[-17,5],[-49,4],[-66,10],[-76,26],[-6,5],[23,-9],[-49,35],[-5,11],[-38,86],[-10,13],[-18,8],[-17,-2],[-11,-1],[-17,4],[-2,1],[-7,4],[-24,12],[-43,89],[-58,118],[-1,6],[-2,11],[-7,17],[-3,4],[-13,16],[-20,13],[-22,5],[-21,-3],[-23,-11],[-20,-18],[-17,-26],[-21,-54],[-2,-25],[-7,-19],[-10,-18],[-14,-13],[-21,-12],[-21,-3],[-20,5],[-16,14],[-8,14],[-23,24],[-17,24],[-16,28],[-11,30],[-12,52],[-2,67],[-1,22],[-3,13],[-19,33],[-17,20],[-21,17],[-26,10],[-16,4],[-11,-2],[-10,-9],[-6,-11],[0,-3],[-5,-66],[8,-49],[-1,-52],[-11,-59],[-5,-15],[-8,-12],[-14,-10],[-34,-13],[-8,-3],[-15,1],[-17,7],[-26,23],[-22,13],[-11,6],[-8,8],[-21,12],[-23,1],[-23,-10],[-13,-17],[-2,-13],[3,-11],[5,-9],[15,-10],[13,-26],[2,-8],[3,-14],[0,-21],[-4,-21],[-6,-15],[-10,-13],[-12,-8],[-13,-3],[-116,-55],[-39,-14],[-49,-17],[-64,-16],[-13,-3],[-62,-7],[-38,8],[-12,10],[-10,16],[-3,15],[0,13],[4,15],[8,12],[31,26],[24,16],[36,26],[24,21],[13,17],[14,30],[1,12],[-3,11],[-21,22],[-29,16],[-255,53],[-48,-1],[-30,-10],[-12,-4],[-41,-27],[-33,-30],[-20,-33],[-9,-28],[-2,-8],[-2,-51],[4,-49],[11,-37],[30,-100],[45,-128],[-3,-11],[-7,-10],[-34,-17],[-33,-6],[-32,2],[-20,8],[-8,5],[-17,12],[-43,24],[-48,20],[-23,9],[-81,19],[-80,5],[-75,-11],[-33,-9],[-32,-14],[-23,-15],[-21,-19],[-20,-26],[-15,-25],[-13,-32],[-25,-79],[-18,-56],[-22,-147],[-9,-65],[-4,-55],[0,-51],[6,-55],[11,-51],[5,-15],[3,-12],[11,-21],[29,-33],[183,-289],[7,-24],[1,-50],[7,-55],[7,-37],[7,-17],[13,-16],[41,-33],[28,-17],[29,-10],[47,-6],[15,-7],[21,-22],[16,-29],[0,-22],[-23,-47],[-9,-14],[-16,-16],[-5,-10],[0,-17],[12,-25],[62,-49],[66,-40],[64,-50],[37,-37],[11,-19],[8,-19],[3,-25],[-2,-25],[-5,-18],[-11,-14],[-16,-11],[-38,-7],[-31,-12],[-21,-12],[-11,-7],[-21,-18],[12,-138],[21,-117],[8,-20],[16,-22],[9,-12],[17,-15],[19,-7],[20,1],[24,13],[37,30],[25,15],[36,11],[37,3],[23,-5],[20,-14],[23,-29],[1,-1],[18,-29],[6,-12],[8,-16],[11,-32],[7,-33],[6,-53],[6,-33],[38,-110],[73,-148],[137,-289],[1,-15],[-1,-13],[-14,-22],[-14,-9],[-29,-7],[-46,-22],[-7,-6],[-4,-5],[-10,-18],[-4,-20],[-1,-28],[4,-27],[8,-26],[13,-27],[24,-31],[31,-22],[5,-1],[40,-13],[66,-12],[17,-7],[18,-11],[12,-14],[11,-20],[19,-74],[3,-41],[-4,-42],[-14,-61],[-3,-11],[-24,-100],[-13,-24],[-10,-9],[-9,-8],[-20,-11],[-4,0],[-6,-1],[-15,-3],[-38,5],[-47,25],[-25,-1],[-23,-13],[-24,-23],[-6,-15],[-3,-8],[-2,-50],[-8,-31],[-13,-29],[-19,-25],[-19,-16],[-22,-12],[-19,-6],[-20,-1],[-84,-22],[-21,-9],[-17,-12],[-19,-23],[-26,-63],[-25,-46],[-30,-41],[-22,-21],[-26,-16],[-33,-7],[-30,-2],[-49,5],[-36,1],[-44,-5],[-28,-8],[-32,-18],[-15,-17],[-1,-2],[-11,-26],[-2,-32],[7,-25],[21,-22],[17,-13],[8,-7],[53,-33],[11,-5],[33,-13],[112,-56],[2,-2],[24,-17],[19,-25],[9,-26],[2,-32],[-6,-28],[-28,-34],[-36,-24],[-38,-12],[-58,-19],[-43,-9],[-40,-4],[-30,6],[-27,16],[-19,17],[-35,50],[-10,7],[-21,8],[-20,1],[-21,-9],[-20,-18],[-9,-16],[-8,-39],[-1,-121],[-4,-13],[-9,-11],[-12,-6],[-42,-6],[-145,-4],[-33,-9],[-29,-14],[-22,-17],[-21,-21],[-69,-92],[-71,-79],[-76,-71],[-39,-28],[-48,-23],[-9,-4],[-19,-4],[-18,1],[-19,5],[-18,10],[-6,4],[-49,36],[-18,9],[-20,2],[-30,-4],[-26,-8],[-23,-12],[-24,-20],[-21,-22],[-7,-8],[-11,-25],[-13,-18],[-15,-12],[-18,-10],[-21,-6],[-23,0],[-23,6],[-21,12],[-21,19],[-16,23],[-54,115],[-17,53],[-55,115],[-40,76],[-64,105],[-18,24],[-4,4],[-19,19],[-57,39],[-26,9],[-25,2],[-33,-5],[-50,-27],[-17,-20],[-2,-4],[-23,-63],[-30,-62],[-81,-168],[-6,-25],[-7,-15],[-3,-6],[-27,-62],[-21,-61],[-33,-111],[-37,-128],[-2,-8],[-9,-44],[-8,-64],[-30,-172],[-1,-24],[9,-107],[22,-170],[13,-42],[48,-101],[6,-27],[2,-29],[-6,-34],[-13,-33],[-17,-23],[-37,-28],[-9,-15],[-6,-20],[-1,-17],[4,-23],[42,-121],[2,-24],[-5,-25],[-15,-32],[-10,-12],[-14,-10],[-33,-5],[-25,-13],[-21,-23],[-14,-28],[-2,-23],[4,-21],[35,-58],[13,-37],[1,-34],[-4,-18],[-35,-96],[-2,-23],[4,-22],[11,-23],[10,-20],[12,-14],[71,-29],[34,-22],[15,-15],[10,-18],[3,-16],[0,-27],[-6,-47],[-8,-19],[-12,-13],[-73,-39],[-23,-19],[-22,-24],[-6,-11],[-13,-24],[-14,-45],[-12,-40],[-10,-19],[-14,-17],[-43,-34],[-17,-10],[-18,-6],[-60,-18],[-17,-7],[-13,-11],[-10,-15],[-7,-18],[-2,-17],[10,-64],[0,-39],[-5,-30],[-3,-21],[-13,-34],[-11,-15],[-14,-10],[-52,-10],[-38,-18],[-22,-22],[-1,-3],[-3,-8],[-1,-1],[-1,-13],[3,-13],[7,-8],[31,-12],[126,-8],[18,-4],[16,-7],[17,-15],[10,-15],[4,-15],[0,0],[1,-20],[2,-27],[-8,-16],[-12,-10],[-53,-10],[-35,-11],[-37,-21],[-39,-30],[-27,-28],[-54,-68],[-5,-5],[-40,-30],[-41,-21],[-23,-25],[-11,-27],[-2,-10],[-9,-46],[1,-41],[7,-20],[4,-11],[16,-33],[6,-12],[27,-39],[61,-38],[85,-74],[15,-5],[15,-1],[210,-37],[26,-10],[22,-13],[93,-78],[32,-54],[28,-74],[11,-13],[90,-130],[-4,-12],[0,-15],[-27,-42],[-11,-28],[-1,-13],[2,-22],[18,-35],[8,-30],[1,-34],[-4,-32],[-8,-21],[-11,-22],[-38,-45],[-19,-29],[-15,-32],[-5,-24],[3,-28],[11,-21],[19,-11],[23,0],[34,11],[23,-1],[62,7],[17,-2],[28,-16],[18,-16],[16,-24],[7,-22],[0,-11],[-4,-12],[-26,-38],[-12,-6],[-42,-13],[-33,-5],[-27,-11],[-34,-27],[-9,-11],[-6,-14],[-5,-38],[4,-26],[6,-16],[11,-21],[23,-42],[6,-13],[5,-18],[2,-16],[-3,-19],[-5,-18],[-47,-88],[-6,-22],[0,-25],[3,-17],[2,-4],[10,-23],[17,-30],[18,-24],[18,-19],[18,-14],[65,-28],[22,-15],[18,-16],[18,-22],[16,-27],[10,-27],[8,-33],[22,-228],[4,-100],[-1,-42],[0,-1],[-1,-5],[-6,-44],[4,-103],[6,-61],[10,-66],[1,-7],[12,-96],[16,-87],[18,-77],[-4,-18],[-11,-16],[-15,-6],[-21,0],[-28,-4],[-26,-11],[-15,-14],[-9,-18],[-1,-23],[29,-110],[-1,-14],[-4,-10],[-15,-13],[-44,-2],[-34,-17],[-24,-24],[-33,-55],[-10,-28],[-3,-23],[-1,-7],[1,-25],[7,-34],[0,-17],[-4,-18],[-8,-17],[-10,-10],[-15,-5],[-41,0],[-16,1],[-13,4],[-12,-1],[-15,-8],[-11,-15],[-4,-12],[0,-12],[11,-24],[14,-13],[8,-8],[29,-10],[9,-6],[8,-12],[7,-26],[-2,-17],[-5,-14],[-16,-14],[-33,-38],[-3,-4],[-26,-21],[-29,-16],[-36,-14],[-20,-2],[-15,5],[-12,6],[-16,15],[-66,59],[-25,15],[-21,6],[-60,-1],[-19,-7],[-12,-16],[-2,-21],[6,-29],[15,-28],[20,-19],[34,-19],[30,-11],[36,-6],[17,-9],[15,-16],[8,-15],[2,-15],[-1,-21],[-7,-23],[-1,-2],[-11,-17],[-15,-12],[-23,-13],[-12,-13],[-8,-17],[-4,-21],[-5,-27],[-13,-17],[-11,-5],[-17,-1],[-60,11],[-25,-1],[-23,-1],[-20,-12],[-16,-17],[-13,-21],[-9,-23],[-3,-21],[1,-27],[12,-57],[16,-37],[19,-35],[12,-21],[28,-31],[30,-20],[20,-4],[15,4],[8,7],[23,31],[29,19],[18,3],[12,-9],[7,-19],[3,-27],[-1,-26],[-8,-32],[0,-18],[24,-66],[10,-54],[-1,-133],[-7,-84],[2,-42],[10,-106],[17,-82],[-2,-42],[-8,-23],[-16,-32],[-18,-23],[-21,-19],[-21,-12],[-23,-7],[-58,0],[-12,-7],[-8,-12],[-3,-13],[2,-39],[4,-16],[4,-6],[14,-27],[4,-19],[1,-19],[-3,-21],[-11,-30],[-13,-59],[-14,-93],[4,-173],[-2,-34],[-9,-47],[-16,-44],[-8,-27],[-13,-74],[0,-74],[-5,-20],[-10,-15],[-28,-17],[-37,-12],[-71,-7],[-76,-14],[-10,-2],[-58,0],[-47,-11],[-34,-14],[-54,-29],[-26,-20],[-22,-24],[-38,-61],[-6,-17],[2,-25],[10,-22],[6,-15],[19,-17],[22,-7],[36,-1],[47,10],[24,-3],[22,-8],[3,-2],[17,-9],[14,-14],[9,-23],[1,-29],[-15,-45],[-13,-20],[-13,-20],[-65,-82],[-26,-14],[-10,-10],[-6,-17],[-37,-70],[-2,-5],[-25,-62],[-10,-23],[-18,-38],[-54,-73],[-82,-110],[-25,-50],[-17,-57],[-8,-53],[1,-46],[3,-56],[8,-64],[26,-109],[8,-19],[11,-17],[9,-56],[13,-54],[33,-92],[6,-97],[8,-51],[27,-91],[48,-113],[15,-84],[20,-53],[30,-37],[51,-51],[10,-20],[1,-1],[7,-38],[12,-21],[36,-39],[22,-14],[21,-17],[18,-23],[13,-24],[1,-15],[-5,-14],[-31,-32],[-28,-18],[-29,-13],[-41,-8],[-35,-18],[-27,-28],[-19,-36],[-3,-19],[-1,-17],[1,-2],[4,-14],[11,-13],[62,-40],[16,-12],[14,-20],[11,-24],[6,-46],[-2,-31],[-9,-53],[1,-46],[4,-38],[2,-17],[48,-123],[5,-31],[1,-7],[-1,-40],[-2,-5],[-4,-8],[-9,-9],[-33,-5],[-45,6],[-18,8],[-15,12],[-13,15],[-21,33],[-9,23],[0,24],[16,47],[9,19],[2,16],[-2,15],[-9,25],[-16,28],[-23,30],[-11,7],[-12,2],[-13,-4],[-11,-8],[-27,-37],[-48,-80],[-12,-78],[2,-57],[4,-52],[10,-56],[5,-69],[-2,-50],[-6,-54],[1,-26],[6,-24],[17,-46],[12,-20],[22,-27],[10,-20],[9,-34],[0,-37],[-42,-126],[-6,-34],[-1,-30],[10,-94],[7,-24],[17,-41],[21,-33],[18,-35],[24,-12],[26,-8],[29,-20],[28,-36],[6,-14],[5,-25],[9,-18],[15,-12],[32,-16],[22,-1],[41,26],[45,17],[39,-8],[43,-16],[24,-13],[23,-17],[20,-21],[26,-41],[4,-17],[-1,-19],[-8,-17],[-17,-14],[-22,-2],[-12,7],[-7,11],[-18,16],[-27,18],[-37,14],[-26,1],[-23,-7],[-15,-17],[-5,-20],[5,-34],[12,-19],[6,-6],[77,-72],[8,-8],[20,-22],[33,-40],[15,-16],[16,-16],[42,-36],[64,-44],[127,-79],[23,-22],[17,-28],[8,-21],[6,-28],[7,-82],[16,-106],[26,-46],[25,-52],[194,-488],[13,-41],[7,-31],[26,-243],[-2,-15],[-6,-12],[-8,-9],[-59,-24],[-28,-17],[-25,-21],[-14,-17],[-13,-16],[-10,-19],[-8,-23],[-2,-24],[-6,-77],[7,-19],[12,-9],[16,-1],[34,17],[21,6],[27,0],[27,-9],[15,-12],[5,-17],[-4,-20],[-1,-1],[-13,14],[-15,-20],[-17,-20],[-8,-15],[-3,-5],[-8,-23],[-4,-32],[5,-61],[-2,-33],[14,-3],[0,-9],[-10,-12],[-10,-1],[-39,-19],[-32,-6],[-18,-11],[-12,-14],[-9,-18],[-1,-30],[5,-24],[11,-23],[14,-14],[16,-7],[25,-1],[23,8],[16,14],[21,30],[19,-3],[18,-11],[12,-16],[8,-16],[2,-13],[1,-4],[-1,-20],[-10,-26],[-25,-26],[-14,-27],[-13,-52],[3,-58],[10,-25],[20,-16],[15,-3],[46,-22],[73,-26],[22,-13],[24,-19],[8,-5],[33,-33],[44,-65],[57,-64],[15,-28],[7,-31],[-5,-26],[-35,-49],[-54,-54],[-13,-22],[-8,-21],[-5,-24],[4,-15],[13,-19],[18,-10],[67,-1],[37,10],[36,3],[134,-4],[26,-8],[25,-13],[14,-11],[11,-16],[8,-17],[3,-18],[-3,-55],[-10,-47],[-17,-44],[-18,-22],[-36,-28],[-43,-25],[-30,-27],[-9,-11],[-15,-19],[-7,-19],[-3,-16],[-1,-38],[6,-17],[8,-14],[91,-65],[111,-59],[87,-55],[18,-17],[19,-18],[6,-8],[4,-54],[-2,-21],[26,-70],[43,-150],[5,-31],[3,-31],[-4,-39],[-9,-33],[-11,-18],[-30,-32],[-20,-28],[-18,-37],[-11,-36],[-4,-22],[0,-26],[21,-107],[11,-28],[17,-26],[16,-17],[25,-21],[9,-7],[20,-10],[7,-3],[14,-4],[21,-1],[42,7],[20,6],[5,3],[12,8],[16,13],[12,14],[9,18],[8,21],[3,19],[0,23],[-5,24],[-33,96],[-40,95],[-5,24],[-2,25],[4,24],[8,23],[14,22],[16,17],[17,12],[19,4],[17,-2],[61,-20],[15,-14],[15,-28],[7,-25],[-4,-27],[-47,-74],[-8,-20],[-1,-39],[8,-37],[8,-17],[71,-59],[8,-12],[6,-14],[2,-20],[-4,-19],[-50,-86],[-4,-14],[1,-17],[30,-77],[22,-39],[22,-33],[15,-34],[17,-84],[8,-82],[8,-43],[32,-124],[36,-111],[19,-45],[7,-47],[-2,-42],[-14,-37],[-22,-18],[-25,-15],[-26,-10],[-70,-19],[-70,-39],[-29,-26],[-14,-20],[-3,-11],[3,-14],[21,-25],[26,-13],[30,-1],[34,13],[26,4],[29,-4],[24,-11],[8,-14],[9,-15],[9,-33],[7,-64],[1,-48],[-5,-72],[3,-101],[-15,-92],[-10,-25],[-21,-40],[-9,-38],[-3,-53],[1,-31],[7,-21],[12,-23],[24,-30],[5,-3],[14,-12],[24,-15],[29,-3],[27,2],[31,8],[31,15],[13,9],[42,38],[40,26],[28,9],[35,2],[22,-7],[30,-23],[10,-14],[7,-14],[0,-65],[8,-20],[15,-27],[45,-54],[52,-46],[75,-55],[102,-66],[9,-36],[138,-86],[45,-23],[45,-17],[45,-10],[63,-8],[28,-9],[39,-20],[32,-28],[24,-30],[16,-34],[6,-23],[16,-91],[7,-9],[38,-35],[9,-16],[2,-14],[-11,-77],[2,-24],[4,-19],[33,-86],[61,-273],[-1,-16],[-4,-17],[-17,-26],[-5,-14],[-1,-16],[5,-18],[9,-12],[12,-5],[10,1],[43,17],[30,-1],[26,-8],[17,-23],[-20,-58],[1,0],[7,-17],[1,-12],[-4,-20],[-14,-22],[-6,-13],[0,-20],[4,-16],[17,-25],[39,-4],[22,-13],[29,-44],[12,-35],[6,-46],[-5,-32],[-8,-17],[-11,-15],[-47,-45],[-24,-29],[-3,-23],[4,-11],[6,-10],[37,-20],[8,-10],[3,-13],[4,-65],[-2,-45],[-12,-64],[-16,-43],[0,-13],[3,-13],[8,-13],[12,-8],[31,-7],[74,-76],[23,-30],[16,-36],[0,-15],[-7,-15],[-19,-17],[-28,-14],[-12,-10],[-12,-16],[-5,-20],[3,-62],[2,-73],[-7,-38],[-20,-44],[-1,-37],[6,-18],[10,-14],[22,-20],[15,-2],[9,5],[9,10],[13,28],[4,23],[5,62],[-3,13],[7,13],[23,6],[21,-5],[11,-10],[31,-41],[28,-46],[-1,-18],[6,-23],[1,-24],[-6,-25],[-10,-24],[-11,-12],[-43,-40],[-10,-16],[-6,-20],[-1,-21],[6,-73],[18,-80],[27,-68],[17,-18],[22,-6],[51,9],[19,7],[23,-1],[17,-6],[13,-12],[9,-14],[5,-16],[2,-17],[-3,-17],[-16,-35],[-5,-17],[0,-20],[3,-14],[10,-23],[28,-43],[8,-7],[9,-8],[24,-11],[12,-11],[7,-15],[2,-18],[-3,-13],[-7,-8],[-48,-25],[-38,-32],[-5,-18],[2,-19],[9,-16],[15,-10],[46,-5],[32,-14],[15,-12],[45,-48],[51,-42],[6,-13],[4,-14],[7,-49],[-1,-36],[6,-26],[5,-13],[41,-76],[18,-25],[-2,-10],[6,-12],[2,-13],[-3,-13],[-12,-20],[-9,-5],[-17,1],[-35,22],[-18,19],[-3,2],[-20,16],[-39,19],[-14,0],[-14,-8],[-9,-13],[-1,-1],[-8,-19],[-1,-4],[-2,-14],[2,-19],[16,-39],[16,-19],[19,-13],[26,-29],[14,-16],[33,-24],[4,-3],[32,-32],[13,-17],[19,-44],[3,-15],[-1,-21],[-10,-17],[-14,-12],[-17,-2],[-4,1],[-70,89],[-12,3],[-4,-1],[-23,-6],[-11,-8],[-7,-11],[-6,-13],[-21,-95],[-1,-18],[4,-20],[7,-16],[32,-16],[46,-14],[19,-11],[19,-16],[16,-17],[9,-16],[12,-43],[-1,-14],[-4,-14],[-17,-30],[-14,-17],[-14,-9],[-18,-6],[-20,-2],[-45,-4],[-9,-4],[-19,-18],[-9,-27],[3,-89],[1,-44],[-4,-70],[-9,-72],[0,-29],[10,-48],[9,-16],[27,-28],[40,-31],[11,-13],[8,-25],[-2,-26],[-11,-28],[-16,-17],[-12,-26],[1,-13],[15,-29],[7,-8],[11,-4],[11,3],[54,-18],[24,-24],[21,-60],[13,-51],[8,1],[4,-16],[11,-40],[12,-88],[-2,-32],[-6,-29],[-17,-32],[-14,-17],[-20,-13],[-18,-5],[-70,0],[-38,0],[-47,-11],[-18,-5],[-14,-10],[-1,-1],[-7,-10],[-4,-15],[1,-57],[11,-16],[36,-22],[37,-10],[20,0],[15,4],[13,8],[12,12],[44,22],[29,26],[39,25],[15,0],[33,-18],[8,-10],[6,-15],[0,-17],[-4,-15],[-9,-14],[-18,-11],[-59,-12],[-17,-13],[-10,-17],[-5,-17],[0,-15],[7,-50],[10,-35],[1,-13],[-6,-16],[-9,-9],[-138,-206],[-21,-19],[-26,-9],[-23,0],[-29,12],[-20,24],[-1,1],[-26,16],[-5,8],[-26,74],[-9,13],[-12,11],[-22,8],[-31,0],[-20,-20],[-9,-23],[-24,-48],[-13,-41],[-6,-24],[2,-27],[-3,-22],[6,-14],[9,-8],[41,-7],[29,-9],[27,-17],[13,-18],[6,-24],[-1,-4],[-3,-20],[-9,-22],[-19,-19],[-14,-22],[-8,-25],[-2,-23],[4,-24],[14,-28],[7,-5],[28,-6],[17,2],[14,8],[37,39],[18,11],[14,2],[13,-2],[10,-7],[6,-11],[2,-26],[-5,-24],[-78,-101],[-12,-20],[-19,-47],[-7,-45],[2,-21],[12,-47],[24,-55],[21,-30],[31,-19],[20,-17],[13,-18],[3,-15],[-2,-11],[-6,-11],[-22,-24],[-34,-16],[-49,-17],[-13,-11],[-16,-23],[-12,-5],[-95,-4],[-12,-4],[-12,-7],[-9,-11],[-7,-14],[-2,-14],[4,-55],[15,-46],[30,-43],[37,-33],[28,-33],[22,-34],[19,-39],[3,-34],[-2,-11],[-2,-23],[-11,-30],[-15,-27],[-22,-26],[-16,-12],[-21,-7],[-24,0],[-28,12],[-15,15],[-64,48],[-14,6],[-17,2],[-16,-4],[-42,-19],[-21,-16],[-11,-13],[-6,-7],[-23,-47],[-7,-23],[-3,-21],[1,-4],[2,-31],[13,-53],[7,-42],[0,-42],[-2,-51],[-10,-20],[-38,-33],[-27,-37],[-6,-13],[-20,-63],[-5,-34],[22,-240],[-5,-33],[-8,-24],[-6,-20],[-5,-14],[-1,-17],[42,-120],[29,-84],[1,-24],[-5,-16],[-8,-12],[-46,-37],[-36,-45],[-4,-11],[0,-12],[-21,-69],[-22,-93],[-15,-34],[-14,-19],[-16,-15],[-49,-23],[-8,-13],[-3,-5],[-2,-13],[4,-31],[-3,-24],[-6,-24],[-14,-33],[-5,-24],[5,-59],[-4,-39],[-2,-8],[-37,-40],[-12,-29],[3,-23],[13,-20],[6,-14],[2,-14],[-1,-13],[-73,-108],[-45,-62],[-6,-15],[0,-19],[7,-17],[38,-8],[37,-15],[5,-7],[0,-9],[-20,-22],[-31,-20],[-14,-14],[-9,-22],[-10,-50],[-28,-47],[-9,-8],[-10,-3],[-9,0],[-42,4],[-44,-8],[-11,-7],[-8,-10],[-9,-18],[-4,-14],[0,-18],[3,-16],[8,-13],[9,-8],[30,0],[15,4],[45,9],[25,-7],[13,-16],[5,-32],[-5,-20],[-16,-17],[-29,-41],[-34,-47],[3,-21],[10,-18],[20,-16],[22,-10],[31,-4],[12,-6],[11,-17],[2,-18],[-16,-57],[-7,-41],[-16,-38],[-13,-19],[-16,-17],[-21,-16],[-26,-12],[-10,-15],[-2,-12],[26,-66],[17,-12],[15,-1],[34,-10],[32,-4],[30,1],[27,4],[19,7],[19,11],[19,15],[17,8],[34,6],[15,-2],[10,-4],[9,-10],[6,-12],[0,-18],[-3,-16],[-7,-14],[-10,-12],[-32,-96],[-15,-25],[-15,-20],[-24,-21],[-11,-5],[-14,1],[-12,10],[-30,38],[-7,22],[-1,1],[-12,21],[-14,15],[-16,10],[-25,11],[-20,-3],[-3,-2],[-9,-9],[-4,-4],[-6,-21],[-2,-31],[4,-34],[23,-99],[19,-80],[3,-28],[-5,-21],[-15,-36],[-35,-57],[-5,-9],[-2,-2],[-16,-37],[-7,-22],[-6,-22],[-4,-20],[0,-13],[9,-21],[12,-13],[23,-8],[15,-1],[13,5],[12,10],[7,13],[5,18],[11,15],[15,7],[15,0],[12,-9],[9,-20],[4,-23],[-2,-52],[7,-27],[73,-129],[7,-34],[-3,-30],[-6,-12],[-7,-10],[-10,-7],[-2,-2],[-56,-44],[-68,-52],[-22,-23],[-23,-28],[-21,-35],[-16,-40],[-8,-53],[3,-36],[42,-73],[15,-7],[18,2],[33,23],[3,2],[59,67],[25,33],[33,67],[8,13],[17,11],[30,7],[21,-5],[15,-19],[8,-46],[4,-56],[-3,-68],[-7,-27],[-12,-24],[-9,-31],[-8,-49],[-2,-32],[43,-173],[10,-28],[0,-69],[7,-63],[3,-66],[8,-62],[12,-57],[2,-38],[26,-63],[16,-65],[5,-65],[-11,-158],[-85,-391],[-5,-36],[-7,-23],[-17,-31],[-18,-18],[-23,-12],[-30,0],[-29,-11],[-23,-17],[-12,-24],[1,-13],[0,-40],[1,-12],[7,-17],[15,-22],[9,-12],[13,-27],[8,-31],[4,-42],[-1,-13],[-2,-19],[-29,-82],[-5,-32],[-6,-49],[-3,-18],[4,-45],[-2,-44],[-12,-83],[-8,-94],[-1,-7],[6,-27],[0,-3],[9,-14],[17,-17],[136,-147],[23,-42],[12,-41],[2,-13],[-3,-13],[-6,-12],[-7,-7],[-26,-17],[-8,-12],[-5,-14],[-1,-11],[3,-9],[27,-39],[4,-12],[0,-18],[-2,-12],[-11,-20],[-8,-21],[-3,-25],[2,-25],[-14,-35],[-5,-25],[-2,-15],[-32,-62],[-3,-21],[2,-24],[-3,-11],[-8,-12],[-11,-7],[-39,-28],[-35,-14],[-19,-4],[-19,-4],[-21,-12],[-12,-12],[-10,-17],[3,-17],[8,-15],[16,-12],[26,-7],[123,2],[16,-6],[5,-5],[13,-14],[8,-31],[-3,-30],[-6,-9],[-52,-33],[-28,-24],[-40,-44],[-30,-38],[-22,-36],[-21,-39],[-4,-13],[-1,-24],[-12,-14],[-8,-19],[-15,-51],[-3,-27],[-1,-11],[2,-11],[5,-7],[31,-10],[29,-14],[26,-19],[1,-1],[7,-14],[2,-33],[-6,-25],[-9,-19],[-9,-11],[-18,-20],[-18,-30],[-13,-38],[-4,-32],[3,-38],[13,-30],[22,-24],[26,-11],[31,-8],[0,0],[25,-19],[18,-29],[6,-30],[-2,-23],[-27,-36],[-4,-5],[-25,-41],[-21,-46],[-10,-34],[-3,-32],[3,-83],[11,-129],[10,-23],[16,-17],[13,-7],[61,-20],[16,-10],[14,-14],[18,-24],[7,-17],[5,-8],[8,-28],[2,-23],[1,-9],[-2,-26],[-11,-20],[-20,-10],[-21,0],[-15,5],[-12,11],[-71,75],[-25,10],[-18,-6],[-24,-34],[-6,-9],[-18,-35],[-13,-28],[-19,-25],[-20,-17],[-42,-22],[-5,-3],[-10,-1],[-22,-2],[-11,-11],[-5,-14],[1,-21],[11,-21],[18,-14],[25,-8],[7,-2],[23,-15],[20,-23],[13,-32],[12,-83],[17,-82],[20,-74],[20,-48],[2,-9],[-7,-30],[-6,-9],[-8,-6],[-22,-1],[-14,8],[-33,18],[-24,6],[-41,1],[-18,-5],[-15,-11],[-10,-16],[-8,-27],[0,-29],[4,-24],[28,-50],[40,-46],[80,-49],[12,-14],[4,-12],[2,-13],[-2,-24],[-1,-13],[-8,-33],[1,-15],[51,-91],[29,-44],[11,-18],[10,-25],[5,-34],[-5,-56],[-21,-34],[-36,-42],[-17,-26],[-20,-46],[-5,-37],[-8,-31],[-19,-43],[-43,-45],[-51,-18],[-4,-3],[-12,-8],[-14,-15],[-107,-174],[-54,-111],[-31,-43],[-9,-22],[-4,-24],[-17,-33],[-123,-230],[-36,-46],[-38,-26],[-28,-31],[0,-1],[-8,-10],[-9,-27],[0,-1],[-12,-40],[-14,-89],[-8,-45],[-15,-62],[-7,-59],[1,-3],[3,-54],[12,-57],[7,-20],[11,-18],[46,-49],[16,-36],[5,-22],[-1,-32],[2,-26],[14,-43],[15,-23],[65,-79],[6,-12],[2,-13],[-5,-22],[-17,-15],[-16,-2],[-21,5],[-20,0],[-21,-7],[-17,-12],[-11,-41],[5,-20],[18,-34],[1,-15],[-3,-15],[-3,-5],[-5,-10],[-10,-8],[-18,0],[-26,-1],[-27,-6],[-32,-15],[-13,-11],[-9,-14],[-5,-19],[8,-31],[-5,-34],[-18,-42],[-51,-69],[-8,-17],[-4,-28],[7,-37],[-1,-23],[-7,-22],[-13,-21],[-21,-21],[-23,-15],[-30,-12],[-8,-1],[0,0],[-22,-2],[-4,-5],[1,-7],[-25,-16],[-23,-10],[-2,0],[-29,-6],[-16,-8],[-38,-41],[-19,-25],[-12,-23],[-2,-3],[-18,-47],[-7,-27],[0,-21],[4,-21],[18,-43],[15,-18],[17,-14],[37,-20],[13,-2],[27,-18],[13,-9],[8,-9],[6,-13],[2,-17],[-3,-17],[-9,-13],[-20,-31],[-12,-40],[0,-29],[8,-28],[3,-19],[1,-12],[0,-24],[-4,-25],[-7,-12],[-9,-7],[-14,-3],[-15,2],[-17,12],[-23,42],[-27,27],[-16,10],[-13,3],[-14,-1],[-15,-7],[-13,-9],[-10,-13],[-7,-15],[-3,-15],[5,-14],[26,-18],[15,-25],[2,-7],[-1,-1],[-5,-12],[-4,-15],[7,-35],[-4,-8],[-7,-3],[-6,2],[-4,5],[-13,3],[-27,-4],[-20,-13],[-10,-17],[-6,-28],[3,-26],[12,-26],[88,-72],[7,-8],[1,-1],[4,-5],[8,-18],[16,-50],[4,-18],[0,0],[5,-23],[6,-121],[6,-56],[0,-1],[0,-34],[-4,-27],[-23,-46],[-14,-19],[-71,-96],[-24,-27],[-17,-30],[-55,-135],[-14,-24],[-19,-21],[-52,-18],[-19,-10],[-23,-19],[-17,-23],[-27,-53],[-14,-39],[-3,-15],[-5,-24],[-7,-66],[-13,-49],[-17,-42],[-22,-29],[-13,-5],[-13,1],[-13,6],[-10,11],[-12,27],[-4,48],[-8,14],[-10,9],[-15,6],[-21,-1],[-15,-5],[-12,-10],[-2,-2],[-12,-19],[-8,-39],[-21,-142],[-5,-21],[0,-1],[-17,-69],[-38,-72],[-52,-75],[-78,-97],[-51,-50],[-25,-15],[-64,-29],[-83,-24],[-75,-11],[-16,-5],[-33,-26],[-32,-31],[-29,-40],[-8,-20],[-2,-60],[0,-47],[8,-59],[20,-79],[0,-19],[3,-17],[16,-26],[12,-11],[10,-4],[11,-1],[11,5],[9,8],[5,11],[7,35],[0,72],[11,30],[19,28],[22,12],[25,-1],[31,-18],[22,-24],[6,-13],[6,-12],[30,-106],[13,-43],[3,-23],[-1,-38],[7,-66],[9,-56],[13,-65],[15,-45],[25,-45],[19,-25],[6,-7],[1,-2],[31,-33],[26,-17],[33,-13],[9,-10],[7,-16],[-3,-66],[3,-40],[8,-47],[12,-40],[1,-18],[-29,-174],[4,-20],[14,-13],[40,-8],[11,0],[17,-1],[31,6],[16,-2],[23,-13],[10,-17],[1,-13],[-5,-44],[-19,-70],[-20,-56],[-4,-11],[-32,-68],[-14,-20],[-18,-13],[-22,-8],[-44,-9],[-30,-16],[-22,-21],[-4,-11],[-1,-13],[6,-18],[16,-25],[20,-20],[29,-17],[12,-16],[10,-20],[12,-45],[2,-35],[-2,-12],[-23,-117],[-3,-31],[1,-21],[10,-25],[30,-39],[41,-53],[27,-44],[19,-55],[2,-23],[-1,-24],[-1,-17],[-2,-29],[-8,-15],[-13,-12],[-10,-5],[-31,-7],[-1,-1],[-20,-4],[-41,-16],[-26,-12],[-54,-36],[-39,-17],[-26,-6],[-5,-4],[-17,-13],[-10,-12],[-9,-38],[-4,-34],[1,-36],[-4,-18],[-10,-16],[0,-1],[-12,-18],[-29,-26],[-11,-4],[-11,-5],[-20,1],[-117,65],[-18,6],[-18,2],[-24,-4],[-71,-27],[-26,-20],[-11,-14],[-6,-11],[-2,-14],[1,-9],[5,-7],[19,-7],[12,2],[36,25],[14,3],[16,1],[21,-7],[16,-10],[15,-15],[12,-18],[7,-20],[1,-29],[-26,-142],[-11,-17],[-10,-8],[-12,-3],[-13,2],[-11,6],[-14,21],[-8,39],[-8,28],[-25,39],[-8,9],[-12,6],[-45,6],[-30,-6],[-26,-14],[-27,-2],[-26,-6],[-47,-22],[-41,-35],[-62,-81],[-18,-27],[-16,-48],[9,-71],[3,-6],[3,-8],[11,-9],[31,-8],[27,-1],[26,4],[26,8],[22,13],[25,28],[18,46],[15,23],[19,21],[20,14],[15,5],[13,-3],[9,-9],[11,-19],[5,-18],[1,-17],[-8,-60],[-1,-53],[-4,-18],[-9,-18],[-17,-15],[-2,-1],[-1,0],[-18,-6],[-61,7],[-53,-7],[-52,-21],[-25,-22],[-15,-32],[-13,-61],[10,-28],[7,-6],[1,0],[0,-1],[16,-13],[30,-15],[50,-14],[29,-20],[15,-20],[10,-23],[4,-20],[-2,-20],[-10,-19],[-17,-13],[-18,-3],[0,0],[-57,-10],[-43,-17],[-24,-18],[-17,-25],[-6,-21],[-1,-32],[2,-15],[12,-50],[2,-47],[-16,-90],[-11,-31],[-6,-31],[-4,-40],[2,-31],[7,-21],[15,-21],[10,-15],[20,-20],[21,-15],[26,1],[28,2],[66,20],[19,-1],[18,-7],[24,-19],[11,-15],[7,-19],[1,-23],[-4,-16],[-11,-21],[-15,-18],[-17,-13],[-10,-4],[-3,-1],[-6,-1],[-12,-3],[-87,-21],[-33,-12],[-16,-6],[-52,-27],[-19,-15],[-17,-19],[-38,-65],[-10,-29],[-6,-29],[-1,-12],[-3,-41],[2,-23],[5,-19],[4,-12],[31,-66],[11,-39],[18,-133],[11,-54],[18,-59],[36,-90],[18,-55],[45,-198],[33,-128],[17,-56],[12,-62],[3,-5],[1,-5],[9,-8],[15,-30],[3,-4],[66,-99],[8,-30],[-4,-45],[4,-34],[11,-34],[47,-20],[19,-12],[25,-22],[3,-4],[3,-6],[4,-8],[2,-21],[-4,-44],[4,-33],[10,-25],[23,-38],[17,-36],[8,-21],[14,-58],[-17,-50],[-14,-18],[-11,-14],[-18,-31],[-4,-12],[1,-11],[14,-34],[1,-1],[18,-27],[92,-78],[12,-18],[4,-14],[1,-17],[-19,-74],[-1,-3],[-1,-20],[2,-20],[7,-20],[10,-17],[45,-50],[3,-8],[17,-43],[19,-24],[75,-73],[17,-11],[7,-13],[0,-23],[-18,-37],[-3,-29],[-4,-18],[-9,-40],[10,-44],[17,-22],[19,-10],[13,-7],[36,-10],[31,-26],[25,-35],[7,-20],[1,-12],[1,-10],[-4,-32],[-7,-11],[-10,-10],[-14,-5],[-40,-6],[-22,-3],[-25,-11],[-8,-10],[-18,-38],[-12,-76],[-23,-70],[-4,-5],[-1,-13],[-5,-5],[-7,4],[-11,-2],[-17,-12],[-8,-15],[0,-22],[-7,-11],[-4,-14],[1,-20],[7,-18],[27,-17],[25,-2],[7,0],[31,-11],[35,-27],[9,-16],[2,-15],[-4,-15],[-11,-14],[-10,-16],[-43,-69],[-17,-42],[-7,-33],[5,-35],[7,-22],[9,-14],[6,-9],[21,-17],[7,-10],[7,-40],[34,-58],[4,-12],[4,-13],[5,-27],[-1,-2],[-4,-21],[-8,-19],[-12,-14],[-6,-5],[-16,-13],[-24,-11],[-23,-5],[-53,1],[-14,-16],[-2,-17],[4,-9],[24,-35],[3,-21],[-24,-58],[-46,-72],[-17,-39],[-8,-33],[0,-1],[-3,-32],[0,-51],[4,-15],[6,-9],[9,-5],[11,-1],[10,4],[95,95],[34,4],[35,-6],[12,-10],[4,-14],[-11,-37],[-10,-26],[-35,-53],[-24,-38],[-51,-94],[-19,-41],[-1,-19],[10,-35],[14,-20],[16,-8],[18,-2],[21,-6],[15,-5],[8,-9],[4,-9],[-1,-11],[-6,-26],[-10,-17],[-14,-13],[-27,-3],[-16,-2],[-36,-16],[-29,-22],[-25,-32],[-16,-10],[-34,-5],[-38,3],[-20,-3],[-34,-12],[-11,-4],[-45,-24],[-18,-20],[-6,-21],[4,-17],[7,-13],[9,-10],[15,-6],[3,-7],[2,-22],[-7,-21],[-3,-6],[-25,-10],[-72,-23],[-34,-21],[-18,-19],[-19,-25],[-7,-14],[-2,-17],[11,-52],[11,-34],[5,-12],[16,-13],[2,-5],[0,0],[5,-9],[1,-21],[-4,-10],[-8,-3],[-8,1],[-25,10],[-1,1],[-16,7],[-51,14],[-60,7],[-23,6],[-22,1],[-29,-6],[-29,-14],[-16,-16],[-11,-24],[-2,-25],[6,-23],[25,-45],[20,-21],[0,0],[10,-10],[22,-13],[59,-3],[59,-17],[28,-15],[15,-12],[22,-31],[7,-19],[0,-22],[-10,-27],[-3,-8],[-5,-4],[-13,-9],[-19,-9],[-52,-5],[-26,4],[-18,-6],[-25,-18],[-11,0],[-11,4],[-8,7],[-6,11],[0,32],[-4,24],[-7,24],[-11,22],[-14,20],[-28,28],[-9,6],[-12,3],[-18,-2],[-17,-7],[-13,-12],[-11,-19],[-5,-16],[-1,-21],[10,-48],[0,-19],[-7,-19],[-12,-13],[-23,-5],[-35,9],[-26,16],[-27,28],[-11,4],[-28,-4],[-17,-7],[-16,-14],[-12,-20],[-14,-69],[-3,-51],[-2,-24],[-11,-63],[-5,-14],[-11,-12],[-16,-8],[-62,-34],[-100,-80],[-25,-12],[-24,-6],[-4,0],[-28,0],[-26,2],[-26,-1],[-27,-3],[-21,-2],[-5,-1],[-24,-10],[-12,-6],[-16,-10],[-11,-7],[-18,-5],[-12,-4],[-39,-8],[-30,-9],[-21,-3],[-26,-7],[-13,-4],[-11,-9],[-14,-12],[-11,-14],[-20,-33],[-27,-33],[-7,-7],[-11,-8],[-17,-15],[-61,-41],[-13,-13],[-7,-6],[-25,-21],[-23,-14],[-4,-2],[-8,-3],[-22,-4],[-9,-1],[-17,2],[-26,3],[-44,5],[-13,-2],[-13,-4],[-12,-5],[-8,-5],[-7,-7],[0,0],[-3,-3],[-9,-17],[-4,-14],[-5,-20],[-3,-29],[-1,-5],[-2,-5],[-5,-8],[-6,-8],[-6,-6],[-4,-3],[-25,-8],[-4,-1],[-10,-1],[-11,8],[-32,26],[-10,10],[-7,6],[-6,7],[-23,30],[-19,21],[-7,7],[-15,10],[-25,19],[-16,9],[-21,8],[-4,1],[-9,1],[-26,-7],[-8,-3],[-21,-9],[-8,-2],[-26,-3],[-5,1],[-29,11],[-24,12],[-19,12],[-14,12],[-19,13],[-5,1],[-8,2],[-9,2],[-4,-1],[-9,-1],[-4,-2],[-7,-6],[-6,-7],[-8,-12],[-6,-13],[-2,-5],[0,-5],[2,-15],[1,-15],[9,-79],[1,-20],[-3,-35],[-1,-5],[-6,-13],[-12,-22],[-5,-8],[-3,-3],[-7,-6],[-38,-14],[-21,-4],[-27,-1],[-13,3],[-13,3],[-41,16],[-21,6],[-27,4],[-8,-1],[-22,-4],[-8,-3],[-8,-5],[-12,-15],[-5,-8],[-10,-22],[-7,-23],[-2,-10],[1,-5],[2,-15],[5,-19],[3,-10],[20,-33],[25,-46],[6,-14],[15,-53],[1,-4],[0,-5],[-5,-35],[-1,-5],[-10,-19],[-8,-3],[-8,-3],[-8,-4],[-7,-7],[-6,-7],[-10,-17],[-6,-6],[-4,-3],[-13,-5],[-26,-5],[-27,-10],[-9,3],[-11,7],[-7,6],[-4,3],[-11,15],[-2,20],[-2,10],[-2,5],[-13,31],[-14,37],[-16,24],[-20,27],[-7,12],[-18,40],[-35,87],[-13,26],[-13,20],[-9,17],[-6,8],[-31,41],[-24,30],[-12,14],[-11,9],[-48,35],[-29,22],[-14,12],[-16,18],[-17,16],[-25,28],[-29,38],[-14,12],[-27,24],[-36,29],[-24,14],[-35,20],[-21,8],[-60,18],[-26,4],[-22,0],[-4,-1],[-6,-7],[-4,-3],[-3,-3],[-19,-12],[-75,-31],[-67,-24],[-17,-2],[-17,-5],[-17,-7],[-11,-7],[-17,-6],[-12,-5],[-41,-20],[-33,-12],[-77,-38],[-11,-8],[-23,-22],[-8,-6],[-7,-5],[-16,-6],[-28,-14],[-25,-12],[-62,-23],[-50,-21],[-27,-16],[-28,-15],[-7,-5],[-6,-6],[-9,0],[-64,-19],[-29,-6],[-1,0],[-22,-4],[-4,0],[-5,1],[-21,5],[-17,6],[-29,12],[-12,7],[-3,3],[-7,8],[-21,24],[-3,5],[-4,8],[-6,18],[-7,13],[-18,28],[-30,43],[-15,18],[-7,7],[-7,5],[-4,3],[-13,3],[-34,7],[-22,1],[-13,1],[-9,-1],[-17,-5],[-35,-3],[-18,0],[-8,0],[-13,0],[-62,6],[-39,2],[-31,3],[-9,1],[-17,1],[-26,3],[-31,4],[-66,3],[-21,2],[-44,4],[-21,8],[-12,6],[-48,37],[-3,2],[-37,16],[-17,7],[-21,5],[-5,0],[-13,3],[-29,8],[-13,3],[-9,0],[-13,-1],[-4,-1],[-16,-8],[-8,-5],[-13,-5],[-8,-2],[-22,-4],[-72,-20],[-17,-6],[-65,-12],[-13,-1],[-7,0],[-58,7],[-44,0],[-13,-1],[-74,-15],[-4,0],[-9,2],[-8,4],[-14,11],[-14,12],[-8,5],[-3,3],[-21,23],[-13,2],[-42,14],[-3,3],[-11,8],[-10,10],[-5,8],[-4,10],[-3,9],[-7,39],[-3,35],[-4,19],[-3,10],[-9,17],[-2,4],[-11,16],[-3,3],[-23,16],[-4,2],[-12,6],[-26,3],[-26,0],[-31,-4],[-13,2],[-13,2],[-4,2],[-2,1],[-2,1],[-14,12],[-9,11],[-4,9],[-3,10],[0,5],[0,10],[1,9],[2,10],[7,19],[3,19],[0,10],[-1,10],[-2,5],[-5,8],[-13,13],[-4,2],[-12,6],[-9,2],[-4,1],[-13,-4],[-12,-7],[-4,-2],[-13,-13],[-21,-26],[-7,-6],[-13,-20],[-16,-17],[-11,-9],[-20,-10],[-15,-9],[-16,-8],[-21,-7],[-20,-10],[-26,-20],[-11,-7],[-8,-2],[-7,5],[-18,15],[-3,4],[-10,16],[-2,10],[-1,15],[-1,10],[1,4],[5,9],[18,22],[10,10],[3,3],[32,16],[3,3],[10,10],[6,8],[2,4],[3,9],[4,25],[0,4],[-3,10],[-4,14],[-11,16],[-4,3],[-8,4],[-4,0],[-13,-2],[-13,-3],[-12,-6],[-7,-6],[-6,-7],[-17,-15],[-19,-21],[-7,-6],[-4,-2],[-17,-3],[-5,1],[-8,4],[-8,4],[-7,5],[-10,10],[-4,9],[-1,10],[1,10],[4,14],[14,37],[30,55],[4,14],[2,15],[0,5],[-1,20],[0,25],[1,4],[7,19],[8,18],[4,8],[3,4],[9,17],[3,15],[0,9],[-2,15],[-1,10],[-8,4],[-15,10],[-25,21],[-9,10],[-9,18],[-2,4],[-9,34],[-1,4],[-12,27],[-9,17],[-6,7],[-5,5],[-1,0],[-4,2],[-16,6],[-13,1],[-9,0],[-9,-2],[-26,-6],[-17,-3],[-9,0],[-4,0],[-9,1],[-30,5],[-21,7],[-28,13],[-8,6],[-16,17],[-8,11],[-9,18],[-3,9],[-7,39],[-1,5],[-7,13],[-3,3],[-7,5],[-13,3],[-5,0],[-13,-3],[-12,-5],[-4,-3],[-3,-3],[-6,-13],[-8,-24],[-8,-33],[-10,-23],[-2,-4],[-6,-7],[-12,-11],[-16,-13],[-11,-8],[-4,-3],[-26,-33],[-11,-16],[-9,-11],[-9,-11],[-9,-10],[-14,-12],[-8,-5],[-4,-2],[-21,-7],[-13,-2],[-9,-1],[-4,0],[-4,1],[-13,4],[-65,30],[-21,7],[-4,0],[-5,0],[-8,-2],[-21,-8],[-4,-2],[-4,-3],[-28,-31],[-14,-13],[-10,-9],[-11,-8],[-12,-5],[-9,-2],[-9,2],[-12,5],[-5,1],[-13,1],[-8,-3],[-4,-2],[-4,-3],[-12,-14],[-4,-9],[-2,-15],[0,-10],[0,-5],[2,-10],[7,-12],[11,-16],[10,-10],[12,-13],[3,-4],[20,-19],[3,-4],[5,-8],[1,-5],[0,-10],[-3,-9],[-4,-9],[-10,-10],[-11,-9],[-16,-8],[-5,-1],[-3,3],[-21,18],[-20,20],[-10,8],[-8,4],[-21,10],[-7,4],[-10,10],[-6,7],[-3,4],[-3,3],[-12,21],[-2,5],[-5,19],[-1,10],[3,44],[2,15],[9,33],[4,14],[3,20],[-2,35],[-3,9],[-9,11],[-13,4],[-8,-1],[-21,-7],[-4,-3],[-9,-10],[-12,-15],[-3,-4],[-5,-8],[-11,-22],[-5,-7],[-10,-10],[-8,-5],[-8,-5],[-13,-2],[-4,0],[-17,3],[-5,2],[-15,10],[-8,11],[-8,13],[-1,4],[-5,14],[0,8],[8,12],[9,11],[3,4],[1,5],[9,16],[3,9],[2,10],[1,9],[-1,5],[-2,15],[-7,13],[-6,10],[-12,8],[-8,0],[-10,-5],[-9,-14],[-13,-23],[-19,-11],[-30,-5],[-13,-1],[-13,2],[-17,3],[-9,2],[-33,14],[-37,13],[-9,2],[-13,2],[-6,0],[-17,-4],[-8,-4],[-30,-20],[-14,-12],[-17,-22],[-3,-5],[-4,-14],[-4,-24],[0,-5],[3,-20],[1,-10],[1,-39],[0,-5],[-2,-30],[-5,-34],[-3,-10],[-11,-48],[-7,-23],[-1,-5],[-5,-14],[-10,-22],[-6,-13],[-8,-12],[-17,-23],[-40,-47],[-8,-11],[-20,-26],[-16,-9],[-8,-4],[-6,-2],[-11,-4],[-4,0],[-4,2],[-23,15],[-32,33],[-4,3],[-37,15],[-9,2],[-17,2],[-13,-2],[-5,2],[-5,4],[-5,8],[-18,21],[-14,14],[-11,7],[-8,4],[-20,9],[-5,1],[-4,0],[-9,0],[-13,-2],[-34,-8],[-26,-5],[-8,1],[-13,5],[-4,3],[-11,7],[-21,19],[-11,14],[-5,9],[-4,9],[-1,5],[-2,34],[3,45],[0,5],[-2,10],[-3,14],[-5,14],[-2,4],[-11,8],[-4,2],[-9,3],[-8,2],[-5,0],[-9,-1],[-8,-3],[-7,-5],[-3,-4],[-6,-14],[-1,-4],[-16,-78],[-2,-5],[-6,-7],[-7,-6],[-8,-4],[-4,-1],[-9,-1],[-4,0],[-9,2],[-7,5],[-11,9],[-25,21],[-18,21],[-4,3],[-4,2],[-12,2],[-22,5],[-18,-1],[-13,-1],[-4,1],[-22,5],[-4,2],[-7,5],[-21,19],[-6,7],[-3,4],[-1,4],[-4,20],[0,25],[1,20],[4,30],[-1,20],[-1,4],[-3,15],[-4,9],[-11,27],[-10,16],[-12,15],[-23,15],[-25,11],[-8,2],[-22,1],[-13,-1],[-27,-3],[-12,-3],[-8,-5],[-12,-7],[-7,-5],[-11,-10],[-7,-5],[-20,-19],[-10,-10],[-17,-23],[-15,-24],[-3,-4],[-4,-3],[-22,-15],[-4,-3],[-4,-2],[-4,-1],[-22,-1],[-4,-1],[-8,-4],[-7,-13],[-3,-9],[-2,-20],[0,-5],[4,-9],[4,-8],[9,-12],[6,-10],[8,-2],[35,-7],[8,-3],[4,-2],[15,-12],[11,-8],[10,-8],[9,-12],[11,-21],[7,-19],[1,-4],[1,-5],[0,-5],[-2,-15],[-3,-15],[-2,-4],[-17,-23],[-4,-3],[-19,-12],[-4,-2],[-4,-1],[-9,-1],[-9,1],[-48,1],[-13,0],[-5,-1],[-12,-4],[-21,-9],[-4,-3],[-22,-17],[-20,-19],[-10,-16],[-6,-8],[-2,-4],[-5,-14],[-2,-4],[-3,-4],[-9,-17],[-13,-20],[-8,-18],[-10,-16],[-6,-7],[-8,-6],[-13,-13],[-8,-5],[-3,-3],[-19,-21],[-10,-9],[-8,-5],[-20,-11],[-19,-12],[-63,-22],[-37,-14],[-12,-6],[-8,-6],[-3,-3],[-5,-8],[-10,-11],[-13,-12],[-7,-6],[-23,-15],[-8,-5],[-10,-3],[-7,-7],[-18,-11],[-5,-3],[-20,-10],[-24,-13],[-16,-7],[-37,-15],[-6,-1],[-12,-1],[-30,-3],[-27,1],[-9,1],[-12,4],[-30,9],[-29,12],[-43,12],[-12,2],[-35,3],[-5,1],[-8,1],[-43,13],[-4,2],[-21,18],[-4,8],[-7,13],[-4,10],[-2,9],[0,10],[1,15],[5,14],[1,5],[2,10],[2,4],[8,12],[4,3],[19,11],[11,8],[9,11],[3,4],[10,22],[2,5],[-5,14],[-14,26],[-3,3],[-18,15],[-4,1],[-22,2],[-17,-2],[-5,0],[-8,-1],[-13,-3],[-4,0],[-5,2],[-34,21],[-27,18],[-23,14],[-20,11],[-20,8],[-42,15],[-4,1],[-27,-3],[-26,-2],[-12,-5],[-12,-6],[-16,-10],[-21,-17],[-9,-11],[-4,-3],[-11,-6],[-4,-3],[-9,-12],[-10,-16],[-7,-6],[-6,-7],[-7,-7],[-18,-21],[-6,-7],[-11,-9],[-14,-12],[-7,-6],[-4,-2],[-12,-6],[-21,-5],[-31,-1],[-9,-2],[-12,-6],[-19,-11],[-8,-4],[-9,-2],[-21,-6],[-13,-3],[-4,0],[-14,1],[-34,6],[-8,4],[-8,5],[-4,2],[-4,1],[-5,0],[-7,-4],[-8,-6],[-4,-19],[0,-5],[5,-8],[3,-9],[7,-13],[6,-13],[2,-5],[0,-5],[0,-10],[0,-15],[-2,-5],[-8,-17],[-3,-4],[-17,-23],[-4,-3],[-4,-2],[-8,-3],[-16,-10],[-4,-1],[-8,2],[-9,3],[-24,12],[-23,14],[-24,13],[-8,2],[-22,1],[-8,-4],[-8,-5],[-6,-7],[-4,-2],[-4,-2],[-5,-1],[-4,-1],[-4,-3],[-3,-3],[-14,-19],[-3,-14],[-2,-5],[-9,-17],[-7,-6],[-3,-3],[-21,-8],[-11,-2],[-12,5],[-8,5],[-3,3],[-7,7],[-24,28],[-11,9],[-4,2],[-8,3],[-9,0],[-8,-3],[-12,-7],[-3,-3],[-5,-9],[-5,-13],[-5,-20],[-2,-29],[-2,-30],[-5,-24],[-4,-10],[-4,-9],[-5,-8],[-3,-4],[-6,-7],[-10,-9],[-4,-2],[-17,-6],[-9,0],[-17,5],[-12,5],[-7,6],[-4,3],[-6,7],[-5,8],[-19,45],[-8,12],[-18,21],[-4,4],[-4,2],[-20,10],[-31,1],[-8,-2],[-21,-8],[-15,-9],[-15,-11],[-3,-3],[-11,-16],[-3,-3],[-4,-3],[-16,-8],[-23,-14],[-8,-4],[-13,-2],[-18,0],[-18,0],[-56,9],[-40,1],[-6,-2],[-21,-5],[-25,-9],[-8,-5],[-11,-7],[-10,-10],[-14,-20],[-4,-8],[-3,-4],[-17,-16],[-26,-18],[-4,-3],[-15,-9],[-4,-2],[-31,-6],[-22,-1],[-13,0],[-31,-2],[-26,0],[-8,-2],[-21,-7],[-4,-3],[-18,-15],[-4,-2],[-28,-14],[-8,-4],[-13,-3],[-4,0],[-13,1],[-27,4],[-13,3],[-29,9],[-17,4],[-5,0],[-22,-2],[-17,-3],[-9,-3],[-19,-27],[-2,-5],[1,-25],[1,-4],[4,-15],[5,-13],[7,-29],[1,-5],[0,-5],[-6,-24],[-6,-7],[-4,-4],[-11,-6],[-9,-4],[-3,-3],[-8,-3],[-5,-1],[-8,-1],[-31,-4],[-4,-1],[-31,1],[-26,-2],[-9,-2],[-20,-9],[-8,-4],[-27,-17],[-36,-17],[-37,-17],[-9,-1],[-22,-2],[-17,1],[-4,0],[-1,-1],[-27,-14],[-17,-16],[-3,-3],[-5,-14],[-3,-10],[1,-5],[2,-4],[5,-8],[14,-19],[3,-4],[2,-4],[2,-5],[-1,-5],[-2,-4],[-2,-4],[-5,-9],[-2,-4],[-16,-17],[-11,-14],[-13,13],[-3,4],[-5,8],[-12,22],[-13,19],[-6,7],[-4,3],[-25,9],[-4,2],[-26,20],[-6,6],[-2,4],[-1,1],[-4,13],[-3,50],[-3,25],[-3,9],[-2,4],[-9,17],[-6,8],[-4,3],[-8,4],[-8,1],[-5,0],[-4,-1],[-12,-4],[-8,-6],[-3,-3],[-6,-7],[-3,-4],[-6,-19],[0,-15],[0,-30],[-2,-15],[-2,-9],[-2,-5],[-3,-3],[-14,-13],[-4,-1],[-4,0],[-8,4],[-4,3],[-8,12],[-3,3],[-17,15],[-6,6],[-13,-4],[-4,-2],[-7,-6],[-4,-2],[-17,-6],[-12,-4],[-4,1],[-3,6],[-10,8],[-17,17],[-11,8],[-8,4],[-4,2],[-4,1],[-5,0],[-8,-2],[-9,-4],[-4,0],[-25,8],[-23,15],[-5,5],[0,10],[3,25],[1,10],[0,10],[-2,14],[-1,5],[-8,23],[-6,14],[-7,12],[-6,8],[-14,12],[-6,7],[-9,1],[-4,1],[-4,2],[-4,2],[-3,3],[-3,4],[-7,13],[-6,7],[-10,10],[-4,3],[-4,1],[-13,3],[-4,-1],[-7,-5],[-7,-6],[-7,-6],[-18,-22],[-4,-3],[-17,-5],[-13,-3],[-17,-2],[-4,0],[-5,0],[-4,-1],[-30,-10],[-8,-3],[-4,-2],[-3,-4],[-13,-20],[-13,-26],[-3,-4],[-3,-3],[-17,-15],[0,-1],[-4,-2],[-8,-5],[-21,-6],[-9,-1],[-13,0],[-4,0],[-5,2],[-16,8],[-10,9],[-10,10],[-5,9],[-9,11],[-16,17],[-13,31],[-9,17],[-3,4],[-3,3],[-4,3],[-9,2],[-13,2],[-21,3],[-13,5],[-12,5],[-8,6],[-3,3],[-17,23],[-2,4],[-5,8],[-6,12],[2,20],[0,10],[-3,15],[-10,27],[-1,5],[-2,5],[-8,11],[-4,3],[-10,16],[-7,7],[-11,8],[-3,3],[-16,24],[-9,18],[-4,14],[-7,23],[-2,10],[0,10],[1,5],[1,10],[3,24],[11,43],[1,20],[0,20],[-2,5],[-13,19],[-3,4],[-7,6],[-30,20],[-4,3],[-9,10],[-6,8],[-11,16],[-7,12],[-4,9],[-4,14],[-2,10],[-2,20],[0,10],[9,33],[7,18],[5,25],[1,10],[0,5],[-2,14],[-6,14],[-5,8],[-10,16],[-5,6],[-4,3],[-8,5],[-21,11],[-26,14],[-15,11],[-13,13],[-6,7],[-13,20],[-14,25],[-16,24],[-12,15],[-14,12],[-8,5],[-20,9],[-7,5],[-8,6],[-4,2],[-4,1],[-4,1],[-5,-1],[-8,-3],[-4,-3],[-7,-5],[-2,-4],[-5,-14],[-3,-4],[-4,-3],[-4,-2],[-4,-1],[-13,0],[-4,0],[-8,5],[-10,10],[-12,14],[-2,5],[-1,4],[-1,5],[-4,15],[-2,4],[-22,37],[-3,4],[-22,24],[-19,12],[-17,7],[-12,4],[-41,19],[-7,6],[-12,15],[-25,34],[-25,28],[-21,18],[-8,4],[-11,8],[-17,16],[-10,10],[-7,6],[-36,27],[-5,2],[-12,2],[-9,-1],[-4,-1],[-4,-2],[-20,-12],[-16,-6],[-26,-6],[-5,0],[-4,1],[-4,3],[-16,17],[-6,8],[-1,8],[-1,5],[1,4],[3,9],[5,9],[2,4],[4,3],[16,24],[2,4],[7,13],[0,1],[5,23],[-2,30],[-1,15],[-3,9],[-1,5],[-6,14],[-2,4],[-37,56],[-12,21],[-2,4],[-2,5],[-2,25],[0,10],[2,30],[1,5],[2,4],[11,22],[13,14],[4,2],[24,11],[9,3],[4,2],[10,9],[7,6],[10,10],[12,14],[2,5],[2,4],[8,29],[0,10],[-3,25],[-6,34],[-3,9],[-14,25],[-5,9],[-20,18],[-8,6],[-4,1],[-17,4],[-18,2],[-17,-2],[-22,-3],[-4,-1],[-4,-2],[-34,-23],[-24,-11],[-13,-5],[-4,-2],[-9,-1],[-30,2],[-13,4],[-8,4],[-12,7],[-7,5],[-31,28],[-6,7],[-16,24],[-11,22],[-9,33],[-5,30],[-2,24],[0,10],[1,10],[6,19],[8,69],[1,20],[1,25],[-7,49],[-11,33],[-3,4],[-8,12],[-11,21],[-5,14],[-11,38],[-3,9],[-5,9],[-8,17],[-11,17],[-3,9],[-4,24],[-1,20],[-6,29],[-1,5],[-2,25],[0,10],[2,5],[3,3],[3,10],[2,9],[0,10],[-2,10],[-2,4],[-3,10],[-1,4],[0,5],[-5,30],[-3,25],[-2,14],[-3,10],[-1,5],[-3,4],[-6,7],[-6,7],[-4,2],[-16,9],[-4,-1],[-4,-2],[-8,-5],[-3,-3],[-35,-21],[-8,-5],[-4,-2],[-8,-3],[-13,-3],[-13,-1],[-5,0],[-8,2],[-9,3],[-3,3],[-21,18],[-15,10],[-8,4],[-21,8],[-9,0],[-4,0],[-17,-5],[-5,-2],[-11,-8],[-6,-7],[-9,-17],[-6,-13],[-3,-10],[-4,-19],[-7,-18],[-9,-17],[-8,-12],[-12,-15],[-3,-3],[-22,-17],[-14,-11],[-17,-7],[-25,-8],[-8,-3],[-8,-5],[-8,-5],[-7,-6],[-6,-7],[-14,-19],[-9,-17],[-9,-23],[-3,-9],[-15,-57],[-6,-14],[-15,-30],[-3,-4],[-11,-7],[-18,-3],[-17,1],[-13,4],[-4,3],[-6,7],[-5,14],[-2,4],[-4,8],[-2,5],[-5,8],[-25,41],[-4,8],[-12,20],[-3,4],[-7,6],[-8,5],[-4,2],[-5,11],[-6,19],[-13,26],[-5,8],[-20,27],[-33,46],[-29,31],[-36,43],[-15,19],[-20,32],[-4,9],[-2,15],[1,20],[2,15],[8,39],[16,62],[1,10],[0,69],[-7,34],[-5,39],[-3,50],[0,10],[-3,40],[-6,13],[-2,10],[-3,19],[-3,10],[-8,23],[-5,14],[-5,8],[-21,31],[-11,22],[-3,9],[-3,10],[-1,10],[0,5],[2,9],[12,33],[9,17],[2,4],[9,11],[14,13],[11,6],[9,4],[8,2],[9,0],[13,-1],[4,-1],[9,-2],[8,-4],[4,-1],[18,-1],[13,3],[3,2],[3,4],[2,5],[7,23],[6,30],[1,10],[0,10],[-3,14],[-4,9],[-2,5],[-10,10],[-27,33],[-6,6],[-18,15],[-14,12],[-11,8],[-13,13],[-13,14],[-6,7],[-10,9],[-13,14],[-5,8],[-2,5],[-2,4],[-6,35],[3,5],[1,5],[6,29],[7,49],[1,20],[3,24],[-6,24],[-5,50],[-3,9],[-5,19],[-6,19],[-8,18],[-5,13],[-5,9],[-11,27],[-4,9],[-3,4],[-8,17],[-12,21],[-13,20],[-17,23],[-4,3],[-3,3],[-7,6],[-11,9],[-18,14],[-12,6],[-8,3],[-17,4],[-5,0],[-4,-1],[-22,-5],[-4,-2],[-19,-13],[-2,-4],[-2,-9],[-15,-37],[-8,-17],[-14,-31],[-14,-21],[-6,-7],[-14,-12],[-11,-7],[-13,-5],[-13,-2],[-8,-1],[-22,5],[-4,1],[-24,14],[-26,18],[-8,5],[-21,17],[-30,37],[-13,13],[-20,11],[-12,4],[-12,6],[-8,4],[-8,5],[-8,4],[-15,10],[-7,5],[-4,3],[-4,3],[-15,17],[-6,8],[-12,26],[-5,20],[0,5],[0,10],[8,18],[9,11],[6,6],[12,7],[13,4],[20,9],[12,7],[10,10],[8,12],[15,30],[10,28],[2,9],[2,20],[1,10],[1,19],[0,6],[-1,10],[-2,15],[-3,14],[-12,32],[-9,17],[-12,21],[-6,8],[-15,11],[-20,11],[-24,12],[-10,9],[-7,6],[-6,8],[-28,44],[-21,19],[-8,4],[-13,13],[-9,12],[-20,9],[-4,3],[-2,4],[-7,13],[-4,19],[-1,5],[-1,20],[1,9],[2,20],[6,24],[3,20],[0,5],[-2,9],[-4,15],[-6,13],[-8,12],[-3,4],[-9,1],[-4,1],[-8,4],[-8,3],[-13,3],[-8,4],[-9,1],[-4,3],[-8,3],[-4,3],[-3,3],[-12,15],[-8,13],[-11,53],[-7,29],[-4,19],[-4,25],[-4,19],[-7,24],[-14,31],[-4,9],[-4,29],[-3,20],[-1,10],[2,20],[1,5],[1,5],[9,17],[0,5],[-5,30],[-1,5],[-2,4],[-10,16],[-18,22],[-4,3],[-12,5],[-4,1],[-3,4],[-5,8],[-3,10],[-12,20],[-16,18],[-7,6],[-6,7],[-8,12],[-6,13],[-5,14],[-3,10],[0,5],[-1,25],[2,19],[2,5],[8,23],[5,19],[3,15],[9,38],[1,5],[1,20],[-1,15],[-1,10],[0,5],[6,45],[0,5],[-2,20],[-1,4],[-5,15],[-2,4],[-7,6],[-11,8],[-7,6],[-8,5],[-4,1],[-9,-1],[-3,-2],[-3,-4],[-10,-11],[-11,-7],[-5,-2],[-4,0],[-4,0],[-26,6],[-4,1],[-12,8],[-9,10],[-5,8],[-2,5],[-1,5],[-1,20],[0,25],[-2,19],[-2,10],[-3,10],[-2,4],[-10,17],[-9,11],[-4,9],[-5,14],[-1,10],[-4,14],[-2,11],[3,29],[2,5],[4,8],[4,3],[14,11],[8,5],[5,0],[12,-3],[9,0],[17,4],[13,4],[8,3],[21,9],[9,6],[5,5],[11,9],[5,8],[1,5],[-1,10],[-2,15],[-4,14],[-11,32],[-24,59],[-6,19],[-7,29],[0,5],[2,10],[0,35],[-1,4],[-2,5],[-10,16],[-12,21],[-8,12],[-7,6],[-1,5],[-3,9],[-10,23],[-15,24],[-3,4],[-13,13],[-12,7],[-4,1],[-18,-2],[-38,-9],[-22,-3],[-17,-1],[-14,0],[-17,1],[-18,3],[-12,4],[-4,2],[-19,12],[-20,20],[-3,4],[-11,27],[-3,9],[-1,5],[-1,20],[0,12],[0,3],[1,15],[1,5],[2,5],[2,4],[15,18],[3,4],[12,7],[4,2],[57,24],[23,14],[15,11],[5,7],[7,13],[1,5],[2,15],[3,20],[-1,14],[-2,10],[-2,5],[-5,10],[-4,7],[-5,8],[-10,10],[-23,37],[-12,27],[-13,19],[-18,29],[-13,27],[-6,18],[-1,5],[-2,18],[-4,31],[-2,20],[1,5],[1,25],[3,19],[3,10],[13,31],[11,16],[21,38],[3,4],[19,20],[5,9],[1,4],[0,5],[-2,15],[-1,5],[-7,13],[-6,8],[-13,13],[-16,8],[-13,-3],[-17,-1],[-31,4],[-9,2],[-3,3],[-7,13],[-6,7],[-10,12],[-14,18],[-15,24],[-7,13],[-7,23],[-3,10],[-6,39],[-1,5],[-3,6],[-6,3],[-13,7],[-11,8],[-8,5],[-4,3],[-9,10],[-14,19],[-7,13],[-7,18],[-3,10],[-2,15],[0,5],[3,14],[3,10],[2,4],[3,4],[5,8],[8,18],[4,14],[4,3],[8,4],[11,7],[4,3],[5,8],[5,8],[9,11],[9,17],[23,54],[6,22],[3,11],[4,9],[6,13],[4,9],[4,9],[3,4],[10,10],[6,6],[16,18],[9,17],[5,8],[9,17],[3,9],[3,4],[5,14],[4,14],[0,5],[0,5],[-2,10],[-2,4],[-5,8],[-9,11],[-7,6],[-16,8],[-23,-16],[-8,-4],[-29,-10],[-30,-5],[-5,1],[-4,2],[-22,16],[-3,4],[-4,8],[-1,10],[0,5],[2,15],[2,5],[2,4],[8,12],[6,7],[19,28],[4,8],[2,5],[1,5],[1,20],[-2,15],[-4,9],[-19,27],[-8,4],[-7,5],[-13,13],[-6,8],[-4,9],[-13,26],[-18,50],[-2,10],[-1,10],[0,15],[3,19],[2,5],[9,11],[6,6],[13,14],[17,15],[19,13],[8,3],[20,12],[10,9],[3,4],[4,9],[3,9],[0,5],[-3,40],[-3,9],[-1,5],[-3,4],[-5,8],[-3,3],[-8,5],[-4,1],[-9,2],[-26,3],[-9,0],[-21,0],[-10,0],[-12,-2],[-9,-4],[-15,-9],[-9,-2],[-13,-1],[-4,1],[-12,5],[-4,3],[-3,3],[-3,4],[-2,5],[-1,10],[-1,10],[3,24],[7,19],[2,4],[9,34],[4,34],[0,10],[-1,15],[-5,19],[-9,28],[-6,13],[-18,35],[-5,8],[-3,4],[1,9],[-1,5],[-6,13],[-3,4],[-10,10],[-12,7],[-32,13],[-8,5],[-4,3],[-2,4],[-1,5],[0,5],[0,5],[1,5],[2,5],[9,16],[4,10],[1,5],[2,14],[0,5],[-1,15],[-4,14],[-7,13],[-7,12],[-15,19],[-5,8],[-6,7],[-5,8],[-6,7],[-3,3],[-8,4],[-12,7],[-6,8],[-5,14],[0,4],[0,5],[3,10],[5,14],[5,8],[30,36],[15,19],[9,10],[15,25],[9,11],[10,22],[12,15],[11,21],[8,11],[5,9],[3,9],[2,4],[11,54],[3,11],[7,42],[2,5],[11,27],[6,8],[4,8],[4,9],[6,19],[0,10],[0,5],[-1,4],[-3,10],[-5,7],[-4,2],[-12,6],[-17,4],[-17,4],[-21,7],[-4,2],[-1,5],[-3,10],[1,4],[2,15],[3,10],[3,3],[10,10],[7,5],[4,3],[5,8],[4,9],[7,18],[10,22],[1,5],[4,30],[-2,9],[-1,5],[-4,9],[-15,25],[-7,18],[-3,9],[-2,45],[2,10],[3,9],[3,40],[7,12],[3,3],[10,10],[7,7],[8,3],[4,1],[5,0],[13,-2],[4,1],[4,1],[4,3],[7,7],[8,11],[1,5],[1,10],[0,5],[-6,19],[-1,4],[-3,15],[-2,4],[-3,3],[-4,3],[-17,5],[-12,6],[-4,0],[-9,0],[-4,-1],[-4,-3],[-7,-5],[-4,-2],[-9,-1],[-13,3],[-4,2],[-3,4],[-7,12],[-1,5],[-1,5],[1,10],[-1,5],[4,24],[1,10],[0,10],[4,45],[4,14],[5,8],[3,4],[7,4],[13,5],[26,4],[4,1],[7,6],[8,12],[2,4],[6,19],[0,5],[0,15],[-1,10],[-4,24],[0,5],[2,5],[0,10],[4,19],[4,9],[1,5],[5,8],[3,4],[10,10],[7,5],[16,9],[8,3],[5,0],[4,-1],[3,-3],[2,-5],[8,-17],[3,-5],[3,-3],[6,-7],[4,-3],[4,-1],[9,1],[4,3],[7,6],[4,1],[26,6],[4,2],[20,9],[5,3],[5,7],[3,5],[2,9],[0,5],[-2,4],[-2,15],[1,15],[2,9],[2,5],[2,4],[10,10],[4,3],[16,8],[3,3],[18,15],[3,3],[8,12],[7,13],[2,4],[4,9],[12,32],[0,5],[1,5],[1,9],[0,10],[-2,20],[0,5],[0,10],[4,29],[2,15],[0,10],[-1,20],[-3,19],[-4,10],[-4,8],[-6,8],[-2,4],[-5,8],[-7,6],[-21,18],[-8,11],[-7,12],[-2,5],[-2,10],[-2,14],[2,55],[-1,10],[-3,9],[-23,42],[-3,7],[-5,11],[-5,13],[-5,19],[-1,5],[1,5],[2,5],[3,3],[4,3],[4,2],[9,1],[4,-1],[4,1],[13,4],[8,4],[10,9],[7,6],[8,3],[32,17],[10,9],[6,7],[5,9],[1,5],[4,8],[4,15],[5,19],[5,14],[2,4],[0,5],[1,5],[5,14],[3,3],[3,3],[2,5],[2,4],[1,10],[0,5],[-4,20],[0,10],[0,5],[6,19],[1,4],[4,9],[3,4],[4,3],[16,8],[4,1],[11,7],[16,10],[10,10],[6,7],[5,8],[4,14],[3,20],[-1,10],[-5,19],[-5,14],[-4,8],[-5,19],[0,5],[1,5],[8,18],[2,4],[4,2],[14,-1],[13,2],[4,2],[7,5],[3,2],[4,4],[6,15],[1,4],[5,30],[3,39],[1,15],[-1,10],[1,15],[6,29],[3,9],[1,5],[0,5],[-3,9],[-2,5],[-3,9],[0,10],[3,25],[3,14],[4,9],[8,12],[11,8],[7,5],[11,8],[4,3],[0,5],[5,14],[3,9],[3,4],[0,5],[-5,13],[-3,4],[-13,13],[-17,16],[-8,12],[-12,22],[-2,3],[-2,10],[-3,14],[-1,5],[2,15],[0,5],[1,10],[6,23],[3,9],[2,15],[-3,9],[-6,13],[-3,4],[-4,9],[0,5],[4,24],[0,10],[-1,10],[-1,5],[-3,4],[-15,10],[-9,11],[-3,4],[-2,10],[0,4],[0,5],[5,20],[12,21],[0,5],[1,10],[0,5],[-2,4],[-7,12],[-3,4],[-26,19],[-9,10],[-9,11],[-9,17],[-7,13],[-5,13],[-2,15],[-3,39],[-2,30],[0,10],[2,15],[8,28],[3,9],[6,29],[1,10],[1,5],[4,9],[4,9],[6,7],[6,13],[1,5],[1,10],[0,5],[-3,9],[-3,4],[-8,3],[-4,0],[-9,-2],[-4,1],[-4,2],[-11,16],[-3,4],[-3,3],[-3,3],[-3,4],[1,5],[-4,14],[-11,15],[-3,3],[-3,3],[-3,4],[-4,14],[1,5],[4,9],[5,7],[7,7],[8,4],[13,3],[9,0],[25,-5],[9,0],[5,1],[12,5],[4,3],[10,16],[2,14],[2,5],[0,10],[-1,10],[-10,16],[-3,10],[0,5],[0,9],[5,14],[4,9],[8,17],[3,10],[0,5],[1,5],[5,8],[6,7],[3,3],[17,7],[4,2],[3,3],[14,19],[3,10],[2,9],[-1,15],[-6,13],[-5,9],[-6,6],[-4,3],[-10,16],[-1,5],[-1,9],[2,20],[3,9],[0,1],[-1,4],[1,5],[2,5],[2,4],[1,10],[-4,3],[-8,7],[1,5],[-1,10],[-3,9],[-4,10],[-7,12],[1,5],[4,20],[1,14],[-1,5],[1,5],[-1,14],[-2,4],[0,5],[-2,9],[-1,15],[2,49],[-4,14],[-3,4],[-8,5],[-4,2],[-4,0],[-18,-1],[-12,1],[-5,1],[-15,10],[-10,9],[-3,4],[-8,4],[-4,1],[-4,2],[-19,12],[-9,0],[-17,-5],[-4,-2],[-9,-12],[-3,-3],[-1,-1],[-10,-6],[-9,-1],[-5,0],[-4,2],[-2,2],[-1,1],[-3,3],[-6,7],[-6,8],[-3,4],[-2,4],[-3,14],[-2,20],[0,10],[3,25],[3,14],[1,4],[0,1],[1,10],[1,10],[-2,4],[-3,4],[-3,3],[-4,2],[-8,5],[-5,1],[-13,2],[-17,-1],[-4,1],[-5,2],[-7,6],[-4,2],[-11,9],[-3,3],[-5,8],[-1,5],[-2,10],[-1,9],[0,10],[1,28],[-3,14],[-2,4],[-1,5],[-9,12],[-2,4],[1,10],[0,5],[0,5],[1,5],[5,13],[3,5],[12,14],[3,4],[4,8],[4,9],[1,5],[3,34],[0,10],[-1,5],[-2,4],[-4,3],[-4,2],[-8,3],[-4,9],[-1,5],[-2,9],[-7,29],[0,25],[1,10],[2,5],[1,14],[-1,15],[-2,10],[-3,14],[0,20],[-1,15],[-3,9],[-2,10],[-7,18],[-2,9],[-1,5],[1,10],[3,20],[3,9],[5,9],[1,4],[3,5],[3,2],[8,4],[6,7],[3,4],[1,5],[0,10],[-1,10],[-3,24],[2,9],[3,10],[1,4],[3,5],[3,3],[8,5],[4,1],[26,4],[4,2],[8,4],[4,1],[4,1],[4,3],[4,0],[5,1],[4,2],[2,4],[2,4],[2,5],[0,10],[2,14],[3,14],[4,9],[6,7],[12,8],[5,8],[2,4],[4,15],[2,19],[-1,5],[-8,23],[-5,8],[-3,4],[-1,5],[-1,5],[0,4],[-1,5],[1,10],[10,33],[3,9],[1,5],[5,19],[5,13],[4,9],[4,14],[0,5],[1,5],[2,14],[-1,10],[0,5],[-2,10],[-2,4],[-9,11],[-6,8],[-5,17],[2,7],[1,10],[2,4],[0,10],[0,5],[1,10],[0,5],[-2,14],[-2,10],[1,10],[0,9],[-1,5],[-5,8],[-9,11],[-12,6],[-9,3],[-8,17],[-8,23],[-2,10],[-1,5],[4,9],[2,4],[8,12],[-1,9],[-2,10],[-1,10],[-2,10],[-2,15],[2,4],[3,4],[4,3],[4,2],[13,3],[4,1],[6,7],[4,8],[4,10],[0,5],[-2,9],[-3,4],[-18,22],[-5,8],[-2,4],[-2,10],[-3,14],[-2,10],[0,5],[3,19],[3,9],[4,9],[17,22],[6,8],[6,13],[0,5],[-1,8],[-8,5],[-10,9],[-2,5],[-2,4],[-1,10],[0,10],[0,10],[1,5],[7,24],[1,4],[5,9],[3,3],[12,7],[8,2],[13,0],[9,0],[22,-3],[4,-9],[2,-5],[4,-8],[7,-13],[3,-4],[7,-5],[8,-3],[9,-2],[9,0],[8,4],[4,2],[7,5],[3,4],[19,12],[4,9],[1,5],[5,8],[3,4],[17,4],[4,3],[9,17],[4,9],[1,5],[-1,5],[-1,9],[-2,10],[-2,4],[-3,4],[-6,7],[-3,10],[0,15],[-5,24],[-3,14],[0,15],[-11,32],[0,5],[1,10],[3,9],[10,17],[6,7],[2,4],[8,19],[5,18],[1,5],[-2,10],[-1,15],[-1,10],[0,10],[0,6],[6,6],[4,2],[4,1],[4,0],[13,-2],[3,-1],[2,0],[7,-4],[4,-3],[9,-11],[4,-3],[8,-4],[8,-1],[5,2],[12,13],[4,9],[0,5],[0,10],[-4,14],[-6,13],[0,5],[2,5],[0,10],[1,5],[2,9],[3,4],[3,4],[20,19],[2,4],[0,10],[-1,5],[0,5],[2,4],[4,9],[3,9],[1,5],[0,5],[5,19],[3,60],[1,3],[3,11],[2,4],[0,15],[1,5],[1,10],[4,8],[4,3],[25,19],[4,3],[13,26],[3,4],[3,3],[5,-1],[17,1],[11,9],[14,10],[4,1],[14,18],[7,24],[31,18],[23,20],[26,41],[2,17],[9,56],[2,9],[1,34],[-2,23],[-11,35],[-8,12],[-25,18],[-9,18],[-4,56],[1,19],[2,48],[-1,26],[1,18],[3,11],[10,20],[9,23],[6,23],[4,6],[-8,6],[-10,11],[-6,17],[-1,19],[7,13],[5,16],[-2,13],[-9,14],[-7,18],[-10,27],[-2,5],[-5,42],[2,16],[3,20],[6,23],[1,18],[-29,42],[-12,7],[-11,-2],[-18,2],[-13,7],[-9,12],[-7,16],[-3,24],[3,14],[1,31],[1,4],[0,4],[10,25],[6,8],[3,5],[3,1],[0,4],[1,5],[5,16],[-4,13],[-19,9],[-21,5],[-45,0],[-16,15],[-6,12],[-3,16],[2,28],[6,23],[5,16],[10,10],[18,16],[11,22],[2,16],[5,19],[-1,15],[-1,17],[6,15],[8,12],[6,10],[1,11],[2,17],[10,17],[9,13],[20,13],[18,11],[14,14],[10,20],[11,16],[16,31],[19,25],[-6,22],[-11,18],[-3,19],[-19,15],[-15,18],[4,58],[-1,16],[-25,5],[-33,8],[-29,21],[-38,39],[-8,38],[-3,28],[-3,18],[-1,23],[20,25],[0,12],[-7,8],[0,0],[-28,31],[-4,5],[-5,0],[-14,-2],[-18,16],[-6,2],[-4,28],[1,9],[-3,26],[-14,51],[-5,12],[-4,11],[-3,4],[-8,17],[-8,11],[-4,3],[-2,4],[-7,6],[-11,15],[-6,7],[-8,12],[-7,12],[-9,17],[-18,28],[-9,18],[-5,7],[-8,13],[-5,8],[-21,25],[-12,5],[-5,1],[-4,-2],[-4,-3],[-3,-3],[-2,-4],[-17,-16],[-4,-3],[-4,0],[-4,0],[-5,1],[-16,9],[-3,3],[-3,4],[-2,4],[-6,13],[-2,9],[1,10],[2,9],[2,9],[0,10],[-1,5],[-3,4],[-7,6],[-3,3],[-16,8],[-4,3],[-8,12],[-7,23],[-1,10],[1,14],[1,5],[3,4],[6,7],[3,3],[3,3],[3,4],[3,4],[3,3],[1,4],[-2,5],[-2,19],[1,5],[-2,4],[2,5],[-1,4],[3,4],[1,10],[-1,5],[-9,17],[-6,7],[-5,8],[-5,13],[-5,19],[-1,9],[-6,23],[-10,10],[-4,2],[-22,-1],[-4,0],[-8,3],[-4,2],[-6,18],[-1,5],[1,20],[1,15],[0,2],[-35,4],[-14,-14],[-20,-4],[-25,32],[-19,35],[2,27],[1,10],[2,3],[3,18],[-8,13],[-11,17],[-8,8],[-3,0],[0,3],[-6,6],[-4,4],[-7,-3],[-3,-2],[-3,0],[-6,-3],[-26,-16],[-25,-9],[-25,16],[-17,31],[-16,29],[0,15],[1,2],[-1,4],[1,4],[2,3],[0,3],[4,16],[1,13],[-11,11],[-7,13],[-5,24],[-4,12],[-3,5],[-17,15],[-26,13],[-36,17],[-12,13],[-10,23],[-12,21],[-8,13],[-26,24],[-19,23],[0,26],[-8,51],[-44,36],[-5,15],[-4,15],[1,21],[3,18],[1,9],[0,6],[-2,14],[-12,11],[-18,9],[-17,13],[-4,1],[-1,3],[-2,4],[-3,5],[-2,1],[0,7],[-2,8],[1,18],[3,3],[11,12],[16,7],[15,7],[10,10],[6,11],[0,18],[0,1],[-3,17],[-3,3],[-9,7],[-1,2],[-8,11],[-8,10],[-7,14],[-5,12],[-1,1],[-9,12],[0,4],[-42,29],[-3,1],[-20,28],[-35,33],[-37,20],[-25,6],[-14,16],[-1,7],[-4,2],[0,3],[-4,4],[-9,12],[-11,7],[-9,5],[-7,-7],[-9,-25],[-15,-14],[-11,-4],[-16,-4],[-14,5],[-19,23],[-18,31],[-11,22],[-6,31],[-6,17],[-16,17],[-21,14],[-3,6],[-8,13],[0,36],[0,20],[-4,9],[-16,13],[-16,8],[-7,11],[-5,4],[-11,19],[-16,32],[-19,7],[-28,3],[-19,3],[-6,17],[-2,30],[-16,29],[-8,3],[-2,6],[-17,11],[-12,-1],[-8,-4],[-11,-12],[-5,-25],[-8,-9],[-7,1],[-14,4],[-11,14],[-7,9],[-4,2],[-2,3],[-22,16],[-53,8],[-21,4],[-26,14],[-14,4],[-9,5],[-11,17],[-13,13],[-15,9],[-13,20],[-12,21],[-13,16],[-2,5],[-13,10],[-11,9],[0,4],[-40,28],[-36,44],[-20,32],[-6,7],[-2,6],[-4,3],[-3,4],[-13,16],[-20,11],[-1,1],[-16,1],[-23,-10],[-16,3],[-14,4],[-6,4],[-39,34],[-22,16],[-1,4],[-5,10],[-2,9],[-9,7],[-14,17],[-18,5],[-22,1],[-17,3],[-21,17],[-11,35],[-8,40],[4,19],[-12,36],[-16,27],[-23,25],[-10,20],[-7,33],[-5,11],[-12,27],[-48,34],[-16,16],[-4,-1],[-21,21],[-18,32],[-4,15],[-4,31],[10,38],[10,21],[1,25],[-2,24],[-4,7],[-3,5],[-13,16],[-25,62],[-28,34],[-7,21],[-21,20],[-6,0],[-13,16],[-12,10],[-5,10],[-6,6],[-8,16],[-13,9],[-1,2],[-10,21],[-8,35],[-4,20],[-3,13],[-1,20],[5,62],[-6,36],[-5,32],[1,6],[3,26],[3,15],[0,15],[0,15],[0,1],[3,26],[2,23],[1,8],[-1,8],[0,3],[-12,10],[-16,7],[-14,12],[-33,37],[-8,5],[-1,5],[-7,5],[-6,12],[0,4],[-15,9],[-8,13],[-2,2],[-31,33],[0,1],[-8,18],[-10,19],[-2,21],[-2,19],[-2,21],[0,20],[11,32],[14,14],[4,10],[6,2],[1,9],[5,6],[7,17],[5,5],[19,50],[13,61],[2,48],[8,45],[4,3],[1,14],[6,15],[3,19],[3,22],[-5,21],[-16,48],[-6,40],[3,56],[2,23],[-9,20],[-6,8],[-8,3],[-5,7],[-6,2],[-12,10],[-8,25],[-9,38],[-4,45],[7,36],[12,34],[0,22],[-4,45],[-6,28],[-6,31],[-26,83],[-1,4],[-4,3],[-10,18],[-3,2],[-1,6],[-6,5],[-2,6],[-10,8],[-1,8],[-16,21],[-10,13],[-5,18],[3,22],[8,39],[8,9],[2,6],[2,7],[4,13],[-4,10],[-6,13],[-28,14],[-10,3],[-13,8],[-4,0],[-18,17],[-17,9],[-20,21],[-21,28],[0,4],[-8,9],[-13,34],[-9,24],[-10,16],[-4,3],[0,5],[-11,9],[-20,8],[-5,1],[-28,7],[-12,7],[-8,4],[-7,7],[-32,75],[-11,11],[-25,2],[-15,8],[-7,0],[-13,12],[-15,23],[-12,36],[-4,7],[-5,0],[-12,10],[-31,11],[-12,10],[-5,20],[-2,15],[-2,12],[-13,20],[-6,6],[-9,10],[-6,6],[-19,32],[-6,7],[-2,4],[-11,13],[-1,5],[-14,20],[-1,5],[-4,2],[1,6],[-4,3],[0,4],[-25,37],[0,5],[-10,13],[-4,16],[-15,21],[-32,23],[-28,5],[0,0],[-12,8],[-5,9],[-8,18],[-8,33],[-11,34],[-7,11],[-4,2],[-5,13],[-19,25],[-1,5],[-30,40],[-9,25],[-10,9],[-16,1],[-8,3],[-9,7],[-8,7],[-4,9],[-2,17],[4,31],[-5,17],[-13,16],[-3,8],[-3,14],[3,30],[-4,21],[-11,24],[-24,19],[-10,17],[-3,28],[7,18],[4,20],[-5,22],[-11,39],[-4,7],[-1,3],[-9,9],[-8,13],[-16,53],[-9,13],[-4,3],[-13,39],[-16,40],[7,69],[5,16],[10,33],[-2,137],[4,43],[22,55],[10,13],[1,5],[4,2],[2,4],[22,24],[3,4],[10,23],[4,2],[8,17],[2,11],[0,21],[1,44],[8,47],[-7,109],[-5,24],[-3,21],[1,22],[2,23],[3,55],[1,12],[1,21],[13,95],[26,82],[4,30],[4,11],[27,53],[24,31],[7,9],[110,110],[13,19],[15,16],[73,49],[21,16],[33,25],[76,62],[21,19],[36,32],[13,11],[-1,35],[31,154],[22,186],[9,89],[2,83],[-6,150],[-33,202],[-1,4],[-18,133],[0,24],[-4,30],[7,63],[17,56],[1,28],[13,14],[21,10],[33,6],[65,4],[33,9],[27,13],[14,11],[19,15],[2,4],[12,10],[21,29],[4,4],[2,11],[8,6],[1,5],[36,63],[24,45],[10,35],[30,41],[20,44],[13,14],[8,11],[4,2],[13,20],[14,16],[9,15],[4,10],[11,9],[0,5],[26,38],[15,14],[23,27],[29,24],[17,29],[10,16],[13,25],[0,4],[3,1],[18,26],[6,5],[9,7],[4,9],[18,12],[2,4],[8,4],[1,4],[48,39],[27,21],[33,21],[24,20],[8,3],[1,1],[8,6],[9,7],[15,13],[8,6],[11,13],[3,1],[6,8],[29,21],[10,9],[20,14],[14,19],[10,6],[3,5],[13,12],[5,1],[10,7],[31,8],[19,10],[28,30],[5,11],[4,4],[14,13],[1,1],[23,9],[32,10],[2,3],[15,11],[37,12],[57,14],[36,3],[42,0],[31,-2],[34,-9],[88,-14],[39,-9],[27,-1],[75,-4],[56,-22],[29,-4],[34,-10],[34,1],[16,5],[25,13],[2,4],[24,15],[1,1],[72,66],[12,15],[20,17],[3,6],[14,14],[1,3],[20,17],[18,14],[19,6],[29,17],[15,6],[3,2],[8,3],[2,2],[4,2],[-30,163],[-2,67],[2,10],[-1371,125],[-184,16],[-376,33],[-27,3],[-475,30],[-114,10],[-64,8],[-1102,101],[-879,93],[-1,-1],[-518,29],[-29,2],[-1527,147],[-273,23],[-214,14],[-94,6],[-84,5],[-335,28],[-79,4],[-115,11],[-345,31],[-53,5],[-62,5],[-169,15],[-116,11],[-318,28],[-71,7],[-25,2],[-143,11],[-45,10],[-111,9],[-357,28],[-88,6],[-25,3],[-156,14],[-6,-1],[-16,-2],[-6,-1],[-1228,113],[-158,13],[-2088,169],[-1585,134],[-65,6],[-1,0],[-420,35],[-61,5],[-173,16],[-76,7],[0,0],[-170,15],[-110,10],[-4,0],[-42,4],[-42,4],[-425,38],[-283,16],[-24,2],[-55,3],[-752,60],[-205,21],[-135,12],[-113,10],[-116,9],[-296,26],[-188,15],[-140,12],[-298,24],[-924,70],[-100,8],[-5,1],[-12,2],[-23,1],[-1265,108],[-302,27],[-9,1],[-300,27],[-407,28],[-334,24],[-1688,141],[-558,46],[-71,5],[-618,46],[-27,2],[-49,4],[-691,57],[-53,4],[-46,4],[-170,15],[-17,1],[-160,14],[-280,24],[-153,11],[-90,6],[-214,15],[-258,19],[-868,73],[-209,16],[-167,11],[-376,36],[-144,11],[-7,0],[-132,11],[-463,36],[-379,25],[-1135,86],[-114,12],[-618,38],[-73,13],[-30,7],[7,4],[-30,1],[-185,7],[-1,10],[-28,3],[-278,17],[-210,11],[-9,1],[-4,9],[-200,5],[0,7],[-40,3],[-92,6],[-20,1],[-22,2],[-12,2],[-55,-5],[-344,25],[-341,30],[-229,30],[-133,9],[-104,7],[-47,3],[-69,6],[-129,9],[-71,5],[-109,9],[-31,2],[-154,14],[-13,2],[-6,6],[-2,-7],[-66,-10],[-37,9],[-65,3],[-149,15],[-181,6],[-204,17],[-409,26],[-132,24],[-50,10],[-24,0],[-129,12],[-198,15],[-12,0],[-20,1],[-235,0],[-96,7],[-930,72],[-118,12],[-198,11],[-146,19],[-439,56],[-88,11],[-17,2],[-25,3],[-16,1],[-107,9],[-318,28],[-81,7],[-26,2],[-87,7],[-136,11],[-126,9],[-87,7],[-91,7],[-274,22],[-92,7],[-439,32],[-1319,98],[-397,29],[-35,3],[-7,0],[-192,14],[-75,5],[-503,35],[-192,14],[-294,21],[-883,63],[-294,21],[-215,16],[-646,46],[-211,15],[-4,0],[-274,20],[-822,59],[-274,19],[-381,28],[-1143,85],[-360,27],[-11,1],[-10,1],[-874,63],[-84,6],[-30,5],[-893,78],[-2,0],[-2167,192],[-38,2],[-1,0],[-2277,130],[-1796,149],[-3902,324],[-230,20],[-1539,128],[-1380,115],[-3656,304],[-689,32],[-293,42],[-16,1],[-982,55],[-3847,298],[-10,1],[-940,72],[-309,24],[-117,9],[-62,6],[-291,30],[-48,4],[-1791,135],[-159,18],[-9,-1],[-7,2],[-1881,139],[-1541,119],[-455,35],[-435,34],[-569,34],[-20,2],[-1794,136],[-40,6],[-6,1],[-69,8],[-1,1],[-185,-2],[-1311,114],[-104,8],[-1299,104],[-495,39],[-21,2],[-403,31],[-581,46],[-969,72],[-1,0],[-1026,76],[-145,11],[-46,3],[-1240,91],[-42,3],[-14,0],[-3,1],[-1993,144],[-124,4],[-35,1],[-4,0],[-524,36],[-129,5],[-686,46],[-554,53],[-358,34],[-1076,104],[-359,35],[-205,19],[-614,57],[-205,19],[-56,4],[-166,12],[-56,4],[-616,45],[-27,1],[-29,3],[-11,0],[-51,7],[-203,21],[-24,4],[-1,2],[0,0],[-73,6],[-34,1],[-370,24],[-4,1],[-788,63],[-4,2],[-1179,74],[-6,0],[-2374,179],[-458,35],[-4,0],[-184,14],[-178,13],[-48,4],[-1845,139],[-6,1],[-7,0],[-7,1],[-10,0],[-11,1],[-111,9],[-42,3],[-17,2],[-9,0],[-10,1],[-56,6],[-60,7],[-14,1],[-159,13],[-271,21],[-9,1],[-216,18],[-2,0],[-895,72],[-131,11],[-23,2],[-37,3],[-488,39],[-486,39],[-307,25],[-1367,111],[-1665,123],[-188,14],[-3,1],[-6,0],[-18,2],[-18,2],[-12,1],[-91,8],[-54,5],[-48,5],[-37,3],[-109,11],[-36,4],[-180,14],[-515,40],[-27,2],[-180,13],[-158,12],[-474,38],[-159,12],[-244,20],[-732,57],[-244,20],[-5,0],[-5,0],[-8,1],[-3,0],[-6,1],[-5,0],[-93,7],[-297,24],[-99,8],[-42,3],[-124,9],[-42,4],[-92,7],[-160,14],[-34,2],[-7,1],[-83,7],[-581,46],[-2,1],[-24,2],[-24,2],[-21,1],[-21,2]],[[142841,481042],[-3,29],[-2,29],[-16,187],[-66,600],[0,12],[-10,103],[-9,83],[-1,92],[-2,48],[-2,76],[12,167],[7,103],[0,41],[-29,-18],[-98,-45],[-15,-6],[-111,-38],[-57,-19],[-24,-10],[-40,25],[-39,28],[-74,74],[-39,41],[-24,22],[-45,51],[-13,24],[-13,30],[-10,32],[-42,157],[-22,80],[12,39],[16,25],[18,49],[20,84],[23,63],[13,37],[39,78],[36,74],[19,43],[27,57],[4,11],[14,56],[5,47],[2,53],[-1,27],[1,27],[0,5],[-7,-1],[-32,-1],[-69,4],[-102,8],[-35,4],[-77,6],[-12,1],[-3,3],[-8,24],[-17,13],[-47,9],[-69,10],[-39,-9],[-54,-18],[3,17],[-21,67],[-11,52],[-25,151],[-8,95],[-11,114],[-15,82],[-7,51],[-2,27],[79,3],[51,-1],[16,0],[37,4],[28,7],[39,15],[14,6],[34,26],[15,17],[17,21],[22,34],[39,64],[30,50],[33,51],[27,35],[24,28],[22,24],[46,47],[105,95],[82,75],[64,54],[7,5],[75,72],[23,18],[22,14],[27,11],[27,8],[39,8],[55,-1],[40,-5],[65,-1],[103,-3],[101,-2],[136,-4],[38,1],[58,-1],[36,2],[15,152],[17,176],[14,138],[8,84],[12,115],[16,220],[-4,217],[-5,104],[-16,105],[-2,4],[-37,212],[-19,111],[-34,184],[-40,219],[-21,109],[-72,390],[-22,137],[-21,120],[-26,178],[24,-1],[207,-8],[88,-4],[39,1],[39,-3],[30,-6],[66,-12],[78,-18],[29,-9],[51,-17],[39,-11],[108,-28],[49,-20],[59,-17],[94,-24],[-21,75],[-16,65],[42,0],[47,13],[88,27],[90,40],[63,27],[33,12],[36,14],[67,25],[65,10],[13,2],[50,5],[37,9],[90,13],[47,13],[12,12],[5,15],[21,36],[26,17],[17,10],[15,11],[19,13],[74,26],[66,44],[52,46],[2,1],[18,31],[33,51],[68,103],[42,56],[40,70],[27,55],[42,-18],[31,-29],[42,-43],[47,-50],[35,-38],[-12,-12],[-39,-37],[-28,-29],[-28,-26],[-32,-41],[-12,-24],[-19,-43],[-31,-33],[30,-23],[21,-10],[27,-10],[67,-1],[32,2],[41,-2],[26,-7],[20,-2],[24,-2],[15,2],[69,16],[43,3],[31,3],[7,-1],[13,-16],[-3,-79],[59,-15],[16,-4],[61,-15],[40,10],[109,-5],[92,0],[128,-10],[123,5],[47,0],[55,180],[20,76],[4,47],[-1,47],[-12,42],[-7,17],[-9,21],[-18,52],[-22,53],[-58,127],[-14,43],[-10,43],[-4,47],[-7,69],[-3,58],[-4,80],[-10,119],[-9,107],[-3,32],[-2,26],[-11,69],[-29,135],[-26,100],[-20,60],[-46,192],[92,14],[160,26],[9,3],[44,13],[79,32],[29,7],[23,4],[42,1],[59,-9],[52,-12],[88,-19],[21,-2]]],"objects":{"lakeside-tucker":{"type":"GeometryCollection","geometries":[{"arcs":[[2],[0,1]],"type":"Polygon"},{"arcs":[[-1,3]],"type":"Polygon"},{"arcs":[[-4,-2]],"type":"Polygon"}]}}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment