From b5d87fe8d18d8573b6d4e44d06af36eb83caf1bd Mon Sep 17 00:00:00 2001 From: Norbert Renner Date: Sat, 23 Jan 2021 12:43:13 +0100 Subject: [PATCH] Determine country rules by enclosing boundary --- js/Util.js | 6 +- js/plugin/CircleGoArea.js | 207 ++++++++++++++--------- resources/boundaries/countries.topo.json | 1 + 3 files changed, 132 insertions(+), 82 deletions(-) create mode 100644 resources/boundaries/countries.topo.json diff --git a/js/Util.js b/js/Util.js index acf3f9e..54bd517 100644 --- a/js/Util.js +++ b/js/Util.js @@ -150,6 +150,10 @@ BR.Util = { } // fallback when country not available - return lang[0] === language; + if (language) { + return lang[0] === language; + } + + return false; }, }; diff --git a/js/plugin/CircleGoArea.js b/js/plugin/CircleGoArea.js index 732df8e..bca6a6c 100644 --- a/js/plugin/CircleGoArea.js +++ b/js/plugin/CircleGoArea.js @@ -2,11 +2,13 @@ BR.CircleGoArea = L.Control.extend({ circleLayer: null, boundaryLayer: null, outsideAreaRenderer: L.svg({ padding: 1 }), + countries: null, states: null, + statesLoading: false, options: { radius: 1000, // in meters - stateRules: false, + countriesUrl: BR.conf.countriesUrl || 'dist/boundaries/countries.topo.json', statesUrl: BR.conf.statesUrl || 'dist/boundaries/germany-states.topo.json', overpassBaseUrl: BR.conf.overpassBaseUrl || 'https://overpass-api.de/api/interpreter?data=', shortcut: { @@ -58,16 +60,22 @@ BR.CircleGoArea = L.Control.extend({ ], }); - if (this.options.stateRules) { - this.drawButton.disable(); - this._loadStates( - L.bind(function () { - this.drawButton.enable(); - if (this.marker && !this.marker.dragging.enabled()) { - this.marker.dragging.enable(); - } - }, this) - ); + this.drawButton.disable(); + this.once( + 'countries:loaded', + function () { + this.drawButton.enable(); + if (this.marker && !this.marker.dragging.enabled()) { + this.marker.dragging.enable(); + } + }, + this + ); + this._loadCountries(); + + // preload states in parallel, before clicked country is known, using browser language as indicator + if (BR.Util.isCountry('DE')) { + this._loadStates(); } map.on('routing:draw-start', function () { @@ -126,17 +134,11 @@ BR.CircleGoArea = L.Control.extend({ var url = this.options.overpassBaseUrl + encodeURIComponent(query); this.marker.setIcon(this.iconSpinner); - BR.Util.get( + BR.Util.getJson( url, - L.bind(function (err, data) { - if (err) { - BR.message.showError('Error getting boundary for coordinate "' + center + '": ' + err); - return; - } - - try { - var osmJson = JSON.parse(data); - + 'boundary for coordinate "' + center + '"', + L.bind(function (err, osmJson) { + if (!err) { if (osmJson.elements.length === 0) { if (adminLevel === 8 || adminLevel === 7) { // admin_level 6 (kreisfreie Stadt) @@ -150,14 +152,9 @@ BR.CircleGoArea = L.Control.extend({ var geoJson = osmtogeojson(osmJson); this._setBoundary(geoJson); - - this.marker.setIcon(this.icon); - } catch (err) { - BR.message.showError('Error parsing boundary: ' + err); - console.error(err); - } finally { - this.marker.setIcon(this.icon); } + + this.marker.setIcon(this.icon); }, this) ); }, @@ -196,21 +193,29 @@ BR.CircleGoArea = L.Control.extend({ this.setOutsideArea(ring); }, - _getState: function (center) { - var state = null; + _getPolygonForPoint: function (center, featureCollection) { + var polygon = null; var point = turf.point(center); - var features = this.states.features; + var features = featureCollection.features; for (var i = 0; i < features.length; i++) { var feature = features[i]; var inside = turf.booleanPointInPolygon(point, feature); if (inside) { - state = feature; + polygon = feature; break; } } - return state; + return polygon; + }, + + _getState: function (center) { + return this._getPolygonForPoint(center, this.states); + }, + + _getCountry: function (center) { + return this._getPolygonForPoint(center, this.countries); }, _applyStateRules: function (center) { @@ -244,6 +249,42 @@ BR.CircleGoArea = L.Control.extend({ } }, + _applyCountryRules: function (center) { + var country = this._getCountry(center); + + if (country) { + var name = country.properties.name; + + if (name === 'Germany') { + this.options.radius = 15000; + + if (!this.states) { + this.marker.setIcon(this.iconSpinner); + this.once( + 'states:loaded', + function () { + this.marker.setIcon(this.icon); + if (this.states) { + this._applyStateRules(center); + } + }, + this + ); + this._loadStates(); + } else { + this._applyStateRules(center); + } + } else if (name === 'Metropolitan France') { + this.options.radius = 20000; + this._setNogoCircle(center); + } else { + console.error('unhandled country: ' + name); + } + } else { + // TODO message: no rules implemented for this location + } + }, + // debugging _logStates: function (states) { for (var i = 0; i < states.features.length; i++) { @@ -255,19 +296,22 @@ BR.CircleGoArea = L.Control.extend({ }, // debugging - _addStatesLayer: function (states) { + _addGeoJsonLayer: function (states, options) { // delay, otherwise triggers premature hash update through mapmove setTimeout( L.bind(function () { L.geoJson(states, { style: function (feature) { - return { - weight: 1, - color: 'navy', - opacity: 0.8, - fill: false, - interactive: false, - }; + return L.extend( + { + weight: 1, + color: 'navy', + opacity: 0.8, + fill: false, + interactive: false, + }, + options + ); }, }).addTo(this.map); }, this), @@ -275,22 +319,41 @@ BR.CircleGoArea = L.Control.extend({ ); }, - _loadStates: function (cb) { + _loadStates: function () { + if (this.statesLoading) return; + + this.statesLoading = true; BR.Util.getGeoJson( this.options.statesUrl, 'states', L.bind(function (err, data) { - // TODO spinner aus?, mit ringgo parameter testen + if (!err) { + this.states = data; + + // debugging + //this._logStates(this.states); + //this._addGeoJsonLayer(this.states); + } + + this.statesLoading = false; + this.fire('states:loaded'); + }, this) + ); + }, + + _loadCountries: function () { + BR.Util.getGeoJson( + this.options.countriesUrl, + 'countries', + L.bind(function (err, data) { if (err) return; - this.states = data; + this.countries = data; // debugging - //this._logStates(this.states); - //this._addStatesLayer(this.states); + //this._addGeoJsonLayer(this.countries, { color: 'darkgreen', opacity: 1 }); - this.fire('states:loaded'); - cb(); + this.fire('countries:loaded'); }, this) ); }, @@ -318,23 +381,19 @@ BR.CircleGoArea = L.Control.extend({ this._removeNogo(); if (center) { - if (this.options.stateRules) { - if (!this.states) { - // wait for states to be loaded (when circlego hash parameter without polylines) - this.marker.setIcon(this.iconSpinner); - this.once( - 'states:loaded', - function () { - this._applyStateRules(center); - this.marker.setIcon(this.icon); - }, - this - ); - } else { - this._applyStateRules(center); - } + if (!this.countries) { + // wait for countries to be loaded (when circlego hash parameter without polylines) + this.marker.setIcon(this.iconSpinner); + this.once( + 'countries:loaded', + function () { + this.marker.setIcon(this.icon); + this._applyCountryRules(center); + }, + this + ); } else { - this._setNogoCircle(center); + this._applyCountryRules(center); } } }, @@ -420,8 +479,8 @@ BR.CircleGoArea = L.Control.extend({ this.clear(); marker.addTo(this.circleLayer); - if (this.options.stateRules && !this.states) { - // prevent editing (when called by hash) until states are loaded, see _loadStates call in onAdd + // prevent editing (when called by hash) until countries are loaded, see _loadCountries call in onAdd + if (!this.countries) { marker.dragging.disable(); } @@ -531,19 +590,5 @@ BR.CircleGoArea = L.Control.extend({ BR.CircleGoArea.include(L.Evented.prototype); BR.circleGoArea = function (routing, nogos, pois) { - var circleGo = null; - var options = {}; - - if (BR.Util.isCountry('FR', 'fr')) { - options.radius = 20000; - } else if (BR.Util.isCountry('DE', 'de')) { - options.radius = 15000; - options.stateRules = true; - } - - if (options) { - circleGo = new BR.CircleGoArea(routing, nogos, pois, options); - } - - return circleGo; + return new BR.CircleGoArea(routing, nogos, pois); }; diff --git a/resources/boundaries/countries.topo.json b/resources/boundaries/countries.topo.json new file mode 100644 index 0000000..e91b535 --- /dev/null +++ b/resources/boundaries/countries.topo.json @@ -0,0 +1 @@ +{"type":"Topology","bbox":[-5.4517733,41.2611155,15.0418087,55.099161],"transform":{"scale":[0.000020493602493602492,0.000013838059338059338],"translate":[-5.4517733,41.2611155]},"objects":{"countries":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[0,1],[2]],[[3]]],"properties":{"id":-1403916,"admin_level":3,"parents":"-2202162","name":"Metropolitan France","local_name":"France métropolitaine","name_en":"Metropolitan France"}},{"type":"MultiPolygon","arcs":[[[4,-1,5],[6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]]],"properties":{"id":-51477,"admin_level":2,"parents":null,"name":"Germany","local_name":"Deutschland","name_en":"Germany"}}]}},"arcs":[[[636336,457346],[121,312],[41,115],[21,78],[9,69],[4,51],[2,106],[-3,53],[-11,72],[-15,60],[-26,74],[-21,48],[-31,64],[-63,99],[-32,42],[-47,57],[-45,47],[-62,56],[-123,98],[-343,271],[-116,175],[-35,64],[-23,70],[-17,41],[-28,143],[-36,196],[-32,149],[-23,91],[-17,61],[-47,124],[-80,163],[-61,93],[-62,82],[-77,91],[-94,97],[-227,180],[-387,278],[-268,204],[-192,161],[-126,124],[-87,95],[-96,119],[-216,270],[-76,103],[-120,155],[-66,109],[-58,115],[-38,95],[-23,70],[-31,115],[-22,119],[-12,88],[-4,84],[2,129],[9,107],[27,191],[8,105],[-1,107],[-7,121],[-18,126],[-24,111],[-27,96],[-75,186],[-93,182],[-95,180],[-27,68],[-18,68],[-10,64],[-2,59],[3,55],[11,64],[18,68],[22,59],[29,51],[50,67],[53,68],[116,99],[170,128],[92,76],[41,38],[57,45],[135,115],[175,139],[133,110],[76,69],[110,111],[91,114],[67,99],[39,61],[20,38],[44,76],[54,113],[72,166],[30,94],[28,110],[53,236],[6,94],[5,106],[1,185],[-5,108],[-17,83],[-11,30],[-91,228],[-86,228],[-123,330],[-86,263],[-47,124],[-41,100],[-54,101],[-48,124],[-144,406],[-52,132],[-32,93],[-25,89],[-21,85],[-11,48],[-9,69],[-9,118],[-6,48],[-3,280],[2,67],[10,118],[22,118],[18,87],[26,94],[50,138],[111,292],[147,380],[39,88],[111,290],[128,328],[79,235],[39,128],[28,127],[49,223],[32,134],[44,172],[25,68],[36,93],[61,137],[40,81],[42,78],[224,387],[47,90],[60,127],[40,95],[33,93],[29,98],[26,106],[17,89],[14,84],[8,87],[6,89],[3,115],[-2,77],[-16,170],[-10,67],[-27,121],[-18,63],[-21,66],[-29,75],[-32,81],[-87,200],[-70,179],[-32,98],[-20,75],[-16,87],[-8,65],[-6,72],[6,148],[-2,100],[4,86],[7,87],[19,132],[22,100],[19,67],[13,38],[27,59],[38,70],[53,90],[55,76],[72,87],[72,66],[98,72],[68,41],[121,63],[111,69],[97,77],[81,76],[60,67],[60,75],[60,92],[51,94],[44,94],[13,31],[24,72],[14,50],[17,76],[16,100],[8,84],[1,54],[-5,122],[-9,91],[-25,222],[-38,337],[-29,284],[-14,139],[-3,97],[2,72],[4,90],[14,123],[10,67],[35,156],[32,106],[33,96],[43,102],[60,119],[73,123],[41,63],[50,67],[189,220],[198,224],[192,218],[305,349],[96,123],[111,162],[76,137],[76,146],[53,108],[182,348],[46,95],[34,91],[20,56],[20,87],[10,58],[12,89],[5,101],[-9,191],[-28,140],[-100,414],[-36,127],[-44,136],[-62,170],[-53,137],[-151,317],[-98,174],[-53,87],[-65,89],[-143,199],[-101,128],[-56,68],[-58,64],[-230,273],[-560,658],[-117,140],[-160,185],[-136,149],[-131,149],[-78,101],[-46,75],[-28,60],[-30,81],[-18,72],[-8,61],[-2,58],[3,64],[10,82],[15,68],[18,67],[67,185],[33,100],[30,103],[29,135],[16,96],[20,138],[9,102],[4,92],[2,91],[-6,194],[-12,110],[-9,79],[-34,236],[-33,202],[-46,278],[-35,251],[-27,170],[-24,202],[-4,57],[2,148],[14,149],[8,61],[15,62],[48,165],[43,110],[46,111],[53,94],[114,199],[20,45],[47,121],[20,58],[20,66],[8,39],[33,186],[8,74],[3,62],[1,110],[-1,155],[-16,147],[-26,142],[-43,212],[-27,119],[-7,58],[-5,57],[-3,60],[6,66],[7,52],[13,55],[31,110],[29,60],[34,63],[28,40],[38,52],[40,46],[36,36],[39,33],[48,37],[48,32],[65,36],[144,65],[70,40],[77,53],[63,52],[34,31],[76,86],[32,40],[67,105],[36,72],[36,95],[31,105],[13,62],[11,87],[6,103],[-6,93],[-62,464],[-13,103],[-3,50],[0,90],[9,88],[12,63],[24,93],[25,74],[63,126],[53,78],[432,548],[181,237],[182,227],[106,135],[198,254],[75,103],[103,157],[64,113],[89,188],[62,149],[81,206],[103,266],[114,289],[110,287],[41,106],[45,89],[79,120],[74,85],[47,47],[82,70],[73,52],[393,288],[88,52],[25,19],[85,92],[42,48],[55,71],[38,62],[46,86],[37,84],[38,125],[198,734],[18,62],[64,225],[126,474],[125,483],[41,163],[53,222],[162,643],[77,313],[88,376],[29,122],[20,92],[15,82],[8,60],[6,73],[6,99],[2,90],[-5,430],[1,132],[3,46],[11,93],[6,33],[18,77],[31,122],[22,61],[25,67],[59,136],[34,67],[46,73],[91,113],[96,116],[43,48],[57,58],[94,80],[83,65],[66,45],[43,27],[54,29],[55,24],[146,58],[431,176],[382,133],[250,108],[193,151],[101,99],[36,46],[73,95],[51,83],[45,88],[39,100],[39,137],[25,153],[8,135],[-14,125],[-25,102],[-70,308],[-88,421],[-44,189],[-106,496],[-118,525],[-78,300],[-71,335],[-44,248],[-30,216],[-26,273],[1,26],[-5,166],[2,128],[9,202],[24,221],[24,163],[18,112],[36,159],[4,28],[43,173],[37,141],[45,141],[55,152],[383,948],[210,547],[156,372],[42,104],[375,933],[106,313],[55,215],[62,273],[14,73],[17,127],[7,89],[18,162],[19,794],[9,132],[-1,171],[-4,316],[-3,183],[3,48],[6,53],[9,42],[10,37],[14,36],[16,34],[25,46],[25,34],[19,30],[26,31],[23,14],[45,39],[67,52],[34,25],[105,68],[75,45],[78,44],[70,38],[98,50],[159,76],[157,76],[44,24],[104,64],[57,43],[76,61],[64,60],[87,105],[67,91],[58,92],[60,112],[92,188],[39,87],[23,58],[43,169],[26,127],[9,67],[9,77],[8,89],[3,132],[-5,111],[-10,101],[-20,137],[-24,122],[-49,233],[-21,111],[-16,92],[-11,109],[-4,63],[2,152],[4,61],[12,136],[12,89],[13,70],[36,175],[13,98],[17,176],[7,157],[1,196],[-11,120],[-2,63],[-5,177],[-17,197],[-30,214],[-26,150],[-53,240],[-32,127],[-57,213],[-12,53],[-17,116],[-12,119],[-2,62],[0,75],[1,51],[5,73],[8,68],[21,118],[20,87],[13,45],[23,73],[24,64],[25,61],[42,88],[25,46],[26,46],[84,131],[37,55],[310,440],[439,704],[108,181],[147,236],[42,74],[55,102],[55,128],[42,113],[49,155],[21,80],[128,543],[29,120],[47,190],[13,49],[35,98],[38,82],[52,96],[62,90],[58,66],[66,64],[51,39],[65,43],[57,28],[59,25],[191,59],[131,48],[52,22],[73,34],[89,42],[128,69],[182,108],[162,94],[161,98],[129,76],[287,173],[93,55],[111,72],[127,94],[100,87],[95,95],[77,86],[57,70],[33,38],[612,733],[801,961],[132,160],[434,517],[237,297],[366,442],[59,71],[382,453],[79,96],[193,218],[55,77],[37,61],[31,54],[25,54],[23,55],[36,174],[11,97],[1,74],[-4,126],[-4,81],[-23,507],[-5,145],[1,14],[-6,126],[8,133],[65,438],[21,109],[26,82],[24,58],[28,60],[39,61],[57,65],[59,52],[100,59],[100,41],[97,30],[89,20],[77,15],[70,0],[83,-11],[68,-11],[264,-73],[149,-38],[77,-17],[72,-12],[65,-6],[84,-4],[86,1],[81,10],[99,16],[61,12],[66,20],[55,20],[64,31],[65,40],[54,37],[64,51],[68,71],[77,87],[46,63],[31,47],[34,62],[42,88],[22,58],[33,97],[10,47],[18,100],[56,511],[29,247],[14,59],[28,69],[38,63],[23,31],[47,55],[36,37],[30,26],[57,45],[66,45],[54,33],[35,19],[77,37],[62,24],[52,17],[63,16],[75,12],[138,13],[67,0],[72,-6],[133,-23],[50,-14],[100,-35],[100,-33],[74,-16],[94,-10],[40,-1],[49,3],[38,5],[76,16],[71,20],[133,45],[53,24],[54,28],[72,44],[73,49],[50,37],[77,63],[106,94],[128,118],[205,207],[96,105],[86,98],[84,100],[80,101],[39,51],[77,103],[38,53],[72,105],[69,106],[173,269],[36,58],[32,55],[30,56],[29,57],[25,57],[25,58],[22,59],[21,60],[19,60],[16,61],[15,63],[14,64],[10,64],[9,65],[62,522],[17,126],[10,64],[13,65],[28,129],[16,64],[36,128],[39,125],[158,496],[78,209],[26,159],[65,229],[77,217],[120,271],[76,198],[97,279],[55,272],[27,98],[25,63],[78,164],[135,218],[81,130],[64,102],[54,99],[125,266],[57,140],[75,215],[46,152],[81,136],[77,105],[145,191],[162,220],[61,115],[40,88],[84,213],[57,88],[125,166],[10,12],[80,70],[164,166],[121,154],[85,109],[36,48],[59,109],[195,318],[163,274],[117,186],[119,164],[120,176],[130,279],[44,130],[56,190],[51,174],[31,86],[87,140],[99,147],[67,70],[75,56],[53,36],[128,68],[105,42],[210,48],[156,27],[108,31],[320,101],[120,40],[91,32],[164,50],[139,52],[65,29],[12,10],[-36,73],[-71,45],[-34,38],[-5,20],[-9,67],[-22,60],[-12,41],[-22,57],[-21,39],[-14,36],[-23,41],[-31,44],[-37,43],[-20,18],[-51,31],[-35,19],[-28,10],[-67,1],[-39,-3],[-25,1],[-39,-6],[-35,-9],[-20,0],[-48,-10],[-29,-10],[-32,-3],[-32,-13],[-40,-22],[-36,-26],[-19,-24],[-47,-36],[-27,-17],[-23,-26],[-13,-39],[-8,-9],[-48,-27],[-28,-10],[-22,-15],[-15,-25],[-17,-41],[-13,-40],[-7,-10],[-28,-10],[-20,16],[-21,3],[-47,-17],[-24,0],[-43,-24],[-19,-1],[-35,-31],[-21,-39],[-21,-13],[-19,-1],[-13,-11],[-26,-10],[-26,-41],[-1,-17],[-21,-14],[-16,-16],[-15,-5],[-174,139],[-21,11],[-4,17],[20,74],[20,44],[30,34],[33,46],[1,46],[-74,51],[4,81],[8,22],[-8,18],[-26,15],[-5,16],[20,38],[28,23],[-1,10],[-20,-6],[-40,23],[-13,24],[-18,10],[-35,11],[-23,-13],[-30,2],[-46,-10],[-16,-7],[-16,4],[-11,10],[-11,-9],[-4,-29],[-5,-6],[-17,14],[-31,0],[-36,-7],[-23,-9],[-28,-4],[-6,29],[-12,10],[-21,-5],[-11,20],[-8,6],[-38,13],[-6,11],[15,19],[-33,33],[-21,14],[-44,0],[-45,-11],[-25,-22],[-35,-8],[-43,-21],[-29,-2],[-2,51],[-68,13],[-63,16],[-183,15],[-86,19],[-72,-3],[-2,-50],[13,-130],[-20,-22],[-31,-5],[-16,18],[-74,32],[7,19],[-12,24],[-40,21],[-12,-20],[-8,-3],[-12,24],[-14,9],[-20,0],[3,-21],[-2,-40],[-7,-9],[-10,9],[-5,27],[-31,6],[-32,13],[-38,-2],[-46,-11],[-26,29],[-40,14],[10,34],[-10,7],[-13,-1],[-6,-14],[-16,-15],[-23,-5],[-13,-9],[8,-24],[-19,-18],[-21,19],[-8,18],[-4,28],[-61,-6],[-30,7],[-18,-18],[-8,-43],[-10,2],[-20,29],[-15,-2],[-1,-20],[-9,-10],[-30,10],[-21,-1],[-4,-6],[0,-29],[-30,-16],[-15,6],[-11,16],[-10,2],[-14,-20],[-13,6],[-5,21],[-22,2],[-19,-4],[-12,-10],[-16,13],[-12,2],[3,20],[-9,12],[-22,11],[-10,-9],[-11,-28],[-27,-21],[-19,12],[-13,0],[-33,10],[-23,14],[-17,3],[-42,39],[-31,15],[-48,1],[-18,-24],[-35,5],[-22,0],[-28,-7],[-7,9],[-2,30],[-6,7],[-17,0],[-13,-14],[-21,-13],[-32,-9],[-12,13],[14,25],[-2,16],[-13,4],[-17,-10],[-18,-1],[-44,6],[-20,24],[-37,-3],[-53,68],[-7,21],[11,28],[-10,19],[-19,9],[-21,3],[-15,10],[-25,-2],[-23,-21],[-30,-8],[-10,9],[3,35],[-8,14],[-30,-3],[-9,3],[-8,24],[-14,28],[2,13],[13,9],[0,10],[-25,7],[-17,-4],[-47,-5],[-18,-18],[-33,-7],[-18,-24],[-29,17],[0,12],[16,22],[-4,14],[-13,4],[-18,-6],[-8,4],[-10,34],[-12,7],[-45,2],[-8,4],[-3,13],[6,20],[-30,37],[-23,-5],[-24,6],[-22,17],[-6,26],[0,18],[7,6],[8,-21],[21,4],[15,13],[-10,10],[-20,11],[-16,29],[-10,7],[-11,-3],[-18,-32],[-6,-31],[-28,0],[-23,12],[-9,-5],[-4,-18],[-19,-26],[-20,-13],[-26,-6],[-21,-12],[-16,6],[-7,14],[14,24],[-27,36],[6,30],[-15,2],[-11,-20],[-16,-2],[-23,-25],[-37,9],[0,17],[18,14],[2,15],[-9,4],[-14,-11],[-24,6],[-15,24],[-17,10],[-15,3],[-20,10],[-11,-1],[-17,-27],[22,-29],[-10,-22],[-23,11],[-14,16],[-1,16],[-26,14],[-7,18],[-18,2],[-19,-17],[-27,-6],[-12,6],[12,18],[3,18],[-16,9],[-17,-7],[-18,-51],[-21,-17],[-6,16],[19,35],[-11,9],[-12,-12],[-31,5],[-21,18],[-25,-18],[-8,-26],[2,-21],[-14,-20],[-31,14],[-13,35],[4,18],[-5,12],[18,11],[18,4],[2,13],[-15,-1],[-20,10],[-20,-1],[-34,19],[-16,23],[11,26],[26,-3],[7,26],[-20,11],[-26,1],[-35,-25],[-15,-1],[-45,15],[-68,26],[-25,1],[-25,27],[-58,10],[-12,-46],[-12,-24],[-21,3],[-11,-18],[-28,-1],[4,26],[-5,11],[-21,-5],[-17,-26],[-6,-15],[-10,1],[0,21],[-13,17],[-4,27],[-22,14],[-13,-10],[-6,-17],[-16,-2],[-26,3],[-31,16],[-25,4],[-10,-19],[-12,-1],[-29,6],[-22,-11],[-33,7],[-33,-10],[-12,4],[-19,23],[-28,25],[-9,4],[-27,-14],[-19,16],[-9,26],[-8,6],[-45,2],[-4,-7],[15,-34],[-9,-17],[-16,8],[-8,29],[-14,21],[8,22],[2,22],[12,37],[-40,32],[-69,28],[-1,10],[32,21],[-5,20],[-24,8],[-14,-5],[-29,-23],[-8,4],[-17,31],[-24,-4],[-9,-9],[-13,1],[-6,11],[13,21],[-2,11],[-11,7],[-16,-3],[-15,-12],[-12,-2],[-43,8],[-40,-7],[-10,1],[-73,23],[-17,20],[-10,24],[-16,14],[-3,25],[-6,13],[-34,-3],[-72,7],[-41,-1],[-13,10],[-15,24],[-19,17],[-37,16],[-17,10],[-21,22],[-13,2],[-19,-25],[-1,-13],[-28,-17],[-17,-14],[-2,8],[11,19],[1,20],[-12,7],[-20,-15],[-5,22],[7,16],[-7,39],[-11,16],[-15,4],[-11,-20],[-10,1],[-8,12],[-6,33],[-9,17],[2,18],[-8,59],[-32,5],[-27,12],[-28,-12],[-26,-2],[-10,5],[-24,23],[-23,6],[-14,13],[4,9],[23,8],[7,11],[-3,25],[-19,-6],[-21,0],[-6,5],[-7,36],[22,9],[8,13],[4,29],[16,15],[-3,16],[-21,8],[-2,7],[16,16],[-12,47],[-8,10],[-20,9],[11,23],[-1,18],[-37,56],[15,24],[0,10],[-16,6],[-16,13],[-73,10],[-21,8],[-27,37],[-37,34],[-13,4],[-29,-11],[-42,-3],[-24,38],[-18,0],[-13,17],[-32,29],[-2,18],[-11,14],[-22,15],[-7,27],[-11,9],[-10,33],[2,38],[-17,38],[-23,24],[-9,-3],[-18,-24],[-29,6],[-3,14],[-22,11],[-10,15],[-10,38],[-4,31],[-13,20],[-18,16],[-37,38],[-23,41],[-40,11],[-9,9],[3,22],[-74,2],[-10,11],[-14,-20],[-21,-23],[-17,-1],[-10,22],[-17,8],[-9,-12],[14,-16],[-3,-10],[-16,0],[-10,47],[-12,-4],[-14,-29],[-11,-11],[-12,26],[-23,13],[2,27],[-10,22],[-24,4],[13,-27],[-8,-16],[-16,-9],[9,25],[-23,8],[-32,-12],[-16,-1],[-18,9],[-5,18],[10,-6],[17,4],[9,26],[-15,5],[-27,15],[-24,7],[-14,-36],[-7,2],[2,22],[-11,8],[-22,-19],[-11,-1],[-17,13],[-19,6],[-19,-8],[-15,3],[-24,17],[-16,31],[-9,-6],[-6,-20],[-6,-2],[-28,22],[-23,6],[-16,19],[-49,16],[-5,25],[-39,-5],[-17,11],[5,12],[31,-3],[13,13],[-4,34],[-17,6],[-12,-20],[-9,3],[-6,15],[4,14],[-27,10],[-29,-2],[-16,-9],[-8,-12],[-30,19],[-2,14],[7,21],[-28,-1],[-25,4],[-45,-5],[-9,-8],[-15,-2],[-14,8],[-18,0],[-18,-12],[-11,-23],[-10,3],[-18,18],[-14,1],[-18,-12],[-19,6],[-14,-7],[-32,3],[-19,-6],[-20,-12],[-27,-4],[-31,6],[-14,-8],[-27,27],[-24,32],[-17,-14],[-17,-6],[-14,11],[-4,19],[-17,58],[28,23],[5,19],[-14,7],[-29,-11],[-16,0],[1,24],[-12,12],[-12,-2],[-15,-27],[-19,9],[3,15],[-11,13],[14,17],[0,7],[-23,15],[-6,-17],[-15,-2],[-22,-11],[12,-21],[22,-14],[-21,-16],[-19,0],[-5,21],[-23,7],[-22,-10],[20,-26],[-2,-12],[-62,14],[-24,28],[-22,-8],[-5,13],[2,31],[-8,3],[-9,-10],[-5,-22],[-14,-4],[-7,14],[5,19],[-15,14],[-8,-2],[-14,-19],[-14,14],[-5,13],[9,24],[-3,40],[5,13],[-12,16],[-1,11],[11,20],[32,14],[-4,12],[-15,-6],[-8,5],[-3,17],[3,25],[-14,7],[-17,-2],[-16,31],[-29,9],[-22,22],[10,26],[-32,2],[-12,-9],[1,-21],[-8,-6],[-32,18],[-40,-47],[-14,-2],[-15,13],[7,20],[-10,8],[-21,-12],[-7,10],[2,17],[-9,4],[-27,-4],[-8,9],[17,22],[0,10],[-38,8],[-27,-8],[-6,7],[-3,24],[-50,7],[-20,11],[-18,-9],[-13,12],[0,18],[-23,0],[5,-19],[-11,-12],[-10,-2],[-14,11],[-28,39],[-8,2],[0,23],[-30,4],[9,21],[-3,17],[-18,17],[-31,-5],[-16,-21],[-19,3],[-18,20],[-19,-9],[-12,9],[-31,-17],[-27,19],[-21,23],[-6,20],[-18,4],[-19,-3],[-36,6],[-51,-11],[-9,-11],[-53,-14],[-14,4],[-13,14],[-28,-14],[-4,-17],[-10,-7],[-13,10],[-7,15],[-12,0],[-38,-33],[-11,7],[11,22],[-18,9],[-9,-6],[8,-15],[-12,-7],[-27,7],[-11,-3],[-13,-15],[11,-15],[19,11],[5,-10],[-12,-21],[-22,5],[-5,14],[-13,6],[-13,-5],[-2,-10],[-23,-9],[4,-19],[-5,-6],[-17,9],[-22,0],[-4,-12],[11,-15],[-27,-22],[-18,13],[-13,-10],[-24,-38],[-39,0],[-11,-17],[-16,-2],[-37,32],[-9,-5],[8,-22],[-15,-14],[-29,-4],[-9,10],[10,19],[-2,18],[-10,8],[-12,-11],[1,-13],[-9,-8],[-26,-1],[-15,22],[-45,32],[-12,28],[-19,4],[-15,9],[-19,-6],[-16,-12],[-27,-5],[-15,-17],[-24,-14],[-38,-10],[-8,2],[-16,35],[-9,9],[5,10],[-6,132],[23,18],[6,29],[-34,8],[-45,32],[-32,36],[32,20],[10,15],[5,20],[-15,55],[-12,23],[-40,54],[12,8],[-7,18],[-10,-7],[-8,34],[4,94],[-11,52],[-26,-2],[-95,-39],[-7,-5],[-50,12],[-26,9],[-44,30],[8,39],[6,60],[10,43],[-1,51],[-4,33],[-18,56],[-5,25],[3,62],[-9,29],[-79,72],[-12,19],[-14,-2],[-116,-5],[-7,-12],[-46,-2],[-10,2],[-7,15],[-10,4],[-36,2],[-65,11],[-15,-8],[-60,3],[5,66],[4,19],[24,38],[-28,15],[-52,19],[-14,-10],[-18,4],[2,18],[-32,1],[5,32],[-55,11],[-23,13],[-63,17],[-26,13],[-99,34],[13,42],[15,61],[-56,14],[-79,25],[9,35],[-80,8],[8,51],[13,46],[4,44],[-2,19],[-6,0],[1,22],[-11,0],[-9,21],[22,7],[-14,25],[7,36],[-4,31],[2,58],[-8,27],[-11,27],[-13,12],[-29,-17],[-26,-8],[-30,-1],[-51,-18],[12,-38],[-43,-1],[-57,-13],[-14,49],[-12,61],[-11,45],[-50,29],[-41,4],[-37,8],[-26,25],[8,8],[-80,12],[-30,-1],[-35,24],[-118,7],[-16,-24],[-26,-77],[-1,-28],[24,-61],[4,-41],[-9,-47],[-82,-123],[-37,-59],[-42,-43],[-33,-37],[-21,-31],[-18,-34],[-12,-48],[-40,-93],[0,-74],[-60,-78],[-28,-93],[-39,-45],[-58,-19],[-34,-16],[-36,-34],[-69,-84],[-80,-49],[-75,-6],[-46,-12],[-67,-38],[4,43],[14,45],[22,18],[-36,41],[-33,-3],[-24,19],[-19,28],[-7,23],[-39,42],[-9,29],[-1,33],[12,43],[-139,-8],[-68,-6],[-13,-21],[-63,13],[-58,7],[-12,8],[-31,-24],[-42,11],[-11,29],[-16,17],[-13,6],[-66,8],[-13,7],[-25,4],[-30,22],[-23,8],[-9,-3],[-14,-16],[-12,1],[-19,19],[-38,6],[-55,22],[-12,9],[-39,8],[-27,14],[-29,6],[-18,11],[-23,44],[-11,9],[-22,27],[-70,57],[-21,3],[-40,-17],[-28,-22],[-11,-28],[-18,-20],[-27,-13],[-33,-24],[-28,-28],[-22,-28],[-19,-11],[-80,-36],[-22,1],[-85,-15],[16,-23],[4,-16],[-9,-55],[-36,-47],[-23,-39],[-9,-10],[-72,-38],[-16,-4],[-36,-24],[-8,-3],[-21,-31],[-3,-18],[-25,-35],[-24,-20],[-37,-19],[-27,-30],[-1,-11],[-18,-45],[-13,-20],[-33,-30],[-39,-29],[-8,-15],[-9,-57],[-31,-50],[-38,-48],[-41,-69],[-7,-19],[-18,-19],[-15,-24],[-6,-20],[-27,-46],[-11,-12],[-20,-9],[-32,1],[-32,10],[-26,13],[-33,11],[-41,17],[-39,21],[-61,41],[-57,28],[-86,9],[-45,-1],[-64,5],[-81,15],[-37,15],[-27,30],[-36,43],[-61,81],[9,23],[2,18],[-13,69],[-1,50],[-12,40],[-3,47],[-2,52],[-7,41],[-47,78],[-35,49],[-5,3],[-49,-58],[-11,-18],[-90,-26],[-75,7],[-56,19],[-1,25],[9,88],[-29,21],[-31,26],[-55,35],[-45,5],[-39,18],[-39,7],[-79,28],[-63,52],[-110,5],[-75,-21],[-82,3],[-35,34],[-28,54],[-13,52],[-11,22],[-54,64],[-75,79],[-9,64],[-64,32],[-52,21],[-203,72],[-33,38],[-129,18],[-26,20],[-88,85],[-29,25],[-38,69],[-16,107],[-20,73],[-37,64],[-76,48],[-71,13],[-120,30],[-43,17],[-47,21],[-36,37],[-54,30],[-128,49],[-93,42],[-138,65],[-101,-264],[-15,-75],[-22,3],[-35,-63],[-42,-39],[-42,-28],[16,-43],[-60,-48],[-57,7],[-75,21],[-90,-6],[-49,3],[-109,1],[-85,-61],[-115,-78],[-50,-76],[-70,-103],[-69,-116],[-114,-157],[20,-44],[-1,-14],[-13,-40],[-44,-91],[-95,-55],[-53,-24],[-45,-18],[-193,-47],[-94,-11],[-53,-1],[-57,-10],[-15,17],[-38,33],[-152,114],[-43,19],[-63,15],[-53,-35],[-122,-87],[-167,31],[-150,37],[-31,-36],[-110,-118],[-21,-12],[-8,-22],[-14,-21],[-49,-26],[-73,8],[-20,-12],[-67,3],[-21,-3],[-27,93],[-10,86],[1,65],[5,102],[-7,65],[14,120],[17,5],[-20,83],[-9,23],[-3,50],[-13,14],[1,55],[10,41],[20,35],[-46,-4],[-32,-8],[-99,-19],[-31,-2],[-25,-13],[-67,-50],[-46,-40],[-23,-30],[-42,-44],[-9,-29],[-2,-35],[-7,-35],[-15,-13],[-25,12],[-3,-7],[-30,-10],[-64,21],[-41,62],[-47,31],[-17,41],[0,58],[-98,-13],[-60,-20],[-33,-6],[-46,-4],[-31,-16],[-29,-21],[-115,-14],[-76,-17],[-82,219],[-48,51],[-29,5],[-135,47],[-74,8],[-66,-34],[-50,-46],[-63,53],[-51,84],[-64,-89],[-69,-121],[-22,-42],[44,-60],[68,-37],[61,-30],[41,-26],[2,8],[45,-42],[2,-36],[7,-11],[-2,-19],[-18,-62],[-7,-15],[-42,-7],[3,-5],[-223,-47],[-316,29],[-92,-67],[-43,16],[-99,33],[-18,-17],[-16,-46],[-16,7],[-29,-39],[-33,-36],[-32,-26],[-35,-35],[-41,-51],[12,-19],[-34,-15],[-69,-19],[-20,4],[-94,34],[-256,93],[-78,29],[-352,142],[-474,152],[-508,140],[-176,67],[-159,55],[-1,9],[31,130],[28,100],[8,36],[-2,339],[-1,20],[-79,119],[-15,29],[-1,14],[15,61],[6,50],[5,133],[-3,32],[-25,84],[-10,42],[2,13],[19,56],[-4,22],[-42,45],[-19,14],[-28,6],[-143,15],[-194,17],[-59,3],[-34,5],[-22,8],[-123,73],[-89,46],[-109,87],[-41,27],[-136,94],[-67,69],[-119,126],[-26,16],[-102,53],[-103,52],[-22,6],[-52,-3],[-84,-8],[-158,-28],[-499,-86],[-271,-42],[-75,-14],[-170,-35],[-74,-19],[-116,-24],[-41,-2],[-77,9],[-175,27],[-24,7],[-106,75],[-124,78],[-55,38],[-58,34],[-68,35],[-225,131],[-132,89],[-110,86],[-47,40],[-51,46],[-87,94],[-32,27],[-141,105],[-109,86],[103,203],[-316,33],[-126,12],[14,80],[-2,43],[8,57],[2,35],[12,104],[6,35],[-5,12],[-37,61],[-8,27],[0,21],[-21,10],[-86,-6],[-38,3],[-11,8],[-40,48],[0,21],[18,19],[-14,15],[-27,14],[-16,15],[-16,26],[-75,144],[-42,136],[-3,34],[16,60],[0,25],[-24,121],[-27,83],[-23,65],[-38,103],[-25,56],[-28,55],[-49,89],[-32,50],[-32,59],[-13,10],[-161,94],[-16,5],[-301,-1],[-4,3],[-57,181],[-30,78],[-117,198],[-6,17],[4,35],[-19,29],[-21,24],[-12,23],[-45,130],[-14,43],[-45,109],[-25,6],[-27,43],[-14,16],[-20,14],[-79,28],[-48,9],[-34,11],[-50,9],[-66,6],[-55,2],[-8,169],[0,47],[14,114],[17,89],[271,-59],[60,65],[-35,36],[-31,47],[85,157],[21,28],[85,91],[133,139],[25,27],[30,16],[127,48],[8,9],[5,23],[6,65],[13,212],[-181,22],[-171,19],[-73,21],[-14,3],[-68,-40],[-60,172],[-66,201],[-12,40],[-22,190],[-6,73],[2,19],[11,43],[57,208],[2,20],[-4,64],[-139,-26],[-2,39],[-275,5],[-148,0],[-25,-3],[-90,-29],[-110,-32],[-298,-26],[-46,-25],[-26,-7],[-98,-33],[-49,-5],[-42,-105],[-22,-40],[-16,-22],[-27,-26],[-83,-56],[-90,-48],[-80,-36],[-31,-3],[-22,2],[-44,13],[-11,9],[-12,21],[-9,39],[-19,31],[-2,44],[-13,26],[-15,7],[-21,18],[-21,9],[7,25],[-4,8],[-25,20],[-39,20],[-20,21],[-11,1],[-9,-23],[-9,-2],[-34,20],[-4,18],[-12,12],[-12,-18],[-38,29],[-33,12],[-54,33],[-24,20],[-27,9],[-15,-3],[-22,16],[-9,-12],[-27,-13],[-34,-7],[-20,-24],[-27,-17],[-18,-7],[-15,-12],[-24,-3],[-8,-6],[17,-8],[1,-10],[-41,-33],[-14,-30],[-14,-11],[-19,-27],[-19,-11],[-21,-22],[-38,-33],[-30,-16],[-53,-25],[-32,2],[-29,-7],[-28,5],[-31,0],[-50,20],[-41,11],[-26,13],[-36,26],[-39,40],[-1,16],[16,9],[4,13],[-15,11],[9,30],[23,8],[2,14],[-11,17],[-17,15],[-1,20],[24,29],[18,-4],[31,6],[80,35],[-7,11],[4,16],[22,-10],[29,3],[23,14],[21,6],[34,19],[26,21],[18,5],[23,30],[8,-4],[27,7],[12,12],[11,19],[4,25],[17,-5],[6,15],[3,38],[11,27],[-10,26],[-13,59],[-23,31],[-5,23],[3,20],[-5,14],[-17,12],[-21,26],[-34,59],[-23,7],[-22,-10],[-28,19],[-28,13],[-24,24],[-22,8],[-11,20],[8,23],[-17,2],[-2,8],[23,9],[4,9],[-18,10],[-24,46],[9,52],[18,19],[5,24],[-8,7],[-15,-6],[-9,4],[3,11],[14,5],[18,-3],[21,-10],[25,8],[21,26],[31,10],[16,15],[6,-23],[50,7],[21,13],[12,28],[20,8],[21,19],[22,11],[68,19],[46,27],[26,22],[28,30],[5,11],[18,61],[8,11],[-55,-5],[-132,-30],[-106,-25],[-125,-27],[-434,-89],[-129,-26],[-127,-27],[-242,-49],[-305,-63],[-697,-151],[-64,-13],[-748,-155],[-69,-10],[-17,-4],[-139,-47],[-142,-45],[-194,-58],[-189,-53],[-13,-6],[2,-18],[-8,-7],[8,-41],[2,-32],[-11,-27],[-16,-80],[11,-60],[-19,-58],[0,-51],[14,-44],[10,-22],[19,-67],[11,-25],[-1,-31],[14,-21],[121,-110],[14,-18],[5,-17],[1,-25],[-9,-17],[-26,-21],[-23,-10],[-22,-4],[-31,-18],[-13,-25],[-20,-19],[-33,-46],[-107,-165],[-27,-46],[-3,-15],[4,-42],[17,8],[-19,-17],[-11,-19],[-43,-164],[2,-77],[5,-31],[23,-91],[3,-27],[21,-93],[-5,-12],[3,-35],[-2,-44],[24,-67],[-9,-37],[11,-50],[-63,-6],[-8,-31],[14,-49],[40,-52],[-1,-5],[-88,19],[-68,12],[-100,12],[-47,2],[-83,-6],[-80,-4],[-180,-18],[-87,-10],[-105,-6],[-38,16],[-67,58],[-84,68],[-5,3],[-404,-12],[-74,-5],[-81,-3],[-207,-120],[-207,-132],[-194,-133],[-90,-73],[-72,-77],[-29,-29],[-32,-78],[-23,-96],[-9,-48],[-17,-43],[-10,-47],[-12,-34],[-5,-5],[-4,-26],[8,-42],[-9,-42],[-15,-33],[-37,-56],[-49,-44],[-20,-11],[-53,-36],[-16,-17],[-29,-41],[-33,-13],[-24,-28],[-22,-42],[-28,-89],[-12,-68],[5,-37],[-3,-22],[-7,-2],[-126,-139],[-9,-12],[-86,-134],[-54,-154],[-236,-157],[-14,-8],[-92,51],[-6,2],[-271,52],[-164,36],[10,93],[53,213],[1,91],[-3,36],[10,49],[-112,67],[-16,-26],[-13,-13],[11,-13],[6,-29],[-7,-6],[-20,13],[-19,-7],[-3,-20],[4,-9],[-8,-19],[-71,13],[-20,-21],[-26,-10],[-29,7],[-59,46],[-124,70],[-38,7],[-43,0],[-27,-23],[-47,-15],[-99,7],[-52,-13],[-27,-68],[-53,0],[-7,3],[-168,67],[-167,65],[-467,189],[-157,127],[-26,10],[-25,64],[-205,-53],[-96,-35],[-89,5],[-19,-13],[-37,1],[-11,-8],[-216,-135],[-49,-26],[-102,-23],[-51,-16],[-213,-24],[-83,-19],[-37,-6],[-65,6],[-145,7],[-80,-35],[-52,-15],[-48,-6],[-87,-4],[-87,-2],[-11,-36],[-12,-29],[-8,-6],[-12,5],[-110,0],[-30,-42],[-25,-17],[-29,-10],[7,-88],[-9,-70],[-17,-33],[-59,-95],[-43,-107],[-37,-70],[-24,-27],[-30,-27],[-31,-13],[-24,-4],[-5,15],[-17,18],[-35,67],[-8,42],[19,42],[9,9],[9,30],[1,39],[-19,55],[6,13],[-32,54],[-9,85],[-41,37],[-242,260],[53,39],[-38,54],[-39,70],[-73,-1],[-61,-15],[-44,113],[-29,55],[1,10],[-15,3],[16,60],[-87,20],[-21,-105],[-89,12],[-59,-6],[-72,1],[-70,6],[-12,-5],[30,-116],[-9,-5],[-34,1],[-34,-25],[-45,38],[-32,20],[-23,20],[-23,-25],[-27,-17],[-83,-39],[-42,-8],[-147,-48],[-88,109],[-58,-12],[-10,-14],[-67,-96],[-38,-74],[-36,-79],[-18,-51],[-76,-106],[-32,-43],[41,-41],[-45,-90],[-100,33],[-50,28],[-29,23],[-21,24],[-24,35],[-26,43],[-47,39],[-42,42],[-16,12],[-7,-3],[-25,23],[-15,6],[-20,32],[-31,9],[-25,2],[-87,20],[-82,9],[-62,3],[-50,9],[-38,11],[-24,16],[-31,40],[-10,21],[-21,26],[-45,46],[-22,13],[-30,13],[-25,5],[-50,5],[-77,-11],[-32,16],[-17,42],[0,17],[-23,39],[-14,9],[-10,27],[-16,31],[-11,10],[-34,17],[-32,9],[-33,18],[-10,13],[-2,26],[17,96],[1,24],[-6,23],[-22,44],[-33,32],[-11,-9],[-8,23],[18,6],[-39,78],[-19,21],[-15,33],[-5,24],[2,58],[-4,17],[-18,35],[-51,46],[-27,35],[-16,31],[-8,31],[-2,48],[-10,13],[-79,2],[-87,-5],[-32,-4],[-31,-8],[-113,-59],[-56,-39],[-43,-22],[-42,-12],[-297,-27],[-89,-7],[-37,-6],[-23,-10],[-67,-52],[-44,-14],[-34,1],[-16,11],[-16,25],[-20,63],[-16,91],[-3,39],[7,154],[4,37],[12,40],[27,71],[26,38],[88,89],[25,22],[135,84],[45,33],[85,70],[16,21],[36,66],[6,29],[-28,16],[-39,28],[-27,4],[-16,-6],[-20,1],[-49,-4],[-58,-9],[-26,3],[-17,8],[-27,20],[-6,17],[17,58],[0,37],[-9,24],[-14,25],[-31,22],[-33,9],[-76,8],[-81,15],[-10,0],[-31,-14],[-14,-3],[-58,3],[-19,-2],[-30,-11],[-23,-13],[-43,-32],[-61,-63],[-36,-61],[-19,-17],[-37,-12],[-40,0],[-15,-3],[-30,-16],[-58,-26],[-34,-10],[-18,-2],[-164,14],[-19,6],[-32,22],[-9,11],[-24,38],[-16,19],[-16,7],[-23,-1],[-16,-9],[-47,-34],[-13,-24],[-17,-63],[-16,-86],[-29,-43],[-26,-32],[-15,-24],[-7,-21],[1,-20],[18,-61],[10,-52],[20,-38],[33,-44],[45,-45],[55,-49],[13,-30],[-2,-22],[-8,-16],[-21,-29],[-43,-50],[-40,-40],[-4,-19],[6,-13],[27,-34],[38,-34],[23,-14],[11,-18],[9,-54],[7,-28],[15,-27],[53,-65],[18,-27],[33,-57],[86,-139],[57,-98],[15,-33],[2,-40],[6,-66],[-8,-35],[-24,-37],[-28,-26],[-39,-29],[-31,-19],[-90,-48],[-70,-31],[-33,-12],[-177,-56],[-51,-19],[-109,-46],[-16,-18],[-93,-43],[-24,-17],[-69,-51],[-27,-26],[-27,-31],[-15,-24],[-7,-52],[-7,-17],[-41,-43],[-47,-72],[-16,-34],[-12,-47],[-5,-78],[2,-38],[7,-41],[4,-43],[-6,-42],[-8,-29],[-30,-58],[-41,-59],[-13,-12],[-29,-12],[-57,-19],[-37,-14],[-60,-33],[-62,-27],[-69,-28],[-53,-17],[-56,-13],[-44,-6],[-33,2],[-34,6],[-41,11],[-38,13],[-98,40],[-39,31],[-21,27],[-54,38],[-30,16],[-47,45],[-30,41],[-50,86],[-42,84],[-41,64],[-13,40],[-10,52],[-6,52],[3,104],[10,155],[8,64],[18,118],[27,98],[9,118],[-1,87],[5,77],[20,79],[28,84],[7,46],[3,70],[-8,60],[-34,117],[-45,92],[-54,127],[-28,78],[-90,280],[-40,61],[-21,24],[-62,68],[-17,24],[-44,79],[-47,81],[-40,61],[-64,94],[-52,96],[-38,67],[-22,43],[-20,50],[-13,66],[-3,34],[5,35],[22,64],[26,48],[10,23],[14,63],[2,42],[-1,84],[-9,45],[-16,38],[-29,42],[-55,50],[-86,93],[-15,22],[-13,33],[-24,75],[-19,65],[-8,44],[-2,54],[5,84],[7,94],[17,115],[8,30],[16,36],[101,143],[106,174],[14,36],[20,100],[7,63],[-5,46],[-11,79],[-11,181],[2,35],[7,43],[10,32],[23,58],[36,81],[5,44],[-131,-17],[-131,-18],[3,-22],[-22,5],[-62,-8],[-2,34],[-14,-2],[3,-16],[-16,-12],[-29,-35],[-34,-31],[-12,11],[-64,-26],[11,-31],[-43,-15],[-11,29],[-14,-6],[-52,56],[-13,19],[-4,34],[9,113],[-1,8],[-27,59],[-96,-31],[-35,-15],[-92,-53],[-64,-48],[-20,-28],[-88,-158],[-126,-48],[-59,287],[-38,151],[-107,3],[-165,9],[-164,11],[-48,9],[-31,86],[-54,118],[-95,97],[-55,80],[-77,78],[-79,60],[-106,86],[-112,78],[-59,45],[-110,75],[-162,115],[-215,161],[-37,2],[-96,8],[-49,-24],[-343,-253],[-240,-186],[-65,36],[-26,17],[-65,37],[-54,48],[-81,77],[-126,123],[-8,11],[-318,431],[-72,69],[-148,135],[-65,324],[-18,89],[-196,-7],[-269,-23],[-5,23],[-38,-4],[-127,80],[-114,-52],[-162,-6],[-6,14],[-33,-4],[-3,-11],[12,-47],[-26,-13],[22,-86],[-18,-27],[19,-13],[-62,-88],[-86,-86],[-24,-22],[-74,-65],[-119,-101],[-7,-4],[-102,-28],[-174,-9],[-17,-2],[-235,-58],[-6,-4],[-221,-177],[-62,-71],[-64,-69],[-29,-24],[-79,31],[-27,18],[-257,125],[-231,94],[-350,157],[-31,17],[-35,27],[-15,15],[-33,91],[-13,28],[-3,52],[-8,16],[9,34],[-61,26],[-160,85],[-60,45],[-16,7],[-11,16],[-9,24],[-12,10],[1,11],[-26,20],[-5,9],[-43,17],[-16,-4],[-15,6],[-28,-2],[-45,6],[-22,15],[-32,10],[-31,-5],[-11,-13],[-33,-10],[-24,-15],[-3,-12],[-25,-9],[-8,-13],[-16,-1],[-1,-12],[-13,-9],[-21,-3],[3,-13],[-13,3],[-4,-17],[-20,-8],[-11,-18],[-15,-8],[-18,-17],[-23,-9],[-27,-29],[-30,-6],[-27,-21],[-21,-1],[-3,-24],[-28,-18],[-28,-38],[-23,-14],[-14,1],[-22,-29],[-16,-9],[-15,1],[-22,-25],[-17,-3],[-15,-28],[-18,-17],[-46,-20],[-43,-30],[-24,0],[-35,-13],[-4,-7],[-33,-14],[-14,-12],[-31,-17],[-146,-90],[-25,-7],[-26,-20],[-37,-43],[-3,-28],[-5,-5],[-12,-37],[-21,-37],[33,-27],[80,-50],[36,-7],[18,-10],[16,-21],[36,-10],[17,-36],[15,-11],[36,-10],[23,-24],[7,-35],[9,-22],[54,-68],[19,-30],[17,-14],[37,-45],[27,-20],[-6,-25],[20,-10],[40,-2],[11,-6],[8,-38],[7,-14],[37,-34],[15,-41],[46,-37],[40,-18],[4,-6],[-3,-29],[51,-66],[20,-24],[8,-20],[-5,-43],[13,-39],[-4,-37],[-9,-24],[-18,-30],[-27,-32],[-6,-12],[-4,-60],[-5,-99],[-11,-16],[-26,-8],[-1,-26],[22,-28],[-1,-8],[-18,-25],[2,-11],[15,-5],[12,7],[19,1],[8,-7],[8,-46],[24,-12],[13,-21],[15,3],[26,-33],[19,-34],[7,-41],[11,-16],[16,12],[21,-20],[2,-31],[28,-27],[9,-37],[56,-17],[13,-19],[-11,-31],[1,-11],[29,-18],[17,-40],[26,4],[9,-4],[19,-31],[4,-34],[13,-16],[-10,-51],[0,-12],[19,-6],[17,-21],[-12,-24],[11,-13],[-12,-19],[-11,-9],[2,-9],[21,-6],[20,-20],[24,-16],[8,-16],[13,-5],[4,-17],[16,-18],[2,-15],[31,-19],[-25,-69],[-6,-26],[4,-33],[18,-42],[12,-40],[-3,-8],[-21,-1],[-20,-18],[-25,-88],[-53,13],[1,-51],[-7,-22],[25,-10],[-23,-52],[-2,-30],[-7,-44],[-42,3],[-2,-25],[-30,8],[10,33],[-32,7],[-63,2],[-41,-12],[-52,-23],[-421,-96],[-43,-11],[3,-25],[-4,-30],[43,-250],[2,-28],[-9,-35],[-18,-129],[-4,-77],[1,-84],[-22,0],[13,-71],[39,-165],[20,3],[-10,-22],[5,-33],[43,-87],[38,-114],[-77,-50],[-49,-24],[-3,-10],[-19,-8],[-89,-55],[-52,-34],[-60,-42],[-179,-127],[-116,-75],[-166,60],[-141,62],[-164,87],[-166,140],[-202,110],[-75,0],[-89,2],[-197,24],[-84,52],[-82,91],[-19,25],[-108,61],[-44,63],[-41,13],[-56,10],[-104,26],[-52,19],[-93,0],[-69,14],[-40,16],[-44,30],[-50,69],[-16,30],[-50,65],[-72,29],[-47,15],[-62,35],[-52,34],[-56,22],[-41,6],[-36,13],[-115,16],[-9,0],[-62,-18],[-95,-38],[-100,-1],[-48,-12],[-69,-41],[-50,-16],[-62,-28],[-80,-19],[-44,-12],[-109,-37],[-67,-25],[-117,-21],[-78,1],[-73,11],[-146,74],[-74,28],[-27,8],[-86,13],[-45,6],[-72,-12],[-59,-33],[-141,-70],[-97,-41],[-100,-12],[-42,-13],[-81,-36],[-12,12],[-105,101],[-36,27],[-278,267],[-142,234],[-52,28],[-130,88],[-130,81],[-43,103],[-56,119],[-37,78],[-184,385],[-126,261],[2,7],[373,480],[58,68],[15,26],[99,125],[432,555],[8,13],[-114,228],[-48,102],[-46,93],[-16,37],[-16,45],[-164,428],[-3,8],[-68,66],[-104,102],[-63,-33],[-67,-36],[-89,-40],[-41,-30],[-56,-50],[-38,-20],[-23,-6],[-11,-9],[-28,-7],[-69,-24],[-23,-11],[-101,-56],[-22,-10],[-75,-25],[-5,0],[-24,25],[-16,-8],[-44,-1],[-10,8],[-26,3],[-5,6],[-37,4],[-12,-3],[-16,-16],[-24,-11],[-43,-9],[-21,-21],[-51,-16],[-11,-7],[-5,-17],[-40,-22],[-9,5],[-60,-4],[-17,31],[-33,41],[-77,97],[-56,67],[-37,51],[-70,84],[-12,19],[-10,34],[-38,103],[-2,34],[-13,90],[-1,19],[9,19],[17,76],[13,40],[5,25],[8,13],[1,32],[17,45],[-12,10],[10,12],[-1,21],[14,9],[2,20],[14,16],[28,59],[-8,27],[1,64],[-12,6],[1,10],[-13,9],[-8,19],[-20,5],[-11,19],[9,19],[-10,29],[12,10],[-13,13],[-5,28],[6,50],[11,16],[-2,24],[10,10],[1,13],[-9,16],[3,25],[-5,32],[-10,13],[4,10],[-21,20],[5,11],[-17,94],[-6,13],[-15,10],[-29,27],[-88,58],[-7,7],[-4,23],[-22,77],[-14,11],[-9,27],[3,23],[25,68],[-9,19],[16,35],[32,24],[2,16],[15,-5],[3,19],[33,5],[14,7],[-3,13],[12,11],[-4,11],[19,13],[-1,9],[-14,6],[10,12],[20,1],[0,14],[22,7],[8,8],[-6,33],[2,14],[22,14],[6,12],[29,15],[10,26],[17,-5],[6,18],[-31,133],[-28,-1],[-40,-21],[-29,-7],[-90,112],[-22,22],[-27,64],[-53,49],[-18,29],[5,24],[-182,50],[-46,44],[-73,39],[-28,23],[-29,32],[-16,29],[-21,49],[-10,31],[-21,-26],[-70,-43],[-52,-22],[-105,-29],[-9,-9],[-13,-40],[-22,-14],[-97,-21],[-82,-13],[-35,6],[-40,-6],[-95,187],[-23,43],[-19,25],[-3,53],[-10,66],[-8,42],[-13,38],[-19,35],[53,91],[100,187],[66,95],[77,106],[29,174],[25,5],[5,26],[2,39],[-14,105],[-21,119],[-29,99],[-26,80],[100,48],[56,113],[21,35],[35,50],[-92,17],[-14,-13],[-35,26],[-189,89],[-22,-21],[-33,31],[-15,-13],[-22,38],[-16,-14],[-61,101],[-40,-26],[-50,-46],[-54,-45],[-24,-18],[-37,-20],[-28,-10],[-83,-8],[-17,0],[-49,150],[-29,155],[-27,18],[0,8],[34,81],[-73,120],[-109,-38],[-8,1],[-35,25],[-39,38],[-23,32],[-24,44],[-4,2],[-61,-13],[-33,73],[-47,80],[-179,265],[-8,6],[-105,36],[-15,-77],[-71,27],[-52,9],[-83,8],[11,119],[3,18],[-38,3],[-3,-45],[-40,5],[-6,21],[-37,37],[-32,23],[-21,30],[-13,1],[-48,46],[-16,21],[-9,42],[-9,13],[-8,33],[-10,10],[-10,26],[-17,16],[-33,50],[3,24],[-21,16],[-35,-7],[-18,10],[-16,-1],[-16,-17],[-14,3],[-14,39],[-90,-24],[-5,7],[-144,-19],[-5,-40],[-7,-14],[-79,-22],[-12,1],[-27,101],[-21,42],[-27,22],[-25,69],[-37,62],[-21,6],[-45,-2],[-84,62],[-31,45],[-37,59],[-21,42],[-6,17],[-51,72],[-31,67],[-42,93],[-113,98],[-24,56],[-70,61],[-29,20],[-114,64],[-132,76],[-19,14],[-96,98],[1,15],[-77,94],[-2,12],[-70,82],[-31,35],[53,74],[-29,20],[96,179],[1,4],[55,84],[87,93],[-15,13],[73,105],[-26,56],[-32,46],[-66,89],[-58,61],[-128,94],[45,40],[53,37],[-30,25],[-27,-12],[-16,-15],[-35,-22],[-62,-57],[-7,7],[-87,157],[-30,-21],[-49,-42],[-27,-32],[-6,-14],[-29,-28],[-31,-38],[-15,-9],[-50,-15],[-83,78],[-44,-37],[-61,97],[2,19],[7,13],[-25,6],[9,42],[30,-1],[4,14],[19,20],[-18,17],[25,25],[-91,85],[-17,52],[-7,30],[-1,25],[3,41],[-89,47],[-137,70],[-31,25],[-51,54],[4,4],[-63,55],[-46,50],[-85,147],[-33,116],[1,164],[9,46],[-20,35],[7,38],[-3,19],[-13,24],[-37,56],[10,13],[-4,19],[-24,54],[52,17],[30,17],[59,46],[39,18],[113,45],[122,46],[102,17],[134,-126],[50,-11],[49,-8],[3,-5],[128,-22],[51,-77],[49,-53],[7,-28],[26,-20],[40,-51],[9,-35],[2,-54],[5,-5],[-5,-22],[-23,-24],[58,-59],[14,-19],[36,-40],[36,-10],[10,1],[22,16],[23,37],[18,9],[2,23],[13,29],[-31,20],[23,56],[10,80],[5,11],[13,104],[116,42],[3,3],[-37,189],[230,93],[-25,67],[75,37],[4,4],[228,447],[1,4],[-54,-17],[-69,-17],[-41,189],[-33,52],[-5,5],[-175,108],[-231,-91],[-131,-50],[-186,-76],[-6,-1],[-1,25],[13,22],[18,6],[-7,12],[6,19],[-6,8],[13,62],[14,2],[8,17],[-5,12],[10,29],[11,18],[-3,31],[6,12],[-7,40],[-7,11],[10,11],[-3,16],[-18,1],[-7,19],[3,12],[27,48],[-7,30],[-13,32],[10,32],[-5,34],[-9,19],[40,48],[6,46],[11,9],[3,14],[-4,18],[5,17],[20,22],[9,22],[-2,15],[9,58],[-16,35],[2,19],[-8,22],[18,25],[20,17],[2,15],[23,36],[12,4],[16,32],[20,26],[-32,5],[4,17],[-8,16],[12,21],[-9,17],[-17,-1],[-17,49],[-49,-17],[-21,62],[-202,-5],[-55,-19],[-30,96],[-11,69],[-62,79],[-52,62],[-166,-35],[-242,-45],[-147,-29],[-97,0],[-27,38],[-48,107],[-51,82],[-39,87],[-147,14],[-6,2],[-227,100],[-12,30],[-50,165],[7,41],[35,136],[13,44],[-30,12],[-69,-14],[-34,-8],[-46,2],[-27,6],[-42,31],[-55,48],[-45,37],[-31,33],[-62,-19],[-116,-41],[-21,45],[-29,58],[-21,52],[-8,27],[-25,46],[-12,50],[-1,20],[8,8],[9,23],[-35,97],[-33,113],[-2,19],[1,50],[5,22],[15,27],[10,23],[13,49],[26,87],[40,5],[26,-9],[20,31],[13,13],[69,50],[48,32],[-19,28],[36,24],[40,35],[43,59],[17,16],[158,114],[55,-43],[32,-7],[10,10],[19,-11],[62,-21],[26,57],[53,46],[30,11],[85,25],[24,15],[23,26],[-75,118],[-76,-77],[-87,100],[-10,41],[-13,42],[-8,38],[6,19],[24,54],[-10,28],[-12,25],[-55,57],[-25,-9],[-72,82],[-63,83],[-146,114],[-54,52],[-48,58],[-8,15],[-33,44],[-1,66],[-33,24],[-41,37],[-42,29],[-70,-73],[-127,106],[-42,99],[-92,-12],[-105,-5],[-157,-5],[-74,7],[-31,6],[-96,91],[-48,22],[-91,81],[-46,29],[-97,37],[-60,48],[-49,45],[-32,25],[-68,84],[-131,151],[-6,10],[-77,100],[-45,39],[-38,37],[-187,136],[-76,54],[-55,44],[-29,30],[-42,19],[-74,16],[-125,-5],[-51,17],[-74,15],[-27,21],[-67,2],[-82,17],[-82,-6],[-62,28],[-39,35],[-10,5],[-27,28],[-70,56],[-36,33],[-57,76],[-71,71],[-40,60],[-41,62],[-71,59],[-68,61],[-66,62],[-92,81],[-49,68],[-30,64],[-48,79],[-42,27],[-56,4],[-63,1],[-6,41],[-49,77],[-88,-102],[-103,-49],[-179,-76],[-51,-30],[-1,4],[-53,53],[-8,4],[-118,31],[-5,4],[-49,127],[-57,-7],[-85,33],[-75,32],[-72,41],[-90,63],[-5,0],[-131,-106],[-134,116],[17,25],[-61,12],[-59,22],[27,36],[-69,51],[15,17],[-81,80],[-1,9],[61,52],[-101,97],[-38,32],[15,18],[-111,82],[-16,18],[28,11],[-35,25],[-69,34],[-17,-25],[-53,-55],[-35,-29],[-163,34],[-106,34],[-86,-134],[-55,-81],[-110,-124],[-30,-41],[-41,-19],[-81,-56],[-92,-88],[-79,-68],[6,-15],[-55,-30],[-22,-2],[-185,-100],[-45,41],[-118,-58],[-198,-86],[-86,-21],[-45,-5],[-32,2],[-95,11],[-44,6],[-49,14],[-153,80],[-65,-3],[-55,8],[-87,28],[-74,13],[9,-30],[27,-51],[-18,-20],[-23,-16],[-59,-16],[-37,-14],[-53,5],[-30,6],[-2,9],[-48,-15],[-5,2],[-32,99],[-1,38],[-105,3],[-1,28],[-32,5],[6,135],[-111,33],[-38,14],[-40,10]],[[576740,593169],[-9,-112],[-4,-82],[1,-43],[5,-78],[14,-111],[22,-138],[14,-55],[13,-72],[-103,-13],[-112,-13],[-55,44],[-33,18],[-102,77],[-41,46],[-129,131],[-50,54],[-39,49],[-76,92],[-41,54],[-85,-20],[-3,4],[-56,-13],[-56,-54],[-78,-21],[-63,47],[-75,81],[-82,105],[-124,-63],[-66,28],[-38,-12],[-125,-69],[-68,-40],[-16,36],[-28,94],[-16,64],[-86,23],[-55,8],[-14,22],[-9,50],[-15,45],[-28,58],[-12,18],[-42,-26],[-103,104],[-25,36],[-16,27],[10,6],[-149,138],[-6,0],[-42,54],[-40,5],[-60,38],[-6,-12],[-20,-8],[-15,22],[-14,-7],[-19,0],[-38,-8],[-6,-32],[-77,-23],[-1,22],[-8,27],[0,21],[-71,170],[-166,-73],[-50,-21],[-25,-12],[-12,-23],[-80,-85],[-25,-19],[-9,-2],[-15,38],[-16,21],[-25,26],[-15,-28],[-6,-2],[-22,29],[-11,8],[-44,22],[-18,17],[-25,14],[-41,9],[-23,19],[-21,1],[-23,10],[-6,24],[2,14],[-7,7],[-63,3],[-29,-18],[-15,-4],[-27,10],[-12,26],[-32,40],[-11,21],[10,42],[19,42],[1,15],[14,6],[23,24],[26,68],[5,28],[24,42],[32,73],[4,33],[21,33],[15,43],[20,14],[-1,15],[-20,36],[-12,9],[-18,2],[-22,-12],[-27,-21],[-16,-25],[-52,-41],[-34,-12],[-42,-5],[-17,6],[-9,27],[-10,15],[-14,1],[-13,-11],[-45,-6],[-16,-14],[-14,-33],[1,-48],[3,-37],[-11,-32],[-19,-19],[2,-22],[-20,-5],[-25,2],[-45,12],[-23,3],[-23,34],[-9,23],[-28,28],[-4,11],[12,28],[16,11],[19,2],[15,-4],[12,-27],[10,-2],[15,12],[-2,37],[-6,18],[-19,13],[-20,21],[-29,9],[-27,2],[-50,17],[-10,7],[-11,21],[-24,67],[-11,26],[-26,35],[-18,88],[4,11],[15,16],[28,21],[25,5],[66,-19],[55,-33],[25,16],[5,27],[-7,35],[5,19],[12,11],[25,12],[-2,44],[-9,17],[-25,28],[-25,10],[-33,-6],[-13,-6],[-26,-28],[-47,-38],[-40,-18],[-51,-10],[-19,0],[-35,12],[-23,-5],[-31,7],[-11,15],[-13,34],[-75,40],[-20,24],[2,30],[-16,30],[-14,59],[25,35],[3,11],[-19,19],[1,9],[15,17],[3,14],[-7,21],[6,36],[25,33],[12,64],[12,29],[21,16],[25,2],[7,19],[-10,10],[-27,5],[-1,6],[-39,16],[-3,13],[14,22],[12,27],[-23,20],[-14,6],[11,28],[-9,21],[-14,7],[-32,-2],[-75,14],[-18,-19],[-28,13],[-35,12],[-45,10],[-9,11],[-4,21],[-15,16],[-35,1],[-46,7],[-27,11],[-32,-12],[-27,-22],[-14,-16],[-21,2],[-49,18],[-20,0],[-66,-17],[-24,-4],[-34,2],[-44,-3],[-40,-5],[-47,1],[-12,15],[-32,56],[-4,29],[3,24],[23,44],[-1,15],[-25,36],[-18,12],[-40,6],[-48,-15],[-51,8],[-51,30],[-9,11],[-21,52],[-10,73],[-11,27],[-35,12],[-14,-1],[-32,-12],[-68,-14],[-73,-43],[-24,-6],[-73,-6],[-54,-18],[-44,-6],[-35,16],[-40,12],[-17,11],[-8,11],[-3,24],[-21,54],[-21,33],[-8,35],[-9,21],[-13,9],[-26,6],[-22,9],[-45,7],[-56,-4],[-8,6],[-4,28],[-10,16],[1,23],[7,19],[10,14],[2,25],[-3,39],[-10,16],[-25,18],[-17,17],[0,-35],[-9,-15],[-16,-10],[-28,-11],[-18,-14],[-11,-19],[-4,-29],[2,-33],[-9,-43],[-38,-89],[-88,-192],[-92,46],[-21,15],[-35,15],[-61,16],[-98,10],[-39,2],[-39,-6],[-34,61],[-146,-60],[-87,-25],[-136,-30],[-7,56],[-73,-10],[-13,41],[-47,-15],[-38,-54],[22,-17],[24,-65],[-13,-1],[9,-70],[-22,-10],[-111,-30],[-72,-6],[-70,3],[-108,-8],[-38,0],[-58,4],[-94,23],[-70,16],[-56,15],[-19,1],[-87,-28],[-125,-49],[-117,-42],[-25,77],[-60,-13],[-1,4],[-41,-5],[-13,-5],[-56,-13],[-19,0],[-66,15],[-80,13],[-58,32],[-39,11],[-136,45],[-72,20],[-62,10],[-29,-52],[-95,-24],[-8,18],[-75,102],[15,19],[-9,60],[6,19],[-31,20],[-43,7],[-18,-3],[-25,-20],[-45,-44],[-38,-50],[-37,-42],[-57,-36],[-24,-11],[-25,-18],[-27,-13],[-32,-20],[-32,-25],[-128,-68],[-63,-56],[-31,-18],[-72,-24],[-14,56],[-84,-36],[-67,-30],[-11,20],[-47,-23],[-12,20],[-28,-16],[-28,-25],[5,-10],[-26,-51],[-41,-49],[5,-7],[-44,-30],[28,-61],[6,-18],[30,-70],[13,-24],[38,-89],[29,-53],[30,-40],[40,-36],[34,-8],[31,-17],[-1,-3],[37,-38],[37,-67],[7,5],[27,-27],[24,-18],[9,-25],[-32,-59],[-3,1],[-40,-25],[-74,-41],[-36,-10],[-66,-11],[-27,57],[-45,81],[-27,-10],[-14,4],[-74,-31],[-34,-10],[16,-74],[-135,-61],[-28,-20],[-57,-37],[-62,-56],[-59,-49],[-71,-53],[-58,-32],[-41,-17],[-21,-23],[-72,-17],[4,118],[9,47],[30,121],[6,76],[-111,-20],[-27,-7],[-84,-43],[-35,-3],[-36,-15],[-99,-35],[-46,2],[-51,45],[-42,88],[-33,52],[-58,51],[-37,40],[-11,7],[-5,-50],[-19,-131],[-38,-101],[10,-152],[4,-46],[5,-90],[6,-82],[-6,-2],[11,-92],[5,-92],[-13,-34],[-29,-66],[-58,-103],[-52,-143],[-67,-73],[-21,-96],[1,-6],[42,-119],[-65,-52],[-39,-21],[-71,-29],[-13,4],[-19,-5],[-24,-12],[-26,-24],[-19,-13],[-38,-12],[-21,2],[-19,-4],[-68,-23],[-29,-26],[-18,5],[-30,41],[-19,4],[-12,39],[-21,25],[-37,32],[-23,3],[-33,-2],[-25,-6],[-12,6],[-93,-40],[-76,-41],[-19,-6],[-44,0],[-64,-25],[-30,-20],[-40,-23],[8,-29],[22,-42],[-11,-9],[-40,-20],[-7,-12],[-37,-33],[-14,-18],[-27,-48],[-5,-28],[4,-38],[-2,-35],[-16,-34],[-23,-34],[-36,-62],[-6,-58],[10,-30],[33,-41],[7,-18],[-3,-18],[-15,-45],[-1,-37],[3,-15],[17,-22],[18,-16],[15,-25],[-2,-29],[8,-26],[28,-33],[25,-49],[-10,-64],[6,-58],[8,-46],[14,-43],[4,-27],[8,-20],[-6,-21],[-18,-15],[-14,-24],[-4,-42],[-48,8],[0,7],[-73,6],[-103,5],[2,19],[-44,-11],[-97,-6],[-50,-10],[-7,31],[-4,52],[-50,-4],[-33,2],[-3,12],[-75,9],[-49,15],[-41,21],[-35,23],[-32,26],[21,29],[-27,17],[-35,27],[-7,-6],[-78,67],[1,2],[-42,27],[-61,25],[2,9],[-11,1],[-11,83],[-6,21],[-17,41],[1,68],[-34,89],[-7,92],[-68,-4],[-87,-2],[-93,-9],[-22,-4],[-15,66],[-14,28],[-21,34],[-20,13],[-12,2],[-32,-9],[-63,-25],[-22,-13],[-86,-11],[-74,-1],[-48,11],[-81,2],[-46,12],[-43,7],[-34,10],[-75,35],[-73,40],[-46,-71],[-58,-41],[-73,-22],[-39,-27],[-29,-22],[-30,-54],[-65,-127],[-53,-105],[-13,-38],[-5,-22],[-10,-28],[-59,-111],[-21,-43],[-44,-76],[-1,-33],[-28,-58],[-31,-70],[-48,-68],[-45,-102],[-33,-71],[-21,-63],[-24,-52],[-21,-39],[-173,53],[-102,11],[-21,8],[-67,33],[-66,10],[-20,7],[-85,-7],[-74,-8],[-30,-12],[-44,-36],[-27,-29],[-20,24],[-10,70],[-13,44],[-19,39],[-5,1],[2,81],[6,24],[52,105],[30,34],[67,57],[9,11],[-59,51],[-29,-61],[-38,-52],[-22,15],[-77,31],[-46,14],[-23,4],[-32,-2],[-41,-5],[-96,-52],[-86,-22],[-119,0],[-3,-23],[-56,-51],[-27,-29],[-113,72],[-36,-30],[-61,-47],[-82,-59],[-106,125],[-84,91],[-93,91],[-39,44],[-62,2],[-99,-2],[-134,-70],[-457,-230],[-188,-93],[-81,59],[-60,58],[-16,95],[26,90],[76,69],[74,61],[32,-19],[48,-32],[84,-43],[41,172],[8,42],[26,49],[25,65],[14,73],[-18,76],[-18,22],[-64,17],[-58,12],[-110,34],[-28,-53],[-21,-69],[-6,-44],[-50,-6],[-54,-16],[-29,20],[-21,44],[-22,38],[-26,22],[-38,9],[-36,2],[-1,47],[-10,21],[-21,34],[-21,23],[-21,37],[-13,33],[-2,95],[-16,130],[-37,40],[-31,15],[-15,15],[7,34],[30,46],[5,38],[-5,20],[-20,53],[-2,34],[9,34],[2,38],[-8,51],[-35,19],[-18,-9],[-68,53],[-9,19],[28,-3],[67,5],[40,-1],[27,33],[41,36],[24,34],[18,35],[17,55],[1,43],[-5,20],[-18,37],[0,35],[5,24],[13,17],[3,62],[-9,37],[-79,60],[-11,42],[-32,-9],[-44,-16],[-30,34],[-50,86],[-52,81],[-30,40],[33,23],[46,51],[22,16],[4,23],[20,6],[13,25],[107,38],[34,14],[-23,53],[-16,49],[-43,64],[-63,-2],[-58,-12],[-27,20],[-56,20],[0,-18],[-88,-13],[-6,58],[-25,-8],[-9,20],[-4,32],[-31,18],[-58,-8],[-123,12],[-91,23],[-27,-13],[-73,26],[-86,-33],[-35,76],[-35,-7],[-83,6],[-43,74],[-31,19],[-80,31],[12,46],[-140,37],[-4,43],[-50,3],[-86,-17],[3,-22],[14,-43],[24,-48],[12,-19],[-34,-29],[-17,22],[-21,32],[-18,41],[-7,24],[-8,46],[-16,26],[-2,38],[20,46],[16,14],[-4,15],[25,61],[-148,53],[-203,-7],[-51,-46],[-38,28],[-85,-75],[-14,24],[-6,-6],[-18,20],[-52,39],[-147,-163],[-92,42],[-4,-4],[-67,25],[-37,26],[-28,42],[-25,24],[-20,14],[-68,19],[-13,-38],[-13,-18],[-30,11],[-61,16],[-32,13],[-85,49],[-63,16],[-58,21],[-49,3],[-84,-9],[-64,-8],[-32,-12],[-17,9],[-28,30],[-9,-17],[-5,-28],[3,-56],[-8,-47],[-17,-12],[-137,-86],[-24,-34],[-23,-13],[-32,-2],[-44,-19],[-48,-11],[-36,-19],[-67,-25],[-48,-20],[-60,-14],[-37,-2],[-35,3],[-72,18],[-9,1],[-98,-6],[-54,-5],[-33,5],[-41,26],[-45,57],[-16,18],[-14,9],[-93,40],[-35,-5],[-6,3],[-118,27],[-26,-7],[-115,-22],[-4,12],[-23,-5],[-45,-24],[-22,-7],[-41,-6],[-26,-7],[-5,9],[-23,0],[-63,5],[-22,5],[-22,16],[-15,18],[-9,32],[5,14],[-27,46],[-94,-63],[-15,-8],[-18,3],[-106,44],[-26,3],[-17,-5],[-92,78],[-8,-8],[-44,39],[-42,33],[-11,15],[3,10],[-12,45],[2,18],[-8,11],[-31,6],[-7,18],[-30,9],[-28,36],[-12,2],[-3,19],[-11,11],[-1,26],[-12,11],[0,21],[-10,2],[-5,16],[3,14],[-36,15],[-16,0],[-13,13],[-14,5],[-4,-9],[-16,13],[-25,-6],[-8,18],[-13,-9],[-13,13],[-18,-1],[-6,10],[-10,-10],[-15,21],[-20,-3],[-17,7],[-13,17],[-14,-1],[-7,-9],[-15,9],[-28,27],[-18,10],[-29,30],[-21,-3],[-18,11],[-28,34],[-13,21],[1,20],[-21,58],[-20,26],[1,27],[5,22],[-3,21],[6,66],[-3,18],[6,9],[-13,55],[-5,13],[-1,23],[-12,14],[-7,31],[-20,9],[-6,19],[-20,4],[-13,9],[-28,6],[-16,17],[-46,17],[-13,-11],[-25,16],[-22,4],[-14,16],[-15,8],[4,13],[-20,13],[-19,-2],[-34,27],[-19,-1],[-24,8],[-21,24],[-22,19],[-9,1],[-2,22],[-16,4],[4,17],[-3,25],[-20,16],[-26,29],[-36,30],[-18,-8],[-32,13],[-25,5],[-21,16],[-10,30],[4,8],[-8,45],[16,17],[-7,40],[-14,22],[1,38],[-21,22],[-31,-5],[-3,65],[-17,-4],[0,52],[8,1],[-2,83],[-6,33],[-9,23],[32,48],[15,9],[78,22],[26,6],[30,13],[21,2],[50,27],[37,28],[35,20],[33,13],[78,37],[19,3],[25,9],[47,11],[45,7],[-36,59],[-67,137],[-13,23],[-22,31],[-43,63],[-144,222],[-23,87],[-63,240],[-16,54],[-7,6],[-19,-1],[-71,-23],[-29,-16],[-31,-22],[-20,-5],[-93,-41],[-81,-17],[-44,-16],[-47,-28],[1,-16],[-175,-68],[-37,-44],[-47,-39],[-11,38],[-27,-24],[-18,-11],[-124,-48],[-91,-27],[1,50],[-58,-16],[-27,73],[-5,19],[1,30],[-25,34],[-29,33],[-10,37],[-35,67],[-14,1],[-20,24],[-24,-4],[-10,12],[-165,-79],[-21,119],[11,1],[106,44],[2,21],[176,72],[184,92],[31,46],[-86,57],[-47,95],[-4,-6],[-83,-48],[4,-9],[-32,-10],[-56,-4],[-23,18],[-47,63],[-26,48],[-3,13],[-25,19],[2,6],[-17,19],[-11,5],[-69,56],[-21,-26],[-25,-20],[-23,22],[-46,-27],[-26,-18],[-50,-19],[-45,0],[-31,-8],[-2,4],[-29,-5],[-29,2],[-35,15],[-31,26],[-7,-12],[-39,11],[-47,28],[-33,14],[-35,0],[-25,4],[-33,16],[-39,10],[-30,13],[-5,5],[-62,22],[-21,15],[2,28],[6,12],[-55,48],[-15,-15],[-13,23],[2,17],[-68,45],[-27,30],[-53,56],[-3,15],[-41,30],[8,15],[-79,100],[-5,10],[-70,18],[-13,15],[-37,12],[-16,11],[-32,30],[6,16],[5,37],[-50,31],[-87,-87],[-24,17],[-65,61],[3,10],[-22,75],[-20,33],[-12,39],[-9,18],[-31,34],[-48,40],[-89,2],[-65,6],[-37,-8],[-60,-25],[-48,-17],[-75,-35],[-24,-14],[-61,-29],[-8,8],[-17,-7],[-47,-25],[-44,-11],[-26,4],[-53,17],[-29,13],[-4,14],[-19,13],[-37,-18],[-18,-16],[-25,-3],[29,-84],[2,-11],[29,-80],[18,-44],[-54,-16],[-53,-21],[2,-8],[-36,-14],[-36,-30],[5,-13],[-26,-37],[-1,-6],[48,-17],[-8,-20],[-18,-31],[-11,-47],[-2,-44],[7,-41],[10,-35],[39,7],[12,-32],[7,-49],[-19,-30],[20,-47],[17,-50],[-30,-24],[1,-35],[7,-61],[12,-1],[-49,-113],[-37,-52],[-13,-22],[1,-22],[21,-41],[24,-70],[42,-69],[9,-21],[-38,-26],[-62,-12],[-31,35],[-9,-30],[-10,-16],[-83,-35],[-36,-12],[-26,-53],[-45,-41],[-8,-5],[-105,-39],[-37,-16],[-23,-6],[-40,-3],[-23,4],[-40,-3],[-29,-10],[-22,-3],[-31,2],[-48,-8],[-36,5],[-27,-7],[-131,-23],[-13,1],[-20,142],[-24,42],[-49,70],[-35,44],[-19,32],[-39,16],[-62,13],[-44,20],[11,27],[80,73],[-11,9],[-62,-33],[-37,-17],[-84,-15],[-53,-19],[-80,-37],[-56,-12],[-21,35],[-4,22],[-22,5],[-39,-14],[-17,-17],[-31,-57],[-25,-34],[-10,-21],[17,-52],[19,-33],[-37,-42],[-31,-27],[-5,0],[-76,-51],[-19,1],[-56,-25],[-47,59],[-59,-19],[-82,-60],[-18,37],[-14,43],[-29,34],[-20,0],[-59,-18],[-9,-25],[-49,-26],[-82,-32],[-37,-10],[-57,-24],[-20,19],[-7,20],[-4,36],[-73,-6],[-4,-52],[-8,-22],[-33,21],[-26,12],[-19,-3],[-36,4],[-20,12],[-14,1],[-31,18],[-15,16],[-23,-5],[-68,51],[-18,28],[4,33],[5,16],[17,23],[16,39],[-46,16],[-13,-15],[-24,-8],[-23,3],[-16,13],[-20,28],[-19,17],[-16,5],[-29,-6],[-24,3],[-10,50],[-30,27],[-30,14],[-54,20],[-30,18],[-12,-8],[-41,26],[-2,69],[-76,-4],[-120,-17],[-37,-8],[-41,-4],[-72,-12],[-118,-17],[4,50],[4,31],[38,102],[-6,6],[-127,61],[-169,20],[-10,1],[-127,-8],[-53,-14],[-73,-15],[-57,-28],[1,23],[-17,2],[-3,13],[8,11],[-16,5],[-12,17],[-1,10],[-19,41],[-20,34],[-9,9],[-11,-2],[-3,19],[-18,11],[-7,22],[-34,12],[-13,19],[-12,5],[-4,21],[-9,8],[-33,48],[-10,23],[-14,-13],[-15,-5],[-11,-12],[-26,-16],[-21,10],[0,10],[-34,-1],[-14,7],[-22,38],[-14,18],[-15,-10],[-21,-32],[-5,-16],[-28,-20],[-20,-44],[-17,-10],[-9,2],[-10,-13],[-23,-2],[-13,-7],[-10,5],[-10,-8],[-8,-23],[-7,-4],[-36,-3],[-16,-11],[-41,12],[-9,-1],[-28,-20],[-50,-24],[-24,-1],[-15,-12],[-19,-6],[-16,2],[-5,12],[11,14],[12,4],[-6,19],[-31,10],[-18,17],[-22,-2],[-25,-12],[-12,-17],[-12,3],[-7,16],[-9,1],[-9,-11],[-13,-3],[-10,-68],[-36,-2],[-65,2],[-97,15],[-52,33],[-32,-14],[14,-67],[19,-139],[5,-49],[-35,-3],[-32,-9],[-25,-11],[-90,-49],[-75,-39],[-46,-8],[-37,-15],[-44,-15],[-59,-34],[-33,0],[12,-45],[23,-62],[-101,-31],[-73,-32],[1,-16],[22,-51],[22,-34],[46,-49],[22,-17],[-10,-14],[-39,13],[-100,-40],[-85,-55],[-4,-44],[-76,-19],[-133,-130],[-94,-95],[-104,-129],[-74,-127],[-60,-113],[-13,-39],[-42,-65],[-24,-46],[83,-84],[92,-81],[10,-21],[-13,-15],[48,-54],[22,-55],[-10,-18],[-1,-64],[31,-48],[9,-58],[18,-44],[-8,-52],[-15,-34],[-1,-11],[-33,-63],[-57,-124],[-50,-104],[-22,0],[-27,-11],[-14,-34],[-33,-72],[-33,-68],[-60,-65],[-61,-101],[-45,-169],[-48,-82],[-6,-5],[-107,37],[-59,32],[-23,7],[-85,53],[-85,68],[29,100],[5,45],[-47,18],[-3,7],[27,80],[-99,46],[-35,28],[-3,10],[37,96],[19,35],[5,36],[-64,64],[-34,73],[-45,47],[-36,31],[-87,95],[-62,38],[-52,48],[-44,49],[-39,37],[-20,-6],[-51,54],[-24,-9],[-38,-25],[-40,-49],[-21,-11],[-11,2],[-60,56],[-55,35],[-22,6],[-49,34],[-18,8],[-18,-35],[-66,37],[-77,32],[6,24],[-74,25],[-95,38],[-53,9],[-56,29],[-53,21],[-36,19],[-38,27],[-79,79],[-2,11],[-42,-28],[-27,-20],[-42,31],[-20,8],[-38,-16],[-28,-5],[-35,6],[-11,-2],[-14,-39],[-42,-70],[-24,-32],[-12,-7],[-21,-3],[-30,7],[-41,19],[-33,13],[-31,9],[-27,18],[-11,20],[16,49],[-40,18],[-53,32],[-65,51],[-47,32],[-9,-4],[-88,-55],[-27,-16],[-41,-17],[-43,-32],[-24,-10],[-21,-1],[-40,-12],[-51,-48],[-78,-91],[-100,-96],[-29,-48],[-12,-65],[-24,-77],[-22,-109],[14,-63],[-20,-77],[-18,-35],[-68,-69],[-52,-88],[-27,-7],[-32,-4],[-38,1],[-57,-9],[-44,-3],[-61,-13],[-14,-8],[-48,-44],[-42,-45],[-7,-11],[-210,-77],[-280,-109],[-21,-7],[-182,-68],[-109,-39],[-243,-51],[-24,-3],[-275,-60],[-245,-49],[-67,-16],[-22,13],[-142,12],[-114,21],[-62,17],[-132,21],[-73,7],[-27,-5],[-79,-20],[-22,-11],[-25,-6],[-13,5],[-32,3],[-14,10],[-19,-4],[-10,-94],[-69,-21],[-20,-20],[-7,-14],[-61,-80],[-13,-51],[6,-93],[10,-11],[-17,-44],[-33,-87],[-21,-30],[-16,-16],[-42,-31],[-100,-87],[-63,-57],[-21,-8],[-58,-14],[-25,0],[-41,5],[-17,12],[-44,19],[-18,12],[-36,15],[-40,23],[-46,18],[-60,20],[-44,7],[-8,27],[18,28],[18,10],[30,45],[-8,28],[-27,18],[-29,11],[-24,31],[-6,155],[18,48],[2,26],[-12,31],[7,18],[30,32],[-13,31],[6,28],[14,16],[7,26],[2,21],[-6,21],[4,26],[17,39],[-11,23],[-45,32],[-69,9],[-18,17],[-44,13],[-28,15],[-13,25],[15,28],[-10,16],[-39,12],[-43,9],[-48,23],[-29,9],[-13,18],[-5,33],[-31,-3],[-10,6],[-6,14],[4,23],[-13,13],[-13,-4],[-23,-48],[-2,-20],[-8,-7],[-72,27],[-13,15],[-5,48],[27,52],[-4,16],[-80,43],[-18,-5],[-19,-16],[-20,27],[-1,26],[-42,13],[-52,20],[-3,11],[29,21],[5,17],[-13,16],[-37,25],[-25,-15],[-36,5],[-3,7],[2,39],[-18,17],[38,29],[44,13],[31,-16],[54,55],[16,10],[6,-7],[-9,-31],[48,2],[20,34],[2,35],[11,11],[20,-11],[36,-6],[5,15],[30,36],[21,-9],[20,23],[11,44],[14,39],[29,5],[19,26],[-2,36],[68,6],[19,11],[30,43],[2,46],[19,23],[42,8],[21,39],[-14,20],[6,39],[27,9],[33,-18],[84,10],[47,3],[85,5],[31,5],[-100,451],[2,117],[42,14],[-15,117],[23,12],[-31,231],[-242,156],[-74,25],[-128,143],[-65,0],[-13,44],[-177,146],[-109,149],[-95,31],[-138,111],[-75,4],[-32,36],[-35,125],[128,28],[61,17],[69,38],[51,52],[23,184],[82,98],[63,101],[48,108],[41,93],[64,82],[31,52],[15,38],[89,164],[-63,0],[-98,4],[-97,-2],[-172,1],[-223,40],[-294,168],[-9,33],[-68,320],[-68,200],[-39,148],[-44,161],[-86,212],[-92,219],[-27,169],[104,155],[7,5],[-34,88],[-52,88],[-16,19],[4,3],[-22,48],[-28,41],[-44,50],[-69,57],[-24,24],[-7,13],[-52,21],[-30,22],[-15,7],[-26,4],[-213,53],[-11,0],[0,45],[-4,1],[-25,62],[-38,45],[-73,141],[-51,104],[-28,49],[-111,163],[-138,74],[-175,45],[-87,-1],[-36,-2],[-74,76],[-12,26],[-15,59],[-8,20],[-29,50],[-12,32],[-53,117],[-3,17],[2,37],[-28,7],[-18,-3],[-27,17],[-16,-4],[-22,7],[7,18],[-10,9],[-18,-7],[-9,23],[-22,-3],[-26,2],[-12,28],[-21,1],[-6,29],[-22,7],[-98,16],[-28,25],[-12,-3],[-18,9],[-31,-4],[-16,11],[-22,-11],[-11,8],[3,13],[-21,8],[-19,-1],[-13,13],[-16,-16],[-13,36],[-44,9],[0,13],[-27,-1],[-25,-18],[-22,13],[-11,15],[-35,0],[-9,8],[-22,-14],[-10,10],[-19,0],[0,17],[-24,9],[-11,12],[-22,4],[-8,27],[-35,13],[-24,26],[-16,29],[-78,14],[-68,66],[-20,30],[-21,21],[-39,-9],[7,27],[-36,-3],[-85,-45],[-15,6],[-39,-23],[-44,-1],[-8,18],[-15,-8],[-28,5],[-19,13],[-33,0],[-29,30],[-20,0],[-38,-9],[-22,-12],[-17,6],[-77,-4],[-35,38],[11,40],[-5,50],[-26,18],[-40,39],[-12,31],[-29,8],[-8,-23],[-23,7],[-13,26],[-177,89],[-87,68],[-39,72],[-27,59],[-27,21],[-32,19],[-29,-16],[-28,14],[-4,-7],[-43,16],[-10,-10],[-11,8],[-60,12],[-40,2],[-11,-16],[-25,-13],[-11,-19],[2,-15],[14,-8],[-14,-21],[-10,-6],[-4,-30],[-20,-8],[-1,-9],[-31,-22],[-9,-20],[-12,-4],[0,-11],[-20,-52],[14,-4],[3,-10],[-13,-2],[-9,-13],[10,-10],[-4,-7],[-21,-7],[-2,-17],[-18,-9],[-4,-9],[12,-10],[16,-24],[-28,-3],[-7,-5],[9,-42],[-3,-14],[10,-17],[-7,-19],[2,-15],[-16,7],[0,-28],[-10,-6],[1,-31],[-8,-9],[6,-11],[25,0],[3,-10],[-17,-20],[5,-23],[-8,-31],[16,-16],[-29,-31],[4,-22],[-8,-4],[-4,-19],[-10,-10],[-5,-27],[-13,-17],[-39,-34],[-8,-16],[-21,-22],[-38,-55],[-31,-2],[-22,7],[-20,0],[-16,-6],[-13,-13],[122,-113],[-54,-25],[-66,-43],[-29,-10],[-28,-4],[-43,5],[-66,0],[-85,17],[-53,27],[-15,16],[-33,21],[-20,6],[-15,-5],[-83,-19],[-66,-12],[-32,-14],[-20,8],[-126,-67],[-29,-26],[-20,-39],[-7,-28],[-98,63],[-2,-32],[-24,-1],[-14,24],[-17,-4],[-9,-11],[-24,2],[7,-23],[-1,-20],[-27,0],[-6,-22],[7,-24],[-28,-30],[-32,-17],[-25,5],[10,-23],[-26,-30],[6,-9],[-31,0],[-7,-4],[21,-27],[-10,-9],[-28,1],[-13,5],[-53,-48],[-69,63],[20,26],[-29,20],[1,83],[-8,31],[2,32],[-7,46],[-31,67],[19,9],[16,15],[-2,39],[-20,22],[-8,71],[-10,31],[-16,28],[-22,23],[-13,2],[-22,34],[-23,18],[-15,-3],[-45,55],[-19,41],[-12,35],[-10,68],[-12,34],[-39,44],[-30,23],[-27,41],[17,28],[19,19],[11,19],[4,27],[-3,18],[-27,116],[0,65],[3,30],[0,43],[-8,47],[39,80],[20,32],[-3,1],[31,41],[17,26],[45,81],[38,93],[1,61],[-2,50],[20,28],[160,120],[62,137],[19,18],[42,22],[31,54],[18,35],[61,102],[16,17],[63,30],[-24,76],[-13,60],[28,11],[80,37],[81,50],[48,49],[26,16],[73,66],[96,18],[46,33],[54,54],[42,34],[40,21],[75,54],[8,7],[1,28],[-6,21],[2,52],[-10,34],[-18,2],[-13,13],[-3,18],[-10,3],[-24,22],[-25,35],[4,33],[-16,26],[-11,10],[-14,39],[-18,19],[-16,37],[-4,19],[-15,17],[-8,-1],[-34,17],[-25,26],[-22,5],[-18,-3],[-12,17],[-19,2],[-2,15],[-21,14],[-6,12],[-14,8],[-22,26],[-18,34],[-20,24],[-18,14],[-16,19],[-13,27],[-21,12],[-13,19],[-22,17],[-27,43],[-10,11],[-19,1],[0,17],[-9,15],[-9,-6],[-22,0],[-4,10],[9,6],[-12,3],[1,15],[-9,16],[-11,-4],[-9,6],[5,12],[-39,20],[-41,16],[-11,-4],[-13,27],[3,14],[-8,8],[-17,35],[-2,22],[-10,13],[-13,-8],[-23,4],[-27,11],[4,23],[-6,14],[-18,21],[-5,15],[-17,29],[-9,-2],[-24,10],[3,12],[-23,12],[-41,16],[-36,33],[-44,80],[-30,26],[-12,28],[-3,27],[-10,22],[-40,16],[-47,15],[-13,15],[-28,18],[-39,15],[-19,1],[-27,13],[-39,1],[-21,9],[-15,-5],[-13,10],[0,10],[-29,61],[-13,13],[-26,10],[-31,0],[-21,11],[-19,-5],[-8,12],[-33,12],[-33,48],[-9,2],[-1,15],[-13,12],[-23,-4],[-30,0],[-5,8],[-17,4],[-37,0],[-30,27],[-24,17],[-56,12],[-9,50],[-31,75],[-14,18],[-24,21],[-77,40],[5,28],[-19,53],[-58,45],[-15,-6],[-39,9],[-41,16],[-78,64],[-54,75],[-19,130],[-89,4],[-38,7],[7,42],[15,30],[-25,158],[-75,76],[-42,35],[-73,54],[-27,25],[-37,44],[-146,103],[-49,41],[-46,51],[-56,56],[-68,58],[-109,-22],[-40,-15],[-41,-31],[-21,-42],[-82,-18],[-107,-16],[-78,-7],[-62,-17],[-69,-13],[-20,-28],[-11,-43],[-9,-20],[-55,-38],[-31,-53],[-37,-42],[-44,-58],[-22,-25],[-18,-47],[-5,-20],[-12,-19],[-33,-29],[-79,-56],[-24,-22],[-14,-25],[-28,-18],[-123,-50],[-83,-36],[2,82],[7,40],[6,115],[-2,38],[-81,32],[-30,10],[-54,7],[-54,-6],[-41,2],[-72,11],[-61,23],[-76,66],[-42,16],[-44,11],[-101,-11],[-62,-10],[-38,-17],[-49,-33],[-29,-27],[-45,-23],[-52,-21],[-47,-13],[-37,-23],[-46,-42],[-24,-14],[-23,-8],[-60,-10],[-47,-30],[-11,10],[-80,56],[-63,86],[-49,86],[-63,60],[-49,22],[-17,51],[-129,171],[-16,17],[-38,15],[-88,47],[-29,-32],[-27,-26],[-73,-55],[-28,-28],[-35,-78],[-15,-9],[-24,-29],[-19,-11],[-59,-15],[-170,-28],[23,125],[-92,48],[-24,19],[-120,10],[-220,-88],[-316,73],[-89,-33],[-116,10],[-131,-71],[-167,18],[-163,-23],[-32,-9],[-99,29],[34,147],[1,32],[-18,144],[9,45],[-37,5],[4,37],[-8,73],[-7,15],[7,45],[15,46],[19,50],[1,63],[17,70],[8,54],[10,29],[21,38],[25,70],[5,38],[6,17],[-3,13],[-11,65],[-7,4],[-10,94],[8,74],[-2,56],[-12,14],[-56,43],[-38,14],[-28,18],[-13,22],[-26,76],[-12,28],[-9,13],[-50,25],[-66,64],[-36,55],[-12,7],[-76,26],[-39,21],[-99,58],[-60,10],[-64,-51],[-23,-32],[-5,-16],[-2,-44],[-13,-95],[-45,-82],[-59,-61],[-61,-113],[-52,-50],[-65,-56],[-32,-12],[-4,-36],[-22,-14],[-10,-17],[-22,12],[-1,11],[-23,31],[7,10],[-3,26],[-16,11],[-9,17],[8,5],[-5,20],[6,5],[-11,16],[-8,33],[-19,11],[1,15],[-10,21],[-19,15],[-2,53],[-22,6],[-9,-7],[-66,5],[-20,6],[-38,5],[-30,1],[-25,-4],[-54,-26],[-54,-19],[-38,-1],[-33,13],[-51,25],[-19,7],[-54,8],[-77,-10],[-29,-10],[-41,-18],[-28,-18],[-21,-25],[-39,-12],[4,52],[10,67],[-7,92],[-8,59],[-30,37],[-49,39],[-67,-16],[5,114],[3,-1],[3,82],[12,73],[3,53],[35,136],[16,94],[34,155],[-1,19],[-21,25],[-48,46],[-19,29],[-29,70],[-10,39],[-14,47],[-9,57],[-15,50],[-23,38],[-45,66],[-19,41],[-4,49],[-4,11],[-34,40],[-6,22],[-1,52],[3,29],[9,40],[-12,58],[0,15],[-13,18],[-119,138],[-11,28],[-28,87],[-14,21],[-108,122],[-102,201],[-28,58],[-31,46],[-40,56],[-41,62],[-24,21],[-62,65],[-35,49],[-5,13],[-62,56],[-20,43],[-40,74],[-34,55],[-31,36],[-90,127],[-31,39],[-27,43],[-54,58],[-44,62],[-24,8],[0,11],[-14,24],[-6,23],[3,15],[-26,24],[-11,15],[2,33],[-10,31],[-7,6],[-4,31],[-4,5],[-65,42],[-46,13],[-45,23],[-34,22],[-32,29],[1,15],[-28,30],[-12,1],[-30,14],[-21,17],[-127,-219],[-18,-19],[-13,4],[-89,-28],[-82,-13],[-52,8],[-43,0],[-53,-8],[-51,-19],[-33,-11],[-77,-13],[-151,-73],[-12,3],[-43,33],[-34,15],[-31,8],[-41,5],[-64,2],[-43,3],[-120,21],[-22,2],[-17,10],[-7,81],[-12,43],[3,40],[-6,59],[-12,36],[-18,44],[-24,45],[-36,-9],[-49,-1],[-29,2],[-39,9],[-78,22],[-172,61],[-20,10],[-79,67],[-71,25],[-45,25],[-30,24],[-100,-10],[-20,-5],[-75,9],[-52,8],[-67,21],[-73,39],[-55,37],[-17,8],[-27,-7],[-25,-2],[-48,9],[-39,29],[-71,68],[-38,23],[-70,37],[-79,45],[-47,34],[-173,54],[-78,39],[-80,70],[-70,22],[-86,33],[-44,24],[-35,27],[-41,20],[-67,28],[-65,33],[-7,2],[-68,40],[-57,56],[-34,17],[-67,26],[-59,20],[-29,30],[-35,50],[-29,69],[-9,50],[6,49],[11,33],[0,29],[9,37],[8,15],[0,18],[-26,18],[-54,52],[-47,42],[-13,16],[-6,24],[3,22],[-17,13],[-1,10],[-14,29],[-48,49],[-32,55],[-8,33],[-6,38],[-3,40],[-30,26],[-33,8],[-13,7],[-14,-2],[-25,10],[-22,-1],[-11,10],[-27,10],[-32,24],[-12,19],[-2,27],[39,23],[20,26],[7,1],[9,34],[-13,13],[-11,29],[-2,39],[-7,20],[0,35],[11,48],[11,32],[-30,25],[-14,7],[-136,42],[-24,19],[-20,-4],[-26,-12],[-22,-15],[-23,-10],[-41,-1],[-18,-6],[-32,1],[-25,-4],[-24,-9],[-41,-7],[-41,-3],[-21,4],[-34,-5],[-15,-10],[-32,-8],[-52,0],[-29,15],[-28,10],[-32,19],[-42,13],[-31,14],[-18,4],[-26,-9],[-32,-6],[-28,-15],[-11,0],[-35,29],[-20,6],[-38,31],[-17,3],[-58,-2],[-13,4],[-38,-3],[-34,5],[-20,7],[-25,26],[-45,6],[-28,-1],[-129,-15],[-6,-5],[-15,-37],[-23,-80],[-15,-99],[-26,-22],[-94,1],[-59,-5],[-77,-27],[-14,15],[-14,6],[-24,18],[-26,2],[-45,26],[-8,17],[-24,24],[-30,24],[-45,28],[-5,18],[-25,13],[-12,14],[-2,13],[12,48],[-12,18],[-17,-14],[-4,-15],[-13,-13],[-13,3],[-34,-5],[-10,-11],[-29,-7],[-8,2],[-26,-20],[-13,-1],[-14,-11],[-24,-9],[-15,0],[-44,-33],[-32,-2],[-46,-18],[-44,-28],[-33,1],[-20,-17],[-26,6],[-19,-72],[-4,-54],[0,-92],[-8,-40],[-31,-97],[-39,-69],[-39,-58],[-8,-22],[-26,-34],[-41,-72],[-1,74],[-34,77],[-4,4],[-146,30],[-4,0],[-339,-233],[-4,-5],[-1,-52],[12,-48],[-2,-7],[-58,-89],[-2,-20],[-46,23],[-42,14],[-50,2],[-28,7],[-103,17],[-12,3],[-64,44],[-111,27],[-44,3],[-33,-3],[-14,-17],[-32,-14],[-20,-14],[-53,-46],[-14,-4],[-4,10],[-18,-1],[-47,-14],[-30,-4],[-64,-17],[-66,-12],[-23,-12],[-63,-27],[-40,-24],[-63,-25],[-43,-4],[-75,-11],[-45,-2],[-39,4],[-47,12],[-34,14],[-38,7],[-54,5],[-35,31],[-26,40],[-35,67],[-54,86],[-26,-9],[-28,2],[-29,-27],[-11,-1],[-12,-12],[-39,-16],[-35,0],[-48,22],[-32,-1],[-12,-10],[-17,4],[-19,16],[-39,-1],[-36,-6],[-33,17],[-34,-7],[-24,-14],[-12,-20],[-15,-6],[-64,46],[-43,46],[-49,40],[-48,43],[-19,13],[-20,20],[-27,18],[-30,30],[-47,65],[-18,11],[-18,2],[-159,37],[-45,8],[-25,-2],[-39,-9],[-43,-5],[-38,8],[-79,-4],[-77,8],[11,-17],[15,-76],[19,-72],[20,-123],[12,-13],[-71,-6],[-68,0],[-75,4],[-37,-10],[-23,0],[-56,-21],[-23,-6],[-39,4],[-69,20],[-32,11],[-28,17],[-38,33],[-35,44],[-4,10],[-21,24],[-57,48],[-47,30],[-62,6],[-75,23],[-18,7],[-39,26],[-25,36],[67,29],[86,39],[74,40],[110,111],[33,31],[5,52],[1,65],[-2,38],[-5,28],[1,25],[12,29],[40,40],[57,39],[79,34],[-15,28],[-1,21],[8,19],[7,30],[9,9],[8,21],[-1,34],[-12,11],[1,27],[21,8],[9,10],[31,15],[17,20],[1,8],[-11,114],[-6,27],[20,98],[30,111],[19,39],[1,27],[-18,23],[11,14],[-14,5],[-8,115],[45,1],[19,3],[24,15],[29,57],[2,12],[16,8],[16,-5],[14,10],[14,1],[16,20],[-4,24],[15,8],[21,0],[5,13],[11,-3],[57,5],[19,27],[24,-6],[24,15],[25,8],[15,13],[26,0],[31,11],[35,28],[19,8],[8,14],[2,35],[-8,35],[23,52],[0,23],[-13,39],[-17,12],[-6,-5],[-11,9],[-23,34],[-13,12],[-37,15],[-34,7],[-63,42],[-21,11],[-101,79],[-13,18],[12,46],[0,13],[-14,11],[-3,23],[20,36],[-4,42],[-11,25],[5,48],[21,94],[-27,11],[9,33],[-14,-7],[-18,8],[-10,16],[-11,43],[15,7],[-4,24],[11,27],[-2,23],[13,27],[-3,22],[-18,26],[-27,0],[-22,14],[-13,20],[-15,12],[-15,21],[-12,24],[4,7],[-4,36],[57,37],[71,26],[13,11],[-93,561],[-57,-10],[-24,-1],[-132,12],[-30,4],[-94,-18],[-84,4],[-44,-1],[-7,-16],[-22,-21],[-21,5],[11,10],[2,20],[12,29],[-5,41],[-3,51],[-11,46],[-11,32],[4,22],[15,45],[12,20],[1,17],[21,50],[-10,23],[1,11],[-27,31],[-61,35],[-9,15],[-24,29],[-22,58],[-28,34],[-9,4],[-29,50],[-28,53],[-9,10],[-19,42],[-13,39],[-1,24],[-10,41],[3,45],[-5,72],[1,38],[19,94],[-3,61],[9,46],[-7,44],[-2,32],[-9,33],[-14,39],[7,26],[-20,5],[-4,147],[-7,24],[-9,42],[-1,26],[-8,33],[-2,32],[13,26],[-25,27],[-19,26],[-41,38],[-37,15],[-18,19],[-17,32],[-6,26],[25,1],[32,7],[32,-68],[36,-49],[23,-23],[31,-26],[61,-43],[52,-28],[26,-7],[54,-6],[55,-2],[40,2],[114,35],[8,4],[122,93],[19,24],[23,35],[5,15],[-9,40],[-34,62],[-25,57],[-7,30],[1,31],[20,84],[7,22],[59,153],[8,19],[79,156],[38,70],[22,37],[27,35],[38,23],[42,16],[25,3],[25,-7],[31,-13],[45,-22],[7,9],[24,46],[4,33],[-16,30],[-38,48],[-17,44],[-10,18],[-4,33],[-14,21],[-1,14],[-9,12],[-1,24],[-12,18],[4,22],[33,34],[54,86],[6,32],[8,23],[34,60],[28,72],[33,44],[25,39],[31,63],[33,45],[28,24],[33,23],[34,37],[-1,18],[26,60],[3,16],[-6,19],[4,20],[-1,43],[12,26],[21,9],[11,14],[41,22],[6,10],[24,5],[20,10],[32,5],[31,20],[36,12],[33,8],[30,10],[12,12],[32,7],[14,11],[32,13],[27,32],[22,7],[18,21],[13,37],[17,22],[5,35],[-10,46],[-38,79],[-68,95],[-41,3],[-32,-15],[-33,-9],[-56,-3],[-29,1],[-23,6],[-26,0],[-82,-17],[-100,-10],[-16,1],[9,31],[12,23],[16,12],[9,36],[10,19],[2,34],[9,72],[15,18],[31,24],[27,13],[32,19],[41,19],[16,-5],[42,-4],[43,-12],[28,3],[79,-6],[25,2],[35,13],[56,26],[23,16],[4,10],[0,37],[7,14],[3,31],[19,27],[39,17],[24,15],[14,36],[-176,206],[-91,105],[-76,82],[-90,108],[-28,31],[0,29],[28,128],[4,30],[19,209],[-6,20],[-66,54],[-23,16],[-67,33],[-109,73],[-55,41],[-75,52],[-86,80],[-35,30],[-77,24],[-33,14],[23,19],[-35,27],[-14,8],[-28,24],[-41,24],[-45,24],[-41,17],[-44,32],[-26,14],[-76,39],[-56,39],[-11,5],[-42,7],[-32,12],[-19,29],[-10,9],[-28,47],[-5,16],[-58,107],[-11,35],[-31,61],[-19,29],[-30,92],[-38,57],[-5,41],[-14,26],[-10,51],[-1,27],[-11,53],[-16,34],[-33,63],[-20,29],[-9,24],[-17,29],[-58,186],[-17,45],[-30,57],[-6,31],[-23,11],[-53,39],[-15,5],[-9,14],[0,24],[-26,18],[-48,-2],[-31,9],[-26,0],[-20,12],[-68,28],[-37,8],[-35,26],[-14,19],[-46,8],[-45,-6],[-31,-17],[-21,-20],[-31,-6],[-37,2],[-79,-9],[-23,-9],[-20,-14],[-62,-52],[-29,4],[-69,-1],[-47,7],[-38,29],[-25,13],[-21,28],[-36,63],[-24,21],[-24,6],[-24,1],[-45,-5],[-35,1],[-45,-5],[-54,7],[-43,18],[-24,2],[-31,23],[-43,18],[-42,34],[-153,74],[-45,13],[-60,21],[-67,-2],[-46,-9],[-31,2],[-21,-4],[-23,4],[-41,-1],[-11,3],[-50,-3],[-24,6],[-88,52],[-38,12],[-21,16],[-20,9],[-54,14],[-8,9],[-39,25],[-36,11],[-21,19],[-69,35],[-60,36],[-12,9],[-32,14],[-25,4],[-83,-4],[-48,-1],[-75,-13],[-21,6],[1,128],[-34,48],[17,152],[-33,351],[8,176],[50,79],[42,160],[50,80],[84,111],[0,168],[-84,271],[67,56],[143,16],[151,-8],[175,16],[126,88],[8,47],[176,240],[160,80],[50,167],[209,263],[-159,247],[0,176],[25,127],[151,439],[75,207],[-50,72],[-59,119],[-100,48],[59,104],[25,175],[0,96],[83,72],[109,55],[-58,88],[-42,72],[-17,119],[126,88],[42,80],[134,40],[75,119],[59,175],[50,104],[243,24],[184,135],[92,96],[42,135],[-25,80],[23,134],[2,97],[-59,32],[51,32],[-34,87],[-58,56],[-42,16],[-84,16],[-117,-24],[-59,24],[-59,-32],[-58,80],[-101,32],[-42,103],[-41,16],[-17,144],[75,262],[50,120],[-67,64],[-16,87],[-118,48],[-192,-16],[-65,55],[-40,59],[3,26],[14,30],[31,23],[54,27],[12,31],[38,81],[-27,41],[-41,37],[-25,13],[-45,17],[41,22],[98,36],[7,0],[49,17],[43,11],[91,-12],[23,6],[73,34],[41,1],[24,5],[52,4],[26,-3],[20,-12],[38,-10],[39,4],[42,-15],[18,-10],[38,-6],[29,6],[36,22],[20,-9],[31,0],[36,4],[16,100],[26,74],[3,23],[28,55],[10,26],[12,39],[34,61],[15,35],[-25,11],[25,60],[10,30],[21,0],[3,57],[-2,11],[-1,52],[41,99],[19,29],[-29,39],[-30,67],[-22,29],[10,43],[10,5],[39,48],[-89,157],[300,51],[-9,79],[-83,120],[-84,159],[-76,223],[-159,32],[-25,87],[101,119],[100,0],[210,128],[201,222],[-50,45],[14,36],[17,-1],[15,6],[35,-4],[44,2],[26,4],[12,-11],[0,-11],[32,4],[15,-12],[18,-4],[21,11],[43,-16],[16,-21],[39,-23],[69,0],[27,-14],[57,-47],[18,-18],[42,-64],[-8,-11],[10,-19],[2,-15],[25,-21],[-8,-29],[-2,-31],[-9,-13],[25,-43],[2,-33],[-25,-3],[-14,-27],[-2,-21],[-16,-24],[-11,-27],[-14,-21],[-2,-22],[14,-11],[7,-16],[44,-21],[36,-32],[33,-15],[55,-47],[18,-5],[42,-34],[29,-39],[17,-30],[60,-64],[44,-21],[14,-21],[13,-8],[33,-1],[18,-5],[38,-17],[19,-3],[56,-14],[40,172],[2,37],[15,44],[22,44],[34,86],[25,25],[46,75],[-19,15],[-1,13],[-14,9],[-11,15],[-5,18],[-35,27],[-61,22],[-9,-3],[-50,10],[-15,9],[-8,-4],[-15,12],[-21,-8],[-48,8],[-29,-6],[-8,5],[-8,24],[-26,16],[-19,-1],[-17,18],[-10,3],[6,21],[9,7],[30,5],[40,24],[16,60],[9,22],[33,71],[1,46],[26,50],[-1,51],[5,63],[9,58],[49,94],[69,127],[28,55],[-34,15],[15,29],[7,64],[-5,49],[-17,14],[-11,41],[-19,38],[-18,25],[-22,79],[-86,139],[-8,18],[0,54],[-65,136],[-31,51],[-25,24],[-6,44],[50,124],[5,8],[131,176],[4,6],[-6,101],[16,26],[49,32],[44,36],[81,29],[15,8],[62,26],[31,2],[4,24],[29,10],[42,0],[2,151],[-5,178],[50,-8],[79,-34],[66,-10],[44,-13],[30,-20],[25,-1],[33,-8],[22,45],[61,-23],[18,55],[7,-2],[38,18],[29,33],[44,34],[34,36],[6,34],[16,28],[28,20],[90,27],[44,0],[39,8],[6,7],[25,68],[27,56],[18,43],[33,50],[-35,49],[-31,50],[-31,64],[-33,8],[-39,0],[-21,5],[-47,2],[-55,-10],[-24,4],[-22,-1],[-43,-10],[-9,-6],[-45,-15],[-30,18],[-30,-2],[-13,9],[-20,28],[-56,5],[-18,13],[-59,8],[-74,-5],[-10,3],[-22,24],[22,53],[32,58],[1,34],[-1,37],[-50,73],[-30,30],[-14,24],[-26,78],[-6,36],[-11,28],[-4,29],[0,40],[32,39],[3,17],[14,21],[-100,29],[6,42],[21,64],[2,53],[-48,19],[15,49],[-50,9],[8,40],[-32,-3],[-68,28],[-16,0],[-21,-11],[-25,-7],[-17,3],[-72,-1],[-42,-19],[-30,-3],[-30,-11],[-19,-1],[-42,3],[-27,25],[-53,-7],[-11,-8],[-16,-27],[-20,0],[-40,-9],[-56,5],[-28,-22],[-6,-29],[-6,-5],[-17,6],[-22,-5],[-17,9],[-37,-1],[-41,10],[-34,-6],[-50,0],[-44,15],[-13,0],[-37,-7],[-55,6],[-41,-9],[-22,-1],[-24,12],[-31,-27],[-26,2],[-23,-3],[-25,2],[-16,-11],[-35,-5],[-7,6],[-40,-4],[-29,8],[-25,19],[16,29],[-1,13],[-43,11],[-36,-3],[-4,-6],[-42,8],[-18,-5],[-22,19],[-38,20],[-10,8],[-27,-14],[-13,-12],[-25,-7],[-15,7],[-37,-18],[-7,-16],[-41,9],[-29,21],[-9,14],[-7,31],[-8,4],[-47,-9],[-28,-30],[-64,-30],[-57,8],[-14,12],[-29,3],[-23,-10],[-9,9],[-27,8],[-12,-1],[-8,-11],[-28,16],[-26,-28],[-29,-8],[-1,7],[-59,177],[-19,40],[-12,20],[-31,37],[-78,54],[-70,57],[-30,31],[-62,80],[-13,19],[-31,55],[-16,58],[-5,36],[16,124],[0,71],[-8,74],[55,221],[-38,7],[-12,-14],[-28,-11],[-17,-54],[-196,-274],[-459,-644],[-149,-204],[-151,-97],[-336,-217],[-784,-477],[-29,-18],[-351,-101],[-62,-29],[-452,-236],[34,-149],[-330,-924],[-383,53],[-1,-13],[23,-37],[223,-368],[1,-4],[-26,-117],[-48,-208],[-272,-123],[-215,-108],[-170,-83],[-352,-136],[-343,-175],[-411,-175],[-117,-287],[-89,-16],[-35,18],[-77,-12],[-61,-25],[-114,-3],[-77,-7],[-93,-56],[-27,-58],[3,0],[-29,-61],[-3,-14],[0,-47],[-70,-32],[8,-37],[-45,-67],[-81,-173],[-31,-66],[-16,-28],[-26,-58],[-9,-38],[-28,-63],[-12,-8],[-48,-16],[-53,-32],[-13,-24],[-56,-145],[-31,-48],[-6,-15],[-33,-141],[-15,-30],[-31,-83],[-5,-43],[-39,-64],[0,-49],[3,-34],[-3,-99],[3,-17],[13,-18],[7,-38],[12,-5],[-70,-68],[-35,-87],[-24,-28],[-35,-13],[-39,-25],[-67,-26],[-83,-24],[-29,-15],[-21,-17],[-24,-34],[-12,-75],[45,-56],[44,-38],[51,-79],[35,18],[56,-111],[14,-67],[21,-74],[25,-47],[15,-96],[6,-54],[3,-42],[-4,-42],[20,-3],[84,4],[21,-1],[185,9],[97,49],[32,37],[47,21],[47,3],[11,6],[-47,-106],[101,-104],[-67,-79],[67,-72],[67,-8],[25,-80],[-33,-103],[-135,-144],[-58,-159],[17,-151],[33,-192],[-42,-47],[-100,-160],[-12,-36],[-7,-2],[-57,-113],[-45,-255],[-11,-25],[-38,-57],[-35,-45],[6,-48],[-11,-8],[2,-25],[-21,-7],[0,-18],[5,-11],[-26,-18],[-4,-24],[6,-5],[0,-29],[-5,-13],[7,-27],[-13,-38],[-24,-18],[-18,-3],[-22,-18],[-33,-22],[-10,-13],[-19,-8],[-8,-11],[-24,-6],[-13,-11],[7,-20],[-3,-14],[7,-28],[38,-37],[8,0],[24,-24],[33,-25],[0,-15],[14,-36],[-12,-38],[-3,-33],[-20,-75],[-34,-85],[-3,-23],[3,-34],[7,-16],[21,-101],[-6,-57],[-8,-47],[-7,-101],[1,-26],[8,-29],[-7,-48],[-2,-42],[7,-32],[25,-39],[104,-122],[-81,-86],[-30,-56],[-38,-58],[-29,-31],[-13,-51],[3,-54],[20,-13],[36,-33],[24,-35],[22,-43],[1,-37],[-18,-61],[-17,-16],[60,-190],[147,-125],[62,-70],[47,-23],[15,-46],[45,-33],[15,-23],[-49,-61],[-26,9],[-24,-2],[-41,9],[-53,6],[-56,-13],[-11,4],[-27,-3],[-20,4],[-87,31],[-25,12],[-13,11],[-12,22],[-29,11],[-47,-25],[-25,-9],[-46,-3],[-39,18],[-50,7],[-35,-15],[-9,-23],[-42,-15],[-39,-18],[-35,-6],[-95,42],[-8,14],[-11,4],[-17,-3],[-15,8],[-15,28],[-71,17],[-63,11],[-36,-17],[-36,-12],[-48,-3],[-32,0],[-48,-11],[-28,-13],[-30,-27],[-30,-33],[-11,-33],[-6,-34],[-16,-28],[-69,-25],[-43,7],[-27,-9],[-41,5],[-24,-8],[-26,2],[-49,10],[-21,-11],[-32,-5],[-21,-1],[-40,-25],[-26,-30],[-18,-13],[-37,1],[-11,-11],[-22,-6],[-28,3],[-9,-6],[-26,2],[-49,-15],[-40,-24],[-60,-21],[-23,-3],[-13,-12],[-40,-7],[-41,-23],[-40,-37],[-59,-9],[-37,15],[-25,6],[-16,-2],[-35,-19],[-1,-16],[-14,-5],[-38,-44],[-12,-4],[-26,4],[-25,0],[-46,-8],[-3,-9],[-27,-3],[-8,8],[-60,-7],[-27,-1],[-31,-27],[-31,-9],[-26,-18],[-12,-21],[-25,-21],[-25,-27],[-14,-23],[-88,-19],[-36,14],[-14,12],[-48,9],[-39,21],[-51,-26],[-17,1],[-45,-11],[-62,-24],[-50,-45],[-15,-2],[-9,-10],[-25,0],[-10,13],[-14,5],[-6,11],[-27,-15],[-11,-12],[-21,-7],[-29,15],[-20,-3],[-7,-7],[-15,5],[-21,-14],[-22,-3],[-18,9],[-26,2],[-15,-5],[-10,4],[-51,0],[-31,-2],[-9,-6],[-80,9],[-62,-4],[-44,-17],[-116,-18],[-56,10],[-49,-35],[-5,-1],[-62,16],[-63,-14],[-16,0],[-52,7],[-50,12],[-82,32],[-41,18],[-45,-15],[-29,-1],[-63,16],[-36,-15],[-49,-1],[-66,-20],[-45,-8],[-29,-9],[-66,-42],[-86,-31],[-36,-21],[-115,-24],[-64,-25],[-72,-16],[-99,12],[-132,-120],[-67,-26],[-27,-9],[-36,-22],[-58,-43],[-75,-32],[6,-115],[-5,-80],[-25,-71],[-33,-44],[-30,-80],[-84,-40],[-17,-25],[-18,-3],[1,-21],[-4,-13],[-19,-8],[-20,-24],[-10,-4],[-21,-21],[-11,3],[-24,-4],[-16,-9],[-12,7],[-9,-10],[3,-19],[-9,-6],[-9,-18],[-26,-11],[-9,-23],[-18,-5],[-20,-20],[-7,-30],[-8,1],[-30,-16],[-34,7],[-13,-21],[-8,6],[-54,-15],[-13,-8],[-20,0],[-44,-6],[-21,17],[-9,1],[-26,-24],[-35,-14],[-20,-4],[-16,-13],[-15,6],[-27,-6],[-11,2],[-19,-13],[-8,6],[-36,-7],[-26,-18],[-15,8],[-16,-13],[-35,-7],[-19,-10],[-51,-3],[-12,-8],[-27,2],[-20,-9],[-36,-2],[-21,8],[-12,-7],[-5,10],[-32,4],[-10,-10],[-28,-3],[1,15],[-15,21],[-13,10],[-22,-16],[-8,12],[-46,-8],[-27,14],[-14,-6],[5,14],[-21,-2],[-23,9],[-19,3],[-33,13],[-20,1],[-14,14],[-7,-8],[-22,-1],[-13,6],[2,-13],[-9,-22],[5,-18],[13,-23],[0,-14],[-27,-27],[-18,1],[-34,-23],[-1,-15],[6,-11],[-11,-30],[-9,-6],[-8,-19],[-32,-9],[-3,-17],[-28,-7],[-10,-22],[4,-11],[-7,-6],[-13,5],[-37,-40],[-13,-2],[-23,-58],[-38,-29],[-34,-36],[-50,-41],[-53,11],[-2,-18],[1,-35],[-20,-12],[-10,-16],[2,-11],[-9,-14],[-13,1],[-4,-16],[8,-24],[17,-27],[-6,-7],[-2,-18],[-12,-4],[4,-21],[-20,-8],[-11,3],[6,-28],[-11,-1],[-9,-45],[-18,2],[-17,-24],[-29,-16],[-10,-19],[-15,-12],[-11,-18],[1,-12],[-21,-17],[-15,4],[-14,-11],[-3,-27],[14,-1],[-27,-31],[-35,-46],[4,-23],[-10,-9],[-12,7],[-2,-17],[-17,-18],[3,-14],[-25,-20],[1,-19],[-23,-20],[-6,-36],[-1,-50],[-6,-7],[8,-31],[-3,-20],[-12,-14],[-19,-42],[-21,-36],[5,-12],[-17,4],[-112,41],[-1,8],[-68,27],[-43,21],[-17,-15],[-50,-30],[-51,-33],[-21,-18],[-43,-27],[-14,-11],[-23,-53],[-25,-30],[-28,-20],[-49,-50],[-6,-9],[-22,-57],[-15,-20],[-40,15],[-28,15],[-15,0],[-23,10],[-116,21],[-30,1],[-25,-5],[-31,9],[-36,2],[-41,10],[-52,10],[-19,1],[-79,19],[-12,0],[-72,18],[-51,4],[-43,6],[-19,8],[-47,4],[-28,-14],[-14,2],[-12,-12],[-30,0],[-6,-21],[-26,2],[-25,-6],[-37,-20],[-45,-15],[-7,-5],[-17,4],[-11,-12],[-9,3],[-3,-14],[-17,11],[-18,-24],[-11,1],[-7,10],[-23,-3],[-1,11],[-25,2],[-14,-22],[-26,-14],[8,-12],[-1,-12],[-23,-11],[-20,-3],[-29,24],[-32,-10],[-36,3],[-8,25],[-22,3],[-34,45],[-40,16],[-2,7],[-35,31],[-1320,-605],[-247,-108],[-8,-1],[-166,-76],[0,27],[-20,3],[-8,9],[1,12],[-22,35],[-24,32],[-72,82],[-68,80],[-15,8],[-39,-13],[-44,-9],[-32,7],[-25,-5],[-12,-8],[-98,-9],[-7,23],[-42,8],[-19,9],[3,16],[-20,6],[-25,-10],[-27,-5],[3,23],[-34,17],[0,10],[17,9],[-12,7],[-6,-9],[-14,0],[-6,16],[7,13],[-14,10],[-26,-13],[-10,3],[-1,-13],[-38,17],[-72,49],[-35,0],[-17,16],[-8,-2],[-18,13],[-1,21],[-11,-7],[0,13],[-32,11],[-14,14],[-27,-12],[-4,25],[-14,16],[-44,11],[-22,-1],[-22,-13],[-7,8],[8,9],[1,16],[-46,-13],[-9,7],[-5,16],[-15,-8],[-8,15],[-12,4],[-14,-8],[-20,8],[-11,13],[-14,-12],[-12,2],[-7,29],[12,10],[-68,75],[-71,26],[-22,0],[-8,17],[-7,-7],[-12,-32],[-24,-26],[-10,2],[-51,31],[-27,5],[-20,-5],[-20,7],[-18,-3],[-24,5],[-2,27],[-19,4],[-50,15],[-17,2],[-28,-7],[-20,1],[-53,20],[-71,16],[-31,1],[-10,6],[-41,43],[-37,2],[-32,10],[-24,-2],[-24,4],[-19,-8],[-68,-5],[-30,-22],[-37,-15],[-26,-24],[-22,-2],[-19,11],[-32,8],[-19,1],[-53,19],[-30,2],[-18,-6],[-8,4],[-14,-7],[-46,-15],[-24,-31],[-19,-16],[-2,-20],[-18,-3],[-30,14],[-14,-4],[-38,1],[-44,32],[-4,24],[-14,13],[3,18],[-4,21],[5,10],[-22,23],[-49,-18],[-26,38],[-22,16],[-41,-1],[-10,25],[-35,25],[-55,18],[-32,32],[3,18],[25,37],[-57,47],[-7,19],[7,14],[-14,19],[-33,4],[-8,7],[10,34],[-25,2],[-12,11],[-17,1],[4,-22],[-22,-5],[-33,-39],[2,-18],[-45,-23],[-37,-10],[-66,-33],[-68,-10],[-5,-12],[-17,-8],[-12,2],[-30,-7],[-111,-35],[-21,0],[-70,18],[-22,9],[-58,-1],[-26,-4],[-89,29],[-68,41],[-88,-8],[-51,9],[-244,0],[-88,-28],[-142,20],[-22,-17],[-30,-9],[-41,26],[-27,2],[-6,23],[-52,47],[-3,11],[-22,15],[-28,48],[-57,79],[-35,69],[-52,56],[-54,55],[-51,26],[-51,31],[-50,77],[-96,147],[-46,40],[-30,17],[-30,34],[-18,15],[-40,11],[-15,9],[-92,-30],[-15,-12],[-2,-11],[-15,0],[-11,-7],[-97,-3],[-41,4],[-24,-1],[-18,-7],[-30,-2],[-6,8],[-48,11],[-1,20],[-25,-3],[-8,6],[-31,0],[-12,10],[-69,-8],[-24,12],[-14,-3],[-3,11],[-17,1],[-11,13],[-27,-4],[-18,22],[-35,-4],[2,14],[-13,11],[-14,-7],[-7,7],[-18,3],[-10,17],[-15,10],[-11,-9],[-15,1],[-32,17],[-33,37],[-11,-5],[-11,15],[-24,14],[-26,3],[-4,13],[-16,20],[-18,7],[-5,13],[-42,1],[5,18],[-9,14],[-13,2],[-21,-6],[-17,13],[5,14],[-14,-2],[4,19],[-7,6],[10,10],[-10,11],[-22,-12],[-18,5],[2,14],[-7,11],[9,12],[-20,-4],[-2,14],[-14,2],[11,15],[-9,13],[-18,-13],[-15,7],[0,18],[-7,13],[-22,14],[-13,1],[-26,-20],[-32,7],[-7,9],[-6,-10],[-11,3],[-19,-14],[-11,0],[-17,-21],[-20,-12],[8,-9],[0,-19],[-7,-7],[-28,0],[-29,11],[-20,-6],[-26,-30],[-3,-11],[-16,-7],[-15,-14],[-9,10],[-13,1],[-4,-16],[-19,2],[-14,-15],[-16,-38],[-8,-10],[-12,8],[-10,-37],[-44,-4],[2,-15],[-26,-14],[-39,-17],[-18,19],[-20,-15],[-4,-16],[-30,-4],[1,-17],[-7,-8],[-11,3],[-13,-17],[-10,12],[-11,-3],[-20,19],[-3,-17],[-9,-6],[-24,13],[-19,2],[-24,-19],[-7,5],[-18,-18],[-18,2],[-24,14],[-20,-15],[-26,-4],[-13,8],[-7,-15],[-11,7],[-14,-7],[-12,-23],[-12,-4],[-16,6],[-8,-18],[-18,2],[-9,-16],[-17,6],[-18,26],[-19,14],[-31,-8],[-17,19],[-6,1],[-23,-17],[-31,3],[-7,17],[-22,2],[-12,14],[-14,-12],[-23,2],[-19,-8],[-31,-3],[-14,-17],[-23,-5],[-8,10],[-43,-5],[-14,-7],[-19,6],[-17,-8],[-4,21],[-17,14],[3,18],[-25,14],[-17,-1],[-16,-15],[-25,-5],[-18,4],[-5,-19],[-22,2],[-7,-4],[-17,11],[-21,-4],[-15,-9],[-23,4],[-14,-13],[-17,19],[-7,1],[-28,-17],[-17,4],[-23,18],[-31,5],[-19,-15],[-15,7],[-14,22],[-26,0],[-21,31],[-21,-4],[-73,4],[-27,7],[-30,-17],[-26,1],[-11,-34],[-20,-15],[-44,-14],[-29,13],[-34,-14],[-24,-15],[-36,-8],[-21,-14],[-15,6],[-20,-3],[-28,2],[-22,-9],[-10,29],[-32,-2],[-71,-26],[-45,0],[-29,4],[-156,-19],[-174,-69],[4,-38],[-31,-2],[-6,16],[-13,-4],[-12,8],[-14,-2],[-19,-14],[-20,5],[-30,-12],[-28,9],[-27,16],[-12,1],[-32,-17],[-16,-17],[-34,-8],[-10,-16],[-23,-12],[-49,3],[-5,8],[-15,-9],[-30,-2],[-14,11],[-18,-17],[-27,-2],[9,-20],[-11,-15],[-11,-29],[-40,-8],[-5,-17],[-15,-17],[-6,-51],[-11,-8],[-26,-3],[3,-12],[-34,1],[-17,-10],[-35,-9],[-44,-18],[-27,-28],[-64,-24],[-36,-8],[-14,8],[-19,2],[-1,7],[-30,15],[-27,-9],[-70,-17],[-64,5],[-14,6],[-27,-1],[-18,5],[-15,11],[-5,13],[-15,17],[-10,1],[-21,21],[-14,8],[-2,19],[-10,7],[-46,9],[-12,-1],[-54,-39],[-22,15],[-9,-6],[-21,4],[-53,-24],[-31,-8],[-14,-44],[-7,-5],[-64,-16],[-33,4],[-20,-7],[-22,-1],[-25,-12],[-22,-15],[-17,1],[-74,18],[-27,18],[-39,2],[-19,18],[-40,5],[-53,-3],[-2,-28],[-33,-23],[-19,-1],[-25,11],[-32,9],[-21,-3],[-20,19],[-33,5],[-24,-5],[-18,-11],[-26,-3],[-13,11],[-28,-24],[-29,-12],[-37,-4],[-11,-14],[-29,-13],[-10,12],[-48,13],[-20,-24],[-23,-22],[-14,-17],[-18,-9],[-41,6],[-45,-8],[-9,-5],[-12,-34],[-3,-24],[-10,-27],[-13,-17],[-24,37],[-10,9],[-23,5],[-19,28],[-13,12],[-14,5],[-14,21],[-12,38],[17,45],[-2,14],[6,43],[38,56],[8,16],[-4,33],[-7,16],[3,35],[-1,34],[-5,25],[4,10],[-9,17],[5,33],[-6,18],[27,46],[-6,36],[-5,9],[11,9],[7,-7],[24,20],[20,9],[10,-2],[33,74],[9,37],[-1,30],[-21,58],[-28,59],[-28,16],[-104,23],[-20,5],[-52,2],[-78,80],[-42,30],[-186,58],[-29,10],[-74,55],[-31,12],[-34,6],[-118,7],[-39,3],[-67,11],[-30,7],[-26,9],[-44,33],[-47,82],[-8,43],[-5,54],[-16,41],[-21,37],[-6,-9],[-44,16],[-6,12],[-47,62],[-21,-16],[-18,-5],[-9,8],[-72,1],[-40,15],[-22,-2],[-19,-8],[-42,11],[-19,-1],[-22,-10],[-18,5],[-20,-23],[-21,-5],[-16,-15],[-17,-22],[-16,-14],[-14,3],[-30,-13],[-13,-10],[-42,9],[-11,14],[-33,-10],[-17,-28],[-17,10],[-21,41],[-10,5],[-25,-33],[-26,-26],[-33,4],[-8,6],[-30,-10],[-36,26],[-16,-10],[-9,-21],[-17,-10],[-28,13],[-36,-1],[-20,-16],[-3,-16],[-30,4],[-9,-7],[-11,-30],[-57,-4],[-23,14],[-44,79],[-21,9],[-4,26],[-9,15],[-15,12],[2,19],[-13,4],[-43,-6],[-20,-12],[-28,-5],[-18,-25],[-17,-15],[-8,-18],[-25,-12],[-19,-3],[-29,8],[-62,26],[-35,20],[-44,41],[-20,23],[-44,61],[-26,42],[-16,18],[27,2],[63,31],[65,16],[19,20],[27,-5],[33,28],[10,65],[14,31],[66,57],[9,63],[13,32],[167,68],[74,14],[54,-20],[38,13],[9,24],[1,20],[68,117],[62,66],[24,96],[-8,4],[-16,21],[18,25],[7,1],[18,19],[10,46],[36,78],[-5,22],[24,20],[-10,28],[36,11],[41,49],[32,26],[22,4],[52,64],[-30,200],[-30,202],[-63,60],[-82,48],[-86,-56],[-59,-44],[-51,-58],[-473,290],[97,99],[-24,21],[18,14],[29,-3],[-2,12],[-22,23],[-31,39],[-22,-17],[-11,12],[-13,-3],[-41,5],[-19,8],[-35,-25],[-12,-31],[-51,-26],[-24,50],[9,19],[36,28],[56,32],[23,25],[10,16],[14,35],[-119,44],[-100,38],[-29,-9],[-15,-10],[-91,218],[-29,3],[-12,27],[-20,2],[-15,39],[49,24],[3,41],[-91,64],[9,8],[1,21],[10,21],[16,49],[-6,11],[10,5],[-11,16],[7,14],[-11,18],[1,16],[-21,17],[6,8],[-6,19],[5,8],[3,27],[8,39],[0,23],[10,33],[8,54],[18,5],[15,22],[95,154],[130,187],[70,101],[25,33],[25,22],[27,65],[-11,12],[-4,17],[13,19],[4,17],[-11,26],[1,38],[16,27],[13,11],[14,26],[14,0],[26,-12],[30,6],[44,25],[24,28],[35,3],[25,46],[0,31],[21,26],[29,61],[11,-3],[-5,66],[19,31],[9,29],[21,18],[12,17],[12,5],[22,-1],[0,21],[-13,31],[1,10],[18,16],[3,15],[-8,7],[-4,58],[23,32],[0,18],[88,107],[62,90],[25,45],[21,24],[12,24],[1,15],[17,16],[89,72],[8,27],[36,55],[36,67],[-6,16],[12,10],[-16,5],[-2,10],[8,19],[12,8],[7,20],[17,9],[1,9],[34,40],[12,9],[37,-2],[21,-8],[31,-56],[16,-15],[1,-36],[36,0],[19,16],[17,5],[21,-7],[6,-9],[20,9],[9,-11],[13,2],[23,-11],[72,-28],[59,-6],[56,-14],[73,-21],[-9,-22],[8,-22],[23,-5],[-5,-30],[21,-7],[265,63],[210,93],[28,12],[83,112],[184,9],[13,67],[166,-73],[38,3],[66,118],[-47,34],[29,69],[11,-3],[67,119],[98,180],[41,20],[40,1],[11,19],[13,-10],[25,13],[6,-10],[20,-4],[-3,-12],[15,-1],[15,25],[242,59],[411,170],[119,42],[84,74],[59,34],[30,22],[70,49],[35,17],[209,204],[108,209],[30,150],[-17,155],[-126,352],[-78,123],[-51,101],[-13,83],[-5,77],[-4,104],[2,32],[-64,12],[-34,8],[-114,25],[-32,23],[-19,18],[-47,35],[-17,15],[-59,48],[-23,199],[-125,240],[-61,53],[-17,32],[-20,14],[-61,26],[-18,19],[-10,43],[-34,-8],[-36,-12],[-63,-36],[-31,-12],[-11,3],[-26,29],[-30,42],[-8,5],[-35,88],[-41,16],[-32,8],[-85,96],[19,31],[-34,32],[-8,15],[-5,26],[12,11],[31,55],[29,13],[20,22],[26,15],[30,35],[-6,13],[12,0],[16,18],[15,-5],[18,8],[-1,8],[35,28],[0,12],[12,5],[25,24],[12,2],[7,10],[17,9],[-44,66],[-183,12],[-22,5],[-56,3],[-29,-1],[-51,-10],[-27,0],[-44,9],[-23,8],[-42,-5],[14,99],[3,29],[14,81],[36,13],[10,45],[46,71],[40,42],[17,33],[92,121],[31,81],[27,30],[29,13],[-2,20],[-12,19],[-35,19],[-30,24],[-12,15],[-4,37],[4,24],[-1,30],[10,27],[-2,11],[11,19],[9,42],[2,53],[25,23],[11,42],[-10,15],[-19,11],[0,11],[-18,13],[-5,26],[-9,9],[1,49],[-7,17],[4,12],[-12,17],[-7,25],[2,29],[-14,29],[-12,9],[-7,16],[-13,8],[1,18],[-18,19],[-35,15],[3,14],[-28,15],[-27,3],[-10,13],[-14,7],[-13,26],[-5,30],[-6,8],[5,41],[-4,23],[-12,27],[6,20],[45,46],[5,20],[12,16],[-3,14],[5,32],[42,54],[17,39],[9,6],[11,20],[11,33],[-17,14],[-34,56],[-34,33],[-23,14],[-40,19],[-26,19],[-23,7],[-144,-41],[-132,-31],[-87,-18],[-158,-25],[-120,-18],[-102,-14],[-7,2],[-273,-7],[-51,7],[-255,61],[-184,38],[-164,20],[-161,29],[-107,3],[-4,-99],[11,-56],[-5,-9],[-23,-12],[-7,-20],[-15,-3],[-7,-38],[-7,-7],[12,-15],[-5,-33],[-16,-16],[9,-4],[-22,-50],[-11,-40],[12,-35],[12,1],[5,-19],[22,1],[-8,-33],[-19,-18],[-24,-6],[-19,-18],[-17,-8],[-47,47],[-15,9],[-47,20],[-158,-10],[-112,5],[-43,5],[-19,-3],[-42,10],[-3,-29],[-51,34],[-49,26],[-116,39],[-66,21],[-52,12],[-216,95],[1,5],[-64,27],[-15,28],[-1,21],[-47,80],[-34,17],[-8,16],[-24,22],[-11,4],[-27,22],[-63,30],[-1,10],[11,16],[19,11],[7,32],[-6,11],[16,20],[9,3],[17,24],[52,104],[-2,15],[12,38],[19,32],[9,25],[19,36],[14,6],[58,4],[24,7],[15,26],[17,9],[12,-8],[8,4],[12,33],[16,7],[20,21],[38,35],[0,30],[6,23],[9,4],[-1,56],[-6,18],[-26,55],[-7,26],[14,30],[2,20],[14,35],[22,35],[13,30],[9,7],[1,57],[-6,21],[5,36],[11,21],[2,24],[-4,16],[19,25],[2,12],[-7,12],[11,17],[-6,19],[11,20],[8,1],[15,27],[41,32],[0,11],[13,3],[15,19],[2,11],[33,36],[69,62],[24,13],[31,21],[21,23],[-4,10],[26,20],[2,9],[43,31],[25,41],[17,12],[-1,15],[59,33],[7,12],[10,-2],[4,16],[21,3],[-3,9],[22,-1],[24,8],[-4,9],[12,1],[12,-9],[16,2],[5,-8],[16,-2],[15,8],[10,-7],[23,29],[11,3],[26,27],[2,22],[10,5],[5,29],[14,5],[33,40],[5,1],[45,29],[14,4],[76,154],[-29,14],[2,15],[13,12],[25,37],[-5,9],[12,14],[-30,42],[-6,28],[1,134],[2,107],[7,122],[19,58],[13,64],[-105,24],[-169,46],[-77,19],[-24,9],[-2,64],[33,28],[93,289],[20,60],[5,5],[111,85],[-1,11],[7,54],[18,32],[23,29],[34,21],[19,0],[32,40],[6,343],[47,70],[34,25],[-43,37],[-25,40],[0,34],[-10,48],[-15,32],[-2,26],[28,24],[11,15],[31,-8],[38,-22],[40,-29],[20,0],[45,103],[14,215],[4,90],[-10,182],[-10,85],[9,61],[-18,9],[-35,-7],[-17,0],[-20,8],[-23,18],[-9,12],[-43,45],[-30,12],[-25,5],[-7,15],[5,16],[-24,5],[-1,19],[-10,34],[-13,18],[-18,40],[-3,13],[-26,31],[-29,52],[-37,-6],[-11,-8],[-9,-15],[-7,26],[7,16],[8,4],[-18,8],[-1,10],[18,14],[-7,23],[21,-4],[-7,32],[-12,-4],[-15,14],[25,13],[1,17],[22,6],[-21,10],[0,12],[18,10],[-17,11],[15,9],[-18,21],[1,19],[-10,12],[12,9],[-3,8],[-32,4],[-4,17],[22,10],[0,8],[-12,28],[5,11],[-23,21],[-23,10],[-18,-1],[-11,8],[9,22],[-18,19],[10,16],[-4,27],[22,-7],[41,-20],[10,-29],[23,-13],[29,-6],[27,2],[36,26],[19,24],[45,48],[21,11],[37,3],[57,-12],[29,-1],[83,10],[74,16],[65,25],[75,0],[43,2],[-17,54],[0,44],[120,33],[46,-4],[35,73],[12,-1],[101,-51],[28,40],[27,-11],[14,69],[-32,6],[1,45],[-15,1],[-47,-14],[-16,-22],[-43,8],[27,68],[81,0],[32,63],[99,-19],[57,107],[129,310],[42,113],[10,22],[14,40],[15,63],[18,51],[16,23],[14,28],[5,23],[-5,51],[-1,32],[9,20],[372,321],[109,123],[101,116],[9,36],[47,-11],[26,-9],[49,-9],[32,-10],[20,-14],[54,-10],[13,28],[18,6],[2,12],[13,5],[15,17],[159,-12],[10,50],[45,27],[34,18],[14,38],[1,44],[53,69],[67,47],[73,26],[34,4],[34,13],[31,45],[62,31],[44,51],[11,26],[20,16],[22,44],[33,31],[51,25],[105,114],[106,101],[22,158],[-4,24],[29,54],[14,64],[-22,37],[37,25],[-22,141],[-93,104],[-35,16],[-23,41],[-113,49],[-18,47],[-10,91],[-36,95],[-114,263],[-178,249],[-23,82],[-68,-15],[-30,11],[-41,39],[-56,56],[-63,25],[-44,3],[-44,14],[-8,-61],[-86,45],[-48,-60],[-30,-20],[-11,-3],[-40,1],[-47,-4],[-38,-7],[-51,1],[0,19],[5,12],[-102,19],[-39,39],[-61,13],[-22,-25],[-124,49],[-51,3],[-78,0],[-59,-35],[-26,-38],[-25,17],[-53,9],[-62,50],[-46,21],[-52,-11],[-31,15],[-9,61],[-26,73],[-70,84],[47,82],[23,61],[7,45],[4,241],[-352,15],[43,247],[-107,22],[-69,13],[-177,28],[-76,-287],[-154,7],[-83,13],[-16,-7],[-43,-4],[-77,-18],[12,-13],[13,7],[13,-3],[4,-12],[-16,-12],[4,-16],[16,7],[17,-2],[12,-15],[22,-8],[0,-14],[-22,-11],[17,-19],[12,-20],[-13,-10],[-5,-14],[-27,-18],[0,-20],[16,-9],[1,-13],[-20,-28],[-8,-25],[12,-13],[-4,-18],[38,-14],[-2,-15],[-36,-27],[0,-8],[-21,-40],[-85,-77],[-32,-22],[-27,-3],[-54,-35],[-20,-2],[-18,-25],[-6,-19],[15,-18],[0,-13],[-13,-53],[11,-12],[10,-23],[-4,-32],[24,-23],[1,-15],[12,0],[68,-15],[28,-8],[42,-6],[77,-27],[55,-30],[25,-24],[75,-30],[55,-1],[37,-10],[12,8],[5,-15],[64,-22],[45,2],[30,15],[14,3],[34,-5],[-22,-192],[116,-91],[14,-54],[66,-6],[2,-11],[24,0],[29,-30],[-38,-417],[-9,-68],[-7,-22],[-129,-2],[-66,-149],[-437,-70],[-16,3],[-17,-7],[-13,20],[-22,1],[-38,-11],[-39,4],[-34,-4],[-19,3],[-32,18],[-27,26],[-19,23],[-48,53],[-10,0],[-88,19],[-49,-1],[-46,-20],[-29,-19],[-88,-18],[-51,-17],[-28,-14],[-75,-14],[-48,-17],[-22,-1],[-3,19],[-7,-3],[-19,42],[-44,-17],[-7,31],[-15,132],[30,-2],[100,15],[48,252],[-17,5],[-8,35],[-16,1],[5,26],[-49,66],[-39,12],[-28,25],[-21,-5],[-36,1],[-25,27],[-13,35],[1,46],[63,86],[-5,16],[12,37],[2,78],[45,274],[17,48],[-246,6],[-97,-17],[-65,-4],[-146,-62],[-33,-42],[-9,85],[-5,-1],[-114,259],[160,191],[9,31],[-13,100],[41,243],[8,55],[-16,146],[-10,13],[-10,116],[-18,60],[-36,180],[-10,2],[-12,89],[-43,177],[-7,69],[-97,58],[-66,61],[-33,41],[-15,14],[-20,49],[-10,44],[59,27],[-11,29],[-27,46],[-58,74],[-40,-47],[-99,-92],[-9,11],[-44,-24],[-57,66],[-70,-56],[-35,-25],[-42,95],[-38,87],[-17,45],[-35,85],[-32,55],[-10,-4],[-21,44],[-43,62],[-55,73],[-6,4],[-89,94],[-85,95],[-139,108],[-79,-111],[-114,78],[-89,-40],[-188,-41],[-48,-21],[2,-6],[-105,-59],[9,-9],[-57,-65],[-78,-47],[-63,-1],[-7,39],[-79,12],[3,29],[-13,62],[51,10],[-20,167],[-1,37],[-39,91],[-4,60],[-3,4],[5,44],[2,65],[12,33],[-7,92],[-15,44],[-2,32],[4,16],[-12,16],[-16,11],[-53,30],[-11,22],[-29,14],[-99,65],[-14,12],[-39,22],[-60,37],[-26,25],[-14,20],[-25,27],[-61,79],[-16,16],[-77,94],[-36,72],[-4,27],[2,21],[-15,27],[-18,61],[-5,7],[-47,28],[-72,33],[-19,1],[-95,31],[-74,22],[-45,18],[-45,14],[-41,-23],[-19,8],[-12,35],[-34,-14],[0,98],[4,74],[-16,-4],[-77,33],[5,23],[13,76],[6,59],[21,75],[-8,57],[-126,7],[-101,16],[-256,-11],[-64,45],[-15,-16],[-93,71],[-91,81],[4,27],[-64,53],[-71,42],[24,82],[-19,33],[-83,95],[-48,36],[78,91],[-58,59],[-15,21],[-5,77],[22,16],[-14,19],[-29,0],[-9,14],[-19,-2],[-27,16],[22,32],[8,23],[11,11],[-8,11],[1,33],[-12,47],[-7,-44],[-12,-41],[-37,49],[-1,49],[-5,18],[3,20],[-27,67],[-60,74],[-21,14],[-14,22],[-34,32],[-11,1],[-7,-17],[-8,3],[7,34],[14,11],[5,37],[-10,7],[11,13],[-112,24],[-72,32],[-80,-170],[-142,23],[-68,8],[-27,-53],[-22,-24],[-88,-180],[52,-32],[64,-65],[-51,-21],[-94,-16],[-63,-43],[-96,-82],[-22,-8],[-50,3],[-21,7],[-20,-5],[-9,36],[-39,4],[-65,-21],[-54,-23],[-75,-11],[-76,-6],[-75,51],[0,-12],[-11,-45],[-28,-45],[-13,-38],[-55,-51],[-122,59],[-41,-45],[-107,48],[-6,-22],[-51,-48],[-186,-109],[25,-12],[19,-16],[-6,-31],[-77,-56],[48,-78],[-59,-37],[9,-14],[-98,-51],[-14,17],[-24,-18],[-83,110],[-82,85],[1,-57],[-160,102],[-61,13],[-46,68],[-44,-45],[-32,51],[-26,68],[-38,28],[-32,-74],[10,-22],[-23,-86],[-45,-76],[0,-54],[-36,-41],[-151,-174],[-88,59],[73,80],[43,58],[-41,35],[77,222],[16,9],[-43,103],[-6,29],[2,39],[-12,9],[-9,19],[-310,-164],[-132,-72],[-294,-160],[-31,-33],[-18,-7],[-69,0],[-20,-6],[-108,-85],[-118,-64],[-96,-54],[-100,-54],[-471,-257],[-97,-49],[-459,-248],[-102,-55],[-87,-49],[-86,-45],[-76,-42],[-41,-20],[-98,-54],[-67,-31],[-32,69],[-66,-32],[-17,-13],[-30,-55],[-41,-15],[-9,-10],[-31,-15],[-18,5],[-33,-12],[-82,45],[-13,-35],[-9,-37],[-29,2],[-32,14],[-21,16],[-14,23],[-29,14],[-35,23],[-27,35],[-23,16],[-35,-3],[-46,-17],[-56,-26],[-91,-24],[-94,-20],[-130,-30],[-13,-5],[-65,-14],[-8,30],[-17,93],[122,-7],[135,88],[-69,46],[-26,93],[52,9],[13,120],[-15,-7],[-14,73],[15,-2],[5,124],[-9,29],[-42,-17],[-29,-34],[-27,0],[-16,-18],[-25,17],[-16,25],[14,16],[-16,36],[-9,41],[54,-14],[51,24],[-32,97],[-13,0],[-5,19],[36,21],[-46,112],[-166,-77],[18,-69],[-178,-71],[-54,48],[-175,-80],[-150,33],[-327,162],[-184,112],[0,139],[-238,-113],[11,87],[54,45],[-4,121],[-34,97],[-45,52],[-21,55],[-95,124],[-65,68],[-204,97],[-62,23],[-94,28],[-105,7],[-3,-10],[-57,16],[-212,64],[-50,-103],[-27,15],[-45,6],[-35,-10],[-39,-24],[-14,-3],[-9,-10],[-35,-8],[-66,7],[-53,8],[-51,20],[-49,12],[-24,23],[-82,26],[-8,-4],[-35,1],[-16,-14],[-31,-4],[-9,-73],[4,-23],[17,-60],[12,-53],[-1,-34],[-13,-93],[-9,-41],[-38,-73],[-21,-27],[-33,-37],[-29,-40],[-34,5],[-52,-7],[-46,-3],[-42,-9],[-76,-21],[-55,-25],[-33,-4],[-71,12],[-94,-1],[10,31],[38,72],[42,70],[44,60],[34,67],[19,30],[-23,61],[-11,84],[-23,43],[-10,14],[-4,18],[-1,41],[-19,-4],[-11,9],[-28,12],[2,9],[-45,18],[-40,12],[-40,16],[6,16],[-36,15],[-40,12],[-70,23],[-5,6],[-61,11],[-33,-5],[2,-28],[7,-23],[-43,-21],[-28,-61],[-59,-77],[-44,35],[-68,-84],[-68,-39],[-8,-17],[-81,24],[-80,4],[-30,13],[-16,11],[-25,26],[-35,21],[-54,1],[-4,5],[-36,3],[-57,-4],[-40,-14],[-71,24],[-78,47],[-23,6],[-36,19],[-35,-1],[-56,4],[-20,-10],[-46,-4],[-24,-6],[-42,-3],[-22,-7],[-29,-17],[-17,-3],[-21,9],[-21,-7],[-99,15],[-25,5],[-17,-4],[-47,-40],[-40,-28],[-8,-15],[-59,-46],[-28,0],[-8,-5],[-27,6],[-26,-13],[4,-9],[-20,-1],[-14,25],[-28,12],[-22,24],[-7,-1],[-10,16],[-16,7],[-11,30],[-18,1],[-35,32],[-19,1],[-20,-50],[-39,-24],[0,-32],[-16,-27],[-89,-240],[-89,35],[-9,61],[-48,-22],[-35,2],[-3,-7],[-55,6],[8,35],[-35,1],[2,16],[-61,-45],[-14,11],[-20,-10],[-34,1],[-8,-11],[-52,17],[22,45],[-67,35],[-14,18],[-24,5],[-20,-15],[-27,5],[-36,20],[-21,20],[-19,-14],[-24,-5],[-105,20],[-19,-14],[-32,-8],[-18,-34],[-14,-13],[34,-55],[39,-71],[-17,-2],[-48,14],[-45,9],[-15,10],[-22,0],[-84,15],[-21,-113],[-118,22],[2,-108],[-14,-71],[-25,-10],[-32,-18],[-39,-12],[-26,-55],[-5,-46],[-65,21],[-68,-38],[-6,-12],[2,-24],[16,-8],[78,-15],[126,-59],[9,-8],[-24,-20],[-47,-19],[-10,6],[-89,-74],[-9,17],[-50,-37],[24,-32],[-55,-62],[9,-6],[3,-26],[12,3],[38,-41],[8,-35],[5,-37],[31,-26],[18,-1],[5,-15],[14,-3],[25,41],[28,-10],[-27,-45],[-15,-8],[4,-9],[-29,-31],[-26,8],[-20,-2],[-15,9],[-24,1],[-7,-10],[8,-33],[-1,-51],[-7,-16],[6,-29],[0,-55],[-5,-167],[-196,32],[-4,-77],[-6,-10],[-4,-134],[-21,-125],[35,-167],[122,-129],[-89,-149],[24,-61],[15,-18],[-36,-46],[-120,-111],[24,-16],[-62,-49],[52,-42],[42,-58],[-33,-26],[45,-62],[44,15],[22,-44],[52,-60],[-66,-84],[-100,31],[5,-96],[-141,49],[-233,89],[-3,39],[-25,36],[-21,67],[43,6],[-8,20],[-52,97],[49,22],[-5,22],[-11,25],[-112,113],[-13,-12],[-57,55],[-30,-20],[-68,69],[-22,19],[-34,-27],[-24,20],[-31,45],[-84,-49],[-26,41],[-52,-45],[13,-7],[33,-29],[41,-48],[1,-11],[-38,-25],[25,-32],[-31,-20],[-10,-12],[34,-37],[43,-35],[-43,-41],[38,-26],[-43,-29],[49,-19],[77,-28],[123,-48],[29,-95],[35,-84],[38,-89],[-86,-50],[44,-41],[14,-15],[-64,-67],[48,-14],[38,-48],[14,-11],[29,-1],[24,-15],[29,0],[28,-8],[18,-15],[-394,-105],[-107,-28],[-17,12],[-45,42],[-26,16],[21,21],[-44,50],[-10,101],[-81,72],[6,40],[-109,99],[-72,109],[-104,67],[-174,89],[-38,-29],[-47,41],[-8,-12],[-13,7],[7,37],[8,24],[-36,37],[15,72],[24,27],[24,0],[28,26],[-18,31],[-20,11],[-36,-8],[-55,17],[-36,21],[-5,32],[-15,7],[-27,-1],[-118,57],[-5,13],[-54,33],[-14,-7],[-101,48],[-20,-2],[-51,28],[-2,23],[256,-96],[26,-8],[38,98],[80,-14],[-28,-90],[20,-7],[34,-6],[38,77],[14,47],[5,75],[-1,22],[-253,68],[-9,83],[-71,11],[8,45],[-107,23],[32,115],[-43,49],[-40,51],[-20,-11],[-195,98],[25,71],[-78,30],[-5,114],[-25,58],[-53,-14],[-17,-2],[-82,11],[-13,116],[-56,43],[25,35],[28,73],[116,182],[29,82],[-50,74],[-35,13],[3,41],[-124,51],[20,54],[-119,72],[-95,34],[3,128],[-50,20],[-132,4],[-3,43],[-32,5],[11,45],[59,25],[51,171],[11,381],[-22,-6],[5,338],[-78,247],[-23,-1],[-22,19],[-9,72],[-139,19],[-34,28],[-93,51],[11,31],[-67,40],[9,23],[-36,25],[27,30],[-32,24],[62,63],[-43,40],[7,10],[-12,11],[5,10],[29,10],[10,-3],[-2,-16],[15,18],[-2,11],[-13,8],[-3,26],[-13,8],[-3,23],[24,7],[4,22],[-4,28],[-12,24],[25,25],[19,13],[13,-5],[8,17],[32,25],[24,15],[15,1],[21,33],[24,19],[14,-5],[6,34],[16,-7],[-4,29],[30,18],[2,22],[16,24],[0,24],[16,13],[18,-4],[4,17],[20,12],[5,21],[33,26],[8,16],[-6,15],[10,11],[1,19],[-13,6],[-13,24],[11,10],[20,3],[8,11],[25,8],[-3,21],[18,24],[-10,10],[-4,25],[8,15],[-15,21],[10,16],[6,-6],[20,5],[18,-6],[15,15],[17,-5],[9,4],[-4,20],[-20,0],[-4,8],[6,28],[-37,-2],[0,11],[24,16],[9,-6],[34,36],[7,37],[0,26],[31,7],[10,22],[17,21],[4,22],[3,47],[-4,18],[-35,11],[2,18],[20,19],[8,2],[6,-19],[44,-7],[9,3],[6,30],[11,6],[27,-5],[15,7],[4,23],[9,6],[30,11],[7,8],[20,42],[3,31],[17,41],[-11,24],[-5,26],[-24,51],[-19,19],[-4,14],[4,31],[-2,27],[5,40],[-6,17],[12,42],[-4,15],[-30,9],[-3,9],[9,16],[20,67],[0,20],[7,18],[2,69],[17,15],[8,18],[-5,43],[-33,21],[1,10],[24,25],[-14,17],[5,14],[0,37],[-9,7],[17,47],[20,66],[29,40],[20,17],[11,27],[-6,34],[6,21],[0,18],[-23,35],[-26,2],[-20,37],[1,21],[-25,23],[-12,53],[3,25],[14,49],[22,46],[19,24],[-21,12],[8,11],[-9,23],[0,19],[7,17],[-3,15],[11,14],[-7,6],[-12,74],[3,15],[-9,25],[-16,4],[-8,11],[9,31],[-21,9],[-6,12],[6,14],[-42,101],[-3,16],[-14,30],[24,-4],[-1,16],[17,19],[1,13],[-42,29],[0,11],[15,20],[-14,37],[-41,25],[-16,47],[-2,49],[3,27],[9,9],[-1,85],[-10,0],[2,31],[115,28],[-16,151],[-42,9],[-45,20],[-50,10],[-18,1],[-6,8],[-7,84],[13,71],[-10,147],[18,57],[8,59],[-5,111],[-13,33],[-10,244],[8,29],[-1,63],[-10,108],[44,28],[-34,59],[10,34],[-64,79],[-68,47],[16,19],[-74,45],[-43,-2],[-46,12],[-45,44],[-73,83],[-48,105],[-32,44],[49,34],[-7,57],[-81,3],[-10,31],[64,2],[24,22],[-7,57],[37,91],[4,31],[-11,18],[53,64],[20,4],[97,112],[-24,74],[-43,27],[-10,28],[13,116],[-22,39],[-27,39],[2,21],[-26,39],[-43,4],[-8,49],[-120,49],[-7,43],[-41,46],[-3,23],[-57,51],[-5,25],[-22,20],[-24,5],[-2,72],[-56,38],[-64,-70],[-92,53],[5,54],[-96,10],[-49,-32],[-29,-4],[-52,4],[-21,-2],[7,-26],[23,-26],[2,-26],[-14,-15],[-21,-1],[-36,7],[-6,33],[-14,24],[-29,4],[-273,350],[-81,161],[-50,49],[-45,131],[-107,199],[12,42],[-100,215],[49,44],[65,5],[-216,171],[-264,196],[-179,128],[-56,81],[-132,159],[-324,466],[-51,48],[-82,-65],[-156,-85],[-77,-63],[-231,-156],[-117,-49],[-47,-9],[-370,-57],[-16,2],[-70,23],[-83,24],[-46,4],[-60,42],[-43,57],[-5,16],[1,34],[23,68],[-1,16],[-17,14],[-26,13],[-29,31],[-45,25],[-52,41],[-62,23],[-32,8],[-57,-1],[-42,79],[18,12],[79,62],[-63,81],[-78,50],[-15,-9],[-52,32],[-16,4],[-21,-7],[-21,6],[-5,-15],[13,-17],[-17,-10],[-12,2],[-31,-31],[-42,-12],[-14,-21],[6,-13],[-3,-10],[-12,9],[-19,-12],[-12,7],[-9,-15],[-2,-18],[-17,0],[-2,-19],[-13,7],[-21,-15],[-1,15],[-13,-5],[-5,-12],[-16,2],[10,-15],[-20,-1],[-36,-19],[-16,17],[-33,-1],[0,-20],[-21,-5],[-7,4],[-18,-9],[2,16],[-27,6],[-18,-1],[4,11],[-34,-6],[-13,13],[8,7],[-18,7],[-15,20],[-14,5],[-13,-14],[-25,-3],[-3,-8],[12,-19],[-29,-6],[-11,-19],[-24,4],[-12,-7],[2,22],[-26,0],[-18,-8],[-9,-11],[-6,6],[-12,-9],[-6,5],[-21,-2],[-3,12],[-15,0],[12,17],[-7,4],[-15,-14],[-14,3],[7,15],[-12,8],[-17,-20],[-13,4],[2,-9],[-9,-16],[-8,8],[-12,-9],[-9,-20],[-9,15],[-18,-6],[-30,4],[-4,-12],[-13,-1],[-9,11],[-30,-15],[-17,-1],[-11,9],[-10,19],[-18,5],[-21,-23],[-7,8],[-26,-8],[4,-15],[-15,-32],[-11,2],[-14,-18],[-21,7],[-6,9],[-18,-6],[6,-14],[-18,5],[-6,31],[-6,-8],[-36,-5],[-5,-7],[9,-13],[-28,-13],[-25,-20],[9,-18],[-24,-10],[-2,-16],[-15,-16],[-17,-7],[3,-16],[-11,1],[-14,24],[-18,3],[-11,-6],[2,-29],[-6,-7],[-41,-14],[-31,-5],[1,-20],[-24,-6],[-12,10],[-11,-1],[-18,15],[-18,27],[1,5],[-33,4],[-10,-8],[-21,13],[-25,7],[-27,-5],[-19,6],[-9,20],[-20,-9],[-4,28],[-8,-6],[-22,7],[-8,-12],[-27,3],[-7,12],[-25,-8],[-4,12],[-32,-25],[-21,18],[-7,-14],[-27,9],[-21,-16],[-14,-5],[-20,6],[-12,-5],[8,-16],[-4,-20],[-18,6],[-13,-16],[-12,4],[-7,13],[-14,-7],[-11,5],[-15,-6],[-13,7],[3,13],[-29,-15],[-12,9],[-11,-16],[-9,2],[-11,17],[-12,-14],[-14,-1],[-25,19],[0,-15],[-20,1],[1,20],[-25,-2],[-10,5],[6,-20],[-12,-11],[-13,23],[-9,1],[-3,-13],[11,-8],[-41,-23],[-27,-28],[-28,23],[-9,-17],[-47,1],[-7,-15],[17,-23],[-9,-12],[-36,5],[-9,-4],[-1,-16],[7,-10],[-7,-8],[-19,-5],[-8,-21],[-15,-12],[-7,-17],[-18,6],[-7,-7],[2,-24],[-29,-1],[-1,-14],[-9,-4],[-22,7],[2,-24],[-14,-9],[-11,-15],[-20,1],[-11,-19],[-19,4],[-26,-5],[-14,11],[-18,-1],[-14,10],[-9,-19],[-16,4],[-18,-20],[-24,8],[-27,-5],[-9,-12],[-20,11],[-12,-30],[-26,-2],[0,-20],[-6,-4],[-39,14],[-10,-9],[25,-21],[-21,-16],[-8,-24],[-30,-9],[-19,14],[-16,-10],[-17,4],[-14,-17],[-28,-12],[-66,-36],[-38,-22],[-44,-15],[-18,-36],[-11,-10],[2,-25],[-21,2],[-31,-6],[-24,-12],[-20,-3],[-15,75],[-49,24],[0,16],[-18,57],[15,9],[-8,21],[4,35],[-40,64],[-1,12],[7,66],[-42,67],[-5,27],[12,21],[40,41],[15,8],[25,29],[-38,64],[-2,7],[-48,100],[-30,51],[-37,83],[64,59],[-10,14],[8,18],[38,57],[36,59],[5,-4],[43,62],[-7,6],[60,72],[17,-13],[29,34],[-21,17],[22,19],[39,29],[-22,25],[34,22],[14,-13],[33,33],[-32,13],[-8,10],[24,64],[8,1],[26,24],[9,-4],[6,12],[24,-8],[13,2],[10,24],[20,-4],[3,13],[11,-6],[4,-19],[24,0],[-4,14],[24,21],[-10,16],[10,10],[6,-12],[38,3],[4,8],[17,-1],[-2,15],[11,9],[5,-9],[19,6],[2,20],[21,11],[3,17],[12,-2],[1,12],[11,2],[6,14],[13,-1],[2,11],[-8,6],[18,5],[-2,17],[15,10],[19,-6],[3,7],[16,1],[-7,9],[14,3],[-1,19],[20,-4],[4,20],[11,-1],[8,16],[11,0],[8,21],[11,1],[6,26],[20,7],[3,-8],[43,25],[19,24],[12,20],[17,15],[4,29],[15,30],[-8,25],[6,17],[9,5],[-5,13],[8,7],[-4,12],[-32,21],[-29,12],[61,103],[-13,15],[7,41],[27,23],[8,1],[23,34],[-7,15],[11,35],[4,24],[-11,0],[-4,25],[10,0],[-2,13],[8,3],[-5,25],[19,-7],[2,15],[-3,34],[-15,11],[6,43],[-15,2],[-2,8],[16,42],[20,28],[22,0],[25,24],[12,17],[6,23],[7,7],[-65,49],[-12,26],[-31,10],[-94,25],[-30,-5],[-59,23],[-36,10],[-21,20],[-44,-7],[-13,1],[-28,33],[-14,27],[-16,21],[-57,51],[-27,35],[-19,5],[-28,-6],[-41,-15],[-11,52],[-88,-24],[-48,109],[-46,-11],[-35,-14],[-17,1],[-35,22],[-51,13],[-45,16],[-29,-21],[23,-48],[-33,-15],[-19,33],[-10,23],[-88,-14],[-9,1],[-45,-13],[-24,-15],[-50,-13],[-66,-55],[-36,-39],[-6,0],[-36,80],[-9,8],[-18,-22],[-54,37],[-40,34],[-25,0],[-53,25],[-40,13],[-17,11],[-17,28],[-53,14],[-44,-12],[-23,-8],[-19,0],[-16,26],[-18,21],[-58,22],[-38,5],[-22,7],[-27,21],[-31,33],[-37,12],[-74,38],[-50,43],[-18,-23],[-1,-21],[-10,-18],[-19,-10],[-63,9],[-84,-14],[-34,-39],[2,-15],[34,-47],[9,-26],[-16,-32],[-39,-38],[-22,-16],[-33,-18],[-6,-31],[-21,-17],[-3,5],[-37,-71],[-12,-26],[-44,-28],[-34,-47],[-62,-58],[12,-25],[-37,-29],[0,-4],[-95,-80],[-53,-37],[-6,-11],[-17,-1],[-38,-15],[-62,-30],[-7,-35],[-18,-36],[-14,-15],[-74,-63],[-9,-15],[-15,-10],[-17,-27],[-42,-30],[12,-17],[1,-20],[-20,-22],[-2,-59],[7,-4],[8,-61],[8,-2],[15,-66],[-6,-37],[-52,-46],[5,-10],[1,-29],[-6,-15],[-12,-9],[-18,-33],[-46,-33],[14,-32],[1,-15],[-20,-20],[-20,-11],[-30,-2],[4,-31],[44,1],[19,-12],[8,-17],[-1,-37],[-12,-38],[-36,-39],[-5,-28],[-10,-12],[-3,-22],[-18,-39],[-12,-18],[6,-7],[-62,-72],[-31,29],[-67,-73],[-92,95],[-91,-71],[-5,8],[-27,71],[-26,44],[-4,1],[-106,-52],[-17,-5],[-34,98],[-8,52],[-2,97],[-68,-55],[-50,-36],[-26,34],[-166,-151],[20,-21],[-27,-35],[-62,-65],[-22,-29],[-4,-15],[-24,-27],[-35,-29],[-90,-18],[-45,-16],[-41,-33],[-41,-1],[-4,8],[-53,-20],[-38,-28],[-50,-13],[-30,12],[-12,-8],[-14,-1],[4,-21],[-42,-13],[-14,11],[-28,-34],[-36,22],[-31,-5],[-7,36],[-48,-4],[-49,-24],[-46,-48],[-45,-18],[-50,-35],[-75,-22],[-102,-48],[9,-18],[-29,-25],[16,-28],[-107,-32],[-38,7],[-164,-23],[-48,-20],[-22,43],[-65,-24],[-72,-16],[-33,1],[-21,-32],[30,-19],[16,-15],[-28,-43],[-10,-5],[-52,-51],[-36,44],[-83,70],[-42,-1],[-14,7],[-19,55],[-70,-57],[-86,-127],[0,-41],[-76,-27],[-19,-19],[-12,-18],[-9,-24],[-58,-36],[-14,-5],[-69,-8],[-91,-21],[-51,-19],[-83,-68],[-43,9],[-51,-2],[-5,-76],[-32,3],[-26,16],[-11,14],[-56,18],[-16,18],[-15,3],[20,21],[-45,55],[-34,17],[-34,10],[-13,-1],[-43,26],[2,17],[-13,25],[-16,-6],[-11,22],[8,41],[-16,20],[-10,7],[-20,27],[11,13],[-9,48],[-9,9],[1,28],[10,24],[-18,25],[-12,0],[-33,35],[-41,25],[-7,11],[-43,32],[-11,3],[-11,23],[-21,6],[4,14],[-8,15],[-16,2],[0,16],[-11,19],[-10,33],[-31,20],[3,14],[-7,16],[13,22],[-23,32],[-8,18],[-24,3],[0,26],[-39,6],[-9,18],[3,19],[-10,7],[-13,-4],[-24,12],[-38,6],[-79,29],[-1,8],[-14,6],[-18,-20],[-19,-1],[-28,10],[1,13],[-35,1],[-23,16],[-24,11],[-39,-12],[-54,-2],[1,12],[-56,7],[-88,16],[-6,-11],[-28,16],[-14,-3],[-17,18],[-19,-4],[-11,14],[-38,17],[-24,2],[-6,-9],[-11,20],[-14,-1],[-29,19],[-5,13],[-48,-6],[-70,26],[-4,10],[-34,16],[-15,14],[-45,12],[-25,-1],[-29,7],[-60,9],[-13,5],[-16,-3],[-19,19],[-3,10],[-16,6],[3,18],[-25,8],[-41,-13],[-21,-14],[-19,-3],[-27,1],[-15,-23],[-25,-19],[-30,1],[-20,-11],[-54,16],[-51,-9],[-16,8],[-21,-1],[-33,4],[-23,21],[-15,8],[-1,12],[-14,16],[-2,21],[-44,15],[-24,32],[-11,27],[4,13],[-16,21],[58,71],[7,21],[9,49],[-17,13],[-28,0],[-8,13],[7,22],[-5,16],[-41,30],[-39,-50],[-16,-1],[-20,25],[2,12],[-11,3],[-14,44],[10,5],[-11,8],[3,11],[-14,-4],[-6,6],[9,24],[-16,0],[-14,9],[-10,16],[-50,19],[-6,11],[-9,-2],[-2,25],[-17,6],[-11,14],[1,13],[-19,2],[0,19],[-14,18],[12,22],[-2,13],[-26,23],[23,58],[-5,8],[-79,8],[-92,35],[-4,-7],[-16,5],[-3,-7],[-19,-7],[-29,2],[-12,-4],[-11,20],[-33,-7],[-19,2],[-2,7],[-16,1],[-13,-21],[-11,17],[-13,3],[-20,-7],[2,-13],[-12,-6],[-34,4],[-2,17],[-36,-6],[-11,-10],[-6,8],[-15,-3],[-18,19],[-11,-3],[-8,7],[-21,-3],[-12,8],[-38,5],[-3,-8],[-20,13],[2,12],[-25,4],[-7,-7],[-80,34],[-7,-2],[-36,9],[-93,60],[-45,26],[-5,-5],[-13,8],[-65,15],[-4,12],[-16,-6],[-22,9],[7,14],[-7,27],[-17,-7],[-34,-5],[-13,8],[2,13],[-15,15],[-35,-6],[-10,6],[-4,18],[-18,2],[-9,10],[-16,1],[-27,17],[-16,22],[-10,3],[17,10],[-17,20],[-32,6],[-17,19],[-13,-3],[-3,-20],[-15,-2],[0,-8],[-22,-14],[-18,12],[0,19],[-11,5],[-6,18],[-10,-2],[-10,19],[-11,8],[13,11],[1,12],[-29,17],[-15,17],[-59,-6],[-32,-6],[-8,6],[-18,48],[-20,13],[-14,19],[-12,32],[-38,37],[3,59],[1,105],[22,119],[-83,33],[-16,30],[2,69],[-9,25],[-17,34],[8,50],[-19,3],[-19,25],[-48,16],[-11,13],[3,19],[-21,16],[-9,12],[-9,29],[-13,19],[-10,28],[-39,1],[-29,-3],[-21,16],[-28,30],[-8,24],[0,21],[54,222],[8,-2],[20,112],[55,6],[-45,60],[-36,117],[-24,65],[-6,3],[-19,103],[3,33],[-16,134],[-21,71],[148,-1],[30,11],[5,-3],[27,18],[-81,286],[-49,-24],[-49,-13],[-50,88],[-94,133],[138,52],[33,14],[83,29],[199,130],[-111,121],[-30,-21],[-91,33],[-134,58],[22,215],[-20,96],[-1,126],[13,7],[46,87],[-20,11],[6,57],[-6,20],[65,8],[72,-10],[7,5],[16,83],[1,20],[11,71],[-13,65],[-2,25],[2,74],[-41,67],[-36,43],[-24,41],[-28,41],[-32,20],[-53,24],[-37,28],[-45,29],[-2,24],[29,296],[14,0],[2,211],[-12,0],[-3,30],[-11,25],[10,8],[30,9],[-7,24],[50,28],[-13,15],[-8,20],[-24,20],[28,97],[25,73],[40,68],[41,84],[-26,7],[-39,19],[-87,29],[-95,16],[74,198],[-2,19],[7,37],[-116,18],[28,156],[15,140],[-61,4],[-7,-7],[-59,3],[2,21],[19,74],[-70,10],[6,121],[-32,0],[4,7],[16,136],[-58,46],[24,40],[-7,58],[-10,14],[-27,6],[-39,44],[-6,27],[-9,11],[-14,2],[-36,20],[-47,101],[-3,13],[-34,20],[-26,9],[-42,39],[-30,23],[-16,24],[10,24],[31,40],[-17,20],[-88,59],[-175,114],[-19,6],[0,12],[52,71],[-32,22],[-53,25],[-54,21],[-37,18],[-3,26],[12,40],[6,56],[42,84],[9,14],[16,4],[47,5],[11,12],[21,101],[3,6],[15,109],[11,46],[-20,17],[-41,10],[-63,6],[-48,13],[22,65],[0,13],[-59,25],[-33,17],[-44,41],[-26,15],[-4,7],[13,53],[-32,31],[-16,69],[-2,15],[5,49],[-28,19],[-29,14],[-70,17],[-16,14],[21,51],[-7,13],[-82,75],[-33,34],[-39,21],[-56,42],[-22,35],[-30,15],[34,62],[-10,8],[69,111],[-3,11],[15,36],[24,23],[38,30],[63,80],[-14,9],[50,99],[5,23],[-6,15],[-15,78],[-6,51],[-8,22],[-38,20],[-35,13],[-33,6],[-39,21],[-33,40],[-1,20],[39,14],[23,12],[14,18],[3,14],[-29,39],[-4,12],[-120,169],[-68,94],[-8,13],[-56,73],[-26,38],[-18,23],[9,24],[30,25],[18,37],[-1,36],[8,60],[5,72],[44,16],[-9,46],[-3,87],[-11,37],[1,24],[34,43],[4,10],[-10,54],[-22,27],[-38,94],[-8,33],[4,12],[142,94],[45,23],[130,48],[13,21],[25,50],[22,20],[59,42],[91,58],[18,9],[21,27],[73,1],[30,-16],[30,17],[66,26],[52,15],[44,25],[28,28],[53,29],[40,-3],[94,13],[62,31],[12,8],[22,27],[-33,48],[-171,94],[-8,11],[-8,29],[-41,89],[-20,-10],[-18,39],[-17,27],[51,26],[-11,22],[-42,55],[-50,32],[-6,9],[36,84],[15,39],[-118,65],[-20,7],[-29,19],[-19,28],[30,24],[-127,181],[32,45],[22,21],[-10,34],[23,1],[20,13],[38,-5],[24,8],[20,-3],[34,8],[8,7],[43,16],[7,-13],[-4,-26],[44,3],[25,17],[12,-17],[34,0],[10,21],[20,-16],[21,8],[4,41],[-7,0],[-32,56],[-18,25],[-16,-5],[-12,4],[-16,23],[-12,65],[2,56],[5,6],[-17,13],[-11,18],[2,30],[-16,3],[12,57],[15,30],[8,42],[-5,1],[-21,39],[62,2],[16,44],[17,87],[13,45],[6,32],[-13,14],[-11,21],[2,22],[-9,7],[-70,18],[-46,20],[-53,11],[-24,9],[-30,4],[-32,20],[-36,12],[-6,12],[-16,6],[-45,29],[-15,17],[-96,71],[67,90],[-123,127],[-47,69],[38,27],[-30,24],[-42,68],[-62,71],[-38,55],[-39,23],[-214,-50],[-41,-10],[-63,-29],[-35,-39],[-14,14],[-7,-1],[-22,23],[-57,72],[-12,21],[-109,-14],[-30,6],[-30,-4],[-41,-27],[-25,-30],[-39,35],[-36,-25],[-24,30],[-12,9],[-8,-6],[-49,25],[-19,-19],[-30,-13],[-39,-31],[-7,-9],[-34,-21],[-60,-46],[-31,-29],[-37,-39],[-87,-19],[-31,85],[-53,77],[-17,-6],[-24,-22],[-54,40],[-34,11],[-15,-11],[-23,12],[-32,5],[-23,12],[-58,-6],[-39,37],[-19,-12],[-29,26],[-18,-4],[-67,-60],[35,-38],[-14,-25],[-35,-37],[-20,10],[-46,17],[-60,14],[-21,-18],[-34,34],[-19,12],[20,16],[42,26],[51,9],[44,24],[28,-13],[13,25],[-8,35],[-1,24],[-8,41],[30,30],[-22,41],[-16,14],[23,22],[36,24],[10,12],[13,5],[-3,22],[-16,36],[-13,6],[-23,34],[-14,5],[-3,20],[-12,23],[-9,8],[-68,38],[-44,16],[12,22],[-4,19],[-30,7],[-22,13],[-35,13],[-22,-29],[-7,-25],[-58,22],[-45,11],[-19,-4],[-13,2],[-6,-9],[-19,6],[-47,8],[-50,14],[-76,82],[-25,14],[-26,35],[-38,34],[-11,5],[-6,21],[-27,9],[-10,9],[-9,-2],[-43,39],[-12,18],[-32,4],[-25,30],[27,24],[-17,32],[-24,13],[11,14],[-9,23],[15,25],[-2,16],[25,32],[12,7],[-14,21],[-14,14],[5,10],[23,18],[7,13],[88,49],[21,16],[11,2],[19,15],[20,-7],[7,12],[27,19],[20,27],[1,14],[16,15],[9,21],[30,19],[29,25],[11,28],[-1,10],[10,16],[-12,0],[24,83],[0,13],[24,19],[-2,11],[15,26],[3,23],[-19,31],[-10,26],[-29,28],[-27,17],[-28,36],[-23,38],[-49,26],[-29,22],[-31,12],[-15,10],[-29,5],[-33,15],[-21,25],[-16,14],[0,25],[-31,25],[-14,6],[-9,-14],[-33,2],[-17,15],[-8,-11],[-19,6],[-12,-7],[-17,9],[-13,13],[-30,15],[-27,19],[-24,38],[-24,61],[-11,39],[-19,36],[3,16],[-31,82],[-9,33],[1,18],[14,71],[14,60],[4,24],[-2,24],[-13,18],[-8,23],[-27,29],[-48,34],[-7,56],[-18,23],[-26,25],[-5,13],[10,13],[-15,29],[-13,14],[-31,25],[-43,82],[-81,85],[13,32],[0,35],[3,21],[18,28],[-82,51],[2,5],[-96,42],[-15,-18],[-40,38],[-31,19],[-36,17],[-6,10],[-27,6],[-14,12],[-14,-6],[-28,26],[-44,32],[-15,27],[0,25],[24,31],[-5,63],[0,34],[4,55],[-6,29],[-8,14],[-36,51],[-20,20],[-36,46],[4,2],[-94,106],[-8,-2],[-23,18],[-48,72],[-38,50],[-27,53],[-48,114],[-4,22],[-29,74],[-16,27],[-30,32],[-33,58],[-24,37],[-5,15],[-26,33],[-28,5],[-49,69],[-61,74],[-19,54],[-103,117],[-33,64],[-24,57],[-37,92],[-16,43],[-30,63],[-44,65],[-1,28],[13,27],[15,51],[3,20],[80,28],[-22,13],[-21,44],[-27,46],[14,70],[-22,53],[-44,82],[-24,13],[-32,6],[-65,2],[-530,-145],[-155,-41],[-143,-48],[-36,-4],[-44,1],[-77,-44],[-22,-3],[-35,5],[-6,26],[-86,-7],[-7,1],[-34,116],[-11,39],[-43,33],[-13,22],[-58,60],[-16,30],[-22,14],[-58,8],[-96,94],[-21,14],[-105,40],[-29,93],[-52,14],[-60,-8],[-43,-17],[-41,-30],[-14,-17],[-51,-110],[-41,-108],[-28,-65],[-37,-97],[-4,-35],[11,-10],[55,-12],[12,-13],[4,-17],[-5,-36],[-14,-39],[-14,-25],[-47,-105],[-40,-80],[-36,-59],[-45,-46],[-31,-23],[-54,-34],[-17,-19],[-117,-87],[-20,-10],[-52,-20],[-144,-52],[-52,-25],[-24,-23],[-32,-44],[-63,-60],[-24,-9],[-17,2],[-42,20],[-28,-16],[-10,-19],[-2,-25],[7,-31],[17,-35],[3,-36],[-19,-27],[-40,-33],[-38,-20],[-27,-10],[-35,-9],[-80,1],[-83,-20],[-40,-1],[-45,6],[-57,18],[-61,29],[-56,42],[-33,29],[-59,53],[-57,36],[-76,40],[-31,14],[-40,22],[-70,44],[-60,26],[-52,34],[-49,20],[-107,62],[-35,15],[-55,28],[-56,25],[-28,23],[-41,20],[-47,6],[-100,1],[-46,-3],[-72,-13],[-83,-26],[-52,-18],[-50,-20],[-28,-16],[-28,-34],[0,-27],[-7,-14],[-22,-20],[-21,-12],[-40,-14],[-31,-7],[-48,-3],[-33,3],[-33,-3],[-24,-8],[-41,-24],[-50,-35],[-72,-29],[-45,-16],[-22,-13],[-37,-37],[-81,-139],[-20,-85],[-14,-42],[-18,-31],[-24,-28],[-45,-42],[-4,4],[-26,-16],[-38,-15],[-30,-10],[-38,-4],[-26,6],[-159,62],[-46,22],[-32,23],[-30,26],[-26,3],[-12,-16],[12,-37],[-13,-18],[-45,-3],[-20,3],[-49,27],[-31,31],[-39,34],[-75,54],[-14,6],[-24,25],[-45,34],[-55,22],[-27,14],[-20,0],[-90,-13],[-30,-17],[-8,-33],[-13,-29],[2,-31],[42,-73],[-12,-26],[-107,-122],[-240,-161],[-47,-35],[-53,-37],[-49,-49],[-33,-19],[-61,-22],[-44,-13],[-38,-25],[-62,-77],[-36,-28],[-47,-27],[-86,-62],[-84,-69],[-50,-36],[-88,-42],[-75,-29],[-68,-41],[-92,-65],[-185,-36],[-12,17],[-68,-37],[-29,-28],[-40,-102],[-37,-66],[-58,-76],[-31,-30],[-97,-76],[-83,-76],[-60,-29],[-132,-39],[-74,-4],[-36,2],[-38,11],[-60,30],[-25,5],[-18,-5],[-60,-26],[-30,-8],[-31,6],[-8,11],[4,25],[48,53],[12,19],[-10,29],[-39,60],[-29,24],[-94,42],[-11,3],[-31,-5],[-7,-17],[0,-44],[-16,-15],[-18,0],[-16,14],[-41,48],[-17,15],[-18,9],[-17,-2],[-18,-9],[-15,-16],[-11,-45],[-14,-8],[-59,-5],[-69,-17],[-28,-15],[-63,-47],[-21,-42],[-24,-33],[-47,-57],[-49,-64],[-120,-89],[-117,-74],[-37,-29],[-80,-45],[-31,-2],[-19,-8],[-18,-14],[-23,-26],[-22,-37],[-26,-106],[2,-37],[36,-93],[4,-94],[-7,-39],[6,-27],[11,-21],[22,-20],[36,-21],[68,-29],[42,-41],[6,-16],[-17,-74],[-1,-11],[15,-22],[51,-20],[23,-3],[8,-6],[20,-29],[5,-48],[34,-68],[5,-46],[-7,-21],[-18,-26],[-12,-11],[-33,-19],[-35,-9],[-50,-26],[-11,-11],[-33,-18],[-35,-5],[-79,5],[-44,-6],[-20,-11],[-16,-57],[-14,-13],[-15,2],[-76,33],[-24,1],[-68,-42],[-39,-40],[-18,-32],[-40,-96],[-44,-95],[-29,-93],[5,-38],[28,-93],[29,-60],[21,-75],[6,-57],[5,-62],[-1,-47],[-18,-117],[-15,-115],[-4,-47],[-15,-97],[-1,-33],[5,-56],[-1,-33],[-16,-49],[-47,-100],[-14,-17],[-37,-22],[-67,-31],[-31,-34],[-16,-33],[-10,-34],[-13,-91],[-10,-36],[-24,-69],[-26,-35],[-85,-56],[-22,-3],[-10,6],[-27,28],[-31,12],[-46,-8],[-27,6],[-49,24],[-45,11],[-100,14],[-139,3],[-35,-15],[-44,-42],[-75,-84],[-5,-12],[5,-30],[8,-13],[33,-26],[5,-10],[-11,-58],[2,-15],[26,-62],[0,-31],[27,-17],[-30,-57],[9,-22],[-1,-12],[16,-23],[12,-34],[5,2],[8,-21],[4,-37],[-1,-54],[-6,-30],[-16,-28],[-55,-31],[-51,-34],[-42,-18],[-83,-29],[-29,6],[-63,54],[-16,6],[-35,4],[-35,-4],[-17,-7],[-29,-25],[-29,29],[-5,-5],[-55,59],[-7,13],[-20,-19],[-53,83],[-30,64],[-54,70],[-25,26],[-151,239],[-4,-2],[-105,178],[-29,38],[-40,46],[-26,24],[-38,41],[-27,34],[-74,69],[-16,-19],[-74,-52],[-34,-28],[-46,-46],[-13,-20],[-35,-35],[-13,-23],[-37,-24],[-18,-24],[-60,27],[-68,27],[-42,13],[-47,19],[-55,12],[-40,2],[-38,-4],[-84,-34],[-37,-30],[-136,218],[-23,-17],[-91,89],[-74,77],[-170,173],[-17,13],[-26,9],[-16,22],[5,46],[-6,17],[-113,116],[-72,80],[-39,38],[-19,28],[-20,42],[-42,102],[-14,45],[-16,33],[4,1],[-11,36],[-19,34],[-41,65],[-54,91],[-44,65],[-5,10],[-109,-33],[-32,-16],[-43,-19],[-132,-43],[-31,-8],[-25,0],[-28,-59],[-108,-13],[-64,-5],[-94,-17],[-87,-10],[-50,-2],[-96,-11],[-19,-10],[-40,-49],[-17,-7],[-84,-10],[-81,-23],[-63,-24],[-36,-17],[-10,-8],[-24,-37],[-16,-16],[-69,-48],[-50,-57],[-42,45],[-14,-11],[-115,86],[-7,33],[-35,-8],[-47,-19],[-33,-18],[-62,61],[-67,-28],[-56,70],[-52,70],[-73,64],[-20,-25],[-106,70],[-21,2],[14,37],[-43,21],[-31,12],[15,20],[-79,34],[-63,26],[15,37],[-68,28],[-17,-28],[-34,18],[-5,-7],[-159,87],[38,67],[-24,12],[-3,-5],[-60,30],[-28,-45],[-63,32],[-31,-49],[-46,22],[7,14],[-32,16],[17,32],[11,3],[56,108],[-95,52],[31,68],[-12,6],[31,125],[-70,42],[-57,26],[-21,-4],[-14,14],[6,37],[-28,3],[-80,191],[29,16],[-32,60],[-9,-5],[-56,194],[-20,77],[-36,49],[-39,151],[36,23],[56,38],[-5,13],[-24,112],[21,4],[-30,156],[-3,41],[4,36],[22,111],[0,13],[-15,37],[-34,-8],[-20,-15],[-4,-10],[-46,-19],[-64,-11],[-72,-4],[-4,20],[-17,37],[-32,64],[-23,57],[-10,21],[-19,-27],[-29,-21],[-58,71],[-63,96],[-5,10],[-23,-9],[-44,-9],[-60,0],[-37,-5],[-60,-16],[-33,-4],[-40,-1],[-25,7],[-9,9],[-11,31],[-15,17],[-34,22],[-31,56],[-12,26],[-29,43],[-3,10],[-71,116],[50,84],[34,39],[28,17],[-43,127],[-21,-3],[-10,47],[-19,-8],[-30,-5],[-25,-9],[-96,-41],[-9,-9],[-60,-16],[-8,1],[-44,28],[15,18],[21,36],[9,26],[18,81],[33,99],[25,54],[86,145],[33,60],[30,64],[3,20],[-23,32],[-22,24],[-32,29],[-11,15],[-35,23],[-8,9],[-46,31],[-12,1],[-40,47],[-18,5],[-1,7],[-18,6],[-58,30],[-29,-2],[-9,10],[-17,3],[-6,14],[0,21],[-11,31],[-1,17],[-19,31],[2,18],[7,7],[-10,21],[-31,24],[0,13],[-13,11],[-20,5],[-55,36],[-16,6],[-17,22],[-47,17],[-37,24],[-32,5],[-30,9],[-4,-7],[-42,21],[-53,17],[-33,32],[-57,30],[-75,22],[-41,59],[-97,-59],[-39,-34],[-33,75],[-18,81],[-8,25],[-14,6],[-155,166],[-122,158],[-34,32],[-70,139],[-2,18],[19,41],[-1,23],[20,55],[-8,2],[0,17],[-7,15],[-36,8],[-19,2],[-9,8],[-29,3],[-12,11],[-28,-14],[-31,-9],[-107,398],[-26,45],[-31,37],[3,31],[-7,70],[0,54],[-23,38],[-17,21],[-28,23],[72,71],[36,53],[-9,85],[39,18],[-14,19],[29,19],[-22,26],[-26,55],[43,26],[22,10],[-12,16],[28,25],[-6,11],[42,51],[-84,92],[-2,21],[-78,-13],[-15,15],[-17,28],[-10,23],[-13,13],[-27,11],[-37,10],[-19,14],[-9,15],[-4,23],[6,9],[-35,36],[-34,26],[-73,6],[-56,15],[-30,48],[-36,-13],[-20,36],[-34,43],[-73,-40],[-43,-12],[8,-55],[-1,-22],[-134,-4],[-62,1],[-122,-4],[-345,24],[-43,0],[-138,6],[-97,-9],[-78,-10],[-52,-17],[-156,5],[-116,2],[-64,-3],[-149,-4],[-6,81],[-16,34],[-25,44],[-36,50],[-30,46],[-56,75],[-35,35],[-5,14],[22,53],[-75,50],[-201,195],[-36,-56],[-12,-25],[-6,-30],[-12,-90],[-15,-23],[-58,-38],[-52,-42],[-45,-33],[-41,-33],[-63,-77],[-2,-11],[-155,-88],[-50,-58],[-47,-28],[-56,-30],[-3,-8],[-35,-5],[-70,-5],[-320,0],[-68,-4],[-161,-3],[-118,-3],[-121,-5],[-21,-6],[-106,-10],[-15,37],[-66,112],[-27,55],[-57,128],[-9,17],[-58,183],[-39,138],[2,2],[-13,42],[-26,124],[-13,44],[-19,55],[-20,69],[-20,74],[-3,28],[0,63],[-8,47],[-7,51],[-3,52],[-8,52],[0,28],[-8,30],[-5,39],[-15,96],[-30,152],[-23,1],[-30,21],[-26,-7],[-8,8],[-11,-3],[-22,30],[-11,7],[-4,14],[-24,29],[-10,17],[-14,2],[-45,25],[-26,12],[-26,-11],[-3,-11],[-21,-22],[-7,-21],[-26,9],[-42,31],[-22,22],[3,12],[-28,13],[-28,62],[31,9],[-8,21],[1,16],[-11,14],[4,14],[13,6],[18,-1],[-5,36],[1,25],[-11,48],[-27,25],[-1,10],[-19,19],[-6,18],[-14,13],[1,11],[30,32],[-6,16],[-16,10],[-4,10],[6,15],[-5,15],[6,21],[13,14],[-7,19],[3,40],[-6,13],[12,17],[-5,23],[6,12],[29,26],[-5,11],[-41,22],[-43,14],[-53,11],[-48,21],[-29,-5],[6,16],[-8,24],[-23,12],[-3,24],[-18,26],[-76,-38],[-43,-20],[-64,-15],[-44,-23],[-79,-47],[-74,-41],[-21,69],[-10,27],[-43,-18],[-29,-10],[-60,-13],[-6,28],[-27,-1],[-22,12],[7,28],[-26,54],[23,64],[12,42],[-16,32],[-13,15],[13,26],[-3,17],[20,34],[20,1],[3,18],[23,30],[15,25],[12,13],[15,32],[16,18],[-3,15],[13,14],[3,19],[11,-7],[17,12],[2,-19],[8,-7],[35,40],[26,19],[9,28],[-7,17],[18,19],[12,22],[-4,14],[-15,25],[12,22],[21,-3],[24,3],[10,23],[55,34],[9,13],[94,65],[6,14],[9,1],[29,26],[-1,15],[7,15],[-6,20],[4,21],[14,9],[18,21],[3,17],[15,7],[-14,13],[14,9],[19,-10],[13,11],[4,26],[14,5],[14,-5],[12,11],[-5,20],[-13,13],[3,7],[20,7],[2,15],[-14,22],[8,10],[-3,19],[2,28],[-25,21],[24,12],[-11,18],[1,24],[-12,23],[2,5],[31,14],[5,14],[-24,5],[-9,18],[24,9],[20,-25],[6,9],[-10,21],[-17,8],[-11,12],[-18,11],[-18,-8],[-24,10],[-4,15],[-26,28],[-2,16],[-27,32],[-12,4],[-15,36],[10,33],[-33,1],[2,27],[15,18],[-24,26],[5,30],[-10,2],[-30,-20],[-12,20],[15,17],[1,29],[-27,3],[1,34],[-11,17],[-28,-8],[-10,37],[-13,15],[18,24],[-3,25],[-14,23],[3,12],[13,0],[8,21],[-13,23],[24,16],[22,3],[7,22],[9,8],[-13,18],[25,28],[2,29],[10,12],[29,-2],[5,6],[-7,17],[26,13],[7,25],[25,24],[2,18],[-10,29],[15,11],[-6,24],[28,9],[-12,21],[-25,13],[-3,10],[11,15],[-4,15],[-18,9],[4,8],[33,-16],[7,10],[-20,13],[-17,17],[-31,-15],[-15,3],[-9,12],[3,20],[-23,-5],[-15,20],[-19,-8],[-6,4],[11,27],[-5,5],[-23,-5],[-17,14],[4,11],[23,9],[9,21],[-28,26],[3,28],[23,35],[0,102],[-5,22],[-12,-5],[-26,5],[-12,-2],[-34,2],[-41,-3],[-11,25],[17,13],[6,19],[-5,31],[3,20],[11,19],[15,12],[18,3],[15,27],[-4,20],[12,26],[20,14],[-7,14],[17,27],[15,40],[0,15],[-19,2],[-23,11],[-7,26],[12,24],[19,-2],[24,21],[2,38],[23,8],[-4,17],[15,34],[25,14],[10,11],[3,43],[40,26],[3,37],[-20,21],[19,22],[2,13],[-12,13],[-33,57],[1,12],[20,7],[14,34],[7,32],[-2,30],[-17,16],[-30,0],[-28,4],[-1,10],[-23,8],[-32,-6],[-7,4],[3,28],[-10,19],[-12,12],[-7,31],[-14,19],[-8,24],[9,28],[48,58],[-6,20],[-25,23],[5,45],[-19,31],[-24,12],[-22,41],[-39,37],[10,48],[25,37],[8,34],[8,19],[25,18],[33,66],[37,29],[5,12],[9,45],[19,41],[10,51],[-6,11],[-14,4],[-18,21],[-34,19],[-7,13],[6,18],[18,15],[25,12],[18,19],[-11,62],[-11,-1],[-63,51],[-24,15],[-35,30],[-6,23],[-6,49],[0,28],[-19,44],[-17,33],[-48,8],[1,-10],[-33,-11],[-26,-30],[-31,-19],[-33,-12],[-19,-18],[-29,-12],[-27,-2],[-9,-5],[-22,4],[-29,-3],[-11,-7],[-24,-6],[-47,-23],[-6,-6],[-49,-4],[-13,-6],[-19,21],[0,6],[-51,25],[-15,23],[-16,-4],[-23,33],[-9,22],[0,24],[-16,23],[-5,34],[-20,53],[-28,20],[-5,33],[12,41],[59,18],[43,22],[108,67],[53,39],[72,79],[10,17],[48,96],[23,38],[7,8],[62,35],[56,70],[7,21],[17,31],[25,39],[30,28],[103,50],[40,27],[55,54],[27,21],[21,23],[39,27],[-13,35],[192,88],[-11,31],[70,20],[12,-28],[178,166],[8,141],[13,10],[50,9],[-44,153],[-31,43],[-33,61],[20,4],[17,17],[-4,27],[11,23],[8,-3],[65,-1],[39,2],[-4,21],[34,1],[12,-11],[21,0],[52,23],[50,25],[53,4],[13,-6],[70,26],[-2,8],[37,6],[41,-5],[4,-10],[107,47],[130,204],[-260,517],[-81,274],[-55,55],[-17,27],[-121,230],[-36,118],[-1,131],[-161,263],[-316,396],[-1,1],[54,55],[-119,146],[20,34],[22,29],[-32,41],[-33,32],[-23,19],[-31,29],[26,53],[-1,36],[3,34],[8,29],[-8,8],[-117,40],[59,112],[23,35],[41,52],[46,39],[-57,71],[-51,81],[-55,125],[14,5],[-16,141],[-35,3],[-13,6],[-72,13],[-13,-1],[-43,7],[-53,-15],[-40,2],[-25,18],[-45,-2],[-40,10],[-18,-2],[-66,13],[-30,1],[-61,12],[-23,11],[-26,22],[-91,42],[-67,50],[-31,13],[-30,17],[-16,19],[-29,20],[-83,41],[-145,93],[-33,27],[-68,51],[-17,16],[-70,51],[-10,11],[-50,35],[-50,44],[-46,47],[-25,31],[-43,48],[-5,17],[-30,43],[0,33],[-17,6],[-41,24],[67,187],[-5,23],[-167,158],[-41,154],[6,6],[57,169],[-6,36],[15,2],[33,-3],[141,34],[-112,536],[5,2],[-215,1007],[-2,3],[-169,778],[-2,6],[-83,393],[-105,487],[-1,12],[32,347],[9,117],[-55,109],[-26,57],[-29,56],[-62,111],[-11,46],[18,31],[-1,6],[-50,98],[-21,35],[-126,237],[-319,631],[-50,98],[-48,97],[-51,101],[-217,373],[-1005,1706],[-677,1150],[-677,1149],[-339,574],[-677,1149],[-678,1148],[-338,574],[-677,1148],[-339,574],[-677,1147],[-339,573],[-677,1147],[-339,573],[-278,781],[-666,1874],[-1085,37],[-1294,-50],[-429,-39],[-878,-114],[-988,-186],[-293,-67],[-1241,-347],[-1030,-372],[-187,-76],[-1160,-534],[-756,-412],[-364,-217],[-1048,-707],[-773,-608],[-218,-186],[-667,-632],[-206,-30],[-1266,-250],[-468,-119],[-787,-233],[-648,-225],[-569,-222],[-1159,-535],[-646,-349],[-473,-281],[-911,-611],[-705,44],[-487,7],[-1291,-50],[-1192,-137],[-180,-27],[-779,-709],[-1031,-940],[-748,-682],[-748,-682],[-748,-682],[-747,-682],[-985,-898],[-732,-669],[-610,-557],[-977,-892],[-1077,-547],[-1077,-547],[-924,-470],[-619,-314],[-928,-472],[-1083,-551],[-1238,-629],[-774,-394],[-929,-472],[-526,-361],[-437,-300],[-964,-661],[-964,-662],[-963,-661],[-964,-662],[-482,-331],[-963,-662],[-482,-331],[-964,-662],[-482,-331],[-1134,-779],[-905,-968],[-603,-646],[-603,-646],[-603,-645],[-905,-969],[-202,-1186],[-403,-2373],[-269,-1582],[-38,-220],[2,-13],[250,-1044],[44,-190],[-21,-56],[-347,-1158],[-178,-862],[-56,-194],[-90,-378],[-212,-749],[-243,-1181],[-138,-1196],[-31,-1203],[75,-1201],[11,-95],[1,-49],[75,-1201],[59,-474],[58,-727],[66,-894],[61,-486],[42,-466],[36,-304],[27,-464],[-77,-294],[-109,-466],[-208,-1038],[-100,-768],[-45,-508],[-31,-1203],[75,-1201],[16,-149],[181,-1192],[146,-659],[44,-331],[77,-591],[11,-188],[14,-190],[-24,-288],[-13,-197],[-71,-408],[-92,-686],[-39,-150],[-36,-151],[-69,-300],[-104,-262],[-103,-262],[-159,-452],[-120,-371],[-11,-31],[-170,-464],[-89,-268],[-61,-211],[-62,-210],[-65,-230],[-75,-262],[-242,-1181],[-18,-118],[-123,-1107],[-31,-1202],[3,-133],[10,-272],[73,-1157],[24,-216],[47,-389],[-97,-150],[-65,-104],[-433,-726],[-445,-875],[-111,-243],[-445,-1128],[-141,-429],[-80,-284],[-254,-872],[-106,-349],[-77,-293],[-241,-1180],[-136,-1197],[-9,-142],[-18,-792],[-6,-260],[-252,-187],[-183,-140],[-529,-304],[-1025,-707],[-958,-785],[-887,-859],[-8,-10],[-65,-57],[-543,-511],[-32,-30],[-126,-126],[-237,-207],[-22,-20],[-563,-529],[-355,-307],[-153,-146],[-202,-144],[-539,-426],[-170,-120],[-343,-251],[-330,-191],[-1023,-706],[-73,-58],[-95,-60],[-137,-48],[-383,27],[-509,7],[-1262,-51],[-1254,-150],[-1235,-250],[-246,-61],[-1212,-348],[-1174,-443],[-696,-315],[-443,-217],[-575,-281],[-525,-288],[-37,-9],[-176,-222],[-956,-179],[-972,-244],[-953,-305],[-656,-256],[-527,1],[-1003,-60],[-997,-122],[-986,-185],[-170,-43],[-123,-21],[-141,-27],[-436,-90],[-746,-183],[-165,-30],[-291,-49],[-183,-27],[-986,-185],[-80,-21],[-231,-41],[-46,-9],[-301,-64],[-488,-125],[-140,-38],[-398,-126],[-611,-217],[-392,-83],[-312,-73],[-1208,-347],[-789,-286],[-399,-162],[-548,-245],[-155,-65],[-1130,-535],[-365,-197],[-356,-205],[-380,-178],[-25,-12],[-436,-219],[-656,-364],[-448,-273],[-525,-349],[-509,-367],[-340,-265],[-34,-28],[-453,-379],[-758,-540],[-795,-585],[-20,-17],[-477,-272],[-198,-120],[-601,-293],[-595,-322],[-131,-47],[-926,-369],[-897,-427],[-867,-482],[-414,-267],[-918,-637],[-791,-299],[-1128,-535],[-1076,-622],[-46,-32],[-678,-256],[-225,-85],[-769,-302],[-1127,-534],[-1076,-623],[-1017,-707],[-876,-717],[-745,-626],[-881,-860],[-199,-215],[-267,-166],[-1017,-706],[-951,-786],[-880,-859],[-801,-926],[-718,-987],[-512,-831],[-394,-675],[-536,-1088],[-440,-1127],[-339,-1158],[-239,-1182],[-135,-1196],[-32,-1016],[1,-167],[7,-258],[35,-531],[-185,-351],[-312,-664],[-439,-1127],[-29,-88],[-138,-302],[-438,-1128],[-20,-59],[-317,-843],[-340,-1158],[-80,-343],[-163,-864],[-79,-582],[-77,-729],[-928,387],[-1184,383],[-1213,287],[-1234,188],[-153,14],[-354,54],[-595,42],[-320,42],[-81,6],[-68,10],[-1245,88],[-469,7],[-1248,-50],[-414,-50],[-212,45],[-728,124],[-560,72],[-737,67],[-801,53],[-646,14],[-593,-24],[-245,28],[-1056,68],[-470,7],[-884,-35],[-524,34],[-472,7],[-343,-4],[-937,-47],[-472,-45],[-786,-108],[-1222,-250],[-1196,-347],[-112,-43],[-79,9],[-458,58],[-310,31],[-381,94],[-161,38],[-166,99],[-548,290],[-200,125],[-1004,523],[-110,52],[-435,194],[-335,135],[-75,35],[-1148,478],[-1184,383],[-525,137],[-458,114],[-1211,1412],[-1382,2747],[-149,889],[-5,21],[-13,75],[-113,593],[-220,888],[-102,438],[-227,838],[-286,810],[-8,31],[-262,776],[-48,132],[-156,407],[-353,777],[-55,203],[-402,1139],[-501,1104],[-595,1059],[-8,13],[-508,904],[-686,1009],[-770,949],[-851,885],[-926,814],[-993,737],[-304,188],[-597,443],[-145,97],[-952,585],[-1108,569],[-62,25],[-76,39],[-1154,477],[-140,45],[-1047,434],[-1193,383],[-1222,287],[-1017,162],[-534,158],[-1222,287],[-1242,188],[-1255,88],[-474,8],[-1257,-51],[-1249,-150],[-1231,-250],[-1204,-348],[-1076,-403],[-772,-168],[-819,-237],[-44,-5],[-1230,-250],[-316,-91],[-2571,-258],[-3305,-335],[-210,136],[-524,310],[-1109,569],[-1155,477],[-1192,384],[-1222,286],[-1243,189],[-317,22],[-70,27],[-1193,383],[-1222,287],[-1243,188],[-1223,87],[-1160,43],[-1258,-50],[-1248,-151],[-1232,-250],[-1204,-347],[-635,-240],[15,-540],[109,-4104],[90,-3423],[-185,-1686],[-248,-2249],[-27,-200],[-55,-1185],[-139,-2225],[-104,-1669],[-421,-1124],[-420,-1125],[-95,-622],[-339,-1070],[-677,-2142],[-546,-1591],[-364,-1061],[-364,-1061],[-190,-221],[-149,-181],[428,-1244],[643,-1867],[528,-1614],[353,-1076],[366,-495],[732,-989],[366,-495],[732,-989],[366,-495],[732,-990],[366,-495],[732,-991],[732,-991],[984,-693],[984,-694],[984,-693],[984,-694],[984,-694],[633,-1057],[632,-1057],[633,-1057],[949,-1587],[0,-4878],[-270,-1818],[-180,-1212],[-271,-1820],[-360,-2427],[-180,-1214],[-517,-926],[-777,-1390],[-517,-927],[-852,-1525],[-568,-1017],[-852,-1526],[-790,-665],[-1186,-997],[0,-3689],[1,-527],[-1220,-202],[-1220,-201],[-610,-101],[-1220,-202],[-610,-101],[-644,0],[-1288,0],[-1287,0],[-1288,0],[-644,0],[-1288,0],[-1287,0],[-1259,366],[-629,183],[-1258,366],[-1258,365],[-1259,366],[-1258,366],[-1259,365],[-629,183],[-1258,366],[-1259,365],[-1258,366],[-1258,366],[0,9515],[-348,2457],[-261,1842],[-347,2455],[-261,1840],[-261,1839],[-174,1226],[-582,281],[-366,200],[-586,241],[-1171,482],[-1171,482],[-1052,457],[-1052,458],[-526,229],[-488,186],[-1464,557],[-203,80],[-990,301],[-989,301],[-645,152],[-1290,305],[-645,152],[-1290,304],[-1290,305],[-645,152],[-1290,304],[-447,109],[-319,-97],[-1156,-443],[-1113,-534],[-1063,-623],[-1005,-707],[-941,-785],[-869,-859],[-792,-926],[-94,-121],[-598,-713],[-710,-987],[-622,-1042],[-530,-1087],[-434,-1127],[-337,-1159],[-235,-1181],[-124,-1112],[-44,-1],[-1228,-151],[-1211,-250],[-171,-50],[-703,-30],[-834,-35],[-854,-36],[-837,-36],[-2391,-104],[-1140,-49],[-614,-27],[-920,-41],[-1534,-68],[-748,53],[-132,21],[-112,13],[-1234,88],[-465,7],[-1237,-50],[-1228,-151],[-1211,-250],[-1184,-347],[-955,-368],[-829,-160],[-1326,-258],[-663,-128],[-829,-161],[-874,-107],[-649,-121],[-231,-37],[-1210,-250],[-1185,-347],[-1150,-443],[-1108,-534],[-1057,-623],[-486,-343],[-8041,-3567],[-6287,-2806],[-653,-198],[-1147,-443],[-69,-33],[-6298,-1894],[-4343,-1313],[-4297,-1306],[-4275,-1304],[-2009,-615],[-94,-11],[-1205,-250],[-1179,-348],[-1144,-442],[-1104,-535],[-1053,-622],[-455,-308],[-171,-57],[-1145,-443],[-1103,-535],[-1052,-622],[-640,-454],[-356,-253],[-91,-72],[-399,-210],[-591,-183],[-1144,-442],[-1102,-535],[-1051,-622],[-214,-153],[-1232,-521],[-1232,-522],[-924,-392],[-1386,-587],[-616,-261],[-1078,-457],[-587,-250],[-1028,-437],[-1292,-550],[-726,-310],[-840,-358],[-923,-394],[-1057,-452],[-206,-25],[-1201,-250],[-1174,-347],[-1142,-443],[-1099,-535],[-1050,-622],[-992,-707],[-601,-508],[-328,-277],[-859,-860],[-782,-925],[-701,-988],[-614,-1041],[-434,-884],[-195,-291],[-613,-1041],[-524,-1088],[-429,-1127],[-332,-1158],[-233,-1182],[-132,-1196],[-1,-43],[-66,-599],[-30,-1203],[71,-1201],[173,-1192],[273,-1174],[36,-113],[16,-68],[240,-742],[317,-1187],[492,-1846],[492,-1848],[328,-1232],[492,-1849],[166,-616],[162,-617],[492,-1851],[492,-1852],[328,-1234],[328,-1236],[164,-617],[474,-1789],[473,-1789],[473,-1791],[-35,-317],[-38,-349],[-35,-319],[-30,-1203],[71,-1202],[171,-1192],[180,-779],[91,-394],[367,-1146],[52,-139],[420,-1000],[103,-199],[106,-255],[553,-1070],[640,-1021],[716,-954],[809,-911],[873,-833],[940,-757],[999,-676],[1053,-593],[667,-305],[430,-197],[1135,-410],[329,-89],[936,-585],[936,-587],[936,-587],[936,-586],[935,-587],[935,-588],[1873,-1179],[493,-309],[1798,-1132],[1652,-1041],[1631,-1030],[2820,-1784],[577,-365],[812,-515],[938,-595],[1903,-1207],[1296,-824],[1334,-849],[1333,-849],[1084,-690],[1084,-692],[790,-504],[846,-541],[183,-124],[1313,-893],[1047,-592],[1092,-503],[1129,-410],[1172,-318],[1181,-218],[719,-71],[654,-122],[465,-126],[449,-83],[2042,-817],[1727,-692],[504,-677],[795,-901],[866,-832],[461,-374],[472,-383],[993,-678],[1044,-591],[1090,-503],[1127,-409],[1156,-316],[1180,-218],[1192,-119],[1199,-18],[1196,81],[1185,180],[1166,279],[1139,374],[283,113],[331,-64],[662,-130],[992,-195],[992,-194],[1158,-228],[1654,-326],[661,-131],[827,-163],[1157,-229],[992,-197],[992,-197],[662,-131],[826,-165],[758,-1629],[1016,-2203],[1209,-2591],[1442,-3127],[1004,-2338],[1187,-2413],[559,-1214],[128,-271],[129,-270],[143,-260],[102,-200],[102,-201],[152,-245],[415,-874],[531,-837],[667,-822],[668,-752],[667,-561],[695,-738],[688,-508],[878,-595],[613,-358],[932,-543],[744,-420],[703,-296],[776,-306],[610,-263],[575,-202],[1089,-197],[2205,-312],[3427,-577],[23,-6],[1171,-218],[1185,-119],[1227,-21],[1187,82],[1177,180],[1158,279],[300,99],[1563,393],[3127,783],[1564,391],[1162,-673],[1162,-673],[580,-337],[1162,-674],[580,-338],[1162,-675],[1160,-675],[2322,-1353],[895,-1743],[-288,-3841],[-287,-3845],[-81,-1099],[-231,-3096],[-133,-1793],[-134,-1795],[-158,-2121],[-148,-812],[-128,-1197],[-29,-1204],[69,-1202],[167,-1191],[263,-1174],[358,-1147],[451,-1113],[539,-1071],[625,-1021],[258,-354],[333,-543],[705,-965],[781,-901],[142,-139],[256,-296],[218,-235],[191,-220],[163,-159],[164,-176],[255,-234],[269,-263],[185,-153],[168,-154],[279,-216],[285,-235],[70,-53],[172,-119],[133,-103],[228,-148],[425,-294],[277,-160],[65,-42],[106,-57],[577,-333],[1070,-503],[368,-148],[145,-53],[1100,-467],[883,-501],[737,-417],[442,-251],[1177,-669],[883,-501],[882,-502],[1175,-668],[1613,-919],[1468,-837],[1176,-671],[881,-503],[941,-539],[1595,-912],[770,-441],[743,-426],[787,-451],[1173,-674],[883,-506],[741,-426],[1325,-762],[386,-379],[642,-932],[1191,-1733],[1004,-1460],[1010,-1474],[1099,-1601],[457,-668],[829,-1211],[553,-808],[944,-1380],[1163,-1703],[469,-687],[171,-283],[350,-700],[619,-1021],[699,-965],[254,-313],[337,-533],[699,-964],[199,-246],[101,-124],[344,-416],[35,-45],[322,-393],[94,-111],[424,-478],[439,-494],[48,-52],[32,-31],[70,-82],[378,-372],[1417,-3560],[42,-258],[210,-979],[11,-387],[62,-961],[164,-1192],[260,-1174],[146,-527],[62,-217],[211,-645],[92,-252],[79,-338],[84,-360],[89,-382],[197,-678],[196,-598],[444,-1113],[532,-1070],[616,-1022],[320,-465],[404,-540],[770,-902],[405,-407],[604,-1900],[353,-1109],[604,-1901],[-207,-560],[-78,-238],[-315,-1159],[-222,-1182],[-125,-1196],[-14,-241],[-16,-973],[67,-1202],[164,-1193],[91,-468],[169,-715],[351,-1147],[176,-474],[270,-649],[529,-1071],[613,-1022],[122,-183],[575,-790],[765,-901],[284,-299],[559,-541],[697,-587],[205,-416],[324,-545],[591,-2347],[-13,-102],[-37,-304],[-13,-124],[-48,-355],[-26,-225],[-63,-713],[-8,-125],[-12,-242],[-8,-199],[-6,-205],[-4,-417],[1,-188],[4,-160],[4,-155],[23,-503],[41,-532],[13,-127],[26,-308],[7,-72],[-17,-1001],[11,-381],[-7,-309],[-2,-213],[19,-424],[-30,-622],[8,-226],[-35,-444],[-31,-1035],[-50,-433],[-70,-653],[-97,-587],[-13,-98],[-49,-391],[-91,-937],[-21,-419],[-104,-1030],[-116,-1076],[-70,-777],[-10,-163],[-55,-353],[-125,-1197],[-15,-286],[-92,-560],[-48,-356],[-124,-1197],[-33,-447],[-24,-503],[-12,-204],[-6,-69],[-29,-289],[-8,-121],[-33,-293],[-29,-292],[-25,-525],[-23,-510],[-31,-296],[-18,-195],[-56,-628],[-19,-259],[-17,-228],[-11,-268],[-21,-598],[-30,-384],[-51,-611],[-18,-508],[-12,-337],[-86,-912],[-25,-546],[-16,-228],[-19,-349],[-16,-250],[-23,-292],[-20,-347],[-5,-72],[-37,-430],[-17,-297],[-12,-120],[-9,-140],[-55,-612],[-21,-245],[-14,-146],[-49,-551],[-47,-235],[-77,-600],[-17,-150],[-64,-668],[-12,-129],[-52,-609],[-5,-71],[-8,-119],[-12,-220],[-52,-549],[-82,-519],[-80,-657],[-22,-218],[-15,-160],[-26,-295],[-25,-322],[-4,-62],[-19,-408],[-27,-556],[-19,-127],[-19,-96],[-6,-73],[-121,-1170],[-12,-202],[-10,-105],[-37,-391],[-87,-420],[-163,-929],[-103,-906],[-32,-394],[-9,-127],[-38,-791],[-8,-172],[-1,-30],[-19,-178],[-48,-251],[-91,-559],[-4,-27],[-27,-197],[-28,-219],[-84,-523],[-55,-426],[-26,-248],[-24,-262],[-46,-308],[-36,-227],[-35,-227],[-75,-608],[-69,-608],[-27,-356],[-9,-108],[-19,-123],[-163,-609],[-78,-368],[-140,-821],[-13,-119],[-35,-193],[-122,-1189],[-4,-175],[-47,-299],[-14,-133],[-17,-92],[-89,-752],[-36,-457],[-29,-1204],[3,-118],[58,-987],[-96,-384],[-8,-24],[-266,-968],[-46,-200],[-218,-1182],[-24,-176],[-100,-1031],[-29,-1204],[66,-1203],[160,-1192],[254,-1174],[4,-15],[73,-244],[48,-415],[84,-535],[253,-1175],[272,-920],[-6,-294],[-20,-266],[-30,-1000],[-76,-835],[-7,-115],[-62,-531],[-43,-396],[-50,-485],[-52,-493],[-29,-264],[-56,-529],[-33,-274],[-120,-718],[-24,-177],[-90,-867],[-62,-394],[-26,-194],[-102,-1009],[-29,-195],[-27,-204],[-54,-445],[-30,-267],[-6,-51],[-30,-230],[-43,-280],[-80,-665],[-53,-347],[-50,-387],[-26,-175],[-46,-353],[-160,-919],[-24,-176],[-104,-1059],[-22,-459],[-15,-106],[-37,-274],[-13,-87],[-161,-926],[-89,-761],[-27,-319],[-55,-357],[-31,-228],[-111,-1115],[-28,-709],[-95,-584],[-57,-376],[-17,-122],[-40,-260],[-30,-215],[-117,-643],[-41,-230],[-53,-289],[-8,-58],[-46,-246],[-139,-779],[-95,-401],[-111,-607],[-29,-168],[-39,-208],[-37,-199],[-47,-368],[-12,-69],[-57,-331],[-134,-550],[-215,-1182],[-59,-470],[-124,-661],[-11,-67],[-70,-301],[-216,-1183],[-53,-412],[-21,-131],[-73,-392],[-29,-143],[-41,-226],[-40,-215],[-38,-216],[-52,-291],[-56,-319],[-32,-169],[-33,-169],[-46,-266],[-52,-272],[-63,-271],[-63,-352],[-20,-106],[-69,-383],[-28,-132],[-11,-78],[-23,-127],[-45,-343],[-13,-57],[-59,-307],[-108,-565],[-55,-251],[-76,-408],[-134,-740],[-44,-320],[-44,-349],[-63,-329],[-62,-311],[-50,-262],[-38,-151],[-126,-477],[-89,-332],[-88,-333],[-27,-106],[-78,-320],[-37,-160],[-71,-336],[-67,-317],[-169,-925],[-57,-245],[-28,-127],[-33,-157],[-46,-180],[-78,-244],[-118,-404],[-196,-786],[-215,-1182],[-12,-84],[-34,-133],[-120,-500],[-101,-499],[-44,-235],[-56,-246],[-75,-362],[-106,-540],[-214,-1182],[-23,-172],[-39,-170],[-46,-249],[-62,-331],[-83,-448],[-75,-474],[-21,-153],[-16,-108],[-45,-261],[-95,-562],[-109,-1073],[-30,-302],[-77,-816],[-12,-238],[-19,-633],[-43,-257],[-113,-247],[-177,-410],[-97,-208],[-57,-121],[-345,-660],[-137,-289],[-634,-828],[-641,-988],[-562,-1041],[-328,-738],[-484,-627],[-529,-815],[29,-49],[1547,-7668],[-7,-6011],[7,-1217],[-788,-640],[-73,-129],[-53,-146],[-26,-179],[27,-179],[63,-142],[232,-220],[221,-171],[-335,-428],[-166,-280],[163,-163],[103,-109],[41,-37],[31,-20],[26,-13],[39,-15],[28,-9],[53,-6],[11,12],[35,-9],[36,-4],[31,1],[12,-3],[13,-18],[12,-27],[8,-35],[0,-22],[-7,-37],[1,-13],[14,-75],[17,-27],[34,-37],[26,-21],[24,-14],[71,-27],[23,-13],[21,-31],[7,-4],[53,-16],[63,-9],[46,0],[35,8],[20,8],[48,29],[34,18],[50,19],[58,10],[31,21],[38,22],[27,11],[117,0],[49,-5],[41,-19],[47,-28],[88,-75],[63,-59],[15,-18],[18,-38],[18,-70],[13,-85],[17,-75],[30,-108],[-24,-42],[-27,-18],[-19,-23],[-4,-66],[4,-32],[13,-33],[18,-25],[20,-23],[53,-50],[78,-59],[30,-7],[26,-1],[20,4],[38,13],[49,12],[88,16],[42,5],[55,1],[42,-6],[71,-31],[63,-31],[27,-25],[17,-19],[5,-15],[-2,-25],[-6,-32],[-37,-81],[-8,-43],[-4,-95],[-7,-49],[7,-20],[20,-26],[29,-28],[14,-38],[-1,-42],[-14,-53],[-22,-90],[-6,-16],[-27,-60],[-63,-92],[-45,-62],[-19,-37],[-12,-34],[-5,-29],[1,-16],[17,-24],[27,-27],[80,-65],[47,-61],[16,-27],[-1,-13],[-12,-21],[-26,-18],[-50,-25],[-24,-26],[-11,-25],[-2,-33],[6,-17],[15,-14],[21,-10],[32,-6],[47,4],[57,-3],[28,-17],[19,-22],[15,-36],[30,-110],[17,-45],[2,-14],[20,-181],[8,-101],[17,-84],[18,-69],[16,-43],[15,-28],[36,-53],[16,-46],[4,-29],[1,-45],[7,-18],[37,-119],[13,-27],[5,6],[234,176],[77,113],[161,61],[110,-13],[229,-44],[185,235],[44,179],[132,129],[125,127],[63,-2],[48,8],[66,31],[218,159],[112,9],[58,-16],[30,-20],[57,-10],[32,-23],[43,-37],[58,-65],[46,-17],[45,-4],[43,17],[18,11],[24,22],[15,6],[50,49],[49,-29],[67,-10],[49,22],[65,39],[168,56],[240,217],[50,5],[119,-40],[70,-40],[60,2],[205,-19],[230,-76],[33,-68],[17,-50],[20,-18],[5,-12],[21,-19],[16,-29],[120,-84],[214,-136],[43,-1],[425,160],[5,5],[214,-136],[111,-18],[110,-25],[68,-1],[57,-41],[21,-146],[17,-68],[32,-140],[-38,-106],[-100,-230],[-28,-52],[-27,-44],[-67,-103],[-13,-157],[-72,-169],[-6,-82],[-44,-219],[85,-176],[9,-17],[31,-75],[3,-38],[-5,-71],[6,-58],[34,-80],[42,-172],[28,-173],[33,-131],[-12,-52],[101,7],[13,-41],[7,-84],[39,-338],[22,-47],[93,-145],[26,-44],[81,-192],[0,-39],[175,-184],[70,-14],[44,-14],[62,-7],[81,-213],[275,92],[124,78],[29,19],[287,-12],[226,-68],[146,-3],[243,28],[15,-12],[244,-268],[51,8],[125,188],[200,354],[204,693],[-9,18],[9,41],[21,16],[11,21],[13,14],[-9,17],[3,47],[8,50],[44,19],[11,11],[1,15],[20,37],[6,36],[12,32],[25,1],[3,4],[9,48],[-7,32],[-1,15],[9,18],[-15,24],[-3,30],[6,28],[19,27],[26,14],[3,15],[18,14],[17,-4],[12,7],[1,10],[20,11],[-2,17],[9,4],[10,17],[1,16],[-2,77],[19,22],[7,25],[15,7],[11,16],[-8,11],[6,15],[8,0],[-9,19],[1,13],[-15,21],[-19,17],[-18,33],[-23,63],[-17,28],[-33,108],[-13,27],[-3,15],[-30,1],[-33,-2],[-16,-5],[-34,1],[-29,19],[-17,5],[-15,16],[-5,16],[1,21],[-15,15],[-2,12],[-20,39],[-7,54],[0,35],[-20,52],[123,68],[30,15],[32,13],[33,21],[79,38],[13,1],[85,49],[43,18],[45,10],[57,14],[90,30],[128,3],[53,-2],[13,-4],[99,15],[67,22],[59,12],[80,-34],[103,-33],[40,40],[112,116],[66,67],[117,-67],[82,-16],[45,-7],[54,2],[-1,2],[394,-14],[28,3],[243,42],[64,18],[183,-54],[221,7],[3,-12],[52,-48],[37,-43],[8,-15],[2,-38],[10,-27],[20,-26],[22,-41],[-4,-14],[-10,-9],[-4,-15],[6,-19],[21,-27],[7,-25],[14,-19],[21,-21],[37,-30],[28,5],[35,-12],[26,-2],[14,-7],[16,-29],[10,-31],[-9,-46],[1,-23],[13,-17],[83,-62],[-2,-40],[10,-42],[10,-6],[25,4],[24,-12],[23,-36],[14,-15],[45,-31],[40,-19],[11,-15],[0,-55],[3,-14],[9,-2],[13,13],[19,28],[25,-5],[51,3],[35,-4],[26,16],[41,-1],[9,3],[28,20],[5,9],[-1,24],[15,21],[26,-7],[11,2],[23,29],[3,18],[11,8],[31,-1],[29,3],[7,18],[13,10],[20,-3],[40,-17],[-4,-17],[7,-17],[-8,-29],[2,-14],[12,-16],[-4,-24],[8,-27],[22,-19],[6,-24],[21,-14],[2,-20],[14,-15],[4,-17],[14,-19],[25,-24],[19,-23],[22,-36],[19,-16],[21,-10],[8,-30],[36,-7],[9,-32],[22,0],[20,-10],[9,-29],[18,-9],[12,13],[28,-6],[14,-15],[40,4],[14,-4],[22,-15],[8,-17],[14,-6],[20,-17],[21,1],[18,-8],[37,-36],[19,-49],[21,-2],[16,-7],[29,-24],[12,-20],[8,-6],[22,4],[15,10],[4,-13],[43,-26],[31,-28],[35,-13],[13,1],[24,-10],[39,-3],[13,-17],[21,1],[12,-14],[23,-7],[22,-24],[6,10],[50,-9],[16,7],[7,11],[35,-7],[7,8],[16,2],[9,-7],[14,2],[33,-12],[18,5],[11,13],[14,-7],[8,-11],[22,4],[48,-15],[13,7],[37,1],[11,7],[25,-7],[10,-11],[23,-13],[10,0],[4,-15],[30,-32],[33,-20],[33,-15],[37,2],[54,-13],[29,-29],[54,-3],[61,-18],[247,-107],[126,-74],[559,38],[310,155],[158,217],[68,46],[32,13],[40,-9],[63,41],[157,-111],[24,-3],[149,-72],[24,-18],[42,-49],[11,-20],[-2,-25],[21,-41],[13,-18],[16,-42],[1,-12],[15,-52],[25,-36],[15,-4],[41,10],[37,17],[24,-28],[22,-3],[15,-9],[13,-15],[27,-7],[43,-48],[8,-4],[47,-49],[90,-103],[27,-39],[34,-29],[23,-30],[43,-50],[25,-19],[26,-37],[26,-31],[11,1],[21,-13],[27,-43],[18,-14],[190,-295],[327,-352],[-134,-396],[141,-608],[117,-159],[-16,-31],[-16,-13],[-11,-46],[-10,-9],[-15,-27],[-24,-12],[-10,-20],[13,-70],[20,-30],[0,-39],[-16,-41],[-17,-73],[-21,-34],[-9,-7],[-5,-20],[-29,-29],[5,-31],[-9,-26],[-14,-17],[-56,-18],[-36,-6],[-6,-30],[-12,-8],[-10,-23],[-5,-27],[-13,-15],[-3,-36],[-10,-2],[-17,-23],[-14,-41],[-6,-3],[3,-34],[-9,-23],[1,-10],[-13,-28],[-2,-23],[5,-52],[13,-42],[-7,-13],[12,-47],[7,-47],[7,-23],[15,-25],[9,-27],[26,-21],[5,-16],[-9,-16],[20,-53],[9,-12],[29,-16],[13,-16],[12,-24],[21,-21],[-5,-33],[-14,-12],[-33,-57],[-24,-17],[-11,-23],[-10,-12],[-14,-33],[-54,-45],[-7,-13],[-8,-27],[3,-30],[-7,-33],[-22,-61],[-5,-24],[-14,-121],[14,-49],[29,-60],[4,-35],[8,-8],[13,-23],[0,-22],[12,-19],[17,-20],[14,-60],[-18,1],[-9,-26],[7,-26],[-4,-43],[-9,-17],[6,-27],[-2,-13],[8,-17],[6,-44],[19,-48],[-20,-11],[-19,-19],[-16,-31],[-13,-17],[-2,-19],[-29,-19],[-32,-38],[-10,-20],[-2,-30],[-6,-19],[-14,-30],[-7,-34],[-1,-34],[-8,-20],[1,-20],[-5,-24],[12,-52],[26,-66],[50,-97],[53,-41],[12,-14],[18,-39],[4,-20],[0,-36],[-9,-30],[-18,-28],[-32,-33],[-39,-30],[-51,-21],[-62,-23],[-124,-23],[-12,-15],[-39,-11],[-15,-11],[-35,-38],[-42,-40],[-17,-9],[-26,-29],[-23,-23],[-29,-38],[-41,-40],[-44,-38],[-20,-11],[-29,-34],[-31,-24],[-19,-30],[-12,-31],[-28,-28],[-30,-57],[-56,-74],[-30,-34],[-17,-34],[-2,-26],[4,-100],[-1,-19],[-53,-202],[-2,-27],[30,-38],[6,-15],[-1,-56],[-20,-46],[-7,-33],[2,-23],[10,-22],[4,-49],[-2,-32],[8,-34],[-13,-90],[-14,-60],[-43,-145],[0,-23],[13,-175],[10,-26],[71,-150],[2,-6],[-3,-116],[-2,-3],[-84,-93],[-5,-1],[-82,22],[-51,6],[-27,-13],[-76,-60],[-54,-23],[-18,-11],[-23,-46],[-117,-132],[-7,-11],[4,-62],[-98,-37],[-58,-55],[71,-135],[21,-36],[29,-36],[36,-65],[46,-44],[47,-80],[74,-83],[-14,-32],[-25,-34],[-28,-34],[-7,-21],[-8,-79],[-12,-60],[-19,-71],[-95,-117],[-48,-70],[10,-117],[8,-44],[5,-46],[0,-30],[-3,-25],[-10,-18],[-9,-62],[0,-30],[42,-70],[0,-33],[-9,-38],[-17,-40],[-39,-33],[-38,-19],[-130,-35],[-15,9],[-11,-1],[-25,-15],[-17,-13],[-51,-91],[-149,-13],[-110,-247],[-18,-42],[17,-168],[-29,-104],[-9,-14],[-28,-16],[-84,-73],[-37,-39],[-45,-24],[-25,9],[-49,-26],[-59,-25],[-67,-33],[-21,-50],[-25,-7],[-27,-15],[-37,-34],[-28,-14],[-194,-66],[-33,-10],[63,-134],[16,-65],[29,-61],[-92,-24],[-64,-27],[-29,-43],[-64,-28],[-25,-4],[-25,-11],[-38,-27],[-37,-36],[-36,-1],[-22,-11],[-39,-31],[-25,-35],[-31,-8],[-8,-47],[-2,-41],[4,-40],[-19,-30],[-223,-127],[-32,-25],[-54,-47],[-145,-9],[-75,-36],[-106,-117],[-88,-87],[-144,-147],[-42,-102],[-15,-78],[-13,-102],[-89,-186],[35,-47],[-2,-93],[2,-22],[8,-42],[-7,-46],[18,-74],[3,-34],[17,-74],[15,-36],[13,-96],[152,-249],[7,-11],[358,-583],[8,-14],[175,-243],[77,-97],[92,-168],[61,-99],[156,-289],[104,-123],[216,-400],[47,-87],[296,-92],[251,-82],[174,-49],[171,-49],[228,-69],[129,-40],[242,-76],[211,-63],[103,-30],[141,-46],[441,-141],[284,-82],[459,-146],[569,-160],[261,-78],[240,-78],[62,-18],[-3,61],[33,70],[15,36],[36,63],[14,18],[7,24],[-8,40],[4,58],[7,37],[13,34],[16,21],[19,44],[28,126],[70,107],[6,33],[-11,34],[3,12],[-2,26],[4,14],[7,51],[12,29],[-3,29],[5,37],[-8,33],[45,96],[-3,39],[76,270],[60,170],[98,250],[-95,148],[28,342],[34,89],[-7,92],[-2,76],[9,28],[0,23],[-12,47],[5,166],[-8,164],[3,44],[-7,22],[-6,136],[79,136],[8,4],[42,56],[6,85],[-14,55],[-1,51],[12,61],[65,115],[2,12],[-6,18],[-19,24],[-5,18],[-28,63],[-58,61],[-77,187],[-15,34],[-7,3],[-10,67],[-19,71],[-2,18],[-8,12],[-45,122],[69,274],[92,91],[119,142],[125,247],[22,-4],[30,19],[78,35],[30,16],[14,27],[24,54],[6,41],[2,66],[-5,32],[15,79],[13,57],[37,60],[203,66],[24,32],[74,59],[76,52],[27,31],[26,2],[19,24],[17,10],[14,36],[65,41],[20,0],[26,9],[38,5],[38,13],[54,-6],[37,7],[15,11],[30,-4],[33,15],[39,-18],[15,5],[19,-2],[27,8],[22,12],[47,-19],[38,21],[35,30],[13,22],[13,10],[26,11],[121,27],[50,18],[95,24],[96,-26],[163,39],[96,19],[21,2],[20,-9],[54,21],[33,4],[34,-7],[27,-35],[19,-12],[20,2],[99,29],[70,30],[14,14],[59,-5],[12,3],[15,23],[5,31],[17,22],[30,5],[36,-4],[33,9],[43,-4],[30,4],[7,-7],[21,31],[55,13],[27,21],[36,-2],[16,15],[17,7],[21,-12],[7,-16],[32,-10],[4,14],[53,13],[14,-1],[46,13],[16,-1],[39,-19],[20,14],[86,-10],[6,-9],[73,-3],[1,-10],[-13,-41],[-3,-41],[-5,-12],[-21,-13],[-88,-41],[-20,-23],[-13,-51],[-30,-58],[1,-36],[-10,-6],[-30,-5],[-24,-11],[-30,-7],[-30,-14],[-19,-16],[-20,-32],[-30,-37],[-15,-13],[-31,-17],[9,-39],[-5,-8],[-82,-35],[-32,-32],[-27,-40],[-50,-57],[13,-39],[3,-31],[-4,-9],[-75,-43],[-24,-25],[-41,-26],[-7,-9],[-13,-30],[-11,-55],[3,-28],[-8,-12],[-22,-9],[-47,-4],[-20,-6],[-33,5],[-20,-9],[-8,-26],[-4,-40],[-27,-49],[2,-12],[14,-33],[-6,-19],[-55,-37],[-29,-34],[-11,-5],[-24,-1],[-27,-12],[-7,-14],[16,-39],[-2,-19],[-25,-43],[-45,-26],[-23,-54],[-12,-16],[-8,-32],[-22,-42],[-5,-25],[0,-21],[-9,-21],[-16,0],[-8,21],[-15,6],[-26,-20],[-19,-34],[-12,-48],[-49,-68],[-5,-24],[-15,-16],[-14,-27],[-31,-20],[0,-14],[34,-32],[4,-17],[-7,-17],[-31,-49],[-25,-47],[-37,-51],[6,-87],[-12,-17],[-26,-2],[-12,-11],[-3,-18],[16,-104],[-2,-28],[-24,-23],[-33,-4],[-16,-30],[7,-43],[-9,-18],[-38,-17],[-9,-9],[-5,-38],[14,-75],[-4,-19],[-10,-2],[-17,6],[-13,-3],[-7,-16],[5,-33],[0,-17],[-7,-6],[-31,-14],[-8,-12],[3,-64],[11,-16],[30,-22],[2,-10],[-10,-27],[-4,-63],[-11,-27],[-8,-50],[-6,-6],[-22,-9],[-9,-10],[1,-9],[16,-20],[5,-15],[-15,-13],[-25,-4],[-12,-8],[-4,-11],[5,-45],[-17,-27],[-17,-13],[-5,-27],[-17,-22],[-21,-12],[-9,-22],[12,-35],[-6,-31],[-13,-25],[0,-31],[20,-39],[1,-15],[-57,-49],[-10,-19],[2,-14],[35,-22],[20,7],[20,-6],[31,5],[42,-27],[19,-18],[10,-23],[15,-8],[16,-18],[14,2],[12,9],[14,-6],[37,7],[8,13],[-6,23],[13,17],[4,14],[22,6],[25,-19],[12,-33],[-4,-14],[6,-14],[16,-4],[6,-8],[22,-8],[17,5],[13,13],[35,-17],[2,-15],[10,-13],[25,20],[31,-20],[8,4],[30,-1],[30,-25],[36,-45],[11,-28],[17,-20],[-1,-18],[8,-38],[23,-30],[6,-23],[12,-13],[31,-8],[11,27],[11,-3],[23,8],[32,-1],[33,-34],[39,-1],[53,-7],[15,13],[32,4],[7,6],[25,3],[45,-12],[17,-18],[1,-20],[8,-22],[32,-21],[25,-11],[11,-10],[7,-24],[19,-36],[13,-7],[21,-2],[39,5],[28,-10],[50,-58],[40,-38],[14,-33],[49,-41],[6,-11],[31,-29],[5,-14],[77,-26],[40,-32],[44,-84],[37,-15],[44,-39],[63,-6],[21,3],[69,-16],[19,-21],[36,-61],[9,-32],[6,-39],[16,-22],[12,-41],[9,-13],[15,-79],[1,-31],[7,-5],[20,-31],[42,-33],[54,-60],[35,-52],[17,-36],[15,-39],[10,-40],[18,-123],[23,-50],[142,-12],[191,-12],[99,-55],[231,-42],[118,19],[347,318],[233,124],[285,401],[29,85],[777,-415],[70,-10],[12,-9],[575,-440],[844,-693],[80,-83],[56,38],[256,119],[26,208],[72,-29],[42,-31],[10,-15],[45,-14],[13,-10],[24,-4],[23,-8],[27,-5],[17,-10],[17,-1],[27,-11],[20,-18],[42,-23],[51,-3],[15,4],[29,-8],[22,-13],[26,-25],[10,-2],[9,-15],[7,-25],[9,-11],[35,-5],[25,-25],[16,-11],[9,-33],[9,-14],[4,-21],[1,-39],[9,-13],[32,-8],[29,4],[16,-5],[17,-16],[5,-31],[18,-6],[9,-10],[15,-1],[18,10],[23,-11],[12,-26],[23,-11],[8,-30],[34,-19],[11,-5],[19,3],[23,-5],[17,-13],[22,9],[20,-1],[8,-17],[17,-77],[10,-24],[9,-10],[11,-1],[37,15],[19,-11],[31,-37],[32,-8],[25,-22],[32,13],[15,-8],[-4,-36],[10,-8],[41,-10],[11,-38],[12,-9],[12,9],[18,36],[5,6],[18,-15],[3,-10],[-14,-46],[1,-6],[35,-48],[20,-13],[7,-27],[-9,-44],[6,-69],[-2,-24],[-13,-36],[2,-47],[13,-74],[0,-24],[-6,-50],[-2,-43],[6,-22],[19,-32],[4,-15],[-17,-72],[0,-24],[10,-58],[-6,-56],[-10,-42],[4,-14],[38,-58],[21,-40],[12,-42],[5,-36],[18,-32],[4,-31],[16,-40],[7,-28],[3,-107],[33,22],[17,19],[15,43],[11,22],[12,34],[22,5],[26,-1],[21,8],[23,-4],[35,-23],[28,10],[24,-6],[35,-25],[38,-15],[16,-26],[22,-11],[6,2],[-1,29],[29,80],[12,20],[57,60],[12,36],[33,26],[32,4],[20,12],[7,12],[3,29],[47,46],[21,49],[12,4],[11,-24],[13,8],[-5,37],[-12,51],[2,12],[19,5],[39,-22],[20,0],[44,-7],[30,20],[9,22],[15,15],[17,8],[22,-7],[16,13],[-13,28],[9,28],[2,39],[3,7],[21,15],[21,22],[45,28],[60,50],[19,13],[25,31],[25,15],[15,17],[36,61],[60,78],[41,203],[194,-43],[14,-76],[5,-70],[-14,-60],[21,-50],[146,-162],[36,-61],[75,-66],[96,-68],[84,-66],[62,-39],[36,-18],[191,-67],[47,-15],[90,-55],[38,-17],[47,-10],[39,-14],[36,-7],[46,-19],[94,-9],[37,11],[48,33],[66,26],[40,-62],[1,-32],[-43,-55],[-20,-63],[-6,-49],[-26,-70],[-32,-44],[30,-10],[24,-39],[9,-75],[-8,-61],[-48,-48],[-33,-50],[18,-26],[41,6],[40,-23],[72,-34],[38,11],[13,-11],[8,-15],[6,-44],[22,-24],[24,8],[27,37],[11,10],[9,16],[12,-29],[8,-10],[19,-46],[20,-19],[48,4],[53,-34],[35,-10],[32,-52],[19,-5],[29,9],[20,-9],[19,-47],[34,-17],[223,7],[39,-14],[90,1],[188,-83],[60,-9],[745,-58],[399,-210],[34,71],[-4,23],[2,17],[40,0],[78,22],[20,4],[19,-8],[22,-24],[49,-20],[25,-38],[15,-8],[24,-5],[22,-15],[72,-23],[22,-15],[27,-5],[40,-15],[38,28],[24,4],[21,8],[85,50],[23,21],[63,34],[82,30],[87,35],[46,8],[14,-24],[9,-38],[-6,-45],[6,-38],[20,-16],[15,-1],[23,5],[31,-1],[73,-33],[27,-10],[53,5],[15,-4],[25,-17],[21,-20],[48,-53],[32,-25],[49,-58],[30,-46],[22,-24],[7,-16],[11,-46],[8,-65],[17,-24],[10,-27],[-8,-37],[-9,-17],[2,-14],[23,-15],[14,-21],[49,-83],[17,-26],[8,-17],[26,-21],[27,-54],[31,-31],[4,-22],[-4,-43],[1,-16],[17,-36],[0,-15],[7,-34],[1,-22],[-6,-12],[19,-65],[37,-68],[43,-40],[27,-38],[37,-14],[12,-9],[10,-18],[21,-28],[157,-93],[106,-27],[91,-74],[22,-7],[116,-21],[85,-31],[11,4],[36,-17],[38,-38],[41,-21],[52,-15],[10,-6],[89,-122],[6,-6],[55,-19],[68,-79],[46,-112],[34,-120],[1,-13],[9,-19],[-8,-22],[3,-10],[34,-28],[92,-44],[95,-34],[142,-69],[142,-17],[78,16],[65,-7],[56,-11],[60,-57],[111,-4],[49,-42],[108,-55],[11,-19],[31,-22],[57,-23],[107,-106],[86,-47],[39,-34],[71,-92],[39,-21],[69,-14],[43,2],[100,26],[72,-3],[43,-18],[34,-3],[59,-8],[75,-23],[32,-14],[94,47],[19,15],[116,31],[21,-2],[18,7],[28,-7],[55,11],[57,-16],[98,56],[65,17],[137,97],[-13,88],[-22,22],[-4,18],[17,25],[17,14],[11,0],[50,46],[16,37],[14,15],[6,33],[45,93],[23,18],[12,27],[25,32],[38,36],[26,44],[19,9],[37,-15],[78,-4],[30,10],[82,-4],[20,25],[9,17],[14,12],[56,-14],[56,-18],[46,-11],[87,-28],[75,-82],[33,-19],[46,-8],[29,8],[27,-21],[85,-188],[0,-91],[-14,-140],[35,-14],[20,-26],[54,-9],[36,-10],[17,10],[16,16],[16,5],[44,-11],[101,8],[315,40],[264,-143],[18,0],[64,19],[70,37],[13,1],[105,-52],[99,-58],[59,-29],[181,-119],[31,-25],[579,52],[153,13],[74,2],[64,-31],[96,-6],[10,1],[29,30],[14,20],[60,6],[115,28],[105,6],[48,66],[56,60],[7,17],[29,-46],[22,-26],[25,3],[75,-37],[32,-18],[63,-39],[32,0],[109,17],[84,-9],[28,-7],[117,-54],[30,-9],[43,-23],[55,-11],[31,1],[42,-4],[159,4],[22,6],[55,22],[29,6],[23,2],[23,-3],[24,-11],[55,-11],[69,1],[9,26],[22,53],[14,8],[44,10],[20,9],[20,59],[16,29],[14,18],[22,16],[35,16],[36,41],[7,26],[-11,34],[6,28],[47,38],[58,31],[60,16],[29,20],[3,18],[67,60],[154,95],[133,80],[12,16],[-6,5],[1,37],[7,8],[5,25],[15,16],[4,10],[33,10],[13,8],[35,-5],[18,14],[19,4],[24,-1],[13,32],[7,7],[17,-15],[28,-3],[14,22],[20,10],[24,-1],[9,7],[21,1],[27,-4],[17,3],[21,-6],[25,10],[79,11],[46,11],[23,12],[20,-5],[31,8],[22,10],[39,-16],[36,2],[12,-5],[19,11],[12,0],[57,13],[6,-13],[18,10],[32,-4],[12,13],[32,12],[1,-7],[26,-5],[30,15],[25,2],[66,20],[34,30],[24,18],[9,14],[27,19],[32,38],[19,35],[1,16],[29,30],[41,38],[17,20],[33,-17],[35,3],[112,-75],[54,-35],[47,-25],[46,-15],[52,18],[56,25],[148,41],[184,-67],[89,-361],[78,-25],[129,-329],[19,-8],[23,-3],[4,-67],[-13,-189],[13,-93],[49,-62],[24,-62],[125,-109],[312,-665],[155,-57],[110,-172],[-88,-137],[-4,-108],[11,-109],[46,-195],[43,-84],[64,-78],[26,-39],[20,-25],[44,-67],[23,-45],[71,-68],[8,-37],[1,-46],[-10,-214],[10,-85],[-268,-166],[-188,-82],[-71,-42],[-27,-78],[0,-72],[61,-91],[10,-48],[1,-40],[14,-76],[-10,-21],[-4,-43],[-19,-66],[-18,-35],[-3,-38],[43,-25],[31,-29],[15,-65],[-8,-89],[25,-46],[14,-40],[30,-43],[67,-54],[-162,-117],[-1,-49],[47,-96],[32,-47],[36,10],[35,5],[60,0],[52,-9],[41,-4],[-9,-174],[68,-92],[18,-56],[73,-126],[40,-32],[71,-18],[57,-40],[6,-28],[18,-38],[49,-22],[36,-45],[7,-29],[32,3],[34,9],[56,0],[109,-45],[58,-10],[25,-36],[114,-88],[34,13],[87,14],[54,-7],[62,-21],[42,-51],[48,-38],[58,-39],[86,-103],[21,-32],[7,-37],[-15,-37],[2,-43],[20,-19],[59,5],[71,16],[63,17],[6,40],[77,75],[73,4],[94,30],[130,86],[18,42],[103,32],[55,6],[23,-10],[25,-16],[40,-38],[69,37],[42,54],[28,51],[125,-160],[-1,-113],[32,-60],[32,-24],[24,-13],[53,7],[177,-198],[39,-21],[116,-9],[-7,-46],[22,-36],[7,-64],[15,-62],[67,-69],[80,-124],[19,-46],[10,-55],[18,-44],[-27,-67],[19,-191],[8,-67],[30,-63],[42,-40],[9,-12],[108,-144],[70,-76],[38,-85],[67,-40],[100,-67],[169,-129],[85,-12],[57,-28],[52,2],[75,-59],[67,-29],[74,10],[65,-27],[50,-2],[96,10],[79,-79],[85,-54],[14,-70],[26,-46],[28,-115],[96,-143],[92,-71],[32,-96],[46,-74],[58,-30],[37,-93],[57,-57],[112,-131],[28,-33],[232,-178],[114,-11],[16,2],[31,-37],[130,-17],[14,-12],[58,-34],[17,-46],[60,-16],[5,-27],[72,-9],[56,-29],[20,-42],[36,-28],[40,-99],[10,-40],[-2,-19],[-10,-22],[-73,-33],[-64,-20],[5,-147],[3,-17],[19,-47],[32,-23],[44,-7],[22,-13],[13,-61],[-23,-47],[7,-37],[-1,-48],[6,-24],[-1,-59],[-15,-18],[-4,-40],[26,-39],[27,-18],[6,-40],[47,-51],[56,-117],[9,-191],[-57,-35],[13,-113],[-19,-55],[9,-144],[-12,-19],[-41,-164],[64,-64],[29,-60],[94,38],[68,-63],[54,-4],[29,-47],[46,-3],[14,-63],[108,-16],[29,52],[77,63],[35,31],[8,28],[47,-11],[116,-18],[92,32],[77,46],[84,68],[99,114],[333,-104],[35,10],[31,-43],[118,-191],[53,-181],[24,-87],[-10,-124],[-148,-373],[-100,-128],[-47,-63],[4,-28],[18,-87],[28,-275],[-35,-150],[141,-163],[284,-2],[106,-33],[87,-71],[50,30],[23,9],[92,-23],[12,-19],[1,-39],[21,-16],[47,-24],[77,-45],[321,969],[31,109],[21,59],[72,28],[88,2],[86,-40],[145,-48],[74,22],[213,-78],[51,88],[49,42],[84,132],[14,76],[12,36],[104,37],[-45,66],[63,68],[-12,127],[-16,123],[-60,164],[-16,254],[-50,19],[1,80],[24,43],[8,33],[7,56],[159,141],[-20,71],[85,82],[70,26],[9,22],[15,55],[13,16],[239,124],[28,261],[136,165],[188,132],[36,47],[132,5],[79,30],[75,-108],[27,-153],[66,-274],[232,-264],[52,-16],[113,30],[116,-17],[152,-34],[159,-157],[97,-174],[40,-171],[196,-55],[42,-29],[29,-14],[21,5],[94,-15],[204,-94],[128,-110],[167,-89],[127,-18],[64,31],[63,-25],[85,26],[34,-29],[35,0],[17,-10],[2,-17],[17,-67],[41,-26],[49,-17],[15,-63],[39,-97],[135,-112],[50,-112],[34,-37],[92,-44],[53,9],[71,131],[111,56],[173,56],[249,166],[120,86],[29,23],[79,59],[57,36],[53,40],[105,89],[31,12],[183,45],[115,15],[178,67],[67,-69],[0,-70],[334,-242],[78,43],[61,-19],[39,-102],[22,-30],[67,-118],[44,-25],[179,83],[105,48],[29,11],[40,1],[37,-2],[32,-8],[16,8],[83,16],[12,78],[-10,82],[-13,29],[-2,41],[5,50],[12,78],[6,55],[22,25],[220,230],[63,28],[46,23],[33,47],[40,15],[122,22],[30,15],[35,49],[52,64],[24,7],[53,-7],[181,184],[17,55],[16,54],[-17,18],[-19,45],[-3,57],[23,53],[15,16],[59,37],[85,38],[21,27],[9,86],[55,115],[29,74],[34,23],[19,28],[93,99],[-36,76],[8,58],[31,59],[60,62],[-3,29],[10,8],[38,-1],[32,54],[76,84],[107,64],[44,42],[40,123],[8,39],[0,14],[36,3],[10,12],[19,-4],[50,-20],[26,-3],[21,-56],[24,-47],[106,25],[102,27],[48,4],[33,9],[60,38],[42,34],[34,-7],[28,-14],[7,-65],[7,-13],[29,-12],[28,-35],[18,-37],[35,-105],[80,1],[51,-8],[96,40],[125,14],[37,35],[4,69],[15,18],[21,7],[29,20],[8,21],[0,52],[10,133],[24,42],[12,60],[35,68],[7,31],[14,25],[21,24],[71,37],[64,121],[28,43],[15,5],[45,64],[0,38],[11,11],[9,34],[21,49],[24,52],[43,-37],[62,-121],[26,-50],[19,-45],[47,-59],[6,-72],[54,-107],[60,-59],[33,-35],[78,-6],[61,21],[21,-15],[14,-28],[29,-43],[23,-24],[31,-16],[25,4],[45,-44],[45,-18],[48,-16],[73,-30],[80,-18],[80,15],[69,32],[53,15],[76,-47],[79,-35],[30,-2],[25,-7],[59,4],[105,0],[51,-64],[53,-33],[157,-55],[22,-22],[28,-61],[41,-54],[-9,-25],[-2,-18],[3,-146],[0,-58],[-13,-61],[12,-38],[21,-27],[25,-17],[61,-34],[43,18],[20,-2],[44,-54],[26,-13],[64,-17],[94,-71],[28,-4],[35,-17],[12,-17],[49,-30],[29,-36],[20,-15],[77,16],[14,-8],[13,-25],[2,-69],[10,-19],[45,-30],[132,-153],[51,-61],[25,-25],[15,-10],[23,8],[60,15],[116,55],[58,11],[81,-8],[37,25],[64,6],[77,27],[5,14],[-23,67],[7,37],[18,21],[29,14],[55,42],[69,-118],[-22,-123],[80,-98],[25,-13],[46,-33],[23,-9],[27,-101],[3,-42],[33,-119],[-17,-24],[-54,-36],[-8,-33],[23,-154],[-3,-48],[-14,-87],[3,-11],[63,-65],[29,-15],[90,-7],[26,4],[52,-19],[7,-10],[8,-29],[15,-10],[55,-76],[46,-27],[37,-26],[34,-18],[23,-1],[36,3],[41,-91],[47,-71],[8,-22],[20,-31],[61,-45],[54,-15],[19,3],[50,39],[29,36],[50,23],[34,23],[20,-12],[60,-65],[10,-25],[20,-119],[0,-45],[5,-43],[14,-28],[38,-52],[12,-26],[23,-20],[44,-28],[65,-25],[78,-1],[20,14],[45,37],[38,27],[67,59],[71,-32],[49,-25],[74,-47],[44,-13],[62,-7],[32,0],[19,-7],[34,-25],[32,-11],[51,7],[45,-16],[14,-23],[15,-54],[13,-18],[34,-31],[25,-70],[8,-29],[24,-22],[51,-36],[30,-12],[28,-21],[50,4],[18,17],[19,13],[35,-31],[36,-41],[40,-69],[-3,-30],[-6,-155],[11,-21],[8,-7],[68,-5],[43,2],[21,14],[40,10],[44,2],[24,24],[44,-6],[60,-40],[42,-40],[69,-55],[37,-2],[18,-4],[38,9],[59,36],[37,33],[57,62],[12,24],[39,56],[27,19],[12,12],[40,33],[26,28],[57,-6],[11,11],[12,36],[34,12],[39,26],[41,12],[41,71],[43,77],[12,26],[7,30],[4,35],[1,67],[9,46],[48,-1],[40,37],[56,35],[36,59],[18,56],[79,-106],[37,-33],[14,-36],[5,-26],[15,-35],[37,-53],[64,-32],[40,-51],[18,-40],[0,-45],[-6,-34],[-38,-124],[-13,-59],[7,-39],[-1,-108],[-5,-27],[-14,-28],[-5,-80],[8,-26],[12,-17],[28,-14],[12,-29],[4,-39],[6,-100],[9,-67],[6,-25],[16,-36],[16,-25],[68,-42],[48,-56],[123,-84],[30,-30],[29,-42],[31,-47],[4,-34],[-26,-101],[-20,-9],[-18,-16],[-83,-37],[-1,-72],[-4,-25],[-15,-35],[-6,-28],[5,-52],[11,-35],[3,-23],[50,-22],[108,-35],[37,6],[74,2],[40,7],[32,-5],[41,-13],[54,-25],[36,-26],[29,-25],[13,-16],[20,-12],[6,-13],[30,-28],[13,-35],[16,-35],[17,-40],[19,-41],[25,-38],[19,-24],[7,-30],[-29,-92],[26,-16],[74,-33],[19,-12],[23,-31],[6,-20],[14,-22],[4,-53],[40,-30],[65,-37],[63,-23],[1,-56],[28,-77],[47,-59],[41,-38],[6,-63],[18,-60],[46,-12],[87,-58],[50,-32],[1,-66],[-8,-74],[4,-45],[59,-71],[29,-37],[14,-55],[49,-57],[54,-107],[30,-11],[7,-64],[20,-33],[18,-40],[0,-48],[7,-61],[-14,-51],[6,-54],[-19,-70],[47,-23],[53,-37],[32,-33],[37,-59],[32,-34],[67,-21],[46,-44],[34,-8],[64,-34],[29,-81],[27,-72],[12,-44],[-5,-65],[1,-35],[-20,-87],[-35,-2],[-32,-67],[-77,-72],[-23,-43],[1,-37],[16,-36],[77,-57],[62,-95],[41,-71],[37,-67],[19,-63],[51,37],[60,-3],[163,63],[37,9],[113,0],[38,-10],[13,-48],[24,-49],[27,-5],[57,18],[38,8],[87,-1],[38,11],[28,4],[83,2],[69,5],[38,-53],[17,5],[14,-11],[18,-40],[23,-41],[80,-95],[24,-7],[97,-13],[27,-39],[20,-4],[15,-20],[52,-20],[23,6],[14,31],[87,8],[53,14],[32,26],[53,23],[27,-24],[61,-3],[40,7],[43,0],[42,7],[36,0],[75,-148],[23,-80],[39,-65],[25,-22],[20,-27],[7,-45],[10,-52],[32,-113],[10,-59],[-34,-50],[-37,-45],[-22,-16],[-18,-26],[1,-25],[40,-77],[16,-46],[7,-68],[11,-4],[-4,-30],[11,-28],[1,-17],[25,-60],[-13,-43],[-21,-27],[-9,-25],[0,-21],[-6,-60],[11,-71],[21,-17],[-3,-27],[8,-45],[23,-52],[3,-44],[8,-51],[27,-40],[25,-44],[24,-19],[41,-19],[48,-36],[31,-31],[36,-31],[33,-20],[35,-17],[29,-6],[72,-4],[55,3],[49,47],[35,11],[58,43],[38,23],[62,20],[30,-44],[84,-45],[82,-58],[45,-29],[82,-32],[43,0],[36,-7],[39,2],[50,18],[95,-16],[50,-14],[92,-23],[49,-1],[57,-11],[47,-47],[49,-26],[39,-33],[61,-46],[44,-47],[97,-2],[69,-20],[56,-19],[48,-7],[140,-79],[47,-23],[40,-61],[33,-6],[28,16],[42,-11],[37,4],[40,-3],[77,-15],[71,-17],[56,-2],[50,24],[22,5],[94,-6],[71,-1],[54,2],[41,8],[36,30],[73,-17],[33,9],[40,24],[26,27],[15,51],[25,24],[39,-9],[21,7],[21,17],[3,29],[-22,33],[20,53],[78,-2],[70,81],[32,8],[52,17],[49,36],[30,31],[8,31],[3,41],[7,28],[11,17],[38,41],[33,19],[60,14],[31,89],[3,57],[7,66],[-5,63],[6,142],[-13,32],[-26,37],[-52,8],[-29,55],[36,20],[66,-8],[202,-16],[42,19],[88,52],[96,-5],[36,5],[40,-26],[176,-69],[109,-53],[107,-33],[114,-38],[104,-41],[59,-29],[28,-25],[30,-39],[24,-11],[53,-5],[50,11],[97,-22],[63,-45],[112,-51],[76,21],[68,76],[25,42],[43,10],[40,1],[34,19],[65,-26],[67,-10],[18,3],[26,-2],[31,-11],[17,2],[85,59],[53,28],[77,140],[55,8],[14,20],[99,72],[112,56],[68,44],[12,17],[3,31],[50,73],[26,98],[-35,121],[-9,53],[96,102],[87,71],[82,108],[-12,77],[8,18],[18,28],[74,27],[61,-3],[25,1],[59,10],[80,28],[60,50],[86,-36],[121,84],[55,18],[23,1],[65,-55],[53,-20],[116,-74],[210,-128],[118,-124],[73,-4],[15,-12],[133,-76],[10,-1],[23,7],[79,-6],[172,6],[132,51],[35,-8],[35,1],[33,4],[36,62],[60,65],[156,44],[21,-3],[89,-1],[28,12],[26,4],[22,22],[39,20],[36,5],[95,-6],[51,36],[56,9],[18,11],[71,66],[37,120],[1,95],[32,73],[7,41],[22,27],[44,90],[23,31],[-1,6],[103,-41],[68,-4],[32,4],[35,12],[33,31],[107,15],[36,19],[38,14],[40,-2],[142,59],[32,27],[70,27],[100,9],[53,-10],[41,7],[62,-7],[95,-87],[66,-34],[32,-5],[33,4],[18,8],[15,17],[11,117],[-23,76],[1,49],[5,66],[14,36],[17,32],[48,63],[25,15],[87,25],[36,17],[35,37],[49,28],[59,65],[23,14],[34,26],[11,35],[14,28],[21,15],[23,6],[52,6],[37,8],[49,55],[-5,45],[13,64],[20,46],[25,-18],[52,-4],[55,9],[14,-2],[17,-10],[15,-17],[48,-23],[57,-21],[29,-16],[55,10],[26,0],[20,-5],[52,-59],[22,-22],[46,-36],[94,-4],[8,-11],[82,-87],[49,-39],[44,-5],[55,10],[55,29],[63,-44],[69,-47],[57,-5],[32,-1],[33,-6],[45,-17],[99,-70],[13,-7],[19,1],[59,-12],[41,-18],[40,-7],[2,-32],[28,-30],[29,-37],[45,5],[22,-20],[18,8],[23,-10],[38,-8],[17,-32],[27,-14],[16,-64],[34,-68],[14,-22],[12,-29],[119,-99],[34,-31],[24,-37],[91,-73],[36,-18],[58,-51],[76,-47],[53,-20],[27,-30],[29,-24],[59,-38],[47,-14],[26,-20],[13,34],[12,17],[45,36],[14,4],[40,0],[10,6],[40,-1],[33,6],[58,16],[87,-9],[42,-54],[41,-27],[42,-22],[44,13],[165,36],[157,-4],[169,-22],[22,9],[19,30],[26,21],[70,7],[104,-36],[136,-45],[46,-61],[61,-20],[72,-17],[31,4],[58,70],[-5,-414],[209,-294],[98,-165],[98,-98],[30,-182],[-75,-205],[-212,-379],[338,-153],[88,-93],[366,-322],[181,-176],[42,-122],[89,-69],[90,-47],[362,-394],[205,91],[61,140],[181,124],[165,107],[144,49],[71,50],[60,68],[40,32],[37,34],[18,5],[54,-1],[108,-74],[88,6],[142,284],[-91,346],[98,132],[0,156],[128,132],[-60,214],[-18,158],[13,188],[154,33],[163,115],[221,106],[165,130],[275,50],[116,199],[116,172],[213,165],[27,29],[172,42],[57,81],[35,236],[158,-68],[315,-251],[42,-69],[24,-113],[22,-65],[45,-29],[128,-116],[202,-4],[171,-53],[129,-119],[121,59],[166,59],[58,-7],[68,-209],[-50,-93],[14,-210],[49,-35],[36,-215],[49,-69],[-88,-227],[165,12],[139,-29],[80,-90],[102,-85],[54,-8],[484,-59],[174,-59],[139,-148],[27,-119],[211,54],[100,-59],[158,64],[118,-1],[91,-114],[193,100],[177,25],[223,38],[82,70],[110,124],[151,-84],[178,-25],[169,20],[32,44],[186,89],[73,95],[150,169],[109,109],[69,-35],[164,30],[245,-95],[141,-99],[120,-91],[157,-102],[55,-120],[292,-90],[165,65],[279,-35],[220,-85],[128,25],[187,10],[47,77],[53,164],[9,214],[140,147],[107,41],[23,137],[39,12],[50,-23],[63,-25],[82,-85],[204,-51],[167,-2],[118,9],[172,67],[161,-62],[212,-26],[150,-46],[145,-48],[89,-69],[117,41],[107,-105],[127,-63],[85,33],[73,-22],[34,20],[70,30],[49,-24],[153,-114],[66,44],[74,-59],[49,0],[121,97],[73,-55],[39,-69],[38,29],[84,171],[69,64],[24,74],[62,104],[34,262],[98,58],[88,-1],[49,56],[178,-242],[34,-88],[246,-165],[97,-59],[58,-26],[333,-97],[19,12],[344,-73],[331,-49],[242,-72],[168,-84],[69,13],[78,50],[164,18],[110,7],[135,-109],[41,-27],[83,-14],[20,1],[65,-11],[21,0],[53,-32],[49,-42],[53,-7],[54,17],[91,44],[156,-21],[172,-108],[130,43],[182,77],[45,-6],[63,-14],[-48,138],[-5,60],[7,17],[-70,145],[-22,38],[1,16],[-13,36],[18,59],[-19,51],[-2,51],[16,20],[-7,11],[1,13],[12,9],[13,52],[16,12],[9,14],[-5,26],[56,136],[54,19],[132,120],[39,13],[12,18],[24,58],[19,96],[41,70],[-53,92],[-16,16],[-71,39],[-54,40],[-56,50],[-56,83],[-49,60],[-92,112],[-63,79],[-68,86],[-61,72],[-16,54],[8,47],[22,45],[92,37],[154,52],[134,43],[111,41],[-50,40],[-22,44],[3,48],[-2,60],[-36,29],[-4,42],[-28,54],[-24,32],[-34,29],[-139,66],[-92,49],[-57,94],[-18,46],[-3,42],[11,28],[-7,38],[13,43],[-67,60],[-11,29],[-4,38],[-25,17],[-38,37],[-10,52],[9,41],[25,33],[-29,22],[-18,27],[-5,39],[7,59],[17,46],[-5,22],[-25,22],[-80,14],[-32,15],[-13,31],[-8,38],[-40,99],[-3,33],[10,18],[-1,56],[9,66],[11,26],[11,13],[32,26],[-17,69],[-11,66],[-116,68],[-27,56],[9,49],[-11,7],[-38,0],[-37,12],[-581,-58],[-389,249],[136,17],[107,28],[39,34],[60,14],[64,85],[48,80],[167,137],[127,379],[17,125],[75,93],[85,1],[123,27],[184,188],[27,144],[-50,65],[-228,70],[-92,40],[-84,35],[-94,67],[-133,105],[-51,97],[-40,32],[-71,38],[-20,33],[-39,11],[-9,29],[-28,30],[-50,25],[47,28],[17,61],[39,48],[121,13],[32,-8],[-2,30],[110,137],[33,116],[13,54],[6,92],[21,85],[55,83],[56,30],[66,115],[7,65],[39,54],[19,54],[49,31],[96,9],[176,125],[15,50],[42,47],[41,0],[74,34],[6,84],[14,39],[21,24],[13,133],[-39,37],[-80,251],[-87,97],[-78,165],[12,82],[-2,56],[69,155],[14,105],[173,193],[-1,44],[-21,93],[3,69],[-112,101],[-76,41],[-36,75],[-140,65],[-29,67],[-14,95],[-26,29],[30,48],[-77,82],[10,173],[-22,15],[9,120],[69,211],[12,3],[185,176],[185,123],[54,0],[124,72],[29,34],[88,57],[37,-5],[86,43],[20,31],[65,-21],[9,61],[8,121],[-1,64],[-39,271],[-3,72],[45,-6],[26,-6],[36,-2],[64,3],[74,15],[55,14],[45,-1],[101,-26],[49,1],[33,17],[57,3],[63,-7],[33,13],[40,20],[88,36],[40,0],[34,15],[22,19],[59,28],[12,-1],[67,28],[36,18],[13,18],[35,19],[14,13],[29,8],[11,14],[65,50],[29,18],[6,7],[44,36],[33,24],[49,25],[72,52],[60,-17],[18,-26],[49,-22],[18,1],[64,-35],[106,-43],[64,-59],[31,-30],[72,-14],[41,-16],[39,-6],[276,-28],[46,-8],[41,-22],[17,-20],[33,-24],[27,-12],[42,-37],[20,-24],[29,-23],[32,-13],[31,33],[20,-15],[29,-10],[21,-18],[31,-20],[29,-11],[-2,-54],[6,-40],[-2,-92],[22,-70],[9,-34],[16,-100],[64,-4],[102,-18],[136,-67],[361,-134],[49,-13],[53,-4],[137,-49],[80,-79],[35,-9],[167,-47],[58,-23],[142,-235],[13,-5],[58,-5],[61,4],[33,-85],[43,7],[167,20],[76,-56],[62,-44],[137,-35],[27,-2],[39,3],[80,-5],[41,-14],[33,-4],[50,4],[45,-4],[65,-32],[2,-5],[28,4],[65,44],[42,19],[72,27],[42,18],[87,39],[100,84],[23,43],[231,39],[59,25],[55,-31],[233,-51],[194,-60],[67,-49],[163,-63],[72,-74],[41,-111],[139,6],[43,-108],[128,-108],[29,2],[302,-163],[170,-70],[608,7],[203,-113],[153,-47],[212,-46],[134,-337],[261,-234],[245,-155],[240,-75],[159,67],[221,-112],[175,-173],[235,-127],[234,-171],[46,-119],[66,-65],[123,-138],[93,-88],[112,-56],[7,-209],[52,-96],[103,-24],[135,8],[120,-26],[66,-26],[35,-156],[137,-31],[206,-188],[111,-98],[208,-5],[139,63],[126,287],[197,251],[292,156],[19,108],[472,105],[198,227],[270,-160],[172,-317],[375,-285],[17,-291],[271,-292],[146,-45],[472,61],[130,46],[348,197],[80,-27],[140,-141],[80,-42],[127,44],[157,-100],[151,0],[151,-47],[224,4],[69,-60],[119,-49],[47,147],[224,-57],[88,24],[113,-41],[114,14],[-34,-61],[37,-64],[-24,-56],[-78,-51],[88,-140],[211,-1],[187,89],[57,15],[15,0],[106,-25],[80,-20],[50,8],[27,45],[28,66],[45,-32],[67,12],[172,-4],[64,-23],[31,-23],[27,12],[280,-11],[46,45],[51,165],[22,54],[42,73],[38,32],[12,26],[19,11],[36,9],[66,-61],[93,-123],[39,-28],[7,-144],[43,-115],[37,-42],[72,-52],[64,-156],[38,-8],[80,-45],[42,-80],[40,-24],[85,-29],[47,-62],[71,-42],[69,-16],[174,-88],[63,-26],[48,10],[93,4],[89,-19],[80,-40],[26,-32],[22,-91],[2,-160],[-4,-168],[130,-20],[73,-22],[18,-25],[30,-22],[36,-5],[202,-67],[119,-279],[65,-26],[65,-92],[96,-63],[29,-49],[49,-51],[38,-73],[41,-137],[48,-82],[49,-40],[56,-56],[-17,-51],[-34,-135],[-91,-139],[20,-133],[46,-104],[-6,-115],[0,-104],[72,-98],[81,-64],[40,-97],[2,-45],[-23,-50],[-54,-157],[-32,-67],[4,-65],[11,-63],[2,-64],[-1,-44],[31,-29],[39,-5],[24,3],[12,-11],[61,-96],[190,-152],[96,-84],[104,-52],[66,6],[60,-28],[94,-70],[101,-105],[22,-87],[39,-116],[114,-83],[97,-81],[102,-88],[92,-92],[165,-119],[96,-107],[94,-1],[145,-60],[163,10],[100,119],[21,63],[-15,40],[8,24],[76,97],[200,63],[234,131],[42,23],[60,102],[96,1],[47,-36],[10,-39],[89,58],[146,43],[140,-13],[77,10],[22,41],[26,30],[128,46],[41,75],[209,43],[312,-75],[50,98],[110,59],[63,90],[131,37],[111,124],[147,162],[175,-30],[73,-154],[113,-26],[74,-21],[142,18],[89,-137],[170,-2],[212,-263],[67,-185],[35,-161],[-30,-43],[357,123],[37,-33],[20,-35],[12,20],[23,13],[81,13],[120,9],[69,38],[11,134],[51,44],[70,-23],[81,14],[72,0],[102,29],[73,-78],[50,-116],[36,-143],[288,136],[82,59],[76,-1],[200,153],[182,46],[78,-2],[226,-64],[78,-29],[48,2],[104,12],[65,17],[44,-20],[47,-57],[119,58],[139,61],[126,3],[146,151],[171,114],[85,100],[90,14],[276,16],[118,-30],[32,-143],[55,-91],[3,-85],[-1,-42],[49,-59],[107,63],[185,-10],[227,60],[224,-7],[80,-20],[79,-2],[38,7],[28,-169],[2,-72],[-8,-92],[-207,-186],[-47,-107],[14,-91],[-44,-80],[18,-187],[-41,-41],[-20,-40],[-5,-126],[-2,-21],[10,-26],[28,-22],[31,-83],[32,-38],[43,-64],[104,-44],[81,-21],[100,-44],[98,-26],[31,-68],[46,-51],[79,-110],[77,39],[27,-8],[18,1],[57,40],[54,-8],[38,-12],[105,-46],[35,-3],[37,4],[27,-2],[4,5],[33,2],[11,-4],[8,16],[43,26],[14,-2],[19,-64],[57,-51],[24,-41],[105,-99],[170,-68],[182,-205],[64,-172],[-23,-167],[-54,-31],[-29,-178],[-50,-131],[20,-63],[60,-170],[69,-154],[-71,-124],[-30,-101],[-4,-108],[154,-32],[61,36],[53,17],[116,-13],[75,-56],[29,-25],[9,-34],[13,-20],[96,-107],[70,-59],[19,-150],[105,-312],[58,-51],[42,-71],[158,46],[81,-64],[119,-45],[24,-11],[30,-99],[-24,-106],[-2,-100],[38,-130],[-44,-168],[36,-182],[63,-108],[72,-75],[11,-155],[-64,-66],[-4,-40],[21,-83],[-9,-131],[66,-88],[28,-64],[61,-90],[-15,-86],[-3,-86],[45,-165],[21,-187],[163,-178],[132,-82],[75,-32],[-4,-123],[39,-77],[87,-56],[-4,-67],[-45,-135],[-13,-81],[9,-104],[74,-54],[64,-103],[64,-208],[95,-86],[43,-103],[85,-114],[116,44],[72,23],[66,-14],[114,0],[71,15],[52,-10],[135,-89],[88,7],[66,7],[100,-39],[125,95],[38,103],[57,33],[40,31],[81,-8],[38,68],[4,22],[31,10],[61,-10],[77,-21],[73,-2],[74,181],[116,81],[98,116],[8,49],[26,28],[50,23],[14,27],[32,86],[-77,129],[-47,116],[-29,141],[-41,150],[-49,44],[-24,79],[-44,68],[-29,98],[36,158],[-10,84],[-151,107],[70,214],[22,115],[51,47],[35,55],[90,67],[170,207],[36,122],[18,87],[-56,73],[15,80],[42,75],[29,144],[3,200],[404,34],[312,118],[15,-5],[139,-254],[134,-292],[91,-33],[263,-15],[272,55],[35,1],[203,-13],[81,-28],[100,85],[70,146],[75,56],[71,81],[154,90],[168,-71],[80,-78],[140,67],[104,130],[160,43],[63,62],[201,79],[106,66],[45,-56],[85,-47],[191,-101],[111,-77],[50,55],[71,48],[85,-10],[68,-37],[76,-55],[59,-79],[14,-62],[35,-36],[45,-99],[128,-33],[86,-61],[91,15],[44,-56],[22,-281],[114,-59],[82,-331],[208,-228],[40,-17],[27,-17],[22,3],[24,17],[107,-3],[235,-59],[159,-199],[169,-307],[104,-24],[67,16],[43,72],[83,49],[83,74],[28,-3],[31,10],[53,-61],[7,-26],[35,-45],[212,0],[43,9],[31,-20],[12,-24],[50,-32],[34,-4],[34,18],[118,113],[82,-41],[123,-25],[102,0],[65,43],[28,40],[190,108],[135,74],[69,-128],[40,-27],[53,9],[85,-1],[372,-86],[163,-53],[94,-140],[14,-141],[210,-144],[44,-4],[34,-44],[36,-26],[29,0],[28,-27],[21,3],[14,-11],[25,28],[36,81],[48,43],[77,44],[80,-26],[70,10],[106,-26],[83,85],[114,11],[73,5],[61,114],[36,49],[22,9],[84,0],[39,4],[30,-11],[86,-45],[81,-16],[75,-7],[80,-38],[53,-74],[19,-23],[20,10],[96,31],[102,-12],[96,33],[69,-21],[42,-16],[158,-167],[67,-59],[118,-75],[168,-142],[97,-87],[107,-30],[211,43],[77,50],[65,63],[366,-153],[85,6],[62,64],[29,49],[59,86],[50,28],[2,-158],[92,-224],[20,-61],[-135,-180],[-86,-119],[-44,-293],[-135,-222],[-124,40],[-32,-300],[0,-356],[-35,-38],[25,-109],[0,-60],[41,-57],[50,-7],[76,-14],[67,-1],[63,25],[40,35],[57,-47],[108,-20],[237,0],[159,-110],[146,-91],[140,-41],[131,-134],[85,-3],[224,-123],[400,-56],[325,93],[304,79],[95,-174],[77,-342],[47,-35],[26,-16],[23,-36],[-14,-17],[-27,-46],[-8,-5],[-22,4],[-7,-3],[4,-36],[-2,-17],[-7,-13],[-24,-15],[-33,-5],[-20,-9],[-59,-47],[-11,-18],[-10,-34],[-12,-9],[-25,-6],[-13,-10],[-9,-18],[-42,-28],[-31,-16],[-16,-15],[-15,-23],[-45,-14],[-24,-12],[-7,-29],[-30,-19],[-15,0],[-28,9],[-17,-5],[1,-41],[-27,-28],[-20,-5],[-12,-19],[-12,-5],[-18,-22],[-22,0],[-12,6],[-35,-12],[-13,7],[-9,13],[-15,-9],[4,-16],[-11,-21],[-27,-6],[-6,-24],[-21,-23],[0,-9],[-20,-7],[-20,6],[-15,-2],[-29,-24],[-19,8],[-23,33],[-52,-7],[-23,4],[-5,25],[-5,6],[-20,5],[-28,-13],[-14,15],[-14,0],[-9,-13],[-30,-7],[-25,9],[-25,-22],[-15,2],[-17,14],[-13,0],[-29,-10],[-45,13],[-18,0],[-27,-25],[-14,-1],[-34,-15],[-36,16],[-24,-14],[-14,3],[-24,18],[-30,-13],[-22,6],[-18,-13],[-32,1],[-13,-14],[-15,-7],[-22,-22],[-23,-6],[-31,6],[-14,-20],[-29,13],[-14,-5],[-21,-25],[-5,-28],[-16,-18],[-50,-3],[-17,6],[-9,-26],[-40,-14],[-5,-17],[-10,-4],[4,-23],[-62,-51],[-22,-9],[-11,-12],[11,-37],[-14,-10],[-1,-14],[-16,-2],[-10,-24],[-33,-23],[0,-13],[-20,-23],[2,-30],[-21,-12],[5,-11],[-16,-4],[-22,3],[-13,-58],[-25,5],[-18,-11],[-12,-24],[-22,-12],[-25,-2],[-4,-19],[9,-11],[4,-16],[-5,-13],[-41,-19],[-6,-9],[4,-20],[-13,-23],[-14,-34],[-22,-24],[4,-21],[12,-12],[5,-25],[-14,-35],[-17,-17],[-4,-37],[-10,-16],[-27,-17],[-4,-20],[4,-36],[-28,-14],[-35,-55],[-18,-11],[-13,12],[-4,-5],[-24,-69],[18,-44],[13,14],[45,29],[24,9],[5,25],[13,11],[51,-6],[-1,-10],[-12,-8],[-8,-18],[14,-35],[-49,11],[-23,-9],[-42,-29],[-28,-24],[-7,-19],[17,-35],[16,-18],[11,-29],[-8,-41],[8,-68],[-27,-40],[9,-43],[21,-32],[-5,-37],[-16,-10],[-28,-34],[-21,-17],[-11,-32],[5,-17],[-7,-33],[22,-29],[-7,-26],[2,-11],[-10,-26],[-5,-34],[-18,-7],[-8,-16],[1,-42],[18,-18],[1,-10],[-12,-19],[1,-19],[12,-20],[13,-5],[8,-14],[4,-28],[-7,-14],[6,-23],[-1,-24],[-8,-36],[15,-42],[3,-26],[13,-30],[-12,-17],[-16,-34],[-2,-24],[-29,-27],[-3,-9],[4,-23],[-9,-41],[-15,-19],[-4,-26],[6,-36],[14,-164],[-16,-14],[-27,-1],[-48,93],[-8,-5],[-7,-40],[-2,-39],[-16,-42],[-18,-32],[-1,-21],[-45,-32],[-28,-50],[-10,-46],[-5,-150],[45,-160],[-85,-66],[-18,-59],[-49,-16],[-64,27],[-95,-47],[-39,-35],[92,-118],[40,-33],[18,-54],[17,-251],[11,-55],[-24,-171],[6,-211],[4,-191],[45,-120],[50,-37],[31,-106],[19,-65],[8,-91],[-4,-69],[32,-48],[30,-104],[-12,-105],[100,7],[92,43],[50,19],[83,18],[89,76],[41,13],[83,-7],[59,-11],[47,-2],[192,61],[46,-8],[48,-36],[74,-79],[37,-95],[104,-62],[59,-29],[144,-14],[143,-80],[29,-103],[39,-58],[66,0],[79,19],[183,52],[88,17],[69,-7],[202,-49],[464,-135],[314,-48],[603,352],[606,-522],[330,245],[191,-137],[212,-144],[174,-97],[174,-167],[264,-342],[89,-135],[37,-128],[29,-87],[1,-78],[287,-238],[306,-179],[126,247],[9,0],[23,-10],[15,6],[9,11],[27,16],[28,1],[41,-15],[86,-49],[16,-1],[65,-31],[21,-18],[10,-20],[31,-28],[24,-14],[20,-19],[56,-43],[22,2],[51,-34],[56,-40],[15,6],[75,-37],[7,8],[10,-12],[53,-32],[36,-25],[14,5],[67,-39],[19,-15],[35,-38],[20,-48],[12,-19],[18,-18],[25,-34],[0,-23],[2,-149],[42,-291],[10,-73],[33,-63],[23,-4],[54,-17],[24,-2],[8,6],[49,14],[15,1],[42,21],[28,7],[21,-53],[11,-18],[22,-59],[7,-28],[6,-5],[223,-9],[43,146],[58,17],[22,13],[127,-16],[185,-89],[97,0],[50,-39],[78,-71],[98,40],[245,-99],[111,28],[107,23],[291,288],[3,1],[290,268],[59,-25],[6,-1],[146,-44],[1,-13],[103,-277],[164,-346],[18,-30],[5,-59],[0,-151],[-2,-53],[-6,-44],[-20,-99],[-22,-92],[-3,-32],[-17,-78],[-32,-128],[-15,-76],[10,-142],[4,-92],[17,16],[111,-117],[-8,-17],[93,-32],[42,-6],[125,-26],[33,-4],[35,-12],[35,0],[41,-6],[11,-15],[47,-19],[29,2],[30,-21],[29,-32],[49,-40],[4,-21],[10,-19],[56,-29],[12,-12],[29,2],[35,-16],[-2,-6],[-58,-281],[-31,-150],[-19,-89],[-3,-131],[-18,-174],[-32,-89],[-1,-12],[9,-13],[-8,-12],[6,-13],[8,-41],[12,-26],[20,-25],[25,-47],[46,-54],[-3,-36],[59,-97],[34,-60],[31,-32],[10,-33],[16,-21],[1,-45],[25,-48],[4,-16],[-2,-21],[-16,-36],[16,-53],[-9,-108],[-6,-38],[-17,-62],[-6,-55],[-26,-79],[-5,-33],[6,-29],[-1,-97],[22,-101],[18,-50],[25,-128],[10,-11],[45,-26],[14,-23],[48,-60],[40,-34],[8,-23],[0,-28],[-19,-97],[-2,-43],[9,-43],[2,-22],[-11,-94],[5,-60],[28,-45],[21,-55],[29,-30],[48,-84],[25,-42],[12,-13],[15,-39],[24,-23],[23,-9],[15,-22],[7,-20],[14,-9],[8,-20],[-3,-17],[25,-37],[28,-72],[39,-82],[107,-85],[71,-40],[187,-46],[76,-172],[256,-474],[21,-53],[76,-27],[6,-3],[147,-167],[163,63],[194,-299],[48,7],[77,-1],[115,-9],[-1,-4],[115,-119],[25,-37],[10,-26],[63,-26],[59,-13],[59,-7],[72,13],[24,11],[28,-25],[-1,-20],[-9,-22],[-6,-32],[-3,-33],[2,-51],[13,-45],[27,-49],[30,-37],[15,-38],[13,-9],[7,-13],[35,-34],[39,-22],[4,3],[57,134],[56,119],[16,14],[25,54],[138,178],[64,115],[199,-24],[183,85],[85,116],[303,-75],[307,39],[51,11],[23,-8],[88,13],[38,12],[72,18],[268,21],[100,-45],[171,73],[77,59],[96,116],[59,42],[33,-53],[60,17],[192,295],[67,-19],[62,-20],[134,-10],[56,-3],[49,32],[22,-28],[55,-45],[68,-40],[75,-134],[61,139],[36,28],[-15,51],[4,53],[7,118],[-5,106],[17,74],[19,60],[60,72],[1,60],[38,80],[11,32],[98,36],[71,47],[191,114],[181,133],[112,82],[72,43],[24,5],[72,-11],[19,4],[70,37],[73,24],[126,54],[93,18],[62,36],[50,49],[19,10],[-38,40],[-7,26],[-11,66],[-25,85],[-1,102],[-27,96],[3,48],[18,102],[-5,65],[-10,51],[12,53],[2,34],[-5,50],[15,25],[108,78],[38,5],[155,70],[12,44],[1,35],[-6,32],[10,58],[14,50],[6,11],[2,25],[-5,57],[1,36],[52,119],[7,188],[43,115],[36,53],[2,17],[23,67],[35,49],[27,25],[59,46],[49,105],[64,34],[56,52],[63,46],[41,-8],[17,18],[123,53],[89,52],[67,7],[50,2],[57,-7],[44,8],[21,25],[33,32],[53,66],[82,36],[29,20],[53,110],[89,54],[44,17],[87,13],[69,15],[34,22],[105,110],[51,-70],[40,-19],[61,-6],[59,17],[27,14],[125,18],[82,-1],[35,53],[41,97],[137,-140],[161,-45],[69,-49],[65,-56],[146,-146],[46,-49],[101,35],[28,16],[56,43],[78,-89],[32,-28],[24,-32],[51,23],[84,-21],[57,84],[117,-11],[51,-2],[43,-10],[117,-51],[73,-46],[33,-22],[88,-5],[239,61],[33,159],[110,15],[28,12],[124,79],[78,88],[36,49],[27,3],[68,-7],[56,1],[68,5],[38,38],[154,129],[52,41],[60,21],[84,4],[86,11],[88,35],[50,-33],[47,-15],[74,-5],[53,18],[62,61],[100,58],[72,37],[131,29],[160,-6],[30,73],[30,64],[38,50],[25,31],[74,76],[43,81],[19,180],[264,155],[205,-88],[225,-212],[86,-65],[164,48],[135,-103],[147,-33],[41,-100],[89,-132],[172,-87],[68,7],[78,-49],[5,-95],[97,-43],[55,-75],[96,-61],[62,-15],[205,-31],[76,22],[104,44],[48,31],[186,153],[34,107],[40,55],[55,20],[96,-29],[131,4],[132,-82],[186,-175],[15,-59],[9,-67],[10,-92],[12,-35],[33,-18],[10,-43],[44,-26],[58,-90],[27,-20],[39,-65],[85,-44],[56,-7],[81,-17],[41,-13],[59,-46],[44,-11],[62,7],[111,40],[74,-21],[165,-15],[147,59],[44,-8],[29,-105],[2,-79],[8,-113],[21,-128],[39,-134],[48,-94],[56,-63],[160,-67],[186,-81],[200,-111],[78,-41],[164,-23],[40,16],[68,-14],[48,-50],[71,-32],[91,-21],[51,-39],[193,23],[142,26],[158,-23],[143,-29],[113,-20],[105,-107],[18,-58],[84,-73],[63,-45],[163,-87],[186,-17],[106,-49],[64,-70],[50,26],[54,-51],[124,16],[318,-71],[112,72],[186,18],[63,3],[141,25],[217,37],[126,-33],[79,-39],[53,-175],[43,-128],[13,-141],[-57,-323],[-24,-47],[-42,-67],[51,-175],[10,-122],[53,-122],[197,-153],[166,-155],[193,-145],[122,7],[104,16],[86,11],[53,18],[20,-8],[43,-96],[23,-18],[6,-51],[6,-13],[-3,-17],[17,-177],[13,-94],[32,13],[20,-8],[67,-7],[22,-18],[25,-2],[84,-43],[55,-21],[56,-41],[89,-59],[20,-22],[11,-38],[35,-13],[14,-44],[-14,-48],[34,-98],[14,-12],[77,-87],[34,-28],[28,-53],[27,-39],[1,-27],[9,-36],[12,-68],[6,-46],[11,-24],[1,-33],[-3,-41],[6,-33],[30,-48],[96,-89],[49,-12],[-30,-69],[-6,-43],[182,-256],[92,-128],[97,-67],[112,77],[65,-40],[71,49],[43,6],[30,48],[84,49],[24,2],[59,-30],[37,0],[119,59],[130,17],[44,13],[32,-18],[98,-88],[23,-8],[112,1],[98,-84],[134,-65],[55,-131],[65,-48],[177,-87],[30,-11],[136,-8],[73,-66],[191,-58],[50,-44],[215,-42],[114,-6],[39,23],[37,36],[48,31],[38,5],[287,-12],[83,357],[246,60],[44,105],[92,-2],[56,178],[-41,94],[94,75],[6,137],[32,33],[9,72],[-22,67],[9,62],[-8,62],[-9,25],[-9,61],[22,46],[7,69],[45,-44],[57,-27],[258,125],[-1,117],[74,-20],[92,-21],[34,-2],[73,-14],[38,22],[41,19],[42,44],[47,76],[22,-1],[3,-15],[46,-21],[18,-19],[56,-8],[28,24],[38,-6],[32,24],[50,15],[67,3],[34,-23],[26,12],[40,-24],[25,-21],[8,13],[36,-18],[4,-16],[30,2],[29,-17],[256,-235],[59,-44],[114,-48],[204,-77],[82,25],[34,1],[61,-45],[15,-46],[22,-78],[12,-27],[100,15],[50,-17],[41,-6],[28,-10],[32,-21],[78,-23],[20,16],[15,1],[12,-12],[11,-27],[13,-18],[31,-24],[17,-30],[22,-16],[66,6],[83,-21],[24,-12],[62,-2],[42,-20],[3,-21],[16,-7],[18,10],[27,1],[25,-17],[21,-5],[40,6],[25,10],[27,-2],[55,-26],[42,-8],[20,-9],[24,0],[47,35],[95,-4],[36,15],[39,-4],[32,21],[30,46],[28,-4],[43,-20],[27,15],[44,-6],[43,-2],[18,-10],[23,-4],[3,-12],[-41,-35],[10,-49],[33,-20],[20,-26],[13,-1],[12,-24],[44,-4],[38,6],[101,-30],[75,52],[21,12],[94,2],[88,4],[33,-4],[167,-66],[134,54],[201,-104],[3,-54],[137,-65],[116,-34],[45,30],[36,-50],[250,53],[111,-45],[126,10],[49,70],[138,43],[19,298],[-9,55],[-45,44],[0,54],[52,179],[-22,80],[-4,32],[29,126],[-61,75],[28,129],[-85,21],[21,118],[-62,25],[-6,40],[-62,-8],[-53,155],[-32,17],[-79,-31],[-46,-3],[-22,54],[-52,6],[-31,17],[-31,43],[-11,38],[7,73],[-71,16],[-89,122],[52,231],[67,166],[-128,423],[-71,105],[-125,165],[-225,188],[-26,86],[6,39],[16,55],[14,36],[55,42],[41,17],[163,-81],[85,-33],[69,-19],[237,-74],[201,81],[78,16],[20,53],[8,68],[12,126],[19,79],[7,121],[43,438],[2,68],[-112,186],[37,80],[84,61],[21,46],[159,73],[68,20],[41,35],[71,-5],[51,20],[187,8],[27,-12],[134,-77],[4,4],[101,10],[87,11],[165,213],[41,69],[64,32],[109,21],[90,7],[78,72],[33,76],[47,81],[37,23],[77,20],[78,56],[56,63],[55,50],[56,132],[101,58],[52,68],[44,37],[49,30],[62,23],[66,7],[97,33],[87,22],[120,-8],[82,-13],[64,20],[34,35],[33,17],[54,15],[56,66],[76,-59],[149,-27],[129,42],[68,30],[75,23],[61,-5],[36,19],[64,11],[55,-6],[98,-4],[47,15],[16,14],[143,-1],[135,-102],[24,-132],[51,-146],[68,-160],[148,-86],[117,-102],[53,-89],[60,-21],[113,-163],[108,94],[161,-19],[42,-53],[81,40],[255,360],[209,-12],[90,28],[48,11],[1,11],[-11,45],[22,-7],[27,-22],[349,66],[51,7],[19,9],[64,89],[39,46],[13,8],[-6,14],[-73,87],[-3,119],[31,54],[12,79],[49,121],[75,132],[-16,117],[-30,37],[19,34],[24,21],[62,-55],[59,-24],[106,-14],[52,30],[13,229],[65,16],[103,91],[1,63],[78,191],[99,-11],[15,16],[55,38],[69,-58],[81,-31],[23,24],[37,-16],[26,3],[34,-27],[15,25],[31,-18],[64,-22],[142,210],[9,49],[24,31],[8,32],[-7,6],[20,39],[44,56],[46,105],[9,52],[39,101],[16,111],[-38,6],[4,37],[-28,96],[8,70],[32,-8],[81,132],[38,4],[0,18],[10,22],[-10,30],[-3,46],[20,6],[35,48],[16,5],[26,45],[-7,19],[2,11],[32,34],[-6,21],[45,55],[31,-12],[18,-29],[18,-1],[72,-19],[27,-20],[29,-2],[23,5],[157,-55],[55,-53],[146,-68],[93,-70],[18,-8],[41,22],[135,-77],[55,20],[182,49],[7,7],[36,130],[82,196],[5,0],[-6,47],[-1,48],[-16,78],[-20,111],[17,40],[17,17],[10,3],[35,-4],[29,10],[4,6],[3,47],[12,39],[30,30],[73,35],[114,58],[154,-57],[18,-9],[26,-7],[79,-54],[65,-76],[42,-16],[90,-141],[12,-9],[5,-33],[14,-23],[78,-79],[57,2],[100,-33],[99,41],[81,97],[28,6],[156,-30],[291,-117],[81,-118],[23,-13],[186,-78],[236,25],[52,4],[198,-55],[86,-13],[85,-27],[29,44],[32,27],[79,48],[99,40],[35,8],[23,9],[11,43],[-1,49],[8,74],[21,71],[-7,82],[-18,40],[-1,29],[26,61],[37,51],[29,30],[26,32],[19,43],[13,46],[19,41],[4,33],[25,59],[28,44],[20,55],[9,45],[4,48],[4,10],[50,68],[14,15],[16,43],[44,0],[15,3],[30,16],[65,12],[22,22],[18,27],[34,26],[49,54],[29,79],[39,24],[71,38],[44,35],[197,86],[24,24],[14,30],[32,55],[16,56],[4,-2],[12,-59],[19,-47],[20,-32],[55,-64],[35,-50],[46,-45],[129,-97],[136,-67],[131,-96],[103,-120],[186,-333],[63,-82],[30,-69],[27,-58],[87,42],[76,23],[103,43],[166,75],[55,-19],[22,-16],[101,4],[36,-15],[55,34],[3,13],[-11,84],[26,32],[12,5],[-3,171],[356,159],[132,-58],[135,26],[164,-28],[-10,-20],[27,-7],[20,-2],[42,7],[51,-22],[12,-16],[32,0],[28,-34],[-5,-46],[32,-27],[7,-36],[31,-8],[43,2],[35,-47],[65,0],[20,-17],[28,-14],[68,-63],[24,-19],[38,-24],[66,-33],[9,-34],[17,-18],[21,-2],[38,25],[61,74],[16,15],[22,35],[51,52],[31,13],[59,50],[79,35],[49,19],[50,10],[40,70],[102,7],[39,7],[34,-4],[38,25],[33,29],[56,28],[9,37],[45,8],[10,26],[65,52],[95,-12],[43,-46],[96,-47],[43,7],[105,1],[19,15],[19,27],[3,22],[23,-58],[-7,-37],[4,-52],[5,-14],[40,-50],[6,-25],[-1,-15],[2,-42],[-11,-62],[-7,-17],[-22,-28],[-22,-18],[43,-15],[33,-21],[37,-60],[28,-123],[6,-46],[6,-22],[17,-26],[36,-37],[13,-31],[9,-68],[26,-50],[6,-103],[5,-28],[47,-84],[-19,-71],[6,-42],[81,-99],[166,-203],[24,-56],[37,-42],[15,-20],[17,-44],[5,-30],[10,-39],[9,-5],[12,-23],[33,-38],[20,-8],[31,-24],[14,-20],[16,-35],[33,-51],[22,-67],[14,-25],[81,-33],[24,-16],[19,-18],[38,-31],[28,-17],[32,-9],[11,2],[27,19],[14,-13],[28,-38],[30,-25],[39,-17],[58,-45],[0,-54],[-4,-15],[5,-17],[41,-43],[4,-18],[3,-38],[8,-33],[29,-84],[23,-40],[13,-11],[0,-19],[7,-23],[10,-95],[30,2],[33,-2],[22,-6],[27,-13],[26,-5],[25,1],[26,-7],[12,1],[38,-7],[28,-1],[52,10],[7,-23],[3,-24],[2,-81],[26,-103],[-1,-20],[9,-31],[35,-40],[24,-47],[35,-32],[31,-43],[9,-29],[26,-48],[64,-30],[154,-139],[130,-8],[46,11],[55,-6],[65,-29],[24,-1],[92,6],[44,7],[53,-23],[151,-10],[76,49],[61,47],[61,35],[4,10],[-14,48],[-1,32],[3,27],[6,25],[7,11],[19,12],[18,35],[24,30],[23,19],[43,16],[31,19],[16,14],[31,38],[-8,47],[3,21],[21,35],[6,35],[29,57],[27,36],[35,34],[34,26],[20,3],[25,-2],[63,-17],[48,-2],[118,39],[105,61],[18,26],[46,41],[60,26],[23,12],[4,-8],[-6,-13],[17,-55],[27,-54],[60,-49],[20,-12],[97,-40],[75,-12],[144,18],[61,24],[20,3],[39,13],[9,18],[30,5],[80,-16],[21,-12],[45,-3],[15,-10],[36,10],[35,12],[24,1],[20,-32],[18,-44],[13,-8],[32,-41],[10,-8],[63,-1],[68,1],[18,6],[63,-57],[7,-1],[27,15],[39,11],[83,34],[57,9],[35,45],[22,20],[63,15],[15,-3],[26,0],[6,21],[23,13],[30,8],[33,-35],[44,-35],[23,-29],[37,-12],[51,0],[59,26],[69,40],[30,21],[32,16],[39,-2],[53,30],[29,8],[25,-19],[16,-19],[34,-1],[30,-26],[30,-7],[23,3],[39,17],[12,-1],[31,10],[28,-5],[40,3],[22,-7],[12,-13],[44,-26],[57,-14],[19,14],[18,6],[17,-2],[15,19],[771,0],[1049,1],[899,1],[1049,1],[899,1],[900,1],[599,0],[1349,1],[1049,1],[899,1],[1049,1],[900,1],[1049,0],[899,1],[4,859],[-85,1201],[-176,1189],[-266,1169],[-354,1141],[-439,1104],[-165,357],[-118,298],[-28,91],[-142,356],[-97,290],[-50,136],[-90,544],[-266,1170],[-83,294],[-272,848],[-440,1104],[-523,1061],[-602,1008],[-677,951],[-595,717],[-155,171],[-812,814],[-272,244],[44,334],[99,1200],[6,1205],[-9,236],[-59,802],[-9,464],[-62,977],[2,1102],[-8,206],[-14,269],[2,89],[45,340],[99,1200],[6,1204],[-1,21],[-21,439],[17,146],[14,47],[81,301],[45,175],[167,742],[139,809],[53,393],[98,1200],[15,611],[30,145],[190,1186],[98,1200],[15,592],[0,256],[-8,396],[-86,1201],[-83,634],[70,242],[281,1165],[120,679],[18,23],[690,942],[13,20],[604,984],[537,1054],[264,609],[448,534],[93,119],[578,795],[538,458],[825,805],[82,92],[181,-53],[1091,-218],[583,-63],[238,-29],[132,-11],[151,-16],[360,-17],[546,-2],[320,-4],[1107,81],[777,117],[322,64],[55,9],[1080,279],[1054,375],[1023,469],[982,560],[937,646],[884,728],[630,602],[436,442],[762,877],[691,943],[275,445],[98,134],[37,58],[420,663],[6,8],[463,735],[607,710],[692,942],[105,159],[308,106],[556,151],[185,50],[1052,370],[1041,481],[949,538],[30,18],[938,646],[887,728],[827,806],[698,802],[729,607],[176,161],[118,108],[622,523],[104,93],[828,806],[156,163],[142,156],[2083,-602],[874,-441],[449,-210],[1937,-740],[1046,-302],[203,-50],[178,-45],[229,-55],[204,-46],[512,-112],[513,-109],[205,-45],[411,-83],[797,-156],[765,-93],[358,-27],[342,-16],[203,-15],[600,-47],[284,-22],[203,-17],[986,-100],[1113,-19],[10,0],[309,-10],[2100,-1432],[1292,-882],[1838,-1256],[236,-178],[297,-223],[543,-383],[369,-256],[303,-183],[644,-396],[533,-271],[365,-186],[540,-259],[330,-147],[333,-144],[274,-109],[293,-110],[274,-100],[451,-150],[208,-61],[388,-116],[391,-106],[308,-92],[669,-195],[564,-125],[600,-187],[460,-122],[1087,-215],[1100,-123],[338,-19],[662,-1],[151,-2],[374,19],[595,1],[1109,82],[76,10],[815,-499],[1009,-503],[1044,-411],[1072,-315],[1092,-218],[1105,-119],[1110,-19],[1108,81],[1098,181],[1081,279],[303,108],[183,-6],[3018,-3223],[1003,-1073],[488,-599],[802,-833],[862,-758],[706,-371],[758,-495],[917,-513],[689,-328],[615,-256],[390,-144],[280,-96],[2269,-608],[1744,-444],[2592,-721],[2162,-543],[475,-110],[1095,-179],[649,-60],[3149,-204],[2810,-185],[452,-30],[4488,-3488],[155,-118],[573,-410],[892,-603],[364,-237],[179,-102],[239,-150],[252,-144],[218,-110],[92,-52],[150,-69],[296,-148],[641,-475],[656,-416],[331,-191],[1005,-503],[331,-131],[692,-273],[309,-95],[439,-130],[265,-80],[110,-27],[252,-60],[429,-114],[1088,-218],[315,-34],[687,-189],[447,-124],[1226,-338],[884,-245],[788,-218],[897,-249],[598,-165],[1270,-353],[635,-176],[845,-235],[563,-157],[869,-242],[897,-250],[942,-263],[628,-175],[1013,-283],[712,-199],[1014,-284],[580,-163],[125,-30],[244,-73],[210,-50],[909,-175],[36,-5],[465,-63],[637,-57],[741,-23],[677,0],[271,11],[513,43],[3024,111],[2816,101],[3041,112],[448,49],[651,71],[1085,218],[1069,317],[1035,411],[999,503],[1410,800],[741,421],[245,142],[1426,849],[423,261],[422,268],[913,678],[723,590],[2317,1888],[835,739],[827,869],[756,941],[1930,2839],[1915,2846],[1700,2509],[1798,2102],[685,934],[354,575],[263,428],[538,1054],[456,1100],[369,1135],[281,1165],[95,590],[709,4068],[12,69],[37,280],[2960,1908],[253,167],[256,176],[150,107],[2728,1931],[1330,941],[3444,2431],[678,511],[493,416],[1867,1652],[621,352],[941,646],[889,728],[829,806],[765,877],[104,141],[1859,1855],[4840,4817],[226,161],[459,372],[-374,1413],[-249,941],[-457,1726],[-457,1725],[-332,1255],[-457,1724],[-457,1723],[-457,1723],[-457,1722],[-291,1095],[-142,109],[-113,83],[-66,53],[-63,47],[-79,56],[14,29],[10,10],[24,44],[26,28],[61,37],[32,-5],[22,10],[6,63],[4,19],[-5,18],[-16,27],[7,37],[-26,27],[14,12],[4,12],[70,68],[39,46],[97,83],[127,123],[53,46],[9,4],[47,60],[-6,6],[13,30],[18,21],[6,-3],[30,24],[75,-61],[26,53],[12,-11],[9,14],[14,9],[16,30],[29,35],[6,21],[16,25],[26,21],[20,26],[2,41],[25,49],[3,21],[-5,11],[1,29],[9,39],[25,21],[25,87],[31,12],[3,30],[7,27],[8,-6],[30,1],[23,-6],[25,28],[62,17],[54,27],[58,9],[79,88],[-13,5],[-20,15],[-6,10],[4,21],[48,-13],[34,-28],[6,-10],[-3,-29],[-8,-17],[7,-50],[-13,-24],[4,-9],[16,-4],[18,-22],[650,-496],[538,-2028],[579,-2185],[580,-2186],[331,-1249],[579,-2188],[372,-1407],[455,-1720],[497,-1878],[734,616],[857,717],[413,283],[25,20],[87,35],[349,123],[213,96],[186,73],[286,142],[346,158],[384,204],[268,164],[338,191],[151,95],[146,101],[-294,1645],[-236,1326],[-48,262],[-17,87],[-15,87],[-17,88],[-127,698],[-256,1396],[-556,1011],[-536,974],[-218,397],[-800,1456],[-509,926],[-436,793],[-109,199],[-323,596],[-17,166],[-97,567],[-41,243],[-27,83],[-80,249],[-26,83],[-52,178],[-122,330],[-11,176],[-8,34],[-34,170],[-13,68],[7,53],[57,369],[8,72],[10,47],[14,20],[-4,42],[-17,54],[0,28],[18,22],[-10,6],[0,20],[20,80],[-8,36],[-33,74],[-3,30],[3,12],[-13,43],[-32,25],[-33,30],[-21,50],[-27,70],[-5,25],[4,20],[-26,36],[4,27],[-12,18],[-3,32],[-14,22],[6,7],[-28,51],[-7,27],[-107,145],[-33,45],[-23,23],[-14,30],[-40,75],[-6,28],[-16,35],[-42,29],[-37,43],[-16,33],[-3,22],[25,39],[-31,69],[-9,42],[-3,29],[7,15],[-8,23],[2,49],[3,11],[-8,66],[-16,54],[-9,16],[-3,35],[-8,35],[-14,45],[-12,8],[-6,36],[-6,18],[-17,76],[-31,82],[-26,52],[-4,38],[-17,37],[5,18],[-9,56],[0,38],[3,22],[-12,53],[16,16],[-3,41],[2,35],[-18,20],[-5,27],[1,23],[-16,25],[-31,104],[7,17],[-9,26],[-19,24],[-41,43],[-13,27],[2,15],[-41,118],[-10,38],[-2,26],[7,39],[6,10],[-2,42],[-8,70],[3,26],[-9,87],[-4,62],[1,47],[-3,23],[-22,58],[-12,23],[3,15],[-5,52],[-33,17],[-24,7],[-9,47],[-17,55],[-5,33],[-17,28],[-5,20],[-12,20],[2,13],[-6,10],[-1,20],[7,54],[-2,8],[-4,70],[7,18],[18,19],[0,30],[4,7],[31,26],[4,12],[-41,25],[-205,197],[-47,13],[-71,25],[-36,9],[-42,17],[-18,88],[7,21],[-9,14],[-8,70],[-13,34],[-59,40],[-13,14],[-8,46],[4,48],[-14,42],[-4,27],[-16,65],[4,54],[-4,54],[-7,20],[-31,112],[1,81],[18,188],[-2,28],[-1,122],[-4,41],[4,156],[136,-10],[11,12],[36,58],[46,68],[13,44],[0,18],[-18,43],[-132,200],[10,34],[136,186],[41,115],[54,-4],[22,-5],[19,0],[26,23],[101,106],[47,27],[29,51],[18,23],[12,8],[30,29],[13,4],[-8,25],[94,42],[-19,39],[6,5],[-32,67],[-17,22],[28,29],[11,29],[11,2],[20,-12],[10,3],[6,31],[-5,30],[20,3],[22,-17],[29,3],[22,21],[-10,19],[-8,0],[-21,28],[-16,9],[14,12],[-17,44],[1,22],[-3,24],[7,28],[13,-8],[1,-21],[14,-1],[20,-10],[14,1],[4,-18],[-3,-16],[8,-33],[13,-17],[47,28],[24,-9],[8,-14],[4,-20],[22,-30],[18,-49],[19,9],[17,-23],[36,2],[7,15],[9,3],[1,14],[14,8],[-10,24],[9,5],[10,19],[13,6],[30,45],[-7,39],[12,44],[18,25],[3,12],[15,16],[42,5],[24,29],[29,7],[20,-6],[20,0],[30,-10],[38,-8],[41,-1],[67,-11],[22,22],[88,101],[39,50],[74,118],[21,5],[40,-9],[24,8],[12,19],[10,5],[27,-2],[21,-13],[29,-8],[13,60],[17,23],[69,72],[77,53],[55,6],[19,6],[25,-2],[39,13],[31,-9],[31,2],[42,26],[22,1],[33,8],[63,6],[38,10],[39,-5],[44,-10],[45,-18],[18,-4],[26,-1],[33,4],[7,9],[6,36],[10,11],[16,1],[23,10],[40,28],[19,28],[12,25],[18,7],[30,2],[48,14],[20,11],[74,15],[48,32],[35,17],[25,17],[14,21],[45,54],[32,29],[7,10],[37,80],[28,101],[-1,65],[12,93],[0,22],[-50,106],[-3,43],[-8,31],[7,23],[7,41],[-20,16],[-2,12],[41,97],[13,49],[-16,39],[-15,65],[-27,60],[-12,50],[-19,46],[-14,13],[-6,23],[-12,28],[-8,28],[-9,43],[-17,28],[-20,21],[-17,36],[-29,37],[-9,27],[13,34],[11,13],[2,19],[14,16],[14,3],[16,30],[14,10],[16,1],[40,15],[11,10],[20,31],[4,19],[26,28],[32,14],[26,3],[40,40],[6,14],[17,1],[15,11],[23,9],[26,0],[20,12],[14,15],[28,24],[7,18],[33,11],[5,13],[-1,54],[-6,16],[-4,33],[-9,25],[-4,24],[2,20],[-15,61],[7,14],[22,29],[11,24],[11,34],[0,23],[7,14],[-2,18],[6,5],[36,-31],[23,-5],[26,11],[17,1],[15,14],[2,35],[-2,42],[-8,34],[-16,30],[-6,47],[-22,59],[-17,29],[14,39],[42,25],[5,29],[10,22],[19,17],[4,10],[7,52],[8,10],[16,6],[26,0],[9,6],[36,41],[5,26],[2,53],[-5,22],[-15,25],[-10,24],[-21,33],[-35,13],[-20,0],[-20,-13],[-22,6],[3,39],[-2,26],[-24,43],[3,22],[-22,52],[-13,18],[-14,7],[-5,17],[-15,21],[-24,25],[-12,7],[-24,-8],[-10,10],[2,31],[-16,24],[-9,28],[-17,12],[2,11],[23,9],[32,-11],[16,29],[31,15],[24,15],[29,4],[26,-5],[9,4],[-4,16],[-41,45],[5,39],[-12,27],[-22,16],[-1,9],[10,7],[22,2],[8,6],[-28,55],[17,-13],[55,-32],[13,1],[10,14],[13,10],[20,-5],[17,-39],[13,-11],[9,0],[16,17],[26,-19],[27,-5],[35,-25],[15,-17],[5,-17],[6,12],[0,18],[-14,20],[-27,26],[7,26],[-11,33],[4,40],[16,17],[10,4],[15,-7],[19,13],[28,34],[34,25],[33,21],[29,21],[13,5],[29,-20],[10,-15],[27,-19],[27,-28],[31,-22],[4,-14],[14,-4],[16,62],[22,63],[17,37],[36,43],[12,35],[21,71],[-13,27],[45,88],[54,32],[39,10],[45,32],[31,3],[27,12],[18,3],[30,-9],[27,-12],[18,-2],[63,2],[49,14],[10,9],[39,49],[17,7],[27,1],[25,-5],[24,-13],[20,-6],[29,2],[24,17],[7,12],[13,38],[15,12],[11,18],[20,16],[91,-7],[22,25],[7,4],[27,0],[33,-34],[34,-6],[19,-14],[39,4],[18,-15],[21,-29],[40,-3],[21,-15],[14,-2],[23,8],[22,-16],[11,-3],[29,9],[18,-4],[16,-20],[5,-26],[11,-13],[26,3],[8,-7],[41,-64],[11,-12],[8,7],[2,20],[-6,40],[11,40],[16,15],[26,34],[16,12],[51,50],[39,32],[49,36],[40,25],[28,13],[30,17],[28,22],[19,24],[36,32],[66,61],[38,10],[13,-1],[20,7],[34,23],[112,50],[46,17],[18,21],[30,50],[25,22],[4,11],[44,26],[36,31],[39,47],[45,19],[40,29],[37,31],[13,24],[20,12],[-4,33],[29,48],[11,67],[65,21],[86,24],[31,-11],[27,18],[45,26],[45,20],[6,23],[-6,10],[0,19],[41,90],[82,89],[42,49],[17,3],[78,4],[37,1],[56,5],[49,-6],[36,-7],[19,-9],[47,1],[85,-22],[25,20],[16,28],[-11,2],[6,10],[-15,62],[13,40],[29,14],[50,17],[21,11],[0,20],[-29,28],[26,129],[15,69],[7,39],[11,43],[4,28],[8,121],[1,40],[-5,73],[-13,24],[3,11],[22,13],[81,22],[22,11],[25,22],[30,32],[26,10],[59,1],[30,-11],[32,-5],[30,-18],[14,25],[27,22],[8,32],[10,9],[6,21],[-2,25],[-10,33],[-14,12],[0,13],[14,18],[2,24],[-15,41],[-1,34],[12,27],[-11,33],[-24,38],[25,-24],[0,11],[11,48],[-4,28],[4,16],[12,15],[30,20],[33,33],[50,31],[8,12],[-2,33],[14,31],[37,50],[30,33],[12,21],[31,32],[28,45],[28,37],[16,9],[-17,7],[-37,35],[-2,22],[-16,48],[8,38],[-27,49],[-6,20],[-1,44],[-14,56],[-6,55],[2,24],[-3,28],[-15,56],[-1,27],[14,60],[-2,16],[-18,18],[-49,43],[-16,11],[-18,28],[-14,39],[-12,20],[-8,24],[-1,20],[11,64],[16,63],[-3,32],[-14,22],[-26,24],[-45,64],[-14,35],[-12,23],[-17,48],[-15,40],[-9,52],[-4,55],[-9,28],[-16,32],[-10,35],[0,16],[18,40],[3,20],[14,40],[34,60],[9,32],[-7,20],[-11,18],[-20,21],[-33,39],[-15,11],[-8,26],[-1,16],[7,21],[23,31],[3,22],[-13,23],[-4,26],[13,59],[2,52],[-10,65],[1,38],[6,25],[25,73],[8,13],[11,7],[23,4],[46,-8],[18,6],[9,16],[8,46],[2,45],[7,23],[17,20],[15,9],[74,-12],[85,-27],[40,-19],[31,-7],[22,-11],[23,-17],[28,-16],[22,-6],[36,2],[19,-7],[29,-15],[35,-7],[21,4],[1,6],[-9,49],[6,39],[16,29],[24,61],[8,13],[19,23],[28,22],[15,29],[13,17],[36,27],[31,9],[14,10],[18,20],[25,23],[47,49],[45,26],[17,24],[13,30],[10,12],[15,7],[13,13],[42,27],[56,16],[35,23],[18,18],[21,9],[58,36],[42,42],[41,38],[54,36],[23,7],[33,3],[20,-3],[44,-16],[55,-37],[18,7],[57,31],[38,30],[53,21],[32,5],[34,-5],[33,-15],[11,3],[14,19],[18,33],[19,23],[6,26],[23,26],[27,50],[10,44],[-3,69],[-2,7],[2,53],[5,57],[8,51],[-12,72],[-16,57],[1,18],[29,88],[11,62],[-3,37],[25,47],[6,19],[30,45],[8,26],[-2,34],[8,-5],[4,16],[6,-2],[-3,31],[10,9],[-5,23],[10,0],[21,26],[32,58],[7,16],[10,-1],[22,34],[-3,12],[9,14],[4,35],[25,36],[29,20],[47,52],[77,83],[49,56],[14,10],[30,-10],[12,3],[16,17],[-28,67],[-14,51],[86,189],[40,559],[17,248],[45,165],[97,262],[-21,114],[-182,326],[-20,30],[-89,103],[-759,929],[-246,433],[-103,118],[-241,256],[-35,26],[-67,26],[-154,117],[-226,69],[-53,87],[-19,33],[-63,120],[-14,64],[-9,55],[-5,61],[-7,29],[-8,76],[-17,28],[-14,31],[-4,89],[-13,45],[-2,17],[-28,34],[-36,37],[-26,13],[-24,29],[-12,28],[-21,34],[9,1],[-31,13],[19,210],[20,13],[32,39],[9,16],[41,49],[6,-1],[14,28],[38,34],[45,29],[14,22],[25,26],[19,12],[6,14],[17,2],[26,24],[34,24],[51,123],[21,20],[21,27],[28,45],[7,27],[6,46],[134,361],[-163,298],[-37,39],[-87,70],[-51,27],[-44,28],[0,342],[66,66],[23,99],[13,21],[354,251],[97,394],[77,297],[-488,312],[-65,-49],[-58,-36],[-43,-24],[-40,-15],[-262,31],[-61,21],[-67,27],[-249,47],[-286,37],[-256,21],[-329,-125],[-15,1],[-72,-11],[-314,-117],[39,-127],[20,-71],[-120,-166],[111,-144],[-5,-25],[-176,-307],[-29,12],[-25,2],[-16,-12],[-15,-57],[25,-74],[34,-109],[0,-36],[-9,-52],[-21,-57],[-64,-94],[-55,-145],[-33,-41],[-114,-119],[-11,-75],[-15,-60],[-69,-129],[-75,-11],[-185,22],[-65,21],[-71,5],[-96,-17],[-133,13],[-113,-5],[-82,9],[-56,29],[-54,37],[-100,56],[-33,60],[-21,9],[-86,5],[-59,-15],[-44,-34],[-31,-17],[-55,-45],[-102,-62],[-219,12],[-79,64],[-59,27],[-186,16],[-32,25],[-21,8],[-57,62],[-24,5],[-47,-13],[-29,-27],[-41,-59],[-35,-34],[-25,-5],[-44,23],[-129,100],[-38,25],[-27,58],[-12,10],[-122,51],[-14,24],[-15,1],[-8,-23],[5,-33],[53,-127],[14,-23],[13,-37],[-2,-42],[-17,-26],[-122,-99],[-13,-8],[-43,-57],[-7,-25],[-16,-2],[-41,29],[-24,5],[-22,-5],[-20,-19],[-12,-61],[-26,-28],[-65,-13],[-15,1],[-52,22],[-37,7],[19,-25],[34,-42],[-1,-10],[-12,-2],[-23,20],[-40,6],[-35,9],[-11,-4],[66,-26],[-4,-7],[-93,3],[-37,-5],[-98,2],[41,-27],[23,-23],[-28,-7],[-79,5],[-9,-6],[26,-18],[-1,-10],[-31,-4],[3,-13],[-7,-9],[-18,4],[-34,45],[-36,25],[-27,2],[-31,-8],[-32,-20],[-94,-43],[-49,0],[-85,6],[-57,10],[-51,13],[-25,41],[-43,9],[-47,30],[-38,32],[-26,67],[-19,-3],[-36,-43],[-56,-22],[-70,-41],[-26,-28],[-22,-63],[-4,-23],[4,-26],[-2,-39],[-32,-66],[-66,-84],[-21,-44],[-6,-52],[-9,-48],[-26,-27],[-57,-36],[-31,-8],[-49,-3],[-53,-16],[-1,-9],[43,0],[0,-7],[-47,-16],[8,-23],[-68,-22],[-56,4],[-66,57],[-37,51],[-15,4],[-55,-55],[-44,-23],[-25,2],[-8,7],[-45,71],[-91,117],[-14,72],[-6,11],[-60,10],[-78,25],[-32,29],[-29,86],[-20,21],[-18,1],[-38,-20],[-24,-34],[-32,-27],[-61,10],[-45,-4],[-74,-66],[-28,-14],[-50,-1],[-68,-15],[-156,-71],[-59,-22],[-42,-23],[-10,-25],[-34,-102],[-41,-66],[-38,-40],[-10,-15],[-58,-46],[-51,-25],[-22,-18],[-129,-64],[-38,-26],[-20,-25],[-15,-33],[-33,3],[-21,31],[-21,4],[-33,-7],[-24,-40],[-18,-7],[-16,-14],[-31,1],[-3,-11],[-55,-3],[-66,-32],[-21,17],[-33,66],[-81,-26],[-26,-54],[-88,-2],[-23,7],[-57,-50],[-63,-67],[-22,-16],[-14,2],[-15,-24],[-51,-55],[-257,-155],[-27,-7],[-73,-80],[-71,-16],[-20,5],[-81,63],[-47,36],[-107,-10],[-156,62],[-55,53],[-81,-14],[-48,9],[-74,-53],[-188,-7],[-137,54],[-181,50],[-8,1],[-64,43],[-54,14],[-81,-23],[-1,-198],[0,-101],[-12,-35],[8,-86],[-25,-68],[-98,-182],[3,-124],[74,-188],[-25,-99],[27,-157],[-79,-9],[-45,-50],[-71,-18],[-58,22],[-28,16],[-49,34],[-37,70],[-54,57],[-78,7],[-50,90],[-30,-20],[-28,26],[-25,46],[-3,42],[1,21],[9,15],[-83,60],[-39,1],[-39,9],[-46,31],[-43,6],[-87,4],[-63,-76],[-46,-31],[-42,-9],[-34,4],[-58,50],[-26,30],[-37,16],[-41,33],[-68,66],[-71,59],[-23,29],[-30,30],[-61,71],[-53,19],[-40,38],[-29,18],[-29,25],[-23,34],[-14,5],[-29,-22],[-23,-34],[-30,-8],[-55,14],[-30,21],[-33,-4],[-28,-32],[-21,-30],[-49,23],[-70,-49],[-32,-25],[-15,-33],[-26,-13],[-12,14],[-19,0],[-37,-43],[-38,-9],[-81,-43],[-52,-21],[-74,-50],[-42,-13],[-34,-24],[-16,-31],[-5,-16],[-19,-18],[-75,-25],[-32,-8],[-16,-11],[-45,-45],[-9,-13],[-96,-46],[-65,-33],[-25,6],[-42,39],[-22,10],[-67,16],[-16,-1],[-43,-30],[-37,-11],[-37,-17],[-59,-20],[-78,-18],[-50,-6],[-18,6],[-44,38],[-7,23],[-9,61],[-1,94],[-12,79],[-27,69],[-24,31],[-13,60],[-18,118],[-18,57],[-19,31],[-17,10],[-40,7],[-31,24],[-7,12],[-28,69],[1,72],[-5,18],[-24,34],[4,45],[-3,20],[-29,39],[-10,36],[-7,41],[-11,33],[-29,28],[-13,41],[-13,10],[-38,164],[-13,38],[-21,34],[-10,10],[-62,21],[43,69],[4,21],[-2,40],[-10,33],[18,73],[-33,100],[-1,30],[-7,23],[-9,14],[1,17],[-13,37],[13,44],[-16,31],[-13,37],[-10,37],[-20,29],[-16,5],[-35,1],[-62,49],[-35,2],[-50,-47],[-61,4],[-92,-36],[-103,-3],[-29,3],[-53,-42],[-35,-39],[-23,-9],[-64,33],[-48,18],[-38,16],[-36,7],[-16,-1],[-40,-22],[-50,2],[-24,-32],[-70,-28],[-15,-1],[-15,9],[-23,-7],[-47,-29],[-4,-15],[-31,-9],[-124,17],[-76,5],[-26,13],[-23,42],[-55,57],[-53,22],[-58,52],[-11,38],[-8,10],[-77,58],[-39,24],[-8,-13],[-20,-103],[-34,-53],[-37,-63],[-27,-23],[-69,49],[-119,90],[-34,19],[-29,-28],[-26,-41],[-33,-25],[-37,-11],[-82,-1],[-70,-27],[-56,5],[-57,-28],[-15,7],[-42,67],[-26,26],[-18,6],[-19,-2],[-58,-20],[-51,6],[-19,0],[-36,-11],[-74,4],[-36,-39],[-23,-29],[-9,-20],[-9,-39],[0,-17],[-20,-27],[-14,-36],[-98,-62],[-56,-48],[-35,1],[-64,6],[-15,7],[-46,61],[-43,89],[-22,29],[-35,23],[-32,17],[-89,61],[-34,33],[-6,38],[-44,75],[-36,44],[-21,8],[-56,5],[-53,-13],[-60,13],[-32,10],[-40,6],[-94,10],[-124,-7],[-19,59],[-27,49],[-50,60],[-27,72],[-41,162],[-56,53],[-26,31],[-19,31],[-25,25],[-55,3],[-48,-8],[-30,5],[-53,13],[-37,17],[-28,47],[-31,24],[-42,38],[-53,52],[-39,117],[-19,89],[-1,42],[-47,87],[-15,20],[-51,37],[-15,36],[-3,23],[10,23],[-14,81],[-2,20],[-8,19],[-35,47],[-11,39],[-21,31],[-18,35],[15,41],[11,14],[5,51],[-7,14],[16,18],[-19,39],[-3,35],[8,23],[-20,8],[-46,54],[-16,35],[-64,37],[-57,-6],[-66,25],[-60,47],[-49,63],[-13,11],[-19,2],[-11,-10],[3,-59],[-70,-24],[4,-43],[-30,-113],[-11,-38],[-18,-24],[-75,-47],[-25,-24],[-41,-60],[-38,-68],[-28,-14],[-31,-1],[-53,19],[-49,31],[-33,15],[-109,-34],[-75,-24],[-50,1],[-21,8],[-30,17],[-14,33],[-4,61],[-18,13],[-33,16],[-59,19],[-16,20],[-10,62],[-14,32],[-44,65],[4,46],[-18,57],[-4,44],[-20,4],[-17,-7],[-20,10],[-37,47],[-17,12],[-46,26],[-11,17],[-15,7],[-18,1],[-10,8],[-93,66],[-13,6],[-63,42],[-86,51],[7,109],[-6,59],[5,45],[0,18],[-51,152],[-81,89],[-53,77],[-21,29],[-49,-32],[-56,-25],[-38,-6],[-51,-1],[-49,19],[-33,19],[-55,27],[-18,36],[3,63],[12,38],[6,52],[-21,58],[-22,33],[-17,20],[-42,11],[-7,8],[-6,78],[-24,32],[-35,56],[1,22],[-11,18],[-33,84],[-35,57],[2,252],[4,32],[-19,34],[-39,15],[-41,22],[-28,5],[-41,-33],[-30,-40],[-39,-44],[-40,-53],[-35,-17],[-67,-5],[-16,-12],[-20,-32],[-32,-27],[-81,-34],[-12,1],[-32,90],[-83,119],[-38,22],[-47,42],[-76,47],[-43,9],[-37,-7],[-15,0],[-66,37],[-60,11],[-32,38],[-25,44],[5,87],[4,30],[-37,86],[-26,34],[-38,29],[-46,58],[-36,2],[-26,-21],[-81,-83],[-79,-54],[-60,-77],[-39,-40],[-63,-42],[-33,-11],[-49,-1],[-18,8],[-116,-38],[-58,-37],[-56,-73],[-24,-22],[-5,-37],[11,-39],[-2,-8],[-180,18],[-56,-13],[-24,8],[-41,32],[-60,23],[-87,90],[-41,28],[-35,74],[-40,49],[-77,53],[-42,16],[-45,26],[-55,48],[-89,58],[-88,124],[-27,41],[-22,20],[-42,68],[-33,24],[-2,7],[-40,37],[-18,-5],[-26,5],[-29,28],[-13,21],[-18,-4],[-65,-4],[-50,25],[-63,92],[-11,31],[-11,20],[-4,41],[-27,-13],[-23,21],[-52,33],[-19,33],[-46,42],[-37,15],[-48,72],[-12,3],[-63,-38],[-12,-2],[-30,15],[-4,-10],[-12,-5],[-9,7],[-30,4],[-75,41],[-61,1],[-36,15],[-73,50],[-54,23],[-29,31],[-21,63],[-21,5],[-20,-19],[-12,-5],[-18,4],[-44,42],[-20,27],[-17,11],[-44,-59],[-24,-9],[-86,9],[-43,-7],[-10,27],[-24,12],[-35,10],[-91,-72],[-12,1],[-78,106],[-28,155],[10,64],[-5,23],[-48,59],[-23,36],[-10,40],[-11,27],[-62,43],[-20,27],[-17,73],[-92,9],[-54,10],[-41,25],[-63,24],[-36,18],[-49,65],[-23,18],[-82,14],[-35,29],[-30,5],[-16,-9],[-25,-2],[-59,27],[-95,9],[-57,23],[-40,2],[-59,-25],[-41,-27],[-34,-60],[-48,-36],[-58,-68],[-14,-26],[-5,-66],[21,-23],[-10,-22],[-45,-39],[-85,-47],[-43,-14],[-28,12],[-22,30],[-59,37],[-38,43],[-35,33],[-60,30],[-28,16],[-20,-14],[-85,-40],[-133,-18],[-44,-20],[-85,-70],[-50,-10],[-41,-23],[-84,-24],[-44,-28],[-36,-40],[-47,-13],[-98,-63],[-29,-24],[-44,-29],[-31,2],[-44,32],[-61,3],[-29,21],[-81,35],[-38,28],[-15,21],[-84,138],[-2,20],[11,81],[-3,55],[-26,90],[-11,26],[-25,2],[-131,-57],[-12,0],[-82,64],[-35,38],[-25,51],[-19,92],[-15,11],[-39,8],[-28,-8],[-20,-15],[-17,-38],[-71,-67],[-20,-9],[-3,-12],[-122,0],[-74,47],[-32,32],[-29,83],[-47,41],[-68,30],[-68,5],[-77,-22],[-6,4],[-23,86],[-45,74],[-40,55],[-19,53],[-39,64],[-32,84],[-9,75],[-4,23],[-30,9],[-30,15],[-70,66],[-28,8],[-22,89],[3,59],[18,41],[7,35],[-8,14],[-44,32],[-29,28],[-48,70],[-11,37],[3,49],[-26,34],[-4,40],[-14,23],[-14,10],[-20,31],[-3,13],[20,39],[4,19],[-12,53],[2,84],[7,23],[30,34],[3,19],[-1,29],[3,62],[23,73],[9,52],[-8,46],[-29,73],[0,62],[-4,30],[-20,37],[-22,105],[-19,40],[-49,52],[0,17],[23,24],[23,39],[5,25],[-24,67],[-18,121],[3,52],[15,55],[23,24],[17,25],[26,109],[6,49],[-7,33],[-32,34],[-45,84],[-40,119],[-8,18],[-3,29],[1,26],[14,22],[5,21],[-7,46],[12,21],[26,10],[22,21],[-15,11],[-19,8],[-48,11],[-46,36],[-40,41],[-16,12],[-24,9],[-12,15],[-77,89],[-23,20],[-56,13],[-62,36],[-134,25],[-40,19],[-46,51],[-35,65],[-18,50],[-16,-3],[-35,-16],[-17,0],[-31,13],[-32,-38],[-19,-14],[-21,-7],[-18,-1],[0,-30],[-22,-19],[-62,-6],[-35,-26],[-21,-3],[-22,-11],[-13,-15],[-5,-40],[-90,-13],[-19,-24],[-34,88],[-18,19],[-31,17],[-24,28],[-16,40],[-21,39],[37,61],[2,20],[-7,37],[32,56],[30,31],[5,45],[-1,37],[29,37],[3,85],[-14,28],[20,27],[-58,73],[-27,28],[-44,2],[-31,20],[-29,28],[-15,5],[-37,7],[-16,-11],[-20,-37],[-57,-22],[-32,-2],[-4,-6],[-14,-61],[-36,-5],[-34,13],[-42,29],[-17,8],[-38,-6],[-51,19],[-23,34],[-56,31],[-23,36],[-21,42],[-35,47],[-10,25],[3,19],[31,12],[16,11],[6,35],[-14,57],[7,21],[39,42],[25,48],[19,43],[9,34],[-12,42],[-9,19],[-8,109],[-11,58],[9,49],[21,25],[26,47],[34,13],[10,8],[10,20],[-5,47],[25,31],[17,36],[-15,43],[1,37],[7,37],[-22,52],[-5,22],[-9,17],[-60,46],[-26,32],[-14,41],[-10,18],[-62,31],[-9,14],[-32,20],[-26,10],[-37,34],[-16,25],[-31,71],[-15,59],[-2,22],[7,41],[0,18],[7,16],[-12,33],[-24,33],[-68,6],[-38,1],[-35,7],[-21,10],[-23,28],[-57,11],[-66,17],[-54,41],[-25,39],[-40,83],[-13,43],[-9,16],[-58,43],[-26,25],[-80,-6],[-79,10],[-9,35],[-13,86],[-20,45],[-19,39],[-5,41],[0,46],[-95,85],[-18,11],[-54,9],[-21,15],[-50,30],[-35,16],[-27,33],[-63,25],[-37,9],[-34,18],[-25,22],[-20,9],[-25,26],[-11,37],[-5,38],[4,38],[14,33],[1,24],[-4,24],[-14,33],[-7,32],[-1,22],[-9,23],[-17,29],[0,42],[-4,17],[-58,78],[-10,23],[-6,22],[7,68],[-16,15],[-68,33],[-26,33],[-21,53],[-12,55],[-8,60],[-13,59],[-6,13],[29,14],[18,33],[28,28],[2,52],[23,41],[2,19],[-26,49],[11,31],[1,38],[-6,18],[-12,16],[2,17],[18,17],[1,12],[-17,15],[-19,35],[-1,11],[-29,5],[-38,11],[-17,8],[-60,62],[-16,12],[-16,5],[-40,0],[-16,8],[-35,5],[-49,13],[-33,11],[-18,0],[-86,-17],[-17,3],[-46,31],[-33,39],[-26,61],[-24,48],[-11,46],[-40,40],[-52,17],[-14,9],[-51,51],[-19,13],[-35,13],[-39,6],[-33,-21],[-31,-15],[-79,-6],[-35,-14],[-27,-14],[-17,-2],[-12,6],[-23,48],[-16,12],[-20,5],[-37,3],[-43,15],[-47,31],[-35,16],[-34,13],[-38,-6],[-29,28],[-38,1],[-18,12],[-7,12],[-25,3],[-32,-1],[-23,26],[-20,8],[-16,33],[-19,-8],[-13,-13],[-17,-2],[-28,21],[-12,15],[4,78],[-18,104],[1,36],[-3,76],[14,30],[19,33],[6,27],[0,28],[41,28],[35,22],[45,31],[44,0],[41,-3],[20,8],[82,74],[44,43],[26,65],[25,70],[0,22],[12,38],[3,22],[-4,40],[11,50],[29,99],[-33,45],[-36,115],[-19,96],[-8,56],[3,22],[-6,44],[0,18],[7,22],[13,10],[9,38],[2,21],[11,53],[3,34],[-4,44],[9,34],[-20,100],[-6,81],[6,36],[-7,24],[-31,38],[-7,30],[10,40],[1,40],[11,30],[21,40],[4,38],[-4,47],[1,26],[12,65],[12,26],[41,74],[-2,24],[-8,31],[-25,47],[-27,43],[-44,45],[-13,34],[-10,44],[2,38],[2,84],[10,22],[7,113],[6,22],[85,90],[20,43],[17,27],[0,22],[19,47],[-23,59],[-7,57],[-42,70],[-87,104],[-15,30],[-3,15],[9,33],[-3,21],[-16,39],[20,72],[1,12],[-6,59],[-31,91],[-11,98],[-17,156],[-13,68],[-12,40],[18,95],[108,-8],[96,-4],[20,0],[42,73],[30,28],[21,-1],[64,-69],[34,-54],[9,-4],[64,39],[57,38],[546,353],[108,72],[22,2],[43,-45],[9,-14],[73,-76],[59,-92],[13,-56],[17,-17],[40,-5],[39,-22],[38,-38],[9,6],[30,47],[43,46],[41,21],[77,15],[40,-3],[58,-13],[15,2],[45,37],[60,38],[1,23],[-22,54],[-17,82],[1,72],[36,108],[26,15],[70,-1],[30,-18],[58,0],[109,-95],[63,-26],[40,-6],[46,7],[64,-1],[42,-18],[30,-21],[45,-16],[22,2],[19,18],[8,75],[16,25],[32,33],[2,23],[-21,18],[-67,62],[-30,22],[-41,38],[-14,30],[-19,31],[-36,18],[-71,4],[-33,12],[-38,32],[-43,12],[-14,21],[3,51],[-25,168],[-54,78],[-13,40],[-38,51],[-5,23],[-14,27],[-21,8],[-55,3],[-40,-1],[-32,15],[-20,31],[-18,59],[-18,21],[-42,16],[-15,13],[-51,13],[-56,55],[-69,21],[-92,61],[-11,30],[-9,13],[-29,19],[-67,19],[-33,15],[-33,6],[-19,-2],[-21,4],[-29,31],[-39,25],[-20,18],[-14,40],[-66,72],[-120,56],[-44,38],[-23,31],[-44,35],[-43,51],[-40,68],[1,16],[22,21],[14,26],[5,42],[-19,33],[-1,59],[-28,47],[-10,43],[-22,44],[-20,73],[-20,50],[-23,24],[-23,37],[-13,50],[1,10],[-17,20],[-13,34],[6,126],[-23,89],[-16,112],[-33,64],[1,84],[-8,17],[-47,39],[-24,14],[-50,49],[-33,15],[-14,14],[-14,33],[-15,18],[-48,8],[-15,14],[-40,6],[-15,-2],[-119,20],[-51,16],[-11,16],[-34,6],[-17,17],[-61,4],[-31,21],[-24,5],[-46,-7],[-18,7],[-11,30],[-33,12],[-46,52],[-44,41],[-36,16],[-38,41],[-36,18],[-13,40],[-33,12],[-39,18],[-72,31],[-36,34],[-36,71],[-43,110],[-23,27],[-31,11],[-30,15],[-16,-12],[-18,1],[-4,40],[-15,14],[-27,14],[-31,35],[-26,40],[-13,47],[8,32],[33,50],[11,38],[21,171],[-20,136],[-8,23],[-60,42],[-95,42],[-76,49],[-29,26],[-32,20],[-11,34],[-38,34],[-50,30],[-33,24],[-44,84],[-36,16],[-17,36],[-24,18],[-25,96],[-8,105],[-10,39],[-16,31],[-127,95],[-15,30],[-2,65],[-8,136],[-171,804],[-7,23],[-155,1023],[80,312],[76,132],[55,37],[223,19],[208,42],[107,55],[92,382],[17,151],[56,109],[65,39],[92,407],[90,120],[9,18],[29,39],[45,48],[55,0],[70,-26],[194,-191],[241,88],[48,142],[692,171],[309,95],[83,35],[35,25],[90,128],[-104,251],[-27,82],[-50,166],[2,61],[54,38],[87,25],[367,81],[75,13],[78,-4],[320,162],[32,37],[22,117],[2,173],[-4,644],[-26,456],[2,66],[25,195],[18,61],[179,435],[39,52],[199,89],[121,46],[55,26],[50,60],[56,83],[46,89],[2,180],[-31,81],[-38,67],[-7,96],[-1,93],[8,58],[57,122],[61,37],[94,79],[135,93],[70,28],[60,-2],[470,-208],[-20,229],[44,178],[-17,27],[-26,25],[-73,55],[-184,178],[-42,54],[-33,37],[-255,338],[-55,106],[-56,113],[-9,34],[-163,767],[-104,171],[-8,116],[26,79],[23,50],[11,30],[15,27],[6,25],[14,33],[40,51],[14,7],[50,72],[112,85],[77,69],[44,43],[19,15],[17,30],[15,20],[16,30],[17,22],[25,22],[20,35],[7,30],[24,83],[16,43],[1,30],[-16,32],[-22,22],[-9,21],[-17,24],[-19,46],[-3,24],[3,19],[-6,29],[-10,18],[12,43],[-2,29],[-16,79],[-6,52],[82,102],[36,52],[57,84],[22,34],[-8,11],[11,60],[35,49],[27,6],[33,-24],[102,-42],[102,1],[138,-20],[34,122],[94,62],[102,88],[25,48],[-1,58],[36,26],[25,58],[94,28],[48,10],[67,26],[163,203],[46,63],[29,20],[28,25],[9,13],[37,20],[72,22],[134,44],[85,-1],[142,39],[41,-13],[55,1],[17,-24],[33,-77],[68,-105],[33,-28],[55,-12],[65,8],[25,15],[27,37],[54,49],[48,24],[37,1],[33,-35],[24,-1],[13,12],[47,10],[77,2],[63,26],[56,6],[77,-1],[12,-4],[27,-25],[18,-1],[16,12],[38,17],[34,50],[44,33],[66,23],[35,24],[57,25],[56,0],[94,-15],[32,11],[74,12],[65,0],[19,-8],[23,-21],[42,-16],[24,-21],[52,-6],[59,-39],[20,-31],[15,-4],[62,-1],[15,-7],[32,-35],[9,-13],[56,-43],[39,-71],[32,-34],[66,-27],[47,-52],[27,-14],[47,-42],[85,-21],[18,-18],[13,-40],[21,-27],[32,-18],[89,-22],[85,-5],[94,14],[24,-5],[73,-72],[74,-57],[67,-24],[32,-25],[42,-22],[62,-3],[71,8],[50,16],[46,-3],[58,-19],[33,-2],[96,0],[9,-7],[40,-5],[9,3],[46,-3],[34,-18],[27,-2],[101,56],[168,48],[0,36],[-15,53],[-20,20],[-14,83],[-31,70],[1,65],[-3,62],[-11,52],[-24,38],[1,20],[9,45],[31,69],[5,33],[-6,35],[-20,51],[-47,104],[-34,54],[-16,44],[10,64],[-6,17],[-3,49],[-29,31],[-20,30],[-16,50],[-29,35],[-13,36],[1,20],[-4,111],[-8,65],[-32,45],[-29,18],[-55,12],[-21,21],[-25,109],[5,29],[3,62],[-22,47],[-13,43],[-24,67],[-57,82],[4,25],[4,68],[33,44],[15,44],[5,95],[-23,89],[-11,20],[-25,11],[-80,19],[-64,7],[-118,30],[-61,18],[-96,4],[-44,10],[-84,6],[-158,78],[-129,49],[-103,48],[-100,55],[-75,43],[-69,53],[-52,74],[-65,88],[-67,90],[-60,104],[-60,117],[-59,64],[-58,64],[-48,23],[-34,35],[-28,53],[-85,19],[1,19],[44,57],[37,55],[5,76],[-31,87],[-54,55],[-50,55],[-25,92],[-42,84],[-70,62],[-48,82],[0,73],[42,79],[40,57],[29,58],[1,85],[-42,90],[-78,96],[-61,58],[-34,66],[-15,35],[8,39],[23,56],[-21,48],[-6,36],[12,78],[4,53],[11,59],[22,31],[98,57],[13,16],[11,23],[5,53],[-1,54],[-7,184],[2,65],[-5,86],[-19,84],[-96,148],[-53,70],[-44,75],[-6,60],[24,60],[32,60],[22,61],[-12,38],[-41,49],[-32,72],[-15,109],[-27,99],[-45,73],[-63,61],[-75,65],[-47,68],[-44,93],[-35,81],[-36,76],[-42,58],[-77,36],[-119,43],[-109,60],[-76,50],[-64,57],[-55,59],[-48,66],[-14,73],[50,145],[15,25],[30,32],[41,35],[74,59],[47,32],[36,31],[5,14],[12,72],[6,57],[10,21],[18,14],[77,32],[35,34],[12,21],[10,55],[-3,105],[-2,33],[14,37],[31,60],[21,34],[61,83],[29,32],[51,107],[8,60],[-2,20],[12,27],[32,84],[-5,17],[4,22],[32,24],[37,24],[21,19],[9,32],[21,47],[68,57],[17,8],[33,24],[38,93],[3,33],[28,63],[-24,76],[-36,127],[69,114],[35,24],[13,21],[21,10],[10,18],[13,1],[9,25],[2,23],[-2,60],[88,66],[-96,10],[-32,2],[-23,15],[-46,60],[-42,23],[-35,12],[-66,16],[-49,-21],[-85,5],[-40,27],[-47,-14],[-50,5],[-49,31],[-70,36],[-35,53],[14,74],[3,67],[-22,45],[-10,28],[-4,34],[1,26],[-4,29],[-1,75],[-18,58],[-3,24],[-16,40],[-18,29],[-22,24],[-53,45],[-6,9],[-1,25],[4,57],[5,65],[14,119],[-1,26],[-5,20],[-119,73],[-18,14],[-62,67],[-16,14],[-42,31],[-59,2],[-22,3],[-49,1],[-43,-10],[-53,-16],[-56,-5],[-21,0],[-41,8],[-36,16],[-37,42],[-27,43],[-19,37],[-17,24],[-28,13],[-59,12],[-50,22],[-26,8],[-45,27],[-38,11],[-68,23],[-39,10],[-60,9],[-38,15],[-35,26],[-11,3],[-90,-23],[-41,-13],[-42,-23],[-35,-5],[-65,-1],[-66,5],[-98,13],[-55,10],[-42,12],[-24,41],[1,55],[-119,99],[-81,2],[-33,-8],[-23,1],[-76,61],[-51,26],[-75,59],[-65,74],[-33,18],[-41,34],[-93,80],[-26,26],[-76,68],[-63,62],[-19,1],[-75,-8],[-25,3],[-17,16],[-112,177],[-32,67],[-21,31],[-34,34],[-24,22],[-28,17],[-38,7],[-41,-1],[-49,-12],[-28,-3],[-69,2],[-37,12],[-45,33],[-96,81],[-63,47],[-34,21],[-15,6],[-34,-5],[-57,6],[-12,37],[-68,-118],[-53,-75],[-66,-153],[-37,-76],[-14,-42],[-9,-48],[-9,-33],[-25,-79],[-9,-19],[-48,-83],[-45,-68],[-61,-85],[-19,-33],[-27,-31],[-16,-9],[-85,-28],[-22,-3],[-114,-93],[-21,-48],[-30,-58],[-22,-51],[-39,-71],[-49,-41],[-25,-17],[-25,-11],[-89,-29],[-48,-22],[-52,-31],[-20,-18],[-38,-24],[-28,-12],[-11,22],[-6,24],[-11,98],[-8,42],[-6,14],[-24,36],[-23,21],[-51,17],[-29,4],[-60,-2],[-94,-10],[-33,0],[-47,3],[-41,9],[-35,12],[-47,14],[-86,37],[-23,3],[-61,-19],[-67,-9],[-103,-12],[-46,-7],[-74,1],[-46,5],[-62,14],[-34,10],[-133,112],[-51,62],[-12,11],[-62,47],[-39,6],[-45,0],[-144,-14],[-84,-20],[-50,-6],[-169,25],[-75,41],[-70,-3],[-126,139],[-40,36],[-54,59],[-65,82],[-47,70],[-61,64],[-59,84],[-19,3],[-85,-20],[-68,-12],[-35,20],[-50,21],[-47,15],[-60,13],[-45,42],[-29,14],[-76,13],[-43,13],[-40,4],[-13,5],[-21,-12],[-17,-1],[-23,22],[-55,36],[-48,36],[-11,18],[-4,49],[-19,16],[-22,7],[-6,12],[-42,13],[-24,12],[-41,30],[-19,9],[-28,25],[-46,20],[-12,25],[2,18],[-32,28],[4,30],[-11,27],[-1,22],[-41,24],[-30,24],[-10,22],[0,21],[-24,14],[-12,27],[-57,2],[-49,17],[-48,-3],[-66,32],[-11,12],[-22,2],[-39,48],[-28,24],[-10,14],[0,22],[-95,50],[-24,21],[-46,12],[-19,1],[-20,8],[-54,15],[-14,18],[-61,25],[-9,10],[-15,51],[-31,27],[-3,20],[-162,87],[-63,30],[-22,2],[-29,17],[-33,5],[-34,0],[-24,9],[-57,25],[-25,125],[-223,182],[-72,249],[-37,258],[92,208],[-324,-115],[-159,-13],[-256,20],[-48,-3],[-17,3],[-22,15],[-24,33],[-1,31],[-23,17],[-11,29],[-7,50],[10,50],[-28,69],[-18,11],[-31,3],[-14,-12],[-27,-42],[-8,-2],[-28,13],[-37,28],[-5,34],[-14,50],[-18,17],[-9,23],[14,44],[22,33],[4,20],[-20,97],[-9,21],[-25,72],[-27,26],[-18,35],[-38,36],[-31,19],[-39,34],[-20,20],[-120,-27],[-43,89],[-23,69],[-8,18],[-23,-30],[-14,-11],[-20,1],[-20,8],[-25,-19],[-18,-27],[-10,-7],[-48,-21],[-38,12],[-21,-2],[-37,7],[-35,0],[-52,9],[-39,-4],[-67,11],[-38,26],[-14,26],[-14,14],[-63,27],[-27,27],[-34,11],[-91,43],[-17,4],[-33,16],[-34,22],[-38,6],[-14,10],[-15,-9],[-14,-17],[-52,43],[-70,86],[19,41],[17,65],[30,67],[0,69],[2,25],[-2,79],[-14,54],[-7,48],[-6,30],[-13,24],[22,34],[11,42],[38,94],[17,26],[-2,19],[21,16],[6,11],[8,44],[0,36],[-4,28],[-9,12],[-28,19],[-54,27],[-34,13],[-30,14],[-14,16],[-17,63],[-20,53],[8,17],[67,122],[94,160],[64,72],[68,210],[-24,114],[-8,21],[60,3],[50,-20],[22,-20],[24,-28],[48,2],[22,-8],[35,-24],[35,2],[30,-13],[13,18],[3,18],[-8,19],[1,12],[-16,24],[-12,5],[12,28],[6,27],[8,12],[-7,20],[5,33],[-3,16],[-18,23],[-1,8],[-26,34],[-4,9],[-5,44],[-8,10],[-33,22],[-27,36],[-8,27],[-6,8],[-12,29],[-10,7],[-42,5],[-35,23],[-44,2],[-21,-4],[-15,12],[-2,15],[-30,-2],[-29,4],[-43,-7],[-9,3],[-20,-14],[-22,-25],[-5,-12],[-22,-14],[-6,-10],[-19,-9],[-23,-30],[-14,-7],[-13,24],[-49,-43],[-18,-1],[-32,7],[-34,-9],[-70,-32],[-12,17],[-45,19],[7,47],[15,34],[43,-5],[28,20],[34,77],[26,47],[186,138],[126,147],[-14,52],[-6,158],[60,-4],[111,-9],[4,49],[5,37],[101,76],[-1,38],[12,89],[26,57],[201,479],[72,170],[21,182],[-21,148],[-68,477],[-4,33],[-49,106],[-7,9],[-308,171],[-102,82],[-22,30],[-47,85],[-64,292],[7,55],[-4,33],[-36,71],[-53,55],[-149,103],[-95,87],[-145,109],[-171,21],[-17,103],[-9,103],[-1,68],[7,30],[64,6],[85,42],[113,45],[79,23],[96,10],[86,20],[76,20],[42,29],[17,33],[16,62],[6,31],[-15,37],[-20,37],[-10,42],[-4,42],[2,40],[-12,123],[-5,76],[-9,27],[-33,40],[-31,35],[-15,24],[-4,41],[-12,49],[-12,29],[-14,82],[-39,54],[-24,78],[-57,92],[9,64],[29,35],[122,267],[-42,91],[-83,-11],[-61,-15],[-84,14],[-63,53],[-114,30],[-90,-40],[-78,7],[-210,126],[-218,111],[-102,26],[-93,-10],[-85,-47],[-150,-33],[-144,9],[-208,29],[-225,31],[-67,5],[-83,4],[-65,-3],[-44,-4],[-82,-12],[-87,-15],[-38,-4],[-176,-2],[-64,-14],[-133,35],[-77,15],[-114,36],[-12,6],[-58,4],[-69,-11],[-48,-22],[-30,-22],[-32,-44],[-12,-7],[-29,2],[-29,12],[-36,-6],[-53,-23],[-77,-48],[-40,-10],[-48,17],[-78,218],[-25,174],[66,236],[-21,81],[-79,31],[-52,-87],[-74,48],[-101,112],[-30,86],[-28,89],[-40,40],[11,45],[4,34],[-2,19],[24,46],[63,57],[37,83],[-35,119],[55,102],[178,63],[7,-1],[-8,37],[-6,68],[-40,7],[-4,17],[5,11],[0,32],[-8,0],[-1,16],[-11,29],[-22,29],[-5,23],[-10,11],[-30,1],[-26,10],[-27,-5],[-18,25],[8,4],[-4,11],[-20,10],[-2,20],[14,17],[-5,23],[0,37],[-6,29],[-11,16],[-30,31],[-17,2],[-30,-4],[-14,7],[-31,2],[-35,-1],[-15,8],[-10,41],[-16,19],[-12,2],[2,14],[-33,13],[-23,23],[-17,35],[-9,14],[-33,13],[-39,76],[12,18],[26,24],[-14,23],[216,282],[-65,215],[12,523],[36,330],[-39,7],[-80,-11],[-115,-6],[-85,-27],[-83,-11],[-60,23],[-33,48],[-60,54],[-64,35],[-183,64],[-36,34],[-21,23],[-11,23],[4,143],[25,139],[14,172],[23,150],[13,35],[-5,29],[-23,41],[-24,19],[-32,10],[-32,26],[-80,54],[-120,-125],[10,122],[28,86],[-17,91],[-59,90],[-75,99],[-28,44],[-41,24],[-29,9],[-23,83],[-1,68],[12,107],[-220,-87],[-5,4],[12,28],[13,17],[23,58],[4,26],[26,85],[-2,22],[-15,21],[-96,99],[-2,9],[-28,28],[-9,57],[3,41],[-10,33],[-19,25],[-47,46],[-24,53],[-27,88],[-3,82],[40,84],[19,23],[11,25],[31,38],[33,21],[74,37],[21,4],[47,-3],[11,14],[7,84],[-20,66],[0,11],[10,87],[-11,58],[9,11],[49,40],[12,7],[126,41],[6,2],[78,-1],[55,-11],[62,-5],[19,2],[40,8],[14,11],[13,26],[7,2],[68,-50],[55,-25],[35,2],[22,-6],[55,-28],[21,6],[29,-5],[29,26],[15,3],[42,31],[8,12],[2,24],[17,18],[67,9],[18,7],[25,17],[59,33],[37,29],[36,90],[20,30],[26,17],[24,28],[59,115],[33,-31],[58,-15],[31,-16],[59,-14],[61,29],[28,42],[14,48],[46,84],[7,4],[25,-4],[246,84],[69,-3],[17,16],[6,30],[-2,18],[22,72],[10,96],[11,39],[44,56],[-8,22],[-7,6],[-22,3],[-10,6],[-8,47],[18,56],[119,243],[21,46],[8,50],[42,80],[52,91],[16,36],[47,114],[12,20],[112,-18],[43,-4],[118,-1],[57,9],[76,-10],[53,-25],[45,-18],[17,-2],[33,4],[66,15],[62,43],[32,4],[35,12],[59,14],[67,35],[16,11],[27,26],[13,7],[44,13],[58,32],[14,14],[1,17],[7,10],[117,45],[38,22],[50,-8],[48,14],[33,7],[32,3],[53,20],[46,25],[38,13],[191,-81],[31,-25],[68,-62],[135,-70],[37,-26],[95,-73],[46,-31],[152,-95],[12,1],[56,51],[19,9],[23,-15],[8,0],[59,-31],[24,-1],[31,6],[27,9],[30,2],[25,-10],[26,-3],[39,2],[25,-8],[54,-13],[18,-29],[24,-24],[30,-24],[68,-42],[28,-9],[21,1],[24,12],[58,37],[42,34],[5,13],[21,20],[26,13],[26,1],[12,5],[52,40],[39,23],[18,29],[26,14],[49,110],[28,50],[37,19],[37,30],[26,33],[52,81],[35,50],[45,44],[21,26],[16,30],[7,24],[29,190],[40,43],[52,47],[20,15],[107,52],[45,23],[24,20],[28,49],[59,98],[31,49],[17,23],[20,20],[24,15],[32,12],[27,22],[23,40],[18,37],[12,33],[59,142],[2,1],[244,-66],[61,-12],[222,-36],[11,-4],[132,-100],[56,-51],[148,-156],[29,-25],[22,-13],[85,11],[32,1],[114,-8],[153,-4],[52,-4],[39,-15],[4,-11],[69,-77],[36,-29],[46,-47],[24,-19],[61,-34],[17,-5],[32,7],[16,1],[48,-21],[46,-25],[36,-10],[75,5],[25,-13],[11,-17],[11,-7],[54,-12],[15,-28],[21,-9],[18,7],[43,-6],[11,6],[22,30],[12,6],[12,-5],[47,-54],[9,-17],[60,-70],[17,-18],[12,-23],[86,-83],[65,-49],[13,-13],[22,3],[31,21],[50,50],[16,-1],[18,-35],[17,-26],[33,-60],[17,-37],[32,-34],[36,-21],[78,-12],[61,-25],[78,-60],[66,-45],[7,-26],[-2,-51],[15,-18],[40,-22],[51,-51],[44,-63],[14,-50],[14,-17],[49,-22],[46,-49],[99,39],[34,2],[45,-21],[58,-6],[70,6],[192,5],[49,-3],[1,-16],[-16,-59],[-38,-60],[-8,-89],[-26,-37],[-6,-48],[10,-72],[19,-67],[35,-54],[34,-34],[20,-30],[2,-27],[59,-4],[41,2],[50,15],[34,20],[37,7],[59,35],[15,7],[37,-2],[40,3],[47,25],[40,30],[18,53],[23,16],[81,-1],[32,11],[72,17],[29,13],[40,25],[124,26],[53,19],[54,29],[64,50],[34,45],[18,40],[36,59],[31,25],[55,28],[10,10],[29,17],[26,-5],[54,-32],[61,-24],[127,-18],[70,4],[19,9],[17,30],[78,23],[73,4],[44,36],[58,19],[47,1],[155,6],[84,14],[99,37],[10,29],[33,54],[26,29],[32,28],[27,39],[11,22],[42,95],[2,39],[-15,55],[-11,19],[-44,13],[-64,27],[-88,50],[-66,47],[-11,28],[-33,18],[-19,41],[-17,7],[-21,20],[22,63],[3,47],[-25,64],[-13,88],[-39,57],[-6,48],[-13,28],[-43,29],[-25,54],[-47,45],[-14,24],[-12,11],[-29,34],[-6,33],[-45,93],[-2,23],[9,19],[16,47],[29,57],[73,76],[121,99],[28,14],[75,49],[44,68],[1,14],[-32,6],[-17,13],[-3,13],[27,10],[25,22],[0,14],[-12,20],[-31,6],[-14,10],[2,25],[22,8],[12,13],[5,25],[-21,61],[-3,25],[8,29],[51,21],[20,29],[2,31],[14,16],[27,10],[68,-4],[42,3],[53,-32],[67,-23],[37,-10],[63,-14],[59,-5],[34,12],[13,14],[28,11],[65,-17],[23,-21],[34,-5],[25,-17],[44,-60],[31,-21],[45,-10],[47,-16],[35,-4],[14,7],[30,37],[77,126],[45,56],[23,9],[130,-27],[101,-9],[40,-27],[78,-49],[30,0],[36,48],[16,38],[-14,21],[0,11],[52,-7],[77,80],[73,48],[50,6],[102,27],[78,19],[48,5],[27,-12],[2,-29],[11,-6],[49,10],[89,11],[55,0],[34,11],[41,-5],[101,-41],[18,20],[19,13],[51,-2],[50,-19],[70,1],[66,-23],[19,10],[-4,24],[-166,291],[-35,81],[-4,18],[33,13],[50,-1],[43,18],[38,67],[30,21],[31,16],[58,-7],[22,9],[13,12],[7,67],[13,24],[31,14],[16,3],[46,-21],[48,8],[54,2],[30,13],[35,24],[13,21],[0,27],[-38,124],[-36,47],[-2,107],[-60,141],[-4,154],[25,82],[36,73],[37,43],[128,29],[61,28],[25,25],[15,73],[72,9],[92,22],[79,41],[55,30],[48,28],[31,21],[12,19],[6,36],[-18,36],[-25,19],[-73,37],[-15,15],[-11,24],[-3,76],[-12,34],[-7,63],[-30,61],[-34,34],[-62,28],[-38,29],[-2,16],[51,51],[49,54],[25,37],[11,24],[62,117],[31,52],[21,24],[77,-1],[69,11],[26,-4],[88,-4],[163,-12],[106,31],[98,51],[47,2],[28,11],[49,34],[35,10],[19,11],[8,15],[134,67],[21,27],[6,2],[55,-25],[53,-14],[39,-15],[15,-25],[24,-21],[43,-1],[43,12],[45,0],[42,-15],[13,21],[32,70],[1,32],[22,190],[-8,25],[-1,30],[10,41],[26,-17],[119,-28],[223,290],[70,62],[30,1],[15,-32],[10,-81],[43,-61],[31,-27],[41,-26],[47,1],[44,-8],[159,-18],[82,-8],[57,-2],[76,-68],[61,-19],[85,-28],[20,-5],[6,23],[4,77],[7,44],[34,65],[78,70],[35,7],[31,-22],[34,-59],[14,-123],[24,-25],[46,2],[65,30],[25,16],[48,36],[35,63],[101,140],[71,70],[44,18],[77,61],[54,27],[130,125],[138,121],[12,3],[78,-38],[32,-1],[44,53],[66,25],[145,-11],[43,-5],[21,-19],[14,-49],[23,-21],[57,-48],[12,-36],[24,-29],[-6,-25],[-12,-95],[9,-18],[27,-11],[66,9],[33,14],[34,3],[24,-86],[-5,-35],[4,-10],[43,-37],[67,-108],[45,-59],[9,-16],[0,-15],[19,-43],[37,-40],[11,-16],[24,-14],[16,-25],[17,-19],[22,-39],[55,-65],[13,-37],[55,-100],[23,-12],[24,-21],[38,10],[37,0],[115,-18],[26,0],[21,67],[96,65],[78,40],[89,21],[25,0],[40,9],[40,23],[-11,53],[-13,50],[-5,28],[0,35],[19,61],[18,36],[132,75],[19,14],[10,31],[3,33],[0,47],[-2,14],[-14,29],[-2,23],[4,41],[-5,38],[-12,40],[-28,58],[-49,90],[-20,25],[9,10],[69,19],[39,29],[22,36],[36,36],[47,-2],[57,-13],[66,-6],[16,2],[23,9],[14,22],[23,27],[4,21],[-9,30],[18,31],[2,27],[20,18],[43,61],[25,33],[16,12],[77,26],[88,27],[14,7],[30,36],[26,41],[27,50],[20,45],[60,99],[32,41],[21,19],[18,8],[91,29],[121,64],[78,40],[10,13],[-2,28],[-11,58],[2,38],[27,95],[-6,34],[20,46],[17,68],[1,28],[6,28],[9,26],[22,45],[16,28],[44,67],[44,71],[8,-7],[42,-1],[52,-6],[29,0],[56,4],[84,10],[12,-6],[36,-66],[48,-20],[49,-27],[82,-43],[10,-1],[59,6],[23,-3],[112,-30],[14,0],[12,12],[14,31],[60,114],[7,11],[65,56],[78,82],[5,38],[21,95],[8,65],[6,21],[45,57],[33,16],[8,9],[-1,27],[6,10],[36,7],[16,14],[72,75],[38,41],[20,26],[18,34],[26,31],[8,14],[4,19],[-7,13],[-83,76],[-56,47],[-19,26],[-33,60],[-12,26],[-46,67],[12,49],[17,97],[8,84],[15,88],[4,39],[-1,28],[-35,57],[-2,16],[11,57],[4,32],[8,100],[8,30],[17,84],[2,43],[12,75],[10,43],[16,56],[20,50],[19,34],[6,21],[6,58],[0,44],[11,52],[5,33],[3,68],[4,43],[-4,41],[-22,100],[-2,41],[-9,19],[-23,22],[-11,21],[-10,29],[-22,37],[-20,55],[-6,69],[-13,54],[-61,95],[-23,31],[-35,40],[-42,42],[-46,49],[-86,84],[-62,68],[-23,30],[-28,13],[-20,17],[-14,29],[-51,38],[-9,10],[-46,63],[-16,56],[-20,57],[-12,55],[-20,138],[-19,86],[-7,70],[-8,39],[-1,19],[17,25],[9,32],[-2,33],[-20,46],[-33,56],[-24,31],[-16,37],[-1,61],[-3,21],[-14,48],[-7,41],[-1,110],[-4,16],[-25,48],[-10,34],[-42,99],[-12,19],[-19,16],[-44,47],[-66,47],[-25,7],[-24,31],[-24,48],[-40,58],[-37,80],[-25,24],[0,19],[-9,17],[-6,20],[1,17],[16,39],[48,91],[12,91],[17,48],[20,43],[21,31],[4,10],[-3,21],[-21,55],[-14,27],[-20,28],[-47,87],[-31,75],[18,0],[95,-16],[48,-4],[20,4],[39,34],[29,34],[28,19],[28,9],[17,-1],[58,-12],[63,-30],[27,-25],[64,-40],[16,-5],[74,-10],[100,-4],[64,8],[27,6],[48,52],[7,4],[113,59],[20,26],[15,12],[44,-12],[18,0],[10,7],[19,40],[15,14],[6,40],[18,23],[29,-1],[56,19],[2,5],[-7,28],[-3,37],[-16,31],[-13,35],[-1,16],[4,78],[7,22],[-26,56],[10,13],[-4,25],[-15,31],[-5,31],[-29,32],[-12,28],[-17,31],[-9,35],[-7,58],[1,63],[-13,31],[9,21],[33,35],[21,74],[35,46],[1,21],[-5,26],[3,31],[-4,19],[8,58],[-15,31],[-2,27],[25,51],[-4,34],[22,26],[21,8],[13,11],[6,14],[18,15],[32,44],[9,16],[66,57],[8,15],[-9,36],[1,16],[7,11],[49,43],[55,34],[55,2],[86,-5],[27,7],[67,26],[66,24],[48,22],[82,3],[41,12],[90,46],[34,26],[19,19],[3,29],[19,13],[9,15],[13,13],[32,21],[26,32],[72,23],[28,18],[37,33],[6,11],[11,48],[17,20],[17,9],[25,26],[24,37],[27,23],[37,16],[25,-2],[12,-7],[25,5],[18,12],[11,22],[42,5],[18,12],[8,13],[-33,15],[-44,50],[-12,2],[-49,-10],[-37,18],[2,16],[10,17],[24,25],[7,11],[-6,17],[-30,16],[-52,91],[-9,19],[-7,27],[0,28],[9,55],[-1,15],[-22,35],[5,23],[19,38],[1,14],[-12,65],[-5,6],[-60,18],[49,69],[8,20],[-4,59],[35,64],[16,43],[6,37],[2,39],[6,27],[38,95],[20,30],[41,52],[3,53],[6,19],[20,24],[-4,42],[4,25],[-3,31],[16,70],[-2,14],[-15,24],[2,55],[22,29],[80,87],[10,8],[58,37],[18,18],[31,20],[118,75],[29,33],[42,10],[47,-18],[35,6],[36,-6],[27,19],[28,27],[39,50],[-2,33],[13,9],[8,16],[33,22],[78,82],[20,59],[51,49],[5,7],[-12,6],[-6,25],[-23,29],[-31,29],[-5,10],[5,24],[-11,13],[-1,43],[-10,13],[2,59],[18,64],[4,30],[6,77],[4,16],[29,34],[39,69],[25,49],[33,54],[14,26],[24,56],[39,40],[81,68],[67,48],[7,15],[8,49],[1,22],[-3,25],[-8,28],[-26,64],[-27,23],[-52,24],[-24,22],[-14,54],[-19,16],[-83,26],[-59,25],[-35,32],[-66,14],[-74,9],[-26,9],[-19,1],[-50,12],[-17,13],[-22,24],[-88,31],[-30,9],[-36,18],[-31,20],[-39,28],[-87,47],[-34,0],[-43,42],[-49,25],[-21,6],[-33,31],[-31,10],[-19,24],[-22,21],[-94,73],[-11,15],[-71,45],[-55,48],[-19,19],[-74,82],[-23,49],[-17,47],[-1,43],[-24,65],[-32,49],[-26,58],[-17,46],[-139,37],[-96,10],[-74,23],[-50,36],[-42,17],[-78,44],[-39,19],[-14,3],[-81,7],[-145,6],[-57,5],[-30,11],[-78,35],[-117,61],[-73,33],[-9,7],[-7,17],[-15,9],[-3,18],[-23,28],[-40,19],[-46,27],[-115,62],[-61,39],[-68,15],[-33,30],[-29,15],[-58,35],[-53,-7],[-70,25],[-24,5],[-63,24],[-10,20],[-46,62],[-13,6],[7,16],[16,17],[19,32],[2,22],[24,52],[-3,43],[5,51],[-3,44],[4,69],[-5,15],[3,35],[0,78],[6,38],[-18,15],[-11,4],[-7,12],[-12,6],[-34,34],[-29,34],[-27,48],[-7,61],[-17,61],[-14,40],[-16,78],[-13,13],[-33,10],[-54,21],[-7,15],[-15,-5],[-35,27],[-8,21],[-46,84],[-23,35],[-29,37],[-2,23],[-12,21],[-50,31],[-43,52],[-3,34],[-24,26],[-16,12],[-18,26],[-32,19],[-15,14],[-25,40],[-13,-11],[-2,27],[-18,47],[-6,25],[-6,47],[2,41],[-25,64],[-12,22],[-13,44],[4,22],[-6,29],[3,37],[-4,30],[-15,38],[5,17],[21,13],[12,28],[7,34],[25,45],[4,18],[-1,24],[19,35],[6,46],[36,16],[20,30],[17,15],[8,24],[35,32],[25,17],[14,22],[6,19],[12,10],[28,-9],[7,12],[-17,44],[-25,22],[-66,37],[-34,15],[-27,4],[-20,15],[-27,27],[-16,1],[-63,-8],[-50,1],[-48,9],[-35,12],[-21,11],[-47,47],[-19,12],[-17,5],[-56,-6],[-24,-7],[-14,8],[-38,-4],[-50,7],[-48,16],[-22,33],[-4,12],[-23,27],[-28,20],[-9,12],[-15,30],[-6,-5],[-84,-18],[-80,-12],[-47,-5],[-25,6],[-62,36],[-56,19],[-9,9],[-33,4],[-21,11],[-27,24],[-32,4],[-41,-9],[-20,-9],[-52,-16],[-16,-10],[-18,2],[-255,57],[-33,7],[-53,0],[-108,-6],[-44,-7],[-34,-27],[-11,-25],[-27,-41],[-17,-31],[-20,-10],[-10,-29],[-14,-6],[-14,-16],[-22,-34],[-171,52],[-151,38],[-50,19],[-14,1],[-40,-20],[-10,0],[-65,8],[-31,14],[-40,9],[-48,69],[-8,31],[1,42],[-14,14],[-4,23],[12,69],[1,11],[-14,49],[-1,12],[10,24],[-12,14],[-43,32],[-26,29],[-1,8],[18,27],[8,19],[-4,35],[-26,5],[15,39],[73,187],[9,193],[16,9],[24,6],[81,12],[14,6],[20,22],[11,3],[17,-10],[15,0],[21,13],[29,6],[5,14],[26,8],[9,29],[31,26],[38,18],[23,2],[63,98],[5,11],[36,94],[-2,19],[-35,55],[-51,114],[-64,117],[-84,81],[-64,30],[-21,17],[-23,6],[-44,1],[-34,-9],[-25,-3],[-62,17],[-45,43],[-17,4],[-40,0],[-18,8],[-28,-30],[-11,-7],[-34,-10],[-76,-12],[-61,-20],[-70,-29],[-17,-1],[-92,50],[-35,17],[-40,3],[-13,-9],[-39,-16],[-42,-7],[-28,14],[-66,15],[-21,-2],[-20,-6],[-16,-12],[-11,-28],[-10,-9],[-37,-12],[-18,6],[-38,21],[-16,16],[-34,8],[-54,5],[-24,4],[-31,-4],[-39,-11],[-50,-2],[-78,18],[-24,22],[-39,16],[-49,28],[-38,20],[-70,19],[-84,36],[-59,11],[-48,17],[-44,28],[-112,41],[-3,13],[7,24],[-23,12],[-15,18],[-42,18],[-119,129],[-5,4],[-141,21],[-4,2],[-119,124],[35,105],[3,14],[21,190],[19,195],[4,10],[36,42],[14,21],[30,62],[28,84],[10,27],[30,61],[20,31],[14,30],[-19,93],[-5,11],[-19,27],[-14,31],[-3,48],[-6,29],[-17,34],[-30,42],[-43,38],[-3,12],[-15,8],[-15,22],[-22,9],[-45,72],[-46,99],[-8,13],[-94,129],[-55,66],[-30,16],[-71,69],[-35,29],[-111,82],[-30,25],[13,5],[21,71],[18,54],[38,255],[5,81],[4,20],[35,53],[10,21],[7,32],[11,15],[13,37],[11,22],[43,29],[5,14],[-6,28],[1,14],[28,22],[1,9],[-14,32],[14,26],[-7,29],[3,14],[24,45],[-2,17],[6,31],[-7,14],[-4,24],[2,32],[-13,32],[-25,27],[-42,83],[-28,15],[-36,41],[-7,24],[-3,31],[2,29],[8,36],[-22,68],[-23,42],[-7,20],[6,20],[-1,18],[-14,39],[1,26],[-14,39],[-24,29],[2,32],[4,22],[13,32],[4,19],[-20,27],[-35,26],[-16,26],[12,61],[9,55],[2,25],[11,44],[2,35],[-3,50],[-6,47],[-8,22],[-18,82],[-4,37],[10,21],[9,44],[17,46],[34,10],[13,21],[12,6],[21,2],[21,13],[18,22],[56,23],[6,6],[32,64],[20,13],[24,35],[13,30],[12,19],[9,34],[16,25],[-1,34],[-12,18],[-21,13],[-17,5],[-25,-1],[-11,7],[-10,17],[3,47],[-32,40],[-25,19],[-4,22],[11,37],[20,28],[13,55],[21,58],[11,67],[4,19],[-32,31],[-14,2],[-12,13],[-32,48],[-14,10],[-10,20],[-40,30],[-12,16],[-15,29],[-12,18],[-24,25],[-18,10],[-48,10],[-21,12],[-24,7],[-10,12],[-22,16],[-49,69],[-12,12],[-33,25],[-74,35],[-42,15],[-26,14],[-34,29],[-25,19],[-32,11],[-28,22],[-32,123],[-25,23],[-28,61],[-31,63],[-11,35],[-1,47],[3,76],[0,56],[8,36],[15,28],[29,73],[41,74],[10,25],[1,42],[19,70],[6,37],[-9,49],[-4,9],[-23,18],[-18,43],[1,6],[57,113],[25,52],[11,28],[5,26],[10,26],[-4,95],[15,22],[-1,22],[11,70],[15,49],[18,24],[25,26],[15,24],[4,21],[-4,44],[4,19],[10,21],[8,31],[4,40],[93,337],[4,25],[-3,17],[-27,52],[-24,37],[-25,25],[-31,22],[-11,19],[-5,23],[-8,69],[-14,43],[1,11],[43,141],[21,92],[20,42],[27,33],[10,3],[12,17],[17,6],[2,23],[-5,12],[8,21],[8,44],[0,25],[8,23],[2,30],[29,36],[18,15],[66,45],[19,18],[24,31],[32,33],[50,87],[58,41],[20,5],[25,18],[35,17],[29,7],[38,15],[17,15],[14,28],[17,26],[30,51],[21,29],[11,22],[-9,52],[11,28],[17,23],[22,67],[10,10],[25,5],[15,11],[19,27],[22,18],[9,14],[25,89],[-2,28],[-22,41],[-14,41],[2,40],[12,11],[5,49],[-3,30],[-6,15],[-28,15],[-27,7],[-41,7],[-101,12],[-45,-14],[-50,-9],[-60,-20],[-54,-8],[-24,7],[-35,29],[-31,47],[-9,43],[8,49],[1,27],[-5,15],[-29,53],[-22,37],[-23,19],[-46,11],[-39,-2],[-41,3],[-46,-3],[-14,4],[-23,18],[-28,15],[-22,4],[-31,24],[-35,2],[-41,-17],[-36,-2],[-21,7],[-38,19],[-82,8],[-43,19],[-30,7],[-31,28],[-27,15],[-43,18],[-21,18],[-22,34],[-24,50],[-26,31],[-21,50],[-23,28],[-8,19],[-1,24],[17,39],[-7,9],[-32,23],[-3,39],[-14,61],[-13,39],[-6,27],[2,27],[-14,26],[-40,3],[-94,-2],[-18,-2],[-33,-10],[-22,3],[-36,13],[-16,-2],[-28,-10],[-10,7],[-28,33],[-20,17],[-19,3],[-24,-11],[-19,-1],[-34,3],[-15,-8],[-26,-22],[-28,-15],[-48,-49],[-47,-39],[-91,-24],[-26,-5],[-20,-11],[-8,-12],[-12,-2],[-17,17],[-23,-6],[-11,-21],[-19,-12],[-48,-19],[-12,-9],[-60,-27],[-18,-5],[-67,-14],[-23,-22],[-10,2],[-22,-19],[-23,-6],[-49,-19],[-106,-29],[-16,-5],[-29,-21],[-45,-15],[-40,-3],[-10,-6],[-24,-39],[-32,-21],[-40,8],[-28,0],[-27,5],[-59,-9],[-13,-10],[-5,-18],[-35,-22],[-37,-15],[-40,-9],[-12,-10],[-17,-29],[-28,-34],[-12,-8],[-39,-2],[-61,-12],[-10,0],[-24,49],[-9,12],[-3,26],[-36,5],[-25,13],[-41,1],[-55,-6],[-7,4],[-27,45],[-23,48],[-17,19],[-77,45],[-46,12],[-23,-8],[-20,-12],[-4,3],[-11,59],[-19,22],[-11,6],[-37,10],[-34,1],[-65,-8],[-14,5],[-58,32],[-16,10],[-61,52],[24,29],[8,29],[24,28],[5,39],[8,28],[1,30],[-16,33],[-3,20],[32,53],[5,50],[0,84],[-5,84],[-5,54],[-21,47],[-30,47],[-32,23],[-43,14],[-47,5],[-85,42],[-27,8],[-37,-5],[-40,-10],[-48,7],[-39,3],[-33,12],[-17,16],[-112,52],[-30,19],[-30,15],[-30,6],[16,48],[52,68],[21,33],[28,65],[31,31],[27,33],[13,46],[31,78],[10,38],[-8,40],[-15,31],[-31,36],[-26,23],[-2,35],[6,21],[22,65],[12,64],[25,38],[10,31],[6,32],[-4,35],[-17,42],[-20,40],[-11,14],[-11,30],[-25,11],[-15,16],[-30,44],[-7,14],[-16,48],[-11,46],[-15,21],[-17,14],[-54,9],[-44,-1],[-27,-7],[-15,2],[-40,-36],[-26,-34],[-15,-53],[-29,-71],[-31,-22],[-30,-9],[-78,-69],[-20,-20],[-22,-13],[-38,-45],[-3,-12],[-32,31],[-10,31],[-92,84],[-24,16],[-32,16],[-57,45],[-56,47],[-122,71],[-29,22],[-27,16],[-15,4],[-15,-54],[-22,-50],[-8,-14],[-14,2],[-38,-5],[-20,-8],[-30,-16],[-60,-12],[-89,26],[-288,85],[-113,51],[-29,82],[-22,57],[-5,26],[-20,58],[-75,54],[-19,4],[-32,-20],[-17,-1],[-35,18],[-13,5],[-64,-5],[-62,1],[-33,4],[-62,16],[-35,7],[-27,-6],[-40,30],[-17,8],[-10,31],[-10,19],[-31,15],[-23,8],[-25,18],[-34,50],[-28,24],[-47,26],[-41,26],[-48,21],[-46,24],[-68,18],[-20,12],[-47,44],[-6,19],[29,33],[13,26],[1,13],[-17,21],[-4,20],[-23,33],[15,41],[-9,20],[-19,14],[-7,12],[5,30],[-20,29],[-21,10],[-14,17],[-8,29],[-16,25],[-7,23],[-12,21],[0,21],[-4,22],[-30,29],[-27,8],[-2,11],[21,23],[-4,14],[-28,6],[-6,8],[5,21],[-4,14],[-26,21],[-3,72],[-13,29],[-20,20],[-11,5],[-48,-16],[-10,20],[-48,25],[-25,30],[-24,-6],[-13,2],[-17,15],[-43,24],[-17,-3],[-65,5],[-11,6],[-3,14],[-22,2],[-81,-10],[-37,-13],[-37,-6],[-15,23],[-36,23],[-12,13],[-35,51],[-40,34],[-30,2],[6,16],[-8,30],[-1,23],[-8,40],[-19,67],[-6,42],[-8,25],[-14,26],[-71,115],[-15,22],[-22,49],[-85,77],[-11,28],[3,22],[-19,42],[-10,12],[-14,32],[-2,17],[-13,33],[-19,11],[-11,27],[-14,47],[-1,26],[5,26],[-4,13],[-1,42],[5,11],[-12,8],[-3,40],[-5,30],[-3,44],[-10,20],[-39,47],[-33,26],[-6,13],[-28,18],[-74,52],[-37,6],[-6,17],[-18,32],[-15,18],[-4,15],[-23,17],[-8,11],[-33,22],[-19,24],[-6,23],[-21,21],[-7,15],[-24,23],[-25,10],[-25,19],[-49,19],[-11,13],[6,27],[-2,37],[-19,20],[-5,16],[9,22],[-18,38],[18,38],[15,17],[4,26],[22,32],[45,56],[53,27],[7,19],[-5,23],[4,19],[31,46],[24,41],[19,19],[16,11],[13,18],[17,38],[17,21],[8,26],[10,57],[23,40],[11,26],[4,27],[16,67],[18,39],[17,51],[-2,21],[-15,22],[8,28],[20,18],[4,17],[18,28],[-117,121],[-25,26],[-18,28],[-17,44],[-8,15],[-39,1],[-15,13],[-30,3],[-25,12],[-18,4],[-15,11],[-21,4],[-37,36],[-18,14],[-23,24],[-27,42],[-11,34],[-3,27],[-5,14],[-19,18],[-14,6],[-38,30],[-16,29],[9,54],[9,18],[10,38],[26,52],[18,18],[21,4],[-2,28],[-24,24],[12,21],[-29,29],[-6,83],[-7,45],[-43,225],[-5,46],[-1,56],[5,36],[-8,29],[-9,7],[-3,25],[2,33],[-2,20],[9,43],[19,44],[6,22],[6,46],[-3,43],[4,36],[13,20],[-25,52],[-16,50],[-1,29],[26,102],[2,18],[-11,40],[-1,12],[22,43],[19,63],[7,41],[-103,92],[-10,10],[-25,55],[-7,39],[6,82],[-3,44],[-18,84],[-26,67],[-3,18],[0,115],[-7,13],[19,32],[3,65],[-32,30],[-23,40],[-16,37],[1,41],[47,147],[25,169],[4,17],[83,166],[44,86],[44,82],[41,25],[81,42],[98,78],[37,28],[69,45],[31,27],[25,28],[-3,23],[-62,45],[-20,70],[-14,22],[-31,37],[-18,27],[-5,18],[138,457],[77,187],[15,260],[-10,26],[-346,179],[-97,302],[-3,33],[3,15],[17,33],[132,257],[67,129],[50,60],[58,74],[5,12],[81,227],[73,185],[-3,108],[80,188],[34,25],[69,35],[73,23],[83,12],[54,-4],[64,-8],[140,-38],[207,31],[109,89],[115,139],[75,8],[66,34],[104,0],[51,-32],[72,-20],[16,-12],[144,-83],[100,-28],[28,-15],[123,-61],[35,-79],[48,-60],[20,-19],[33,-25],[52,-27],[29,-22],[33,-44],[21,-22],[48,-42],[8,-3],[60,-2],[55,2],[55,4],[66,11],[196,-273],[51,-73],[28,-8],[49,17],[75,32],[24,35],[1,35],[13,30],[-9,22],[-24,26],[-12,2],[-26,34],[3,18],[-10,28],[4,11],[19,-3],[9,8],[-7,42],[-20,35],[-10,14],[-16,8],[-11,32],[-19,20],[10,27],[-3,37],[8,21],[35,46],[42,29],[-58,59],[-12,33],[-6,26],[-6,41],[3,23],[11,34],[56,49],[34,48],[8,26],[15,74],[46,78],[-22,52],[11,33],[-62,105],[61,43],[60,75],[13,15],[49,43],[46,37],[79,53],[44,19],[39,18],[44,-16],[20,-16],[95,-97],[37,-64],[39,-5],[78,-54],[28,-38],[34,-43],[15,-22],[22,-18],[59,-35],[25,-22],[52,-32],[18,-16],[10,-18],[56,-24],[51,-19],[201,12],[32,3],[51,-12],[32,-3],[25,-8],[48,-1],[26,8],[44,21],[27,33],[53,3],[13,10],[40,39],[15,-13],[39,-56],[7,-19],[13,-19],[28,-26],[87,-72],[23,-16],[25,-10],[50,-2],[22,8],[34,23],[35,44],[26,54],[10,76],[9,19],[26,39],[24,23],[24,16],[24,20],[24,11],[25,5],[54,21],[30,30],[20,41],[24,61],[107,-13],[109,-9],[19,-16],[36,30],[24,2],[15,-24],[10,-29],[72,-10],[13,6],[60,-40],[10,3],[20,-22],[58,38],[42,29],[14,7],[89,8],[56,27],[72,-20],[18,6],[58,43],[17,9],[32,6],[52,23],[-7,59],[-8,46],[-24,67],[-21,49],[30,12],[53,26],[50,27],[36,25],[28,24],[15,18],[12,42],[28,41],[20,25],[7,64],[7,27],[54,51],[24,49],[44,22],[15,27],[45,56],[16,29],[0,47],[-5,72],[24,74],[69,-17],[42,-5],[21,4],[24,-3],[24,-7],[35,-17],[67,-11],[15,28],[15,17],[38,27],[31,2],[15,4],[2,9],[39,47],[48,45],[38,24],[17,5],[44,4],[59,14],[91,19],[51,-8],[21,33],[31,57],[14,30],[11,42],[50,19],[94,28],[75,44],[34,21],[32,5],[32,12],[46,12],[28,10],[34,8],[41,4],[47,0],[26,3],[41,15],[54,15],[14,-7],[32,-8],[36,-19],[45,-2],[151,-4],[49,-39],[31,-9],[37,23],[38,28],[24,22],[35,39],[17,60],[16,42],[9,16],[15,9],[35,6],[45,28],[9,9],[33,-2],[13,8],[26,44],[39,15],[6,21],[28,25],[27,12],[8,33],[5,75],[-2,22],[-28,97],[-10,30],[-3,53],[-4,21],[19,40],[11,13],[31,26],[29,72],[21,44],[28,27],[8,16],[35,7],[12,12],[38,77],[18,12],[43,37],[21,23],[15,22],[19,54],[7,34],[-6,57],[18,22],[28,50],[-2,11],[-12,19],[-49,62],[-29,40],[-7,15],[-10,51],[-28,29],[-3,57],[-23,55],[7,31],[-6,36],[-17,56],[-7,35],[-3,46],[-6,54],[3,32],[0,45],[43,137],[12,30],[6,28],[0,32],[30,47],[25,18],[42,43],[41,27],[9,27],[-6,54],[4,13],[23,29],[22,53],[12,14],[37,15],[46,68],[41,7],[4,7],[-1,25],[5,13],[13,12],[83,39],[33,-5],[42,4],[12,86],[-4,21],[11,23],[-13,9],[-2,10],[24,11],[-4,26],[-25,46],[41,42],[72,66],[64,71],[26,36],[14,36],[-20,18],[-3,10],[6,32],[-7,27],[-16,19],[-1,27],[33,28],[38,11],[26,10],[59,56],[21,14],[34,6],[39,-2],[33,-10],[33,-13],[10,57],[24,21],[24,6],[11,11],[30,19],[22,32],[16,43],[69,31],[16,4],[24,28],[58,21],[24,26],[54,16],[61,25],[15,3],[52,0],[27,7],[16,-4],[47,-28],[67,-4],[15,35],[26,38],[39,28],[59,59],[62,-15],[56,-19],[44,0],[45,-14],[16,1],[-29,25],[-18,4],[-24,11],[-14,13],[-14,23],[-15,64],[-12,30],[-3,45],[23,39],[-11,38],[-2,21],[-23,38],[-5,54],[-7,30],[-15,45],[12,34],[6,31],[-17,31],[-18,71],[-10,13],[-53,26],[-13,25],[-30,20],[-28,54],[-21,27],[-15,69],[-22,37],[-25,31],[-2,28],[-17,48],[-49,72],[7,43],[-17,48],[9,30],[13,25],[17,20],[4,12],[-9,42],[31,35],[-16,222],[38,11],[22,23],[15,20],[13,42],[-5,39],[-1,67],[-11,32],[-18,34],[-10,26],[-4,57],[7,46],[1,20],[-8,29],[6,37],[-22,50],[-25,100],[-6,33],[4,15],[23,54],[6,21],[1,43],[-45,21],[-17,15],[-19,24],[-24,16],[-17,4],[-71,7],[-24,18],[-39,11],[-79,9],[-11,5],[-74,41],[-147,21],[-4,17],[-51,10],[-27,2],[-46,-3],[-23,14],[-14,19],[-18,10],[-38,29],[-41,25],[-17,32],[-30,34],[-14,8],[-32,2],[-21,-6],[-40,47],[-41,43],[-14,20],[-9,36],[-14,7],[-24,-6],[-21,12],[-5,29],[-18,44],[-43,83],[-30,18],[-24,17],[-8,24],[-2,35],[-15,38],[-26,43],[14,37],[-66,53],[-37,44],[14,23],[1,49],[7,34],[-10,46],[26,22],[9,11],[-1,29],[-4,27],[5,31],[9,13],[52,22],[35,33],[14,4],[41,1],[9,35],[23,12],[25,6],[28,14],[34,7],[79,18],[17,12],[74,21],[15,8],[26,24],[21,12],[40,7],[17,7],[71,46],[34,49],[5,24],[-8,53],[-17,28],[-36,48],[-23,57],[-67,45],[-40,84],[-18,32],[-10,27],[-5,52],[-44,21],[-58,47],[-19,25],[-12,24],[-4,24],[-21,35],[-39,18],[-35,4],[-38,0],[-43,4],[-28,13],[-11,24],[-2,22],[3,22],[-19,80],[9,48],[-10,29],[1,43],[7,15],[25,25],[-4,24],[-18,28],[-23,28],[-10,44],[-38,50],[-5,36],[21,21],[19,38],[0,11],[-22,46],[-4,57],[-5,40],[-35,52],[-48,25],[-13,32],[-15,21],[-26,16],[-26,20],[-16,8],[-59,138],[-57,-52],[-34,-44],[-49,-25],[-43,-52],[-50,-35],[-12,4],[-66,30],[-67,18],[-41,0],[-43,9],[-77,90],[-8,13],[-40,48],[-57,31],[-25,24],[-49,29],[-23,20],[-44,31],[-35,34],[-30,-15],[-16,-1],[-18,14],[-75,22],[-14,6],[-15,19],[-26,45],[-4,27],[-10,27],[-13,17],[25,36],[-26,150],[0,31],[-21,41],[-15,16],[1,25],[7,27],[-7,15],[3,17],[-9,31],[13,20],[6,43],[-5,38],[-14,26],[-11,34],[-15,18],[-14,96],[1,8],[-20,42],[-17,27],[-21,40],[-11,3],[-10,50],[5,36],[-4,45],[10,15],[5,25],[7,12],[-1,16],[-13,8],[-16,28],[-46,39],[-17,0],[-35,20],[-18,3],[-9,9],[-49,30],[-26,31],[-21,18],[-18,45],[-17,27],[-13,9],[-44,54],[-35,15],[-26,16],[-41,45],[-24,7],[-31,31],[-59,77],[-161,319],[-177,-52],[-253,509],[-155,303],[-74,304],[-77,291],[-60,127],[-23,-2],[-32,-15],[-17,-14],[-57,-3],[-14,11],[-27,-8],[-16,-12],[-38,-18],[-13,-15],[-11,-2],[-47,9],[-12,-8],[-37,19],[-15,18],[-10,19],[-19,17],[-19,1],[-23,21],[-19,10],[-22,19],[-5,13],[-21,2],[-11,15],[-22,8],[-9,31],[-18,16],[-17,23],[-3,17],[-10,24],[-10,13],[-6,27],[-28,26],[-36,-16],[-23,-1],[-16,15],[-36,63],[-13,43],[3,24],[13,23],[4,38],[-6,23],[7,31],[45,25],[15,17],[5,13],[4,31],[16,19],[-13,12],[-7,15],[6,41],[15,47],[-16,12],[-3,15],[-10,12],[4,19],[10,17],[73,18],[7,16],[-3,19],[-13,8],[-7,22],[-11,14],[-3,14],[-40,18],[-21,2],[-12,6],[-33,43],[-37,24],[-13,20],[-15,12],[-99,-5],[-14,-40],[-149,-52],[-197,43],[-289,-377],[9,-41],[-9,-13],[-56,-35],[-27,-9],[-23,-38],[-33,0],[-10,-31],[-58,-67],[5,-62],[-21,-31],[-28,-29],[-18,-29],[-33,-27],[-34,0],[-37,-17],[-13,-28],[8,-33],[10,-88],[-29,-14],[-30,-34],[-10,-44],[-26,-10],[-5,-14],[-26,-22],[-42,-3],[-54,-28],[-21,-2],[-5,17],[-28,5],[-26,-29],[-36,-25],[-60,-15],[-26,14],[-19,-15],[-77,-19],[-16,-7],[-52,-7],[-30,16],[-29,-25],[-27,1],[-25,-10],[-34,12],[-17,-4],[-23,-17],[-14,-2],[-40,-37],[-29,-34],[-38,-22],[-14,-24],[-30,-21],[-7,-160],[-16,-49],[-2,-51],[-83,-48],[-41,40],[-61,34],[-20,33],[-25,22],[-6,31],[-20,13],[-33,5],[-26,13],[-35,-14],[-49,4],[-26,11],[-26,31],[-85,22],[-58,38],[-64,31],[2,28],[-49,38],[-43,11],[-21,39],[-4,37],[12,42],[-8,24],[-174,120],[34,67],[7,65],[6,23],[-10,106],[2,18],[16,33],[15,56],[21,46],[43,71],[16,34],[8,43],[2,67],[14,12],[11,94],[7,29],[13,17],[13,44],[-9,27],[11,42],[33,57],[19,11],[58,55],[14,30],[-7,60],[19,68],[3,23],[16,22],[19,106],[70,44],[31,9],[70,32],[20,27],[29,0],[23,37],[29,36],[40,35],[38,40],[40,21],[69,28],[68,33],[-10,43],[-29,89],[-7,50],[-14,10],[-14,23],[-23,27],[-42,81],[-4,41],[10,17],[-2,33],[52,31],[54,48],[4,34],[9,16],[-1,23],[21,14],[5,27],[14,28],[2,75],[-9,51],[17,18],[8,18],[-69,41],[-26,51],[-52,39],[-23,63],[-4,45],[-85,146],[-7,31],[-33,37],[-2,49],[-25,34],[-15,37],[-19,2],[-26,15],[-34,52],[-15,44],[-26,41],[39,34],[13,5],[21,19],[39,21],[24,24],[47,98],[40,45],[0,137],[120,69],[39,31],[17,45],[34,22],[41,74],[10,6],[12,31],[30,28],[-4,24],[4,14],[-6,25],[9,29],[1,35],[21,38],[45,42],[29,41],[11,46],[-73,70],[-17,4],[-6,12],[17,39],[-2,33],[-13,39],[-8,44],[-21,52],[17,38],[-6,32],[6,26],[40,56],[21,18],[27,35],[14,53],[24,53],[20,30],[10,61],[30,85],[5,56],[40,118],[37,49],[9,32],[46,42],[9,18],[-16,4],[-57,27],[-36,14],[-61,-59],[-30,-5],[-25,3],[-20,31],[-18,17],[-31,13],[-69,58],[-53,0],[-38,11],[-84,-37],[-42,-44],[-283,-105],[-81,30],[-131,126],[-54,27],[-176,34],[-185,-59],[-42,1],[-66,40],[-183,11],[-101,10],[-73,-13],[-98,28],[-88,15],[-72,22],[-60,-8],[-91,5],[-193,54],[-180,101],[-46,17],[-35,51],[-3,35],[-17,12],[-16,39],[3,37],[22,38],[-151,56],[-43,-7],[-57,-15],[-57,-4],[-47,-28],[-35,9],[-25,11],[-48,6],[-14,13],[-29,-10],[-32,8],[-138,-50],[-50,-6],[-48,2],[-57,-15],[-57,-24],[-57,-5],[-49,10],[-145,-15],[-37,-25],[2,-27],[-39,-45],[-37,-23],[-28,-10],[-37,-1],[-51,80],[-68,124],[-33,-10],[-42,-5],[-37,69],[-22,11],[5,75],[-28,53],[-37,51],[-19,21],[-7,16],[-34,33],[-26,8],[-31,-35],[-49,-9],[-62,-1],[-75,-45],[-50,1],[-51,16],[-47,2],[-30,14],[-37,28],[-24,40],[-17,98],[-20,48],[-16,16],[-2,149],[-6,83],[-27,37],[-21,67],[-9,10],[-11,25],[3,17],[-3,33],[-14,45],[-2,64],[8,26],[-1,22],[-10,59],[-16,15],[-23,48],[-17,20],[-8,32],[1,14],[-16,45],[-24,39],[-37,81],[0,24],[-41,44],[-21,57],[-1,68],[-4,18],[0,29],[31,69],[-5,12],[26,18],[-11,32],[5,18],[29,30],[9,29],[-4,16],[-14,19],[1,13],[17,12],[31,62],[-15,84],[-31,140],[6,17],[12,18],[19,14],[21,35],[21,1],[17,43],[27,11],[7,22],[-1,15],[28,47],[28,8],[14,27],[32,8],[15,57],[22,26],[20,8],[18,24],[57,19],[30,2],[38,60],[-3,7],[22,16],[26,25],[10,15],[-2,10],[18,9],[-4,9],[13,21],[0,12],[27,38],[12,9],[5,17],[22,16],[89,40],[9,13],[1,76],[12,48],[20,41],[-12,20],[14,20],[13,10],[1,21],[22,41],[3,35],[-11,16],[-5,24],[13,17],[-15,13],[27,46],[103,57],[19,31],[35,6],[53,56],[18,31],[32,16],[-76,288],[-75,270],[-28,203],[-10,42],[-68,197],[-15,72],[-154,452],[-25,45],[10,40],[16,86],[44,73],[28,40],[38,37],[3,23],[52,47],[12,37],[1,41],[16,48],[0,37],[8,49],[34,26],[23,49],[35,0],[6,6],[-1,26],[-10,38],[4,71],[62,65],[58,4],[56,40],[18,44],[16,26],[9,53],[26,27],[2,26],[31,56],[35,47],[14,51],[20,32],[10,4],[19,19],[38,15],[41,6],[2,20],[29,9],[24,20],[18,49],[33,36],[19,39],[-4,55],[10,56],[-5,104],[4,29],[-6,66],[8,11],[-37,99],[-2,40],[-14,17],[-10,28],[20,63],[-6,26],[17,53],[60,41],[37,3],[41,17],[80,56],[42,0],[19,23],[82,-32],[57,15],[46,33],[85,108],[26,24],[69,107],[1,55],[22,50],[15,21],[42,28],[53,65],[9,40],[0,42],[7,44],[26,105],[-8,64],[57,137],[16,51],[22,52],[154,28],[139,77],[230,139],[72,40],[101,123],[66,98],[-47,296],[25,35],[112,156],[64,121],[45,102],[34,87],[-63,553],[94,177],[34,17],[44,96],[42,63],[59,75],[18,15],[0,52],[7,25],[-16,100],[-16,50],[-119,199],[-62,32],[-74,155],[4,47],[1,84],[-56,72],[-14,-1],[-19,15],[-22,1],[-22,17],[-10,14],[-36,13],[-10,16],[-21,13],[-23,0],[-36,-19],[-38,-12],[-40,8],[-27,-48],[-9,-57],[-3,2],[-13,-29],[-110,-31],[-14,7],[-23,-16],[-27,4],[-20,10],[-36,32],[-46,48],[-21,52],[-27,45],[-24,132],[-69,4],[-52,27],[-55,18],[-32,6],[-60,88],[-31,20],[-29,29],[-40,24],[-17,28],[-17,41],[-26,45],[-20,51],[2,17],[-91,-8],[-67,2],[-51,15],[-31,28],[-11,31],[-38,30],[-4,16],[-29,68],[8,63],[38,69],[10,37],[35,42],[3,38],[12,27],[-27,5],[-38,21],[-29,78],[-43,76],[-13,43],[-47,47],[-14,45],[-9,7],[-5,50],[-18,49],[-46,16],[-88,19],[-53,33],[-34,57],[-29,70],[-22,64],[-47,15],[-94,13],[-119,69],[-76,90],[-58,35],[-61,56],[-167,98],[-38,-29],[-126,-37],[-121,-23],[-65,35],[2,55],[-24,68],[-18,35],[-28,75],[-52,248],[77,174],[-37,95],[-90,71],[0,118],[-57,-7],[-120,-23],[-42,-14],[-60,2],[-125,-5],[-69,-15],[-103,33],[-9,284],[-80,107],[-15,67],[-58,104],[-43,69],[-14,48],[-48,109],[-1,81],[-79,109],[-35,32],[-78,39],[-28,16],[-7,28],[-16,24],[-11,57],[-39,58],[-15,16],[-28,37],[-28,161],[0,23],[6,24],[-32,40],[-7,85],[-16,32],[7,60],[-1,114],[6,50],[14,64],[16,112],[11,15],[29,12],[36,40],[9,6],[27,27],[44,54],[30,21],[52,74],[37,27],[90,28],[19,23],[18,31],[14,3],[21,31],[13,10],[41,0],[31,14],[12,-2],[93,14],[20,-31],[14,-6],[33,2],[19,-2],[26,9],[28,0],[15,13],[20,7],[35,0],[20,9],[16,-9],[24,4],[16,-6],[7,6],[22,-1],[19,9],[10,15],[10,-2],[22,19],[31,14],[19,16],[-2,20],[16,22],[13,5],[5,15],[21,9],[10,24],[12,3],[7,16],[0,19],[11,5],[9,16],[28,10],[6,30],[19,32],[23,19],[0,10],[18,9],[7,13],[6,27],[10,5],[10,20],[-4,11],[6,23],[17,23],[1,25],[10,27],[25,15],[-5,14],[25,22],[31,18],[23,1],[19,11],[-1,10],[13,19],[23,14],[4,21],[46,22],[13,-1],[27,11],[17,12],[3,16],[15,32],[32,41],[17,31],[17,20],[14,34],[3,32],[19,32],[6,57],[-19,22],[2,11],[-7,17],[7,49],[10,26],[2,23],[10,7],[2,18],[-33,39],[-12,8],[-32,3],[-24,-5],[-24,13],[-13,26],[-3,15],[-27,49],[-16,17],[-37,53],[7,21],[-3,23],[6,25],[-3,17],[-15,24],[4,18],[-4,13],[9,12],[-2,15],[5,35],[-3,8],[8,24],[16,13],[-1,49],[16,22],[5,29],[20,18],[4,9],[-15,21],[-5,27],[5,31],[-2,20],[26,35],[15,8],[27,24],[28,14],[13,41],[775,2380],[-6793,1964],[-7941,147],[-4562,-2931],[-4413,-873],[-4012,-3129],[-565,-1214],[-433,-931],[-633,-1363],[1084,-553],[39,-36],[30,-23],[17,3],[36,39],[16,2],[9,-15],[9,-39],[15,-20],[42,-19],[24,-5],[33,11],[13,-2],[9,-11],[12,-42],[8,-6],[29,3],[8,-14],[0,-15],[-23,-30],[-8,-23],[-20,-14],[-20,2],[-13,-10],[-3,-23],[-10,-16],[22,-9],[14,11],[13,-5],[21,-40],[21,-27],[17,-7],[7,-9],[-5,-13],[-26,-16],[-28,-31],[3,-11],[31,-17],[7,-15],[-21,-20],[-20,-6],[15,-41],[35,4],[20,-4],[22,5],[8,-6],[-3,-20],[-21,-31],[-3,-10],[7,-26],[-10,-5],[-18,7],[-13,-5],[-13,-15],[-3,-18],[3,-36],[17,-34],[23,-25],[11,-2],[13,11],[24,5],[22,-15],[16,-25],[-8,-24],[-15,-12],[-13,-40],[10,-13],[24,1],[19,-5],[18,5],[17,-6],[0,-14],[11,-28],[5,-23],[14,-16],[-2,-22],[-41,-41],[-14,-44],[2,-29],[-5,-26],[-7,-18],[-16,-13],[-49,-17],[-31,3],[-21,-8],[-14,-13],[1,-14],[12,-12],[-3,-38],[-8,-11],[-20,-1],[-16,8],[-14,-12],[1,-12],[-8,-8],[-19,4],[-8,-3],[-2,-20],[-14,-25],[-27,-19],[-20,-7],[-41,0],[-24,6],[-34,2],[-15,12],[-27,-6],[-20,-23],[-40,-3],[-2,-37],[12,-39],[-15,-20],[-17,-2],[-15,-13],[-14,-24],[-24,-23],[-19,-9],[-3,-11],[8,-34],[-8,-8],[-27,-14],[-16,12],[-34,15],[-12,-7],[-4,-20],[26,-9],[-5,-22],[7,-14],[-12,-9],[-4,-19],[24,5],[-3,-15],[-11,-10],[28,-16],[-16,-22],[13,-8],[11,-33],[-24,-14],[8,-25],[-8,-12],[-7,-45],[-6,-8],[-30,-12],[-3,-17],[20,-30],[2,-64],[6,-22],[45,-73],[40,-30],[29,-39],[69,-62],[22,-13],[25,-7],[335,-739],[5,-31],[577,-551],[-29,-95],[-8,-35],[-36,-69],[-1,-10],[11,-8],[21,-6],[29,-13],[57,-16],[22,-13],[86,-91],[49,-41],[10,-18],[39,-82],[63,37],[24,27],[74,-6],[14,15],[25,9],[8,10],[26,13],[12,1],[42,17],[29,17],[4,13],[22,9],[11,11],[9,-2],[13,8],[2,14],[23,16],[33,10],[41,19],[10,1],[59,25],[18,-13],[13,14],[6,-7],[24,14],[-33,73],[110,75],[51,13],[115,39],[53,48],[-88,78],[153,100],[84,104],[73,85],[78,148],[5,46],[38,64],[14,-6],[16,5],[19,17],[11,22],[13,-6],[30,25],[13,18],[11,2],[17,-16],[26,0],[-1,-19],[20,12],[9,-10],[-7,-22],[18,-20],[1,-20],[-18,-39],[-8,-1],[-4,-14],[12,-19],[3,-37],[-19,-19],[2,-28],[-12,-5],[-14,-15],[4,-5],[-14,-17],[6,-6],[-8,-11],[7,-11],[-10,-9],[-24,-4],[6,-8],[-18,-3],[-21,-20],[7,-17],[15,-10],[3,-12],[-18,-15],[2,-24],[-3,-37],[5,-13],[25,-21],[22,-54],[-13,-25],[8,-15],[21,-12],[8,-9],[18,6],[20,-27],[32,-1],[4,-9],[22,6],[13,-11],[3,8],[30,-18],[13,10],[5,-11],[11,11],[13,4],[19,-11],[32,10],[18,-18],[46,-28],[17,-5],[14,13],[25,0],[20,8],[17,21],[16,8],[8,16],[16,4],[7,18],[23,-6],[25,3],[13,17],[12,7],[18,18],[25,7],[9,-6],[29,1],[22,-4],[10,8],[18,-5],[9,-9],[16,1],[23,-11],[-17,-21],[-26,-17],[-13,-14],[-4,-25],[-18,-20],[-16,-24],[-2,-11],[3,-39],[-6,-29],[-26,-31],[-12,-20],[-12,-31],[-50,-69],[19,-13],[93,-32],[24,-24],[41,-19],[6,-18],[-9,-39],[-8,-65],[-19,-71],[3,0],[4,-37],[14,-25],[9,-62],[33,-36],[6,-56],[8,-37],[-37,-83],[-30,-49],[-94,-182],[-16,-24],[-4,-15],[-58,-104],[-22,-35],[-107,-144],[-27,-50],[-83,-178],[-94,-186],[-110,-191],[-28,-56],[-51,-63],[-56,-38],[-53,-28],[-54,-33],[-87,-48],[-23,-20],[-40,-58],[-22,-21],[-165,-130],[-111,-94],[-50,-39],[-30,-28],[-63,-54],[-53,-48],[-46,-48],[-25,-16],[-93,-33],[-82,-18],[-113,-34],[-18,-7],[-52,-33],[-49,-17],[-26,14],[-21,6],[-34,-5],[-19,-7],[-38,-32],[-43,-21],[-38,-14],[-36,-7],[-38,-32],[-55,-28],[-94,-55],[-87,-42],[-33,-9],[-44,-18],[-24,-18],[-37,-43],[-22,8],[-6,-2],[-118,-146],[-40,-32],[-47,-32],[-35,-36],[22,-44],[-4,-18],[-36,12],[-24,0],[-24,5],[-23,9],[-54,40],[1,14],[-7,19],[-60,34],[-7,6],[19,-140],[-22,-12],[-66,-1],[-15,-21],[-17,13],[9,9],[-3,10],[-10,0],[-30,-13],[-6,-8],[-10,12],[-20,-5],[-18,9],[6,17],[-10,9],[-24,-11],[-9,5],[-55,-1],[-39,33],[-15,8],[-18,20],[-37,8],[2,18],[-7,7],[-23,-2],[-31,4],[-28,-12],[-47,9],[-17,-13],[-14,-23],[-26,7],[-11,-5],[-11,-18],[-29,-40],[-4,-16],[-20,-9],[-20,-31],[-16,0],[-8,13],[-13,-7],[-8,-20],[17,-35],[-20,-22],[-20,5],[-24,-8],[-16,4],[-44,-5],[2,-33],[18,-29],[-23,0],[-51,-37],[-10,3],[-20,18],[-12,0],[-21,-17],[-21,-13],[-17,-17],[-9,-24],[-12,-5],[-24,2],[-12,-12],[-24,-5],[-29,-20],[-20,-4],[-3,-16],[-12,-12],[-1,-29],[25,-32],[6,-32],[-10,-11],[-16,10],[-34,-4],[-19,-11],[-11,-12],[-41,-9],[-23,4],[-24,14],[-15,-3],[-3,-20],[3,-22],[-19,-11],[-14,9],[-14,-11],[-5,-14],[3,-14],[-7,-18],[-19,-16],[-1,-20],[-15,-13],[-6,-44],[-6,-10],[1,-32],[-10,-27],[-18,-12],[-28,-9],[-10,-12],[-20,-1],[-8,-40],[-13,-12],[-11,2],[1,16],[-19,10],[-15,-6],[-8,9],[-14,-5],[7,-15],[-11,-12],[-26,-38],[-18,-6],[-7,-12],[5,-6],[24,-1],[7,-14],[-32,-14],[-17,-12],[-8,18],[-16,-1],[-31,13],[-61,-4],[-24,-10],[-13,-12],[-15,-5],[-17,3],[-20,-9],[-14,-12],[-27,-10],[-20,-31],[-31,12],[-7,-17],[14,-16],[-10,-11],[5,-20],[-14,3],[-19,-14],[11,-18],[-2,-12],[8,-30],[-10,-15],[-16,1],[-6,-13],[-21,-11],[5,-21],[-42,-8],[-16,9],[-48,-86],[14,-16],[-11,-8],[0,-19],[-9,-41],[-4,-4],[-27,1],[-10,-5],[-24,-28],[-6,-17],[-47,-30],[-23,-24],[-1,-16],[11,-4],[5,-14],[-37,-57],[-8,-28],[-15,-16],[-21,10],[-13,18],[-20,-2],[-24,3],[-10,29],[-10,0],[-9,-15],[-27,17],[-11,-5],[0,-28],[6,-25],[-39,-4],[4,-23],[-19,-4],[-1,-11],[-33,-6],[-9,-20],[-16,-23],[-30,2],[-11,-5],[0,-15],[-21,-35],[-20,-12],[-25,8],[-12,-2],[-19,-19],[-10,-1],[-11,23],[-31,14],[-13,3],[-6,-11],[31,-53],[-14,-10],[-32,14],[-14,-1],[-13,-21],[-22,-8],[0,-21],[13,-53],[-6,-15],[1,-18],[7,-22],[-41,0],[-16,-19],[25,-47],[-31,-20],[11,-18],[8,-39],[-10,-88],[5,-40],[4,-12],[29,-47],[85,-551],[-48,-46],[-120,-129],[-91,-76],[-182,-133],[-61,-48],[-41,-66],[-167,-122],[-94,-32],[-77,-13],[-105,-2],[-231,-130],[-203,-108],[-79,-36],[-16,-35],[-18,-16],[-169,-32],[-126,-77],[-78,-50],[-15,-14],[-37,-13],[-114,-211],[46,-36],[-116,-124],[-49,39],[-3,-9],[-55,35],[-14,66],[-24,33],[-6,-8],[-4,-23],[4,-20],[-18,-29],[6,-25],[-2,-20],[-26,-19],[-16,-28],[-41,-23],[-23,-7],[-119,-106],[-15,-38],[-9,-10],[3,-51],[-175,-54],[-38,47],[-43,-61],[-32,-18],[-37,-5],[-80,-1],[-78,15],[-69,60],[-58,35],[-17,5],[-14,11],[-91,32],[-63,18],[-26,-9],[-15,0],[-51,8],[-70,5],[-126,20],[-13,-8],[-73,-9],[-106,-5],[-23,31],[-21,21],[-51,-32],[-31,-11],[-65,54],[-4,28],[-37,2],[-52,12],[-10,-6],[-19,8],[-42,4],[-19,-8],[-33,-3],[-27,5],[-13,-4],[-26,1],[-16,-5],[-50,-3],[-38,-19],[-132,322],[-41,61],[-72,62],[8,40],[-28,33],[-11,23],[-50,46],[-281,-76],[-134,-35],[-82,-25],[-328,-88],[-74,48],[-55,34],[-566,88],[-241,9],[-168,5],[-188,-313],[-68,-325],[5,0],[22,-25],[-34,-33],[-88,-129],[-127,104],[-22,-44],[-48,-60],[-15,-6],[-52,-7],[-19,-11],[-103,-114],[-17,-24],[-18,-36],[-17,-44],[-7,-40],[-4,1],[-20,-91],[-4,-36],[-22,29],[-14,62],[-15,22],[-3,19],[17,38],[-14,14],[-33,-25],[-12,7],[8,12],[3,22],[-12,14],[2,18],[11,28],[-14,4],[-23,-20],[-21,15],[18,28],[8,21],[-2,10],[-11,3],[-10,-11],[-27,-17],[-25,-29],[-4,6],[13,44],[-6,21],[8,18],[-10,19],[-29,-2],[-13,-22],[-8,-5],[-20,3],[-10,7],[4,22],[-14,7],[-18,-17],[-12,0],[-11,20],[-13,10],[-16,-4],[4,28],[9,6],[-2,17],[-20,-4],[-8,-13],[-28,-13],[-52,6],[-18,14],[-30,8],[-63,-3],[-46,68],[-24,25],[-15,0],[-30,-10],[-11,-28],[-7,-2],[-27,28],[-9,23],[-17,18],[-18,2],[-26,-10],[1,10],[-44,10],[-10,12],[-24,20],[-24,12],[-27,-5],[-53,1],[-25,21],[-13,-4],[-15,-41],[-13,-6],[-27,12],[-15,-24],[-12,-7],[-20,7],[-18,-6],[-42,4],[-14,-5],[-11,-13],[-20,23],[-19,-2],[-25,-9],[-7,12],[1,15],[-13,12],[-33,14],[-14,-3],[-28,-14],[-30,-25],[-27,-11],[-26,7],[-3,10],[-10,1],[-32,-7],[-35,-23],[-29,7],[-25,-18],[-33,30],[-23,7],[-43,-7],[-22,34],[-11,-9],[-12,3],[-15,21],[-5,20],[-13,-4],[-6,-10],[-39,-7],[-11,11],[-17,2],[-32,-17],[-25,12],[-1,22],[-10,25],[-16,12],[-26,4],[-13,10],[-28,5],[-9,-5],[-3,-27],[-7,3],[-24,43],[4,18],[-6,6],[-53,-37],[-43,-10],[-87,-44],[-16,10],[-19,5],[-37,22],[-14,-37],[-33,-1],[-10,-19],[-30,-32],[-11,1],[-15,24],[-19,-9],[-10,4],[-23,39],[-28,-3],[-12,-6],[-40,-9],[-17,-12],[-19,-32],[-32,-19],[-6,-53],[29,-17],[-3,-22],[-13,-44],[-33,-216],[-62,-69],[-77,-66],[-77,-139],[-38,-34],[-64,-35],[-62,-22],[-34,-24],[-23,-29],[-18,13],[0,7],[-25,12],[-33,4],[-49,-10],[-27,6],[-18,-2],[-7,-11],[-7,-33],[-29,-17],[-46,-12],[-28,-37],[-18,-17],[-39,-19],[-14,5],[-21,-30],[-21,37],[-178,44],[-8,-17],[-20,-23],[-32,-30],[-54,-31],[-69,-61],[-27,16],[-19,219],[-26,40],[73,80],[126,103],[114,41],[72,31],[56,40],[30,33],[34,70],[9,44],[-6,45],[-31,79],[-52,92],[-13,43],[-14,87],[1,58],[7,40],[29,86],[17,40],[21,36],[47,60],[11,19],[30,116],[74,170],[160,227],[29,47],[15,29],[44,109],[25,70],[24,62],[7,33],[31,74],[12,32],[20,43],[57,110],[16,27],[27,39],[65,108],[17,39],[15,78],[4,57],[16,59],[4,66],[-4,67],[5,25],[18,48],[33,94],[14,18],[30,21],[24,3],[33,-8],[29,-19],[36,-41],[18,-28],[22,-45],[15,-60],[7,-19],[17,-24],[19,-12],[7,2],[18,24],[20,35],[14,31],[13,53],[4,49],[9,55],[17,60],[27,74],[20,34],[12,14],[49,41],[-22,39],[-16,-3],[-26,14],[-1,6],[28,34],[12,27],[5,22],[-2,11],[18,14],[20,9],[7,-9],[44,53],[3,16],[63,81],[11,20],[11,29],[-4,52],[5,15],[-3,20],[-11,8],[-15,23],[-50,41],[-8,38],[-24,46],[-10,26],[-12,70],[-32,33],[-62,58],[-19,-5],[-18,5],[-21,-11],[-18,1],[-40,20],[-146,52],[-13,2],[-44,15],[-23,27],[-65,54],[42,54],[-337,153],[-197,93],[-398,206],[2,14],[10,9],[-6,5],[18,20],[13,35],[9,6],[1,39],[14,15],[13,3],[20,35],[21,13],[10,-6],[31,28],[3,-8],[13,2],[18,24],[11,-11],[11,13],[3,-19],[22,17],[9,23],[9,-10],[9,3],[9,54],[19,-16],[20,23],[11,5],[4,18],[18,-7],[11,5],[22,-3],[18,18],[14,21],[20,1],[3,17],[37,11],[8,20],[-10,3],[-9,20],[-15,19],[3,17],[-40,19],[-35,33],[-20,-1],[-13,15],[9,28],[-30,25],[-6,27],[-42,75],[14,21],[38,106],[65,208],[83,174],[9,15],[56,80],[53,40],[164,120],[18,-2],[33,-21],[11,23],[13,-9],[22,10],[30,-16],[21,-2],[17,-9],[35,-2],[18,4],[26,24],[10,-21],[9,-7],[7,18],[12,-10],[34,-6],[10,-9],[14,6],[25,-4],[14,-9],[12,6],[22,-4],[11,-18],[20,-3],[21,-19],[18,-3],[34,6],[17,-21],[8,4],[28,-13],[22,3],[11,-26],[19,6],[26,-19],[18,-3],[22,71],[2,25],[16,60],[-5,40],[-5,16],[-26,62],[-59,53],[-18,29],[-11,45],[-8,23],[-14,24],[-22,21],[131,90],[18,-4],[12,-15],[25,-7],[16,-11],[18,-1],[28,14],[26,-13],[26,-4],[6,3],[14,-10],[41,-2],[21,-8],[29,-19],[7,-11],[21,-11],[21,-36],[22,-75],[71,33],[19,28],[11,28],[32,65],[30,39],[36,26],[24,20],[66,27],[59,9],[4,15],[-12,30],[2,30],[-2,38],[-19,52],[-1,30],[14,11],[32,-16],[26,-5],[71,49],[36,55],[-1,18],[-23,27],[-11,20],[2,14],[10,8],[24,-6],[46,-24],[46,-9],[21,5],[21,14],[15,18],[5,19],[-3,18],[-10,22],[-22,18],[-5,12],[4,31],[10,21],[11,9],[17,-3],[25,-21],[50,-24],[18,3],[9,11],[25,49],[15,48],[50,-29],[11,3],[18,-6],[9,8],[14,-5],[12,4],[5,11],[36,-2],[18,6],[2,24],[14,4],[18,-4],[20,13],[19,-1],[3,19],[21,-7],[41,16],[16,-2],[7,14],[23,18],[31,-7],[10,5],[14,-6],[14,14],[16,-1],[17,26],[-1,16],[6,21],[25,19],[27,-5],[32,33],[52,36],[37,41],[34,47],[103,83],[69,69],[259,-248],[154,-131],[195,-138],[18,35],[35,80],[12,30],[26,-18],[28,29],[46,54],[8,19],[30,42],[27,53],[12,44],[31,77],[21,38],[0,16],[107,149],[14,9],[60,84],[34,23],[30,17],[41,45],[35,60],[67,85],[15,13],[23,5],[27,1],[38,23],[55,28],[31,-61],[9,-21],[9,-7],[39,-49],[18,-34],[19,-24],[-3,-6],[20,-16],[26,-38],[26,-34],[43,13],[66,-57],[33,37],[34,-27],[23,26],[20,37],[60,-61],[36,68],[-46,59],[35,44],[16,0],[49,-11],[15,17],[19,-16],[77,79],[36,-33],[40,47],[40,38],[113,29],[5,0],[28,-29],[13,16],[6,18],[15,24],[29,37],[29,22],[54,-58],[6,-14],[116,78],[7,-58],[18,-30],[106,-54],[80,-95],[2,-8],[47,-58],[10,12],[72,-81],[156,-165],[41,-43],[117,-103],[17,18],[179,169],[67,68],[8,-4],[86,-84],[110,112],[209,209],[53,46],[214,215],[-23,35],[27,13],[2,12],[21,20],[109,111],[44,44],[-30,41],[30,55],[-46,8],[-5,11],[-13,5],[-10,18],[-10,0],[-33,20],[-23,19],[-21,23],[-17,42],[7,37],[43,65],[35,15],[10,19],[-53,77],[-5,15],[46,32],[-135,190],[-21,31],[35,30],[-95,128],[95,85],[-7,17],[-81,47],[-26,16],[-74,39],[-37,-23],[-92,122],[-92,101],[11,10],[-97,102],[39,30],[53,48],[52,43],[20,7],[13,14],[-91,54],[7,14],[-31,16],[-2,21],[-43,12],[4,15],[-36,23],[-30,10],[-18,-2],[-13,18],[-30,71],[-36,46],[-31,8],[-4,-4],[-14,11],[-17,4],[-2,24],[-18,22],[-4,18],[-16,28],[-13,9],[-62,22],[-1,3],[28,51],[18,40],[12,35],[12,87],[-1,36],[17,60],[-32,38],[-2,5],[15,24],[-13,22],[-35,25],[-53,23],[-10,6],[30,19],[27,29],[7,22],[35,48],[7,30],[76,56],[63,67],[73,47],[47,62],[87,94],[32,77],[38,53],[-15,16],[25,44],[37,17],[3,26],[23,-18],[13,8],[12,-3],[45,-23],[27,-17],[10,2],[11,16],[27,16],[27,10],[45,-8],[32,-12],[7,19],[-4,14],[-16,19],[-27,21],[-12,42],[5,13],[34,20],[29,8],[9,6],[31,36],[-4,11],[-34,42],[-4,10],[7,18],[23,22],[25,9],[28,25],[5,9],[-1,49],[-20,71],[-4,5],[-40,-2],[-21,10],[-13,23],[-13,15],[-14,23],[-19,78],[10,27],[17,16],[30,17],[1,7],[-18,16],[-2,14],[8,15],[20,16],[8,17],[-1,19],[-12,11],[-15,0],[-14,13],[3,18],[21,26],[21,-8],[10,5],[4,36],[6,19],[-12,15],[3,28],[-11,11],[-51,12],[-3,17],[13,24],[18,11],[0,62],[-7,20],[22,8],[-13,18],[-5,27],[-12,16],[13,8],[12,24],[-3,23],[1,28],[14,29],[-2,11],[-17,8],[-7,12],[12,24],[17,14],[-1,22],[20,0],[19,-10],[14,10],[23,27],[10,22],[31,18],[5,8],[-6,28],[54,41],[18,31],[3,11],[-6,17],[6,9],[-8,23],[9,19],[-4,29],[7,5],[36,8],[29,-4],[8,26],[12,2],[-4,26],[-15,13],[-15,32],[1,14],[-10,12],[6,21],[30,23],[9,10],[8,31],[21,34],[10,37],[6,5],[32,11],[23,11],[16,19],[17,35],[39,28],[15,18],[9,25],[33,23],[34,31],[-4,41],[7,17],[14,6],[27,25],[13,19],[14,36],[27,45],[4,25],[22,37],[-5,27],[5,11],[23,8],[71,7],[3,16],[-41,10],[-3,10],[23,13],[5,11],[-21,23],[87,93],[-6,17],[-35,18],[-1,5],[16,18],[-11,36],[3,11],[35,34],[29,40],[9,6],[42,-21],[11,1],[11,18],[1,14],[-12,31],[1,41],[12,22],[-4,8],[-30,16],[-24,23],[-25,5],[-15,11],[1,13],[14,31],[13,9],[22,2],[2,7],[-23,15],[-11,19],[3,30],[7,9],[23,5],[45,3],[11,8],[-6,11],[-34,5],[-23,6],[-16,20],[2,20],[12,15],[29,-6],[9,9],[-2,45],[11,19],[6,-2],[25,-33],[8,-4],[15,9],[14,29],[7,36],[10,16],[44,13],[32,16],[31,-2],[19,10],[30,27],[23,10],[15,-4],[7,-10],[-2,-26],[7,-15],[14,-8],[23,12],[12,19],[-15,29],[6,19],[39,15],[44,11],[36,34],[33,8],[22,8],[11,30],[-5,36],[26,26],[49,29],[11,21],[-11,44],[14,20],[26,25],[10,37],[-10,27],[-15,19],[-4,24],[21,4],[59,-22],[15,3],[18,16],[17,23],[11,30],[47,17],[12,21],[39,14],[-5,37],[30,21],[42,21],[2,12],[-5,27],[2,11],[28,18],[-3,19],[10,26],[-40,60],[-6,32],[13,46],[14,17],[2,9],[-5,30],[11,53],[11,23],[18,5],[5,9],[-23,34],[7,8],[23,7],[5,51],[13,15],[-8,20],[103,185],[5,7],[411,442],[5,75],[-14,51],[-103,163],[-84,133],[-57,58],[-52,40],[-39,39],[5,12],[-21,32],[-12,10],[-21,8],[-18,13],[-16,-1],[-6,7],[-3,44],[4,19],[-14,16],[13,9],[5,15],[-3,34],[-27,27],[10,19],[-15,14],[9,17],[13,9],[0,12],[-12,-2],[-4,20],[-6,5],[4,17],[-19,1],[-10,16],[-13,7],[-4,12],[-12,3],[-5,11],[7,13],[-3,9],[-42,4],[-27,-74],[-37,-70],[-6,-4],[-19,5],[-27,17],[-62,44],[-18,-26],[-24,-52],[-18,7],[-9,-18],[-75,-6],[-52,5],[-27,6],[-27,-2],[-21,31],[-24,47],[-96,76],[-7,39],[-111,114],[-39,41],[-108,119],[-226,243],[-98,101],[-61,40],[-75,46],[-42,32],[-212,167],[-53,43],[-56,43],[-238,188],[-101,84],[-9,8],[-212,169],[-2,-48],[11,-47],[4,-8],[31,-26],[15,-25],[21,-19],[4,-15],[-16,-19],[-28,-20],[-7,4],[-154,139],[-22,19],[-13,1],[-29,33],[-30,5],[-38,-4],[-69,-17],[-23,9],[-13,31],[-16,16],[-25,40],[-26,28],[-13,21],[-21,58],[-10,16],[-31,18],[-16,23],[-15,36],[-13,18],[-24,15],[-32,33],[-32,55],[-6,29],[-1,30],[-10,21],[-23,9],[-6,18],[3,14],[15,31],[0,13],[-15,30],[-23,17],[-17,-11],[-22,9],[-19,36],[6,42],[-121,36],[-433,128],[-683,190],[-228,61],[-123,67],[-61,42],[158,322],[171,337],[161,205],[34,275],[456,530],[82,97],[39,224],[-99,257],[-283,207],[-202,226],[120,299],[-165,164],[17,261],[-37,47],[-14,63],[-1,30],[110,77],[99,72],[220,240],[180,190],[287,288],[282,274],[102,242],[156,463],[87,262],[295,696],[125,387],[403,540],[36,47],[377,449],[99,117],[172,211],[151,182],[278,-235],[251,342],[227,312],[-239,185],[169,203],[225,227],[-55,59],[-849,836],[-789,799],[-309,310],[-249,249],[214,244],[167,141],[167,157],[104,249],[128,182],[171,124],[121,123],[165,140],[180,169],[110,35],[155,143],[150,151],[175,87],[103,27],[5,25],[200,270],[80,66],[78,88],[128,-3],[47,21],[23,-12],[178,109],[131,68],[176,117],[149,109],[25,112],[-30,53],[40,147],[198,93],[107,164],[70,25],[70,37],[45,78],[87,-13],[66,57],[72,36],[77,91],[52,19],[11,29],[-31,68],[65,41],[133,195],[32,59],[-50,62],[222,124],[77,-90],[54,45],[36,-4],[27,26],[6,51],[24,-9],[109,136],[41,57],[62,61],[-11,40],[1,47],[127,45],[59,0],[39,42],[-12,49],[-28,12],[117,142],[233,82],[30,26],[153,115],[151,232],[101,221],[141,139],[124,91],[206,240],[72,63],[451,386],[188,177],[504,473],[35,139],[40,-14],[25,48],[43,0],[13,35],[-4,51],[-30,4],[-46,15],[21,119],[-4,62],[67,41],[433,325],[-37,28],[21,148],[83,-33],[107,130],[108,2],[320,116],[156,104],[111,-1],[66,39],[424,284],[431,289],[143,84],[48,30],[251,151],[101,-20],[257,116],[430,165],[396,310],[136,33],[82,241],[130,86],[37,22],[73,129],[45,76],[23,42],[39,-28],[13,-24],[54,-2],[28,-21],[15,3],[2,18],[17,-10],[22,-24],[20,-8],[12,43],[10,11],[38,3],[15,-11],[19,44],[12,10],[253,67],[-25,366],[-174,-3],[38,26],[12,4],[29,21],[49,45],[32,5],[16,7],[28,-4],[22,1],[18,15],[12,-2],[16,10],[25,2],[7,11],[9,-2],[45,6],[18,-10],[20,-5],[43,-21],[55,-5],[4,-4],[35,-2],[18,-5],[14,16],[27,13],[12,-10],[50,-5],[25,9],[18,1],[33,18],[11,-5],[61,16],[14,12],[19,5],[4,9],[-4,20],[11,7],[210,235],[3,7],[65,127],[57,134],[-41,165],[-44,77],[-89,9],[-5,75],[129,141],[100,92],[114,131],[228,85],[25,71],[22,18],[122,-59],[412,115],[188,63],[61,17],[4,-5],[129,36],[242,89],[24,18],[71,35],[58,43],[45,24],[37,24],[16,5],[28,22],[119,127],[133,108],[129,117],[58,70],[-72,28],[28,257],[36,34],[111,97],[368,344],[162,65],[-14,139],[-3,90],[-7,90],[153,316],[-12,-2],[179,420],[-236,186],[-315,263],[-270,216],[-336,258],[-22,126],[-91,387],[-32,167],[-25,109],[466,259],[-9,95],[-55,494],[1,8],[177,624],[211,349],[281,459],[214,346],[125,188],[18,217],[4,57],[45,519],[64,841],[11,120],[12,227],[58,836],[-49,123],[-273,636],[-341,515],[-152,237],[-46,67],[-259,393],[-120,146],[-159,149],[-157,510],[62,27],[42,23],[29,21],[115,64],[8,-2],[29,12],[28,6],[33,18],[68,55],[36,21],[150,98],[74,47],[156,141],[93,120],[96,78],[11,47],[77,51],[120,148],[70,53],[53,69],[54,165],[41,71],[81,75],[68,87],[33,79],[23,57],[60,54],[91,94],[106,198],[119,175],[54,71],[64,92],[359,404],[88,84],[120,84],[46,41],[86,88],[273,266],[105,-157],[8,-10],[172,-257],[13,-25],[106,-160],[2,-1],[70,42],[63,35],[32,4],[105,53],[132,100],[39,27],[67,34],[30,22],[63,30],[77,33],[52,14],[40,14],[41,7],[8,5],[112,39],[43,-10],[78,-7],[89,37],[233,50],[87,22],[61,3],[40,7],[28,2],[78,33],[129,57],[365,158],[32,12],[26,6],[136,58],[95,34],[90,28],[56,19],[143,32],[74,-3],[57,22],[105,63],[47,12],[87,54],[128,31],[34,3],[63,29],[29,18],[103,70],[4,5],[3,40],[76,25],[69,25],[11,7],[222,158],[130,108],[11,15],[51,24],[8,6],[35,12],[30,18],[12,22],[87,49],[39,25],[39,13],[16,29],[49,9],[13,6],[88,27],[186,11],[3,-57],[48,10],[27,-3],[34,1],[27,-5],[27,9],[35,-12],[32,-44],[51,-9],[132,8],[100,-26],[114,27],[53,35],[202,9],[40,27],[38,38],[49,32],[33,34],[54,23],[41,32],[97,65],[112,91],[39,14],[57,23],[89,40],[90,45],[18,10],[205,208],[123,126],[6,9],[149,259],[118,213],[6,13],[53,139],[58,220],[53,122],[155,334],[43,95],[8,14],[38,50],[27,30],[-5,5],[15,24],[33,43],[48,52],[35,56],[81,95],[35,16],[30,32],[36,19],[33,31],[62,44],[29,15],[30,22],[2,9],[24,9],[32,18],[46,38],[32,23],[22,11],[48,33],[41,25],[36,15],[27,15],[29,23],[4,8],[92,54],[79,49],[132,71],[62,24],[19,5],[3,-8],[40,20],[13,2],[20,12],[9,1],[22,14],[26,9],[91,40],[80,21],[39,6],[14,7],[41,0],[65,4],[38,-8],[34,-12],[24,-5],[35,-2],[36,3],[27,-9],[52,-4],[30,1],[10,-9],[87,23],[3,2],[114,114],[128,139],[97,117],[51,70],[60,71],[147,46],[130,222],[374,227],[22,61],[-40,19],[-33,-1],[-27,11],[-22,-1],[-45,21],[-28,3],[-18,13],[-24,1],[-21,14],[-38,2],[-20,10],[-25,6],[-32,16],[-26,28],[-14,10],[-9,15],[-1,20],[-13,15],[-25,41],[-8,44],[-17,19],[-1,17],[-31,48],[5,15],[-16,28],[5,17],[-12,6],[-38,-19],[-19,-4],[-11,10],[-68,45],[-21,4],[-20,29],[-26,11],[-24,-2],[-16,-20],[-25,-16],[-69,2],[-47,36],[-25,26],[-14,30],[-19,26],[-4,27],[1,43],[7,5],[21,-3],[6,9],[-15,10],[-16,26],[-11,-12],[-2,-16],[-9,-7],[-10,7],[-4,19],[-8,10],[-17,-10],[-10,2],[-3,22],[12,16],[-23,17],[-17,18],[-20,5],[-4,10],[0,27],[-4,4],[-26,-9],[-11,15],[-35,-21],[15,-32],[-26,-19],[-21,21],[2,32],[-25,21],[-21,50],[0,38],[-11,20],[-15,18],[-19,14],[-71,86],[11,28],[9,36],[14,28],[59,72],[31,5],[29,-10],[38,1],[24,5],[50,23],[25,2],[24,8],[62,9],[24,9],[30,1],[29,23],[25,27],[23,36],[14,35],[25,91],[22,40],[16,37],[13,-1],[25,16],[20,-3],[13,5],[32,-2],[21,10],[24,28],[0,28],[-10,22],[-28,25],[-5,18],[-21,31],[1,31],[8,5],[0,14],[31,23],[13,23],[14,6],[42,59],[8,35],[2,22],[-11,38],[-14,14],[-25,15],[-45,4],[-85,21],[-38,32],[-27,46],[-2,36],[23,23],[33,17],[52,5],[61,19],[30,6],[6,8],[60,6],[20,11],[-10,19],[10,47],[14,12],[6,15],[12,7],[20,-9],[19,-16],[24,5],[10,8],[21,44],[23,21],[29,35],[52,29],[32,7],[16,16],[6,17],[-6,53],[27,44],[46,26],[57,25],[23,6],[20,13],[144,13],[7,2],[52,-1],[32,12],[52,37],[18,29],[20,25],[5,29],[58,60],[26,8],[52,-47],[15,-7],[17,-29],[20,-12],[22,-8],[18,-21],[22,-37],[30,-8],[32,1],[9,-4],[107,18],[92,-5],[46,8],[20,11],[21,1],[28,8],[70,11],[18,8],[28,17],[30,25],[81,29],[10,11],[34,12],[24,21],[67,116],[10,30],[17,96],[13,20],[21,48],[22,88],[-1,89],[7,33],[-19,10],[-20,24],[-18,53],[-28,39],[-32,37],[-17,30],[-49,65],[-36,36],[-19,23],[-15,28],[-5,36],[-18,45],[-15,30],[-32,148],[-4,36],[3,40],[5,20],[20,41],[17,2],[30,14],[29,3],[14,5],[27,-11],[9,-9],[65,-8],[13,-4],[9,7],[71,13],[22,13],[34,31],[19,32],[20,25],[21,18],[20,12],[28,41],[17,19],[2,9],[43,71],[5,14],[16,29],[14,17],[34,29],[31,15],[53,12],[35,39],[20,28],[18,12],[24,30],[16,25],[26,7],[37,20],[15,4],[54,42],[17,22],[35,22],[41,12],[29,17],[14,11],[45,27],[39,32],[18,7],[29,19],[58,28],[80,24],[27,1],[48,10],[37,3],[41,11],[54,5],[40,-2],[39,-10],[17,-11],[28,-2],[42,4],[44,13],[56,40],[15,18],[36,62],[39,43],[35,16],[142,28],[32,10],[138,64],[37,13],[117,49],[91,39],[36,11],[23,17],[52,24],[50,29],[57,56],[50,36],[12,6],[39,10],[13,-5],[83,-14],[34,0],[28,15],[28,8],[29,15],[31,8],[35,26],[88,31],[43,24],[24,28],[22,51],[9,54],[6,65],[0,58],[5,30],[10,23],[13,16],[25,20],[25,11],[18,3],[56,-10],[89,-9],[97,0],[30,10],[49,30],[13,14],[7,19],[58,109],[41,65],[12,27],[51,60],[51,43],[39,18],[46,11],[67,31],[41,32],[28,39],[13,13],[23,46],[25,73],[24,61],[30,53],[42,47],[33,2],[24,-18],[21,-9],[28,5],[106,88],[55,28],[38,31],[28,15],[18,14],[59,28],[41,38],[16,10],[38,18],[21,-9],[32,55],[-1,30],[-8,15],[-1,60],[11,46],[14,37],[-7,16],[20,28],[31,24],[34,18],[22,4],[24,-3],[83,33],[86,44],[41,12],[36,4],[23,7],[43,17],[40,22],[19,31],[10,40],[9,18],[11,10],[36,100],[11,18],[22,28],[38,39],[56,42],[60,58],[12,24],[16,18],[21,34],[28,36],[23,43],[49,45],[8,12],[7,25],[-2,21],[-9,17],[-21,16],[-63,-5],[-25,11],[-40,35],[-94,28],[-30,-2],[-14,-6],[-58,-38],[-54,3],[-15,4],[-45,-21],[-38,-5],[-43,10],[-45,24],[-23,6],[-19,11],[-20,-2],[-15,-7],[-29,6],[-31,25],[-20,22],[-26,40],[-18,19],[-15,22],[-8,26],[3,31],[-2,11],[-26,55],[-26,22],[-10,34],[9,37],[23,22],[21,14],[25,27],[29,13],[55,35],[34,11],[28,14],[84,57],[43,33],[11,5],[27,19],[47,22],[32,7],[23,17],[25,12],[22,19],[31,35],[57,41],[132,55],[25,7],[42,32],[50,30],[57,20],[56,32],[11,3],[61,30],[42,24],[22,22],[46,53],[26,49],[8,31],[5,49],[18,79],[-1,29],[21,34],[27,26],[23,15],[40,1],[34,-15],[44,-12],[87,-11],[27,3],[45,13],[46,28],[8,24],[3,34],[-2,14],[-17,47],[-2,20],[-11,21],[-1,32],[6,77],[1,77],[14,56],[6,11],[16,10],[14,33],[-1,31],[-7,12],[29,49],[59,66],[10,17],[25,19],[68,100],[4,30],[10,29],[23,51],[5,31],[26,74],[4,37],[9,24],[5,34],[11,29],[23,10],[51,32],[33,6],[24,12],[61,76],[14,24],[61,73],[15,10],[123,43],[32,24],[21,28],[40,65],[14,13],[42,57],[23,17],[61,33],[47,31],[84,43],[123,92],[30,34],[40,36],[43,56],[20,20],[30,20],[108,58],[34,27],[60,36],[27,21],[19,24],[15,25],[33,81],[15,27],[63,93],[17,16],[60,27],[18,0],[64,18],[1,-29],[28,0],[38,10],[138,68],[48,29],[60,26],[44,15],[23,4],[27,13],[17,27],[111,95],[95,148],[16,12],[35,71],[6,24],[3,37],[-8,52],[-1,34],[6,28],[9,17],[27,32],[52,46],[102,73],[23,12],[32,10],[48,20],[38,11],[31,3],[57,1],[31,-8],[41,-18],[30,1],[41,8],[29,10],[23,15],[57,52],[14,18],[23,38],[9,30],[28,58],[17,48],[1,23],[11,37],[-1,17],[6,52],[-19,64],[1,32],[7,14],[20,19],[44,24],[153,54],[65,35],[46,41],[52,70],[29,29],[30,26],[47,21],[70,15],[26,14],[35,33],[8,16],[2,41],[-11,19],[-28,15],[-1,15],[-18,13],[-27,34],[-35,67],[-54,85],[-44,42],[-50,33],[-53,45],[-75,92],[-10,26],[-13,93],[-3,36],[-9,59],[-21,56],[14,29],[70,82],[60,77],[5,29],[45,143],[25,40],[6,18],[4,74],[14,70],[3,40],[-7,63],[-32,70],[-12,60],[-21,53],[7,90],[65,104],[23,47],[1,64],[-5,15],[-20,27],[-31,62],[-11,20],[-43,49],[-7,52],[-20,41],[-16,43],[-18,30],[-11,35],[-81,154],[-14,8],[-21,37],[-35,83],[-2,24],[14,32],[-6,27],[10,42],[-5,20],[-40,68],[-66,73],[-22,30],[-13,35],[-27,26],[-41,50],[-14,29],[-6,48],[3,25],[19,28],[144,106],[27,33],[36,36],[49,64],[55,60],[43,36],[21,12],[55,15],[47,21],[77,15],[192,7],[82,-23],[32,-18],[17,-14],[41,-11],[108,1],[74,18],[144,47],[33,5],[21,9],[48,4],[44,-13],[53,-37],[63,-34],[42,-12],[31,-2],[43,25],[51,53],[12,20],[27,57],[-2,27],[-12,53],[-1,49],[5,35],[11,31],[20,20],[59,3],[53,-2],[29,-15],[38,-33],[32,-13],[45,-11],[59,0],[36,4],[50,14],[128,49],[32,22],[43,6],[50,0],[34,-4],[41,-12],[46,-21],[29,-7],[41,-30],[25,-4],[51,1],[44,14],[22,17],[23,24],[59,46],[26,26],[34,45],[47,99],[55,62],[44,41],[31,43],[24,13],[43,4],[55,-18],[45,-6],[32,-12],[11,6],[27,23],[55,68],[4,17],[15,12],[5,27],[7,70],[23,102],[8,116],[17,66],[22,35],[31,24],[66,26],[1,12],[16,36],[23,64],[26,41],[25,87],[24,55],[15,57],[6,43],[-14,68],[-15,40],[-11,54],[-12,19],[-13,39],[-14,21],[-14,8],[-9,35],[-31,72],[-8,6],[-2,14],[-14,23],[-127,16],[-53,-8],[17,91],[10,105],[6,108],[138,19],[24,11],[67,14],[37,11],[39,6],[94,6],[30,-2],[87,19],[30,1],[101,17],[92,9],[28,9],[22,-1],[131,35],[93,20],[-5,37],[49,17],[41,-1],[25,7],[30,24],[11,16],[33,1],[53,-18],[71,-11],[222,-74],[29,-18],[51,-15],[31,-3],[48,1],[37,5],[354,359],[201,211],[-38,14],[-16,-9],[-12,20],[-49,-3],[-50,16],[-12,13],[-17,0],[-10,8],[23,4],[19,11],[0,27],[-13,12],[-23,50],[103,54],[9,12],[-41,49],[7,12],[29,21],[41,13],[8,-6],[22,8],[16,0],[15,12],[54,14],[16,27],[16,9],[40,-2],[126,313],[-59,34],[-137,112],[-92,68],[-45,25],[-41,9],[-122,4],[-70,6],[-46,8],[6,70],[25,90],[33,53],[26,18],[53,31],[2,16],[-8,55],[-18,69],[-13,29],[-18,79],[-4,75],[13,72],[-58,78],[-29,78],[-7,43],[6,55],[-6,38],[0,40],[-27,30],[-13,2],[-29,32],[-9,-9],[-7,14],[-70,3],[7,12],[-26,20],[-5,8],[-23,19],[-63,43],[-67,31],[-150,-9],[-23,-8],[-66,-4],[-24,-18],[-66,-5],[-76,-21],[-26,92],[1,28],[-3,57],[4,55],[-4,75],[-4,29],[-3,120],[-76,3],[-96,-19],[-56,-25],[-73,18],[-169,34],[-1,19],[-22,-7],[-104,11],[-42,12],[-37,3],[-36,23],[-21,8],[-38,46],[-5,88],[-132,22],[-61,-80],[-13,-10],[-41,-18],[-45,76],[-2,28],[-17,-15],[-41,-52],[-31,-48],[-50,-60],[-47,-83],[-7,-34],[-38,-53],[-24,0],[-15,-9],[-5,-17],[-51,-26],[-53,-16],[-120,-76],[-76,-63],[-76,-54],[-117,-64],[-69,-24],[-31,-3],[-63,10],[-272,31],[-71,1],[-84,-11],[-90,-28],[-78,-37],[-55,-36],[-128,-66],[-23,-5],[-25,-12],[-28,-9],[-47,-35],[5,-14],[-5,-12],[-41,11],[-22,12],[-70,23],[-17,-3],[-23,7],[-24,15],[-4,-22],[2,-21],[-94,-44],[-9,-1],[-16,-14],[-51,-15],[-29,3],[-14,-3],[-13,-11],[-69,35],[-8,14],[-7,27],[-29,-3],[-51,-18],[-27,-25],[-45,-27],[-80,11],[-38,2],[-106,-26],[-124,16],[-74,-21],[-15,67],[-35,-16],[-58,-15],[-61,-7],[-28,-7],[-49,3],[-65,-15],[-45,-35],[-26,-14],[-8,-12],[-80,-48],[-156,11],[-75,-7],[-67,-11],[-76,-2],[-98,64],[-32,-25],[-79,-15],[-29,-22],[-46,-28],[-256,-146],[-18,12],[-105,-15],[-65,1],[-52,10],[-92,44],[-28,29],[-35,69],[-21,16],[-160,28],[-20,0],[-286,83],[-115,21],[-37,5],[-35,-4],[-24,-11],[-24,-24],[-47,-65],[-14,-10],[-25,-4],[-10,15],[-27,19],[-25,13],[-91,9],[-30,8],[-6,-29],[-28,-37],[-14,-13],[17,-26],[-13,-10],[4,-27],[-37,-32],[-11,5],[-14,-6],[-26,1],[-42,-11],[-29,-14],[0,-20],[-17,-11],[-54,-23],[-39,-23],[-22,-20],[-2,-9],[-74,-32],[-14,-48],[-87,-16],[-35,-17],[-34,-24],[-39,-7],[-36,2],[-49,7],[-46,4],[-25,-4],[-24,3],[3,44],[-2,22],[-13,13],[16,118],[-5,68],[1,91],[3,20],[20,42],[11,17],[1,44],[17,30],[40,37],[23,16],[37,60],[42,130],[23,192],[45,82],[12,46],[-19,73],[-17,48],[-30,216],[1,57],[40,58],[46,54],[170,166],[74,52],[151,119],[113,60],[-33,128],[81,38],[197,6],[149,24],[62,-7],[6,59],[30,15],[29,19],[57,24],[124,65],[91,82],[41,90],[26,48],[1,43],[14,46],[-12,26],[-38,10],[-31,23],[-32,37],[-19,68],[8,77],[18,80],[-56,46],[-13,49],[-20,50],[-17,23],[45,32],[156,35],[95,10],[3,144],[62,117],[12,85],[13,55],[23,36],[-51,50],[-84,12],[-87,39],[192,55],[76,60],[47,33],[45,-113],[41,17],[35,24],[149,16],[96,-3],[56,-12],[92,7],[84,-2],[111,5],[122,15],[84,6],[120,397],[-1,72],[33,223],[-20,467],[-33,509],[-2,83],[-14,52],[9,78],[-1,88],[78,42],[54,-5],[66,0],[131,11],[136,27],[249,64],[127,-104],[132,57],[175,87],[118,133],[78,250],[21,84],[19,81],[21,64],[60,205],[152,4],[24,42],[67,1],[53,26],[224,79],[150,-76],[93,-16],[89,-10],[116,12],[147,54],[132,66],[156,207],[150,120],[-35,130],[-100,17],[-50,14],[-42,7],[20,104],[17,133],[-25,10],[83,89],[90,59],[-15,38],[-59,180],[8,53],[18,65],[8,45],[-200,-25],[-227,-35],[-28,39],[-14,48],[25,84],[88,141],[-9,30],[-21,37],[-48,35],[-64,18],[-95,52],[7,53],[-29,79],[-40,51],[-29,50],[4,37],[30,74],[72,228],[-3,271],[5,154],[-42,101],[-42,141],[-57,102],[33,35],[-73,52],[-63,34],[-49,23],[3,23],[13,43],[149,-88],[22,20],[88,90],[125,71],[119,47],[126,58],[173,95],[45,34],[3,46],[164,75],[69,24],[5,-1],[72,22],[179,61],[149,52],[63,26],[39,9],[58,20],[18,-7],[27,8],[67,31],[54,18],[66,5],[168,-13],[72,-137],[60,-78],[29,22],[41,-6],[35,-31],[51,-50],[164,-89],[119,2],[14,-123],[102,19],[202,28],[65,22],[56,-34],[89,-70],[92,-68],[149,-69],[159,-7],[120,28],[128,-1],[101,-58],[452,-160],[23,-190],[113,-113],[79,20],[84,20],[155,73],[227,169],[135,87],[52,48],[77,55],[137,52],[130,-19],[153,-62],[125,4],[120,24],[79,5],[106,13],[61,-4],[104,13],[14,3],[155,85],[169,149],[144,120],[38,34],[25,32],[152,125],[71,92],[43,-28],[68,-41],[78,-18],[91,-18],[94,-2],[171,-47],[299,-192],[109,-61],[141,-72],[99,-72],[56,-93],[62,-87],[30,-50],[71,-74],[118,-104],[143,-47],[81,-2],[105,9],[64,-51],[151,6],[38,4],[88,15],[133,46],[312,35],[141,23],[146,44],[77,35],[66,16],[91,27],[72,25],[48,22],[82,6],[142,32],[52,16],[21,-16],[-4,-27],[8,-30],[-3,-13],[-16,-13],[11,-5],[11,-14],[11,4],[16,-8],[0,-23],[21,-32],[7,-6],[-3,-13],[17,-13],[-122,-50],[-109,-56],[-90,-33],[-37,0],[-10,-18],[-23,-11],[-35,-11],[-41,-3],[-17,10],[-41,-5],[-19,-12],[-26,-1],[-18,-14],[0,-86],[-27,-87],[-45,-79],[-124,-185],[-26,-116],[-84,-266],[-84,-143],[-44,-131],[-41,-34],[2,-2],[-32,-69],[0,-38],[-86,-159],[-64,-87],[-4,-32],[19,-15],[2,-13],[16,7],[2,-19],[24,-11],[-7,-28],[-17,-6],[15,-24],[26,-34],[-13,-40],[10,-8],[-1,-46],[-20,-3],[-1,-11],[12,-9],[-2,-18],[12,-42],[-14,-93],[9,-61],[0,-18],[-39,-49],[-32,-19],[-8,-33],[13,-29],[37,-34],[-14,-59],[-51,-146],[-34,-131],[-60,-163],[-24,-105],[-38,-69],[-18,-42],[-17,-87],[-31,-81],[-15,-30],[-78,-117],[-23,-42],[9,-52],[86,0],[90,11],[86,-13],[105,-44],[147,-40],[331,-121],[165,-52],[78,-28],[67,-43],[59,-72],[34,-146],[52,2],[149,-21],[277,20],[9,0],[12,-25],[30,-20],[17,2],[46,31],[24,6],[32,15],[8,14],[11,3],[38,-3],[13,11],[16,2],[61,53],[29,7],[33,16],[41,15],[30,17],[22,-2],[31,6],[66,21],[16,12],[23,11],[32,8],[23,10],[12,15],[11,3],[25,-1],[13,4],[68,39],[35,27],[15,24],[10,-7],[121,20],[58,0],[108,-6],[95,-40],[121,-54],[103,-111],[112,-175],[53,-102],[-18,-78],[-14,-39],[-33,-78],[74,-148],[233,-52],[95,-93],[-12,-131],[13,-38],[5,-30],[15,-30],[-4,-45],[9,-40],[-21,-49],[-21,-34],[53,-50],[32,21],[42,19],[67,37],[55,93],[-7,18],[102,33],[128,74],[132,38],[72,30],[52,9],[52,15],[107,24],[49,23],[22,4],[39,22],[26,5],[43,-8],[17,3],[26,16],[34,1],[40,7],[80,46],[37,33],[9,21],[29,30],[44,73],[31,23],[25,29],[30,21],[30,12],[13,23],[23,11],[34,22],[7,10],[8,29],[7,9],[27,9],[32,1],[37,12],[32,30],[9,35],[8,20],[18,25],[3,19],[20,17],[27,-1],[51,20],[33,2],[31,8],[23,-3],[48,4],[37,-5],[28,-24],[14,-3],[26,3],[15,-3],[44,-26],[24,-8],[72,-49],[46,-18],[11,-1],[37,17],[21,19],[12,17],[35,26],[18,28],[14,45],[18,17],[43,3],[30,10],[27,-1],[37,17],[33,-3],[54,30],[36,51],[21,46],[26,46],[17,13],[20,2],[20,9],[54,0],[27,6],[16,-4],[31,0],[45,8],[26,-2],[36,-9],[30,-17],[43,-15],[33,-15],[108,-11],[56,18],[31,24],[96,14],[65,-9],[18,1],[65,12],[20,-3],[18,-11],[29,-7],[95,26],[12,0],[27,-14],[43,22],[31,29],[24,10],[26,0],[25,27],[12,7],[28,3],[14,10],[28,51],[13,8],[24,2],[34,20],[16,28],[27,7],[28,-22],[8,-11],[36,2],[21,-7],[27,-19],[28,5],[40,-2],[29,-8],[29,-2],[31,1],[117,20],[20,-5],[22,-17],[29,-35],[37,-75],[26,-41],[119,-77],[16,-14],[30,6],[6,-13],[-11,-28],[-1,-20],[19,-49],[41,7],[32,-16],[39,-36],[27,-4],[63,3],[23,-3],[44,-15],[50,-23],[56,-37],[38,-8],[19,11],[27,-22],[18,-9],[33,-3],[74,38],[40,-11],[41,14],[16,-8],[39,-7],[32,-13],[17,7],[35,-7],[27,-16],[31,2],[24,11],[39,-10],[51,-19],[49,10],[99,32],[20,2],[46,-6],[33,-10],[24,-16],[18,-22],[66,2],[23,20],[32,-9],[24,9],[5,-7],[-6,-21],[21,-13],[24,0],[39,10],[10,-1],[13,-18],[59,-17],[38,-17],[53,-18],[102,-24],[11,13],[10,22],[26,33],[100,-49],[68,-39],[34,39],[140,69],[39,27],[44,19],[79,49],[57,30],[34,11],[102,18],[32,-10],[42,-3],[37,-8],[86,25],[127,-1],[10,82],[-14,37],[6,60],[0,49],[26,8],[94,63],[52,56],[74,18],[79,53],[31,15],[59,14],[48,28],[29,7],[30,17],[25,6],[20,13],[25,9],[21,23],[32,14],[12,13],[14,2],[5,15],[29,29],[21,3],[21,26],[79,49],[42,47],[32,71],[73,106],[68,110],[-100,58],[51,27],[80,53],[137,98],[44,51],[-28,166],[-23,81],[71,78],[40,80],[126,-17],[106,30],[94,51],[308,72],[134,44],[-27,29],[33,56],[102,94],[29,46],[21,74],[18,40],[40,62],[61,60],[119,129],[56,36],[38,4],[9,36],[17,112],[-30,46],[-69,29],[-142,98],[-15,-17],[-45,31],[-87,-112],[-92,109],[-5,24],[-3,59],[-18,29],[-75,54],[-41,67],[-52,23],[-45,-53],[-134,88],[-4,-5],[-125,102],[-66,7],[-22,-16],[-89,60],[-23,-26],[-13,11],[-53,64],[-67,65],[-17,-21],[-45,-14],[-51,-54],[-65,-31],[-81,-6],[-99,-28],[-34,-15],[-27,-17],[34,61],[27,98],[12,97],[60,82],[46,78],[45,107],[17,62],[60,90],[98,99],[37,181],[84,147],[82,112],[90,67],[94,-74],[134,-68],[70,-74],[57,-26],[111,-43],[76,-21],[48,-33],[100,-112],[-17,-13],[100,-98],[207,-60],[47,-26],[18,-45],[132,18],[76,37],[27,-36],[57,21],[72,-121],[16,8],[92,-198],[43,-54],[90,-75],[23,-41],[17,-44],[16,-31],[39,-46],[61,-25],[74,18],[33,-18],[35,-5],[43,-15],[62,-2],[40,11],[80,38],[69,25],[36,3],[78,17],[23,-3],[35,17],[71,20],[55,12],[28,9],[99,77],[96,106],[28,58],[41,116],[21,72],[16,24],[44,10],[17,-2],[26,7],[46,15],[16,11],[50,-1],[13,39],[16,21],[12,4],[9,22],[28,28],[23,34],[52,-12],[8,-22],[63,17],[-64,198],[35,20],[114,76],[51,40],[69,39],[85,37],[124,37],[6,5],[-56,181],[-30,88],[-27,115],[83,21],[-25,164],[18,78],[-25,91],[-22,119],[-51,85],[-19,54],[-99,38],[-96,98],[-41,94],[-106,59],[-89,106],[-42,234],[-17,125],[33,-9],[59,-40],[51,-132],[44,-132],[41,-87],[-25,-20],[12,-38],[105,0],[50,-18],[43,42],[122,68],[120,61],[115,22],[60,3],[126,-7],[11,-46],[14,-40],[18,-36],[36,-56],[81,66],[25,-70],[46,-48],[34,24],[41,66],[-2,162],[-11,79],[57,84],[144,139],[57,147],[46,99],[61,121],[14,96],[-13,64],[-23,51],[-36,67],[-87,78],[-58,80],[-14,-3],[-25,-20],[-18,-25],[-25,-2],[-34,-23],[-159,145],[-88,62],[-79,-49],[-95,-80],[-73,-114],[-76,-41],[-3,-23],[-93,-107],[-124,-60],[-27,-3],[-125,65],[-137,-45],[-63,47],[-24,78],[45,148],[-50,125],[-37,81],[-79,81],[72,225],[-16,61],[9,4],[20,-8],[18,7],[12,25],[17,12],[6,13],[11,7],[1,10],[39,34],[14,3],[0,8],[21,8],[8,14],[1,19],[21,10],[30,23],[21,21],[-9,21],[7,14],[15,8],[2,9],[17,9],[4,13],[18,14],[3,11],[23,9],[5,9],[28,12],[19,0],[21,17],[14,-12],[18,11],[23,3],[10,13],[16,6],[7,10],[6,27],[24,-33],[56,-63],[147,39],[135,26],[102,67],[166,171],[-17,16],[172,144],[-31,40],[123,95],[112,66],[57,26],[-4,10],[284,91],[145,184],[42,-53],[168,167],[150,139],[1,6],[136,64],[111,61],[132,76],[129,48],[48,159],[52,155],[-141,145],[21,78],[130,84],[5,2],[95,62],[22,14],[84,56],[82,54],[51,104],[128,-19],[122,-22],[178,-70],[55,23],[120,16],[283,-83],[-13,221],[17,164],[48,234],[61,178],[62,142],[39,100]],[[361495,86486],[65,465],[117,448],[60,151],[76,437],[181,82],[4,2],[177,47],[74,266],[2,19],[7,16],[19,20],[28,20],[116,24],[33,-8],[43,4],[16,-3],[35,28],[2,28],[-6,48],[-18,49],[12,12],[-3,18],[10,51],[-46,132],[27,73],[32,14],[2,16],[11,13],[-19,42],[-1,10],[20,133],[29,20],[103,4],[286,-98],[122,-6],[158,-205],[270,-399],[-20,0],[-7,-6],[-33,3],[-25,-13],[-16,-19],[-17,1],[-28,-15],[-20,-5],[-29,4],[-24,-4],[-35,-1],[-17,-4],[-12,-18],[-5,-21],[-42,-67],[-3,-9],[-6,-41],[-8,-10],[-4,-22],[4,-36],[-10,-48],[-6,-16],[-16,-26],[-6,-29],[-7,-8],[-11,-43],[-15,-33],[-8,-41],[-22,-44],[-21,-23],[-16,-31],[-30,-20],[-43,-41],[-27,-4],[-8,-16],[5,-34],[-1,-37],[5,-15],[-1,-25],[5,-32],[-4,-23],[5,-35],[6,-20],[-2,-59],[5,-27],[10,-29],[20,-46],[-1,-36],[58,-31],[18,-6],[27,-22],[9,-48],[12,-12],[23,-45],[25,-31],[13,-21],[27,-34],[15,-34],[6,-26],[4,-71],[-8,-47],[-20,-25],[3,-30],[-1,-36],[47,-29],[0,-4],[76,-29],[55,-19],[55,-23],[48,-23],[71,-42],[58,-36],[114,-80],[196,-141],[199,-50],[70,-208],[34,-25],[54,-36],[31,-28],[-53,-149],[-25,-99],[-171,11],[-313,-114],[-198,-2],[-53,2],[-208,-3],[-139,13],[-129,-2],[-198,-22],[-58,0],[-11,6],[-90,66],[-5,11],[-460,221],[-18,-7],[-78,75],[-446,100],[-9,0],[-158,333],[-2,3]],[[669315,79999],[109,-5356],[88,-4370],[4,-159],[11,-318],[99,-1200],[56,-416],[465,-3159],[335,-2276],[144,-976],[559,-4511],[519,-4192],[359,-2905],[-162,-2855],[-115,-2017],[-5,-84],[-18,-420],[8,-1204],[98,-1200],[188,-1186],[277,-1165],[362,-1136],[116,-308],[1328,-3436],[376,-974],[1416,-3673],[227,-792],[413,-1113],[495,-1072],[480,-855],[1213,-2598],[3031,-6503],[605,-1302],[365,-984],[494,-1072],[572,-1023],[646,-966],[716,-903],[763,-814],[2026,-2492],[2474,-3047],[146,-219],[715,-903],[779,-833],[839,-758],[892,-678],[939,-593],[980,-504],[1014,-411],[136,-41],[55,-27],[860,239],[716,200],[717,199],[860,239],[1003,279],[573,160],[1290,358],[860,239],[860,240],[574,159],[862,240],[1150,320],[719,200],[1007,279],[718,200],[1007,280],[1042,290],[841,-243],[701,-203],[1261,-364],[700,-202],[1262,-365],[700,-202],[1121,-324],[1002,1410],[638,897],[637,897],[483,376],[845,659],[724,565],[965,753],[1207,941],[724,565],[723,565],[845,658],[1303,290],[1302,290],[724,161],[1013,226],[1158,257],[724,161],[868,194],[724,161],[1013,225],[177,539],[328,1150],[240,1175],[151,1192],[134,1788],[195,2599],[182,2436],[122,1623],[158,2108],[170,2270],[23,509],[154,982],[97,1200],[14,649],[0,10],[-8,566],[-44,628],[17,269],[10,1097],[35,596],[5,1033],[1,172],[-84,1201],[-72,565],[67,920],[14,538],[3,311],[-2,322],[-8,482],[-72,1082],[12,602],[-3,406],[152,693],[187,1187],[11,89],[222,376],[59,88],[386,619],[26,43],[323,557],[281,536],[71,119],[326,545],[159,275],[22,35],[444,752],[146,271],[58,87],[434,700],[170,283],[215,360],[56,70],[678,943],[19,27],[171,255],[606,1002],[528,1054],[15,33],[447,1099],[363,1136],[69,287],[97,307],[277,1166],[187,1187],[97,1199],[1,20],[7,74],[20,220],[55,796],[2,67],[73,984],[15,652],[-6,395],[90,1101],[6,1205],[-4,101],[29,488],[7,1270],[-85,1200],[-75,559],[-30,404],[81,559],[31,240],[90,1065],[-75,382],[-17,88],[-255,1392],[-342,1863],[-384,2139],[-209,1966],[-36,876],[664,3860],[-4,256],[-85,1201],[-42,287],[-6,471],[-75,1064],[-197,670],[-322,1118],[-326,2345],[-197,1961],[-5,43],[-54,605],[-15,172],[-75,864],[-72,865],[-4,73],[-11,219],[-26,584],[-12,292],[-47,1169],[-18,59],[-94,279],[-115,336],[-241,636],[-313,757],[-310,653],[-72,154],[-190,407],[-347,678],[-101,183],[-245,414],[-359,592],[494,1191],[368,1136],[279,1165],[171,1044],[24,190],[68,692],[12,91],[88,997],[16,297],[4,776],[-2333,2899],[-1586,2585],[-140,231],[-420,759],[-415,855],[-308,754],[-364,1159],[-423,1345],[-56,641],[-93,667],[-173,1118],[-1360,8847],[-428,1411],[-149,797],[-310,2461],[-345,342],[-879,737],[-818,581],[-145,94],[-980,569],[-1021,477],[-1054,384],[-56,17],[-1046,276],[-1098,189],[-1110,88],[-45,1],[-72,5],[-419,7],[-1111,-50],[-1103,-151],[-1089,-250],[-1065,-347],[-1034,-443],[-996,-535],[-952,-623],[-802,-629],[-472,-254],[-951,-622],[-897,-705],[-670,-538],[-321,-284],[-527,-507],[-779,-860],[-709,-927],[-636,-987],[-557,-1042],[-475,-1088],[-141,-375],[-387,-1119],[-183,-660],[-125,-524],[-212,-1183],[-120,-1197],[-28,-1205],[10,-364],[23,-374],[-16,-156],[-11,-476],[-228,-683],[-302,-1160],[-194,-1083],[-744,-750],[-174,-59],[-1029,-443],[-888,-475],[-874,-479],[-947,-623],[-655,-511],[-377,-261],[-490,-371],[-320,-264],[-233,-184],[-838,-786],[-332,-368],[-100,-85],[-838,-786],[-78,-86],[-246,-57],[-1058,-347],[-1028,-443],[-450,-229],[-133,-72],[-402,-229],[-485,-163],[-1027,-443],[-991,-535],[-945,-623],[-216,-164],[-507,-174],[-34,-15],[-592,-223],[-2070,-780],[-144,-33],[-1057,-348],[-1027,-442],[-989,-535],[-945,-623],[-163,-128],[-179,-128],[-28,-21],[-426,-281],[-893,-707],[-836,-785],[-774,-860],[-705,-927],[-631,-988],[-554,-1042],[-472,-1088],[-20,-47],[-387,-1127],[-60,-204],[-594,-936],[-553,-1042],[-472,-1088],[-22,-57],[-346,-1006],[-87,-280],[-237,-917],[-168,-387],[-67,-198],[-224,-409],[-487,-486],[-974,-974],[-415,-434],[-577,-629],[-744,-886],[-674,-952],[-599,-1010],[-520,-1060],[-437,-1105],[-352,-1141],[-264,-1169],[-175,-1189],[-83,-1201],[-5,-819]],[[776155,454882],[67,-53],[228,-177],[578,-109],[684,-654],[125,-120],[702,-152],[1036,-226],[585,104],[1029,45],[11,8],[31,-8],[21,7],[5,-22],[8,-1],[4,-23],[13,-1],[21,-12],[-3,-19],[15,-1],[34,10],[36,-7],[33,7],[25,-4],[12,-120],[11,-14],[20,-7],[14,-19],[66,-19],[14,6],[18,-2],[12,6],[25,-6],[19,2],[26,-4],[14,-14],[33,1],[6,11],[31,2],[6,-16],[24,-6],[14,19],[15,3],[18,-10],[5,-18],[25,14],[20,-3],[28,8],[21,0],[18,20],[114,236],[24,59],[24,84],[33,57],[25,96],[31,79],[49,71],[18,47],[50,164],[22,52],[21,63],[9,64],[19,70],[-1,27],[-15,14],[-17,3],[-23,35],[-25,17],[-9,41],[-11,14],[-18,12],[-7,24],[-19,42],[-3,33],[6,16],[19,20],[-4,30],[0,27],[9,24],[12,12],[10,37],[22,7],[16,-6],[35,3],[19,27],[7,20],[7,35],[5,8],[24,14],[41,12],[31,21],[2,7],[22,25],[16,12],[16,4],[49,23],[22,1],[18,9],[11,17],[47,16],[40,29],[31,38],[57,91],[55,96],[33,60],[37,33],[32,23],[40,16],[22,21],[-8,50],[-2,85],[5,24],[34,79],[24,40],[19,18],[28,53],[54,-43],[54,-45],[15,-23],[12,4],[17,-11],[27,16],[12,-3],[22,5],[42,-12],[77,-69],[23,-40],[24,3],[20,-4],[25,-14],[15,-18],[47,-27],[27,-6],[41,1],[18,5],[31,2],[22,-10],[13,1],[33,-17],[24,-5],[20,2],[34,-1],[47,40],[16,47],[97,6],[76,14],[45,-5],[50,-24],[59,-41],[49,-31],[43,-66],[52,-23],[44,-54],[46,-44],[-6,-51],[-3,-67],[9,-22],[27,-15],[47,3],[56,-21],[24,-11],[54,-19],[76,-31],[78,-19],[61,-30],[75,-10],[44,16],[86,10],[143,11],[66,-16],[93,-10],[64,-4],[144,-4],[65,-7],[57,-8],[68,16],[30,12],[70,9],[47,8],[100,-31],[31,4],[67,30],[29,-18],[45,-13],[116,-41],[51,29],[32,13],[79,-6],[158,-6],[117,1],[83,10],[80,2],[12,-1],[10,-15],[14,-69],[8,-10],[26,-105],[11,3],[38,-1],[41,17],[77,14],[47,-4],[56,2],[25,7],[83,47],[34,7],[114,51],[33,6],[54,32],[21,3],[47,-114],[22,-86],[-107,-46],[67,-276],[39,-123],[74,-195],[34,-171],[109,-26],[96,-54],[67,-7],[120,22],[113,13],[91,-12],[54,-12],[51,-1],[94,-43],[47,-45],[17,-37],[38,-52],[55,-28],[42,-11],[30,-12],[23,-53],[73,-74],[31,-27],[9,-21],[39,6],[250,-43],[81,18],[212,75],[60,-53],[72,33],[14,-1],[51,-47],[30,-13],[69,65],[69,5],[127,-17],[7,5],[21,-2],[10,-16],[19,0],[36,-17],[7,1],[16,-12],[10,-15],[28,-14],[74,-12],[52,-2],[11,-8],[14,15],[18,6],[13,-10],[25,-11],[46,-6],[32,10],[64,1],[17,-4],[30,-32],[18,-8],[5,-11],[30,-11],[14,-25],[41,-14],[6,-26],[-11,-17],[-2,-16],[7,-4],[21,11],[23,2],[26,-13],[16,6],[22,-8],[9,8],[29,-6],[10,-14],[16,-1],[25,-7],[11,-11],[18,-4],[-3,-18],[11,4],[4,-24],[27,-25],[18,-35],[4,-23],[20,-26],[17,-5],[28,-29],[-16,-15],[-10,-18],[36,-14],[3,-48],[7,-14],[21,-15],[19,-42],[9,-10],[13,-26],[18,-14],[3,-14],[10,-5],[8,-15],[19,-17],[-2,-36],[-13,-32],[-5,-30],[5,-34],[16,-34],[7,-31],[8,-10],[16,-39],[-17,-15],[-10,-17],[-24,-26],[-26,-18],[-31,-49],[-9,-20],[1,-21],[7,-25],[-3,-30],[9,-19],[12,-41],[2,-17],[25,-46],[10,-8],[1,-13],[9,-14],[16,-12],[24,-4],[10,-12],[21,-15],[32,-15],[25,0],[25,-6],[283,-224],[152,17],[32,-15],[53,-127],[145,104],[9,4],[24,25],[53,39],[11,30],[14,24],[27,20],[40,15],[19,16],[17,5],[23,-2],[14,-30],[11,-3],[18,-16],[8,-29],[17,-6],[2,8],[78,60],[344,261],[16,-19],[21,-16],[37,-19],[29,-6],[56,-15],[19,6],[5,7],[19,-1],[44,14],[43,8],[17,-6],[59,-28],[59,-8],[67,9],[20,13],[41,21],[51,-33],[54,-24],[23,-5],[18,-9],[21,9],[19,-5],[11,5],[15,17],[27,5],[28,-8],[21,4],[-4,19],[-20,18],[-5,28],[0,27],[-6,9],[-14,57],[0,31],[-12,21],[-7,29],[1,34],[-9,37],[2,19],[16,38],[18,18],[1,26],[16,10],[4,10],[22,19],[22,13],[156,-27],[128,14],[146,72],[121,26],[49,37],[90,1],[39,24],[175,-7],[134,-18],[118,-90],[17,-31],[35,-25],[31,-47],[71,166],[66,31],[78,-30],[182,164],[89,14],[59,63],[165,165],[24,93],[45,1],[11,-18],[43,-22],[85,-1],[72,34],[104,-8],[57,-34],[209,58],[25,68],[934,68],[5,9],[25,1],[27,9],[27,5],[29,-2],[38,9],[21,0],[33,14],[12,-23],[12,-47],[14,-105],[17,-76],[23,-62],[39,-89],[4,-34],[-5,-41],[3,-16],[24,-52],[21,-31],[35,-44],[27,-25],[15,-9],[20,-6],[7,-22],[22,-13],[-1,-39],[10,-26],[20,-40],[19,-19],[23,-44],[16,-48],[25,-47],[32,-48],[6,-44],[26,-55],[23,1],[15,-38],[17,-35],[19,-16],[20,-3],[8,-14],[19,-5],[11,-9],[26,-7],[23,-26],[17,-33],[-2,-16],[8,-6],[-2,-17],[10,-41],[11,-19],[38,-35],[22,-10],[66,13],[45,17],[69,20],[9,6],[53,9],[59,21],[21,16],[40,22],[72,-2],[21,7],[44,8],[18,-12],[3,-20],[28,-16],[11,-17],[19,-20],[16,-9],[23,-25],[4,-21],[13,-7],[-13,-30],[-22,-37],[-13,-28],[-6,-29],[-9,-12],[5,-29],[-2,-21],[10,-17],[21,-64],[-40,-14],[-27,-13],[-20,-15],[-27,-15],[-25,-2],[-56,-13],[-26,-15],[-45,-16],[-41,-5],[-14,-11],[-48,-12],[-26,-10],[-40,-1],[-33,-6],[-51,-20],[-95,-30],[-20,-11],[-24,-41],[-18,-22],[-11,-7],[-36,-9],[-8,-5],[-43,-14],[-17,4],[-20,-18],[-16,2],[-32,-13],[-12,-12],[-27,-9],[-15,0],[-37,-18],[-13,-14],[-26,-14],[-26,-1],[-21,-10],[-41,-1],[-54,-7],[-28,0],[-34,-14],[-18,0],[-11,9],[-15,0],[-12,-15],[-35,-3],[-17,4],[-30,-6],[-7,-20],[-28,-10],[-39,-23],[-9,-12],[-29,-18],[-6,-13],[-47,-34],[-26,2],[-14,-16],[-28,-21],[-19,12],[-19,-13],[-12,-1],[-26,-22],[-19,-8],[-38,-23],[-21,-7],[-15,0],[-18,-12],[0,-13],[-9,-4],[-18,7],[-32,4],[-30,-14],[-13,7],[-28,-22],[-27,-4],[-16,-13],[-26,-16],[-37,-2],[-18,-9],[-17,-20],[-37,-25],[-19,-26],[-31,-29],[-18,-25],[-27,-24],[-22,-24],[-26,-14],[-34,-4],[-14,-18],[4,-14],[-14,-38],[-20,-21],[-30,10],[-18,-16],[-2,-32],[-10,-28],[10,-24],[-7,-19],[14,-44],[20,-15],[1,-25],[30,-26],[-2,-38],[8,-12],[-6,-17],[2,-10],[-24,-49],[12,-21],[15,-7],[1,-32],[9,-23],[-1,-40],[-15,-17],[4,-17],[-4,-26],[-14,-12],[-11,-24],[9,-37],[-10,-22],[0,-16],[-36,-63],[-2,-24],[-15,-25],[-6,-36],[-8,-28],[10,-34],[-12,-28],[-4,-24],[10,-25],[1,-32],[-10,-23],[9,-27],[-4,-22],[0,-43],[20,-17],[5,-11],[-5,-32],[6,-19],[24,-31],[14,-26],[17,-53],[8,-9],[24,14],[17,2],[26,-10],[44,-32],[12,-18],[7,-21],[13,-18],[22,-11],[42,-4],[24,13],[25,3],[38,-28],[35,-38],[20,-15],[19,0],[52,15],[16,0],[30,-9],[28,-19],[9,1],[38,27],[31,5],[19,-4],[45,-18],[21,1],[30,19],[30,8],[24,30],[14,35],[24,16],[32,0],[30,15],[26,2],[47,17],[17,-4],[29,-16],[24,-1],[32,9],[13,14],[47,77],[29,16],[35,6],[22,12],[25,30],[20,3],[37,-16],[33,9],[56,-1],[9,9],[1,22],[16,5],[33,-20],[11,0],[36,14],[44,7],[38,23],[18,3],[34,-2],[29,25],[19,24],[41,1],[38,17],[74,7],[56,2],[20,7],[23,22],[19,0],[26,-10],[28,-7],[49,-1],[14,-9],[18,-19],[30,-11],[60,2],[24,-9],[15,-18],[19,-13],[20,-4],[43,9],[52,0],[41,-15],[33,-18],[29,-19],[96,-25],[40,-9],[68,-27],[39,-12],[53,-6],[56,-9],[67,-5],[33,3],[83,29],[65,13],[39,-3],[43,-9],[29,-14],[12,-12],[41,-31],[55,-57],[42,-52],[21,-33],[-331,-368],[-140,-123],[-34,-90],[70,-123],[11,-15],[139,-150],[19,-7],[51,-32],[29,-25],[29,-34],[17,-37],[195,-257],[84,-79],[269,-206],[211,-163],[343,-345],[122,-221],[598,-767],[521,-568],[51,-649],[-7,-6],[-15,-28],[-22,-9],[-40,-24],[3,-17],[-13,-15],[-26,-22],[-52,-54],[-33,-19],[-24,-7],[-26,-2],[-8,-9],[-39,2],[-12,-9],[-22,-5],[-31,1],[-12,-7],[-42,5],[-38,-8],[-6,1],[-50,-6],[-10,-7],[-38,-3],[-9,7],[-30,-8],[-25,-24],[-5,1],[-15,-16],[-4,-24],[-16,-9],[-8,-31],[-18,-92],[-1,-27],[-20,-49],[0,-31],[-8,-11],[0,-22],[-30,-24],[-10,-31],[-12,-23],[16,-38],[20,-31],[3,-28],[15,-27],[-2,-24],[17,-41],[1,-18],[17,-19],[20,-10],[7,-19],[-6,-22],[-4,-36],[-11,-43],[2,-14],[-19,-47],[-2,-16],[-15,-26],[-15,-15],[4,-39],[10,-26],[-14,-32],[18,-10],[5,-49],[15,-25],[13,-12],[5,-42],[-12,-46],[-16,-19],[9,-32],[0,-40],[29,-18],[18,-1],[15,-19],[49,-18],[4,-6],[29,-20],[20,-2],[24,-9],[11,0],[6,-11],[33,-27],[27,-4],[29,-11],[36,0],[12,-23],[59,-33],[11,-12],[20,-4],[12,-13],[21,2],[36,-3],[3,7],[18,-4],[10,5],[18,-4],[53,-2],[27,-9],[29,-21],[27,0],[15,-6],[24,1],[15,-9],[64,-12],[15,-7],[25,-22],[27,-10],[22,3],[20,8],[19,-1],[8,5],[34,-2],[55,28],[28,8],[2,-4],[25,11],[21,-25],[11,-26],[12,-7],[23,-23],[30,-3],[50,-17],[28,-18],[21,-7],[18,11],[18,2],[12,-7],[33,7],[12,-8],[27,8],[29,-1],[15,-5],[21,1],[34,-20],[41,8],[20,10],[30,-19],[12,-1],[13,-13],[29,0],[25,-5],[16,-9],[21,3],[33,-2],[7,8],[47,4],[35,18],[26,-10],[41,4],[4,13],[12,6],[24,5],[20,-1],[18,8],[14,-2],[53,28],[22,15],[13,-6],[12,3],[36,18],[23,3],[23,14],[16,-2],[35,10],[21,23],[32,9],[33,26],[25,2],[18,-13],[32,-9],[94,9],[8,12],[32,9],[35,-4],[23,12],[27,-16],[27,6],[7,-12],[35,-23],[10,-23],[23,-19],[18,-34],[18,-50],[15,-14],[22,-29],[15,-10],[26,-35],[15,-9],[13,3],[11,9],[21,8],[64,-16],[16,2],[18,-7],[40,25],[30,11],[20,4],[16,20],[16,12],[8,15],[18,16],[20,4],[23,20],[10,22],[30,25],[33,41],[25,4],[7,7],[22,1],[14,7],[50,-24],[21,3],[22,-3],[31,-16],[12,-17],[13,-2],[14,-18],[22,-11],[17,-23],[43,-16],[22,-3],[35,-20],[9,4],[38,-3],[15,2],[19,-14],[7,-13],[57,-18],[23,-1],[11,4],[27,-5],[20,8],[45,28],[39,29],[49,10],[11,8],[35,37],[4,11],[31,28],[68,-19],[20,8],[35,-5],[34,-14],[30,-7],[10,2],[46,-19],[28,2],[13,26],[14,6],[4,11],[44,18],[3,9],[58,13],[8,-8],[49,-14],[65,-14],[31,-4],[7,-7],[18,-4],[17,-12],[30,-4],[13,7],[28,-2],[32,-7],[35,-1],[6,3],[25,-3],[36,11],[16,8],[31,0],[24,7],[3,6],[19,-2],[67,7],[19,-6],[59,-2],[42,18],[59,-15],[16,-16],[30,5],[17,-15],[21,7],[21,-4],[46,10],[17,-6],[48,6],[33,15],[22,-9],[9,5],[20,-2],[22,-11],[37,15],[15,4],[32,-10],[40,-3],[18,-6],[24,7],[11,-3],[31,-1],[19,-8],[27,4],[17,-6],[20,0],[22,-5],[17,5],[63,-19],[37,13],[14,-3],[24,6],[39,19],[16,0],[36,-33],[29,-18],[20,-3],[2,-6],[45,-15],[40,-5],[29,-15],[33,-2],[19,-15],[32,-2],[11,-5],[20,7],[7,8],[18,3],[6,8],[47,12],[15,18],[17,9],[11,15],[21,11],[45,8],[35,-5],[35,-10],[7,-9],[19,1],[33,-7],[10,3],[4,15],[17,-5],[46,7],[20,-2],[39,17],[52,0],[26,10],[7,-6],[35,3],[75,-24],[49,-1],[24,9],[8,20],[16,-1],[20,14],[29,15],[20,20],[21,7],[16,13],[13,-2],[14,9],[13,-6],[27,8],[18,11],[24,32],[14,11],[19,3],[30,23],[28,8],[18,47],[15,17],[24,17],[22,26],[-1,7],[22,38],[-9,20],[-37,4],[-9,6],[4,14],[-8,24],[-5,29],[6,10],[-8,18],[1,14],[-22,24],[-8,34],[-16,22],[15,15],[15,23],[3,39],[-5,19],[1,31],[10,32],[9,14],[3,22],[-3,16],[-20,8],[25,29],[25,33],[0,11],[20,37],[-3,17],[11,18],[28,25],[47,32],[13,41],[16,4],[14,18],[3,22],[-7,25],[15,26],[22,24],[10,21],[12,12],[6,14],[15,17],[11,-6],[33,19],[4,10],[17,10],[11,-7],[16,5],[35,2],[32,-12],[15,-15],[56,22],[22,-10],[30,3],[11,10],[36,4],[6,-5],[46,12],[9,-6],[15,16],[32,8],[15,8],[17,19],[31,-5],[52,32],[17,0],[22,7],[14,10],[24,6],[15,11],[12,20],[-3,18],[21,20],[14,21],[33,25],[52,15],[23,-3],[12,5],[19,21],[6,12],[18,13],[42,13],[6,9],[33,19],[15,22],[19,7],[36,22],[30,50],[17,2],[17,17],[-2,15],[26,20],[53,2],[37,41],[14,-3],[19,15],[28,11],[22,1],[47,36],[13,13],[37,19],[28,2],[30,6],[12,10],[29,14],[49,1],[13,-5],[32,4],[38,-4],[21,4],[13,10],[38,4],[32,7],[8,5],[61,8],[19,-2],[15,6],[35,-1],[27,7],[18,11],[34,6],[14,-1],[40,6],[26,-4],[37,11],[5,8],[25,14],[68,24],[46,3],[62,33],[62,14],[46,14],[14,-2],[16,20],[4,17],[24,39],[6,25],[22,6],[73,33],[31,25],[45,-7],[7,5],[39,-3],[39,18],[35,-8],[48,12],[25,-5],[8,5],[51,0],[11,8],[23,-2],[49,21],[25,-5],[25,13],[76,-11],[5,-4],[38,7],[15,-3],[25,23],[34,8],[23,-15],[14,6],[15,-3],[23,7],[20,1],[40,7],[28,-2],[23,15],[43,-9],[19,1],[25,10],[29,17],[317,436],[73,3],[36,-40],[98,-27],[114,-10],[322,-102],[90,-65],[39,-4],[20,68],[191,-39],[538,102],[114,1],[64,-57],[97,53],[42,-24],[24,3],[27,35],[50,-20],[134,9],[49,18],[49,-17],[20,-46],[22,-7],[63,-159],[63,-84],[9,-39],[-25,-28],[-153,-119],[-83,-64],[-149,-167],[-46,-103],[-90,-55],[-101,-53],[-30,-280],[-216,-179],[-24,-9],[-8,-7],[-10,-43],[-6,-10],[3,-22],[-15,-13],[-7,-20],[-27,-25],[-27,-1],[-23,-26],[-3,-39],[4,-12],[-4,-16],[-16,-27],[14,-20],[5,-17],[-3,-10],[-13,-10],[-4,-22],[-10,-20],[-24,-10],[-29,-30],[-8,-23],[7,-34],[9,-20],[-14,-27],[7,-14],[2,-19],[-26,-36],[-42,-12],[-22,-11],[-28,-27],[-10,-18],[1,-21],[-8,-33],[-10,-14],[-37,-14],[-13,-11],[-16,-5],[-1,-28],[-59,-22],[-31,-21],[-24,-24],[-10,-29],[-4,-59],[-9,-32],[-18,-35],[-4,-29],[-13,-16],[8,-13],[-8,-22],[21,-17],[-11,-16],[-15,-8],[-17,-32],[125,-146],[164,-10],[113,64],[106,118],[201,34],[140,-1],[85,16],[77,-16],[24,3],[551,43],[91,-29],[133,-9],[165,84],[231,-116],[111,-14],[14,24],[24,0],[33,-5],[30,10],[27,0],[24,15],[38,17],[13,9],[87,54],[20,7],[8,9],[35,21],[19,6],[36,1],[30,14],[22,18],[16,8],[21,24],[5,-13],[20,-7],[27,9],[18,26],[15,7],[28,37],[27,17],[35,14],[19,20],[40,31],[23,47],[19,29],[22,42],[23,22],[10,20],[22,31],[-3,13],[9,14],[17,13],[19,32],[3,19],[41,20],[32,21],[17,5],[8,305],[23,32],[3,21],[16,22],[10,34],[-4,28],[-7,5],[3,24],[16,35],[27,34],[12,23],[17,18],[14,21],[8,23],[2,21],[-6,50],[-6,24],[-11,23],[-1,18],[-16,35],[12,9],[4,19],[29,22],[3,11],[-4,27],[-10,26],[-26,40],[-10,22],[-11,39],[-40,29],[-1,21],[-27,1],[-18,12],[12,49],[-6,13],[20,41],[6,48],[6,22],[-1,25],[4,19],[-11,45],[7,22],[-5,27],[8,26],[-2,21],[15,13],[18,7],[18,19],[25,17],[22,8],[18,-14],[14,-4],[38,8],[27,-10],[20,3],[7,7],[44,16],[27,22],[34,11],[27,60],[21,19],[7,29],[11,9],[6,20],[-6,8],[19,17],[25,5],[22,-2],[13,-16],[11,-3],[47,14],[21,1],[31,11],[28,-12],[14,1],[29,-14],[5,3],[40,-26],[30,-9],[14,6],[24,-5],[40,7],[19,-4],[13,8],[33,0],[13,8],[27,-5],[22,10],[40,-21],[17,16],[40,13],[15,-2],[36,10],[27,14],[27,5],[23,32],[38,28],[24,7],[31,26],[14,4],[18,12],[14,-2],[10,20],[24,35],[6,25],[16,22],[9,30],[12,1],[17,22],[8,19],[8,35],[-5,10],[13,24],[10,5],[44,45],[8,17],[2,17],[-3,26],[-6,16],[5,15],[17,-5],[12,-14],[35,14],[4,-3],[31,3],[41,-11],[45,-18],[17,14],[26,5],[11,-5],[20,5],[37,17],[20,1],[14,11],[44,14],[35,-1],[8,11],[18,12],[19,22],[1,10],[35,13],[-7,23],[2,21],[-7,20],[-20,9],[4,25],[-3,28],[-6,6],[6,20],[-20,5],[8,32],[-10,13],[6,22],[0,20],[16,13],[-3,21],[8,35],[14,13],[-5,36],[15,41],[7,9],[32,4],[17,12],[2,15],[12,10],[14,26],[1,14],[12,15],[15,7],[13,15],[13,47],[20,21],[16,-1],[16,13],[10,28],[37,33],[-1,22],[25,29],[19,7],[12,12],[24,11],[21,22],[19,12],[40,-3],[19,-13],[25,-9],[9,8],[36,-2],[7,4],[26,-9],[21,-1],[30,11],[25,1],[41,-2],[29,-10],[32,-16],[10,-14],[71,-25],[15,-9],[28,6],[15,-8],[14,-16],[11,-21],[53,-33],[5,-12],[11,11],[62,1],[1,8],[15,5],[1,8],[49,3],[9,-7],[32,4],[9,7],[30,-3],[31,12],[21,17],[17,1],[46,21],[25,2],[21,-9],[58,-46],[27,-7],[13,-7],[24,-21],[16,-2],[6,-12],[32,-14],[39,-22],[6,-10],[-2,-16],[18,-23],[17,-8],[7,-14],[17,-5],[24,-35],[11,-27],[13,-7],[37,15],[8,-3],[31,1],[58,8],[9,9],[12,-1],[56,15],[29,-7],[81,7],[11,23],[23,36],[15,15],[15,-4],[10,11],[7,28],[22,31],[9,25],[11,18],[17,8],[10,22],[48,29],[15,27],[71,2],[47,-9],[131,-18],[44,4],[76,-9],[15,-7],[48,-7],[36,4],[9,-11],[18,1],[18,-16],[27,-2],[28,-20],[16,-31],[3,-27],[19,-17],[17,-8],[9,-18],[16,-1],[48,10],[9,9],[52,12],[11,9],[16,0],[32,11],[7,-4],[34,5],[38,1],[15,17],[14,-7],[7,19],[44,-2],[17,12],[10,-7],[15,1],[26,-9],[2,-5],[29,-10],[25,8],[41,3],[19,-2],[23,8],[27,0],[15,7],[26,3],[25,8],[17,14],[33,-2],[25,-16],[23,-10],[37,-47],[29,0],[30,-33],[19,-4],[71,-47],[38,43],[20,36],[11,3],[42,-4],[35,-14],[11,-9],[31,-8],[32,22],[21,1],[17,-11],[56,9],[6,-3],[30,6],[5,6],[35,7],[40,-25],[6,-14],[17,-5],[28,-36],[9,-24],[58,-45],[27,13],[15,-11],[25,-27],[3,-12],[11,-5],[11,7],[33,10],[-4,10],[14,8],[-395,708],[-57,65],[-17,49],[0,42],[12,12],[0,17],[15,9],[12,36],[-10,29],[-17,20],[0,16],[-9,33],[-12,15],[-8,24],[-12,18],[-9,54],[-11,38],[-12,24],[5,35],[-5,15],[1,28],[-11,8],[-3,17],[-26,34],[-60,44],[-9,13],[-9,63],[11,19],[35,37],[11,15],[1,30],[4,14],[-24,1],[-27,-3],[-94,-1],[-31,12],[-16,14],[-34,3],[-21,12],[-13,-8],[-28,2],[-29,-2],[-23,5],[-45,4],[-49,-1],[-38,-7],[-15,2],[-7,9],[-21,0],[-24,-15],[-16,4],[-8,-13],[-24,-5],[-23,-15],[-7,-19],[-30,-15],[-21,6],[-3,-6],[-24,0],[-8,5],[-24,0],[-17,-12],[-17,15],[-15,1],[-20,18],[-15,-6],[-27,0],[-26,11],[-38,4],[-12,8],[-26,9],[-9,-2],[-17,13],[-5,22],[-13,12],[-16,5],[-12,16],[-4,20],[-10,13],[11,20],[-5,10],[-12,3],[-15,17],[-24,4],[-6,20],[-12,0],[-15,21],[-15,3],[-14,20],[0,9],[-17,20],[-3,17],[-10,9],[0,12],[-12,27],[-17,12],[3,5],[-32,15],[-16,15],[-13,20],[1,12],[14,31],[-1,24],[18,23],[10,20],[18,21],[-7,46],[18,29],[0,12],[-11,21],[2,39],[24,31],[27,7],[19,37],[20,14],[1,9],[-11,24],[1,16],[15,9],[28,38],[6,18],[23,13],[33,26],[15,49],[4,29],[28,24],[5,12],[18,11],[35,12],[6,17],[-23,35],[10,15],[34,17],[20,-1],[47,6],[18,-4],[5,-18],[24,-9],[33,1],[22,9],[33,39],[23,42],[-31,26],[-2,12],[9,9],[72,17],[29,-8],[22,13],[28,41],[3,11],[-5,46],[-15,27],[5,15],[23,18],[16,22],[31,10],[23,21],[24,3],[8,25],[10,12],[50,-2],[19,10],[10,41],[27,1],[34,30],[25,1],[8,5],[7,21],[21,28],[16,-1],[17,15],[4,12],[-2,24],[8,8],[44,3],[16,7],[2,18],[18,9],[-5,22],[31,53],[5,52],[-4,60],[5,9],[20,5],[1,20],[13,17],[13,40],[24,21],[26,1],[12,6],[7,-7],[27,27],[15,62],[3,27],[21,54],[-1,26],[28,38],[6,13],[0,21],[38,54],[15,12],[25,4],[4,7],[31,28],[22,26],[20,12],[5,15],[0,34],[-5,12],[20,23],[-2,20],[27,13],[48,4],[0,20],[15,10],[13,23],[27,12],[47,0],[16,9],[13,38],[0,18],[8,21],[14,6],[26,19],[8,14],[-11,40],[-3,19],[7,26],[15,12],[21,7],[22,16],[1,16],[9,11],[40,17],[23,19],[33,16],[7,23],[0,28],[14,18],[10,2],[30,-3],[45,33],[11,17],[50,45],[8,17],[28,3],[19,23],[35,20],[9,21],[3,19],[15,18],[18,3],[20,27],[6,16],[20,16],[20,26],[0,29],[7,17],[15,18],[20,10],[46,38],[12,16],[24,9],[42,38],[17,5],[33,33],[9,1],[12,-13],[24,-4],[15,7],[13,17],[34,31],[34,6],[17,11],[12,19],[20,21],[27,18],[20,25],[7,1],[-4,-33],[4,-33],[12,-17],[-2,-27],[-10,-26],[2,-16],[27,-26],[9,-43],[10,-22],[1,-21],[43,-33],[4,-28],[9,-29],[24,-18],[3,-17],[15,-27],[11,-9],[29,-51],[18,-17],[53,-28],[23,-20],[7,-22],[4,-44],[17,-25],[7,-43],[7,-11],[28,-83],[45,13],[20,13],[26,2],[43,30],[0,9],[26,5],[30,13],[16,2],[7,7],[29,12],[53,-3],[9,3],[17,19],[36,-19],[10,-17],[25,-6],[22,4],[23,12],[18,24],[19,9],[19,-2],[12,-22],[23,-13],[20,-17],[13,3],[22,18],[42,11],[15,7],[21,2],[15,-4],[36,-1],[20,-7],[22,-17],[34,-6],[20,4],[28,0],[37,22],[26,7],[45,2],[68,-10],[43,-1],[22,5],[17,-5],[133,-4],[326,43],[213,-34],[101,14],[12,-24],[14,-53],[39,-47],[20,-13],[45,-11],[44,-19],[38,5],[23,9],[31,5],[29,9],[29,23],[27,2],[30,-6],[14,3],[30,-9],[24,9],[32,3],[43,0],[35,-6],[28,-15],[41,-5],[19,-10],[47,-2],[21,-9],[9,-12],[23,-10],[134,-126],[172,104],[164,14],[194,220],[102,116],[14,-3],[9,-14],[18,-10],[40,-11],[43,-31],[46,-15],[18,-2],[66,6],[26,-2],[23,-15],[13,-2],[34,-20],[47,-8],[52,2],[21,4],[11,7],[26,-10],[17,4],[18,-11],[10,4],[20,-11],[31,7],[41,0],[16,-5],[4,-9],[37,-2],[36,-7],[58,17],[14,-7],[20,9],[24,4],[49,26],[14,2],[26,14],[28,-13],[16,1],[30,-8],[13,2],[17,12],[29,13],[33,10],[179,132],[149,42],[112,32],[72,38],[53,-82],[143,43],[305,88],[327,-33],[178,65],[155,190],[83,223],[56,19],[10,14],[55,26],[23,0],[21,20],[22,15],[11,13],[26,18],[21,4],[36,22],[20,25],[19,4],[27,20],[2,9],[90,66],[4,22],[9,13],[75,68],[-10,364],[14,14],[23,46],[-39,11],[-15,559],[-23,37],[-17,39],[-2,13],[-18,34],[-7,33],[-10,25],[-1,35],[-6,33],[2,18],[-7,32],[4,33],[-2,23],[5,35],[-4,15],[-2,48],[13,31],[31,25],[14,27],[30,46],[22,57],[16,26],[11,39],[28,35],[3,34],[-3,37],[17,25],[6,26],[-4,29],[6,20],[-27,17],[-9,12],[-9,31],[-12,22],[1,38],[-16,17],[-23,20],[-40,54],[49,117],[10,11],[11,22],[-3,11],[16,21],[-1,27],[14,31],[20,25],[9,17],[32,46],[-5,7],[18,31],[25,13],[0,8],[23,34],[12,12],[14,-3],[31,25],[15,23],[8,19],[13,11],[37,7],[23,32],[22,22],[-1,14],[13,18],[24,17],[25,9],[43,5],[12,14],[3,29],[8,40],[31,48],[12,26],[46,44],[29,19],[14,46],[2,15],[14,27],[21,46],[21,38],[-8,24],[1,34],[11,23],[2,21],[17,21],[0,14],[15,23],[17,12],[4,10],[-12,20],[-2,33],[-23,47],[2,17],[17,18],[2,18],[22,36],[13,48],[3,22],[0,61],[13,32],[11,17],[1,10],[11,8],[8,-5],[17,14],[17,20],[2,28],[-6,12],[0,16],[16,22],[3,16],[-5,26],[5,20],[-6,45],[11,12],[15,30],[10,10],[6,43],[16,13],[1,11],[14,19],[32,11],[11,-19],[24,-17],[33,-42],[31,-14],[21,15],[23,0],[11,-6],[4,-19],[13,-21],[15,-11],[56,-13],[43,3],[15,6],[34,21],[28,12],[25,30],[16,7],[7,24],[29,3],[22,11],[14,20],[4,13],[-3,41],[20,33],[24,53],[11,9],[15,25],[17,9],[44,14],[27,-6],[62,2],[35,-8],[15,7],[41,-7],[33,-13],[15,-13],[15,-29],[37,-27],[19,-22],[32,-8],[10,-13],[9,-32],[31,-32],[33,-30],[29,-9],[43,-23],[33,-23],[17,-8],[23,15],[23,6],[47,2],[42,-6],[17,7],[-2,7],[24,21],[-2,14],[15,8],[1,31],[7,13],[-19,19],[-8,15],[-28,16],[-11,13],[-12,31],[4,25],[-17,19],[-9,25],[-19,1],[-28,12],[-17,16],[-13,44],[15,30],[3,26],[-7,47],[6,3],[13,32],[0,13],[22,21],[2,20],[-7,12],[11,21],[0,19],[17,27],[5,34],[8,12],[2,33],[-6,14],[-6,47],[0,42],[4,26],[29,61],[30,0],[26,19],[21,26],[11,24],[5,26],[12,20],[18,10],[28,11],[30,-27],[42,-14],[22,-18],[-4,-13],[23,-8],[13,1],[28,-5],[30,8],[19,-8],[30,9],[16,-9],[3,-19],[22,-11],[12,-16],[9,-20],[-5,-18],[11,-23],[15,-16],[9,-17],[-2,-19],[15,-18],[10,-30],[-1,-18],[3,-71],[129,21],[160,55],[17,-31],[1,-32],[87,-40],[44,-58],[22,-70],[123,-82],[122,-108],[20,-29],[102,-23],[34,33],[140,-48],[143,41],[99,17],[72,66],[124,11],[66,-30],[183,6],[7,-61],[34,-14],[121,-19],[71,44],[180,45],[7,20],[53,21],[61,8],[22,11],[17,57],[96,39],[90,29],[157,40],[39,35],[54,-7],[75,29],[680,6],[447,5],[1045,-98],[31,-4],[58,19],[29,-3],[35,0],[60,21],[60,28],[70,12],[19,5],[29,18],[33,6],[51,-7],[34,4],[28,-6],[43,-16],[41,-6],[42,6],[42,3],[20,-1],[25,6],[33,0],[63,15],[32,-3],[20,3],[35,18],[114,37],[44,11],[15,7],[37,-16],[41,-26],[33,-11],[65,0],[28,7],[35,2],[58,16],[11,11],[103,50],[19,5],[20,-6],[39,0],[37,8],[11,6],[132,29],[415,-253],[1036,-164],[94,-46],[115,-1],[94,-28],[87,46],[90,9],[80,12],[114,-29],[63,25],[76,18],[46,-10],[44,-187],[7,-48],[61,-9],[57,10],[74,-9],[42,-4],[49,-9],[94,4],[82,22],[41,-1],[30,-34],[30,-8],[16,-15],[30,-2],[38,7],[14,-8],[42,-10],[13,0],[33,14],[13,16],[6,24],[20,12],[48,5],[42,10],[102,415],[90,362],[84,343],[94,328],[8,-6],[10,-20],[25,-17],[10,0],[6,17],[11,4],[26,-2],[8,-8],[30,-1],[15,-6],[25,3],[19,-4],[19,-26],[27,-14],[4,-8],[78,-9],[23,-7],[10,11],[23,-10],[14,2],[29,-7],[19,9],[15,0],[11,12],[7,25],[15,16],[1,14],[516,170],[470,155],[446,147],[1,20],[38,22],[34,1],[9,10],[15,-1],[10,-12],[18,0],[12,-13],[19,6],[29,0],[12,8],[12,-10],[40,-12],[20,-15],[48,-5],[25,-11],[46,-4],[7,9],[14,-1],[29,21],[17,16],[21,6],[3,8],[17,3],[18,15],[9,-1],[16,9],[10,18],[21,9],[34,-10],[4,8],[19,10],[12,12],[14,33],[14,17],[9,0],[37,28],[10,26],[10,3],[14,22],[16,11],[16,-5],[27,29],[19,0],[6,13],[12,6],[4,25],[10,3],[23,30],[15,3],[8,10],[28,9],[16,10],[28,-6],[28,3],[97,-8],[288,-25],[309,-26],[208,-18],[960,228],[739,98],[63,-46],[108,-14],[134,-73],[54,-67],[35,-108],[30,132],[93,132],[87,128],[18,33],[61,29],[156,43],[146,28],[77,37],[353,50],[113,4],[90,62],[250,84],[102,120],[3,-15],[90,-42],[114,-86],[-24,-99],[34,-34],[51,-43],[34,-63],[14,-3],[57,-102],[4,-43],[38,-44],[127,-382],[111,-63],[61,22],[30,5],[76,-15],[111,-13],[48,14],[63,40],[13,40],[37,46],[-12,28],[22,30],[16,70],[34,21],[67,28],[37,96],[17,10],[76,18],[56,33],[56,-2],[175,-69],[80,-5],[83,-23],[35,5],[166,-100],[83,-4],[88,44],[63,-17],[238,150],[41,22],[34,86],[170,-11],[55,-133],[188,-88],[80,-69],[168,-39],[190,-44],[29,-39],[41,-135],[134,-99],[237,-4],[17,13],[83,6],[54,2],[113,6],[29,30],[200,-34],[130,52],[465,73],[13,-29],[216,-9],[47,18],[203,-99],[33,-48],[21,-51],[137,-31],[86,-91],[194,-100],[60,43],[109,3],[106,-27],[137,4],[114,-45],[273,159],[139,21],[77,78],[14,3],[36,17],[22,19],[17,0],[13,9],[40,13],[31,2],[16,-5],[31,2],[82,34],[59,41],[34,14],[15,18],[100,73],[44,38],[57,28],[42,1],[17,20],[203,46],[61,17],[40,-5],[32,4],[26,16],[21,-1],[19,-16],[30,-15],[75,3],[91,34],[48,-1],[107,-13],[119,-292],[-29,-62],[-36,-95],[-14,-233],[-124,-265],[43,-29],[39,48],[30,34],[40,37],[63,46],[68,42],[55,38],[80,33],[52,8],[117,1],[71,2],[107,8],[64,7],[238,43],[69,14],[48,12],[72,28],[46,24],[49,32],[45,48],[37,63],[33,70],[29,101],[11,46],[6,40],[2,41],[-3,44],[-5,41],[-10,49],[-13,51],[-24,78],[-56,155],[-98,264],[-15,48],[-12,63],[-18,145],[-18,159],[-7,162],[-38,197],[-12,53],[-7,46],[-21,98],[-16,53],[-17,79],[-25,92],[-13,66],[-17,54],[-5,25],[-17,48],[-8,26],[-31,74],[-68,149],[-43,86],[-70,120],[-59,111],[-123,237],[-73,139],[-116,221],[-43,85],[-29,49],[-12,28],[-10,35],[-11,45],[-9,65],[-3,78],[-10,74],[-21,107],[-21,77],[-26,67],[-19,44],[-33,61],[-12,17],[-79,99],[-62,66],[-105,104],[-71,75],[-74,82],[-66,82],[-55,83],[-44,77],[-46,94],[-29,65],[-53,134],[-34,148],[-17,81],[-36,151],[-35,150],[-66,460],[-50,365],[24,0],[75,-5],[166,-8],[68,-2],[130,-7],[64,-1],[113,-8],[90,-3],[105,-6],[55,-2],[106,-6],[33,-1],[44,19],[40,48],[30,40],[-2,29],[7,34],[24,59],[75,55],[32,12],[263,185],[34,20],[40,47],[45,29],[61,21],[35,-12],[47,-71],[49,-2],[70,-6],[88,-5],[44,65],[21,71],[49,87],[44,13],[55,-54],[29,7],[164,83],[124,86],[321,223],[101,71],[83,56],[93,65],[368,592],[271,436],[481,664],[358,107],[290,-428],[10,-14],[88,-318],[-313,-710],[-24,-31],[-11,-19],[-12,-47],[-29,-32],[-15,-12],[-1,-19],[-26,-34],[-42,-26],[-16,-25],[-4,-25],[-19,-31],[2,-11],[-12,-26],[-2,-41],[-13,-16],[-53,-50],[-12,-26],[-5,-25],[-11,-19],[-8,-3],[-12,-23],[1,-15],[-29,-16],[-20,-19],[-22,-54],[1,-38],[-4,-6],[4,-23],[14,5],[-5,-17],[-38,-39],[-1,-14],[-14,-11],[-28,-6],[-10,5],[-8,-14],[-32,-7],[-17,2],[-9,-10],[8,-10],[-12,-31],[-22,11],[-277,-1198],[226,-479],[346,-282],[111,-317],[147,-40],[38,-9],[205,-33],[137,109],[81,67],[167,237],[58,34],[253,244],[167,65],[185,98],[361,-1],[1151,255],[92,21],[950,210],[35,8],[12,7],[-145,-315],[14,-29],[27,-14],[10,-21],[28,-9],[20,-13],[12,-20],[20,-14],[37,-33],[19,-5],[8,-9],[34,-3],[18,3],[20,11],[14,-5],[24,8],[35,29],[33,18],[32,25],[6,11],[19,9],[9,-5],[25,17],[6,18],[24,0],[22,8],[20,0],[29,-8],[23,10],[34,-6],[18,-7],[44,0],[14,-8],[13,1],[14,-6],[28,7],[19,-5],[28,2],[13,-20],[16,-6],[5,-32],[2,-34],[14,-9],[35,-14],[42,-4],[59,-9],[87,7],[321,-476],[252,32],[255,56],[33,12],[18,20],[32,15],[17,14],[29,12],[18,19],[54,11],[38,-19],[32,13],[17,-2],[40,5],[149,93],[374,106],[74,51],[24,7],[386,164],[320,52],[276,46],[372,97],[348,90],[38,12],[38,-33],[104,-82],[29,-25],[120,18],[137,21],[106,18],[11,-18],[4,-41],[9,-62],[28,-9],[1,-17],[46,-17],[13,-33],[31,-48],[-53,-84],[17,-37],[20,-16],[-17,-87],[-53,-66],[17,-103],[-30,-51],[-1,-47],[31,-78],[-19,-26],[-44,-116],[-37,-163],[13,-26],[46,-27],[8,-28],[-7,-32],[2,-77],[-7,-27],[-14,-6],[-19,6],[-26,-5],[-22,-10],[-3,-25],[18,-30],[33,-37],[18,-45],[3,-16],[16,-37],[18,8],[81,-8],[47,-14],[24,5],[18,8],[7,-16],[34,-52],[11,-22],[-2,-5],[-39,-36],[-26,-27],[48,-60],[20,-13],[29,-5],[23,10],[19,-10],[26,-7],[24,-23],[10,-20],[9,-9],[22,-4],[7,-24],[26,-16],[12,-19],[3,-14],[14,-7],[27,3],[11,-8],[24,-6],[16,-9],[26,-27],[17,-7],[-2,-13],[6,-12],[-15,-11],[-7,-15],[14,-26],[29,-186],[22,-42],[6,-24],[18,-3],[8,-12],[35,-12],[18,-13],[15,-43],[-2,-21],[7,-28],[9,-19],[1,-14],[17,-47],[61,-90],[62,-116],[120,-226],[71,-132],[110,-208],[148,-105],[20,-1],[26,-17],[19,-5],[33,-15],[11,-14],[-5,-5],[69,-52],[298,-220],[384,-287],[277,-206],[-33,-133],[211,-365],[104,-181],[100,-174],[272,7],[367,8],[559,347],[74,46],[64,48],[64,50],[141,107],[111,86],[97,71],[67,52],[57,-8],[158,-25],[331,-50],[137,-22],[219,-33],[215,-30],[186,-31],[131,-20],[126,-24],[192,-34],[134,-24],[4,18],[24,39],[29,23],[80,43],[8,15],[8,36],[5,114],[8,35],[0,15],[117,239],[100,508],[293,608],[142,265],[249,484],[63,56],[85,65],[44,31],[61,34],[3,41],[22,98],[39,117],[13,17],[56,54],[43,1],[56,23],[25,14],[28,6],[60,7],[22,-25],[11,-1],[51,-18],[4,-6],[34,4],[48,-12],[22,-14],[23,-8],[15,-12],[29,-7],[16,0],[23,-11],[41,12],[4,-8],[37,1],[15,9],[16,2],[39,11],[20,2],[27,8],[30,5],[9,7],[43,19],[39,8],[12,13],[11,31],[13,20],[15,10],[19,26],[24,-3],[34,7],[19,0],[8,-14],[37,5],[3,6],[25,13],[34,-1],[26,11],[37,38],[19,7],[27,21],[24,10],[16,1],[72,-30],[67,-57],[64,-70],[93,-56],[7,5],[49,-107],[72,-59],[57,59],[34,18],[15,1],[35,20],[34,34],[33,11],[12,20],[15,10],[12,1],[14,-10],[12,1],[9,14],[47,3],[69,-39],[14,-38],[-3,-31],[1,-28],[34,-61],[9,-7],[12,-25],[-4,-20],[22,8],[24,21],[42,21],[13,9],[19,34],[34,21],[21,7],[55,1],[64,17],[32,3],[26,95],[69,41],[21,153],[27,27],[53,66],[80,46],[4,11],[62,38],[15,21],[40,24],[28,25],[30,16],[35,34],[18,26],[28,14],[11,10],[20,-1],[25,-15],[19,1],[61,-9],[17,5],[23,-7],[43,-6],[43,13],[37,16],[9,-2],[45,11],[13,13],[24,5],[41,20],[57,23],[32,10],[41,8],[21,13],[21,5],[41,-3],[61,6],[34,1],[37,6],[58,6],[49,-6],[11,-7],[19,-43],[-3,-31],[32,-13],[23,-1],[36,12],[15,7],[22,3],[19,-5],[16,1],[44,-14],[22,-10],[13,5],[20,22],[20,4],[35,1],[21,-3],[30,3],[67,10],[37,-1],[12,3],[32,18],[34,11],[34,-26],[166,-126],[41,-31],[213,105],[74,-69],[79,-58],[34,-27],[1,-11],[30,-34],[32,-18],[34,-14],[33,-26],[107,-52],[70,-41],[21,1],[99,14],[115,52],[17,18],[53,32],[68,21],[47,1],[84,5],[38,25],[53,11],[34,1],[61,31],[12,3],[49,-14],[21,1],[30,31],[7,10],[15,1],[28,-7],[36,-19],[40,-33],[3,-11],[27,-17],[19,-31],[28,-8],[35,-5],[42,-18],[20,2],[17,-24],[11,-5],[1,-29],[22,-34],[18,-13],[28,0],[29,-11],[45,19],[49,-21],[33,7],[34,-12],[24,-2],[32,-10],[22,-18],[38,-38],[9,-15],[11,-30],[14,-17],[14,-8],[10,-28],[39,-24],[32,-16],[7,-8],[12,-30],[25,-38],[22,-19],[33,-9],[3,-20],[-12,-45],[0,-13],[15,-19],[30,-30],[8,-14],[11,-34],[10,-9],[32,-7],[72,-58],[21,-2],[4,-9],[-7,-27],[-10,-19],[5,-34],[71,-43],[3,-17],[-19,-26],[-3,-22],[14,-20],[6,-33],[-2,-10],[7,-22],[13,-4],[17,5],[14,-7],[1,-19],[-7,-12],[18,-52],[37,8],[22,12],[21,17],[31,43],[58,106],[37,47],[30,25],[37,23],[25,9],[33,3],[51,10],[33,2],[53,-8],[63,-28],[41,-15],[34,-25],[56,-34],[17,-8],[46,1],[59,45],[14,17],[76,113],[16,30],[62,94],[29,49],[30,44],[12,39],[36,53],[81,75],[29,33],[30,-41],[32,-58],[44,-42],[35,-24],[-59,-95],[-6,-15],[16,-44],[-19,-13],[-21,-52],[-5,-31],[-9,-12],[1,-15],[-8,-33],[3,-35],[-22,-31],[-10,-6],[-35,-78],[-45,-51],[-75,-116],[9,-69],[12,-72],[-61,-66],[-44,-2],[-73,-84],[-39,-35],[-14,5],[-13,-16],[-19,-13],[-6,-24],[-76,-24],[-39,-16],[-14,-10],[-16,-41],[-24,-19],[-47,-22],[-43,-29],[-85,-9],[-119,32],[-49,-11],[-11,-17],[-77,-30],[-33,-49],[-28,-14],[-31,-52],[-18,-34],[9,-97],[53,-96],[89,-55],[10,-14],[77,-79],[31,-29],[42,-45],[17,-27],[-5,-28],[3,-29],[11,-17],[4,-48],[16,-36],[1,-23],[14,-24],[31,-35],[24,-16],[10,-12],[22,-1],[58,-35],[15,-16],[5,-15],[16,-12],[20,-31],[20,-12],[6,-25],[28,-46],[7,-23],[5,-44],[6,-19],[13,-18],[34,-35],[41,-34],[21,-30],[25,-14],[16,-14],[15,-28],[17,-22],[29,-22],[35,-41],[23,-15],[15,-25],[15,-8],[28,-23],[3,-24],[29,-30],[29,-5],[14,-27],[36,-25],[17,-33],[198,-36],[84,54],[131,32],[15,-9],[76,-75],[91,-95],[112,-116],[74,-78],[33,-38],[107,-29],[-24,-89],[47,-25],[118,-71],[41,-27],[118,-70],[50,-32],[65,-37],[129,-81],[160,-160],[108,-111],[74,-72],[160,-153],[158,-167],[-78,-181],[-78,25],[-89,50],[-52,20],[-89,4],[-69,14],[-92,59],[-135,-90],[-154,-35],[-114,-97],[-33,-37],[-57,-79],[-2,-62],[-16,-75],[-42,2],[-35,24],[-39,-36],[-50,-4],[-94,-105],[-22,-84],[-24,-58],[-56,-15],[-51,-7],[-71,-66],[-18,-91],[-18,-17],[-21,-14],[-22,-51],[3,-30],[15,-36],[27,-13],[16,-40],[5,-38],[8,-23],[26,-2],[36,-24],[5,-10],[7,-52],[15,-27],[12,-10],[0,-17],[27,-26],[-3,-15],[-68,-118],[-19,-34],[-36,-17],[-36,-24],[-12,-25],[-15,0],[-20,-8],[-21,-14],[-21,-20],[-43,-18],[-37,-21],[-11,-11],[-31,-7],[-16,-12],[-28,-47],[6,-25],[-7,-63],[-9,-24],[-21,-9],[-28,-27],[-4,-17],[-33,0],[-38,-36],[-21,-11],[-20,-45],[-3,-35],[-26,-23],[-17,-43],[-18,-7],[-18,-25],[0,-14],[11,-35],[-8,-36],[1,-18],[-32,-13],[-23,-41],[0,-21],[-13,-31],[-10,-18],[-11,-5],[-28,-4],[-4,-19],[22,-11],[23,-41],[-1,-12],[12,-36],[8,-36],[0,-24],[-6,-46],[18,-15],[-4,-54],[-12,-29],[-13,-7],[-5,-15],[38,-5],[-3,-10],[44,-24],[41,-89],[17,-89],[33,-80],[32,-45],[4,-67],[40,-37],[62,-24],[33,-61],[13,-3],[57,-6],[15,-47],[22,-36],[76,-51],[55,7],[22,-13],[13,-53],[-6,-51],[4,-58],[15,-12],[-3,-77],[9,-46],[-10,-66],[9,-32],[31,-40],[5,-21],[15,-44],[6,-27],[-1,-29],[8,-30],[10,-13],[35,-18],[52,-52],[64,-37],[9,-9],[13,-38],[21,-3],[31,-19],[32,-34],[32,-41],[52,-57],[31,-43],[6,-29],[37,-49],[32,-31],[12,-24],[39,-16],[30,-17],[57,-38],[15,-14],[22,-40],[68,-45],[33,-24],[43,-18],[50,15],[60,-48],[43,-23],[70,-9],[23,8],[53,-71],[14,-7],[15,0],[38,-31],[46,26],[117,29],[32,5],[39,12],[92,-49],[66,-17],[136,-27],[63,11],[69,24],[60,-6],[24,3],[16,-5],[43,5],[46,-11],[51,8],[10,7],[17,24],[73,8],[12,-7],[26,2],[30,7],[5,6],[27,10],[51,31],[11,1],[36,26],[17,17],[67,-17],[32,-18],[78,-20],[22,8],[15,1],[34,-16],[3,-10],[-4,-15],[15,-37],[16,-34],[4,-41],[-9,-19],[5,-9],[-3,-21],[-8,-11],[-3,-17],[15,-47],[16,-8],[9,-34],[30,-23],[22,-30],[14,-14],[5,-25],[-14,-38],[-10,-9],[-6,-19],[6,-17],[-10,-21],[2,-45],[22,-19],[-9,-5],[-10,-26],[8,-22],[-11,-12],[2,-17],[16,-28],[-5,-11],[-29,-26],[4,-34],[13,-7],[15,-24],[8,-44],[-4,-49],[1,-46],[4,-19],[14,-25],[10,-43],[45,-77],[7,-20],[11,-3],[15,-17],[26,-9],[9,-11],[10,-35],[18,9],[41,-2],[15,-6],[-2,-20],[5,-24],[10,-18],[41,-13],[7,-6],[19,-33],[5,-36],[14,-28],[27,-26],[30,-11],[35,0],[24,31],[20,-10],[19,12],[46,9],[16,-6],[24,30],[37,11],[6,14],[11,7],[42,-14],[13,-15],[12,-42],[-1,-31],[-16,-15],[4,-19],[20,-12],[11,-12],[0,-30],[9,-24],[21,-7],[8,-14],[32,-28],[17,0],[3,17],[17,-29],[23,-25],[23,-7],[9,7],[16,0],[19,-8],[15,1],[19,14],[12,-18],[12,-9],[28,5],[32,-12],[29,12],[7,12],[11,-5],[17,-24],[31,-23],[36,-14],[17,-2],[18,-20],[17,0],[22,9],[9,9],[14,-2],[14,-18],[28,-4],[28,-25],[13,-4],[5,14],[16,8],[38,-21],[15,-13],[30,7],[14,-4],[20,-17],[24,-2],[15,-24],[41,-30],[20,-9],[31,-27],[7,-27],[33,-29],[22,-8],[17,-23],[18,-43],[5,-21],[9,-7],[-20,-42],[2,-24],[-11,-14],[-2,-24],[-7,-17],[22,-5],[2,-20],[-15,-26],[2,-44],[15,-24],[12,-7],[17,-25],[2,-11],[-39,-59],[-12,-67],[21,-2],[29,-14],[34,-8],[0,-15],[13,-30],[38,-11],[138,-146],[111,-111],[42,-39],[77,-82],[205,-205],[63,-70],[121,-123],[45,-52],[131,-118],[116,-117],[95,-48],[29,2],[33,-18],[122,-76],[43,-26],[71,-44],[64,-44],[50,-26],[103,-65],[37,-21],[107,-66],[56,-28],[102,-38],[52,-23],[47,-46],[23,-49],[47,4],[50,-53],[36,36],[68,-44],[73,-51],[42,-32],[72,-43],[106,-60],[51,-34],[209,-132],[119,-85],[121,-82],[41,-29],[77,-63],[107,-53],[93,-32],[21,-9],[153,-59],[38,-44],[60,-38],[68,-45],[94,-30],[78,-17],[41,-15],[28,-6],[63,-9],[67,-7],[64,12],[2,26],[11,11],[-14,28],[-2,12],[7,23],[-21,41],[8,15],[8,35],[-3,24],[6,19],[-6,67],[17,32],[3,25],[17,21],[41,71],[8,15],[-1,53],[-16,20],[-16,56],[-11,15],[0,38],[29,34],[20,60],[39,36],[18,-7],[36,-9],[19,13],[31,-15],[10,-11],[19,2],[-23,-67],[17,-58],[126,-13],[31,13],[77,-55],[26,-14],[55,-4],[61,-34],[-5,-38],[18,-33],[28,-11],[-10,-64],[69,-70],[88,-65],[17,6],[29,22],[32,29],[48,17],[30,-5],[39,9],[25,-2],[36,3],[9,-11],[-12,-36],[-10,-183],[-18,-145],[-32,-129],[77,-65],[118,-89],[59,-144],[37,-76],[18,-50],[65,-132],[127,-44],[145,71],[88,104],[92,197],[173,131],[47,22],[68,88],[63,179],[27,36],[-2,27],[15,32],[-5,17],[8,25],[19,17],[14,6],[29,48],[5,16],[23,4],[33,-13],[18,1],[3,13],[23,0],[14,17],[13,56],[1,36],[13,5],[13,15],[10,27],[24,21],[14,3],[9,16],[2,20],[9,12],[7,29],[-3,22],[7,34],[13,13],[62,60],[20,42],[-34,119],[19,80],[35,35],[76,14],[64,4],[79,-10],[59,7],[15,15],[47,14],[21,16],[19,31],[8,30],[12,8],[16,20],[40,27],[50,-4],[27,-10],[29,-2],[44,-20],[33,6],[10,5],[65,-5],[18,2],[23,21],[13,26],[0,19],[9,22],[21,16],[48,57],[47,10],[45,45],[15,11],[59,20],[-81,181],[102,126],[10,126],[-4,58],[-17,130],[-44,90],[-36,91],[-6,35],[31,127],[11,20],[-27,90],[8,107],[-24,136],[18,171],[3,46],[10,100],[-5,26],[-24,47],[-60,25],[-53,-3],[-20,46],[8,72],[-7,80],[36,16],[-42,64],[51,40],[22,5],[62,-4],[33,19],[28,53],[-36,72],[-11,70],[-3,30],[-44,32],[-106,94],[-47,57],[-92,28],[-144,59],[-17,31],[-30,41],[-15,10],[-30,43],[-28,28],[-33,8],[-6,11],[-37,12],[-12,11],[-13,38],[-43,46],[-51,79],[9,27],[9,9],[-4,18],[-11,17],[4,45],[8,26],[5,28],[17,44],[115,75],[41,168],[54,15],[34,26],[14,27],[7,59],[49,35],[-69,67],[23,57],[87,52],[105,74],[46,52],[29,42],[42,13],[49,65],[26,72],[-2,75],[-14,93],[38,40],[98,40],[69,61],[155,159],[32,48],[63,72],[32,45],[49,44],[-14,103],[-12,59],[65,57],[3,47],[-3,52],[48,30],[-129,13],[-77,12],[-66,31],[-59,45],[-20,55],[-24,30],[-12,70],[-21,44],[-15,42],[-20,20],[-17,28],[-26,16],[-3,5],[-57,73],[22,10],[17,20],[-22,30],[-10,52],[-11,29],[-62,51],[-30,13],[-28,96],[-10,20],[-44,31],[-12,50],[-11,37],[-2,43],[-28,70],[17,27],[64,39],[15,-2],[23,51],[27,22],[17,21],[10,35],[-9,24],[4,51],[-20,29],[-24,13],[-12,55],[7,24],[-2,71],[-15,37],[119,21],[113,42],[142,22],[25,21],[21,9],[24,2],[62,17],[15,11],[35,5],[36,1],[29,13],[30,0],[62,10],[34,-8],[22,3],[26,-3],[18,-8],[13,1],[16,19],[45,14],[105,22],[42,-4],[25,11],[19,-2],[96,-36],[39,-7],[44,19],[26,36],[29,25],[21,37],[17,23],[12,29],[25,18],[-1,14],[-11,12],[-17,43],[4,27],[-11,46],[6,26],[-17,36],[5,14],[-6,18],[-19,5],[-14,14],[-30,4],[-58,3],[-14,4],[-15,16],[-24,83],[-19,35],[-19,13],[-4,9],[-22,19],[-5,17],[-50,37],[-13,17],[-15,37],[-17,18],[-10,33],[2,35],[-3,21],[-9,15],[0,20],[9,19],[0,31],[-6,31],[-15,17],[-16,5],[-12,43],[0,23],[-7,17],[1,19],[-9,28],[-1,21],[32,17],[3,12],[-13,26],[14,16],[14,-1],[4,15],[20,27],[19,10],[32,10],[31,21],[6,20],[21,10],[13,-5],[24,1],[49,35],[32,7],[10,16],[25,6],[17,40],[49,73],[27,49],[2,31],[5,27],[-1,18],[7,34],[16,37],[-9,21],[-12,46],[4,39],[33,58],[78,72],[66,40],[9,37],[17,26],[36,29],[18,11],[24,7],[19,22],[1,38],[7,22],[18,23],[4,38],[11,22],[37,8],[1,21],[22,45],[-4,27],[6,17],[33,43],[15,10],[21,32],[16,7],[27,-7],[21,1],[23,32],[24,16],[48,24],[30,24],[73,84],[55,54],[41,33],[58,59],[62,48],[15,17],[11,29],[10,35],[44,67],[16,17],[30,14],[31,8],[13,21],[25,18],[38,10],[-11,24],[18,41],[3,33],[20,33],[11,42],[-4,48],[2,51],[13,22],[10,35],[14,21],[8,37],[15,27],[11,52],[6,14],[22,11],[10,28],[-5,19],[-14,29],[-1,74],[-14,29],[1,27],[-33,89],[-7,59],[-11,22],[-9,52],[-36,44],[-16,45],[-13,21],[-22,27],[-61,61],[-95,60],[-13,18],[-10,37],[-23,48],[-9,52],[-14,30],[-18,19],[-36,43],[-20,16],[10,46],[-40,41],[11,24],[-24,44],[12,25],[2,52],[8,1],[12,19],[4,34],[9,40],[14,41],[9,39],[0,29],[-10,24],[-23,40],[-14,1],[-11,16],[-12,8],[-22,63],[-22,25],[-45,69],[-14,31],[-20,20],[-29,71],[-3,33],[-16,37],[-7,22],[-16,20],[-89,41],[-26,18],[-15,22],[-12,5],[-14,22],[-28,13],[-21,16],[-6,31],[-10,26],[-3,26],[-8,23],[-17,70],[-5,12],[-19,69],[-17,28],[-11,33],[-8,33],[-2,43],[-14,52],[3,11],[-15,28],[-7,86],[-16,33],[-1,56],[13,40],[0,26],[-12,22],[5,28],[25,63],[25,37],[-3,31],[-11,160],[9,33],[9,54],[17,93],[16,55],[0,64],[46,34],[-3,20],[-12,34],[-2,23],[11,4],[-6,24],[10,41],[-2,48],[5,58],[24,79],[11,14],[15,30],[-31,17],[-51,32],[-30,26],[-23,46],[-12,14],[-24,17],[-8,20],[-22,26],[-53,75],[-64,76],[-13,-10],[-41,0],[-11,17],[-23,5],[-32,-13],[-21,-1],[-25,-10],[-13,1],[-11,14],[-13,3],[-29,-4],[-14,2],[-20,23],[-24,37],[-30,25],[-14,34],[-40,32],[-18,10],[-25,26],[-26,31],[-31,57],[-39,-5],[-29,8],[-24,14],[-25,22],[-24,33],[-38,30],[-21,42],[-42,67],[-32,59],[-12,38],[-25,37],[-44,46],[-26,38],[-10,43],[-22,70],[-17,38],[-30,34],[-37,34],[-78,42],[-13,32],[-58,80],[-17,19],[-12,20],[-17,15],[-24,27],[-14,23],[-29,31],[-45,31],[46,76],[25,26],[-56,48],[-2,5],[-37,26],[-25,19],[0,11],[-40,31],[-14,16],[-179,9],[10,34],[26,47],[-81,15],[-68,28],[-57,58],[-42,9],[-70,19],[-51,16],[-96,40],[-40,7],[-91,19],[-67,-61],[-32,-12],[-45,30],[-43,22],[-18,47],[-4,29],[-22,14],[-62,66],[-2,43],[-20,14],[-11,26],[-19,19],[-16,-1],[0,16],[-14,5],[-8,30],[-12,-3],[-33,2],[-4,13],[-32,16],[-20,-6],[-12,2],[-9,12],[-36,6],[-24,13],[-5,16],[-21,25],[-8,46],[-14,7],[-36,3],[-36,-3],[-54,-18],[-29,-1],[-14,6],[-47,3],[-21,-12],[-13,0],[-12,-15],[-19,8],[-16,-2],[-24,11],[-19,2],[-36,20],[-30,-25],[-15,2],[-7,-23],[-13,5],[-26,2],[-17,-16],[-19,-136],[-19,16],[-26,-41],[-2,-30],[-33,-23],[-24,-53],[-50,-30],[58,-81],[-15,-18],[-30,-24],[-13,-30],[-11,-58],[-13,3],[-18,-4],[-39,-36],[-15,-47],[-21,-27],[-3,-16],[-18,-8],[-62,-7],[-95,2],[-182,-10],[-30,-35],[-38,-63],[-56,-28],[-6,-5],[3,-16],[-31,-42],[-28,-54],[15,-76],[-209,-89],[-136,2],[-121,5],[-41,0],[-58,-3],[-198,12],[-21,1],[-45,-17],[-34,-19],[-52,3],[-39,22],[-115,35],[-42,-14],[-47,19],[-71,-4],[-47,41],[-32,10],[-43,24],[-54,33],[-62,-27],[-88,12],[-73,-51],[-67,-55],[-59,-1],[-16,17],[-32,15],[-80,60],[-18,25],[-91,100],[-32,19],[-54,9],[-37,15],[-63,49],[-22,8],[-85,-28],[-13,-23],[-17,0],[-28,19],[-41,5],[-15,-4],[-60,14],[-32,-14],[-27,-2],[-22,-7],[-19,8],[-9,-12],[-142,-69],[-42,-29],[-95,-48],[-112,11],[-129,5],[-52,44],[-17,9],[-44,-18],[-43,4],[7,20],[-8,32],[-25,3],[-14,6],[-2,12],[-15,13],[6,10],[-8,15],[1,13],[-16,3],[5,33],[11,4],[-28,54],[-13,2],[5,14],[-5,22],[-11,-1],[-22,18],[-1,9],[-17,12],[-3,-17],[-17,-2],[-14,14],[-23,-2],[-15,6],[1,20],[-21,5],[-33,0],[-28,21],[-14,-4],[-61,64],[-6,25],[-25,38],[-2,13],[-35,12],[-13,-10],[-8,4],[-10,-12],[-15,4],[-95,36],[-6,4],[-2,20],[-18,16],[8,42],[-21,26],[-30,20],[-8,17],[0,21],[-10,36],[-9,6],[-40,40],[-16,22],[-39,29],[-21,30],[-5,16],[-14,21],[-13,9],[-35,4],[-22,23],[-29,-2],[-47,39],[-8,37],[-9,25],[-6,31],[-2,28],[-23,38],[-1,14],[11,21],[11,37],[-12,30],[4,29],[33,22],[13,0],[11,12],[-6,18],[1,14],[39,9],[15,18],[31,10],[17,20],[16,9],[3,18],[-3,24],[27,22],[7,19],[21,16],[8,24],[26,5],[24,26],[18,15],[4,19],[20,26],[11,25],[-6,26],[2,13],[21,27],[-7,12],[-15,6],[-7,87],[5,32],[45,50],[12,16],[-6,50],[19,7],[30,18],[3,9],[28,-4],[21,21],[18,28],[16,69],[0,22],[27,4],[22,-14],[23,50],[2,41],[31,52],[5,27],[9,29],[39,34],[-5,11],[141,67],[8,47],[193,28],[159,22],[121,0],[-2,31],[6,17],[25,32],[39,36],[13,51],[10,12],[14,5],[21,16],[28,29],[18,-29],[34,-22],[52,126],[-16,348],[96,201],[-13,17],[-3,26],[17,45],[-5,18],[-44,9],[-26,-25],[5,-31],[-12,-24],[-37,-10],[-6,1],[1,18],[-13,48],[28,27],[29,40],[50,2],[53,29],[40,17],[26,-20],[13,10],[1,22],[9,12],[25,0],[199,329],[-66,250],[-60,225],[-364,-57],[3,31],[26,30],[5,32],[12,36],[-5,12],[-40,10],[-31,-19],[-22,-27],[-35,-28],[-3,-25],[-9,-16],[-20,-8],[-66,2],[-63,-33],[2,-20],[-16,-13],[-33,-8],[-49,22],[31,91],[13,35],[78,168],[80,95],[26,16],[20,18],[44,30],[64,37],[76,31],[86,32],[36,24],[30,37],[15,32],[-8,10],[-5,73],[-23,85],[-38,127],[-4,30],[7,30],[24,53],[27,39],[26,24],[25,16],[23,9],[84,30],[32,9],[30,1],[87,-13],[30,7],[24,15],[33,31],[14,16],[24,39],[58,120],[39,65],[43,62],[38,44],[37,39],[87,87],[64,61],[243,217],[35,36],[39,46],[85,122],[60,109],[167,281],[86,145],[55,104],[76,150],[20,32],[105,212],[40,78],[33,69],[78,197],[179,460],[24,60],[23,49],[33,62],[38,62],[55,72],[129,153],[70,74],[59,56],[132,112],[84,73],[48,47],[70,78],[72,86],[26,33],[57,75],[47,65],[26,49],[15,34],[13,43],[13,54],[11,55],[6,56],[1,56],[-4,56],[-13,116],[-10,51],[-13,51],[-14,47],[-36,101],[-24,57],[-21,111],[-104,171],[-74,109],[-104,160],[-127,198],[-48,78],[-217,353],[-70,120],[-76,139],[-148,291],[-78,168],[-71,166],[-174,412],[-164,394],[-93,221],[-86,206],[-52,119],[-71,144],[-60,114],[-74,127],[-79,118],[-330,459],[-172,239],[-38,59],[-90,161],[-109,214],[-104,231],[-75,201],[-49,163],[-24,87],[-50,217],[-21,105],[-15,106],[-6,72],[0,73],[6,128],[-9,46],[-9,22],[-21,32],[-23,27],[-30,22],[-33,7],[-17,-2],[-22,-15],[-24,-47],[-11,-39],[-7,-79],[-8,-27],[-9,-17],[-32,-37],[-38,-22],[-62,-23],[-61,-19],[-62,-15],[-62,-12],[-77,-10],[-42,-3],[-43,3],[-42,7],[-41,12],[-25,12],[-24,15],[-32,26],[-27,30],[-24,33],[-19,36],[-11,25],[-11,39],[-5,63],[-2,116],[4,43],[58,286],[8,57],[4,57],[-1,36],[-8,45],[-10,38],[-15,38],[-32,48],[-26,30],[-36,35],[-37,28],[-68,48],[-58,34],[-84,42],[-75,28],[-69,19],[-68,13],[-69,8],[-403,32],[-433,35],[-102,14],[-102,21],[-100,30],[-97,38],[-68,33],[-92,54],[-65,46],[-67,52],[-54,51],[-44,47],[-45,52],[-51,67],[-41,62],[-40,77],[-47,121],[-38,133],[-30,129],[-59,273],[-53,280],[-54,278],[-45,248],[-64,290],[-56,188],[-47,165],[-39,180],[-42,260],[-48,299],[-12,54],[-22,63],[-41,89],[-56,109],[-52,93],[-50,80],[-125,188],[-38,55],[-43,54],[-172,192],[-130,146],[-179,198],[-229,212],[-196,178],[-174,152],[-292,260],[-240,213],[-268,234],[-226,196],[-48,44],[-263,227],[-166,141],[-191,165],[-206,177],[-98,86],[-187,171],[-403,366],[-141,127],[-44,44],[-30,33],[-113,131],[-61,74],[-69,81],[-87,108],[-68,93],[-34,53],[-66,109],[-35,64],[-43,93],[-25,59],[-21,56],[-45,128],[-42,125],[-19,62],[-34,124],[-18,73],[-22,121],[-16,124],[-15,134],[-58,510],[-2,33],[-12,99],[-22,199],[-34,300],[-1,47],[2,51],[10,75],[12,45],[26,55],[28,43],[46,58],[24,28],[153,167],[81,92],[35,42],[23,37],[20,42],[14,43],[7,37],[5,42],[2,53],[-10,57],[-29,78],[-7,28],[-15,103],[-3,38],[2,26],[7,28],[21,43],[20,24],[29,25],[51,33],[17,8],[29,21],[33,12],[41,18],[83,21],[57,2],[121,-14],[68,-15],[74,-20],[80,-29],[49,-22],[41,-23],[34,-22],[49,-35],[49,-42],[55,-54],[87,-88],[38,-29],[47,-26],[38,-14],[35,-7],[23,-2],[31,4],[46,15],[31,19],[28,27],[32,37],[29,45],[15,36],[43,106],[59,138],[63,140],[63,128],[95,201],[73,149],[34,77],[21,59],[8,49],[5,62],[-6,80],[-13,111],[-1,55],[7,51],[13,38],[37,64],[32,41],[18,17],[24,18],[77,50],[24,13],[139,87],[82,49],[72,37],[71,35],[50,21],[46,18],[39,12],[57,14],[123,22],[78,5],[162,3],[61,0],[66,-5],[30,-1],[55,8],[34,9],[31,13],[34,18],[31,22],[33,28],[68,63],[46,38],[38,36],[39,42],[33,45],[34,60],[22,45],[12,29],[10,39],[5,29],[1,47],[-17,166],[-1,68],[7,35],[10,34],[13,27],[16,28],[15,17],[60,36],[55,24],[33,8],[26,2],[53,-7],[24,-7],[54,-20],[55,-16],[57,15],[51,20],[26,12],[51,47],[24,33],[18,34],[12,37],[16,74],[10,29],[15,59],[-1,22],[7,48],[10,47],[12,38],[29,62],[14,35],[18,54],[26,90],[22,66],[19,42],[31,54],[66,89],[71,75],[64,72],[66,79],[25,32],[22,33],[21,35],[17,37],[15,37],[48,134],[21,67],[19,68],[17,68],[15,69],[13,72],[17,109],[11,103],[8,39],[27,104],[10,35],[29,68],[36,58],[37,42],[63,61],[31,27],[64,48],[32,23],[34,19],[36,17],[37,14],[38,11],[39,8],[183,30],[44,6],[90,7],[126,3],[59,3],[826,70],[53,6],[53,9],[52,11],[52,14],[201,59],[49,13],[49,11],[50,8],[77,9],[56,14],[86,9],[31,0],[139,-6],[21,-3],[50,-14],[19,1],[110,24],[54,9],[54,8],[54,4],[54,1],[54,-1],[55,-4],[86,-8],[80,-7],[80,-4],[81,-1],[80,2],[80,4],[189,14],[99,20],[65,21],[126,45],[66,26],[105,48],[46,23],[60,34],[62,36],[31,21],[128,90],[63,52],[62,54],[106,103],[102,118],[88,112],[76,92],[85,99],[103,108],[140,143],[169,172],[163,157],[195,188],[193,186],[48,48],[102,108],[53,52],[67,72],[44,50],[79,99],[49,70],[48,73],[59,99],[75,148],[132,277],[29,58],[27,48],[32,53],[69,99],[37,44],[74,82],[82,78],[73,60],[97,68],[96,57],[112,54],[127,48],[319,105],[177,77],[139,33],[498,138],[126,42],[121,51],[128,60],[57,34],[104,64],[82,59],[84,67],[53,46],[271,237],[100,81],[105,70],[75,44],[137,64],[59,23],[85,27],[65,17],[107,22],[147,17],[111,5],[128,-7],[237,-20],[223,-22],[48,-4],[455,-24],[178,0],[149,10],[165,23],[110,22],[117,29],[140,45],[141,55],[176,85],[246,135],[591,317],[568,306],[127,64],[134,58],[131,47],[123,38],[39,10],[152,34],[153,25],[90,9],[90,8],[77,2],[68,1],[85,-2],[152,-9],[387,-29],[470,-33],[1252,-88],[441,-32],[108,-3],[60,3],[57,6],[64,9],[62,12],[62,18],[64,20],[59,24],[63,28],[78,42],[239,144],[241,143],[1016,608],[1348,800],[110,66],[85,58],[68,48],[90,71],[45,38],[84,74],[93,92],[426,450],[45,50],[122,129],[186,197],[91,100],[71,84],[75,96],[73,101],[144,210],[157,225],[74,101],[87,105],[105,112],[99,92],[118,99],[102,75],[282,195],[515,357],[214,148],[364,248],[138,90],[64,37],[75,51],[43,33],[45,39],[46,42],[43,44],[83,98],[55,80],[58,102],[46,102],[102,257],[34,98],[28,101],[18,108],[9,97],[24,450],[7,98],[10,98],[12,87],[14,85],[12,67],[34,149],[26,96],[28,94],[65,181],[40,97],[40,90],[380,809],[109,233],[168,361],[25,58],[20,58],[16,67],[10,55],[7,65],[1,72],[-7,85],[-9,66],[-16,72],[-24,80],[-47,138],[-13,31],[-43,78],[-30,70],[-16,31],[-37,64],[-39,58],[-245,358],[-37,62],[-28,67],[-27,85],[-18,105],[-3,38],[0,60],[4,58],[16,79],[13,44],[118,343],[99,292],[26,68],[30,62],[39,67],[87,122],[22,36],[38,74],[24,67],[15,55],[9,41],[13,85],[11,37],[143,366],[90,230],[52,133],[111,281],[14,42],[11,41],[7,42],[4,42],[3,80],[4,49],[11,51],[15,49],[22,51],[29,56],[36,82],[133,358],[38,101],[38,65],[167,276],[15,30],[15,50],[4,47],[-5,37],[-17,53],[-18,30],[-142,194],[-140,191],[-27,35],[-29,33],[-89,97],[-78,110],[-29,63],[-18,64],[-49,221],[-6,33],[-1,41],[4,38],[8,31],[29,89],[20,23],[65,41],[31,22],[29,27],[37,46],[25,45],[16,39],[12,62],[2,29],[-3,47],[-19,119],[-16,58],[-29,52],[-20,25],[-127,112],[-93,99],[-40,48],[-37,48],[-34,49],[-34,52],[-74,122],[-29,56],[-28,63],[-18,56],[-18,71],[-46,225],[-8,67],[0,58],[10,57],[18,63],[22,49],[35,55],[26,35],[50,36],[130,59],[93,55],[55,36],[117,92],[16,15],[71,87],[63,-31],[62,-48],[10,-31],[14,-6],[21,-29],[27,-16],[19,-24],[19,-10],[33,-27],[11,-14],[2,-14],[-11,-40],[8,-44],[10,-42],[3,-40],[11,-15],[44,-32],[31,-13],[34,-35],[3,-20],[18,-32],[44,-2],[51,-30],[32,-9],[25,-5],[17,-21],[13,-27],[2,-18],[8,4],[20,-15],[18,-34],[31,8],[34,-11],[33,-8],[26,0],[57,11],[50,-6],[31,17],[37,28],[92,53],[47,13],[82,29],[57,16],[7,22],[-1,15],[-15,28],[-12,14],[-6,22],[11,12],[8,32],[28,23],[0,9],[16,19],[11,1],[3,12],[-6,20],[-21,42],[-7,29],[-18,25],[-13,47],[-15,36],[1,24],[-14,24],[41,14],[175,152],[34,-39],[38,-11],[42,-10],[104,-87],[20,-19],[53,-60],[29,35],[3,15],[16,36],[18,23],[30,1],[25,-11],[38,-10],[32,2],[18,12],[14,19],[-1,13],[12,10],[29,13],[11,10],[45,18],[14,15],[5,90],[24,23],[15,45],[9,4],[4,15],[25,16],[-7,21],[9,1],[-2,26],[-8,17],[-22,16],[-31,12],[-21,22],[-17,34],[15,17],[3,17],[12,16],[27,-13],[-4,-17],[52,4],[50,-3],[26,17],[11,2],[30,-14],[24,26],[31,22],[17,0],[14,7],[5,-6],[18,9],[42,26],[22,10],[14,1],[30,-10],[21,28],[47,28],[14,1],[31,31],[21,18],[45,33],[-13,25],[24,32],[14,33],[-1,7],[60,53],[5,29],[17,35],[11,2],[19,56],[5,43],[-2,27],[4,35],[-35,11],[-12,-11],[-39,-5],[-14,38],[0,27],[10,46],[-54,10],[-29,7],[18,23],[-10,9],[-48,63],[-46,11],[17,59],[24,59],[28,66],[26,65],[23,75],[23,92],[15,48],[16,37],[16,29],[38,53],[26,27],[76,72],[51,31],[47,17],[25,6],[49,4],[147,-18],[69,-11],[45,-11],[63,-20],[49,-19],[150,-67],[79,-37],[55,-30],[56,-35],[58,-40],[55,-43],[41,-34],[47,-45],[42,-41],[74,-88],[127,-160],[180,-233],[175,-221],[30,-28],[32,-27],[57,-34],[41,-18],[53,-32],[31,-25],[264,-232],[67,-52],[80,-50],[49,-34],[43,-34],[44,-42],[55,-61],[59,-71],[39,-39],[45,-37],[76,-60],[92,-62],[20,-11],[125,-55],[65,-22],[150,-50],[44,-12],[180,-43],[27,-6],[37,-1],[41,5],[40,13],[29,14],[34,24],[23,24],[19,24],[15,27],[23,70],[17,48],[18,42],[105,224],[20,35],[28,39],[33,37],[35,32],[45,32],[41,24],[74,29],[77,16],[75,3],[67,-8],[40,-9],[33,-10],[39,-16],[69,-38],[55,-35],[57,-40],[47,-27],[62,-41],[49,-44],[39,-41],[36,-44],[39,-55],[72,-122],[26,-40],[27,-37],[46,-52],[33,-32],[40,-34],[407,-322],[54,-40],[55,-35],[53,-27],[76,-33],[86,-26],[53,-12],[66,-10],[64,-4],[188,-7],[69,-2],[49,-4],[53,-7],[48,-9],[48,-13],[79,-28],[337,-132],[69,-32],[55,-34],[27,-22],[28,-28],[31,-39],[27,-46],[69,-169],[54,-140],[21,-58],[32,-115],[39,-165],[20,-67],[19,-41],[22,-41],[36,-52],[43,-49],[65,-54],[65,-39],[136,-70],[72,-35],[87,-37],[79,-28],[90,-27],[108,-28],[173,-48],[151,-56],[63,-24],[137,-81],[61,-37],[147,-107],[42,-28],[47,-28],[73,-39],[130,-89],[110,-112],[75,-93],[75,-95],[45,-46],[60,-45],[28,-15],[54,-23],[35,-10],[149,-34],[73,-20],[562,-173],[79,-29],[67,-32],[41,73],[21,24],[31,4],[23,-6],[14,19],[33,9],[4,14],[20,24],[-1,9],[15,30],[27,17],[17,20],[6,21],[-16,34],[-20,11],[-22,18],[-14,22],[-1,28],[8,17],[5,22],[19,28],[-8,17],[5,22],[-6,24],[-10,13],[-13,56],[4,26],[9,10],[25,6],[54,29],[39,12],[7,19],[-5,8],[7,26],[-8,26],[6,11],[-10,27],[3,15],[-13,61],[-7,7],[13,14],[2,21],[19,5],[-5,6],[26,10],[11,17],[11,0],[9,16],[33,8],[9,-3],[30,3],[19,6],[50,25],[33,2],[41,7],[18,-2],[25,-8],[16,3],[30,14],[6,15],[32,36],[39,35],[25,17],[10,3],[26,-7],[54,2],[12,6],[17,-4],[13,8],[5,24],[34,35],[4,14],[17,16],[27,-1],[10,-13],[5,45],[-3,17],[9,60],[-5,9],[3,23],[11,14],[24,8],[20,27],[-5,15],[5,16],[-7,11],[-2,23],[-6,23],[8,9],[-3,55],[-6,34],[6,23],[5,50],[-8,26],[3,18],[-2,33],[5,36],[0,36],[-8,35],[-11,23],[-5,24],[-1,35],[-4,10],[-63,8],[-19,9],[-39,26],[-42,18],[-21,39],[-7,24],[-4,31],[-23,46],[12,24],[0,26],[-5,19],[7,9],[-23,26],[-2,16],[8,4],[15,29],[19,24],[18,10],[2,17],[21,10],[7,31],[10,13],[-3,10],[11,19],[23,16],[20,-5],[49,0],[2,17],[12,4],[-3,8],[31,24],[12,1],[20,13],[14,17],[31,9],[19,22],[5,16],[32,31],[7,13],[1,27],[13,21],[27,17],[40,46],[21,9],[2,12],[35,11],[21,15],[4,16],[-13,13],[-26,6],[-24,29],[-53,29],[-27,6],[-2,12],[-16,7],[-15,-7],[-54,-5],[-22,-8],[-10,-10],[-12,6],[-40,-8],[-21,6],[-5,-8],[-18,8],[-30,-2],[-12,3],[0,35],[8,29],[24,36],[15,29],[11,0],[71,-14],[3,19],[-3,16],[-21,25],[-37,62],[-19,23],[17,53],[37,-11],[37,15],[19,25],[7,16],[18,22],[-3,23],[16,31],[21,22],[19,30],[11,63],[16,22],[-5,13],[2,20],[42,44],[3,13],[13,24],[0,17],[18,10],[17,31],[-6,12],[16,12],[-8,26],[3,14],[13,5],[17,16],[-6,7],[21,22],[11,1],[-5,20],[29,12],[-8,15],[6,4],[224,34],[51,-97],[23,-32],[16,-33],[10,-5],[22,-54],[18,-31],[19,-42],[26,-35],[15,-27],[1,-40],[6,-11],[21,-16],[20,-23],[25,-39],[23,-31],[10,-31],[3,-44],[-4,-18],[29,-75],[9,-29],[19,-30],[-7,-30],[10,-30],[13,-26],[5,-24],[19,-13],[48,2],[30,7],[25,12],[53,44],[31,16],[42,34],[4,13],[-10,10],[-37,7],[-15,29],[7,26],[30,43],[6,18],[20,42],[0,14],[10,8],[19,3],[33,-4],[20,-5],[13,12],[10,26],[5,24],[-3,51],[4,18],[27,34],[38,34],[13,5],[13,26],[28,30],[33,15],[37,6],[37,26],[9,13],[15,44],[35,32],[-4,31],[-20,49],[1,30],[10,34],[12,15],[25,17],[25,-4],[14,3],[34,33],[22,25],[7,18],[20,11],[12,31],[22,11],[11,0],[46,13],[25,2],[10,9],[12,23],[46,8],[17,14],[7,24],[28,39],[8,19],[21,29],[5,33],[-3,20],[22,41],[-3,31],[20,11],[21,0],[43,6],[35,11],[22,9],[23,20],[21,-5],[18,3],[14,-19],[32,-28],[22,49],[19,13],[36,11],[49,2],[56,7],[41,9],[26,12],[22,20],[3,12],[-8,21],[11,18],[19,5],[37,25],[14,22],[8,33],[-4,36],[16,57],[23,37],[10,29],[8,45],[8,20],[29,38],[27,19],[31,16],[10,12],[4,18],[-10,31],[-25,7],[-13,11],[-8,59],[26,74],[24,44],[9,8],[26,8],[32,46],[4,32],[-7,23],[-24,41],[-15,45],[-23,52],[-7,22],[-4,30],[4,23],[23,32],[2,30],[-8,5],[-38,0],[-9,19],[7,47],[8,10],[44,4],[35,20],[-18,32],[-22,9],[-77,11],[-34,16],[-18,20],[-19,13],[-14,17],[-48,34],[-9,23],[-11,11],[1,43],[-9,19],[8,15],[-2,11],[6,20],[-8,29],[-27,19],[-4,11],[7,25],[-2,16],[15,-3],[-9,19],[12,20],[21,-20],[6,4],[5,28],[-22,-3],[-1,25],[11,2],[-2,-13],[16,-3],[15,15],[-10,25],[-19,3],[8,13],[-29,23],[16,18],[11,40],[20,7],[34,28],[25,-5],[19,8],[22,3],[9,-6],[31,-3],[4,13],[-7,17],[3,13],[24,-1],[8,-9],[17,8],[29,20],[16,0],[25,8],[12,14],[28,8],[16,11],[-7,15],[-21,7],[4,21],[12,6],[10,15],[-11,15],[-3,23],[22,-2],[7,-14],[8,4],[9,29],[-23,-4],[-3,18],[2,41],[-7,35],[4,26],[-9,9],[-15,-13],[-6,4],[17,24],[-6,23],[-14,15],[-13,22],[-22,10],[-3,13],[5,17],[16,19],[19,-13],[13,11],[13,-10],[12,15],[16,4],[-1,18],[11,-12],[12,7],[25,35],[5,39],[-12,2],[15,6],[-2,21],[4,10],[8,-8],[9,20],[-1,12],[30,28],[1,15],[-15,-6],[-2,16],[-21,4],[-21,19],[11,11],[17,4],[29,-1],[10,4],[5,16],[14,10],[6,-26],[10,11],[0,18],[18,-15],[37,-13],[35,15],[11,12],[2,19],[28,21],[-20,8],[0,10],[16,11],[-5,11],[-3,30],[17,7],[1,31],[-9,11],[-18,7],[-5,8],[24,15],[-5,14],[-9,-8],[-19,13],[-4,21],[14,-13],[9,10],[-10,14],[10,48],[11,8],[0,18],[23,4],[22,28],[-10,11],[5,12],[19,10],[0,18],[18,-8],[22,10],[11,-15],[7,17],[14,1],[10,-54],[11,-5],[13,-16],[13,-8],[33,-10],[22,-4],[54,17],[19,15],[32,21],[43,14],[-3,27],[11,13],[0,10],[-19,4],[8,20],[14,7],[-1,12],[-13,3],[-7,-8],[-14,7],[3,9],[28,20],[-22,24],[12,6],[23,3],[3,27],[10,-2],[10,14],[-24,31],[7,14],[24,-6],[13,22],[13,5],[41,-3],[12,17],[15,4],[4,25],[7,11],[-27,14],[-13,-5],[15,16],[10,-3],[-14,20],[-19,0],[3,15],[22,0],[-2,24],[-23,2],[-1,13],[12,-10],[9,32],[-5,22],[12,10],[-15,22],[5,14],[11,7],[5,15],[-15,27],[-28,9],[-6,24],[4,14],[-3,21],[-14,20],[16,18],[-6,14],[2,27],[-12,23],[-29,23],[-6,26],[8,21],[-10,20],[13,15],[30,10],[9,11],[-1,15],[28,16],[13,19],[14,-4],[2,12],[12,9],[-5,12],[15,-3],[3,16],[13,10],[2,10],[14,-1],[10,17],[-17,7],[15,4],[12,14],[-4,12],[-26,18],[-1,20],[10,18],[-7,18],[-17,20],[0,14],[-12,57],[-6,-2],[-22,15],[0,23],[17,41],[-7,17],[6,15],[-11,8],[-7,28],[4,11],[-7,23],[6,8],[2,20],[34,33],[0,11],[12,21],[2,13],[-8,8],[9,20],[-16,8],[8,12],[-8,5],[-6,25],[-9,6],[9,22],[-21,3],[4,12],[-19,6],[-10,36],[-14,-5],[-15,4],[-1,17],[-30,0],[-19,25],[-38,12],[-10,12],[-10,-11],[-14,19],[-4,29],[-9,0],[12,13],[-1,14],[-16,9],[13,30],[-8,13],[7,22],[12,13],[-9,5],[7,13],[21,6],[4,14],[-6,4],[21,15],[-3,9],[40,27],[4,30],[16,17],[0,10],[-12,6],[5,21],[-14,13],[0,20],[-32,26],[-19,4],[-15,17],[-14,6],[-7,-7],[-9,18],[-9,-1],[-16,14],[-18,-6],[-1,8],[-26,23],[5,9],[-7,17],[-14,2],[-14,15],[3,13],[-7,11],[-13,1],[-17,-21],[-15,35],[6,17],[-9,13],[-14,4],[7,10],[-8,28],[16,15],[-23,16],[-15,4],[-2,15],[-16,25],[-15,12],[-22,-1],[-21,22],[-6,27],[-6,-1],[-22,29],[-7,16],[-36,23],[-13,14],[9,20],[-19,1],[-6,16],[9,10],[-9,3],[9,11],[-5,9],[9,13],[12,2],[5,14],[-9,3],[2,19],[-7,7],[-1,31],[7,10],[-7,9],[18,27],[-6,-1],[6,26],[-2,12],[-12,13],[13,3],[1,17],[-6,6],[13,17],[7,40],[8,5],[4,49],[11,14],[8,35],[8,9],[9,28],[15,11],[13,25],[-6,37],[-8,12],[11,17],[-10,15],[-4,22],[20,4],[6,36],[15,22],[24,24],[6,39],[1,51],[5,41],[-22,112],[15,36],[33,61],[-10,31],[1,34],[-7,4],[-5,26],[11,10],[-12,16],[1,20],[-21,61],[8,37],[5,2],[8,28],[-1,17],[12,15],[3,28],[14,24],[2,12],[23,2],[15,19],[-9,27],[6,9],[-1,32],[25,15],[0,46],[-6,25],[2,19],[-9,13],[-5,17],[5,27],[-4,6],[5,40],[-5,24],[-19,22],[3,5],[-20,13],[0,10],[18,51],[-8,5],[15,12],[-3,40],[-9,-2],[-12,10],[-1,20],[-20,-4],[-7,9],[6,25],[-5,18],[-13,2],[-11,67],[5,7],[-16,6],[1,11],[-19,15],[3,40],[-16,20],[5,11],[-19,13],[14,32],[6,-4],[18,17],[-5,12],[-12,-2],[6,14],[-15,24],[-2,15],[-11,2],[-2,20],[-12,15],[18,11],[5,14],[-17,10],[-14,18],[2,17],[-15,4],[-4,-10],[-15,6],[-18,15],[-21,-6],[5,21],[-9,-2],[-9,13],[-13,4],[9,17],[-44,33],[-9,24],[12,9],[10,44],[-4,19],[10,3],[-2,10],[10,19],[14,3],[10,12],[-3,23],[3,22],[-8,2],[10,36],[-12,21],[11,46],[-14,47],[4,17],[-12,30],[11,14],[-2,13],[-17,6],[3,17],[-11,7],[10,34],[-9,4],[-5,18],[1,34],[11,14],[-10,16],[18,12],[5,18],[-6,13],[-10,-1],[-11,14],[14,10],[4,14],[11,9],[-4,16],[17,9],[-10,22],[17,17],[7,-2],[16,23],[16,31],[10,7],[17,-1],[8,13],[-12,15],[12,14],[11,-1],[17,17],[27,2],[31,-15],[8,4],[37,-8],[49,0],[38,-4],[38,11],[17,-15],[25,-5],[6,-10],[20,2],[14,-6],[11,5],[28,-12],[6,-26],[27,-39],[15,-13],[19,-4],[-9,-11],[17,-7],[10,-13],[6,4],[21,-15],[34,2],[15,-10],[-1,-9],[28,0],[12,-7],[35,11],[7,-12],[16,-8],[9,6],[18,-2],[1,9],[21,14],[-2,9],[18,2],[8,-18],[14,-13],[13,15],[17,-10],[29,11],[27,-29],[29,-2],[18,5],[5,8],[-1,18],[16,17],[10,22],[12,13],[6,41],[-12,4],[19,11],[-1,13],[-14,12],[8,8],[-7,6],[5,22],[16,8],[-3,14],[-9,10],[9,17],[15,6],[-7,13],[20,10],[-15,28],[8,6],[-7,22],[7,9],[-8,14],[34,39],[14,10],[-1,12],[13,16],[4,25],[6,7],[-1,18],[12,8],[8,15],[-6,21],[7,25],[12,13],[4,28],[10,7],[-13,9],[14,21],[-7,8],[-52,-8],[-24,-20],[-6,-12],[-13,-1],[-7,18],[-36,-10],[-11,16],[10,11],[17,5],[-3,15],[-9,6],[-29,7],[-13,17],[-25,-10],[7,-17],[19,3],[12,-7],[4,-15],[-9,-8],[-16,17],[-10,1],[0,-21],[-12,-10],[-9,6],[-2,24],[-31,23],[-28,-12],[7,-10],[-10,-11],[-15,6],[-33,-4],[-12,7],[-18,-3],[-12,-16],[8,-11],[23,-14],[10,-12],[-9,-10],[-20,-5],[-25,8],[4,16],[-10,21],[-12,4],[-20,-21],[-32,40],[-13,1],[-1,-19],[12,-11],[-6,-21],[-16,3],[-21,19],[-24,10],[-24,1],[-32,14],[-16,-5],[4,-33],[-26,-17],[-38,-9],[-41,-2],[-15,-5],[-23,-14],[-62,-27],[-27,-1],[-24,6],[-18,13],[-26,36],[-10,27],[-15,30],[-23,19],[-35,17],[-10,20],[-25,14],[-9,0],[-28,-18],[-30,-2],[-14,-15],[-27,-14],[-16,-1],[-12,7],[-8,17],[-19,1],[-10,10],[-8,20],[-35,47],[-31,-9],[-11,6],[-7,22],[-1,26],[16,27],[1,25],[-15,10],[-9,24],[8,32],[39,16],[19,14],[21,-3],[4,11],[-16,25],[-1,10],[17,44],[-14,25],[-4,48],[-6,10],[-23,-6],[-12,13],[-12,55],[-1,36],[-11,6],[-35,10],[-32,25],[-27,-19],[-34,2],[-39,-8],[-38,-5],[-23,6],[-18,-6],[-9,-8],[-17,-32],[-36,-26],[-56,0],[-27,9],[-36,46],[-19,33],[-53,72],[-11,20],[-28,31],[-21,35],[-4,39],[-88,53],[-15,27],[-31,27],[-21,5],[-17,-2],[-20,25],[-16,40],[-23,25],[-1,36],[31,15],[2,24],[41,15],[9,-7],[3,-17],[9,-1],[12,22],[21,13],[22,5],[22,20],[13,-5],[12,14],[13,2],[32,-10],[39,14],[19,2],[19,31],[22,19],[-2,11],[-13,13],[24,19],[7,25],[-5,18],[6,41],[5,9],[-5,14],[-21,-1],[24,33],[-12,25],[26,5],[3,-19],[14,3],[15,25],[3,43],[7,13],[7,33],[9,8],[23,7],[20,21],[24,56],[32,26],[13,0],[9,11],[-3,35],[9,14],[17,-13],[13,41],[22,-11],[32,10],[16,19],[-13,29],[0,16],[9,23],[11,11],[-11,5],[-10,13],[27,47],[33,18],[10,27],[21,28],[5,29],[-2,28],[16,33],[9,6],[84,15],[45,4],[39,-10],[12,38],[19,28],[38,10],[2,9],[25,14],[23,-5],[26,19],[31,16],[17,-5],[18,26],[4,14],[32,30],[-4,25],[18,30],[-8,12],[6,32],[-9,22],[3,16],[-5,9],[-21,13],[-17,0],[-9,7],[-12,40],[6,26],[-9,43],[0,18],[21,21],[13,24],[5,23],[9,8],[-3,21],[-20,19],[24,24],[28,11],[15,21],[-4,32],[39,36],[5,11],[-5,14],[6,47],[-9,10],[4,39],[6,18],[-3,26],[-9,14],[0,21],[17,15],[-1,9],[11,14],[0,31],[-13,4],[8,56],[11,36],[22,36],[-5,33],[7,17],[-17,18],[-1,17],[11,20],[-7,36],[-22,20],[-5,19],[7,18],[-9,5],[11,21],[17,9],[-10,14],[9,15],[26,26],[9,28],[8,13],[-3,24],[-8,19],[3,49],[-28,36],[7,24],[-11,24],[2,48],[-19,12],[17,10],[-11,28],[10,14],[-10,13],[0,17],[6,10],[-10,30],[3,9],[33,40],[7,1],[16,30],[-5,13],[7,24],[14,8],[6,30],[20,18],[11,-9],[18,13],[21,-2],[56,14],[33,46],[-2,14],[19,10],[1,16],[32,8],[7,22],[32,5],[6,11],[31,18],[28,30],[23,11],[24,23],[10,1],[36,23],[27,9],[17,24],[17,13],[5,-2],[31,16],[27,29],[18,13],[37,33],[10,13],[35,22],[14,2],[17,14],[15,28],[8,47],[16,16],[12,27],[23,22],[39,29],[14,23],[27,54],[12,16],[0,35],[5,27],[-6,36],[-3,66],[2,23],[-7,36],[-4,80],[14,76],[-131,-58],[-125,-10],[-142,9],[-114,36],[-91,49],[-182,28],[-127,3],[-128,49],[-123,41],[-124,25],[-78,125],[-78,99],[-72,104],[-87,74],[-117,94],[-46,-2],[126,89],[110,99],[69,149],[11,100],[10,118],[69,212],[32,103],[6,11],[17,9],[3,10],[16,10],[11,20],[13,3],[21,28],[16,59],[3,41],[9,24],[11,14],[7,18],[3,30],[15,21],[-12,26],[-16,11],[0,11],[-222,297],[-79,108],[-157,209],[-49,68],[-107,143],[-158,208],[-78,104],[-81,105],[26,47],[34,21],[6,12],[35,23],[25,36],[9,37],[-17,31],[-8,31],[-14,9],[-27,42],[0,10],[-24,14],[1,7],[-18,14],[-2,18],[-18,41],[-12,15],[-22,9],[-16,27],[-1,24],[-6,24],[-10,4],[-11,20],[-16,9],[-25,30],[3,8],[-18,17],[-6,14],[-9,-1],[-12,26],[-17,5],[1,8],[-23,14],[-37,-3],[-7,7],[-15,-3],[-15,8],[-8,18],[0,23],[-19,10],[-19,-2],[-16,12],[-15,-4],[-15,8],[-16,34],[4,19],[-2,15],[25,10],[7,20],[21,23],[7,0],[8,21],[24,29],[28,20],[23,4],[45,24],[11,12],[-3,10],[11,11],[13,25],[4,16],[-14,5],[8,5],[-10,11],[14,20],[6,21],[18,5],[-3,24],[-58,4],[-23,10],[-4,-10],[-29,7],[-7,10],[13,8],[-19,23],[-23,1],[-15,7],[-21,22],[-89,4],[-10,-11],[5,-17],[-24,-22],[-40,8],[-18,9],[-11,16],[-37,-3],[-37,5],[-7,6],[3,14],[-5,27],[-19,7],[-26,0],[-27,-14],[-20,-2],[-6,-16],[-13,-6],[-23,-1],[-14,6],[-20,27],[-22,11],[-30,23],[-30,3],[-20,-16],[-28,-11],[-13,3],[-15,-10],[5,-22],[18,-5],[1,-17],[-34,-5],[-6,19],[-26,11],[-14,-8],[-34,-9],[-21,-18],[-13,-26],[-13,-12],[-18,6],[-16,-3],[-31,22],[-18,-13],[-15,15],[-28,-4],[-21,2],[-13,16],[-31,-3],[2,-11],[-19,-9],[-9,13],[12,11],[-25,18],[-18,-6],[-13,15],[-1,13],[-14,9],[2,9],[-12,8],[-12,18],[4,16],[-19,21],[-19,10],[-3,23],[-13,25],[-26,-4],[-24,10],[-25,-4],[-22,27],[0,13],[-11,13],[-16,9],[-2,34],[-9,11],[9,10],[-1,9],[14,20],[1,9],[14,-1],[33,82],[-10,3],[0,24],[10,23],[-22,17],[-1,8],[-16,24],[-13,3],[-19,18],[-26,15],[-13,20],[-10,6],[-8,18],[-11,4],[0,17],[13,20],[-9,21],[11,18],[-18,37],[9,13],[-1,14],[-13,12],[-16,37],[-44,39],[-20,43],[-12,7],[-15,21],[-7,21],[-23,38],[3,10],[-10,41],[-10,26],[0,13],[-12,35],[-1,19],[-29,14],[3,7],[-8,15],[-18,15],[-65,234],[-28,100],[-66,239],[-41,29],[-3,15],[-15,-2],[-16,6],[-7,13],[-11,-4],[-1,14],[-22,18],[-16,20],[5,12],[-50,23],[-7,14],[-5,26],[-28,14],[-6,25],[1,14],[-9,8],[-8,21],[-1,19],[-12,8],[-2,18],[-12,27],[-13,116],[14,16],[-3,14],[-13,8],[1,12],[13,19],[31,23],[4,7],[4,42],[13,23],[14,5],[5,27],[-8,11],[-6,30],[10,30],[-5,18],[5,30],[8,15],[1,26],[-26,22],[9,17],[-9,15],[-23,10],[-1,17],[-16,6],[-11,35],[-16,21],[-1,8],[-24,2],[2,17],[-18,5],[-8,18],[-19,13],[-5,14],[-19,1],[3,22],[-13,1],[1,18],[-7,7],[16,17],[4,23],[-8,23],[6,13],[-12,34],[-18,15],[-10,28],[-31,6],[-11,11],[-17,3],[-1,16],[-12,-4],[-6,36],[-15,28],[7,4],[-15,10],[-5,-9],[-13,12],[-12,21],[4,10],[-1,26],[-5,17],[9,17],[-11,24],[14,12],[-16,13],[6,12],[-10,16],[-18,3],[-17,9],[-18,19],[-20,6],[-5,8],[-14,-5],[-5,-11],[-17,5],[-5,15],[-13,13],[-23,35],[-1,15],[8,11],[-17,-4],[-14,10],[-11,29],[-15,9],[2,11],[-9,7],[-17,-4],[-10,13],[-14,4],[-12,22],[-14,-2],[2,17],[-9,12],[-17,-1],[5,10],[-10,16],[16,10],[4,13],[-19,23],[9,14],[-21,17],[7,13],[-12,5],[11,12],[-3,9],[12,-2],[0,14],[-15,2],[12,12],[-3,21],[-7,6],[15,9],[-19,20],[5,9],[-15,7],[-4,14],[16,20],[-2,13],[12,24],[-8,9],[9,16],[13,9],[5,20],[10,11],[-8,11],[3,9],[-10,5],[10,13],[-2,16],[11,3],[-1,52],[-15,-17],[-16,15],[-10,-1],[-9,-40],[-32,0],[-10,12],[-8,27],[-12,3],[-18,-7],[-5,7],[6,17],[-17,15],[-32,-10],[-14,7],[-16,18],[-18,-2],[-10,12],[-17,9],[-18,3],[-15,-14],[-22,-4],[-6,16],[-13,12],[-10,-7],[-19,5],[-5,-13],[-21,-15],[-28,-12],[12,-9],[-14,-2],[-17,-20],[6,-12],[-21,-7],[8,-14],[6,-26],[-23,-25],[7,-15],[-4,-19],[-23,-9],[-6,-30],[7,-6],[-17,-52],[-20,-7],[-9,-14],[-14,3],[-2,-12],[-26,2],[-13,-10],[-8,-32],[-21,0],[-12,-6],[3,-13],[13,-6],[-9,-21],[-14,-16],[-17,-6],[-16,4],[3,-8],[-18,-3],[-11,-20],[-28,-2],[-16,-14],[-10,-20],[-13,7],[2,-22],[8,-10],[-23,-10],[-16,-12],[5,-8],[-29,0],[2,-10],[-16,-12],[-35,-12],[4,-6],[-37,-9],[-5,5],[-14,-10],[-18,-3],[-17,7],[-5,-9],[-28,0],[-8,-20],[-20,-7],[-4,-16],[-22,-4],[-46,1],[-13,13],[-26,13],[-31,12],[-19,-13],[-18,12],[3,18],[-15,14],[-28,4],[-1,10],[-47,11],[-31,16],[-20,4],[-10,22],[-19,3],[-32,-19],[-47,11],[-24,13],[-12,0],[-6,10],[-21,-2],[-20,8],[-28,3],[-5,8],[-24,-1],[-11,14],[-18,0],[1,10],[-24,9],[-24,1],[-23,24],[-11,-4],[-23,17],[0,4],[-41,13],[-11,-3],[-8,-13],[-12,0],[-3,-12],[-41,24],[-16,-3],[-12,-19],[-31,-10],[-4,-15],[-21,4],[-14,-21],[-72,-10],[-36,5],[-17,-5],[-3,8],[-54,-34],[-13,1],[-1,-28],[5,-17],[-9,-16],[-25,-12],[-53,-5],[-15,2],[-20,-11],[-11,4],[-22,-30],[-77,-19],[-37,-17],[-14,10],[-29,-10],[-8,9],[-27,7],[-23,28],[-24,14],[-16,18],[-20,2],[-14,16],[-17,3],[-8,9],[-23,2],[-23,16],[-9,-7],[-17,1],[-14,-12],[-22,-2],[-11,5],[-23,-10],[-10,4],[-17,-16],[-5,6],[-38,-47],[-14,-8],[-224,-2],[-219,102],[-99,259],[8,169],[-77,130],[80,191],[-146,132],[-96,92],[-168,58],[-128,-31],[-153,-29],[-73,181],[-63,156],[-64,157],[-152,352],[-49,122],[-93,307],[-165,351],[-27,54],[-74,-30],[-92,203],[-12,300],[-31,132],[43,35],[-122,168],[-133,192],[-73,-17],[-174,259],[-156,207],[-100,139],[19,66],[9,38],[38,143],[208,204],[82,76],[66,65],[-23,10],[-7,22],[-5,-3],[-3,36],[-13,0],[-5,11],[-27,6],[-8,-3],[1,17],[-8,24],[-26,24],[1,18],[-34,6],[-7,10],[-37,-10],[-14,-10],[-12,-29],[-13,8],[-11,-7],[-26,3],[-40,-4],[-16,7],[-22,-17],[-9,4],[-37,0],[-14,14],[-29,2],[-22,5],[-33,-39],[-12,-5],[-31,-30],[-14,-8],[-37,-4],[-17,-11],[-71,-32],[-13,-23],[-6,-26],[-33,-35],[-6,-13],[-35,-44],[-40,-39],[-13,-7],[-14,-21],[-24,-5],[-22,-12],[-9,14],[-18,2],[-18,13],[-47,6],[-11,4],[-48,-12],[-13,-21],[-14,-13],[-35,-16],[-33,-19],[-13,-24],[4,-12],[20,-18],[3,-17],[-5,-45],[-13,-11],[-4,-16],[14,-20],[2,-11],[15,-19],[26,-19],[7,-1],[17,-18],[14,-6],[22,2],[3,-22],[15,-25],[8,-45],[-21,-26],[3,24],[-3,15],[-25,33],[-7,16],[-36,20],[-14,-1],[-25,12],[-7,30],[-13,21],[-18,11],[-10,15],[-11,3],[-22,-18],[-25,4],[-32,-2],[-14,24],[11,14],[-9,30],[-30,16],[-36,7],[-9,16],[-40,22],[-15,16],[-4,20],[-22,33],[4,16],[-5,20],[-16,10],[-9,16],[-81,44],[-13,2],[-35,29],[-39,16],[-10,20],[-19,11],[-10,22],[-21,15],[-8,12],[-4,21],[-47,66],[-17,14],[-15,34],[-29,38],[-45,36],[-20,45],[-25,44],[-10,23],[-15,9],[-16,23],[-4,20],[-49,50],[-8,24],[-13,16],[-16,46],[-17,33],[-6,30],[13,36],[-11,25],[6,18],[-2,12],[15,14],[7,26],[10,3],[32,23],[7,64],[34,6],[12,16],[8,21],[-6,8],[9,19],[14,10],[9,17],[15,43],[1,15],[16,30],[-5,35],[-15,23],[-14,37],[-5,22],[-44,25],[-25,34],[-17,12],[-17,6],[-10,14],[-24,14],[-5,16],[-13,9],[-12,25],[4,13],[-19,47],[-12,10],[-12,-6],[-17,34],[-17,6],[-20,21],[5,9],[-9,49],[5,18],[-17,13],[-11,22],[-11,7],[-11,19],[-20,8],[-32,38],[-23,7],[1,11],[-22,20],[-186,111],[-201,-42],[-47,-202],[-111,-97],[-160,36],[-124,163],[-179,124],[-115,-109],[-63,-49],[-120,-89],[-37,4],[-267,36],[-139,-54],[-229,83],[-139,171],[-160,153],[-11,64],[-159,41],[-218,6],[-148,-78],[-185,-94],[-176,-117],[-144,-94],[-213,16],[-218,10],[26,-255],[-61,-200],[-24,-210],[20,-214],[20,-188],[79,-237],[-14,-210],[-11,-216],[22,-218],[2,-1],[-83,-13],[-23,-1],[-102,10],[-55,-1],[-101,-17],[-86,-39],[-59,-2],[-48,13],[-53,3],[-48,13],[-20,12],[-49,44],[-29,15],[-29,25],[-15,17],[-41,58],[-30,31],[-94,65],[-46,30],[-16,22],[-31,33],[-27,37],[-22,39],[-10,11],[-37,23],[-14,19],[-25,79],[-6,112],[-11,28],[-38,-2],[-42,9],[-104,31],[-53,50],[-40,33],[-18,7],[-39,4],[-40,-3],[-22,4],[-32,11],[-78,14],[-33,20],[-46,21],[-88,13],[-27,10],[-17,13],[-110,89],[-44,40],[-36,71],[-48,58],[-74,61],[-23,24],[-12,47],[-18,51],[-28,54],[-30,50],[-19,20],[-23,18],[-30,13],[-89,12],[-38,2],[-99,1],[-15,5],[-29,18],[-62,6],[-21,9],[-57,35],[-36,38],[-22,49],[-54,4],[-49,1],[-67,15],[-47,5],[-79,15],[-9,5],[-80,66],[-34,36],[-45,55],[-88,84],[-40,36],[-106,91],[-42,40],[-56,29],[-28,10],[-55,7],[-61,-3],[-59,2],[-64,-6],[-13,5],[-40,25],[-20,70],[-12,25],[0,68],[3,29],[-24,96],[-25,57],[-9,10],[-46,28],[-102,68],[-75,23],[-114,31],[-65,48],[-82,64],[-30,26],[-26,16],[-115,89],[-73,59],[-44,28],[-57,49],[-78,62],[-14,9],[-102,81],[-34,28],[-8,159],[-6,85],[-2,83],[-5,42],[-2,78],[4,31],[-4,44],[66,113],[140,260],[68,126],[75,135],[-26,192],[-12,70],[-3,29],[-9,22],[-19,30],[-38,46],[-52,44],[-84,44],[-16,22],[-32,17],[-23,20],[-19,56],[-40,54],[-35,55],[-5,38],[4,23],[0,41],[-36,97],[-2,24],[13,73],[32,88],[17,31],[8,62],[-11,42],[17,62],[31,33],[11,5],[81,20],[37,14],[24,26],[10,38],[2,73],[-10,24],[-55,51],[-60,98],[-6,31],[5,27],[-10,22],[-20,36],[-37,80],[17,82],[-3,55],[-5,44],[-35,84],[-11,68],[-15,27],[-6,20],[-19,34],[-26,27],[-15,37],[0,25],[8,19],[2,64],[-23,14],[-40,45],[-10,21],[-46,56],[-49,49],[-22,9],[-53,8],[-23,-2],[-48,42],[-51,48],[-10,18],[-15,59],[11,33],[23,20],[38,8],[29,13],[70,23],[36,19],[51,34],[45,113],[5,51],[1,110],[4,51],[-16,44],[-2,27],[-17,69],[-52,64],[-30,25],[-62,46],[-32,26],[-21,22],[-56,83],[-61,-36],[-10,-15],[-53,-40],[-52,-20],[-45,-3],[-64,4],[-25,68],[-26,86],[-31,122],[-52,52],[-39,14],[-60,-19],[-60,-23],[-10,-2],[-53,3],[-47,18],[-12,10],[-24,30],[-28,20],[-27,15],[-22,23],[-41,63],[-18,39],[-4,40],[0,45],[9,72],[-33,83],[-37,36],[-35,69],[-31,102],[-45,50],[-22,42],[-30,26],[-56,3],[-42,23],[-11,32],[-38,51],[-66,9],[-31,0],[-17,-5],[-17,-15],[-19,-8],[-13,59],[-37,46],[-13,40],[-26,34],[-89,83],[-67,40],[-43,41],[-51,81],[-42,63],[-14,31],[-15,48],[-24,91],[-18,37],[-36,6],[-26,23],[-5,16],[-11,10],[-25,7],[-35,6],[-18,17],[-25,10],[-17,11],[-40,12],[-16,21],[-27,13],[-16,12],[-13,18],[-24,6],[-13,25],[-24,15],[-7,11],[-18,7],[8,28],[-10,15],[-4,20],[-14,-1],[-5,8],[7,25],[9,12],[-3,32],[12,39],[7,61],[-10,28],[-13,16],[6,18],[-3,13],[-26,45],[-9,21],[-15,18],[1,17],[-19,24],[-6,30],[-19,12],[-3,12],[-29,14],[-28,1],[-25,17],[-36,19],[-19,5],[-8,9],[1,13],[-24,-2],[-52,12],[-18,6],[-7,10],[-3,24],[-10,3],[5,17],[12,5],[-4,8],[-18,8],[-13,18],[-9,-1],[-4,26],[-15,11],[4,8],[-9,12],[-1,17],[-29,23],[-17,24],[-12,0],[-9,11],[-4,22],[-14,14],[-38,15],[-23,-5],[-16,10],[-13,18],[-11,-5],[-3,21],[-17,0],[-29,13],[-22,2],[-18,19],[-22,3],[-8,9],[-22,6],[-19,11],[-14,-14],[-15,12],[-18,2],[-35,17],[-4,7],[-26,11],[-9,9],[-27,5],[-12,14],[-18,33],[-9,-6],[-14,12],[-30,97],[-26,77],[-20,45],[-38,35],[-145,58],[-49,23],[-37,21],[-89,138],[-17,19],[-35,21],[-90,17],[-102,4],[-64,52],[-61,54],[-56,45],[-227,197],[-92,83],[-78,68],[-56,55],[-75,68],[-147,132],[-293,267],[-211,84],[-123,51],[-289,-1],[-128,-33],[-125,-28],[-114,-30],[-127,-28],[-163,-10],[-110,-24],[-152,-24],[-132,-44],[-98,-35],[-107,-36],[-175,-58],[-71,-29],[-64,-19],[-218,-56],[-168,-37],[-17,2],[-54,24],[-122,57],[-65,33],[-491,220],[-144,63],[-138,61],[-186,80],[-121,48],[-45,12],[-123,14],[-96,82],[-52,53],[-120,104],[-36,33],[-233,203],[-62,52],[-84,67],[-226,156],[-202,139],[-144,178],[-180,216],[-118,139],[-55,54],[-112,101],[20,71],[63,204],[47,147],[15,148],[19,165],[1,29],[7,41],[11,104],[25,84],[19,49],[39,123],[25,63],[22,65],[4,68],[-2,13],[7,87],[-57,189],[-28,94],[-24,89],[-24,71],[-159,236],[-42,28],[-52,-11],[-52,-7],[-59,5],[-74,4],[-50,22],[-63,14],[-55,29],[-64,69],[-43,60],[-30,33],[-57,51],[-43,33],[-39,26],[-73,75],[-48,42],[-120,82],[-65,35],[-58,17],[-70,125],[-26,85],[-77,77],[-59,83],[-63,70],[-8,16],[-3,28],[-14,30],[-14,39],[-34,23],[-39,22],[-67,17],[-48,1],[-16,4],[-15,11],[-35,39],[-26,40],[-35,42],[-20,15],[-23,38],[-22,13],[-64,80],[7,13],[-20,24],[-42,28],[-16,24],[-52,42],[-40,45],[-36,12],[-36,5],[-36,0],[-33,-5],[-37,7],[-38,12],[-54,-11],[-33,11],[-9,21],[3,17],[-4,18],[-13,14],[-28,13],[-87,26],[-67,17],[-61,1],[-24,8],[-79,82],[-23,22],[-67,44],[-30,26],[-40,26],[-26,25],[-35,17],[-56,43],[3,42],[-16,37],[12,17],[9,46],[9,30],[15,36],[12,40],[10,76],[4,13],[23,49],[39,38],[3,13],[20,22],[11,28],[10,41],[2,33],[15,57],[10,29],[-11,21],[25,34],[14,50],[0,27],[-12,9],[-2,20],[26,29],[6,62],[-12,25],[-8,39],[2,21],[-2,88],[-8,22],[-39,48],[-14,24],[-11,5],[-45,2],[-35,17],[-46,0],[-18,22],[-10,30],[-13,13],[-13,23],[-32,-3],[-48,6],[-49,13],[-56,39],[-25,56],[-100,28],[-51,52],[-18,10],[-43,13],[-54,1],[-47,4],[-22,4],[-32,34],[-11,9],[-65,17],[-45,15],[-42,5],[-38,21],[-52,34],[-51,37],[-27,33],[-36,19],[-84,59],[-28,28],[-26,36],[-39,31],[-9,19],[-1,26],[5,15],[18,23],[39,18],[35,19],[32,48],[10,115],[8,58],[-4,27],[7,55],[-21,42],[-13,47],[2,43],[-6,30],[3,30],[-14,7],[-10,14],[-4,16],[-23,28],[-5,55],[2,21],[-7,31],[-1,30],[-7,21],[-21,24],[-37,53],[-11,37],[-11,17],[-2,13],[-10,13],[4,16],[-6,19],[-12,22],[-17,18],[-14,27],[-10,7],[-13,28],[-33,59],[-29,28],[-18,19],[-8,20],[-37,40],[-17,25],[-7,3],[-38,-3],[-10,5],[-19,-6],[-21,-16],[-22,-6],[-31,-22],[-45,-3],[-12,13],[-28,15],[-17,2],[-18,-18],[-27,-2],[-5,-13],[-29,-10],[-13,-10],[-24,0],[-24,-7],[-10,21],[-14,0],[-6,8],[-19,-1],[-30,11],[-13,0],[-33,17],[-25,2],[-14,-11],[-21,7],[-37,27],[-8,16],[3,28],[8,6],[-8,31],[-15,7],[8,31],[-6,37],[-11,10],[-17,-3],[-18,5],[-9,-14],[-24,5],[-12,24],[-19,-8],[-12,9],[-6,-9],[-21,-2],[-29,-23],[-26,9],[-11,9],[-20,-8],[-40,20],[-57,-2],[-11,14],[-20,5],[-35,53],[5,13],[-18,2],[-2,13],[-15,-1],[-10,25],[-18,31],[-11,-1],[-9,26],[11,10],[-2,23],[-20,-2],[3,26],[-9,7],[1,16],[-7,16],[7,11],[0,25],[9,34],[-9,2],[-6,20],[4,11],[-7,25],[2,17],[-9,1],[-1,17],[-8,5],[-26,41],[10,32],[10,18],[-12,50],[10,12],[6,-3],[18,13],[-4,14],[8,4],[-2,23],[6,8],[-5,18],[12,10],[16,23],[-7,18],[10,21],[-9,6],[-28,41],[-18,32],[-14,35],[-21,84],[-27,43],[-27,24],[-17,8],[-27,5],[-28,9],[-24,3],[-43,12],[-19,22],[-14,8],[-34,4],[-46,-1],[-21,-7],[-26,-34],[-49,-29],[-45,-21],[-83,14],[-38,3],[-28,11],[-16,15],[-8,20],[-25,24],[-6,10],[-52,-13],[-59,-17],[-28,-2],[-86,13],[-60,-7],[-61,0],[-37,-15],[-61,-35],[-45,118],[-35,89],[-79,172],[-23,53],[-60,158],[-32,89],[-63,192],[-44,112],[-31,89],[60,172],[13,48],[18,29],[24,73],[19,63],[16,43],[53,119],[35,91],[-1,52],[0,102],[4,150],[-8,135],[-3,37],[-2,61],[-11,102],[0,96],[-4,81],[-11,64],[-19,215],[-9,115],[-78,9],[-90,11],[-76,19],[-76,8],[-40,-7],[-79,-9],[-19,0],[-124,9],[-59,9],[-203,13],[-38,7],[-107,27],[-56,17],[-14,2],[16,18],[1,24],[-3,20],[-20,26],[-11,-6],[-29,0],[-36,10],[-11,9],[5,11],[1,31],[-9,36],[-21,28],[-13,24],[13,0],[16,12],[-4,15],[-11,-4],[-2,15],[-11,8],[9,10],[-13,41],[12,44],[-16,-3],[-11,33],[-11,14],[2,28],[-23,21],[-13,6],[-31,7],[-25,31],[-8,19],[-11,1],[6,10],[-5,20],[-14,9],[-4,17],[-16,-4],[1,18],[-12,-7],[-8,11],[-14,3],[-9,-7],[4,-9],[-9,-7],[-15,13],[7,9],[-7,12],[-23,25],[-10,-22],[-14,-2],[-18,20],[-4,-5],[-15,13],[11,11],[-3,7],[-15,-5],[-17,2],[7,11],[-7,6],[-5,20],[-25,2],[-3,16],[8,4],[-4,17],[-34,11],[-12,16],[-30,50],[-23,-5],[-20,1],[-20,17],[1,12],[-30,5],[-6,24],[-13,-2],[3,14],[9,-2],[-4,14],[-20,-3],[-6,22],[-10,12],[2,12],[-10,2],[-17,-18],[-11,18],[11,12],[-41,12],[2,13],[-14,6],[-23,-3],[-1,13],[11,9],[-2,11],[12,9],[-18,15],[7,21],[-13,12],[-11,-10],[-10,7],[-10,20],[4,13],[12,7],[-11,6],[-19,-5],[-6,8],[7,15],[12,3],[-6,15],[-18,0],[-7,-7],[-11,11],[-2,18],[13,3],[-14,16],[9,17],[-24,11],[-3,-20],[-12,5],[1,17],[22,36],[-22,-3],[16,16],[-7,25],[-243,152],[-119,84],[-120,105],[-111,105],[-41,49],[-146,233],[-140,62],[-56,35],[-1,-2],[-49,35],[-20,12],[-13,-16],[-65,28],[-22,14],[-55,67],[-101,-21],[-48,3],[-40,-1],[-83,-8],[-57,57],[-74,102],[-144,150],[-135,137],[-34,-9],[-52,5],[-37,9],[-33,21],[-31,23],[-44,15],[-31,6],[-34,4],[-55,17],[-29,-16],[-21,-18],[-19,-69],[-39,-16],[-39,-11],[-39,-9],[-37,9],[-39,32],[-76,-11],[-48,24],[-46,42],[-73,45],[-77,30],[-44,10],[-40,4],[-78,5],[-53,-7],[-44,-8],[-75,-24],[-63,-26],[-52,-8],[-41,-1],[-55,-26],[-20,-4],[-51,20],[-41,21],[-32,8],[-70,31],[-64,20],[-21,23],[-33,25],[-41,38],[-45,34],[-49,31],[-28,0],[-71,47],[-36,35],[-38,30],[-30,16],[-49,12],[-47,17],[-35,7],[-36,-8],[-14,7],[-18,22],[-26,11],[-38,5],[-48,-12],[-38,-21],[-82,-18],[-43,-3],[-33,12],[-17,11],[-90,35],[-50,15],[-59,10],[-27,-4],[-21,17],[-15,27],[-18,11],[-33,8],[-18,0],[-27,-21],[-35,5],[-26,14],[-38,5],[-76,-38],[-212,-2],[12,-11],[-7,-36],[-7,-4],[15,-18],[-11,-25],[-10,-6],[5,-33],[-6,-20],[18,-6],[-10,-17],[6,-7],[-4,-28],[9,-1],[-13,-26],[3,-20],[12,10],[21,-22],[2,-16],[-8,-15],[21,-14],[1,-16],[-14,-13],[30,-40],[-13,-9],[1,-14],[-9,-5],[-1,-24],[8,-7],[-3,-55],[17,-28],[22,-9],[17,-25],[37,-13],[8,-25],[18,-11],[11,-15],[2,-17],[8,-14],[1,-19],[11,-7],[5,-17],[18,-3],[19,-21],[19,-8],[-4,-28],[9,-25],[11,-5],[-2,-11],[12,-6],[-7,-11],[20,2],[8,-18],[-9,-19],[12,-7],[-9,-13],[11,-2],[-2,-13],[9,-9],[-14,-19],[8,-7],[-5,-23],[9,6],[12,-11],[4,-13],[15,-1],[-2,-20],[-7,5],[4,-21],[-16,-32],[28,-31],[-20,-25],[17,-13],[-7,-20],[16,9],[12,-15],[-8,-14],[11,-14],[-1,-9],[12,-9],[-5,-19],[14,-16],[15,-1],[21,-19],[2,-20],[-44,-15],[-26,-25],[-31,-18],[-75,22],[-39,7],[-27,10],[-30,-1],[-53,-7],[-26,3],[-34,-2],[-9,5],[-96,6],[-18,-3],[-78,-30],[-32,27],[-53,22],[-45,23],[-61,26],[-20,17],[-29,14],[-10,11],[-50,18],[-54,27],[-39,22],[-29,26],[-135,84],[-69,24],[-119,65],[-112,52],[-129,29],[-44,-37],[-69,-31],[-48,-12],[-94,96],[8,19],[-5,15],[-61,66],[-15,9],[0,36],[-30,21],[11,7],[-24,14],[-6,11],[6,8],[-23,28],[0,29],[-10,16],[10,9],[-18,25],[3,13],[-21,5],[-1,13],[-15,7],[6,6],[-20,9],[-185,42],[8,-27],[-9,-88],[-24,-57],[-4,-26],[-95,-8],[-38,-12],[-53,-34],[-90,-63],[-185,14],[-87,12],[-89,8],[-79,-7],[-76,-9],[-149,8],[-65,2],[-211,16],[-109,-5],[-61,-4],[-91,-3],[-204,52],[-88,9],[-172,-28],[-141,40],[-58,16],[-62,22],[-60,17],[-140,46],[-149,46],[-234,90],[-35,33],[-154,77],[-157,85],[-1,160],[-17,103],[15,249],[98,130],[84,157],[-53,86],[-117,151],[-85,106],[-169,39],[-176,42],[-80,21],[-315,442],[-190,271],[54,191],[50,185],[43,151],[-58,317],[-54,283],[-55,287],[-209,189],[-99,91],[-128,112],[-106,99],[-161,144],[-95,87],[-206,185],[-198,182],[-215,78],[-64,23],[-108,36],[-62,23],[-250,83],[-119,34],[-71,30],[-20,142],[19,-12],[13,66],[-50,76],[-20,137],[-74,111],[-101,154],[-66,94],[-261,19],[-102,7],[-123,11],[-84,8],[-129,11],[-48,1],[-125,12],[-131,13],[-101,8],[-245,24],[-82,-17],[-263,147],[-85,46],[-128,71],[-134,77],[-177,109],[-87,46],[-200,96],[-88,37],[17,-3],[8,14],[24,1],[1,28],[17,29],[-15,15],[8,14],[-7,4],[5,14],[17,1],[17,23],[-22,6],[-1,32],[13,15],[-4,8],[33,41],[6,29],[-6,11],[15,25],[3,16],[-11,18],[6,18],[-12,9],[14,17],[5,17],[-8,7],[2,16],[-8,9],[7,21],[-17,19],[3,9],[-9,12],[8,11],[-3,19],[12,7],[0,16],[-14,38],[-9,10],[6,12],[-10,9],[4,13],[-9,4],[0,14],[-12,6],[-7,25],[26,26],[-8,7],[-14,42],[6,40],[-18,4],[-2,8],[-14,3],[-4,21],[-13,2],[9,20],[-9,16],[-6,29],[5,13],[-8,18],[-2,24],[-10,19],[4,14],[-11,14],[3,19],[11,25],[106,80],[-61,173],[-30,95],[-24,81],[-34,91],[-32,92],[-62,185],[-46,120],[-15,42],[-72,185],[-34,89],[-50,143],[-6,7],[-28,2],[-39,10],[-19,13],[-8,12],[-48,14],[-26,13],[-23,-1],[-29,-10],[-50,20],[-22,12],[-20,24],[-18,3],[-19,19],[-7,29],[-32,41],[3,18],[-15,9],[-18,30],[-20,7],[-7,12],[12,20],[-8,7],[1,13],[9,-2],[-7,30],[-19,-1],[7,14],[-7,16],[6,1],[-14,35],[1,11],[-20,23],[3,17],[-22,27],[-21,1],[2,13],[-19,18],[-12,29],[-16,-1],[-9,8],[-24,8],[-19,-3],[-12,5],[-12,-5],[-16,12],[-14,-16],[-12,7],[-20,-6],[-14,6],[11,29],[20,11],[23,58],[10,5],[12,31],[-3,11],[11,23],[2,19],[9,17],[-2,26],[8,11],[-5,16],[16,5],[-11,20],[22,9],[-3,14],[17,3],[-12,10],[5,6],[29,14],[4,18],[26,8],[5,27],[21,7],[11,9],[14,32],[-8,8],[-11,33],[12,3],[4,19],[36,1],[8,-6],[14,12],[30,6],[1,6],[26,-4],[6,21],[14,-5],[10,5],[21,-9],[3,-12],[12,14],[18,-6],[5,11],[10,-9],[18,31],[22,-1],[-7,16],[3,7],[18,0],[-1,27],[-9,15],[19,6],[-13,10],[3,13],[-5,19],[8,15],[-10,17],[-11,7],[1,16],[-16,2],[6,13],[11,-8],[6,13],[-15,7],[4,12],[18,5],[0,14],[24,27],[-10,2],[-1,19],[-10,15],[-4,18],[9,9],[-22,29],[9,16],[-4,18],[-18,17],[7,10],[17,-1],[8,7],[-6,19],[4,34],[-15,6],[8,20],[-7,7],[12,13],[-13,19],[10,11],[-4,11],[-18,7],[5,26],[11,0],[-6,15],[15,21],[-10,15],[15,3],[-27,17],[15,17],[-19,13],[14,6],[9,23],[-7,2],[11,15],[-12,22],[7,4],[-7,19],[-20,25],[-4,12],[-15,9],[-41,100],[-14,20],[-44,70],[-27,30],[-6,22],[-12,13],[-1,18],[-7,1],[4,18],[17,13],[-14,6],[-5,-9],[-3,15],[18,7],[-13,34],[5,20],[-26,10],[2,11],[11,2],[0,11],[15,2],[5,14],[-15,5],[6,13],[17,-5],[-8,12],[10,32],[5,-6],[11,12],[9,-5],[-6,21],[4,22],[13,7],[-9,18],[-12,49],[-9,1],[-2,16],[13,24],[-3,15],[7,13],[10,4],[0,23],[-10,6],[16,18],[2,27],[14,13],[4,27],[16,0],[7,19],[7,1],[4,18],[6,-4],[10,15],[8,28],[-7,5],[5,16],[-3,46],[11,16],[-3,15],[28,26],[-1,21],[6,5],[-7,26],[11,20],[-3,8],[18,18],[4,16],[-9,11],[9,23],[-8,26],[-6,6],[10,21],[-8,17],[0,17],[-6,9],[8,7],[-7,23],[0,30],[4,17],[-8,6],[-7,18],[4,8],[-9,44],[-19,20],[-4,13],[-12,14],[-5,15],[1,23],[-10,37],[6,22],[-5,16],[0,26],[5,30],[-10,29],[6,30],[21,40],[14,89],[17,36],[43,62],[0,111],[-29,51],[-52,61],[-14,35],[-19,54],[-41,147],[-29,28],[-35,48],[-30,94],[-57,77],[-89,57],[-30,4],[-162,-2],[-77,-68],[-28,-73],[-26,-75],[-15,-48],[-29,-98],[-33,17],[-30,8],[-50,2],[-17,4],[-34,-2],[-20,-8],[-118,-35],[-29,-15],[-23,-6],[-27,5],[-6,39],[-11,55],[-13,27],[-23,34],[-38,43],[-64,-14],[-50,-9],[-51,-27],[-49,-15],[-16,34],[-32,44],[-73,74],[-94,11],[-116,21],[-274,105],[-115,61],[-25,20],[-127,67],[-64,51],[-87,53],[-89,53],[-82,63],[-74,69],[48,14],[37,24],[50,29],[25,9],[97,74],[43,52],[11,33],[-93,63],[-49,32],[-66,52],[-93,95],[-43,51],[1,53],[-99,108],[-55,42],[-18,17],[-38,51],[-50,99],[-20,49],[-25,53],[-23,113],[-28,44],[-10,86],[-29,21],[-60,61],[-41,25],[-15,14],[-52,22],[-38,36],[-28,34],[-25,25],[-6,12],[-15,50],[8,58],[10,60],[2,28],[-9,47],[-8,16],[5,122],[-7,28],[-22,43],[-5,23],[-22,51],[-24,43],[-7,22],[-28,37],[-43,74],[-9,39],[1,13],[15,37],[16,25],[33,37],[4,8],[3,60],[24,82],[24,42],[21,84],[7,15],[-16,62],[9,95],[28,108],[-8,90],[7,90],[58,108],[44,74],[11,51],[6,144],[-98,174],[-64,75],[-104,115],[-7,13],[-32,30],[-110,112],[-30,20],[-68,70],[-26,31],[-15,44],[-6,26],[-55,43],[-7,48],[-4,49],[4,50],[-3,14],[-32,64],[22,27],[7,23],[2,34],[-7,44],[0,83],[-4,121],[-14,119],[-44,97],[-7,113],[-30,72],[-6,12],[-18,4],[-18,14],[-14,0],[-47,30],[11,27],[-18,21],[-12,31],[-24,10],[-16,15],[9,14],[-5,11],[-16,-2],[-21,-16],[-16,14],[-2,25],[-18,98],[33,150],[32,50],[121,185],[-227,77],[-263,17],[-126,8],[-114,17],[-99,-49],[-264,-135],[-112,-58],[-388,14],[7,169],[-65,131],[149,31],[131,89],[80,157],[-32,33],[-218,34],[-37,-44],[-189,69],[-33,26],[-13,42],[-21,15],[20,15],[-9,14],[-18,-5],[-5,23],[19,-6],[3,14],[-11,7],[-15,-5],[-12,17],[19,-1],[14,7],[0,-10],[20,2],[1,19],[-7,-5],[-14,7],[12,3],[15,32],[-5,17],[-21,-4],[0,11],[-17,-4],[10,15],[-13,-1],[1,16],[9,-2],[1,17],[-13,-5],[-23,14],[12,5],[-18,18],[14,3],[-4,14],[9,15],[13,6],[-14,21],[3,31],[-7,3],[3,16],[0,31],[11,7],[-11,11],[19,10],[-6,5],[10,10],[0,21],[29,-4],[0,8],[14,3],[-2,10],[13,2],[-8,16],[20,9],[5,11],[20,10],[-3,9],[26,11],[7,18],[12,-4],[14,14],[-9,13],[16,16],[-3,13],[27,1],[7,10],[-7,19],[18,7],[-10,6],[27,10],[7,20],[12,0],[16,10],[4,18],[12,10],[-14,41],[15,-1],[5,36],[9,5],[-6,23],[-12,21],[3,21],[-12,-1],[-12,22],[2,12],[-28,-1],[7,17],[-19,2],[8,13],[-15,-7],[2,14],[-27,8],[0,19],[-12,-4],[-40,36],[-18,-1],[-1,12],[-11,-2],[-13,12],[-16,-3],[1,10],[-41,-5],[-47,-21],[-29,49],[-32,-15],[-4,3],[-24,-14],[-17,15],[-12,-2],[-12,12],[-16,3],[-6,19],[-10,-2],[-11,33],[-14,-4],[2,-9],[-20,-7],[-19,19],[0,8],[-14,19],[13,39],[-10,6],[0,28],[-7,24],[-7,6],[7,12],[-14,6],[8,4],[-6,10],[21,10],[-12,10],[17,24],[-5,10],[13,7],[4,-7],[11,16],[-9,25],[6,13],[-7,24],[10,1],[19,22],[11,4],[15,23],[17,8],[-1,8],[20,10],[2,12],[9,-8],[13,9],[-1,13],[24,10],[0,13],[11,-10],[15,20],[-13,26],[13,1],[-8,17],[-14,4],[4,23],[-13,12],[6,9],[26,3],[6,12],[29,12],[16,0],[33,21],[21,-1],[14,7],[24,21],[25,48],[-6,16],[11,9],[-12,10],[-8,18],[24,10],[-4,16],[-11,-1],[2,14],[12,28],[22,-6],[8,12],[5,-7],[8,20],[-8,8],[19,4],[-4,9],[-17,-3],[-9,9],[10,14],[-18,2],[-27,30],[-8,-1],[-11,13],[-6,-9],[-13,7],[3,9],[-13,1],[-13,12],[6,11],[-7,10],[-22,-7],[10,11],[-5,17],[-15,12],[13,1],[0,10],[13,-2],[-2,12],[-17,7],[14,7],[15,46],[-3,19],[-12,-1],[1,13],[-32,-7],[7,17],[12,4],[-12,18],[15,3],[-6,16],[4,16],[-16,15],[-7,-13],[-17,28],[14,14],[-14,11],[-5,19],[16,16],[-6,7],[8,36],[16,-2],[27,39],[6,-17],[6,0],[9,15],[6,-4],[25,25],[12,2],[6,15],[21,21],[4,20],[13,10],[3,24],[22,11],[7,17],[24,28],[32,16],[30,5],[11,15],[-9,3],[4,28],[-10,7],[6,28],[21,-4],[8,22],[6,-4],[9,19],[-4,5],[15,10],[5,22],[16,-16],[14,29],[-5,40],[-16,5],[-2,23],[8,5],[3,16],[-17,1],[-4,12],[9,2],[-3,14],[10,3],[2,13],[-12,5],[14,17],[-17,18],[-22,-8],[-5,11],[-14,4],[-3,9],[11,6],[-6,10],[-18,11],[10,3],[-13,23],[9,5],[-16,11],[-15,38],[-19,-7],[4,13],[-27,5],[14,12],[-5,14],[-20,-5],[-9,18],[15,-6],[7,32],[-12,22],[3,24],[-12,13],[-13,-11],[-17,13],[6,15],[-7,13],[3,15],[-20,-1],[4,21],[-1,19],[14,3],[-5,26],[-7,3],[-10,-16],[-4,17],[10,3],[-6,21],[-44,42],[9,11],[-16,19],[11,13],[-10,11],[3,19],[-29,8],[9,11],[-8,16],[-14,-10],[-22,0],[2,12],[20,17],[-12,-1],[0,17],[-17,12],[-3,12],[-11,-6],[-4,20],[11,4],[-12,15],[10,10],[-7,14],[-14,8],[3,25],[-10,13],[10,24],[-20,24],[-2,54],[15,23],[11,4],[24,36],[3,18],[-13,-5],[0,11],[-18,12],[17,20],[16,7],[-19,70],[-11,15],[3,28],[-11,1],[2,16],[-10,18],[20,12],[-12,23],[-17,7],[3,10],[-18,38],[13,14],[0,17],[-17,11],[7,40],[-4,12],[10,10],[-20,1],[29,15],[-12,19],[-18,1],[-166,43],[-160,38],[-78,-46],[-63,-60],[-167,-4],[-73,-48],[-79,-34],[-57,11],[-85,50],[-104,29],[-71,-31],[-100,-26],[-84,3],[-120,10],[-56,14],[-138,68],[-101,55],[-66,11],[-2,77],[-1,110],[18,71],[-18,45],[-26,76],[-24,63],[-210,104],[-518,172],[-18,41],[-117,32],[-52,16],[-56,22],[-66,18],[-37,33],[-66,42],[-164,101],[-212,-68],[-109,32],[-43,23],[-14,0],[-31,14],[-44,4],[-36,0],[-33,20],[-48,17],[-54,45],[-45,31],[-20,-5],[-11,10],[-23,5],[-16,19],[1,15],[-26,14],[7,25],[-84,75],[-38,112],[-42,92],[-39,48],[-96,172],[-29,66],[-6,33],[-4,44],[-17,42],[-10,15],[-43,51],[-17,29],[-14,37],[6,134],[-29,17],[-30,24],[-32,22],[-42,49],[-8,14],[-19,14],[-13,19],[-6,18],[-26,58],[-10,43],[3,69],[-6,70],[1,54],[-14,74],[-30,50],[-15,59],[7,17],[-11,17],[-19,17],[-15,7],[-1,17],[10,18],[-15,19],[-15,2],[-5,22],[7,13],[-4,35],[-8,14],[-9,37],[1,22],[-19,14],[-14,-1],[-23,12],[-28,8],[-24,-12],[-42,20],[-26,4],[-13,-10],[-52,2],[-10,-3],[-33,18],[-51,8],[-20,18],[-38,5],[-8,11],[-21,0],[-20,-8],[-24,4],[-16,10],[-19,-5],[-44,12],[-26,-1],[-15,8],[-23,5],[-21,18],[-13,18],[-6,26],[2,28],[10,25],[2,38],[-5,32],[2,51],[-8,33],[-78,27],[-36,21],[-55,62],[-20,41],[-7,27],[-37,41],[-46,23],[-17,36],[-29,38],[-13,62],[-13,47],[-6,11],[-16,55],[-5,29],[-9,31],[1,48],[-7,24],[1,36],[-5,20],[-1,43],[22,43],[24,24],[15,26],[4,14],[5,49],[-7,26],[-11,24],[-18,18],[-11,17],[-21,20],[-28,55],[-17,48],[-17,17],[-30,45],[-34,41],[-21,36],[-11,39],[-27,28],[1,78],[-3,55],[19,52],[21,39],[5,19],[-2,42],[2,29],[6,22],[-1,49],[4,18],[19,36],[20,27],[7,26],[21,46],[6,44],[19,20],[61,47],[54,9],[31,7],[33,17],[69,40],[206,114],[204,114],[67,36],[83,43],[218,124],[296,165],[330,183],[745,411],[575,321],[136,75],[11,15],[0,11],[15,26],[-1,9],[32,13],[47,27],[43,-3],[20,-33],[18,3],[4,-16],[16,-29],[12,-1],[15,-12],[34,16],[-5,40],[2,9],[-8,40],[22,38],[64,72],[23,45],[11,51],[-12,54],[-22,77],[-62,-2],[-10,-4],[-93,14],[-50,18],[-10,23],[-25,14],[-57,44],[-63,42],[-26,23],[-31,53],[-6,36],[10,43],[13,33],[54,49],[31,33],[102,89],[46,36],[7,45],[-5,21],[-5,136],[-66,74],[-79,111],[-23,34],[-12,45],[-3,71],[-16,68],[-31,43],[-35,73],[-52,39],[63,110],[48,62],[32,33],[16,13],[75,45],[37,12],[85,32],[65,36],[36,22],[-12,114],[28,87],[55,87],[0,42],[3,18],[-12,87],[7,62],[31,86],[-2,1],[33,102],[9,22],[-10,50],[-4,35],[-15,37],[-11,19],[-9,32],[-25,60],[-38,61],[-19,68],[-2,46],[-21,97],[-1,129],[69,74],[42,78],[14,44],[18,66],[76,30],[37,48],[2,44],[62,59],[90,91],[28,18],[59,45],[104,-23],[41,14],[17,-3],[9,-11],[17,-9],[19,0],[10,-14],[-1,-14],[26,-7],[55,-29],[22,-20],[-6,-19],[6,-20],[16,-16],[29,12],[11,-6],[0,-18],[25,5],[19,-6],[6,5],[10,-33],[28,-8],[29,-16],[26,3],[3,-14],[26,0],[29,-19],[9,13],[23,-2],[14,-19],[2,9],[15,-7],[16,-15],[15,4],[2,-13],[23,-2],[14,-20],[10,0],[28,86],[3,94],[18,90],[-18,120],[7,111],[9,95],[8,112],[-22,116],[-38,90],[-21,98],[9,102],[26,139],[-15,149],[170,20],[103,20],[207,9],[160,68],[54,62],[48,103],[76,82],[18,104],[39,95],[57,82],[45,127],[34,105],[2,104],[11,115],[-8,113],[-2,203],[5,49],[44,73],[32,94],[46,77],[18,18],[0,66],[70,67],[66,60],[51,83],[69,68],[108,112],[73,76],[80,66],[77,47],[82,80],[104,26],[111,5],[63,93],[79,104],[34,54],[83,68],[142,231],[48,111],[47,84],[27,86],[20,87],[-14,97],[9,66],[10,107],[5,118],[-21,93],[-35,96],[-50,92],[-3,96],[-10,64],[-23,81],[3,108],[-1,89],[-32,90],[-72,76],[-78,72],[-94,71],[-89,54],[-112,41],[-114,3],[-99,14],[-118,37],[-76,22],[-67,36],[-128,28],[-115,35],[-75,30],[-100,10],[-99,-4],[-99,8],[-108,-2],[-92,-20],[-80,41],[-138,60],[-89,15],[-100,33],[-99,58],[-70,55],[-99,93],[-68,11],[-79,22],[-111,16],[10,19],[-2,16],[10,33],[-6,6],[8,44],[12,12],[-2,12],[13,15],[9,48],[6,6],[6,51],[-109,-33],[-56,8],[-60,-6],[-205,-31],[-122,-17],[-92,9],[-135,-21],[-46,69],[-68,85],[-53,62],[-39,96],[-30,57],[-33,92],[-36,97],[-42,54],[-36,72],[-20,57],[-13,130],[8,54],[23,37],[73,73],[74,70],[69,76],[17,45],[-3,48],[15,43],[28,66],[53,67],[36,56],[15,26],[20,8],[34,19],[82,69],[30,17],[77,1],[29,5],[36,0],[27,-11],[21,-2],[52,-12],[15,-1],[62,-9],[28,8],[23,3],[49,25],[19,15],[9,42],[13,21],[3,32],[12,69],[-10,47],[-13,20],[0,26],[10,20],[13,13],[18,33],[29,44],[26,48],[14,38],[13,27],[19,55],[13,47],[0,67],[-21,79],[-2,19],[9,29],[4,29],[58,51],[96,62],[58,21],[68,33],[-24,20],[-10,22],[-29,28],[-35,43],[-41,47],[-52,52],[-16,21],[-16,13],[-31,35],[0,8],[-32,54],[-28,38],[-27,48],[-30,64],[-2,34],[-55,38],[-8,26],[-17,31],[-8,24],[-7,44],[-28,-5],[-41,-12],[-38,-7],[-52,-20],[-33,-4],[-34,6],[-42,10],[-3,-8],[-69,-10],[-68,-4],[-2,25],[-77,-2],[-48,-5],[-53,-9],[-64,-17],[-57,222],[-86,102],[-138,107],[-30,55],[-72,113],[-13,28],[-6,34],[86,64],[-4,10],[-43,49],[-74,64],[-24,25],[-61,21],[-4,-3],[-34,26],[-52,45],[-25,13],[-137,46],[-87,-7],[-58,-42],[-41,-3],[-26,-10],[-41,-19],[-65,-13],[-19,-6],[8,-48],[0,-26],[-20,-57],[-26,-7],[-58,-21],[-21,-12],[-33,-11],[-39,-26],[-46,-20],[-23,-4],[-38,3],[-12,-18],[-41,-32],[-45,-28],[-33,-22],[-31,-27],[-61,-44],[-30,-27],[-44,-51],[-47,-33],[-36,40],[-58,-28],[-110,-57],[-19,-4],[-107,-43],[-2,3],[-102,-52],[-17,-5],[-4,22],[-1,63],[10,49],[5,47],[16,30],[-15,48],[-17,43],[-14,-2],[-16,11],[-34,14],[-40,27],[-44,25],[-13,4],[-27,19],[-29,16],[-22,1],[-22,32],[-16,28],[108,83],[22,23],[64,21],[72,20],[28,-4],[62,4],[30,13],[84,21],[21,70],[-1,44],[-17,93],[-8,67],[3,82],[-33,42],[-9,18],[-28,33],[-22,11],[-42,14],[-23,5],[-6,15],[-1,63],[-11,38],[-3,23],[1,33],[-83,-13],[-41,-12],[-32,-5],[-45,-16],[-33,-19],[-57,-23],[-67,-44],[7,-21],[-5,-6],[-25,20],[-61,31],[-26,19],[-56,24],[-47,23],[-37,21],[-43,35],[-16,16],[-36,45],[-24,14],[-27,11],[-14,15],[-62,34],[-43,3],[-29,14],[-12,-5],[-60,16],[-18,-6],[-13,1],[-58,-15],[-14,4],[-14,12],[-23,2],[2,7],[-27,9],[-23,-1],[-18,11],[-21,-1],[-40,11],[-36,-7],[-10,-8],[-22,-4],[-76,-3],[-24,-8],[-31,-1],[-21,18],[-1,22],[6,8],[24,64],[3,15],[19,-7],[0,42],[-22,36],[-46,36],[-27,17],[-15,5],[-55,-1],[-10,-6],[-17,-22],[-29,-22],[-17,0],[-12,16],[-1,41],[-9,13],[4,19],[11,0],[-2,12],[8,33],[20,0],[-5,14],[9,9],[9,-13],[45,41],[40,28],[28,14],[24,20],[35,51],[15,33],[9,29],[12,22],[4,32],[-23,48],[-8,8],[-2,17],[-21,-9],[-16,12],[-26,-8],[-19,20],[-4,18],[-22,4],[-22,-17],[-9,14],[-4,-8],[-28,-23],[-2,-12],[-19,-21],[-26,-6],[-44,-14],[-39,-15],[-13,7],[-20,-10],[-23,-1],[-12,-7],[-49,-7],[-84,-22],[-42,-15],[-73,-20],[-59,-7],[-64,-2],[-21,-3],[-49,12],[-146,27],[-36,15],[-29,23],[-51,15],[-25,10],[-20,35],[-27,62],[-15,45],[-32,46],[6,35],[1,41],[-1,40],[9,29],[28,26],[0,18],[-14,-3],[-42,10],[-54,6],[-3,-5],[-29,1],[-27,-5],[-168,-71],[-47,-11],[-51,-20],[-110,-23],[-2,145],[-18,57],[-37,51],[-33,51],[-5,32],[7,50],[-58,18],[-107,113],[-10,14],[-57,11],[-12,16],[-19,9],[-16,16],[-18,-5],[-6,-23],[4,-11],[19,-3],[-5,-16],[6,-12],[-6,-8],[-16,9],[-25,1],[-34,32],[-6,23],[10,15],[-10,9],[-40,-5],[-6,13],[-29,40],[-54,66],[-3,13],[-11,16],[8,19],[-14,10],[-7,56],[-49,5],[-4,11],[8,16],[-17,14],[-28,0],[-12,8],[-19,4],[-3,14],[-16,8],[-16,29],[-10,-4],[-30,22],[-30,29],[-13,7],[-23,41],[-29,33],[13,16],[4,43],[14,9],[0,17],[-14,29],[-18,9],[3,9],[-17,2],[5,30],[-6,12],[-22,104],[-19,16],[-3,10],[-19,15],[-3,12],[-18,-5],[-19,4],[-21,11],[-1,7],[-20,9],[-15,16],[-21,15],[-36,13],[-30,3],[-34,21],[-17,3],[-28,30],[-22,10],[-12,-6],[-25,4],[-2,9],[-29,30],[-25,17],[-66,12],[-22,12],[-15,-31],[-19,2],[-28,-17],[-45,-36],[-14,-32],[-15,-18],[-26,-48],[-41,-68],[-6,-57],[-6,-46],[-155,-123],[-28,-23],[-42,-43],[-58,10],[-56,26],[-31,11],[-32,23],[-22,24],[-12,24],[-4,35],[6,25],[4,44],[9,32],[4,25],[9,31],[15,12],[6,28],[-59,98],[7,28],[-6,9],[-43,11],[-8,5],[-11,27],[-6,35],[-15,24],[-6,20],[-5,32],[-39,31],[-12,19],[-72,46],[0,15],[-23,10],[-8,17],[-3,21],[-13,-5],[-12,24],[-19,17],[-1,11],[-15,5],[-22,40],[-8,-5],[-3,12],[-26,0],[-8,11],[10,10],[-12,33],[-23,34],[-17,15],[74,64],[28,31],[25,34],[26,45],[16,20],[5,55],[-1,28],[-14,113],[-24,-2],[-8,65],[-12,31],[1,19],[-20,2],[-20,26],[-32,-17],[-48,-19],[-63,-29],[-34,69],[-2,8],[-34,54],[-23,14],[-44,52],[-19,17],[-26,11],[-34,7],[-47,6],[-68,18],[-51,22],[-45,16],[-38,21],[-27,12],[-36,21],[-102,59],[-13,-16],[-14,10],[-30,10],[-23,17],[-38,15],[-17,-1],[-35,-10],[-52,-7],[-73,-18],[-34,-13],[-17,-13],[-79,-36],[-44,-9],[-55,-1],[-63,-7],[-85,-6],[-90,-19],[-49,-5],[-60,-12],[-34,-17],[-68,-49],[-57,-21],[-53,-4],[2,43],[-3,38],[-17,55],[-36,46],[-15,10],[-51,24],[-46,29],[-54,53],[-42,47],[-27,45],[-25,35],[-17,14],[-23,-1],[-33,9],[-56,-1],[-27,-8],[-22,-12],[-86,-23],[-36,-20],[-83,-51],[-83,-39],[-14,-31],[-23,-27],[-43,-22],[-31,23],[-1,11],[7,34],[-5,9],[-14,47],[-26,34],[-1,9],[-15,24],[-7,21],[12,36],[0,19],[24,34],[0,17],[13,13],[1,13],[12,7],[-7,9],[6,8],[-6,17],[5,29],[-10,15],[12,33],[8,1],[1,18],[12,8],[3,19],[8,6],[23,-5],[10,21],[26,19],[-6,5],[26,31],[2,25],[12,21],[-13,10],[4,13],[16,5],[26,18],[8,-3],[25,27],[16,2],[30,42],[12,29],[10,0],[4,15],[15,8],[0,19],[16,10],[0,9],[17,14],[12,22],[-1,14],[13,8],[8,-3],[12,16],[-3,20],[14,4],[20,15],[3,11],[15,6],[17,29],[18,3],[17,12],[3,14],[19,3],[9,13],[3,21],[12,8],[5,12],[16,5],[5,22],[21,15],[3,15],[19,16],[10,18],[16,14],[-5,5],[17,31],[21,8],[3,19],[-6,4],[8,17],[-2,9],[25,10],[14,31],[32,10],[-33,23],[-77,11],[-41,26],[-219,64],[-50,18],[-66,42],[-45,69],[-17,52],[-40,62],[-39,27],[-170,74],[-8,17],[13,8],[6,16],[-8,54],[-27,4],[-12,15],[-31,10],[-15,21],[-5,21],[-44,16],[-25,15],[-76,53],[-3,15],[-28,28],[-35,29],[6,13],[-2,36],[-16,59],[26,43],[-5,14],[15,25],[-12,19],[-37,36],[-6,23],[7,22],[-4,12],[-27,25],[-16,2],[-9,-13],[4,-14],[15,-10],[3,-14],[-14,-4],[1,-11],[12,-6],[-6,-14],[-19,-7],[-39,4],[-25,8],[-25,17],[-21,-3],[-16,-18],[-13,10],[5,34],[-4,37],[-16,27],[15,25],[-1,10],[-13,5],[-22,-15],[-9,-26],[-20,-13],[-33,11],[-16,12],[-6,19],[1,22],[-15,29],[-12,12],[-31,16],[-9,8],[-7,25],[-4,37],[5,35],[7,17],[15,4],[13,14],[19,-5],[3,-47],[9,-4],[23,27],[24,-14],[12,2],[-2,15],[-13,31],[12,-1],[29,-18],[16,7],[4,12],[-16,12],[-3,15],[12,17],[-7,31],[-33,15],[-18,38],[-25,1],[9,-29],[-13,-14],[-41,27],[-23,-11],[19,-5],[18,-18],[-15,-27],[-25,1],[-11,17],[-62,11],[-9,-5],[-25,-36],[-42,-18],[-15,1],[-6,9],[-15,1],[-9,9],[-20,-14],[-35,-5],[-26,2],[-8,-20],[-12,-7],[-36,-6],[-34,2],[-22,-34],[-2,-18],[-10,-15],[-35,-19],[-41,1],[-34,-16],[-33,-10],[-2,11],[-64,-10],[-50,18],[-11,9],[-4,14],[2,31],[-8,37],[-19,46],[-12,10],[-34,1],[-22,-14],[-16,-4],[-16,4],[-27,16],[-20,44],[1,35],[13,38],[13,29],[8,97],[20,24],[23,12],[12,14],[-1,40],[-6,27],[17,15],[-1,14],[-13,18],[-29,23],[-24,4],[-89,-12],[-17,2],[-32,11],[-62,13],[-68,40],[-8,23],[-8,-5],[-36,21],[-7,10],[-10,-10],[-57,-31],[-17,-24],[-58,-31],[-25,-17],[-60,24],[-16,11],[-34,1],[-48,-12],[-26,-2],[-24,-19],[-52,-13],[-49,-35],[-20,-6],[-34,3],[-14,7],[-65,49],[-10,14],[-13,46],[-15,45],[-6,79],[-24,58],[-25,44],[-40,47],[-21,10],[-29,9],[-31,20],[-39,50],[-28,14],[-29,3],[-38,-1],[-37,4],[-16,22],[9,24],[3,33],[-23,22],[-8,27],[-26,19],[-9,22],[9,25],[-7,30],[7,18],[25,7],[12,10],[5,13],[-9,21],[3,36],[14,11],[-2,23],[6,26],[24,14],[20,24],[16,10],[26,53],[-11,42],[-10,18],[-16,11],[-15,23],[-14,-3],[-41,11],[-21,26],[-10,2],[-17,25],[-16,40],[8,24],[13,14],[6,22],[-2,22],[-11,23],[-15,39],[-37,46],[-10,6],[-7,22],[-18,36],[-44,69],[-2,26],[-14,1],[17,155],[32,84],[-43,81],[33,249],[-9,17],[5,5],[-8,33],[-12,29],[-23,30],[-6,27],[4,12],[62,194],[-138,151],[28,398],[164,41],[89,148],[160,-7],[-113,186],[106,165],[-168,69],[37,85],[517,451],[123,315],[38,94],[13,56],[10,57],[39,149],[-104,52],[-107,-11],[-43,-1],[-48,-7],[-50,1],[-36,22],[-35,36],[32,73],[18,37],[15,36],[-4,55],[-13,152],[-71,70],[-25,66],[-118,324],[-55,196],[-8,31],[-21,33],[-6,24],[-1,25],[11,48],[-9,24],[-9,85],[-9,34],[-25,72],[-55,-15],[-7,17],[10,49],[-47,52],[-43,1],[-32,10],[-12,14],[-28,24],[-42,10],[-22,17],[-16,8],[-79,47],[-97,87],[-42,51],[-58,63],[-32,64],[27,38],[18,22],[-8,-1],[-6,13],[11,7],[-10,19],[24,17],[31,9],[31,19],[-3,10],[19,4],[7,-9],[19,-3],[3,8],[22,-5],[16,10],[17,-5],[12,7],[19,-5],[11,5],[23,1],[5,-8],[20,8],[8,-4],[21,6],[5,-6],[35,1],[22,9],[3,-5],[22,11],[7,16],[-1,13],[-13,20],[-11,27],[-47,38],[-47,6],[-43,-8],[-135,-60],[-25,46],[-16,59],[-30,47],[-74,-23],[-50,-9],[-50,3],[-45,-61],[-30,-22],[-82,-5],[-32,9],[-15,19],[10,16],[-10,-2],[-3,13],[-15,23],[-14,6],[-5,19],[32,35],[9,0],[11,18],[28,16],[6,10],[20,8],[23,-2],[30,12],[-2,5],[21,27],[4,14],[20,25],[19,13],[-22,26],[-14,37],[-14,23],[-7,4],[-53,3],[2,27],[13,26],[-31,10],[-39,3],[-70,-9],[-21,42],[-28,-4],[-39,-2],[-10,-24],[-42,-35],[-11,4],[1,30],[14,38],[-11,51],[3,16],[-19,20],[-5,13],[-11,4],[5,23],[-15,11],[-8,21],[2,33],[-6,9],[8,9],[-8,7],[8,23],[1,25],[-19,27],[-11,22],[-2,32],[-8,13],[0,18],[-23,32],[-1,35],[-17,28],[-3,25],[-8,-2],[-7,12],[-44,-16],[-73,-15],[-71,-8],[-57,-4],[-3,32],[-23,21],[-32,-8],[-45,-16],[-47,-11],[4,-11],[-16,-11],[-31,-12],[-16,10],[-17,20],[-23,37],[-20,39],[-127,-108],[-31,-22],[-94,-34],[3,36],[-2,28],[-12,12],[-8,25],[-34,36],[-26,37],[-12,41],[2,24],[21,20],[64,33],[17,6],[28,25],[16,10],[54,55],[21,8],[22,16],[-5,24],[38,21],[12,10],[10,19],[-18,17],[-30,45],[-14,36],[13,46],[-40,-2],[-66,-9],[-23,-1],[5,72],[0,22],[-9,41],[1,25],[10,31],[61,37],[14,6],[1,32],[-63,-11],[-98,-11],[-72,6],[-34,23],[35,83],[23,34],[28,30],[17,10],[-29,41],[20,12],[-24,30],[-62,53],[-37,23],[-23,-12],[-32,44],[-11,21],[-76,19],[-29,10],[-68,29],[-22,5],[-44,6],[-58,-3],[-21,-5],[-50,-20],[-14,8],[-27,26],[-33,17],[-8,33],[33,18],[43,42],[28,22],[10,17],[34,44],[39,22],[35,11],[29,27],[34,54],[28,26],[-11,48],[-24,54],[-55,20],[-22,16],[-26,-21],[-41,-7],[-23,0],[-10,-5],[-25,-2],[-23,-17],[-25,-32],[-14,-8],[-21,1],[-27,-17],[-1,-14],[-43,-13],[-31,-28],[-49,-14],[-18,-12],[-21,-27],[-6,-27],[0,-24],[19,-30],[0,-18],[11,-4],[17,-23],[-2,-31],[10,-13],[-47,-27],[-45,-5],[-53,12],[-47,28],[-41,31],[-47,24],[-54,9],[-125,7],[-81,8],[-170,14],[-42,12],[-25,13],[-60,41],[-28,16],[-82,35],[-41,25],[-4,22],[-11,24],[-12,12],[-51,9],[-53,25],[-65,24],[-55,23],[-97,47],[-52,28],[-75,34],[-26,13],[-43,11],[-38,2],[-52,-6],[-10,5],[-1,31],[-6,24],[-3,41],[-7,15],[1,64],[-2,36],[-7,47],[-1,66],[5,25],[-1,21],[-30,57],[-22,70],[-7,34],[-14,38],[-6,10],[-3,26],[-8,15],[-23,8],[-24,14],[-23,5],[-15,9],[-37,1],[-41,-6],[-24,-13],[-27,2],[-44,-40],[-4,-16],[-73,8],[-18,7],[-42,-1],[-45,7],[-25,49],[-38,48],[-33,22],[-41,20],[-70,48],[-37,32],[-13,30],[-5,25],[-16,46],[-25,50],[-24,36],[-15,29],[29,-1],[60,23],[132,18],[56,24],[-2,5],[49,6],[37,8],[21,12],[46,45],[57,29],[69,49],[19,8],[12,37],[-1,26],[-10,47],[0,35],[-8,33],[-19,45],[-4,26],[-17,33],[-31,45],[-30,33],[-31,25],[-38,44],[-37,38],[-16,13],[0,9],[23,4],[36,-3],[19,9],[31,7],[20,14],[46,20],[34,10],[53,20],[98,16],[17,15],[26,-11],[12,14],[9,-1],[22,16],[0,12],[23,14],[14,19],[15,6],[14,30],[20,17],[35,38],[13,19],[7,-1],[6,17],[54,40],[31,11],[11,15],[28,22],[19,-4],[56,16],[26,14],[49,9],[44,-3],[32,-21],[35,-42],[21,-9],[36,-43],[56,28],[-5,24],[9,17],[19,7],[2,12],[-8,24],[8,33],[35,23],[13,3],[62,1],[40,8],[96,27],[60,19],[52,34],[109,60],[36,25],[42,43],[33,51],[16,17],[42,26],[43,24],[71,62],[28,16],[29,2],[26,7],[36,20],[13,26],[0,26],[14,20],[13,8],[13,42],[0,24],[18,24],[15,34],[-6,9],[-18,6],[-18,33],[-28,25],[-17,10],[-14,17],[-24,19],[-25,29],[-14,-1],[1,16],[-29,32],[-13,19],[2,7],[-14,9],[-6,30],[6,27],[-5,13],[14,31],[3,22],[-11,19],[9,24],[-6,20],[13,11],[-30,21],[-1,12],[-9,-4],[-13,15],[-4,-6],[-25,9],[-6,17],[-15,5],[-6,10],[2,15],[-9,1],[-10,18],[-15,-2],[1,10],[-27,2],[-9,14],[-45,17],[-64,33],[-7,8],[-17,3],[-1,13],[-10,2],[-4,20],[-13,19],[-20,12],[-7,14],[-27,14],[5,5],[-25,14],[-6,14],[-16,2],[-6,10],[-16,4],[-19,16],[-29,16],[-15,12],[0,9],[-38,30],[-11,16],[-33,23],[-14,27],[-13,15],[-8,1],[1,27],[-10,2],[-3,16],[7,6],[-19,24],[3,10],[-6,26],[4,37],[-9,18],[8,22],[11,14],[1,28],[-5,24],[-8,7],[5,14],[-9,9],[4,14],[-9,8],[-8,48],[-5,3],[2,25],[-11,13],[1,13],[-16,27],[-5,27],[-12,27],[-18,6],[-6,23],[-19,12],[-8,11],[-17,6],[-8,15],[-19,18],[5,9],[18,4],[-2,19],[3,15],[-7,7],[14,17],[-11,7],[6,21],[17,7],[-3,9],[20,11],[11,24],[10,5],[0,13],[29,36],[4,11],[16,9],[-2,7],[16,20],[14,56],[14,28],[-1,13],[9,41],[12,1],[5,20],[9,-1],[11,16],[26,12],[15,20],[19,12],[10,-3],[21,36],[11,0],[19,27],[7,20],[-6,20],[3,16],[-8,26],[-10,14],[-14,7],[3,10],[-15,5],[-28,21],[-12,15],[-29,11],[-9,19],[-13,-8],[-20,19],[7,11],[-15,5],[3,17],[-9,5],[-15,-10],[-9,12],[8,8],[-11,23],[-12,-1],[-7,13],[7,5],[-13,7],[1,20],[-19,10],[-26,-6],[0,12],[-11,9],[-7,-7],[-5,15],[-18,-13],[-6,11],[-17,-11],[-10,5],[-10,18],[-10,-8],[1,12],[-15,-3],[-20,18],[6,12],[-17,-6],[4,16],[-13,-3],[-12,11],[-15,-7],[-4,16],[-7,-10],[-2,15],[-20,-4],[4,9],[-40,10],[-3,32],[-16,0],[-9,-11],[2,20],[-10,16],[3,13],[-12,4],[-10,-11],[-15,8],[-21,-15],[-7,15],[5,17],[-6,5],[-21,-5],[-5,9],[8,8],[-43,16],[-3,-11],[-26,1],[0,18],[-14,16],[-21,-3],[1,-20],[-14,5],[-5,-13],[-18,15],[-13,1],[-1,-12],[-15,2],[-6,14],[-10,-12],[-16,3],[0,22],[-10,-1],[-37,46],[-70,-23],[-6,-7],[-51,8],[-36,11],[-54,59],[-6,15],[-16,13],[0,43],[-13,13],[-14,-1],[-12,13],[7,18],[-5,21],[-17,-10],[-10,32],[-17,3],[-24,16],[-5,11],[-13,4],[29,34],[15,36],[25,23],[25,28],[38,27],[-13,18],[13,3],[8,15],[20,15],[18,37],[19,31],[12,8],[23,-15],[47,61],[18,-16],[51,-53],[43,-40],[16,-23],[37,-17],[54,-9],[45,8],[28,21],[40,15],[19,2],[46,-7],[25,-13],[16,-13],[2,-14],[-11,-20],[-40,-36],[-35,-110],[1,-41],[16,-4],[-12,-19],[-5,-43],[38,1],[9,-12],[21,-10],[11,0],[26,-17],[22,1],[8,-12],[27,-6],[26,6],[13,-14],[29,7],[21,10],[9,-5],[16,10],[28,1],[22,-5],[17,7],[36,-4],[34,-16],[18,10],[60,-19],[53,-24],[11,16],[28,-4],[27,43],[16,6],[18,22],[17,-3],[19,22],[57,37],[-3,18],[12,36],[16,12],[2,17],[25,3],[0,12],[10,3],[-6,19],[24,10],[26,4],[15,-6],[1,11],[23,-11],[33,-9],[23,9],[4,-8],[9,14],[27,9],[13,9],[19,-10],[10,3],[27,30],[14,8],[-3,13],[41,12],[32,-5],[19,11],[8,-7],[25,9],[42,-5],[5,9],[9,-6],[5,12],[8,-15],[27,17],[27,5],[3,8],[16,-7],[8,15],[16,4],[-1,-9],[35,11],[15,7],[10,-8],[15,22],[11,-8],[10,7],[16,-3],[8,18],[42,4],[-1,8],[22,0],[6,12],[23,7],[10,11],[22,5],[10,9],[14,-10],[28,-6],[-2,-9],[50,11],[9,10],[24,5],[12,-8],[5,11],[21,-6],[16,3],[5,11],[22,-5],[40,1],[23,-3],[27,-16],[56,-30],[28,-1],[40,3],[28,7],[5,6],[32,14],[43,10],[9,-9],[36,-5],[14,12],[11,-6],[56,-8],[35,4],[62,-17],[34,7],[24,-8],[56,13],[93,1],[24,16],[46,2],[40,-7],[19,0],[66,10],[75,13],[53,13],[68,28],[21,6],[48,6],[3,-10],[35,-10],[46,0],[91,-5],[91,7],[70,-9],[69,-16],[33,-6],[9,-68],[12,-59],[4,-62],[-2,-35],[-16,-8],[-41,-7],[-10,-21],[-25,-38],[-21,-41],[32,-105],[12,4],[28,-29],[0,-6],[29,2],[5,-38],[-14,-32],[19,-62],[13,-28],[34,-46],[17,-31],[24,-52],[27,3],[35,-38],[28,-2],[16,-6],[57,3],[11,-10],[29,-14],[37,-4],[25,-11],[27,-29],[27,-19],[22,-1],[42,-34],[4,-24],[59,-27],[16,-13],[20,-28],[9,2],[31,-23],[22,-24],[74,-60],[22,38],[-1,19],[13,49],[-3,32],[23,25],[12,7],[4,-8],[-26,-60],[1,-11],[-10,-49],[-8,-20],[-20,-30],[-1,-17],[-27,-31],[3,-17],[-38,-26],[2,-13],[-18,-11],[7,-5],[2,-31],[14,-46],[5,-31],[8,-13],[-3,-43],[-14,-29],[2,-33],[-14,-32],[-1,-24],[-13,-26],[-14,-17],[-5,-43],[-15,-41],[0,-14],[-17,-25],[0,-24],[-8,-26],[4,-18],[-5,-21],[0,-24],[6,-23],[-13,-24],[-7,-32],[-6,-44],[-19,-39],[-3,-13],[1,-59],[-8,-19],[-28,-24],[22,-19],[33,-37],[74,-79],[38,-15],[18,-11],[43,-7],[41,-35],[23,-39],[18,-22],[8,-21],[4,-32],[23,-68],[1,-34],[-3,-28],[-17,-46],[-6,-22],[15,-30],[-3,-77],[-4,-629],[-2,-14],[-33,-22],[-13,-19],[-7,-37],[-7,-19],[-17,-19],[40,-65],[16,-36],[84,-19],[39,-7],[55,-7],[18,-21],[31,-12],[19,-17],[59,-13],[32,-13],[35,-10],[28,6],[22,15],[23,4],[42,-11],[22,-17],[6,-12],[39,-17],[23,-45],[100,15],[13,-6],[68,26],[43,-3],[51,1],[45,5],[20,-1],[55,-18],[53,7],[39,0],[66,18],[58,-5],[68,8],[40,2],[20,5],[39,-2],[22,3],[24,27],[65,-4],[27,-17],[22,-1],[18,-10],[34,-30],[46,-63],[23,-10],[74,-15],[33,24],[54,17],[39,-14],[57,-12],[55,-6],[93,-23],[33,-15],[31,-7],[27,-10],[41,-2],[49,-25],[32,31],[-5,2],[35,48],[-10,47],[-11,15],[34,10],[18,15],[59,24],[4,-15],[0,-36],[-5,-36],[-7,-25],[33,0],[13,30],[7,34],[33,11],[16,12],[32,7],[5,26],[27,6],[10,-6],[20,3],[137,-263],[105,-198],[70,-131],[58,-105],[33,-31],[41,-32],[49,-50],[15,-13],[35,-17],[33,-26],[25,-8],[-35,-25],[1,-10],[-10,-28],[1,-16],[13,-40],[19,-69],[12,-31],[-12,-43],[-29,-58],[-25,-30],[-9,-15],[-2,-19],[-1,-73],[13,-37],[20,-20],[11,-19],[21,-21],[2,-30],[0,-45],[-30,8],[-62,8],[-59,11],[-79,26],[-49,4],[-16,71],[-24,20],[-87,-30],[-46,-18],[-51,-17],[-34,-14],[-11,49],[1,37],[6,16],[16,18],[-5,7],[-36,-9],[-13,35],[-41,60],[-43,28],[-69,63],[-15,2],[-31,20],[-13,17],[-36,36],[-43,37],[-26,8],[-33,18],[-3,-36],[38,-9],[12,-16],[42,-37],[73,-57],[-9,-18],[-6,-28],[-50,-59],[-23,-23],[-26,-53],[-17,-29],[-71,-72],[-10,-15],[-33,-5],[-22,9],[-30,3],[-37,-6],[-51,-12],[-34,0],[-14,-56],[-40,-80],[-13,-36],[-58,-108],[9,-23],[10,-36],[23,4],[18,-47],[15,-27],[16,-16],[10,-3],[31,8],[49,-16],[75,-8],[36,-24],[52,-42],[23,-22],[45,-15],[87,-40],[18,-11],[20,-23],[58,-23],[23,-14],[31,-30],[37,-55],[27,-19],[-6,-11],[10,-7],[1,-34],[8,3],[-6,-40],[-9,-9],[0,-17],[12,-21],[4,-24],[-5,-9],[13,-15],[0,-16],[20,-21],[-1,-10],[20,-23],[28,-18],[17,-4],[21,-16],[72,-6],[9,-10],[30,-14],[14,-1],[18,-18],[15,-5],[41,-42],[14,-24],[23,14],[26,23],[44,27],[38,14],[12,-58],[44,-16],[30,-2],[44,-16],[-50,-19],[-43,3],[-45,9],[-4,-24],[23,-18],[-3,-12],[28,-15],[13,-2],[36,-17],[37,-25],[3,-10],[15,-8],[44,-48],[58,15],[49,19],[60,7],[0,10],[61,17],[66,16],[38,3],[22,12],[29,3],[47,-72],[36,-37],[24,-28],[20,-37],[47,-47],[28,-17],[18,-29],[14,-32],[20,-25],[44,-31],[34,-18],[41,-43],[27,-21],[52,-35],[21,-23],[38,-34],[69,-44],[-40,-31],[-18,-12],[-86,-25],[-26,-3],[-57,3],[-37,-4],[-103,-4],[-13,-20],[53,-9],[7,-30],[4,-28],[-72,2],[-32,-13],[2,-8],[15,-2],[60,11],[23,-2],[45,2],[30,9],[85,11],[40,2],[43,-4],[20,-7],[19,-17],[33,-11],[33,-28],[27,-17],[20,-6],[15,15],[31,-14],[20,7],[31,-13],[6,-15],[28,-11],[44,5],[6,-7],[23,-3],[12,-9],[28,0],[12,-7],[13,-18],[-5,-9],[-25,-6],[-20,-27],[-28,-18],[-8,6],[-5,-13],[-17,-6],[6,-7],[-16,-14],[-25,-7],[-13,-12],[5,-12],[-15,-19],[-26,-10],[-15,-26],[-11,-32],[-10,-1],[-8,-13],[0,-19],[-15,-10],[-1,-10],[-16,-4],[-18,-18],[5,-16],[-10,3],[-10,-13],[-19,1],[-10,-10],[-12,-2],[0,-32],[-23,-32],[-14,-4],[-23,4],[-14,-19],[-21,-4],[-20,3],[-7,-15],[-14,-3],[-15,-17],[-13,-32],[-7,-8],[4,-15],[-9,-2],[-17,-30],[-20,-40],[-4,-32],[4,-27],[-11,-11],[8,-17],[7,-29],[-2,-15],[14,-12],[-6,-10],[13,-37],[2,-20],[-10,-15],[6,-13],[-3,-36],[5,-17],[-12,-12],[-1,-13],[-14,-13],[-6,-19],[4,-17],[27,-7],[31,40],[22,13],[49,5],[47,15],[31,47],[45,13],[30,33],[39,18],[9,-63],[-3,-55],[-39,-56],[-27,-23],[-39,-20],[-52,-10],[2,-23],[11,-30],[-26,-29],[-3,-21],[63,-26],[47,-34],[16,-24],[15,-32],[2,-34],[-26,-55],[-23,-32],[-28,-19],[-24,-21],[-49,-58],[-97,-43],[-41,-38],[-38,-17],[-36,-21],[-34,-11],[-33,-3],[-17,-5],[-47,-4],[-33,9],[-13,-19],[-41,-49],[-22,-34],[-14,-15],[-27,-36],[-25,-29],[-7,-30],[35,-34],[56,-39],[35,-32],[-6,-42],[10,-36],[4,-29],[13,-48],[1,-37],[-10,-34],[0,-22],[44,-39],[19,-24],[17,-16],[36,-20],[28,-48],[12,-15],[34,-31],[38,-25],[15,1],[24,42],[16,23],[19,11],[36,13],[16,1],[3,-18],[-26,-79],[-3,-50],[5,-30],[12,-22],[43,-49],[18,-28],[14,-31],[42,-3],[31,9],[31,4],[0,5],[50,15],[43,-63],[16,-45],[27,-58],[18,-25],[0,-23],[-6,-28],[1,-15],[-13,-27],[10,-44],[14,-26],[28,-30],[4,-30],[-23,-46],[-30,-47],[-28,-15],[-4,-24],[70,-5],[-3,-29],[-18,-22],[-9,-27],[-26,-18],[-17,-6],[-49,-10],[53,-7],[27,-11],[13,-11],[46,-22],[17,-15],[29,-43],[14,-5],[8,-19],[17,-8],[64,-22],[20,6],[70,6],[141,22],[21,-4],[27,4],[29,10],[33,3],[59,10],[14,-26],[29,-5],[16,-20],[27,-4],[12,-8],[10,5],[20,-8],[15,6],[37,-20],[3,2],[49,-27],[17,-6],[41,-5],[14,-12],[19,-5],[15,3],[13,-16],[25,-10],[52,-11],[21,2],[37,-18],[44,-8],[32,5],[30,-8],[13,-7],[26,3],[11,-9],[47,-20],[26,-25],[22,-6],[21,-1],[27,-9],[45,16],[14,-9],[23,5],[22,-15],[45,6],[20,-8],[4,7],[17,-5],[52,27],[13,3],[18,19],[20,13],[20,4],[19,14],[23,1],[18,-16],[26,-8],[22,6],[24,-8],[5,-27],[26,-20],[2,6],[17,-1],[11,6],[7,-17],[37,-12],[24,-4],[1,8],[17,-4],[22,-15],[6,8],[45,28],[50,-15],[17,6],[5,11],[14,7],[21,1],[11,19],[32,27],[-1,13],[25,14],[20,2],[16,-10],[-4,49],[-44,14],[-9,-3],[-44,28],[-20,0],[-24,14],[-2,13],[-11,2],[-7,33],[-32,17],[-11,10],[-11,1],[-38,19],[-33,-11],[-12,8],[-25,-9],[-21,12],[-28,0],[-4,-6],[-25,-5],[-46,19],[-23,12],[-11,15],[0,14],[-27,13],[-2,22],[7,5],[0,31],[17,46],[9,35],[14,34],[-11,21],[-5,37],[-24,38],[-25,13],[-34,28],[-24,3],[-26,16],[-26,33],[-39,-2],[-2,42],[43,1],[51,-7],[47,1],[30,23],[32,17],[16,16],[15,43],[2,27],[0,43],[3,27],[10,28],[20,34],[16,34],[29,24],[60,20],[25,13],[38,15],[21,37],[11,14],[29,16],[44,20],[34,7],[34,13],[15,19],[-4,25],[2,37],[22,30],[34,57],[1,25],[5,14],[16,20],[20,38],[2,29],[-8,19],[-58,69],[-21,21],[-10,51],[-11,-9],[-18,32],[-49,73],[-20,13],[-18,23],[-4,26],[-8,19],[-14,15],[-20,13],[-9,29],[4,27],[8,16],[14,18],[9,34],[-16,21],[-35,18],[-7,10],[-2,41],[-11,3],[-20,-4],[-25,5],[-21,13],[-33,0],[-20,7],[-17,15],[-18,7],[-28,-2],[-26,10],[-16,18],[-34,23],[-25,28],[-3,24],[3,37],[-13,25],[-31,38],[-20,32],[-24,47],[-14,22],[-8,31],[-11,16],[-13,43],[-8,49],[3,10],[34,29],[26,13],[46,60],[7,6],[12,26],[15,10],[23,27],[19,16],[8,17],[2,39],[-23,41],[-5,26],[24,54],[28,-1],[-8,29],[-12,25],[-13,46],[4,18],[-11,14],[-6,29],[5,27],[-1,22],[-6,7],[10,28],[-5,23],[-13,14],[5,17],[-9,10],[7,24],[10,10],[0,32],[-7,13],[-5,22],[1,29],[21,18],[10,-11],[43,-28],[23,-27],[26,-8],[25,2],[55,-6],[115,-21],[47,-17],[17,-14],[6,23],[3,51],[9,34],[3,86],[4,33],[16,39],[-20,45],[1,6],[-20,6],[-19,26],[-20,21],[-77,72],[-17,27],[-9,43],[-21,16],[3,9],[-9,16],[-21,0],[-12,13],[-16,9],[-12,15],[-24,-6],[-10,17],[11,16],[5,19],[20,25],[12,32],[28,51],[12,62],[0,53],[8,63],[-2,59],[13,5],[-3,38],[6,17],[9,72],[15,43],[4,21],[33,54],[34,-15],[35,-7],[5,24],[-60,14],[-18,-10],[-32,21],[-29,11],[-109,9],[-48,1],[29,52],[7,27],[35,29],[48,50],[66,55],[25,54],[9,27],[2,47],[-11,49],[-31,62],[-8,23],[-15,64],[-2,23],[42,-10],[42,-5],[-1,-10],[26,-6],[10,45],[47,-10],[-1,-32],[9,-4],[5,32],[24,2],[-2,-37],[33,-3],[106,-30],[32,-4],[7,-10],[13,3],[18,-20],[15,-3],[29,-20],[14,-1],[22,-13],[13,1],[18,-13],[7,15],[12,-9],[-12,-17],[13,-16],[20,-9],[13,1],[21,-6],[-10,-11],[25,-26],[34,-13],[18,-10],[0,-15],[21,-8],[21,-14],[22,2],[11,-11],[22,-1],[12,-17],[31,-15],[21,-15],[-4,-8],[26,-27],[1,-11],[10,-3],[-2,-10],[12,-11],[-1,-10],[11,-11],[2,-13],[38,107],[55,-50],[78,25],[38,-5],[30,6],[25,-5],[20,26],[-56,50],[-38,-1],[-19,3],[-21,20],[-30,21],[-24,22],[34,29],[62,18],[26,51],[44,35],[64,41],[37,77],[29,-8],[12,6],[21,-9],[5,-9],[35,-12],[14,-17],[4,19],[-8,8],[3,12],[-8,32],[-10,58],[-33,24],[-36,38],[-17,0],[-7,16],[1,19],[-17,9],[-12,19],[-3,28],[-11,27],[-12,16],[1,12],[-9,9],[-13,-1],[-8,22],[-13,10],[-1,13],[-9,21],[8,3],[-20,50],[-28,18],[-20,20],[-22,51],[-17,27],[-13,11],[1,10],[-19,3],[9,6],[-6,19],[-13,12],[9,18],[-3,16],[-19,9],[-18,45],[-12,21],[-4,18],[-10,4],[-2,18],[7,4],[-19,25],[8,12],[19,8],[3,17],[-9,10],[11,19],[-3,9],[10,40],[-3,22],[12,16],[-1,25],[20,34],[4,16],[-4,10],[8,75],[-8,11],[2,17],[-9,-2],[10,20],[-1,17],[8,9],[-4,11],[7,35],[-6,2],[14,26],[-2,20],[-8,14],[11,17],[-8,21],[-3,27],[16,24],[-4,18],[18,17],[9,24],[-7,24],[13,1],[20,20],[3,22],[17,1],[12,17],[16,11],[2,10],[15,1],[4,12],[17,5],[23,22],[14,7],[12,-4],[25,7],[14,18],[12,26],[-1,12],[17,33],[2,16],[9,6],[10,25],[13,13],[13,25],[-3,20],[14,21],[11,34],[-3,12],[5,20],[17,6],[11,26],[27,28],[35,24],[27,6],[7,5],[11,32],[-3,44],[-12,5],[-22,48],[-8,28],[-6,31],[-19,57],[-26,35],[138,263],[124,235],[46,34],[26,29],[54,-6],[45,3],[24,11],[4,8],[26,100],[23,62],[14,31],[7,25],[7,42],[42,31],[58,15],[140,44],[79,36],[33,19],[45,19],[22,15],[25,1],[34,25],[29,43],[24,19],[20,10],[41,9],[54,5],[87,-1],[24,-3],[34,10],[41,8],[46,12],[80,-3],[43,3],[39,6],[62,-2],[44,3],[16,45],[54,102],[41,28],[40,6],[35,19],[45,38],[11,13],[25,43],[21,56],[23,32],[15,91],[-5,28],[2,19],[-1,37],[-12,47],[3,29],[10,46],[21,37],[44,36],[45,55],[-18,49],[-22,66],[-37,81],[-3,48],[-4,20],[-27,68],[-51,96],[-15,22],[-32,37],[-21,34],[8,22],[2,72],[4,27],[0,27],[-8,27],[0,78],[24,32],[7,17],[21,121],[27,51],[7,44],[16,21],[1,21],[7,18],[-3,58],[0,45],[-7,17],[8,69],[4,10],[-13,9],[-34,11],[-18,11],[-38,46],[-13,29],[1,21],[-19,33],[19,36],[36,19],[74,56],[30,20],[44,23],[33,33],[15,28],[75,10],[36,-7],[22,-9],[28,1],[42,-24],[35,-5],[50,-15],[70,8],[34,10],[78,8],[32,11],[53,30],[18,8],[57,14],[30,2],[40,-11],[47,-32],[13,-32],[49,-38],[46,-16],[28,-2],[48,9],[23,24],[31,51],[4,27],[23,19],[20,5],[52,-2],[44,-14],[18,-14],[19,-6],[34,-25],[35,-18],[54,-21],[40,-24],[30,-8],[85,76],[19,59],[17,21],[14,37],[3,26],[35,48],[26,24],[28,20],[60,38],[17,16],[2,28],[1,71],[7,13],[-9,52],[-16,40],[-4,44],[-33,28],[-25,11],[-12,17],[-6,25],[-14,20],[18,37],[7,27],[10,16],[29,19],[17,28],[13,38],[30,56],[12,31],[35,31],[75,95],[11,28],[21,35],[17,41],[-6,73],[17,50],[55,74],[23,6],[27,15],[43,35],[27,30],[36,47],[31,18],[40,45],[14,20],[80,63],[35,37],[59,24],[106,68],[43,22],[82,14],[32,2],[47,-8],[25,7],[38,24],[21,53],[1,36],[5,20],[59,119],[80,55],[37,14],[49,32],[106,25],[35,23],[20,18],[46,31],[31,16],[39,15],[53,-38],[109,-110],[51,-30],[34,-42],[38,-23],[12,-20],[15,-15],[43,-21],[14,-11],[33,-42],[22,-20],[49,-32],[23,-29],[9,-24],[9,-66],[14,-21],[17,-7],[96,-24],[20,0],[29,20],[23,-9],[22,37],[15,38],[11,8],[10,19],[20,25],[9,-1],[32,13],[47,7],[25,15],[29,-2],[18,22],[35,21],[2,23],[-9,18],[6,56],[10,39],[11,18],[28,22],[19,20],[19,32],[24,54],[13,37],[13,20],[0,34],[11,25],[-3,23],[6,43],[-11,14],[-17,5],[-23,17],[-18,20],[5,12],[-2,28],[-23,18],[-27,39],[-6,4],[-7,59],[7,7],[-1,44],[-6,25],[-20,37],[-16,9],[-28,38],[-37,29],[-18,30],[-3,15],[0,74],[-8,15],[4,23],[-6,13],[12,27],[8,32],[20,48],[8,31],[-3,30],[4,62],[-8,9],[-2,32],[-17,27],[-18,46],[-12,20],[-33,39],[-7,22],[-3,25],[7,28],[16,27],[51,60],[23,31],[33,153],[63,88],[20,17],[41,41],[28,23],[33,37],[118,92],[41,23],[40,48],[32,84],[18,41],[28,38],[14,29],[14,22],[55,50],[28,29],[31,52],[33,74],[15,58],[27,28],[13,28],[45,57],[28,27],[23,18],[39,39],[35,44],[21,36],[20,21],[65,29],[11,18],[25,33],[0,32],[17,22],[31,23],[22,41],[-1,40],[25,36],[31,49],[6,36],[19,55],[2,29],[-27,55],[41,3],[26,-11],[32,-3],[49,3],[39,14],[45,9],[18,-3],[24,-12],[19,0],[20,-9],[26,0],[27,-15],[37,-4],[27,-17],[29,-4],[81,15],[35,9],[129,3],[133,4],[116,119],[25,9],[16,23],[75,50],[97,-25],[30,7],[32,12],[28,-21],[7,-29],[21,-21],[19,-5],[13,-12],[39,4],[30,8],[47,0],[33,-15],[15,15],[46,7],[31,12],[14,44],[17,15],[21,45],[48,38],[95,-48],[77,-47],[45,-29],[150,-22],[51,42],[88,-8],[91,1],[94,38],[19,9],[133,71],[23,10],[95,28],[54,14],[43,15],[159,47],[187,53],[81,51],[27,24],[38,47],[116,156],[168,-13],[185,5],[185,42],[82,-12],[45,-40],[74,-61],[59,-31],[44,-1],[35,2],[90,10],[31,10],[64,34],[67,8],[5,11],[51,40],[0,37],[14,10],[36,12],[37,4],[33,15],[13,2],[14,13],[5,38],[12,47],[5,46],[39,60],[34,33],[18,14],[30,13],[27,20],[23,2],[57,21],[26,15],[21,20],[33,54],[12,10],[47,14],[26,3],[9,7],[22,40],[17,22],[-3,41],[20,4],[56,-12],[19,3],[39,-10],[21,4],[28,18],[11,2],[15,-14],[57,-17],[21,14],[8,11],[102,28],[32,10],[27,0],[23,3],[36,-6],[23,-9],[13,-10],[20,-30],[24,-17],[40,-19],[15,-22],[30,-19],[45,-11],[55,-17],[22,-13],[34,-10],[33,-3],[18,8],[19,1],[63,-24],[18,-38],[18,-14],[28,-30],[61,-19],[85,-14],[24,-9],[38,-21],[23,-23],[54,-36],[10,-5],[27,7],[81,-6],[31,-9],[60,6],[15,-2],[30,7],[14,6],[44,10],[33,16],[63,8],[17,-3],[44,2],[36,-9],[14,0],[53,11],[36,13],[25,6],[37,15],[14,2],[20,-8],[16,2],[142,39],[46,9],[29,27],[56,24],[60,48],[37,19],[87,59],[27,39],[80,40],[29,32],[56,24],[66,13],[57,-41],[48,-26],[30,-27],[32,-59],[17,-38],[62,-84],[39,-47],[32,-49],[34,-74],[22,-24],[14,-21],[32,-31],[142,-63],[40,-12],[83,-46],[20,1],[39,-56],[10,-38],[17,-18],[29,-13],[66,-20],[65,-30],[28,-11],[19,-16],[20,-27],[21,-22],[52,-46],[17,-33],[-3,-22],[-15,-37],[0,-32],[9,-23],[13,-18],[60,-48],[294,-128],[90,-39],[116,-104],[16,100],[42,161],[31,58],[6,37],[-4,21],[-16,30],[-6,24],[-16,21],[-12,6],[-11,14],[-27,26],[-15,11],[2,26],[8,13],[-6,22],[2,21],[9,18],[4,49],[-4,12],[5,26],[9,13],[-1,18],[9,5],[4,31],[-8,19],[16,31],[21,17],[0,11],[11,11],[3,12],[13,11],[15,2],[19,13],[23,27],[10,20],[9,0],[12,34],[-6,12],[14,15],[17,2],[20,21],[7,26],[29,26],[2,10],[27,26],[14,23],[10,2],[31,30],[23,3],[8,18],[18,14],[32,15],[12,0],[11,18],[19,18],[5,13],[25,28],[10,5],[22,27],[30,23],[18,31],[13,8],[9,21],[24,13],[21,23],[4,10],[21,26],[47,25],[8,-1],[39,14],[2,5],[28,11],[5,13],[49,23],[11,16],[24,23],[37,28],[30,28],[5,9],[31,23],[13,19],[38,22],[42,14],[32,22],[14,30],[27,43],[25,36],[16,40],[2,38],[-3,87],[-8,52],[7,27],[22,41],[31,100],[23,28],[10,23],[10,37],[43,174],[12,17],[137,57],[106,36],[91,29],[85,36],[134,55],[145,60],[185,94],[97,22],[68,27],[132,53],[77,30],[276,110],[92,34],[182,81],[107,36],[98,35],[62,44],[104,31],[175,82],[270,127],[121,58],[37,11],[57,30],[57,33],[51,24],[26,-48],[73,-147],[61,-111],[43,-88],[20,-60],[24,-63],[48,-48],[34,-88],[44,-72],[67,-94],[85,-118],[68,-132],[49,-86],[49,-71],[73,-114],[37,110],[4,135],[3,17],[-6,72],[-7,70],[-110,127],[1,11],[-15,12],[0,13],[-22,16],[-16,83],[-8,16],[0,37],[-8,20],[7,21],[-23,52],[-1,47],[-13,9],[-11,31],[11,33],[18,35],[-1,26],[26,13],[19,25],[43,28],[28,4],[38,26],[0,8],[19,14],[19,2],[21,12],[12,17],[33,11],[17,35],[19,5],[23,19],[12,27],[14,18],[26,2],[34,22],[11,21],[11,8],[5,28],[35,15],[8,45],[-4,12],[26,14],[14,20],[-7,19],[2,13],[22,24],[11,17],[6,20],[-14,16],[1,44],[27,19],[6,12],[-1,20],[-25,15],[-8,16],[20,26],[15,7],[2,15],[-12,26],[-4,24],[5,18],[11,8],[1,14],[18,11],[5,30],[-5,23],[-20,35],[-5,44],[-17,20],[11,13],[3,22],[-1,34],[6,23],[15,20],[-7,12],[6,21],[44,-29],[14,-4],[28,-33],[37,-24],[20,11],[12,-2],[20,-17],[22,-3],[17,-8],[16,-21],[14,-8],[67,-28],[29,-8],[12,-20],[27,-23],[50,-17],[2,-4],[45,-2],[45,-10],[46,-33],[84,-73],[84,-48],[78,-29],[94,-17],[92,-66],[90,-78],[113,-70],[127,-107],[60,-68],[78,-85],[128,-73],[117,-50],[53,-57],[102,-32],[122,-57],[100,-71],[144,-81],[54,-55],[96,-48],[93,-75],[147,-111],[227,-86],[125,-50],[132,-78],[202,-170],[142,-91],[238,-99],[137,-153],[83,-145],[109,-147],[77,-63],[144,-41],[94,44],[100,62],[115,17],[178,-171],[163,-106],[47,-48],[80,-77],[144,-144],[9,-7],[107,-64],[175,-82],[198,-104],[67,-66],[22,-46],[9,-74],[14,-68],[-14,-107],[-33,-50],[34,-26],[27,-30],[98,-48],[52,-26],[84,-49],[54,-20],[55,-16],[90,-4],[53,7],[37,10],[4,31],[-5,70],[-23,108],[-63,-9],[-32,-11],[-49,-32],[-35,-33],[-78,40],[-57,36],[-9,11],[1,13],[-29,51],[-3,17],[12,23],[4,20],[21,44],[-5,5],[4,44],[10,14],[0,25],[5,13],[18,27],[16,14],[9,19],[33,16],[1,12],[45,22],[16,15],[37,12],[12,11],[20,2],[11,10],[41,8],[20,13],[7,-4],[13,11],[36,-7],[39,16],[17,-3],[71,23],[63,3],[9,6],[28,7],[13,-7],[14,11],[10,-6],[21,11],[29,-2],[7,9],[11,-3],[38,4],[15,-10],[55,12],[33,-3],[24,10],[48,-7],[5,8],[34,-8],[19,12],[10,-8],[22,-1],[17,6],[14,-5],[9,5],[25,-1],[58,6],[2,9],[12,0],[26,9],[19,2],[14,12],[25,1],[53,26],[8,10],[22,3],[10,12],[36,20],[28,4],[4,12],[24,-4],[24,1],[52,17],[19,-3],[26,4],[4,20],[31,0],[23,-6],[21,11],[3,8],[37,10],[44,16],[12,-4],[16,13],[1,11],[15,11],[13,-5],[13,17],[40,12],[5,11],[28,22],[26,14],[42,1],[27,19],[22,26],[13,4],[-2,18],[25,12],[18,-10],[13,-1],[16,-24],[13,2],[8,12],[21,4],[8,9],[2,19],[9,10],[15,3],[10,-6],[30,19],[23,8],[9,19],[0,12],[23,11],[18,22],[46,21],[-7,12],[25,21],[-7,13],[13,21],[16,10],[-10,16],[10,20],[0,23],[18,-6],[-11,17],[7,14],[12,3],[-8,9],[22,18],[-22,11],[20,17],[6,16],[23,21],[3,22],[-4,15],[16,0],[-3,23],[18,11],[-2,11],[-10,1],[17,14],[-9,13],[12,17],[3,17],[-9,12],[19,6],[-10,5],[15,25],[16,4],[-4,20],[2,32],[12,14],[42,34],[16,18],[5,19],[11,9],[25,6],[18,33],[6,27],[17,16],[11,31],[-7,12],[29,54],[-3,17],[15,15],[0,20],[26,38],[39,31],[35,13],[16,25],[28,21],[22,24],[7,-4],[10,12],[27,11],[27,6],[10,7],[15,22],[26,53],[36,10],[56,52],[45,9],[19,21],[23,12],[29,3],[21,-3],[20,30],[13,11],[9,-9],[35,19],[12,10],[12,19],[41,7],[6,7],[-6,23],[31,7],[6,29],[16,8],[16,-1],[11,24],[20,2],[5,9],[-9,7],[-5,20],[9,10],[7,-13],[15,2],[-4,14],[25,4],[-8,9],[11,12],[7,30],[15,-10],[-1,18],[11,4],[4,-8],[12,2],[-5,11],[22,3],[11,11],[15,-2],[-7,14],[14,8],[4,21],[15,4],[-3,-18],[13,-14],[9,2],[25,23],[1,28],[33,-4],[34,18],[12,20],[19,21],[27,19],[31,31],[3,25],[17,22],[-6,10],[18,9],[8,17],[39,19],[-12,13],[15,9],[8,-7],[9,23],[-25,-1],[-2,7],[15,10],[23,26],[-2,12],[3,32],[-13,9],[-2,14],[11,23],[16,9],[4,-8],[14,16],[-3,13],[13,9],[-4,18],[13,1],[10,-9],[4,15],[2,44],[10,8],[6,30],[0,19],[21,24],[5,31],[11,26],[11,13],[15,62],[13,28],[16,10],[10,20],[-9,10],[-7,21],[-12,10],[-37,15],[-3,33],[-17,6],[-11,17],[5,24],[-7,24],[9,21],[10,11],[-6,11],[-14,0],[-11,24],[-15,15],[14,16],[-9,19],[-23,4],[-30,39],[4,16],[-10,19],[-13,6],[-4,15],[13,12],[-8,37],[-26,43],[3,15],[-10,18],[0,12],[14,3],[0,30],[8,10],[10,41],[-7,34],[-11,11],[-4,32],[11,19],[-17,7],[-5,13],[15,6],[13,-5],[-2,18],[-14,27],[0,17],[11,18],[-25,8],[-3,18],[-12,3],[-5,44],[8,17],[-19,15],[-11,48],[11,18],[18,13],[1,18],[-7,15],[1,28],[15,26],[5,30],[14,33],[5,28],[-2,13],[3,42],[10,30],[13,11],[-12,47],[14,30],[13,8],[18,29],[-13,18],[3,26],[-11,4],[3,17],[-12,23],[-6,24],[9,37],[-7,22],[9,24],[11,12],[-1,33],[-6,21],[3,15],[14,33],[18,15],[2,27],[6,16],[-2,28],[-11,22],[-3,21],[15,28],[16,8],[-8,11],[16,46],[-3,11],[9,5],[-4,30],[25,27],[7,12],[17,6],[-2,10],[13,11],[-15,16],[-9,-11],[-17,6],[8,26],[24,14],[21,37],[-29,35],[22,18],[-15,14],[-17,-6],[6,27],[-5,19],[15,30],[41,1],[0,7],[-26,15],[-19,-7],[-4,10],[3,22],[-7,11],[5,16],[25,15],[2,13],[-25,2],[-2,-9],[-12,1],[-5,10],[15,41],[-5,8],[5,16],[27,31],[8,24],[-9,16],[37,17],[11,12],[3,14],[19,31],[12,37],[2,17],[20,22],[8,29],[25,26],[10,26],[-1,32],[11,32],[37,43],[31,56],[5,22],[6,74],[6,28],[15,52],[18,43],[22,44],[31,47],[21,14],[18,64],[23,26],[21,38],[21,24],[12,28],[14,80],[-1,17],[-13,19],[-32,34],[-8,23],[-1,29],[6,28],[-4,30],[-8,25],[4,20],[15,31],[1,24],[-27,46],[-14,59],[-1,45],[-8,23],[-1,17],[9,41],[25,56],[11,14],[30,15],[39,-2],[47,2],[39,-8],[19,-10],[42,-17],[19,-15],[11,-2],[8,10],[22,9],[46,-1],[19,8],[37,4],[21,14],[66,52],[20,23],[30,25],[15,25],[41,-36],[71,-50],[14,-24],[22,-13],[56,-50],[26,-13],[20,-16],[24,-11],[60,-42],[23,-12],[17,-19],[21,-15],[37,-44],[14,-56],[22,-70],[9,-39],[47,-34],[18,-19],[6,-17],[27,-32],[38,-58],[51,-77],[48,-11],[31,-1],[42,4],[81,-10],[22,5],[67,-5],[25,-13],[41,-5],[15,0],[34,-6],[24,-1],[83,14],[31,0],[74,15],[22,1],[55,-14],[52,-4],[25,8],[47,-3],[26,-13],[85,-37],[26,3],[73,-14],[32,4],[50,3],[58,7],[62,10],[83,-7],[110,-3],[17,3],[67,36],[31,19],[45,17],[34,36],[71,20],[203,27],[32,-3],[69,-2],[85,24],[49,-6],[23,13],[36,2],[46,23],[77,34],[56,44],[48,31],[30,26],[98,76],[66,77],[109,96],[89,43],[82,58],[30,33],[59,77],[45,49],[34,69],[59,74],[46,10],[47,14],[41,24],[76,63],[38,27],[31,38],[60,66],[42,23],[92,33],[94,29],[49,7],[-8,-12],[1,-18],[9,-12],[13,4],[17,-34],[29,-20],[33,-79],[-14,-34],[-3,-33],[2,-17],[17,-64],[29,-16],[30,-9],[48,-24],[15,-20],[40,-31],[33,-72],[8,-34],[-1,-61],[-30,-64],[-16,-14],[-5,-12],[0,-25],[-8,-30],[-12,-24],[-4,-36],[-9,-41],[-13,-23],[-3,-28],[17,0],[20,6],[32,-23],[19,-6],[13,3],[7,-9],[25,1],[41,-12],[34,1],[14,5],[40,-8],[21,-16],[38,9],[13,0],[24,10],[8,12],[33,4],[30,10],[2,12],[22,23],[25,37],[21,18],[17,8],[28,-1],[13,-6],[15,8],[13,-9],[26,6],[16,-13],[39,7],[18,-3],[15,5],[17,-5],[15,5],[27,24],[15,3],[5,16],[35,28],[45,-12],[24,1],[14,-7],[11,7],[53,-10],[6,-16],[18,0],[20,-9],[15,-13],[9,2],[57,-11],[33,-14],[19,-1],[15,-13],[38,-13],[17,-14],[33,-5],[22,3],[14,-8],[27,-2],[17,2],[36,-19],[11,0],[32,-27],[39,-7],[44,-4],[84,0],[45,12],[63,-5],[14,-4],[225,-150],[101,-67],[96,16],[214,32],[196,31],[12,0],[230,-51],[31,-4],[12,7],[13,-6],[20,9],[20,-9],[26,18],[9,1],[3,18],[15,6],[9,15],[19,11],[-5,15],[9,1],[13,97],[6,10],[-11,15],[0,26],[9,6],[-19,14],[-7,13],[-12,0],[-3,18],[-13,15],[3,10],[-19,13],[-11,20],[9,15],[-13,23],[6,3],[-12,20],[9,10],[-3,26],[8,5],[-6,11],[7,12],[1,22],[12,16],[20,11],[6,26],[-10,8],[9,6],[-8,24],[6,12],[-8,8],[-11,-4],[-20,32],[11,17],[-11,38],[2,19],[-8,18],[-21,10],[-6,21],[10,7],[-13,23],[-17,11],[-6,23],[10,7],[-6,12],[12,13],[-4,33],[28,20],[-7,17],[2,14],[29,23],[9,14],[10,-2],[8,16],[11,-2],[16,8],[10,-6],[22,13],[4,19],[9,-2],[9,15],[14,-11],[28,16],[-4,22],[29,-6],[27,32],[32,8],[28,27],[17,10],[34,6],[3,17],[17,0],[6,6],[-5,12],[22,8],[9,16],[10,-10],[5,14],[18,12],[12,1],[18,17],[14,-11],[29,1],[0,30],[11,17],[24,16],[36,18],[33,34],[-12,9],[27,29],[-15,10],[12,9],[-4,23],[14,3],[8,23],[0,17],[25,50],[-5,26],[20,63],[18,26],[-6,19],[8,13],[-2,12],[-17,48],[-3,20],[3,23],[-6,23],[4,55],[15,27],[-2,20],[10,9],[2,14],[-8,6],[3,14],[9,8],[17,40],[13,0],[15,38],[1,15],[14,-3],[8,10],[-8,9],[14,1],[1,19],[23,11],[0,25],[9,16],[24,18],[19,5],[-8,11],[15,8],[27,8],[12,13],[14,-8],[3,11],[14,15],[16,-1],[19,20],[-12,12],[27,2],[2,16],[19,20],[-3,19],[11,39],[13,18],[5,29],[13,5],[18,24],[9,29],[20,19],[21,5],[-8,22],[15,16],[18,-8],[6,15],[-10,5],[8,23],[19,11],[7,11],[-11,6],[23,37],[-6,16],[17,19],[7,17],[-7,13],[2,43],[15,9],[4,-10],[11,6],[-7,21],[13,16],[10,-6],[11,21],[8,-1],[11,19],[18,16],[25,6],[8,11],[-3,23],[-11,18],[8,14],[-7,18],[-1,40],[-15,-4],[-7,9],[4,12],[-18,16],[-7,15],[14,43],[15,13],[-4,12],[8,20],[2,29],[8,15],[29,-8],[-3,13],[13,34],[17,-5],[3,13],[22,24],[13,-7],[6,12],[35,15],[24,5],[26,22],[27,1],[25,13],[5,14],[32,4],[9,22],[35,5],[13,20],[15,34],[6,26],[1,31],[15,-2],[5,18],[-13,16],[-1,15],[-15,16],[23,38],[-18,52],[-9,10],[2,19],[-21,18],[10,24],[-8,12],[14,23],[-17,9],[-4,17],[20,14],[-4,31],[-20,18],[16,10],[6,12],[-10,17],[-18,11],[-9,19],[8,10],[-11,9],[-9,20],[-30,-5],[14,14],[-13,10],[-7,-11],[-16,-1],[0,17],[-7,7],[-12,-7],[5,18],[-16,8],[-22,-12],[-6,20],[-26,2],[-10,-8],[-5,27],[-20,1],[-12,-11],[-9,19],[26,10],[-14,20],[-25,8],[9,12],[-18,13],[-4,23],[8,17],[6,30],[11,39],[22,34],[-9,19],[1,22],[10,21],[-11,31],[-23,35],[-16,2],[-27,20],[1,15],[16,40],[5,18],[31,30],[22,-2],[17,9],[5,11],[-7,18],[4,49],[8,10],[28,16],[28,55],[7,6],[29,9],[24,32],[22,9],[32,32],[32,24],[46,10],[32,19],[32,11],[14,-4],[8,14],[34,-8],[8,11],[-7,13],[44,26],[15,17],[14,-6],[14,13],[17,2],[12,22],[20,-2],[10,16],[34,24],[1,7],[-26,6],[-3,17],[1,24],[14,13],[18,-4],[-5,16],[15,-1],[1,17],[-14,22],[-11,3],[12,20],[-19,37],[12,16],[-4,7],[-14,-9],[-4,15],[18,11],[-2,29],[-7,11],[-17,8],[-2,22],[-7,11],[3,14],[-18,4],[-15,30],[4,28],[-27,14],[-22,45],[30,0],[-7,17],[15,0],[-11,25],[-23,19],[18,10],[-6,21],[-13,11],[-13,-14],[1,27],[20,2],[-7,20],[-18,-9],[-16,18],[6,10],[31,0],[7,7],[-4,26],[-18,-8],[-15,26],[49,28],[18,-12],[24,10],[17,-7],[14,4],[35,20],[17,-1],[16,6],[26,24],[5,28],[-2,22],[7,25],[1,25],[14,48],[9,20],[21,25],[8,38],[3,37],[6,22],[26,12],[6,8],[-7,14],[44,29],[26,11],[13,0],[50,11],[40,28],[28,23],[18,2],[45,-7],[40,8],[31,21],[57,51],[17,30],[0,28],[-9,17],[-7,28],[6,12],[14,8],[11,14],[-10,15],[14,25],[-22,29],[-14,27],[6,54],[13,9],[24,72],[16,7],[14,22],[20,12],[26,35],[34,4],[14,8],[15,22],[33,19],[4,8],[-10,33],[2,17],[21,12],[17,-10],[26,11],[3,7],[44,14],[34,-1],[19,14],[21,-2],[15,5],[16,-10],[6,-21],[17,-14],[20,-1],[12,-44],[12,-13],[42,-27],[5,-27],[21,-19],[10,-4],[6,-14],[22,-10],[10,-25],[60,-8],[78,41],[28,1],[66,9],[42,-9],[197,6],[342,4],[99,10],[164,-131],[5,-24],[20,-37],[27,-45],[11,-31],[33,-45],[24,-54],[9,-26],[-9,-28],[-34,-39],[-11,-47],[5,-17],[2,-33],[6,-25],[25,-47],[23,-26],[11,-34],[10,-43],[-4,-28],[7,-15],[26,-18],[-8,-51],[8,-18],[31,-57],[17,-39],[14,-24],[32,-21],[27,-9],[19,-13],[9,-13],[3,-29],[6,-7],[49,-31],[12,-14],[23,-71],[0,-49],[-5,-19],[3,-19],[15,-26],[34,26],[22,-3],[16,13],[12,-1],[78,40],[16,16],[31,23],[21,8],[17,19],[7,19],[16,24],[8,21],[19,2],[28,29],[22,12],[52,3],[29,-1],[4,16],[12,15],[16,1],[11,-8],[11,7],[42,1],[13,-6],[22,10],[36,3],[16,-2],[14,15],[40,13],[17,11],[14,-1],[0,-8],[15,1],[10,-12],[38,-2],[39,8],[24,-1],[17,-12],[13,1],[20,-14],[26,1],[49,13],[22,17],[18,-12],[20,17],[32,-4],[10,4],[12,-8],[9,11],[29,-9],[29,5],[-1,8],[12,12],[19,-3],[7,11],[33,3],[27,12],[13,-2],[44,10],[23,14],[22,19],[41,12],[8,12],[33,-5],[8,-11],[34,5],[52,27],[54,-3],[9,5],[2,30],[8,17],[18,12],[23,8],[17,12],[23,49],[-14,19],[2,21],[-7,11],[-20,15],[-2,21],[12,21],[-18,35],[-6,29],[4,16],[2,54],[-3,24],[20,52],[1,13],[-8,21],[-41,30],[-10,18],[-20,4],[-11,17],[-33,27],[-13,23],[-21,7],[1,17],[8,12],[-14,12],[9,18],[18,4],[-2,14],[-8,7],[10,19],[0,61],[-13,70],[9,71],[-2,23],[4,35],[16,41],[41,75],[4,85],[-6,17],[-18,15],[-7,22],[-36,40],[4,16],[-8,15],[-22,6],[-9,17],[9,23],[0,61],[-28,34],[-43,40],[-12,18],[0,16],[27,32],[15,6],[43,-10],[40,11],[39,24],[46,41],[32,17],[10,19],[16,16],[33,17],[19,16],[10,45],[-4,47],[-17,51],[-12,21],[-39,32],[-4,17],[9,48],[10,20],[18,5],[31,-16],[21,-3],[68,-1],[30,-8],[10,-9],[30,0],[49,-9],[31,3],[51,-6],[78,-37],[32,-42],[20,-12],[14,9],[8,41],[12,31],[5,24],[0,19],[10,66],[6,52],[8,10],[60,27],[40,2],[28,11],[15,22],[-1,20],[-14,19],[-42,6],[-11,14],[10,59],[9,7],[28,2],[64,15],[38,1],[21,-7],[47,-23],[20,2],[20,20],[54,-6],[15,5],[23,18],[29,37],[19,8],[51,-5],[30,10],[45,35],[31,16],[23,1],[58,-36],[41,-17],[27,9],[7,8],[43,83],[14,14],[36,24],[35,4],[41,25],[21,5],[32,-4],[48,-20],[28,5],[31,17],[29,28],[20,32],[16,42],[3,35],[6,26],[-1,23],[-9,29],[1,12],[13,9],[28,-7],[29,7],[70,-13],[25,-13],[14,-17],[19,-42],[16,-19],[22,-8],[27,10],[100,58],[19,24],[25,62],[23,36],[3,23],[-6,29],[0,28],[11,27],[-3,21],[-9,22],[8,40],[13,22],[36,92],[7,9],[34,18],[52,16],[32,-2],[34,22],[28,29],[34,21],[30,32],[12,6],[47,5],[32,12],[21,18],[4,10],[-10,14],[32,52],[-2,15],[-19,25],[-24,46],[-23,19],[-58,82],[-17,49],[-32,64],[-4,20],[9,36],[-7,29],[9,22],[27,29],[3,19],[-11,16],[-22,5],[-4,21],[20,45],[36,43],[3,23],[-25,19],[-50,16],[-12,10],[-9,25],[12,53],[25,5],[17,9],[3,14],[-15,32],[-32,31],[-4,23],[8,35],[-15,29],[11,16],[25,-14],[10,0],[4,19],[-13,36],[-28,27],[-1,20],[20,31],[-3,13],[-17,11],[-2,29],[-9,21],[-23,10],[20,15],[-1,16],[-22,11],[-4,17],[12,20],[3,29],[-12,19],[-17,9],[3,28],[-5,30],[5,28],[1,38],[-21,49],[-12,53],[-14,19],[-34,23],[-22,28],[-1,15],[10,16],[16,16],[3,20],[41,-5],[34,-1],[46,-5],[44,-23],[32,-6],[25,8],[13,-16],[9,-34],[13,-30],[29,-49],[14,-11],[26,-9],[18,-23],[1,-23],[7,-20],[27,-37],[14,-11],[31,-8],[57,-52],[39,-28],[29,-33],[36,-18],[22,4],[8,16],[2,47],[7,12],[46,22],[47,39],[34,5],[44,-4],[96,10],[83,-7],[39,-13],[11,-26],[-1,-16],[-12,-21],[-3,-18],[6,-25],[-8,-16],[-15,-12],[-2,-34],[5,-17],[38,-34],[6,-57],[15,-34],[-7,-33],[-6,-11],[8,-7],[27,19],[15,3],[47,-11],[22,-8],[9,-50],[13,-26],[16,-3],[31,8],[14,-9],[16,-44],[-15,-32],[21,-55],[23,-26],[39,-38],[35,-10],[17,-10],[39,-41],[43,0],[10,-13],[-6,-32],[15,-18],[9,-21],[24,-21],[14,-38],[26,-12],[11,12],[-12,14],[11,10],[28,-3],[57,-30],[26,-18],[8,-10],[2,-66],[22,-63],[2,-22],[10,-31],[0,-25],[-8,-35],[5,-36],[15,-23],[18,-11],[19,-33],[10,-75],[-6,-27],[-15,-3],[18,-16],[31,-7],[21,-20],[13,-34],[-14,-21],[-1,-14],[24,-27],[12,-23],[2,-26],[26,-45],[1,-17],[-8,-12],[5,-10],[30,-7],[14,-9],[9,-29],[-8,-14],[12,-11],[31,-4],[35,-36],[23,-31],[7,-26],[29,-19],[5,-18],[-20,-34],[0,-16],[15,-30],[16,-10],[1,-12],[-14,-29],[-6,-7],[-38,-6],[-15,-21],[-7,-60],[9,-17],[25,-25],[31,-8],[12,0],[54,-13],[5,-5],[-16,-30],[14,-46],[11,-9],[18,-4],[33,-34],[13,-2],[26,7],[20,-10],[51,-35],[14,-2],[25,21],[52,22],[29,5],[30,-2],[36,21],[59,22],[24,3],[51,-2],[30,-11],[4,-29],[8,-7],[38,-12],[26,-28],[-40,-55],[-6,-30],[-19,-32],[-28,-20],[-13,-41],[3,-11],[47,-27],[40,-31],[27,-9],[26,-17],[12,-17],[0,-18],[19,-7],[23,-24],[14,-6],[24,1],[7,-11],[38,-7],[41,-1],[21,-3],[8,16],[10,-1],[11,-12],[26,-6],[44,8],[2,17],[38,-8],[24,-17],[25,-2],[19,20],[53,-10],[9,6],[3,15],[26,-1],[26,14],[37,-5],[24,2],[11,17],[42,11],[17,-3],[9,-14],[13,-32],[19,-4],[10,-16],[19,-11],[21,5],[18,-22],[21,3],[3,-33],[7,-14],[23,1],[21,-5],[13,-8],[7,12],[22,-4],[-6,-16],[13,0],[4,9],[12,-4],[2,-15],[18,-11],[22,-1],[68,-45],[32,-23],[32,-38],[36,-35],[11,-21],[-11,-23],[11,-17],[47,-2],[20,-6],[113,-51],[11,-7],[87,-27],[33,-3],[45,4],[17,-1],[38,-18],[28,-9],[21,-13],[26,-37],[21,-20],[18,-29],[-3,-21],[11,-6],[-2,-32],[23,-22],[28,0],[30,10],[36,-11],[23,-3],[24,27],[25,15],[8,49],[-4,18],[2,24],[8,14],[5,28],[16,20],[17,12],[11,25],[-28,40],[-1,29],[13,11],[24,-3],[27,13],[18,4],[26,20],[16,20],[6,25],[38,23],[12,12],[10,-3],[21,11],[-4,23],[8,26],[-11,22],[12,12],[-6,20],[34,26],[29,8],[15,11],[47,8],[20,38],[26,31],[18,18],[23,54],[87,29],[15,-1],[22,11],[-10,20],[0,24],[-16,39],[11,27],[-21,18],[-1,25],[14,18],[10,39],[32,27],[25,1],[10,15],[22,6],[21,22],[5,11],[19,7],[22,18],[5,15],[24,39],[33,35],[-2,12],[22,15],[-3,37],[9,0],[0,26],[6,8],[11,-8],[18,-2],[12,6],[-2,-13],[24,20],[21,-7],[21,8],[-4,13],[25,36],[14,2],[6,28],[23,23],[11,-3],[-2,16],[14,1],[6,12],[8,-3],[8,13],[-5,9],[10,18],[17,-11],[5,8],[32,-1],[9,23],[10,-10],[20,9],[15,24],[34,16],[9,11],[18,0],[17,17],[5,-7],[10,15],[20,3],[22,17],[21,1],[23,14],[8,19],[19,21],[10,4],[14,26],[10,8],[0,12],[16,26],[6,26],[-2,9],[15,43],[37,38],[7,38],[21,47],[-8,11],[4,10],[-3,26],[7,6],[0,28],[-6,7],[8,15],[-14,22],[6,21],[-5,28],[19,33],[37,53],[17,12],[9,21],[8,6],[19,0],[14,16],[20,-6],[42,17],[34,-8],[15,8],[13,15],[10,-7],[25,11],[3,15],[16,14],[-5,12],[7,20],[-3,16],[14,21],[20,10],[11,-2],[13,11],[10,-4],[11,9],[32,15],[38,6],[-1,11],[26,15],[27,-5],[12,7],[13,-8],[24,5],[5,9],[19,7],[23,-11],[23,6],[11,9],[31,6],[2,12],[20,14],[16,2],[15,10],[11,-2],[12,9],[45,4],[31,19],[11,-20],[29,3],[19,-8],[33,9],[22,-4],[35,12],[16,10],[15,-1],[16,6],[27,-7],[20,12],[6,13],[20,14],[6,24],[17,13],[12,-1],[11,18],[13,3],[14,11],[18,5],[24,21],[27,2],[45,32],[28,-1],[38,13],[17,-4],[9,13],[26,12],[-5,40],[6,25],[14,14],[-9,7],[2,22],[-8,18],[5,11],[-23,21],[-7,23],[4,30],[-10,6],[-9,20],[-21,11],[16,15],[2,33],[8,10],[-15,23],[14,20],[-7,14],[-3,22],[14,37],[31,59],[5,24],[9,14],[0,42],[5,16],[-1,27],[5,4],[2,38],[6,39],[13,6],[2,24],[35,36],[-13,-2],[-23,-16],[-43,-2],[-23,-9],[-40,-10],[-45,-5],[-40,0],[-40,5],[-19,6],[-27,-1],[-19,-9],[-21,-20],[-13,-3],[-28,-22],[-36,18],[-11,26],[2,6],[-19,27],[2,6],[-10,29],[-21,23],[-52,14],[-50,60],[-25,23],[-14,21],[-10,31],[-3,61],[-4,17],[3,41],[12,21],[38,39],[3,24],[-2,27],[7,25],[15,22],[30,5],[18,7],[46,29],[41,39],[8,45],[1,52],[5,27],[20,26],[21,17],[48,21],[45,49],[19,17],[32,17],[13,16],[20,10],[28,39],[19,42],[21,18],[19,3],[31,17],[62,108],[25,22],[7,36],[15,18],[10,25],[24,12],[36,26],[26,31],[45,32],[16,36],[12,16],[34,27],[20,7],[16,14],[39,12],[63,-9],[39,-11],[77,-16],[44,-20],[32,-5],[43,-12],[28,1],[34,-2],[17,22],[22,17],[15,52],[-5,56],[2,49],[-15,29],[-13,18],[-9,24],[0,26],[-28,37],[-2,12],[-24,35],[-4,16],[20,44],[19,33],[2,11],[21,38],[-4,7],[15,17],[15,34],[42,23],[18,16],[46,23],[32,9],[36,23],[15,17],[4,29],[-15,17],[0,25],[-5,31],[8,6],[-7,16],[5,11],[-18,19],[11,7],[6,22],[-18,4],[-3,19],[-10,14],[-18,10],[-9,13],[-4,21],[7,-4],[5,16],[-6,20],[-32,18],[-1,21],[-15,24],[-10,27],[5,10],[17,7],[2,33],[10,9],[-20,29],[-11,2],[-11,35],[1,23],[8,16],[1,19],[-6,30],[-11,11],[13,19],[-16,24],[5,25],[-8,23],[8,21],[-13,5],[1,44],[-35,43],[-15,27],[7,9],[-5,20],[4,25],[8,16],[-3,11],[-17,15],[-7,38],[-12,14],[-22,9],[5,16],[-18,24],[-32,18],[-15,4],[-10,19],[-20,23],[-23,1],[-44,44],[-22,19],[-5,15],[-18,20],[-1,32],[-18,20],[2,14],[-22,23],[-20,7],[-1,54],[-4,9],[-15,8],[-20,24],[-26,18],[-19,-2],[-19,13],[-19,4],[-15,-5],[-33,19],[-22,7],[-27,30],[-18,12],[-8,18],[-30,22],[-14,4],[-3,36],[-24,15],[-12,3],[-8,19],[1,13],[-14,14],[-9,24],[2,8],[-14,16],[-6,19],[-19,12],[0,20],[-14,80],[-12,157],[171,66],[199,45],[183,-23],[88,12],[20,16],[5,21],[10,11],[23,15],[16,18],[13,22],[-11,11],[2,11],[-13,32],[13,21],[15,8],[20,1],[30,12],[14,15],[0,16],[20,22],[1,12],[22,12],[22,20],[11,4],[14,18],[24,16],[30,26],[-2,17],[14,13],[34,5],[2,18],[39,12],[20,-8],[17,2],[10,8],[16,-4],[43,13],[10,12],[21,14],[11,16],[10,2],[5,22],[33,21],[37,20],[11,17],[21,1],[8,15],[31,6],[27,18],[45,7],[16,19],[19,-5],[22,2],[12,7],[23,-1],[25,13],[29,-10],[19,15],[29,9],[10,-11],[24,1],[2,7],[17,-13],[7,6],[13,-6],[18,0],[11,-10],[10,6],[8,-8],[23,-8],[21,1],[56,-44],[12,2],[32,-15],[6,-17],[10,4],[32,-22],[26,6],[10,-10],[27,6],[6,-13],[40,-22],[49,-8],[20,2],[35,-14],[9,13],[32,27],[25,8],[29,-13],[45,17],[13,20],[33,11],[15,-3],[11,10],[30,9],[17,-10],[15,1],[10,-10],[18,9],[30,-11],[18,3],[15,-10],[40,-44],[18,-8],[58,-3],[12,-10],[18,-5],[29,4],[13,9],[5,13],[21,8],[22,-3],[27,7],[17,-5],[21,1],[1,-12],[21,1],[2,-7],[25,-8],[17,8],[10,-9],[20,19],[8,17],[24,5],[23,-2],[1,-7],[22,-1],[9,12],[12,0],[7,-10],[30,15],[25,-6],[25,5],[24,-14],[28,0],[13,-17],[21,-9],[6,-13],[23,7],[26,-13],[25,-3],[37,12],[4,-6],[44,1],[34,-24],[5,-11],[18,-4],[18,4],[59,-19],[25,-26],[81,-37],[11,-16],[26,-16],[16,-4],[35,5],[58,-7],[30,-13],[42,9],[125,63],[26,21],[35,41],[50,39],[92,38],[15,18],[26,14],[41,18],[35,4],[66,0],[91,-4],[33,-7],[72,12],[35,-3],[58,9],[66,19],[52,23],[42,24],[55,25],[69,14],[63,29],[35,19],[5,25],[-2,98],[-15,67],[-32,99],[-27,44],[-17,21],[-17,50],[-4,27],[11,83],[26,5],[20,11],[8,-5],[1,-16],[15,-6],[7,9],[13,-8],[21,2],[10,-5],[48,-6],[6,10],[-9,12],[7,16],[11,-5],[16,-21],[16,5],[4,21],[29,-7],[10,17],[22,4],[28,18],[25,-15],[25,17],[-6,9],[4,18],[29,7],[1,11],[22,2],[19,26],[31,6],[10,21],[21,-9],[21,1],[22,-9],[7,21],[25,2],[22,10],[1,14],[14,14],[25,7],[-6,24],[15,-4],[14,3],[-6,13],[11,12],[18,-1],[5,16],[17,6],[1,8],[30,12],[19,27],[-8,7],[17,12],[-3,18],[20,11],[7,11],[-12,10],[16,5],[4,29],[9,7],[12,-4],[25,6],[0,13],[11,17],[12,-9],[39,8],[9,12],[64,4],[20,9],[0,-7],[17,2],[5,-9],[15,10],[13,0],[36,-10],[6,11],[29,-5],[6,-8],[19,13],[5,-3],[37,23],[18,7],[42,-2],[55,15],[10,9],[41,-3],[24,7],[29,19],[24,7],[5,11],[33,10],[40,-2],[30,9],[6,-9],[18,5],[4,9],[20,2],[19,-10],[25,-20],[-5,-7],[13,-6],[20,6],[4,-7],[39,0],[2,7],[29,3],[17,17],[-4,9],[31,7],[7,-13],[8,8],[23,2],[5,20],[15,-8],[19,10],[-8,9],[11,4],[9,-11],[23,10],[9,-7],[17,15],[7,13],[30,7],[45,0],[45,-14],[30,-18],[22,-2],[11,-18],[27,-19],[-9,-6],[13,-29],[31,-6],[-1,-15],[12,-17],[6,4],[31,-18],[13,3],[17,-5],[-2,-12],[10,-12],[15,1],[17,-16],[18,-9],[15,-15],[28,-3],[-3,-7],[24,-16],[0,-17],[12,-1],[25,-25],[1,-16],[22,-40],[29,-9],[11,-10],[20,1],[24,-18],[19,2],[11,-9],[6,5],[24,-14],[32,-2],[4,-21],[11,-12],[2,-27],[27,-13],[19,5],[4,-10],[16,-5],[21,-16],[33,-2],[4,-9],[22,1],[9,-17],[35,-29],[-4,-6],[5,-37],[21,-24],[16,-26],[1,-23],[21,-30],[21,-19],[11,-38],[35,-27],[21,-25],[22,-9],[30,-22],[66,-58],[17,-10],[11,10],[23,-21],[95,-36],[34,-7],[7,-9],[32,-12],[18,1],[10,-7],[83,-1],[21,7],[6,-6],[25,3],[23,-1],[8,8],[17,-4],[43,14],[28,-9],[12,-15],[15,9],[42,4],[30,-17],[26,-8],[18,5],[41,1],[9,-10],[28,-3],[5,6],[19,-10],[9,-13],[9,4],[19,-14],[32,-13],[32,-32],[42,-10],[2,-7],[26,6],[10,-15],[25,17],[17,-4],[13,16],[24,10],[1,11],[14,0],[11,25],[22,13],[1,16],[33,11],[3,18],[14,5],[-1,14],[19,2],[-6,12],[3,14],[24,5],[26,18],[18,-5],[12,7],[-3,10],[4,21],[-15,13],[4,21],[-13,9],[-3,26],[-21,26],[1,12],[17,18],[-7,19],[1,17],[-19,18],[6,33],[-5,8],[7,31],[-27,11],[-22,25],[-37,17],[-10,24],[-28,15],[-6,26],[-21,24],[8,8],[33,13],[11,-1],[13,12],[25,12],[33,-8],[35,-17],[11,-11],[2,-14],[42,-24],[19,-5],[31,6],[13,12],[4,21],[30,20],[-3,25],[17,29],[18,13],[26,3],[30,20],[11,13],[16,4],[20,13],[28,1],[18,28],[12,-3],[40,34],[22,4],[13,34],[-4,9],[23,31],[21,10],[17,-7],[30,26],[9,14],[11,1],[0,27],[11,7],[13,19],[12,9],[6,16],[13,10],[27,9],[9,13],[10,0],[18,14],[24,43],[15,-5],[9,9],[12,-2],[12,10],[1,16],[20,12],[16,4],[11,29],[20,10],[17,2],[8,19],[32,-3],[27,-9],[38,-1],[25,-16],[40,-52],[44,-65],[21,-81],[60,-28],[31,-37],[85,-61],[46,-15],[55,-32],[35,-26],[38,-23],[30,-12],[29,4],[138,25],[83,33],[55,14],[92,41],[78,35],[28,16],[38,41],[63,53],[35,48],[47,70],[14,26],[16,10],[18,32],[16,36],[20,29],[9,6],[37,47],[50,52],[53,-24],[27,-18],[6,-12],[-5,-52],[39,-10],[30,27],[47,18],[45,27],[31,-2],[40,-21],[54,-25],[15,0],[57,-10],[38,-43],[16,-37],[20,-29],[26,7],[36,18],[30,7],[11,-7],[18,-23],[29,33],[46,30],[28,15],[24,26],[32,64],[24,30],[41,29],[61,19],[37,0],[23,-11],[40,-27],[39,-34],[12,-7],[75,-16],[53,-31],[23,-19],[4,-9],[20,-3],[9,-8],[11,-25],[28,-7],[24,-2],[38,3],[20,8],[15,12],[7,16],[28,29],[34,27],[51,21],[36,-4],[28,-33],[13,-21],[-1,-17],[-9,-48],[4,-21],[-2,-26],[5,-18],[47,29],[31,25],[118,23],[32,12],[72,41],[27,-12],[57,-38],[28,-15],[41,-30],[28,-7],[6,12],[33,-4],[56,1],[19,-2],[37,14],[28,5],[47,5],[45,-1],[28,-4],[30,0],[26,-16],[63,-34],[27,-24],[23,-70],[-15,-31],[17,-38],[37,-35],[21,15],[7,-15],[46,-6],[39,-25],[35,-35],[15,-25],[27,-39],[35,-30],[53,-4],[52,-8],[88,-2],[31,-15],[23,-18],[67,-47],[38,-29],[22,3],[13,9],[24,-19],[20,-3],[-2,-18],[28,-13],[-2,-13],[27,-12],[2,-31],[9,-13],[14,9],[7,-22],[19,-8],[9,3],[18,-6],[55,-1],[11,21],[40,8],[62,27],[55,33],[7,15],[1,20],[13,8],[2,9],[13,6],[41,29],[7,-10],[18,14],[8,13],[6,-7],[7,10],[22,-2],[26,12],[27,-3],[1,6],[33,-10],[19,-27],[17,0],[2,-14],[20,-21],[10,0],[1,-11],[13,-9],[28,-10],[23,4],[29,-9],[10,3],[3,14],[19,1],[9,-14],[20,8],[23,-12],[5,11],[19,-9],[12,2],[35,-26],[10,4],[15,-9],[20,1],[42,12],[22,-2],[24,3],[-1,6],[22,16],[11,-2],[13,10],[11,-1],[0,12],[18,-8],[25,12],[62,2],[15,15],[15,0],[32,36],[9,7],[45,11],[13,24],[24,2],[16,-10],[16,15],[15,-12],[16,3],[4,-8],[31,6],[7,-9],[32,-12],[19,11],[23,8],[13,16],[5,28],[23,4],[20,11],[11,-1],[16,14],[31,49],[12,33],[16,28],[6,23],[14,21],[8,38],[12,19],[9,30],[-2,44],[0,53],[14,24],[30,65],[23,34],[13,40],[16,34],[-1,24],[16,44],[-6,51],[-2,56],[-3,11],[-23,30],[-15,38],[0,35],[7,37],[4,46],[0,72],[4,17],[33,59],[4,-6],[47,-16],[46,-24],[39,-6],[61,9],[24,10],[33,22],[45,3],[24,-13],[80,-61],[24,-10],[56,-16],[38,-30],[21,-28],[9,-4],[2,-21],[17,-3],[3,-11],[43,-12],[12,1],[13,-22],[4,-21],[21,4],[22,-37],[37,-15],[21,-13],[22,-26],[21,2],[2,9],[29,0],[13,-9],[26,2],[33,-21],[14,6],[18,-4],[31,18],[28,-2],[32,16],[4,7],[19,2],[30,30],[-2,5],[23,13],[11,16],[10,-2],[31,13],[-1,8],[10,22],[-2,9],[21,14],[-2,14],[21,13],[32,-8],[22,15],[9,13],[35,13],[33,3],[25,11],[18,18],[8,17],[33,-5],[51,7],[18,10],[6,14],[25,7],[7,-5],[34,6],[22,14],[20,5],[36,30],[24,15],[44,11],[86,107],[20,36],[32,96],[1,49],[-6,51],[5,28],[26,89],[6,30],[3,39],[13,54],[14,49],[23,18],[20,33],[25,13],[20,4],[12,15],[-17,27],[-45,43],[-10,18],[-24,29],[-63,43],[-51,7],[-21,25],[-27,63],[-32,26],[-28,37],[-27,81],[-9,17],[-53,58],[-48,39],[-18,29],[-32,41],[-5,20],[-12,12],[4,7],[-15,27],[-12,-9],[-16,11],[-21,5],[-24,-1],[3,15],[-37,38],[-8,25],[2,17],[-8,8],[-2,20],[-38,60],[-1,35],[-11,18],[12,23],[4,19],[-13,14],[24,12],[4,18],[-14,35],[-5,30],[-20,67],[-4,43],[-14,13],[-6,27],[-15,39],[1,26],[6,31],[12,18],[-2,8],[30,39],[32,28],[-4,22],[10,16],[18,6],[6,9],[19,9],[31,5],[5,13],[18,12],[17,-4],[1,6],[38,45],[13,4],[-2,12],[7,17],[-7,13],[4,53],[14,23],[-1,19],[-9,19],[10,24],[28,38],[3,42],[8,38],[13,34],[11,18],[6,20],[26,43],[-2,19],[5,14],[35,12],[13,11],[32,17],[7,31],[8,11],[14,3],[26,40],[20,3],[12,20],[2,39],[11,19],[13,39],[24,11],[4,13],[23,22],[14,28],[12,8],[2,31],[-29,73],[-17,13],[-63,24],[-41,26],[-14,15],[-15,45],[-15,29],[8,83],[14,27],[27,119],[9,35],[24,18],[53,15],[22,15],[38,40],[18,13],[19,8],[76,20],[30,12],[27,22],[35,-28],[25,-15],[33,-27],[31,-32],[23,-15],[51,-18],[70,-17],[95,-10],[24,-8],[65,-42],[21,-8],[34,-1],[22,-6],[15,-11],[13,-19],[25,-19],[57,-68],[61,-25],[20,2],[21,11],[27,25],[33,3],[28,-26],[84,-17],[53,-20],[86,-14],[33,-2],[33,5],[80,-13],[24,1],[41,11],[27,19],[44,24],[15,3],[65,48],[32,0],[10,-6],[19,5],[13,-15],[25,-4],[8,3],[39,-2],[21,8],[47,-14],[10,9],[37,11],[26,-1],[19,7],[16,16],[1,13],[13,18],[16,7],[10,25],[31,22],[15,4],[22,17],[34,3],[7,-6],[25,-3],[25,30],[25,13],[14,19],[25,-2],[19,20],[0,8],[14,11],[-1,15],[9,3],[6,19],[16,10],[0,35],[40,-5],[14,10],[-6,23],[7,29],[2,31],[-6,29],[44,68],[19,23],[23,19],[35,21],[59,58],[67,62],[61,37],[71,37],[57,27],[-20,19],[-4,25],[1,41],[-4,29],[-5,60],[2,29],[-13,58],[-16,87],[-9,28],[-17,25],[-13,29],[-8,29],[-1,26],[20,20],[115,69],[76,72],[37,27],[52,18],[90,19],[48,16],[48,20],[12,7],[20,-4],[139,9],[45,-2],[32,3],[84,2],[57,36],[84,70],[46,31],[58,60],[43,20],[30,-2],[95,18],[40,3],[55,39],[20,-2],[31,12],[40,23],[60,27],[84,40],[17,39],[63,73],[0,12],[11,6],[30,38],[16,7],[21,-3],[13,6],[19,-1],[21,14],[-6,14],[3,15],[-2,32],[13,11],[17,5],[18,-19],[36,-17],[18,-13],[-5,-8],[14,-27],[11,-1],[-2,-22],[18,-33],[21,-8],[11,13],[31,-24],[14,8],[8,-22],[11,-13],[-3,-9],[16,-10],[19,6],[30,1],[22,-8],[18,-14],[25,6],[7,-8],[21,-6],[10,6],[36,-38],[26,-13],[10,-21],[-7,-17],[37,-15],[12,-16],[14,-7],[15,8],[7,-23],[16,2],[8,-12],[25,-5],[14,-11],[20,-7],[-2,-18],[10,-1],[15,-16],[-15,-18],[1,-24],[13,-11],[-10,-14],[8,-11],[-11,1],[1,-25],[9,-1],[-2,-24],[-19,-12],[17,-15],[-19,-14],[11,-11],[-6,-26],[-19,-3],[12,-8],[9,5],[7,-18],[16,-7],[3,-11],[-9,-3],[1,-23],[27,6],[43,6],[16,13],[40,5],[10,-3],[47,8],[74,30],[97,32],[71,10],[34,-32],[19,-9],[64,-11],[48,11],[39,-2],[49,-16],[95,-56],[22,-5],[97,-37],[43,-23],[33,-24],[35,-32],[23,-29],[24,-23],[21,-32],[11,-43],[12,-17],[28,-20],[38,-51],[34,-53],[15,-13],[62,-20],[54,-7],[36,0],[92,10],[11,5],[39,27],[35,28],[15,65],[12,23],[0,17],[24,25],[12,18],[39,27],[46,117],[27,34],[40,45],[44,20],[7,12],[51,0],[55,-18],[21,-2],[61,-17],[119,-7],[28,-6],[22,1],[69,27],[31,7],[54,17],[60,29],[52,14],[30,15],[46,-2],[25,17],[49,4],[17,-3],[46,1],[22,7],[14,-7],[17,-25],[31,-32],[28,-22],[16,-35],[43,-20],[56,-7],[69,4],[55,29],[81,-7],[85,45],[43,13],[41,16],[20,4],[29,-11],[32,-19],[36,-5],[31,22],[47,27],[105,38],[115,33],[-15,48],[-9,73],[-10,116],[4,54],[22,98],[32,72],[15,23],[73,39],[22,15],[22,22],[48,55],[12,24],[73,19],[10,15],[-8,15],[-18,18],[5,15],[52,20],[17,31],[4,20],[21,25],[4,21],[-3,16],[19,19],[10,2],[13,17],[3,17],[18,5],[3,10],[28,14],[35,1],[23,17],[15,27],[28,10],[22,-8],[32,10],[0,4],[33,6],[25,-4],[8,-12],[19,-1],[29,8],[17,17],[22,5],[15,-5],[16,9],[41,8],[45,-16],[8,2],[39,-23],[22,0],[15,7],[17,-3],[40,11],[44,43],[2,15],[38,18],[48,69],[46,31],[46,26],[41,27],[55,27],[47,20],[15,1],[13,-6],[46,-12],[8,-10],[11,3],[27,-13],[30,-2],[20,-23],[11,1],[19,14],[26,4],[11,11],[37,12],[85,40],[28,28],[21,59],[29,32],[23,10],[64,11],[78,6],[70,17],[38,14],[59,32],[24,10],[115,41],[57,15],[94,-14],[73,-8],[53,-11],[71,8],[48,34],[34,30],[55,43],[41,30],[35,28],[93,101],[53,47],[31,21],[11,4],[55,50],[65,52],[32,36],[68,43],[43,19],[23,13],[31,29],[34,21],[35,3],[29,-2],[29,8],[47,4],[25,11],[75,14],[30,12],[67,44],[22,32],[21,41],[33,27],[33,15],[52,12],[30,28],[18,23],[77,102],[23,11],[71,-14],[87,-13],[118,-7],[55,4],[110,14],[62,11],[33,11],[53,9],[122,15],[111,11],[39,11],[63,26],[65,25],[120,40],[70,10],[58,2],[79,-11],[74,2],[49,-1],[6,7],[25,10],[23,14],[4,8],[17,9],[16,25],[18,13],[21,8],[23,22],[-1,5],[27,16],[13,2],[7,13],[24,6],[12,-6],[19,1],[12,-11],[21,4],[60,-15],[27,-4],[9,-10],[45,-4],[12,-4],[13,6],[23,1],[27,18],[87,34],[31,22],[31,12],[16,12],[36,16],[32,36],[8,19],[34,19],[11,30],[-2,10],[5,27],[36,15],[17,20],[7,-1],[14,17],[-2,8],[28,24],[6,10],[26,13],[23,20],[17,1],[26,17],[16,0],[34,46],[6,23],[11,1],[25,20],[13,4],[11,22],[13,-3],[10,15],[-11,2],[20,10],[-4,5],[15,7],[5,12],[13,4],[10,26],[14,5],[5,11],[64,31],[10,11],[31,9],[26,2],[0,8],[42,-2],[21,-11],[11,3],[26,-30],[94,-35],[63,-28],[44,70],[70,119],[72,133],[71,134],[113,163],[35,57],[30,58],[25,60],[109,308],[20,62],[16,62],[14,64],[11,64],[8,64],[5,65],[2,65],[-2,64],[-8,65],[-13,63],[-19,63],[-23,61],[-25,60],[-29,59],[-45,78],[77,30],[53,-2],[27,-4],[42,-15],[118,-23],[76,-27],[63,-27],[25,-7],[20,-11],[26,-1],[50,13],[40,20],[26,18],[30,11],[25,16],[50,17],[35,6],[62,-2],[44,3],[49,19],[25,18],[43,26],[45,31],[33,17],[55,11],[30,17],[99,80],[66,57],[71,71],[36,22],[87,61],[72,67],[63,45],[92,-21],[119,13],[55,-39],[53,-18],[45,-24],[87,-39],[57,-20],[67,-15],[28,-14],[33,-4],[21,8],[105,-50],[83,-111],[54,-109],[12,-7],[13,-27],[1,-27],[104,-61],[29,-53],[-5,-32],[13,-22],[128,-58],[27,-8],[225,5],[112,-24],[51,-8],[56,-22],[49,-35],[11,-1],[58,3],[46,0],[46,37],[32,14],[30,24],[7,15],[46,30],[77,21],[24,10],[64,34],[63,44],[70,13],[68,38],[34,9],[55,33],[31,3],[60,30],[29,-4],[30,6],[101,13],[34,10],[52,10],[20,1],[21,11],[22,-5],[34,-1],[24,4],[44,24],[156,19],[173,44],[33,-30],[28,-5],[57,4],[58,19],[15,9],[52,22],[47,21],[121,70],[49,43],[45,-1],[37,-13],[76,-12],[93,17],[19,60],[-7,54],[52,76],[-44,55],[-34,55],[-19,72],[22,45],[26,39],[3,16],[-35,38],[-1,62],[26,12],[38,-24],[27,23],[27,-14],[38,-4],[5,-20],[-13,-15],[-1,-12],[9,-30],[10,-19],[9,-5],[14,20],[10,-4],[15,-23],[42,-22],[4,-20],[14,-16],[9,2],[-6,19],[5,10],[19,-16],[25,13],[38,-13],[9,0],[10,-20],[16,6],[9,19],[-7,8],[6,11],[29,6],[28,45],[22,4],[21,-12],[8,-10],[7,-31],[29,-14],[0,15],[13,0],[33,-50],[20,-15],[35,-7],[17,2],[-3,-22],[16,-9],[22,20],[10,-4],[12,10],[5,-7],[-12,-18],[10,-2],[48,16],[12,-4],[-5,-13],[44,-16],[23,9],[20,-3],[9,7],[29,0],[6,-14],[50,-20],[32,-3],[38,-24],[16,0],[8,10],[10,-4],[29,3],[20,-5],[39,-19],[39,2],[27,-7],[18,3],[26,18],[8,26],[4,48],[-7,17],[15,17],[20,0],[29,-25],[30,-11],[18,-12],[27,41],[35,25],[18,5],[14,-2],[29,-22],[31,-4],[13,-21],[12,5],[14,19],[14,8],[8,31],[15,15],[19,12],[21,5],[12,10],[30,13],[44,-30],[73,-4],[29,13],[34,1],[38,15],[12,19],[-10,30],[2,15],[19,12],[1,7],[-26,69],[-26,42],[-31,10],[-23,14],[-13,17],[-5,18],[19,26],[48,2],[11,13],[-14,33],[13,33],[13,81],[7,22],[0,29],[14,34],[-1,30],[22,27],[-15,41],[2,16],[9,6],[8,23],[-15,43],[0,25],[-22,11],[-16,16],[-20,10],[-6,18],[3,17],[19,14],[12,40],[-3,18],[-16,22],[-41,19],[-22,24],[-12,26],[8,27],[1,27],[9,18],[25,21],[-4,59],[-26,49],[-3,11],[6,17],[-11,29],[-12,6],[-4,11],[5,15],[32,20],[16,-7],[15,-16],[37,-16],[62,-5],[26,10],[6,6],[0,44],[-30,27],[-20,12],[-12,27],[9,57],[25,-12],[15,7],[17,-15],[25,-2],[6,-8],[1,-23],[33,4],[20,-25],[7,-2],[33,8],[18,-4],[46,16],[23,-1],[15,14],[12,57],[-2,5],[-30,21],[-30,0],[-36,30],[-56,11],[-9,34],[7,18],[15,10],[23,7],[26,-4],[34,-26],[29,2],[22,16],[19,6],[23,36],[7,26],[36,10],[15,7],[23,21],[19,3],[12,10],[25,32],[36,14],[24,0],[17,7],[12,20],[17,4],[33,2],[41,7],[10,19],[-24,14],[-1,46],[-20,45],[-11,15],[-8,22],[-2,28],[-20,27],[-2,12],[7,24],[12,22],[21,3],[9,21],[-8,27],[-56,26],[-4,28],[-9,14],[-4,43],[-19,31],[2,40],[17,41],[-3,23],[14,20],[9,27],[8,9],[25,56],[-12,38],[-25,21],[-30,12],[-22,4],[-32,16],[-9,29],[-21,19],[-4,19],[-25,17],[-6,51],[1,14],[-11,1],[-5,12],[-10,-3],[-6,15],[-16,12],[-19,5],[-28,14],[-7,18],[-19,-2],[-9,9],[-21,-7],[-26,15],[1,11],[-19,15],[-18,-1],[-5,18],[-15,20],[-12,2],[-13,-12],[-7,13],[-1,23],[-11,8],[-18,3],[-17,8],[3,19],[-24,4],[2,8],[-18,15],[3,17],[-9,18],[-13,-1],[-34,40],[-2,21],[-13,7],[-30,38],[-25,14],[-23,-41],[-21,-44],[-54,-19],[-44,-12],[-52,-2],[-39,-13],[-55,2],[-41,-22],[-28,-8],[-49,-3],[-24,-10],[-4,-28],[-12,-11],[-25,-10],[-22,7],[-14,-4],[-10,7],[-13,-4],[-23,5],[-29,-15],[-4,-11],[-16,-15],[-24,-9],[-11,-14],[-23,1],[-25,12],[-42,9],[-12,10],[-15,25],[-29,11],[-44,26],[-46,-1],[-10,24],[1,18],[14,39],[4,19],[1,66],[-2,17],[-12,27],[-43,-10],[-67,2],[-35,-1],[-39,-11],[-87,-33],[-50,-12],[-24,3],[-11,5],[-64,-7],[1,41],[18,54],[-29,10],[-59,45],[-24,11],[-75,45],[-36,13],[-33,6],[-30,10],[-36,5],[-44,9],[-31,4],[-62,4],[-35,5],[-53,-6],[-23,3],[-34,16],[-29,42],[-2,9],[-18,19],[-39,30],[-18,8],[5,21],[16,46],[13,12],[7,17],[-33,13],[-42,23],[-33,9],[-87,14],[-49,16],[-17,1],[-42,13],[-29,20],[-53,19],[-42,2],[-47,-20],[-17,-5],[-77,5],[-24,-3],[-45,-43],[-23,0],[-40,12],[-42,26],[-41,13],[-22,1],[-94,-6],[-97,4],[-24,-6],[-106,33],[-43,28],[-51,16],[-18,-4],[-59,27],[-33,29],[-22,6],[-64,25],[-14,14],[-69,11],[-22,-11],[-22,17],[-30,33],[-74,34],[-12,11],[-24,11],[-18,3],[-21,20],[-16,7],[-28,28],[-32,54],[14,14],[8,29],[17,-2],[33,29],[23,13],[8,12],[31,9],[20,19],[13,29],[31,12],[11,-5],[20,8],[39,29],[1,11],[18,8],[19,-5],[37,26],[2,8],[-9,21],[10,28],[-5,40],[-18,45],[-9,33],[-22,6],[-32,-4],[-31,5],[-52,18],[-29,16],[-61,19],[-37,20],[-43,10],[-31,13],[-26,20],[-23,11],[-35,10],[-63,9],[-34,13],[-61,71],[-39,23],[-42,36],[-43,39],[19,26],[57,42],[19,22],[24,45],[19,16],[50,26],[16,13],[27,12],[56,4],[27,17],[19,19],[10,26],[45,56],[36,68],[19,22],[24,21],[22,25],[10,30],[17,18],[45,15],[55,40],[37,12],[39,4],[18,-4],[63,-44],[40,-25],[21,-6],[54,-4],[32,8],[34,16],[44,12],[36,0],[26,-6],[28,-17],[17,-4],[54,3],[16,3],[23,18],[16,7],[36,30],[25,50],[13,10],[5,26],[-4,32],[-19,18],[-38,28],[-5,22],[-17,9],[-7,15],[2,16],[-7,9],[2,19],[-20,13],[-9,24],[-17,7],[-7,12],[-7,30],[13,36],[-8,56],[9,69],[0,15],[14,30],[10,11],[38,9],[16,7],[46,29],[27,21],[15,18],[5,17],[-40,37],[-22,15],[-22,8],[-6,20],[-11,14],[-42,23],[-15,11],[-52,12],[-21,7],[-30,30],[-43,54],[-28,-12],[-34,13],[-71,-6],[-58,6],[-46,-3],[-37,-7],[2,-13],[-13,-3],[-14,5],[-20,-10],[-13,-17],[-21,-14],[-64,10],[-26,1],[-23,10],[-26,2],[-53,-3],[-31,-8],[-15,-8],[-3,-17],[-17,-4],[-44,-25],[-28,-23],[-13,-1],[-6,-9],[-5,-25],[-14,-20],[-44,-22],[-26,-24],[-52,-14],[-49,-26],[-14,-5],[-32,2],[-37,-11],[-31,-16],[-20,-15],[-22,-22],[-49,-18],[-40,-27],[-2,-13],[-34,-21],[-3,-20],[-41,-25],[-34,0],[-17,-14],[-39,-3],[-40,-9],[-32,-1],[-14,-9],[-6,-13],[-22,-4],[-29,1],[-13,6],[-36,6],[-12,-10],[-36,1],[-43,-4],[-38,-17],[-18,4],[-43,-2],[-37,5],[-14,6],[-13,-11],[-27,-59],[-36,-22],[-28,-6],[-40,45],[-12,-5],[-38,2],[-51,13],[-22,11],[-16,13],[-19,42],[-9,39],[-10,19],[-31,46],[-24,30],[-49,46],[-20,26],[-29,29],[-28,19],[-83,45],[-78,33],[-45,16],[-42,22],[-27,11],[-56,13],[-20,7],[-27,1],[-41,12],[-65,24],[-44,8],[-60,13],[-45,7],[-65,16],[-26,11],[5,34],[13,42],[-36,3],[-69,24],[-29,24],[-70,20],[-10,7],[-8,52],[1,18],[-3,24],[2,34],[-3,22],[-7,11],[9,25],[12,18],[-6,42],[-2,81],[10,11],[100,88],[19,21],[45,39],[18,102],[19,34],[47,49],[28,46],[23,22],[22,16],[13,15],[41,71],[61,1],[27,-3],[17,37],[5,28],[-19,0],[-23,16],[-16,3],[-10,23],[-23,14],[-10,17],[-26,13],[-47,29],[-59,59],[-35,42],[-25,43],[-21,21],[-13,39],[-6,28],[-26,92],[-34,74],[-9,40],[9,33],[0,28],[-7,20],[81,-14],[64,-15],[90,-19],[31,27],[27,16],[29,14],[16,-5],[34,18],[55,42],[43,20],[41,27],[49,20],[52,37],[93,56],[104,66],[54,27],[94,64],[57,64],[31,44],[-22,22],[-19,29],[-12,11],[-58,17],[-6,8],[-1,20],[8,37],[9,22],[-42,27],[-66,48],[44,58],[8,15],[53,73],[79,99],[46,49],[35,43],[28,41],[16,16],[28,37],[29,55],[14,37],[30,37],[7,39],[8,20],[-2,31],[-7,23],[5,68],[-7,47],[-19,19],[-2,20],[15,44],[-13,32],[-12,42],[-11,16],[-16,11],[-23,8],[-22,0],[-43,56],[-38,33],[-8,15],[-32,40],[-15,27],[-39,-5],[-21,57],[-11,60],[-30,8],[-8,11],[-34,28],[-29,8],[-54,30],[-25,-4],[-29,20],[-20,-8],[-27,-5],[-49,15],[-2,25],[12,25],[11,7],[-1,25],[-8,48],[3,12],[44,2],[31,-10],[35,-2],[76,-17],[45,-3],[80,-10],[46,2],[48,-5],[72,0],[24,-6],[72,-25],[26,-13],[18,-3],[37,22],[22,11],[27,5],[38,30],[17,18],[-2,35],[-4,15],[10,21],[5,35],[11,32],[13,19],[20,17],[23,13],[34,46],[6,31],[15,25],[-14,3],[-13,20],[5,11],[-14,4],[11,11],[14,34],[2,24],[-7,15],[1,23],[21,58],[39,27],[36,15],[19,11],[43,34],[8,9],[30,55],[6,18],[1,34],[-4,26],[10,33],[30,69],[44,25],[39,49],[17,12],[28,46],[23,32],[30,26],[20,25],[36,56],[9,9],[19,7],[33,-4],[81,-4],[38,7],[42,-3],[53,-12],[31,-1],[58,20],[50,12],[18,7],[62,5],[31,-4],[45,0],[37,5],[41,13],[38,3],[22,-3],[49,-24],[19,-18],[-2,-11],[15,-4],[21,-19],[3,-20],[11,-25],[-3,-13],[17,-11],[-3,-8],[19,-15],[13,-2],[1,-11],[36,-15],[15,-21],[17,-7],[21,-32],[16,1],[16,-15],[21,-5],[8,-7],[16,-50],[47,1],[24,-22],[15,-25],[24,-20],[14,-7],[47,-31],[22,-21],[12,-33],[3,-30],[6,-15],[0,-48],[-7,-42],[68,-60],[29,-34],[44,-32],[20,-34],[15,-16],[9,-23],[6,-35],[10,-36],[18,-24],[19,-16],[27,-34],[35,-66],[24,-35],[-2,-2],[42,-55],[30,-31],[51,-23],[12,-11],[40,-15],[51,-8],[58,-11],[13,-12],[25,-3],[34,1],[85,19],[39,11],[75,4],[10,4],[16,42],[8,5],[24,60],[35,68],[21,-9],[53,14],[42,33],[54,34],[19,19],[21,11],[59,12],[49,16],[17,4],[56,-15],[29,-2],[34,4],[22,6],[60,27],[57,33],[40,21],[75,50],[31,22],[43,-26],[21,-17],[86,-61],[45,-49],[40,-23],[28,-10],[64,-30],[30,-11],[36,-24],[32,-30],[64,-84],[30,-30],[45,-40],[11,-29],[13,-20],[55,31],[38,15],[16,0],[53,-13],[74,-7],[12,-5],[31,-3],[27,-7],[90,-10],[26,-8],[-3,-73],[19,-48],[15,-110],[10,-41],[-3,-42],[2,-66],[-11,-16],[-9,-27],[0,-134],[18,-68],[5,-36],[-7,-28],[-10,-17],[0,-27],[28,-20],[24,-23],[25,-58],[62,-24],[15,-14],[28,-33],[24,-37],[17,-16],[36,-23],[33,-26],[37,-37],[38,-19],[58,-4],[58,-26],[14,-4],[49,-26],[79,-50],[52,-1],[113,-11],[29,1],[37,-5],[77,-32],[116,-41],[29,-12],[59,-58],[19,-15],[32,-19],[18,-14],[32,-47],[70,-1],[125,3],[53,-3],[19,3],[48,0],[115,16],[57,3],[62,-1],[49,20],[57,27],[36,20],[62,49],[34,18],[53,47],[17,23],[48,37],[85,23],[48,15],[24,12],[45,14],[23,11],[14,-2],[-22,42],[-4,29],[5,20],[39,45],[23,11],[34,28],[44,55],[34,31],[26,20],[27,15],[51,16],[36,17],[66,40],[63,51],[43,37],[7,12],[49,54],[15,19],[57,63],[68,50],[12,11],[32,21],[74,52],[46,23],[-4,7],[24,25],[9,16],[17,2],[17,14],[28,4],[42,18],[20,25],[38,16],[48,17],[44,-21],[38,-10],[11,2],[100,0],[46,-10],[32,-23],[56,-1],[28,38],[68,-15],[44,6],[16,-10],[16,1],[45,-8],[35,8],[29,-37],[35,-36],[20,-27],[17,-12],[33,-49],[27,-32],[5,-26],[17,-42],[30,-30],[18,-28],[65,-34],[39,-26],[81,-37],[57,-5],[-9,-22],[-9,-42],[-8,-54],[-7,-81],[-15,-68],[0,-21],[68,-17],[36,-13],[35,-6],[31,-8],[46,-8],[45,-10],[60,-1],[35,-10],[53,-8],[27,-14],[27,-20],[34,-13],[64,-13],[49,-5],[52,9],[24,-5],[44,0],[25,-3],[34,6],[23,-1],[42,-12],[40,-2],[6,37],[4,48],[12,64],[0,30],[5,32],[16,55],[0,70],[-33,91],[1,33],[6,19],[6,37],[10,24],[3,51],[-2,24],[5,33],[14,63],[16,57],[6,50],[3,75],[-5,37],[-25,90],[-21,63],[-29,101],[-17,61],[-18,56],[-29,111],[-12,21],[-7,1],[-11,22],[124,20],[94,25],[39,16],[25,15],[23,21],[16,22],[17,34],[15,24],[33,28],[28,11],[18,3],[27,-3],[34,-15],[17,-23],[11,4],[5,-10],[53,-56],[41,-39],[27,5],[13,-16],[-7,-21],[10,-8],[12,5],[7,14],[25,-1],[42,-32],[8,-18],[51,-14],[0,-21],[24,-3],[29,15],[6,-11],[4,-33],[-5,-28],[-11,-32],[-20,-36],[-42,-70],[-20,-39],[-27,-67],[-39,-115],[-52,-144],[-11,-25],[-81,-132],[-27,-59],[-14,-47],[-31,-147],[-9,-97],[-18,-92],[-7,-48],[-4,-57],[-16,-46],[-19,-81],[-14,-38],[-21,-89],[17,-11],[48,-16],[48,-30],[21,-10],[32,0],[39,-23],[18,-6],[65,-12],[26,-1],[44,-13],[56,-3],[47,8],[64,15],[31,-5],[39,-20],[49,-11],[45,-5],[94,-27],[47,-23],[35,-5],[56,1],[56,-1],[56,-9],[59,-1],[40,-11],[38,-16],[81,-22],[21,-1],[27,6],[28,-12],[29,-21],[61,-36],[40,-20],[25,-7],[36,0],[43,-7],[23,-9],[55,-34],[67,-89],[30,-31],[69,-48],[26,-21],[49,-35],[24,-22],[42,-47],[16,-51],[11,-26],[5,-22],[26,-39],[6,-15],[-16,-15],[-32,-10],[-64,-15],[-65,-17],[-23,-14],[-35,-41],[-14,-9],[0,-47],[20,-45],[-10,-18],[-27,-29],[-35,-23],[-50,-53],[13,-20],[21,-48],[37,-31],[15,-17],[19,-30],[71,7],[42,7],[85,8],[142,48],[41,10],[95,11],[44,7],[115,29],[13,0],[77,-11],[129,50],[38,17],[94,59],[33,9],[64,3],[70,-8],[28,1],[49,5],[0,-6],[50,-12],[-20,20],[-6,14],[0,23],[14,23],[31,34],[3,-2],[61,40],[62,50],[29,28],[72,-68],[21,-37],[25,-53],[22,-21],[3,-21],[-53,-91],[31,-34],[8,10],[26,-15],[8,-20],[30,-27],[-8,-28],[19,-14],[22,-10],[13,5],[36,-2],[10,-9],[11,-29],[16,3],[13,-6],[-16,-26],[19,-14],[19,12],[33,-37],[56,-24],[66,-44],[13,-12],[31,-14],[68,-37],[40,-27],[15,-3],[23,-16],[16,-37],[33,-174],[6,1],[47,-115],[1,-86],[11,-48],[24,-35],[155,-105],[92,-90],[7,-6],[74,-32],[238,-181],[138,-62],[26,-1],[42,16],[15,2],[46,-7],[21,8],[6,-60],[-4,-42],[1,-64],[-8,-75],[-12,-29],[-8,-50],[-5,-44],[-2,-48],[0,-54],[7,-30],[40,-24],[62,-34],[0,-7],[-21,-53],[-33,-52],[-38,-56],[-35,-63],[-10,-28],[-10,-37],[-18,-60],[-12,-58],[-1,-74],[5,-146],[6,-62],[-8,-29],[-20,-45],[-23,-22],[-62,-42],[-75,-55],[-58,-34],[17,-6],[29,-19],[22,-10],[41,-90],[64,-107],[21,-58],[-19,-17],[-73,-80],[-32,-49],[-29,-60],[-55,-96],[-25,-38],[-55,-93],[-33,-56],[-22,-44],[-15,-25],[-22,-27],[-32,-51],[-33,-40],[-30,-25],[-13,-20],[-40,-78],[-7,-41],[-5,-58],[10,-35],[-3,-17],[8,-16],[-4,-18],[-29,-42],[-29,-58],[-14,-34],[5,-33],[-8,-16],[3,-15],[-15,-7],[9,-17],[-4,-17],[-14,-9],[2,-18],[-8,-11],[3,-11],[-21,-8],[-10,-19],[3,-27],[-5,-9],[-17,-11],[0,-13],[-17,-8],[0,-17],[8,-16],[-8,-12],[2,-24],[-11,-23],[2,-10],[-20,-13],[-6,-16],[-27,-17],[-23,10],[-19,-26],[-78,-70],[-25,-31],[-16,-26],[-15,-16],[-132,-70],[-61,-31],[-27,-17],[-28,-30],[-94,-129],[-119,-173],[-11,-32],[-13,-76],[-6,-23],[-36,-100],[-11,-22],[-24,-40],[-45,-54],[-55,-80],[-67,-74],[-47,-47],[-22,-27],[-10,-21],[47,-46],[28,-47],[22,-90],[8,-40],[16,-44],[17,-22],[4,-25],[0,-28],[12,-63],[11,-26],[23,-40],[28,-25],[20,-6],[21,1],[30,-9],[52,-10],[46,-1],[22,-7],[65,-26],[59,-16],[35,-2],[76,-29],[56,-13],[74,-36],[65,-18],[10,6],[57,-45],[37,-25],[40,-17],[69,-8],[-28,-40],[-17,-29],[19,2],[4,7],[17,-17],[13,13],[44,32],[-3,16],[39,31],[16,8],[11,29],[26,2],[5,19],[20,-1],[14,-7],[17,7],[-8,20],[21,1],[19,11],[27,-6],[1,9],[20,22],[20,-4],[30,39],[32,1],[3,9],[15,-11],[13,-1],[15,18],[24,0],[4,-10],[29,6],[-1,17],[27,-21],[66,-47],[32,41],[26,12],[59,53],[60,48],[37,35],[59,51],[31,23],[56,37],[38,22],[51,14],[27,11],[40,0],[24,-8],[17,5],[36,-2],[1,-7],[59,24],[21,-6],[12,2],[25,13],[62,28],[28,7],[44,17],[40,7],[26,8],[9,-3],[28,16],[24,24],[39,46],[71,63],[33,27],[15,18],[26,41],[90,-4],[74,9],[16,4],[66,-13],[25,-1],[88,-8],[49,-3],[88,5],[45,5],[88,73],[26,12],[66,26],[101,56],[110,70],[30,22],[42,34],[27,19],[62,31],[90,34],[108,46],[61,18],[125,-2],[24,1],[115,-4],[19,-130],[-2,-66],[20,-77],[19,-30],[27,-49],[19,-53],[-23,-585],[9,-30],[-5,-113],[0,-29],[-6,-118],[-8,-58],[0,-61],[4,-33],[15,-85],[18,-109],[-7,-64],[3,-55],[16,-51],[10,-44],[-1,-49],[-31,-17],[-47,-14],[-45,-16],[-105,-32],[-46,-21],[-72,-55],[-46,-38],[-47,-36],[-49,-32],[-95,-71],[-49,-39],[-16,-19],[-38,-18],[-54,-66],[-38,-54],[-29,-63],[-10,-36],[-11,-58],[-20,-64],[-17,-75],[-6,-57],[-5,-171],[-10,-108],[-13,-58],[-27,-76],[-16,-38],[-7,-59],[-11,-38],[-31,-81],[-2,-66],[11,-20],[-33,-28],[-44,-44],[-30,-38],[3,-14],[-20,-28],[-41,-75],[-15,-46],[-17,-107],[-7,-24],[-47,-93],[-10,-40],[-10,-24],[-13,-46],[-10,-15],[-13,-37],[-15,-29],[-10,-44],[-8,-19],[-19,-25],[-10,-49],[-22,-50],[-6,-70],[-1,-49],[-14,-71],[-26,-49],[-29,-35],[-29,-27],[-31,-33],[-58,-42],[-26,-23],[-46,-49],[-14,-44],[0,-57],[7,-35],[16,-43],[2,-19],[11,-50],[6,-43],[15,-46],[-2,-58],[-21,-49],[-11,-17],[-23,-62],[59,-3],[83,-9],[43,-13],[72,-27],[72,-18],[73,-10],[51,-23],[59,-21],[55,-24],[49,-26],[30,-11],[48,-11],[71,-44],[30,-33],[68,-41],[34,-25],[55,-43],[25,-39],[40,-21],[40,-1],[71,10],[47,-2],[35,-30],[21,-38],[36,-48],[34,-34],[34,-29],[27,-18],[47,-19],[28,-5],[74,-2],[48,-5],[36,-1],[109,14],[58,14],[95,21],[58,23],[32,18],[70,25],[84,-28],[49,-19],[64,-12],[35,-11],[28,-25],[41,-19],[34,-31],[39,-24],[30,-26],[15,-19],[17,-8],[44,-4],[52,-26],[45,-29],[58,-54],[44,-30],[77,-47],[17,-7],[31,-7],[33,-20],[26,-9],[79,-46],[63,-35],[15,-38],[-4,-9],[28,-50],[43,-17],[98,-31],[24,-38],[22,-44],[36,-35],[44,-20],[49,-14],[40,-28],[49,-18],[46,24],[93,46],[47,17],[50,14],[52,-1],[50,-16],[50,-12],[31,0],[19,17],[30,51],[23,6],[37,5],[46,1],[51,6],[46,20],[21,1],[83,10],[59,1],[61,14],[15,-4],[12,-12],[12,-45],[18,-36],[37,-46],[36,-36],[56,-28],[54,-7],[29,-11],[43,-31],[18,-46],[8,-56],[17,-27],[33,-12],[39,-24],[21,-29],[38,-4],[18,-30],[15,-47],[56,-87],[-26,-17],[-37,-50],[-44,-40],[-23,-13],[-22,-54],[2,-12],[-21,-56],[10,-56],[-31,-59],[-1,-28],[3,-24],[-4,-50],[0,-37],[5,-12],[7,-51],[18,-72],[29,-21],[30,-5],[58,-5],[91,-20],[39,9],[19,-3],[16,-13],[-7,-49],[35,24],[26,10],[52,4],[49,-20],[32,10],[24,13],[14,16],[27,61],[8,14],[22,19],[40,31],[55,13],[17,1],[51,18],[26,14],[25,5],[50,1],[27,5],[34,38],[21,27],[24,21],[34,41],[23,5],[12,9],[1,15],[17,21],[27,17],[12,17],[6,20],[23,28],[15,3],[16,-10],[30,-24],[22,-5],[21,5],[46,41],[42,16],[25,6],[60,6],[20,-3],[35,-13],[57,-13],[23,-19],[13,-50],[12,-27],[-6,-57],[26,-30],[5,-18],[25,-54],[5,-26],[32,-65],[68,17],[23,-2],[43,6],[67,13],[53,0],[78,9],[32,-1],[41,-6],[46,-12],[29,-17],[27,-27],[7,-16],[32,-41],[19,-44],[28,-41],[43,-4],[47,5],[32,-2],[-10,-39],[1,-30],[23,-40],[44,-53],[42,-40],[30,24],[35,11],[40,6],[66,-1],[60,7],[58,3],[74,-8],[37,0],[78,14],[53,7],[55,-2],[36,-5],[33,31],[70,52],[31,12],[32,19],[8,11],[25,13],[46,29],[20,20],[12,0],[67,37],[36,29],[29,14],[54,1],[23,-3],[40,8],[25,17],[30,-2],[43,-12],[22,-22],[-2,-45],[14,-37],[-4,-52],[-10,-45],[23,-79],[57,12],[28,11],[29,25],[69,28],[36,29],[54,47],[58,39],[25,33],[19,62],[47,84],[5,11],[13,71],[-4,41],[-17,30],[-20,61],[-16,66],[12,82],[10,15],[39,41],[20,52],[17,74],[-4,42],[1,80],[6,39],[-1,51],[-11,55],[1,16],[10,14],[1,16],[14,23],[15,35],[54,68],[4,28],[17,6],[3,15],[14,23],[17,10],[4,30],[14,16],[-1,38],[8,51],[-3,9],[7,16],[15,0],[0,33],[13,24],[-2,22],[11,2],[14,50],[15,6],[2,12],[20,15],[-18,49],[1,15],[12,3],[3,19],[-5,12],[9,15],[-5,10],[-14,4],[3,10],[-7,15],[12,2],[12,17],[15,35],[16,8],[-4,10],[17,19],[11,4],[0,17],[15,7],[-7,9],[1,18],[22,14],[23,1],[8,28],[-3,13],[7,13],[-6,18],[6,22],[-6,25],[-6,5],[12,40],[1,25],[22,21],[17,7],[0,18],[23,22],[20,7],[25,18],[39,7],[9,24],[25,10],[26,19],[-10,18],[-9,43],[13,8],[54,17],[5,35],[19,9],[35,36],[19,12],[19,4],[37,36],[0,35],[19,21],[8,20],[-14,23],[-18,17],[21,10],[-1,16],[28,14],[7,15],[35,29],[46,14],[6,8],[14,90],[-2,33],[-14,80],[0,34],[5,26],[15,41],[136,220],[8,17],[15,45],[7,62],[-2,50],[-5,24],[-15,33],[-15,20],[-16,12],[-33,16],[-31,26],[-83,99],[-38,49],[-46,89],[-24,81],[-7,64],[-13,75],[-36,97],[-14,72],[4,67],[36,112],[29,98],[37,118],[42,86],[20,32],[76,98],[110,100],[120,108],[91,105],[66,69],[64,41],[83,39],[79,46],[54,54],[69,89],[67,63],[136,119],[87,78],[54,68],[17,35],[55,157],[40,88],[186,302],[49,67],[52,41],[64,26],[90,25],[52,24],[52,49],[68,84],[67,75],[71,49],[75,29],[105,36],[64,42],[43,50],[29,55],[27,109],[34,60],[67,76],[23,52],[-2,92],[4,80],[26,70],[48,64],[51,80],[23,67],[21,124],[28,61],[49,54],[52,33],[54,23],[80,10],[136,19],[116,35],[80,37],[93,28],[68,21],[45,30],[101,165],[22,49],[20,16],[94,133],[16,58],[-3,59],[-22,55],[-67,112],[-4,44],[20,58],[11,44],[-7,49],[-34,47],[-68,71],[-17,49],[6,36],[49,84],[55,116],[47,130],[25,94],[6,88],[10,78],[29,83],[33,29],[72,27],[89,15],[69,20],[28,12],[14,29],[-2,28],[-73,40],[-73,24],[-46,21],[-14,38],[11,44],[25,51],[43,27],[65,31],[28,39],[44,110],[11,63],[-7,56],[-28,77],[-23,75],[1,35],[20,9],[125,14],[54,22],[254,50],[11,11],[71,20],[69,17],[95,15],[35,18],[63,86],[11,64],[-9,23],[-21,32],[-18,75],[7,33],[19,44],[-10,53],[-29,85],[0,45],[-5,67],[26,148],[-2,58],[18,71],[20,27],[36,84],[-5,27],[-17,26],[-31,32],[-46,28],[-38,35],[-13,46],[-14,278],[12,53],[20,39],[48,50],[49,63],[38,40],[36,-3],[86,-21],[26,-33],[40,-24],[33,-6],[62,9],[31,6],[12,10],[66,33],[31,38],[46,119],[16,86],[18,57],[96,104],[22,54],[24,69],[49,73],[15,29],[-2,33],[-24,43],[-3,36],[50,84],[4,31],[25,24],[22,45],[59,36],[20,52],[55,339],[9,63],[-20,34],[-30,24],[-119,19],[-19,23],[-6,44],[-15,36],[3,44],[16,31],[37,23],[54,4],[16,13],[-17,64],[11,16],[25,-3],[38,-35],[-2,-28],[-9,-26],[52,-28],[17,7],[27,97],[-15,17],[-43,25],[-11,30],[7,43],[30,24],[30,1],[29,-22],[22,-34],[22,-1],[21,41],[-10,13],[-9,32],[-3,28],[-42,24],[-3,25],[-9,20],[-21,17],[-4,22],[10,11],[113,-8],[27,18],[20,7],[75,-16],[29,26],[55,79],[29,32],[2,48],[5,39],[-10,38],[9,12],[45,6],[14,15],[8,37],[-14,31],[-22,10],[-24,-6],[-9,-12],[-35,-20],[-20,4],[-5,30],[10,32],[62,53],[19,34],[8,91],[16,20],[22,47],[8,28],[50,52],[59,78],[0,33],[-25,26],[-44,2],[-25,-8],[-32,19],[-17,35],[-33,23],[0,23],[8,36],[-5,25],[65,16],[16,24],[-7,22],[-52,68],[-6,26],[25,30],[74,34],[17,-10],[7,-44],[-2,-21],[19,-11],[27,8],[27,35],[17,16],[18,30],[-6,25],[-13,20],[9,28],[7,52],[19,42],[-3,36],[11,25],[25,14],[31,-7],[68,-4],[46,4],[33,-3],[48,40],[26,1],[26,25],[5,31],[18,30],[-8,19],[11,24],[25,5],[42,1],[3,14],[-23,24],[-1,17],[18,8],[54,-11],[34,-11],[54,25],[8,27],[-13,70],[-11,31],[-25,30],[-25,104],[-11,34],[8,26],[57,30],[1,21],[-20,16],[-70,10],[-6,18],[25,27],[34,32],[0,23],[-32,29],[1,43],[22,26],[52,36],[23,52],[23,36],[50,106],[48,136],[19,42],[55,74],[32,14],[57,9],[20,25],[2,48],[-20,25],[-48,48],[5,23],[72,79],[-4,41],[-22,20],[-35,4],[-75,-16],[-31,4],[-10,21],[-10,44],[-1,49],[23,43],[25,23],[43,16],[79,7],[39,23],[17,26],[13,67],[27,30],[36,14],[43,-2],[17,5],[17,37],[14,65],[24,13],[69,-9],[26,27],[59,43],[8,30],[-14,25],[-33,31],[-19,44],[16,71],[11,26],[-4,23],[-48,33],[-37,47],[-5,32],[16,26],[29,35],[6,46],[-19,29],[-56,3],[-11,12],[11,20],[49,38],[15,41],[-14,30],[-39,35],[-11,33],[10,32],[19,22],[27,1],[54,-35],[43,-10],[33,20],[4,38],[-26,56],[6,56],[-2,30],[19,20],[39,5],[78,-26],[51,35],[15,30],[4,17],[1,48],[-13,57],[-45,22],[-45,42],[0,21],[36,77],[8,24],[-15,21],[-91,18],[-16,22],[3,30],[23,48],[15,21],[27,10],[52,-17],[27,1],[27,17],[4,38],[-19,33],[-27,40],[-9,37],[26,44],[43,62],[2,30],[-12,65],[-23,51],[-23,25],[-24,11],[-18,29],[12,65],[-26,37],[-86,62],[-81,54],[-10,64],[-10,36],[11,20],[27,11],[62,2],[49,20],[4,19],[-10,49],[-53,37],[2,19],[27,24],[51,32],[17,28],[36,119],[-31,81],[-59,96],[5,21],[20,41],[12,46],[28,27],[37,14],[33,-1],[49,-89],[29,-15],[31,2],[32,-17],[24,4],[31,-11],[70,32],[54,41],[54,65],[62,53],[48,28],[31,46],[41,49],[25,14],[63,24],[29,47],[21,81],[-13,30],[-48,21],[-34,-2],[-32,4],[-21,27],[0,27],[12,33],[5,76],[0,149],[7,70],[10,33],[29,68],[36,99],[-7,110],[-33,157],[-28,117],[-23,73],[-42,72],[-58,78],[-54,52],[-34,43],[-10,16],[-18,50],[3,44],[28,32],[50,33],[28,1],[60,-24],[29,-7],[44,15],[46,38],[45,74],[46,102],[41,76],[80,136],[11,41],[-44,125],[-36,77],[-55,108],[-60,85],[-130,140],[-27,156],[-7,54],[-23,158],[13,31],[126,57],[40,20],[146,96],[39,31],[109,52],[43,15],[41,35],[25,44],[8,55],[-14,51],[-11,22],[-40,67],[-48,37],[-52,36],[-19,32],[5,38],[24,62],[45,65],[57,52],[31,47],[9,61],[-2,56],[3,45],[7,42],[30,41],[52,44],[44,20],[33,30],[16,40],[4,113],[-33,113],[-28,67],[-54,113],[-20,146],[-21,63],[-34,67],[-7,49],[13,42],[28,29],[50,14],[64,9],[107,44],[16,18],[10,51],[7,26],[58,54],[84,32],[26,27],[7,61],[4,87],[-16,40],[-63,45],[-61,21],[-60,7],[-72,-7],[-42,0],[-14,26],[5,54],[36,50],[9,29],[-10,23],[-33,47],[-13,156],[14,27],[47,16],[60,49],[50,96],[65,42],[23,35],[6,102],[7,70],[-16,38],[-28,13],[-70,-8],[-37,11],[-23,34],[2,38],[9,92],[20,32],[30,7],[90,-9],[68,13],[94,5],[29,20],[29,62],[1,40],[-59,55],[1,37],[60,113],[46,160],[-6,49],[-68,120],[-3,43],[17,28],[20,24],[5,30],[-58,98],[-12,62],[17,32],[38,23],[96,32],[39,7],[46,1],[24,14],[13,27],[11,55],[46,60],[22,22],[64,20],[48,25],[18,26],[8,52],[26,33],[15,34],[-14,27],[-29,6],[-57,-8],[-35,13],[-24,28],[-11,38],[20,43],[36,28],[30,0],[39,-15],[40,9],[80,55],[21,34],[0,40],[-25,31],[-42,27],[-34,47],[-2,20],[19,45],[69,119],[30,9],[38,-13],[25,-25],[32,-49],[33,-8],[80,27],[39,28],[40,82],[41,46],[64,45],[29,17],[-13,56],[-32,45],[-57,38],[-19,32],[-82,47],[-75,53],[-34,32],[-30,123],[-41,90],[-27,19],[-49,8],[-48,-52],[-21,-75],[-18,-46],[-30,-9],[-43,7],[-52,38],[-39,36],[0,35],[54,80],[16,126],[9,30],[34,20],[61,13],[38,12],[37,4],[55,-4],[30,11],[21,31],[-2,104],[20,30],[51,34],[65,14],[94,9],[89,2],[35,22],[19,33],[2,49],[-43,70],[-47,65],[-15,50],[4,79],[-13,97],[7,36],[36,38],[30,25],[30,57],[11,46],[-19,50],[-6,48],[6,40],[-13,36],[-31,39],[-9,40],[16,20],[94,36],[70,17],[7,7],[21,41],[30,49],[9,33],[-11,54],[-14,14],[-26,17],[-22,8],[-17,0],[-32,-15],[-12,2],[-17,13],[-12,17],[-9,34],[-32,35],[-6,40],[-35,12],[-84,40],[-26,12],[-13,35],[17,106],[6,146],[15,86],[15,42],[-12,44],[-32,26],[-96,69],[-7,30],[-3,57],[-15,122],[6,41],[67,264],[5,110],[-11,44],[-23,20],[-32,-3],[-43,-7],[-61,10],[-26,21],[-1,30],[18,34],[-14,50],[-25,42],[-30,16],[-45,1],[-69,58],[-33,70],[-66,60],[-58,36],[-57,33],[-92,42],[-64,22],[-107,-1],[-71,-17],[-94,-29],[-33,9],[-29,34],[-5,56],[49,65],[62,88],[-18,125],[-49,72],[-4,70],[-4,31],[-26,43],[-49,40],[-32,-3],[-144,31],[-22,18],[-18,24],[-15,30],[3,61],[44,43],[45,56],[36,73],[9,37],[6,66],[-7,19],[-18,25],[-44,39],[-49,-10],[-38,-2],[-44,17],[-25,35],[-28,94],[-4,22],[-16,27],[-57,50],[-25,10],[-29,6],[-56,4],[-47,-18],[-72,9],[-136,66],[-27,21],[-9,11],[-55,24],[-18,19],[0,31],[-50,73],[8,42],[34,126],[53,71],[11,42],[-96,116],[-47,7],[-47,-22],[-47,5],[-91,-14],[-42,11],[-26,24],[-19,52],[9,132],[-1,21],[-20,55],[-37,33],[-82,24],[-28,25],[-38,65],[-27,61],[-15,65],[0,112],[16,35],[-5,60],[-14,30],[-35,24],[-71,43],[-27,36],[-15,112],[-3,28],[-16,73],[2,24],[-6,63],[10,42],[-3,40],[16,21],[32,63],[-7,59],[-2,73],[-46,114],[16,54],[16,35],[-17,53],[-6,12],[-51,29],[-22,28],[13,41],[17,44],[1,80],[-24,34],[-92,151],[-27,26],[-23,15],[-22,7],[-32,-2],[-28,7],[-105,-6],[-71,-35],[-37,-3],[-70,30],[-47,123],[41,46],[17,36],[37,20],[60,-3],[43,-6],[71,57],[19,24],[51,15],[98,1],[50,13],[67,52],[61,49],[26,24],[30,34],[8,30],[3,35],[-4,25],[-19,32],[-22,26],[-11,20],[1,14],[16,42],[46,67],[20,15],[38,18],[58,9],[32,20],[37,62],[54,60],[23,40],[2,45],[-10,19],[-34,35],[-30,22],[-20,10],[-33,10],[-82,0],[-47,10],[-40,22],[-81,92],[-55,75],[-8,18],[-15,14],[-26,12],[-25,4],[-61,4],[-42,-2],[-51,4],[-40,12],[-20,17],[-22,47],[-1,43],[16,32],[12,37],[2,17],[-6,26],[-27,49],[-26,14],[-34,34],[-13,21],[-49,93],[-53,96],[-12,27],[7,103],[11,53],[3,34],[53,87],[2,24],[-3,20],[-16,39],[-37,43],[-48,66],[-39,84],[-36,40],[-26,12],[-72,13],[-60,-6],[-22,1],[-20,9],[-11,12],[-2,27],[10,17],[45,29],[76,63],[64,36],[67,22],[45,6],[57,-7],[13,-4],[27,-17],[24,-11],[28,-5],[32,3],[30,15],[20,19],[2,19],[-4,15],[-27,126],[-10,104],[-17,68],[-19,27],[-131,149],[-35,60],[-31,99],[-20,37],[-17,19],[-16,9],[-90,29],[-33,19],[-40,43],[-20,27],[-7,38],[6,23],[17,26],[24,17],[19,8],[84,18],[72,19],[56,24],[24,18],[100,253],[12,45],[3,34],[-23,189],[-13,65],[-20,43],[-54,69],[-15,24],[-23,64],[8,34],[12,15],[60,54],[20,39],[9,30],[2,33],[-10,47],[-14,27],[-25,21],[-29,16],[-26,9],[-59,9],[-46,11],[-41,24],[-57,58],[-27,35],[-34,76],[-7,21],[0,24],[13,34],[38,37],[38,31],[57,42],[45,45],[18,10],[36,12],[14,1],[30,-10],[83,-41],[24,-19],[43,-47],[44,-32],[23,-9],[26,-3],[24,8],[25,15],[23,28],[26,81],[84,154],[13,40],[7,36],[1,19],[-20,87],[2,19],[11,64],[28,77],[4,23],[-1,37],[-10,40],[-10,16],[-21,23],[-23,19],[-83,57],[-97,54],[-93,84],[-35,41],[-39,59],[-20,52],[-8,51],[4,49],[-6,44],[-50,117],[-44,70],[-27,46],[-35,51],[-20,23],[-62,57],[-72,72],[-59,85],[-28,53],[-16,17],[-30,24],[-11,14],[-12,53],[-2,47],[15,85],[29,88],[4,23],[1,32],[-10,34],[-28,50],[-69,85],[-35,53],[-31,115],[-23,54],[-35,44],[-28,24],[-32,17],[-16,16],[-30,47],[-22,46],[-23,31],[-39,26],[-36,13],[-30,3],[-38,-3],[-47,0],[-88,14],[-129,10],[-65,-2],[-58,4],[-52,7],[-173,47],[-57,10],[-62,-2],[-52,-12],[-66,-3],[-59,4],[-29,9],[-27,19],[-25,33],[-10,20],[-4,22],[7,234],[-5,35],[0,74],[-11,46],[-32,55],[-70,85],[-19,20],[-35,24],[-20,8],[-40,9],[-82,11],[-133,64],[-38,8],[-57,-5],[-11,-7],[-42,-10],[-48,-3],[-86,6],[-117,25],[-46,1],[-29,-8],[-16,-11],[-60,-54],[-37,-28],[-39,-20],[-42,-11],[-110,-13],[-99,4],[-42,4],[-42,21],[-249,143],[-30,33],[-107,184],[-31,28],[-30,19],[-21,3],[-28,-7],[-54,-20],[-174,-26],[-38,-15],[-124,-85],[-105,-41],[-76,-5],[-52,-14],[-37,-18],[-59,-9],[-25,3],[-26,12],[-23,24],[-36,62],[-26,68],[-28,59],[-128,147],[-29,28],[-30,15],[-45,13],[-50,6],[-67,3],[-87,0],[-37,-11],[-24,-17],[-16,-17],[-23,-11],[-37,1],[-67,-18],[-97,-34],[-54,4],[-35,19],[-20,16],[-36,39],[-34,52],[-44,40],[-44,44],[-45,29],[-42,43],[-35,44],[-26,50],[-35,29],[-25,10],[-119,28],[-20,10],[-47,37],[-30,42],[-23,109],[-20,45],[-38,29],[-23,7],[-33,3],[-38,-1],[-24,7],[-16,14],[-14,21],[-12,31],[-12,78],[-16,79],[-47,79],[-21,18],[-70,26],[-158,51],[-112,5],[-48,13],[-29,17],[-105,71],[-33,35],[-31,36],[-23,14],[-42,11],[-23,0],[-22,-7],[-30,-17],[-116,-78],[-37,-19],[-34,-12],[-40,-1],[-46,16],[-17,14],[-7,21],[-29,112],[-12,85],[-9,26],[-15,18],[-59,28],[-30,23],[-10,22],[-23,64],[-47,88],[-28,58],[-32,44],[-16,16],[-44,17],[-60,7],[-92,-9],[-31,6],[-55,20],[-32,23],[-23,31],[-29,56],[-10,24],[-29,43],[-13,8],[-44,13],[-63,7],[-45,2],[-34,-10],[-72,-37],[-54,-20],[-51,-9],[-66,2],[-30,8],[-131,80],[-25,12],[-24,2],[-31,-4],[-77,-24],[-107,-26],[-89,-6],[-59,16],[-108,67],[-40,5],[-100,1],[-85,3],[-96,7],[-83,-8],[-75,45],[-28,35],[-19,35],[-30,144],[-26,34],[-39,23],[-52,16],[-34,-3],[-49,-21],[-151,-76],[-81,-24],[-31,-5],[-63,7],[-44,14],[-137,77],[-62,33],[-40,31],[-33,37],[-33,23],[-63,34],[-28,10],[-21,2],[-82,-12],[-77,2],[-49,7],[-43,11],[-57,28],[-20,19],[-18,30],[-30,139],[-15,34],[-34,36],[-31,22],[-81,40],[-44,30],[-29,28],[-34,61],[-2,41],[28,144],[2,40],[-5,36],[-13,35],[-96,114],[-14,26],[-14,45],[-5,29],[3,29],[12,56],[16,33],[75,114],[16,31],[19,25],[19,15],[56,31],[16,16],[10,42],[0,48],[-8,38],[-11,35],[-26,36],[-26,22],[-12,22],[-10,41],[-2,32],[11,46],[0,43],[-8,31],[-25,43],[-149,110],[-20,23],[-46,77],[-22,17],[-64,35],[-54,22],[-43,6],[-42,-9],[-62,-10],[-25,3],[-28,15],[-49,44],[-19,38],[-36,124],[-40,70],[-135,228],[-16,42],[-5,39],[11,47],[27,37],[44,33],[125,73],[17,21],[94,151],[62,136],[84,132],[113,111],[150,109],[18,18],[55,115],[91,200],[14,108],[1,40],[0,74],[8,84],[5,30],[12,27],[19,28],[49,56],[59,76],[75,70],[82,66],[23,23],[59,28],[40,26],[54,59],[6,12],[-7,31],[3,32],[16,26],[16,18],[24,36],[46,57],[34,21],[36,19],[68,24],[36,36],[43,15],[57,5],[38,-4],[41,3],[58,27],[30,6],[57,49],[31,48],[17,35],[15,90],[-12,62],[10,24],[28,28],[30,17],[86,33],[43,20],[106,63],[72,59],[49,60],[19,36],[3,23],[-1,52],[12,46],[22,33],[69,69],[33,51],[9,48],[3,89],[22,95],[-1,55],[-20,71],[-74,166],[-7,58],[2,26],[15,53],[5,39],[-43,151],[-29,65],[-37,48],[-83,89],[-29,26],[-25,17],[-44,37],[-33,43],[-38,74],[-36,52],[-77,72],[-32,40],[-16,34],[-7,26],[3,35],[18,51],[64,103],[35,64],[17,86],[1,46],[-2,24],[-13,52],[-51,83],[-14,34],[-4,21],[0,51],[17,79],[5,47],[-2,29],[-34,120],[-6,47],[6,52],[9,35],[41,83],[24,59],[7,21],[6,55],[-4,21],[-16,37],[-76,102],[-45,77],[-65,131],[-37,90],[1,53],[27,68],[96,81],[68,61],[36,100],[42,110],[42,74],[21,46],[3,37],[-5,54],[-14,25],[-33,33],[-44,26],[-59,42],[-60,61],[-29,74],[-1,48],[2,68],[-5,43],[8,46],[-3,22],[-16,36],[-25,32],[-67,48],[-65,58],[-34,72],[-20,113],[-40,188],[-11,20],[-32,22],[-61,20],[-87,15],[-142,32],[-89,35],[-52,60],[-47,97],[6,66],[34,54],[48,42],[39,70],[3,62],[-29,142],[-48,109],[-76,87],[-51,24],[-62,-3],[-72,-28],[-61,-17],[-66,3],[-73,32],[-206,140],[-194,191],[-184,216],[-118,83],[-218,168],[-60,44],[-99,90],[-244,233],[-174,98],[-91,39],[-19,11],[-189,80],[-77,56],[-9,11],[-62,89],[-35,116],[-28,43],[-30,34],[-61,53],[-103,104],[-128,152],[-36,62],[-28,73],[-44,208],[-29,53],[-55,53],[-29,21],[-58,23],[-203,68],[-30,16],[-32,24],[-64,31],[-27,109],[-93,142],[-9,19],[-13,74],[-57,159],[-87,221],[-49,114],[-65,66],[-67,49],[-91,95],[-26,59],[8,72],[44,71],[61,121],[38,145],[34,156],[-38,69],[-89,121],[-13,70],[11,53],[37,50],[56,33],[89,24],[79,40],[39,33],[32,72],[-32,75],[-62,53],[-76,31],[-109,23],[-234,53],[-74,26],[-11,5],[-34,31],[-19,24],[-19,63],[-4,33],[3,33],[17,66],[27,62],[21,31],[28,32],[61,54],[29,32],[17,22],[10,30],[0,60],[-16,108],[8,72],[19,104],[9,78],[-6,100],[-17,105],[-17,78],[-26,66],[-45,76],[-8,25],[3,42],[10,40],[27,73],[13,70],[5,33],[0,33],[-6,30],[-12,27],[-16,26],[-50,43],[-97,66],[-52,57],[-29,64],[-55,146],[-42,104],[-12,92],[3,94],[-41,107],[-81,68],[-111,34],[-191,22],[-65,16],[-44,52],[-15,84],[-52,114],[-92,47],[-118,2],[-72,-19],[-111,-35],[-103,-31],[-78,15],[-66,45],[-47,36],[-83,12],[-99,-3],[-52,54],[-32,67],[-54,33],[-72,3],[-81,-22],[-83,-21],[-67,24],[-71,51],[-73,91],[-41,90],[-53,59],[-55,57],[-22,55],[9,91],[-8,147],[-55,114],[-69,111],[-63,126],[-78,65],[-116,50],[-100,59],[-24,37],[-14,67],[29,88],[3,81],[-35,98],[-21,73],[10,74],[33,56],[97,95],[34,63],[-11,72],[-42,76],[-47,71],[-6,53],[29,64],[16,60],[-17,69],[-44,57],[-19,41],[5,44],[33,38],[75,58],[49,28],[47,64],[44,56],[39,27],[45,-3],[56,-35],[86,-96],[75,-52],[73,-8],[65,25],[55,66],[20,61],[-4,73],[-37,64],[-60,119],[-22,57],[-13,78],[25,44],[61,32],[70,10],[54,-21],[40,-33],[17,-49],[7,-78],[26,-54],[47,-16],[66,12],[39,42],[7,60],[-25,92],[-64,121],[-56,75],[-64,55],[-58,70],[-2,49],[24,39],[77,74],[46,56],[19,88],[28,61],[53,33],[93,10],[216,-8],[132,0],[66,3],[88,39],[41,22],[289,253],[72,95],[60,98],[55,63],[77,21],[127,15],[149,29],[82,55],[46,78],[26,89],[13,95],[38,83],[71,57],[125,36],[84,38],[34,75],[-8,55],[-6,86],[-3,119],[22,55],[47,47],[8,71],[6,115],[31,100],[49,73],[76,49],[153,59],[69,56],[19,86],[-2,100],[25,43],[62,42],[68,7],[101,-30],[186,-57],[127,-16],[47,20],[14,50],[-9,57],[-32,57],[-43,83],[11,49],[44,44],[58,27],[91,11],[99,-1],[59,18],[59,50],[74,94],[86,93],[89,49],[278,131],[62,64],[15,51],[-8,69],[-40,95],[-62,66],[-51,86],[-8,58],[32,72],[58,77],[70,87],[65,30],[74,43],[79,89],[59,112],[25,97],[83,349],[43,51],[90,72],[29,69],[-18,109],[-85,413],[44,84],[47,78],[67,171],[56,45],[89,4],[89,16],[55,29],[50,39],[51,78],[64,73],[98,79],[69,102],[-3,3],[13,71],[-28,195],[63,293],[11,44],[20,33],[18,40],[1,33],[-3,30],[-10,32],[-35,72],[-43,83],[-24,36],[-32,37],[-45,28],[-50,12],[-64,11],[-47,31],[-29,42],[-91,200],[-25,45],[-35,48],[-56,88],[-98,212],[7,104],[-6,127],[-24,108],[2,133],[7,82],[-2,14],[-38,61],[-62,115],[-1,56],[19,75],[56,97],[34,32],[35,7],[54,-1],[77,-9],[49,4],[41,22],[86,65],[106,125],[22,48],[11,72],[-2,53],[-10,77],[4,62],[39,139],[36,43],[67,92],[26,50],[71,225],[0,44],[-9,60],[-85,202],[-40,73],[-39,50],[-43,45],[-98,49],[-42,46],[-19,51],[3,46],[16,50],[38,51],[55,33],[75,23],[99,19],[91,29],[65,33],[107,89],[25,45],[11,67],[0,42],[12,175],[18,70],[33,38],[146,103],[60,55],[131,203],[40,41],[112,88],[168,111],[39,71],[7,72],[-24,75],[-57,160],[1,37],[10,32],[47,57],[77,36],[173,45],[69,41],[34,50],[-3,68],[-11,89],[-30,184],[5,53],[34,90],[74,188],[1,131],[-22,82],[-34,38],[-47,37],[-77,66],[-15,30],[1,38],[47,190],[-4,68],[-19,79],[-15,43],[-28,63],[-7,29],[0,26],[5,27],[14,28],[40,53],[26,28],[47,43],[23,17],[85,51],[58,32],[127,75],[57,33],[47,37],[25,24],[31,45],[16,35],[20,69],[15,43],[18,62],[15,86],[2,38],[-3,36],[-18,80],[-9,21],[-33,54],[-77,88],[-18,29],[-36,49],[-74,45],[-86,61],[-36,78],[-58,139],[-61,163],[-33,110],[-46,104],[-58,107],[-54,64],[-53,50],[-25,27],[-51,78],[-46,48],[-80,70],[-43,30],[-195,163],[-184,136],[-144,94],[-65,41],[-114,68],[-164,80],[-147,44],[-139,33],[-174,32],[-101,16],[-186,20],[-110,24],[-50,25],[-100,58],[-11,15],[-92,74],[-49,47],[-208,217],[-108,133],[-22,25],[-136,177],[-123,188],[-84,158],[-35,111],[-32,121],[-18,116],[7,92],[14,71],[23,75],[59,119],[21,63],[6,121],[0,66],[-6,48],[-20,71],[-53,150],[-28,115],[-16,169],[-15,114],[-15,45],[-41,175],[-34,169],[8,135],[20,91],[20,54],[30,98],[113,158],[177,223],[136,134],[214,235],[160,213],[70,104],[68,85],[33,53],[50,67],[42,78],[36,45],[55,131],[43,167],[-3,203],[-5,107],[-62,222],[-62,161],[-56,81],[-40,75],[-54,67],[-26,42],[-85,100],[-123,119],[-225,180],[-82,73],[-37,43],[-51,104],[-49,109],[-4,120],[38,185],[82,106],[116,107],[437,314],[242,269],[136,211],[51,92],[83,254],[80,297],[39,213],[16,429],[46,160],[108,171],[11,71],[-1,82],[-33,90],[-46,56],[-319,295],[-103,119],[-38,24],[-7,56],[-31,64],[-60,186],[-48,114],[-69,138],[-38,48],[-58,73],[-167,136],[-207,129],[-81,53],[-228,45],[-274,45],[-240,37],[-267,119],[-295,119],[-314,50],[-241,4],[-220,22],[-297,72],[-349,163],[-396,212],[-293,123],[-274,65],[-257,12],[-197,0],[-181,14],[-108,23],[-166,80],[-59,29],[-105,111],[-86,206],[-42,245],[-50,93],[-88,102],[-97,70],[-142,58],[-134,35],[-91,74],[-81,106],[-33,99],[-24,111],[-9,94],[27,142],[53,123],[208,191],[176,151],[56,98],[21,112],[-2,53],[-8,76],[-28,79],[-82,142],[-65,72],[-23,29],[-86,77],[-45,74],[-14,81],[-6,99],[15,106],[7,97],[-18,91],[-22,58],[-45,64],[-71,107],[-89,83],[-96,52],[-325,101],[-83,68],[-65,70],[-36,120],[0,60],[34,129],[55,160],[29,91],[0,109],[-25,169],[-38,111],[-59,122],[-94,170],[-168,203],[-45,72],[-88,232],[-8,86],[-3,70],[3,72],[17,81],[28,255],[-8,122],[-21,150],[-5,139],[18,133],[1,260],[-55,275],[-18,68],[-26,57],[-95,199],[-86,126],[-85,139],[-165,204],[-47,62],[-127,194],[-89,137],[-32,60],[-21,34],[-19,39],[-29,78],[-14,68],[-12,83],[11,113],[27,128],[31,90],[48,103],[63,118],[76,100],[179,226],[140,211],[31,107],[15,97],[1,129],[-9,33],[-14,76],[-71,168],[-36,141],[-14,105],[-2,74],[4,103],[13,61],[27,93],[47,120],[52,110],[64,109],[173,212],[185,159],[102,69],[93,48],[211,60],[174,22],[221,-17],[127,14],[93,28],[58,29],[61,43],[67,74],[77,114],[81,156],[51,88],[56,73],[52,49],[86,63],[152,96],[118,81],[78,96],[49,87],[22,50],[75,125],[69,113],[49,55],[90,73],[112,76],[177,140],[42,65],[42,100],[26,144],[11,188],[1,37],[40,331],[36,75],[72,81],[90,71],[112,65],[140,71],[82,48],[62,59],[100,110],[101,122],[188,270],[83,162],[44,116],[14,52],[8,68],[4,88],[-14,104],[-36,91],[-47,96],[-52,93],[-62,77],[-54,61],[-58,51],[-83,61],[-98,62],[-47,25],[-47,11],[-122,25],[-69,22],[-104,45],[-98,79],[-72,74],[-62,93],[-48,107],[-12,103],[-5,175],[-23,197],[-93,252],[-108,255],[-46,54],[-59,178],[-19,142],[16,153],[35,140],[70,169],[57,81],[68,66],[124,166],[74,137],[35,78],[28,97],[14,101],[22,350],[20,127],[74,127],[86,98],[103,85],[104,82],[569,385],[100,81],[42,43],[29,35],[35,56],[22,49],[14,52],[10,71],[-1,59],[-8,68],[-26,100],[-40,78],[-80,94],[-213,150],[-83,47],[-97,49],[-76,37],[-209,123],[-290,227],[-118,131],[-97,161],[-12,26],[-29,50],[-50,220],[-50,391],[-199,302],[-113,175],[-165,252],[-83,93],[-84,92],[-111,48],[-152,81],[-93,51],[-123,52],[-74,55],[-59,37],[-99,34],[-95,77],[-67,82],[-87,47],[-40,38],[-32,76],[-85,52],[-61,78],[-145,56],[-87,78],[-159,72],[-93,-25],[-441,201],[-717,413],[-486,236],[-767,329],[-711,461],[-685,417],[-611,391],[-168,109],[-77,62],[-67,60],[-51,65],[-39,59],[-30,55],[-104,269],[-42,146],[-51,140],[-37,78],[-66,95],[-83,90],[-75,62],[-101,72],[-103,53],[-115,53],[-87,23],[-315,98],[-106,-24],[-43,10],[-51,42],[-88,76],[-26,73],[-29,65],[-97,359],[-39,110],[-56,123],[-38,75],[-45,80],[-43,62],[-46,48],[-86,74],[-157,119],[-156,116],[-53,61],[-87,119],[-49,84],[-37,96],[-43,81],[-72,111],[-106,132],[-119,133],[-89,105],[-77,96],[-172,189],[-119,129],[-95,99],[-105,89],[-162,109],[-52,47],[-28,42],[-23,73],[-34,82],[-45,76],[-62,93],[-73,74],[-69,74],[-69,106],[-104,178],[-47,83],[-43,51],[-50,41],[-69,45],[-68,38],[-92,33],[-154,64],[-55,31],[-77,66],[-135,131],[-55,80],[-104,157],[-56,103],[-78,127],[-74,110],[-37,45],[-58,46],[-501,256],[-262,131],[-90,65],[-178,157],[-80,47],[-97,36],[-373,142],[-373,109],[-230,79],[-145,68],[-311,160],[-272,108],[-249,123],[-115,74],[-147,106],[-480,379],[-642,541],[-213,202],[-199,177],[-57,75],[-180,263],[-127,152],[-51,40],[-195,147],[-110,63],[-84,70],[-65,72],[-100,161],[-123,193],[-139,205],[-105,138],[-42,35],[-77,67],[-69,57],[-60,34],[-69,33],[-149,52],[-94,22],[-384,42],[-138,20],[-407,55],[-213,27],[-468,40],[-140,39],[-83,11],[-156,5],[-81,8],[-54,14],[-163,58],[-82,9],[-111,-14],[-91,15],[-232,58],[-171,47],[-141,5],[-49,-18],[-63,-19],[-103,18],[-104,39],[-94,43],[-76,41],[-40,60],[-59,28],[-65,1],[-86,51],[-87,81],[-67,76],[-32,57],[-21,43],[-2,36],[-21,65],[-40,53],[-58,111],[-48,134],[-15,71],[-1,62],[8,35],[6,63],[-6,78],[-1,73],[14,80],[7,88],[43,78],[55,121],[102,183],[135,235],[78,85],[63,36],[71,69],[104,144],[101,117],[66,96],[49,102],[72,79],[117,74],[110,116],[130,153],[101,153],[131,174],[87,140],[45,87],[24,77],[12,108],[14,172],[20,114],[22,65],[28,69],[23,89],[15,127],[-9,132],[-3,108],[-29,85],[-49,118],[-48,113],[-26,47],[-56,60],[-69,46],[-45,55],[-80,238],[-16,108],[-8,156],[12,92],[0,126],[-14,151],[-24,103],[-12,147],[-25,121],[-17,126],[-33,103],[-47,93],[-56,65],[-36,63],[-19,134],[-15,125],[-33,90],[5,63],[17,72],[-17,88],[-34,116],[-25,58],[-52,86],[-23,70],[3,171],[-25,76],[0,151],[16,120],[54,103],[33,121],[-9,100],[-58,147],[-26,56],[-62,96],[-41,99],[-50,40],[-21,59],[14,49],[50,74],[34,103],[111,207],[13,118],[13,143],[53,60],[104,60],[126,45],[312,71],[80,-1],[92,-14],[59,13],[80,48],[90,84],[108,153],[59,146],[8,109],[11,48],[42,64],[84,73],[113,68],[125,58],[76,15],[100,6],[82,22],[120,49],[173,85],[140,66],[220,122],[91,78],[88,113],[72,57],[141,59],[113,62],[122,72],[123,46],[150,11],[110,15],[82,19],[96,-5],[84,27],[174,94],[95,49],[63,63],[65,28],[138,50],[68,6],[79,-16],[75,21],[141,83],[63,40],[91,50],[107,89],[51,58],[90,67],[74,29],[31,30],[34,55],[55,40],[91,48],[109,65],[58,9],[76,1],[69,44],[80,63],[90,92],[78,72],[54,113],[119,100],[47,64],[202,151],[45,10],[59,4],[41,26],[38,52],[65,64],[102,51],[56,29],[67,30],[96,63],[80,66],[49,66],[83,26],[72,55],[71,33],[136,122],[25,71],[44,28],[77,37],[81,151],[62,59],[92,67],[59,76],[46,23],[73,20],[48,50],[81,102],[19,59],[75,84],[24,56],[13,50],[56,66],[124,99],[136,96],[78,9],[94,71],[29,45],[21,67],[57,56],[157,92],[47,2],[65,-12],[164,102],[61,46],[92,45],[126,81],[88,81],[176,197],[32,62],[68,31],[153,217],[-1,28],[-13,76],[23,49],[94,74],[84,74],[88,155],[75,176],[14,78],[-22,64],[8,51],[61,63],[41,48],[17,67],[24,89],[-7,92],[6,65],[75,108],[15,48],[200,267],[44,58],[31,52],[29,90],[31,108],[31,105],[16,86],[-38,104],[10,28],[39,44],[56,46],[16,64],[-9,85],[20,89],[7,52],[29,93],[11,104],[4,139],[-20,79],[-15,50],[13,70],[-26,75],[-23,88],[24,93],[-9,63],[1,68],[15,33],[54,62],[107,161],[132,163],[87,89],[37,92],[11,108],[26,83],[36,136],[15,136],[-7,98],[21,123],[8,61],[-32,57],[4,112],[27,139],[-8,56],[45,55],[12,28],[-2,55],[-24,60],[-4,28],[7,30],[32,50],[65,134],[-6,53],[-28,71],[1,36],[7,31],[70,86],[11,60],[20,58],[96,187],[-231,261],[-30,58],[-52,89],[-58,106],[-97,100],[-95,124],[-99,125],[-127,214],[-50,167],[-24,72],[10,97],[1,167],[-19,73],[-75,161],[-50,196],[-30,129],[7,50],[24,50],[48,131],[53,166],[47,162],[14,73],[-22,78],[42,70],[101,152],[61,146],[31,66],[29,157],[23,125],[-9,92],[17,171],[42,141],[14,120],[11,126],[4,75],[13,15],[78,64],[74,46],[152,75],[99,34],[228,52],[84,5],[77,-11],[142,30],[129,55],[112,69],[100,90],[107,124],[56,106],[25,118],[5,136],[14,127],[0,193],[29,222],[94,150],[104,127],[71,78],[59,97],[59,79],[149,167],[84,102],[90,79],[108,60],[174,122],[97,90],[97,134],[46,82],[12,70],[11,94],[16,193],[33,119],[37,64],[93,124],[72,92],[66,94],[102,139],[122,104],[111,69],[99,91],[32,79],[15,123],[-22,139],[-57,185],[-104,177],[-87,147],[-35,87],[19,81],[11,11],[5,28],[10,25],[-144,22],[-384,79],[-102,7],[-543,15],[-38,158],[-96,502],[-54,236],[-47,381],[-29,237],[-43,351],[-151,165],[-92,99],[-45,93],[-108,133],[121,288],[243,619],[59,224],[-158,373],[-47,148],[-32,60],[-73,149],[-33,79],[-6,22],[-70,298],[-67,512],[-270,200],[-225,136],[-131,59],[-116,87],[23,69],[115,279],[37,263],[21,194],[25,159],[27,155],[-26,468],[-195,616],[-77,259],[-175,327],[-79,144],[-301,544],[-146,316],[-77,196],[6,305],[-3,202],[-19,164],[-22,93],[-90,224],[-46,98],[-50,583],[-4,40],[30,119],[68,268],[16,262],[30,303],[14,148],[-48,79],[11,313],[30,124],[-23,107],[-235,30],[-291,-8],[-119,42],[-14,40],[-71,300],[29,138],[-1,371],[3,70],[-16,61],[-34,116],[-37,130],[-15,192],[-29,167],[-36,218],[19,314],[14,144],[-40,130],[-133,404],[-230,117],[-149,82],[-211,74],[-101,34],[-214,75],[-240,173],[-13,10],[-36,133],[-65,241],[-30,101],[-106,352],[-142,359],[-37,16],[-87,181],[-41,158],[148,287],[27,51],[-26,77],[-145,437],[-99,101],[-97,98],[-144,132],[-154,148],[26,154],[20,269],[28,143],[-39,15],[-188,130],[91,200],[42,72],[416,571],[-73,450],[-8,56],[3,118],[-18,222],[0,213],[22,237],[16,189],[46,476],[88,936],[23,292],[17,203],[35,437],[-285,29],[-375,292],[-107,88],[-442,415],[-404,360],[-6,234],[27,343],[10,76],[0,51],[13,1048],[-26,28],[-28,15],[-20,5],[-5,9],[10,19],[-6,11],[-18,9],[-19,32],[-20,3],[-19,24],[-19,7],[-18,26],[-18,11],[-44,56],[-5,25],[12,15],[-24,8],[-22,18],[-18,-7],[-32,-3],[-4,-9],[-43,-14],[-29,-18],[-34,2],[-27,14],[-34,33],[-20,3],[-24,-3],[-35,9],[-25,13],[-15,31],[-4,24],[-11,22],[-16,5],[-9,13],[-5,38],[-8,24],[-2,30],[13,25],[-16,16],[3,17],[12,7],[26,30],[-4,17],[19,20],[22,12],[4,11],[16,-1],[29,22],[24,7],[6,19],[29,19],[7,31],[58,24],[21,-22],[21,-2],[22,15],[5,12],[-10,27],[12,15],[5,30],[21,2],[29,20],[15,22],[4,17],[26,36],[12,4],[7,14],[29,17],[20,4],[20,16],[-5,45],[58,55],[8,21],[7,57],[-1,23],[17,40],[11,48],[-7,118],[-5,19],[33,113],[-6,51],[-9,32],[20,48],[3,26],[-23,25],[-3,13],[-22,22],[-11,44],[-44,38],[-25,18],[-71,11],[-46,25],[-57,28],[-32,19],[-31,27],[-13,30],[-54,41],[-3,9],[23,87],[-9,23],[-45,29],[-20,3],[-57,-2],[-23,10],[-3,9],[16,30],[19,27],[1,29],[-24,52],[-28,81],[12,68],[-72,139],[-72,51],[-17,46],[-48,47],[-17,49],[-26,36],[45,429],[205,88],[-175,187],[37,343],[119,1111],[71,671],[-29,89],[-42,115],[98,266],[-322,661],[813,1359],[-472,934],[-168,332],[-2762,5462],[-75,148],[-2,39],[16,89],[39,203],[5,79],[10,40],[-1,39],[6,43],[9,34],[6,53],[-3,29],[13,61],[10,69],[-4,80],[37,66],[8,41],[-16,73],[-27,129],[-24,130],[-20,105],[-4,40],[-11,175],[-14,199],[-19,260],[-9,128],[-9,129],[0,40],[-12,23],[-202,227],[-52,61],[-141,147],[43,174],[16,55],[22,34],[9,21],[-222,44],[-432,67],[-344,-9],[0,154],[105,56],[65,17],[112,48],[187,-46],[94,-10],[72,12],[49,16],[133,5],[96,17],[177,13],[393,377],[96,94],[174,166],[237,220],[34,190],[214,1183],[538,2963],[-995,5038],[-995,4963],[-586,2930],[-1044,5212],[-4801,2807],[422,11815],[-2712,12035],[-497,1277],[-730,1707],[-739,1194],[-619,846],[-820,980],[-1483,1476],[-681,601],[-926,421],[-1758,1156],[-9942,7056],[-2414,1429],[-2671,1050],[-2845,638],[-2932,207],[-1639,-129],[-1799,-23],[-1555,-142],[-1778,-313],[-1115,-291],[-1944,-200],[-1147,-216],[-1126,-283],[-1101,-350],[-1069,-414],[-1158,-533],[-2468,-1322],[-1399,-884],[-1528,-1212],[-1408,-856],[-10869,-3017],[-15463,-8911],[-1790,-1034],[-3567,-2059],[-1464,-4316],[394,-462],[-2034,-4376],[-2953,-3084],[-1601,-1673],[-623,0],[-9800,-3734],[-2927,-32],[-10976,-173],[-1088,-10],[-2725,3105],[-2453,2449],[-3090,2329],[-3538,2469],[-2575,2248],[-1356,562],[-528,1205],[-5165,2108],[-3117,1324],[-6859,-542],[-1030,-983],[-7793,-622],[-3186,-2389],[-5025,-214],[-2904,675],[-4229,1948],[-3755,1545],[-4378,1747],[-1463,1405],[-1110,1463],[-1357,1789],[-1925,2790],[-2413,3031],[-4028,1863],[-1721,153],[-7673,5472],[-3603,-632],[-3599,-644],[-284,-51],[-46,-9],[-348,122],[-2723,932],[-1302,446],[-1190,406],[-1040,349],[1141,1826],[-1766,521],[-365,-65],[-2423,-1860],[-1802,-1383],[-724,-300],[-974,-391],[-139,119],[-524,-45],[-566,-338],[-129,-69],[-314,6],[-373,315],[-59,65],[-24,8],[-14,-6],[-34,-5],[-18,-12],[-22,43],[-19,9],[-11,20],[-16,6],[-18,39],[-2,62],[12,61],[2,25],[96,45],[-18,25],[-6,19],[6,69],[-45,52],[-21,-21],[-44,55],[-46,50],[-26,24],[-79,69],[-75,69],[-141,32],[-41,-15],[-23,-16],[-129,-199],[-34,-41],[-32,61],[-16,55],[-13,-3],[-130,-44],[-94,-47],[-15,9],[-212,-52],[-120,-15],[-208,20],[-176,40],[-95,-125],[30,-145],[-127,-171],[-58,17],[-21,14],[-15,2],[-24,19],[-33,-1],[6,-33],[-57,-1],[0,-93],[-26,-55],[20,-26],[77,-124],[0,-5],[-61,-161],[26,-67],[-30,-31],[-47,-78],[13,-74],[-71,-114],[56,-53],[-143,-112],[-2,-25],[-95,-2],[-4,4],[-50,-9],[-13,-13],[-19,-1],[-10,-40],[-53,4],[-8,-4],[12,-31],[-44,-14],[-10,-18],[-47,-17],[-55,-52],[32,-91],[-34,-9],[-23,58],[-32,1],[-37,18],[-209,-65],[-94,-79],[-91,-141],[-243,-320],[-67,-84],[-156,31],[-58,-254],[165,-107],[-11,-12],[-73,-125],[-488,216],[-161,71],[-46,101],[-199,30],[-495,71],[-365,50],[-364,50],[-331,36],[-71,-197],[44,-54],[127,-163],[-31,-108],[-58,30],[-359,160],[-50,170],[-54,217],[-147,11],[-288,108],[-98,35],[-138,26],[-191,-65],[-42,-27],[-59,-12],[-315,-10],[-38,-7],[-191,-32],[-159,-25],[-87,241],[-50,136],[-63,167],[-77,138],[-88,157],[-50,90],[-84,165],[-68,131],[-53,129],[0,5],[-76,186],[-26,298],[6,17],[86,141],[57,93],[18,23],[104,126],[85,92],[112,129],[-189,375],[-34,71],[-224,74],[-402,125],[-194,63],[-31,14],[-449,196],[-257,115],[-158,67],[-36,8],[-36,-1],[-101,-7],[-279,1],[-64,14],[-136,77],[-178,47],[-26,20],[-68,133],[-21,17],[-639,204],[-427,148],[-97,33],[-83,17],[-18,7],[-218,122],[-28,14],[-90,29],[-76,11],[-104,41],[-36,10],[-272,67],[-54,2],[-245,47],[-49,2],[-370,-50],[-219,-28],[-29,-1],[-226,20],[-46,6],[-211,49],[-104,25],[-45,0],[-257,-72],[-274,-76],[-16,-2],[-161,6],[-15,-3],[-78,-47],[-71,-55],[-41,-18],[-24,-5],[-36,-2],[-221,33],[-344,72],[-130,14],[-209,-48],[-15,-1],[-150,15],[-19,1],[-221,-19],[-44,11],[-213,112],[-48,8],[-422,-72],[-46,7],[-542,267],[-356,178],[-10,7],[-5,22],[43,105],[-8,23],[-136,78],[-604,366],[-98,26],[-1385,382],[-11,5],[-33,31],[-243,201],[-34,25],[-217,68],[-266,86],[-43,16],[-31,1],[-29,8],[-35,24],[-66,61],[-7,11],[-35,5],[-46,24],[-41,12],[-63,29],[-22,7],[-47,8],[-50,32],[-36,3],[-29,-24],[-11,0],[-21,31],[-15,10],[-41,8],[-51,-5],[-25,12],[-31,2],[-56,23],[-120,34],[-14,2],[-48,-1],[-78,-5],[-53,6],[-38,-2],[-43,3],[-55,-2],[-45,-10],[-27,2],[-53,-1],[-37,6],[-88,9],[-46,8],[-118,6],[-369,41],[-69,6],[-39,-2],[-33,-17],[-34,-26],[-31,-19],[-29,1],[-35,10],[-35,-3],[-36,16],[-13,0],[-28,-19],[-14,10],[-10,17],[-16,5],[-12,-6],[-22,-25],[-23,-18],[-14,-4],[-38,4],[-46,-22],[-24,-5],[-8,21],[12,35],[1,20],[-7,12],[-25,5],[-40,0],[-40,31],[-18,9],[-17,-1],[-302,1],[-48,32],[-27,8],[-38,3],[-80,-4],[-152,-26],[-110,0],[-15,8],[-45,33],[-38,16],[-38,7],[-23,-11],[-51,-36],[-39,-16],[-36,-5],[-86,-102],[-18,-4],[-137,-19],[-41,-8],[-67,0],[-43,-12],[-23,-1],[-67,14],[-46,-1],[-33,-4],[-10,-5],[-20,-23],[-18,-14],[-31,-13],[-32,-20],[-18,-21],[-49,-46],[-17,-19],[-16,-29],[-21,-13],[-23,-3],[-85,27],[-54,6],[-49,3],[-59,7],[-40,2],[-28,-2],[-25,-25],[-22,-41],[-12,-10],[-72,-28],[-17,-16],[-11,-24],[-12,-14],[-26,-11],[-50,-16],[-15,-22],[-20,-16],[-17,2],[-230,13],[-233,20],[-59,8],[-175,122],[-81,69],[-49,49],[-82,88],[-100,140],[-94,118],[-12,9],[-84,27],[-71,36],[-23,17],[-5,-2],[-10,-45],[-41,11],[-46,-9],[-71,-29],[-21,14],[12,31],[-242,38],[-23,-7],[-47,-72],[-34,-8],[-50,-31],[-58,-42],[-69,-46],[-36,2],[-175,1],[-29,12],[-69,35],[-28,-2],[-23,85],[-8,7],[-434,-67],[-7,-7],[-135,-24],[-21,7],[5,-155],[-169,-34],[-89,-37],[-12,0],[-23,-16],[-6,-16],[-108,-93],[-51,-34],[-121,-64],[-21,-5],[-207,-28],[-46,-8],[-13,-12],[-2,-35],[-106,-85],[-65,-38],[-24,-8],[-31,6],[27,-206],[-851,135],[-216,169],[-226,24],[-8,-30],[-14,-79],[-15,1],[-214,-66],[-347,-113],[-156,-13],[-348,-20],[-176,74],[-221,105],[-115,56],[-56,36],[19,54],[-334,117],[-104,148],[-332,139],[-57,62],[-140,70],[-38,45],[-215,118],[-221,138],[-19,10],[-95,35],[-183,69],[-182,37],[-82,-6],[-207,33],[-38,3],[-102,-1],[-414,-191],[-969,168],[-91,15],[-87,23],[-652,84],[-3305,589],[88,5201],[-1857,-13],[-860,533],[-1435,1830],[279,1539],[-268,584],[-3752,1052],[-350,-62],[-96,-264],[-1030,-94],[-898,132],[-303,265],[-259,639],[-298,421],[-515,100],[-312,-20],[-326,-140],[-759,-582],[0,-721],[-6287,1304],[-5699,1182],[-74,-429],[-58,-492],[-123,-275],[-618,-1441],[-549,-1002],[-205,-389],[-192,-394],[-387,-823],[-324,-705],[-198,-447],[-180,-450],[-455,-1206],[-65,-177],[-521,-1447],[-173,-516],[-154,-528],[-128,-532],[-212,-966],[-127,-668],[-91,-673],[-141,-1324],[-49,-572],[-82,-1394],[-122,-1774],[-22,-450],[-35,-1084],[-6,-385],[6,-386],[20,-638],[-14,-297],[-188,-1769],[-53,-670],[-17,-673],[20,-672],[57,-672],[271,-2619],[328,-2759],[56,-697],[96,-692],[134,-689],[172,-682],[212,-675],[96,-281],[200,-544],[225,-540],[251,-530],[790,-1588],[1024,-2088],[1382,-2773],[1459,-2929],[1100,-2271],[1178,-2360],[1694,-3383],[242,-466],[260,-457],[-553,461],[-577,438],[-601,416],[-622,391],[-641,365],[-662,342],[-679,313],[-694,285],[-710,257],[-722,229],[-734,198],[-744,171],[-752,138],[-759,111],[-765,80],[-767,48],[-2833,121],[-790,18],[-789,-16],[-789,-48],[-783,-81],[-779,-112],[-773,-143],[-763,-176],[-752,-207],[-742,-237],[-726,-267],[-710,-297],[-694,-327],[-675,-354],[-655,-381],[-633,-407],[-610,-434],[-584,-460],[-560,-479],[-533,-506],[-503,-524],[-474,-546],[-445,-564],[-412,-582],[-379,-599],[-347,-612],[-313,-626],[-278,-641],[-243,-648],[-207,-658],[-171,-667],[-134,-674],[-98,-677],[-59,-680],[-23,-683],[13,-682],[52,-683],[88,-678],[126,-673],[161,-668],[198,-661],[233,-652],[269,-642],[302,-631],[337,-616],[369,-602],[403,-586],[432,-569],[1442,-1802],[453,-540],[482,-522],[510,-504],[535,-480],[560,-459],[583,-436],[607,-412],[626,-385],[648,-361],[666,-336],[-1475,-726],[-984,-80],[-1294,-141],[-792,-104],[-790,-139],[-779,-171],[-770,-204],[-758,-237],[-1877,-636],[-908,-45],[-1533,0],[-678,-12],[-700,-38],[-696,-64],[-694,-90],[-687,-117],[-858,-160],[-693,-145],[-687,-171],[-677,-196],[-666,-223],[-655,-247],[-1730,-691],[-452,-86],[-937,-171],[-304,-34],[-168,12],[-789,39],[-790,4],[-790,-29],[-787,-62],[-2016,-203],[-817,-100],[-811,-134],[-800,-171],[-790,-207],[-776,-241],[-1266,-423],[-820,-297],[-2976,-1163],[-397,-54],[-396,-62],[-1749,-293],[-548,-74],[-2630,-89],[-695,-38],[-691,-62],[-689,-88],[-684,-113],[-678,-138],[-669,-165],[-784,-169],[-774,-200],[-760,-235],[-747,-267],[-731,-299],[-713,-331],[-692,-360],[-673,-389],[-650,-418],[-625,-445],[-599,-474],[-389,-183],[-765,-92],[-757,-123],[-751,-152],[-742,-185],[-730,-215],[-719,-243],[-703,-275],[-689,-301],[-672,-331],[-653,-357],[-633,-386],[-611,-409],[-590,-436],[-565,-457],[-540,-482],[-513,-504],[-487,-522],[-457,-544],[-432,-620],[3257,-8689],[6771,-1571],[896,-916],[1006,-662],[608,-276],[420,-167],[125,-65],[57,-107],[81,-242],[-32,-74],[-73,-86],[-4,-163],[95,-97],[118,-179],[154,-37],[208,-178],[-3,-388],[109,-119],[352,-25],[495,-234],[235,79],[293,-19],[248,-358],[544,-698],[724,-674],[-14,-65],[-190,-50],[62,-222],[-62,-185],[171,-41],[285,230],[199,36],[143,-85],[-105,-205],[48,-151],[290,-35],[90,65],[114,-13],[86,-121],[195,-134],[692,-327],[691,-266],[870,-342],[656,-197],[600,-269],[776,-328],[872,-189],[725,-129],[1179,-450],[644,-338],[481,-280],[356,-369],[157,-244],[26,-177],[-183,-393],[-120,-367],[-89,-283],[-92,-103],[-37,-112],[66,-150],[63,-118],[-9,-142],[-40,-344],[125,-370],[45,-376],[132,-492],[14,-246],[89,-497],[29,-289],[49,-199],[105,-279],[35,-185],[46,-452],[112,-372],[96,-210],[192,-238],[352,-339],[203,-166],[441,-322],[493,-232],[350,-143],[253,-67],[234,-127],[121,-97],[190,-169],[261,-131],[465,-183],[245,-111],[361,-81],[230,-68],[241,-119],[225,-45],[125,3],[277,-85],[173,-158],[162,-83],[396,-103],[616,-140],[704,-182],[576,-37],[409,22],[463,58],[748,162],[4608,396],[917,-5676],[58,-355],[1,-13],[-19,-2],[31,-177],[-66,-13],[-8,-17],[72,-290],[223,-578],[26,-127],[30,-993],[-1,-232],[-52,-164],[-53,-62],[-137,-96],[-59,-61],[-166,-292],[331,-203],[122,-76],[110,-67],[381,-234],[5,-12],[-311,-106],[-146,-49],[-63,-23],[-69,-23],[-69,-21],[-71,-17],[-71,-14],[-108,-14],[-73,-5],[-73,-1],[-109,5],[-52,-91],[-41,-69],[-57,-91],[-17,-33],[-138,-238],[-312,-530],[-10,-27],[-6,-44],[25,-84],[-1,-21],[-35,-61],[-56,-102],[-1,-109],[-3,-60],[11,-296],[3,-88],[5,-109],[-1,-14],[-179,-233],[-96,-175],[-16,-58],[-9,-66],[-18,-35],[-91,-97],[-47,-54],[-62,39],[-4,-21],[24,-238],[17,-158],[15,-97],[4,-42],[5,-24],[13,-107],[11,-50],[14,-50],[17,-36],[22,-35],[25,-31],[39,-60],[25,-41],[20,5],[88,-49],[1,-3],[-50,-67],[-23,-27],[-36,-32],[-8,-21],[-28,-30],[971,-604],[-175,-2314],[64,-486],[39,-301],[4,-26],[50,-384],[43,-329],[45,-340],[90,-686],[163,-1239],[173,-1305],[219,-277],[-66,-81],[19,-19],[-66,-39],[-272,-333],[-322,-1003],[-325,-1010],[-680,-2117],[-42,-128],[-313,-466],[-125,-187],[-24,-37],[-200,-297],[-75,-113],[-140,-207],[-163,-244],[-172,-256],[-346,-517],[-489,-726],[-188,-282],[-111,-166],[-46,-66],[-309,-461],[-134,-199],[-112,-167],[-165,-247],[-23,-34],[-194,-290],[-434,-649],[-234,-285],[-43,-19],[-3,-36],[-556,-676],[267,-844],[-125,-243],[-131,-256],[-339,-657],[-22,9],[-28,-52],[23,-9],[-208,-403],[-203,-397],[-21,-369],[-77,-1382],[-114,-2060],[-12,-202],[-10,-183],[-89,-1609],[-18,-239],[-29,-361],[-102,-1262],[-111,-1376],[-156,-1932],[-8,-101],[-60,-750],[-13,-169],[43,-5],[5,-68],[-573,-653],[-101,-114],[-9,-7],[-37,5],[-63,-5],[-36,5],[-17,7],[-25,22],[-59,79],[-18,18],[-33,19],[-24,6],[-27,1],[-251,-15],[-43,-2],[-18,3],[-353,76],[-179,31],[-202,34],[-54,14],[-261,113],[-32,23],[-14,17],[-15,25],[-47,99],[-10,15],[-17,15],[-91,53],[-41,15],[-53,10],[-33,1],[-41,-4],[-140,-32],[-102,-25],[-30,-3],[-49,6],[-33,13],[-141,60],[-210,88],[-21,13],[-77,73],[-22,16],[-30,13],[-240,73],[-43,4],[-22,-7],[-17,-12],[-211,-236],[-16,-14],[-85,-51],[-41,-11],[-204,5],[-187,1],[-28,-10],[-143,-110],[-80,-64],[-19,-11],[-34,-6],[-210,21],[-31,2],[-133,4],[-31,-4],[-31,-9],[-130,-53],[-81,-32],[-44,-9],[-23,1],[-171,26],[-47,17],[-203,103],[-48,16],[-47,6],[-327,-23],[-84,-5],[-27,5],[-15,9],[-136,111],[-13,19],[-4,19],[-24,227],[-6,44],[-15,36],[-36,28],[-17,7],[-260,76],[-41,9],[-193,36],[-26,8],[-28,16],[-172,150],[-22,13],[-40,17],[-37,8],[-42,2],[-186,6],[-38,-1],[-183,-24],[-190,-26],[-160,-21],[-34,3],[-45,16],[-93,49],[-142,112],[-31,15],[-27,3],[-41,-11],[-31,-14],[-22,-17],[-36,-35],[-44,-34],[-213,-132],[-19,-8],[-98,-6],[-293,-12],[-104,3],[-35,-3],[-37,-15],[-42,-35],[-18,-12],[-23,-6],[-34,5],[-97,38],[-465,188],[-29,9],[-44,1],[-259,-26],[-29,-10],[-18,-13],[-40,-36],[-13,-15],[-20,-36],[-23,-26],[-62,-37],[-22,-11],[-63,-23],[-187,-69],[-25,-5],[-147,-1],[-34,5],[-14,8],[-51,41],[-22,11],[-38,6],[-336,25],[-39,8],[-24,15],[-15,18],[-51,100],[-14,17],[-19,14],[-93,31],[-24,6],[-28,0],[-382,-89],[-18,0],[-29,8],[-17,13],[-110,109],[-35,20],[-36,3],[-21,-4],[-36,-15],[-32,-9],[-48,-1],[-127,12],[-25,-2],[-292,-59],[-18,-6],[-139,-96],[-21,-9],[-20,-3],[-40,3],[-34,-9],[-6,-9],[-103,-115],[-1,0],[-95,-107],[-441,143],[-117,-88],[-46,-25],[2,-15],[-33,-19],[-16,-33],[-34,-28],[-19,-10],[-50,43],[-7,22],[-19,24],[27,19],[27,9],[30,22],[-4,20],[-29,10],[-17,-3],[-43,-20],[-27,-20],[-26,-24],[-7,-24],[-215,-48],[-207,-67],[-112,-141],[-50,-59],[-22,-35],[-54,-61],[-35,-26],[-25,-34],[-246,-206],[-53,-78],[-67,-96],[-45,-59],[-25,-49],[-19,-29],[-11,-6],[-68,-25],[-95,-48],[-15,-4],[-69,-33],[-16,-13],[-47,-3],[-54,-7],[-22,3],[-30,-22],[-33,-14],[-24,-15],[-41,-19],[-31,-7],[-9,-14],[-35,-21],[-15,-24],[-26,-24],[-109,-70],[-49,-21],[0,-27],[6,-13],[90,-35],[53,-3],[37,7],[18,-5],[17,-28],[14,-40],[34,-34],[35,-41],[20,-18],[77,-87],[10,-29],[5,-68],[5,-7],[36,-14],[32,-5],[29,-19],[3,-10],[25,-22],[19,-12],[10,-22],[14,-12],[32,-6],[7,9],[96,-127],[21,-56],[88,-188],[9,-23],[-10,-33],[-98,-294],[-15,-95],[-18,-46],[-4,-24],[7,-29],[-6,-16],[-5,-73],[-16,-105],[-8,-38],[9,-25],[-8,-74],[-13,-19],[-34,-84],[-27,-75],[-28,-65],[-11,-28],[-2,-22],[-15,-31],[-7,-28],[-12,-131],[7,-39],[35,-75],[-79,-116],[-58,-335],[332,-256],[989,-768],[267,-207],[277,-215],[472,-368],[2,-137],[-54,4],[-47,-2],[-44,-10],[-457,-160],[-40,-12],[-49,-7],[-44,2],[-54,14],[-494,196],[-38,10],[-40,3],[-51,-5],[-106,-21],[-59,-3],[-36,6],[-341,88],[-33,14],[-18,-44],[-3,-23],[1,-26],[-8,-34],[-23,-60],[-1,-8],[-21,-53],[-24,-77],[-9,-21],[-30,-96],[-8,-15],[-19,-60],[-6,-10],[-20,-63],[-18,-41],[-30,-85],[-8,-29],[-18,-26],[-17,0],[-5,-7],[3,-21],[-15,-20],[5,-18],[-52,-29],[-48,-31],[-83,-37],[0,-42],[-14,-41],[15,-47],[-257,52],[-233,46],[-1019,204],[-13,7],[-15,-1],[-190,39],[378,-738],[20,-38],[84,-166],[331,-648],[164,-323],[217,-423],[-68,-389],[-44,-287],[-87,-583],[-71,-472],[-53,-373],[-58,-398],[3,-6],[561,-335],[420,-255],[135,-69],[161,-12],[1028,-681],[386,-252],[1066,-325],[369,-3],[409,1],[681,-2],[674,15],[658,15],[632,-56],[467,37],[-44,-353],[-42,-354],[452,104],[390,-102],[940,-246],[830,-311],[358,-101],[1378,-391],[276,86],[226,179],[188,148],[257,205],[35,-26],[20,26],[-8,11],[9,8],[-12,27],[121,192],[122,191],[146,323],[32,64],[187,320],[79,226],[-2,15],[9,6],[66,185],[229,138],[263,157],[166,-140],[41,-35],[100,-134],[32,-243],[64,-126],[48,-98],[154,-312],[70,-190],[50,-139],[99,-270],[30,-85],[65,-274],[71,-286],[55,-231],[85,-369],[8,-10],[303,-247],[236,-191],[86,-196],[175,-402],[99,-207],[34,-75],[123,-259],[20,-19],[23,-37],[9,-25],[49,-155],[21,-39],[48,-55],[31,-6],[55,8],[42,1],[111,-7],[37,-8],[52,-32],[181,-84],[27,-7],[156,0],[26,-6],[22,-22],[21,-35],[68,31],[35,24],[74,25],[33,-33],[135,-84],[13,-88],[-4,-16],[0,-30],[9,-32],[-5,-44],[-4,-11],[-19,-12],[23,-30],[109,-173],[72,-118],[62,-97],[78,-236],[63,-191],[57,-172],[93,-288],[46,-138],[62,-188],[6,-139],[-4,-133],[3,-133],[25,-87],[-22,-471],[-13,-272],[4,-160],[6,-176],[-7,1],[-301,-391],[-131,-170],[-343,-446],[3,-39],[-2,-142],[-5,-36],[-13,-34],[-47,-94],[2,-33],[26,-40],[-44,-56],[-15,-28],[-44,-65],[-61,-102],[-87,-120],[-113,-152],[-22,-42],[-20,-44],[-9,-40],[-2,-26],[14,-111],[20,-34],[7,-28],[16,-35],[-22,-31],[-9,-78],[-83,-145],[28,13],[52,-102],[-15,-17],[-43,-20],[-70,-30],[-74,-29],[14,-29],[-135,-48],[-103,-31],[128,-90],[-38,-66],[-51,-188],[-276,-370],[-29,-60],[-172,-362],[-159,-339],[-10,-336],[37,-94],[124,-325],[3,-97],[-39,-57],[-40,-33],[-23,-69],[40,-248],[12,-67],[170,-142],[154,-345],[50,-106],[300,-670],[374,-353],[768,-725],[-220,-471],[-280,-129],[-308,-145],[-317,-155],[-178,-87],[-620,-134],[-290,16],[-36,-45],[-26,-19],[-52,41],[-37,18],[-27,10],[-52,13],[-39,15],[-26,15],[-30,21],[-34,33],[-33,-22],[12,-17],[-41,6],[-29,51],[-94,18],[-184,35],[-100,19],[-60,-21],[-256,-90],[-119,-6],[-83,17],[-34,3],[-72,-13],[-36,-5],[-41,-12],[-12,-39],[-13,-2],[-30,-17],[-41,-34],[-1,-9],[-68,-17],[-20,10],[-17,-26],[6,-19],[-1,-17],[19,-23],[2,-28],[-6,-19],[-25,-18],[-17,-3],[-6,-9],[0,-19],[-77,-32],[-49,-51],[-20,-26],[-28,-76],[-8,-51],[-11,-32],[-36,-72],[14,-17],[-16,-49],[-5,-27],[1,-30],[-5,-33],[8,-41],[2,-54],[-8,-32],[-26,-58],[-15,-65],[-9,-23],[-32,-51],[-49,-55],[-19,-27],[-16,-36],[-7,-27],[5,-6],[-71,-186],[10,-3],[-27,-70],[-9,-30],[-40,-54],[-44,-40],[-45,-54],[-27,-27],[-26,-73],[-47,-75],[-31,-71],[-74,-138],[7,-11],[-132,-119],[-26,-63],[-86,-77],[-13,-148],[17,-63],[-22,-36],[-81,-99],[-44,-60],[-101,-120],[-46,-106],[-97,-107],[13,-9],[-89,-109],[-81,-100],[-43,5],[-42,-45],[-135,-18],[-134,-15],[-179,-21],[-32,-13],[-25,2],[-62,-10],[-17,-9],[-19,-19],[-42,-24],[-49,-4],[-50,-9],[-25,-9],[-65,-3],[-50,1],[-23,-4],[-99,-7],[-59,0],[-440,-31],[-148,-16],[-184,-34],[-22,-8],[-91,-41],[-9,-8],[-63,-29],[2,-35],[-46,-15],[-24,-18],[-40,-88],[-2,-10],[8,-35],[-1,-36],[-18,-35],[14,-47],[-14,-69],[15,-37],[-8,-11],[-27,-20],[-179,-157],[-33,-30],[-42,-34],[-3,4],[-158,-120],[-184,-150],[-152,-121],[-362,-300],[-93,-77],[73,-3],[-59,-233],[-115,-445],[-126,-514],[-56,-224],[-66,-246],[-13,-75],[2,-20],[11,-30],[11,-42],[-5,-30],[-36,-10],[-39,-8],[-18,-18],[-23,-16],[-9,-26],[-184,-79],[-204,-218],[-363,-332],[-599,-92],[-325,-23],[-675,-34],[-270,4],[-644,5],[-376,4],[-303,2],[-605,6],[-132,1],[-109,2],[-60,-1],[-533,4],[-13,-135],[-13,-145],[-16,-141],[-2,-90],[0,-125],[-5,-49],[-9,-48],[1,-37],[-8,-42],[-23,-70],[-10,-92],[-8,1],[-13,-63],[-5,-34],[-1,-52],[-7,-134],[-3,-77],[-9,-75],[-14,-30],[-38,-64],[-53,-62],[41,-15],[-32,-51],[-7,-15],[-12,-56],[-13,-27],[-83,74],[-88,-1],[-3,-6],[-34,3],[-22,-4],[-26,-15],[-30,-37],[-20,-16],[-20,-8],[-66,-17],[-16,-6],[-20,-19],[-20,-52],[-9,-13],[-18,-9],[-36,0],[0,-8],[33,-67],[-30,-20],[23,-46],[14,-59],[7,-21],[58,-50],[175,-135],[24,-75],[16,-71],[-8,-32],[-102,-151],[-59,-74],[-126,-73],[-49,-42],[-418,-412],[-222,-27],[-198,-23],[-581,-68],[-53,-7],[-157,-36],[-408,-93],[-308,-70],[-64,-25],[35,-81],[12,-12],[41,-16],[20,-69],[-48,-219],[-8,-10],[-23,2],[-169,-349],[-4,-16],[-10,0],[-94,-195],[-107,-4],[-15,-20],[-13,-43],[-1,-29],[3,-50],[-3,-11],[9,-81],[-11,-44],[71,-14],[-6,-309],[-9,-442],[-2,-152],[639,7],[191,3],[419,5],[33,0],[192,-85],[24,-10],[212,-93],[479,-215],[264,-117],[262,-116],[241,-108],[222,-99],[131,-107],[170,-137],[241,-196],[108,-255],[121,-27],[164,-37],[200,-164],[347,-256],[114,-85],[365,-270],[56,-40],[626,-462],[208,-154],[-88,-114],[-88,-112],[186,-21],[532,-64],[199,-19],[84,-271],[99,-259],[-4,-49],[-19,-321],[-6,-62],[-8,-57],[10,-50],[12,-121],[9,-47],[102,-149],[21,-102],[3,-82],[-13,-94],[-6,-33],[-114,-257],[-76,-172],[-330,1],[-387,-35],[-67,-130],[-663,-224],[-128,-1067],[50,-103],[-66,-212],[-94,-312],[-391,-297],[145,-111],[-306,-322],[-617,-650],[-197,-10],[-122,-49],[-51,-48],[-39,-21],[-57,-22],[-48,-10],[-126,-14],[-48,-14],[-64,-37],[-29,-33],[7,-20],[-4,-30],[2,-106],[13,-29],[-32,-32],[-53,-65],[-29,-13],[-15,-41],[-17,-22],[-7,-31],[-134,-46],[-46,-18],[-8,-14],[-91,-32],[-52,-9],[-102,-15],[-49,-2],[-43,-7],[-58,-15],[-41,-17],[-34,-11],[-32,1],[-89,-173],[-134,-253],[-7,-8],[-407,-149],[-103,-40],[-104,82],[-101,86],[-162,132],[-20,19],[-124,99],[-89,74],[-59,45],[-143,116],[-71,60],[-41,33],[15,112],[13,106],[-33,26],[-52,4],[-30,-6],[-10,-12],[-69,-37],[-52,24],[-53,35],[-24,107],[-44,152],[-30,115],[9,8],[-9,36],[-16,15],[-123,-80],[-8,-3],[-112,13],[-26,15],[-7,-11],[-6,11],[-29,8],[-44,17],[-78,20],[-49,18],[-59,9],[0,13],[12,38],[1,17],[11,22],[-23,14],[-14,2],[-224,-60],[-225,-58],[-295,-150],[-49,-36],[-98,-58],[-179,-99],[-501,-225],[-139,-61],[-548,-201],[-173,-249],[-316,-11],[-116,79],[-24,-9],[-269,-89],[-128,-41],[-213,-71],[-385,-127],[-133,-33],[-176,-46],[-115,-34],[-309,-79],[-8,-1],[-169,-38],[-125,-59],[-53,-35],[-266,-140],[-11,-4],[-339,-180],[-275,-203],[-17,-22],[-11,-23],[-25,-33],[-11,-7],[-25,-7],[-11,-12],[-28,-2],[-12,7],[-7,-8],[6,-21],[-14,-22],[1,-43],[13,-25],[-18,-19],[-13,-1],[-75,24],[-45,-7],[-12,-10],[7,-20],[-4,-9],[-27,-10],[-49,-4],[-14,7],[-13,38],[-17,23],[7,52],[-14,14],[-39,4],[-18,17],[-27,9],[-32,6],[-6,54],[-9,100],[-45,-10],[-27,-14],[-22,-5],[-17,-14],[-27,-10],[-60,-8],[4,-22],[19,-40],[6,-30],[17,-24],[29,-25],[-15,-17],[-40,0],[-60,8],[-9,14],[-33,20],[-40,51],[-28,14],[-55,-2],[-32,-23],[-38,-39],[-11,-8],[-11,-20],[-7,-23],[11,-5],[-4,-17],[-26,-27],[-15,-28],[-30,-15],[-34,-50],[-15,-13],[-43,-5],[-10,-8],[-10,-32],[-31,-18],[-28,-27],[-13,-10],[-47,-11],[-47,-16],[-60,-31],[-21,-9],[-35,-29],[-27,-19],[-25,-22],[-58,-25],[-21,-2],[-35,-19],[-7,-15],[7,-18],[28,-35],[-1,-4],[-45,-26],[-62,-34],[-11,-8],[-68,-33],[-78,-34],[6,-24],[-3,-7],[-30,-4],[-284,-38],[-66,25],[-51,6],[-26,-11],[-41,-24],[-22,-18],[-19,-22],[-31,-27],[-18,-9],[-18,-45],[-25,-36],[-121,-65],[-43,-20],[-122,-53],[-67,-33],[-37,-38],[-21,-26],[-8,1],[-7,21],[-17,6],[-33,-13],[-23,23],[-16,-11],[-2,-64],[9,-35],[43,-69],[8,-32],[-2,-38],[-8,-27],[-59,-121],[-26,-28],[-40,-22],[-31,-21],[-66,-27],[-55,-25],[-140,-49],[-107,-34],[-29,-25],[-34,-14],[-78,-10],[-35,-9],[-17,-8],[-37,-26],[-55,-24],[-28,-17],[-80,-55],[-25,-11],[-30,-6],[-61,-3],[-122,-2],[-39,-7],[-25,-11],[-69,-36],[-11,-9],[-24,-9],[-34,-19],[-30,-26],[-14,-22],[1,-19],[-22,-9],[-19,-55],[-150,17],[-60,13],[-59,18],[-45,18],[-68,31],[-55,31],[-36,24],[-45,32],[-42,36],[-55,50],[-39,38],[-39,43],[-46,55],[-35,47],[-44,64],[-57,98],[-24,38],[-36,46],[-35,37],[-29,27],[-21,25],[-21,36],[-132,20],[-88,-37],[-35,-61],[-23,-30],[-46,-36],[-26,-32],[-40,-21],[-35,-9],[-34,-32],[-19,-6],[-52,3],[-61,16],[-16,-2],[-221,-136],[2,-6],[-24,-10],[8,-18],[-48,-12],[-28,-13],[-10,15],[-59,43],[-47,19],[-27,18],[-12,57],[5,26],[15,9],[0,9],[-21,39],[-3,21],[7,27],[-21,16],[-9,51],[7,20],[-8,41],[-36,39],[-25,17],[-40,11],[-20,17],[-13,0],[-10,-18],[-19,-8],[-51,7],[-7,8],[-12,28],[-10,3],[-20,-15],[-10,3],[-19,26],[-32,18],[-14,-1],[-23,-16],[-49,4],[-30,10],[-45,23],[-17,5],[-31,23],[-24,12],[-19,17],[-25,13],[-35,28],[-19,10],[-33,41],[-17,10],[-26,31],[-15,28],[-49,59],[-10,-2],[-23,-22],[-36,-29],[15,-17],[-26,-18],[-14,-20],[-15,3],[-11,15],[-29,-29],[-28,6],[8,23],[-17,8],[-21,-4],[-19,26],[-28,13],[-15,17],[-29,-3],[-26,6],[-15,-9],[-37,-9],[-25,-20],[-33,-38],[-34,-30],[-12,-7],[-37,9],[-24,17],[-16,51],[-9,14],[-22,-6],[-53,-3],[-40,51],[-7,-1],[-54,-37],[-18,-8],[-30,29],[-6,28],[-30,40],[-6,25],[-34,36],[-16,8],[-26,27],[-19,3],[-3,9],[11,13],[-6,10],[-16,7],[2,17],[-16,2],[-24,13],[-23,-7],[-23,4],[-37,-2],[29,-72],[1,-12],[-7,-35],[-8,-1],[-22,-22],[-36,-97],[-44,-157],[-8,-50],[-12,-46],[-10,-19],[-34,-84],[-20,-29],[-10,-64],[6,-19],[23,-23],[10,-32],[16,-109],[28,-2],[22,-8],[13,9],[22,-3],[11,-10],[4,-13],[16,-10],[18,14],[35,-14],[4,-47],[14,-23],[9,-7],[96,-48],[48,-23],[25,-19],[11,-13],[38,-59],[15,-19],[36,-29],[63,-33],[19,-16],[31,-42],[30,-24],[63,-36],[160,-53],[27,-6],[71,-2],[34,-9],[19,-18],[34,-42],[8,-14],[2,-54],[8,-18],[-16,-8],[-33,-40],[-35,-47],[-126,-162],[16,-19],[7,-34],[-7,-49],[-9,-17],[-30,-39],[-41,-46],[-20,-17],[-37,-86],[1,-90],[6,-16],[41,-87],[32,-42],[15,-30],[11,-36],[10,-19],[21,-21],[19,-24],[28,-50],[25,-18],[28,-45],[14,-46],[10,-23],[8,-32],[4,-34],[8,-12],[-35,-13],[-47,20],[-47,8],[-121,36],[-3,-4],[16,-41],[21,-67],[14,-54],[27,-73],[28,-62],[7,-27],[29,-73],[8,-15],[18,-49],[8,-32],[14,-30],[15,-18],[4,-41],[12,-29],[-14,-5],[-153,-34],[-60,-8],[-50,-13],[-48,55],[-36,43],[-58,31],[-47,31],[-51,30],[-39,19],[-37,-6],[-14,5],[-42,37],[-29,18],[-37,13],[-21,14],[-1,23],[-17,40],[-19,16],[-17,4],[-22,19],[-38,1],[-20,21],[-2,17],[-9,7],[-69,28],[-16,-1],[-54,18],[-39,3],[-23,10],[-40,3],[-33,7],[-41,5],[-22,12],[-10,19],[-51,8],[-29,1],[-88,8],[-39,-5],[-62,4],[-82,-9],[-25,-1],[-57,-9],[-73,-23],[-28,-11],[-66,-39],[-34,-24],[-16,-7],[-28,0],[-20,7],[-215,121],[-19,12],[-12,13],[-6,22],[6,41],[13,30],[20,66],[5,5],[15,56],[-12,49],[-15,76],[-22,85],[-19,80],[-9,28],[-27,58],[-17,27],[-23,47],[-11,28],[-24,43],[-19,27],[-28,31],[-56,55],[-46,32],[-76,40],[-100,44],[-80,42],[-64,15],[-97,33],[-77,44],[-99,20],[-85,7],[-53,-10],[-67,-8],[-49,-4],[-37,1],[-56,18],[-224,40],[-17,2],[-212,3],[-115,-2],[-41,-5],[-49,-9],[-33,1],[-39,6],[-91,11],[-43,1],[-58,-4],[-79,-33],[-60,-14],[-184,-49],[-20,-2],[-29,5],[-24,0],[-90,-22],[-32,-10],[-49,-22],[-66,-37],[-32,105],[-19,71],[-25,83],[-5,19],[-37,44],[-7,23],[-57,194],[-3,14],[21,14],[-49,166],[-56,204],[-3,24],[-6,155],[-42,18],[-43,29],[-6,7],[-21,49],[8,28],[34,56],[-3,52],[-4,-4],[-30,3],[-96,22],[-31,9],[-34,21],[-44,39],[-43,22],[1,3],[-51,26],[-25,21],[-74,41],[-20,10],[-51,35],[-38,20],[-34,13],[-37,9],[-59,12],[-50,1],[-38,10],[-61,66],[-87,59],[-35,17],[-70,17],[-26,1],[-66,15],[-93,9],[-88,1],[-50,-10],[-34,-9],[-56,-26],[-23,-13],[-29,-35],[-12,-19],[-117,-173],[-42,-60],[-61,-47],[-87,-76],[-28,-8],[-78,7],[-38,-2],[-85,10],[-43,7],[-99,20],[-114,19],[-109,24],[-79,12],[-44,12],[-45,20],[-36,0],[-83,-22],[-66,-26],[-40,-19],[-30,2],[-37,11],[-61,-5],[-34,8],[-77,26],[-27,14],[-35,10],[-24,-1],[-72,22],[-15,0],[-153,-35],[-100,-26],[-86,-24],[-96,-34],[-64,-2],[-42,-5],[-130,-21],[-41,-9],[-67,-12],[-86,-5],[-38,-12],[-179,74],[-59,27],[-108,52],[-62,32],[-120,66],[-118,69],[-115,74],[-56,38],[-111,79],[-107,83],[-104,86],[-101,90],[-49,46],[-95,94],[-92,98],[-61,69],[-4,29],[7,23],[-16,25],[-49,102],[-13,56],[194,77],[108,16],[157,20],[-39,44],[-50,60],[-4,11],[17,52],[35,60],[36,52],[-11,32],[-187,41],[-101,53],[-2,4],[-44,29],[-82,36],[7,18],[-160,131],[-66,53],[-168,136],[-117,97],[-121,98],[-42,-33],[-48,8],[-17,-27],[-43,-49],[-51,-93],[-128,184],[-35,-15],[-79,112],[-40,53],[-10,19],[-8,4],[-67,76],[-36,37],[-30,8],[-26,2],[-9,-18],[-20,2],[-44,12],[-23,1],[2,-25],[-12,-22],[-93,-30],[-201,-60],[-57,-15],[-206,-61],[-92,-28],[-78,-22],[-124,-38],[-148,-42],[-9,-1],[-139,-42],[2,-9],[-91,-29],[-32,-16],[-56,-33],[-36,-12],[-25,-21],[-26,16],[-46,24],[-115,94],[-47,37],[-50,31],[-59,33],[-21,17],[-16,-2],[-43,-80],[-107,-204],[-122,88],[-22,-8],[-16,-16],[-14,-24],[-76,-135],[-23,-38],[17,-20],[18,-40],[12,-8],[-188,-103],[-141,-76],[15,-13],[7,10],[26,-9],[24,-18],[8,-11],[33,-15],[28,-3],[57,5],[23,9],[38,3],[23,6],[30,14],[21,-4],[44,10],[21,8],[53,9],[20,6],[35,-5],[14,-7],[24,-3],[19,9],[20,-3],[105,-25],[33,-6],[20,-16],[23,-4],[50,-20],[18,-13],[32,-15],[29,-47],[11,-13],[24,-13],[46,8],[48,-1],[41,-18],[82,-33],[58,-38],[28,-30],[63,-13],[36,-30],[8,-16],[-5,-8],[8,-12],[18,-8],[26,-22],[58,-20],[6,-12],[15,-6],[45,4],[53,-11],[53,-36],[18,2],[20,-17],[16,-22],[10,-25],[10,-64],[-2,-32],[13,-26],[31,-37],[10,-17],[10,-45],[28,-68],[15,-21],[29,-29],[65,-128],[9,-36],[26,-56],[5,-40],[7,-16],[22,-12],[3,-33],[-15,-66],[15,-38],[8,-32],[2,-43],[-3,-14],[39,-82],[3,-1],[-6,-60],[0,-75],[2,-33],[18,-14],[39,-23],[36,-5],[61,-35],[36,-32],[17,-19],[16,-37],[4,-28],[20,-29],[14,-12],[44,-23],[12,-1],[22,7],[28,-2],[57,-14],[31,-1],[19,-12],[42,-7],[24,-15],[25,-7],[26,-27],[17,-11],[17,-17],[32,-16],[54,-19],[48,-30],[49,-41],[12,-12],[21,-11],[50,-19],[27,-2],[71,-32],[27,-31],[36,-8],[14,2],[30,-4],[12,-32],[0,-16],[-14,-21],[-78,-48],[-19,-19],[-20,-31],[-10,-48],[1,-54],[-2,-33],[-15,-119],[-20,-144],[0,-26],[10,-40],[21,-67],[37,-54],[17,-31],[14,-42],[2,-19],[8,-127],[10,-195],[25,-344],[-96,40],[-275,108],[-77,29],[-126,44],[-110,37],[-148,47],[-98,33],[-151,37],[-24,5],[-299,66],[-98,20],[-189,22],[-126,11],[-131,5],[-192,1],[-71,-1],[-212,-3],[-226,3],[-170,14],[-106,21],[-204,41],[-65,19],[-77,27],[-99,40],[-169,73],[-71,34],[-148,85],[-105,72],[-98,72],[-113,92],[-52,42],[-38,43],[-196,159],[-269,195],[-295,196],[-106,58],[-60,-177],[-20,-68],[-10,-64],[-59,8],[-13,-80],[-27,-185],[-106,-2],[-167,-17],[-77,-25],[-49,-26],[57,-80],[25,-40],[78,-126],[32,-50],[-3,-15],[-102,-55],[-42,-30],[-101,-49],[-58,-34],[-49,-36],[-67,-45],[-62,-33],[-102,-58],[-46,-33],[-3,5],[-33,-18],[-69,-69],[-107,-103],[-54,-38],[-35,-49],[-28,-57],[-55,21],[-25,14],[-26,21],[-15,-21],[-25,-56],[-47,51],[-122,143],[-3,7],[-58,-28],[-129,-68],[-127,-72],[-119,-82],[-21,-3],[-75,3],[-23,-8],[-26,-20],[-8,-13],[-19,-53],[-7,-33],[-12,-71],[-16,-50],[-23,-27],[-37,-23],[-85,-71],[-77,-52],[-66,-52],[-100,-35],[-60,-26],[-57,-20],[-67,-36],[4,-13],[-80,-43],[-24,-17],[-17,-6],[-108,-22],[-40,-9],[-51,-21],[-42,-23],[-47,-16],[-83,-17],[-34,5],[-39,-2],[-126,-15],[-118,-10],[-31,1],[-50,9],[-41,14],[-38,20],[-38,17],[-90,29],[-114,24],[-44,10],[-34,11],[-54,26],[-32,11],[-50,8],[-55,13],[-35,7],[-48,2],[-6,3],[-36,-7],[-20,0],[-48,23],[-98,52],[-50,33],[-141,104],[-59,45],[-734,-790],[-6,-1],[-61,-71],[-53,-52],[16,-12],[-37,-40],[200,-148],[123,-93],[255,-190],[61,-47],[-120,-105],[-44,31],[-43,-38],[-51,-42],[-107,104],[-50,-57],[-71,71],[-5,1],[-105,-96],[28,-36],[26,-17],[-22,-37],[-1,-28],[85,-70],[22,20],[32,-25],[-14,-30],[-22,-26],[-9,-20],[-25,-1],[19,-13],[52,-22],[67,-21],[32,-6],[80,-10],[147,-17],[21,-7],[35,-51],[25,-20],[5,0],[54,-20],[41,-32],[113,-65],[46,-28],[131,-105],[4,-22],[15,-23],[38,-45],[20,11],[6,-27],[25,-32],[39,-32],[24,-24],[78,-66],[21,-13],[29,-41],[36,-31],[70,-53],[51,-49],[26,-28],[50,-23],[26,-6],[45,-34],[4,-9],[42,-28],[-228,-146],[19,-22],[-9,-8],[107,-68],[-90,-146],[-113,-194],[119,-56],[-20,-11],[-33,-12],[26,-175],[2,-72],[55,15],[145,42],[35,9],[16,-1],[30,-16],[11,-11],[15,-4],[45,-100],[142,66],[5,-45],[151,-112],[61,42],[30,19],[23,-23],[10,-15],[-62,-59],[-57,-58],[-90,-87],[-87,-77],[-45,-43],[34,-47],[10,-22],[10,2],[-24,-96],[-18,-64],[17,-16],[-81,-120],[99,-46],[117,-60],[193,-184],[64,41],[-6,-34],[-36,-109],[-10,-56],[-18,-77],[-6,-11],[-423,-344],[-128,-106],[-45,-25],[-33,4],[-51,-5],[-54,-29],[-25,-18],[-42,16],[-353,-259],[-175,-128],[-42,-32],[-199,-145],[-73,35],[-236,-216],[48,-44],[17,-30],[-8,-31],[-17,-39],[-5,-36],[1,-26],[-11,-45],[3,-44],[-13,-158],[3,-29],[8,-17],[29,-36],[-5,-26],[5,-18],[24,-32],[11,-26],[31,-34],[10,-17],[13,-39],[3,-36],[7,-20],[48,26],[35,13],[72,-19],[41,-8],[82,34],[13,2],[65,-3],[60,-1],[103,3],[59,-8],[50,-10],[19,-1],[27,7],[28,20],[65,17],[87,12],[35,2],[55,-5],[191,-33],[38,-2],[52,1],[59,4],[111,17],[61,17],[25,-2],[50,-16],[63,-11],[133,-8],[55,-5],[46,-8],[77,-21],[59,-42],[41,-38],[93,-65],[28,-16],[57,-47],[31,-16],[49,-21],[38,-24],[62,-57],[164,-79],[49,-23],[80,-39],[72,-26],[116,-53],[26,-17],[61,-35],[50,-35],[61,-37],[73,-19],[100,-31],[71,-31],[138,-66],[32,-15],[146,-76],[27,-19],[34,-34],[89,-74],[11,-12],[-4,-43],[37,-126],[26,-26],[9,-3],[47,24],[20,-14],[-14,-66],[10,-62],[23,-121],[16,6],[66,15],[63,3],[0,23],[-33,79],[1,20],[7,10],[227,-147],[117,-71],[-22,-41],[-20,-28],[-9,-21],[-15,-48],[5,-2],[-21,-30],[-11,-23],[-50,-65],[-53,20],[-55,8],[-52,1],[-43,-3],[-6,-70],[-37,7],[-71,1],[-27,-11],[-24,3],[-19,14],[-27,28],[-17,1],[-41,-9],[-18,-16],[-21,0],[-46,-30],[-25,-12],[-26,-20],[-31,-7],[-28,-22],[-5,-17],[1,-41],[-15,-23],[-46,-32],[-17,-27],[-23,-58],[-6,-22],[12,-39],[20,-25],[17,-47],[3,-29],[2,-120],[-17,-59],[4,-12],[26,-33],[26,-46],[8,-41],[-8,-84],[-11,-35],[1,-18],[17,-38],[40,-55],[45,-32],[25,-13],[13,-21],[8,-63],[16,-76],[2,-39],[-7,-49],[2,-31],[15,-93],[18,-60],[3,-24],[-7,-20],[-18,-28],[-20,-56],[-21,-44],[-27,-27],[-58,-19],[-22,-1],[3,-24],[26,-44],[23,-47],[13,-15],[9,-23],[20,-12],[0,-15],[14,-17],[30,-50],[27,-55],[29,-47],[-17,-32],[21,-25],[-1,-7],[-85,-54],[-9,-16],[9,-11],[-13,-219],[-10,-12],[6,-18],[3,-29],[-16,-33],[-5,-28],[75,-106],[3,2],[26,-37],[63,-2],[59,-63],[10,-8],[1,-20],[-20,-14],[-120,5],[-13,-11],[39,-38],[127,-5],[82,-89],[484,-179],[342,-127],[646,-239],[182,-68],[91,-32],[118,45],[44,27],[24,-39],[17,-14],[52,-20],[40,-27],[20,-3],[23,6],[17,-2],[-33,-109],[27,-26],[28,-7],[35,1],[87,14],[23,1],[5,17],[22,12],[29,24],[21,29],[11,6],[22,-2],[58,-27],[32,-50],[4,-22],[9,-23],[1,-32],[-8,-37],[28,-30],[83,0],[266,-11],[225,-114],[60,91],[53,89],[28,-10],[15,2],[73,-42],[75,-45],[16,-7],[76,-9],[30,-6],[415,-178],[59,-40],[-81,-124],[-32,-75],[5,-35],[31,-97],[17,-26],[19,-21],[-47,-36],[2,-5],[-107,-69],[-108,-80],[-52,-36],[-71,-54],[111,-155],[-178,-202],[-47,-159],[-100,-344],[-3,-7],[-108,-366],[-133,-414],[-136,-231],[-161,92],[22,-333],[-6,-94],[5,-76],[-11,-55],[-8,-55],[-16,-55],[-1,-22],[-70,-295],[-22,-115],[-17,-72],[19,-18],[275,-189],[47,-34],[208,-142],[49,-38],[173,-119],[336,-232],[147,-102],[18,-4],[77,-6],[12,-3],[26,-15],[82,-52],[221,-422],[120,-225],[101,-195],[110,-110],[67,-65],[47,-52],[101,-100],[174,-173],[138,-119],[165,-139],[313,-186],[177,-104],[69,-146],[143,-297],[758,-1582],[292,-186],[282,-181],[204,-166],[82,-64],[105,-79],[158,-132],[230,-362],[150,-237],[210,-412],[52,-260],[14,-143],[21,-241],[19,-113],[-24,-261],[6,-6],[-30,-263],[-20,-150],[1,-127],[-3,-32],[77,-138],[76,-144],[48,-70],[80,-151],[25,46],[115,-377],[17,-56],[5,-26],[9,-20],[75,-245],[-5,-154],[-30,-243],[41,-54],[-18,-41],[-37,-116],[-12,-28],[-10,-366],[-68,-288],[-22,-101],[-12,-26],[5,-84],[-2,0],[17,-370],[8,-175],[-309,7],[-15,-35],[3,-59],[23,-512],[11,-256],[3,-68],[-62,-335],[-108,-579],[-62,-330],[-232,-1239],[298,102],[747,-48],[-31,-53],[36,-11],[-92,-122],[-28,-43],[-30,-39],[-73,-79],[-25,-37],[-90,-109],[-51,-57],[-57,-76],[-157,-142],[95,-58],[-79,-95],[13,-28],[238,-828],[65,-226],[72,-251],[180,-631],[-1285,-1087],[-405,-344],[-91,-78],[46,-74],[23,-31],[45,-75],[49,-86],[37,-44],[12,-21],[-37,-10],[-54,-5],[-71,20],[-127,9],[-142,-29],[-112,-38],[-141,-20],[-64,-21],[4,-8],[-36,-17],[-8,13],[-193,-25],[-135,10],[-134,-16],[-3,1],[-17,-79],[2,-32],[12,-37],[19,-33],[12,-28],[12,-53],[-112,-134],[-54,-46],[-87,-96],[-102,-183],[-24,-102],[-98,-138],[-9,-293],[-189,-233],[-33,-59],[-30,-35],[-3,-109],[-18,-156],[-153,-243],[-173,-275],[-97,-156],[-358,-408],[-429,-490],[-208,-589],[-12,-204],[-230,-237],[-616,-637],[-498,-514],[-554,-570],[-632,-367],[138,-296],[40,-80],[146,-305],[207,-434],[121,-322],[-119,-45],[-56,16],[-72,13],[-86,3],[-290,-4],[-125,-25],[-132,-111],[23,-520],[51,-10],[75,-950],[12,-164],[91,-1084],[262,-405],[179,-402],[265,-50],[10,-1],[13,-15],[15,7],[2,-8],[22,0],[-1,9],[18,11],[-7,-22],[2,-10],[25,1],[1,-11],[16,-3],[27,16],[2,-9],[18,6],[-8,19],[30,-2],[2,-16],[20,-1],[12,14],[-2,-20],[11,-5],[22,4],[-6,13],[16,6],[20,-19],[24,-2],[9,6],[3,17],[13,3],[14,-11],[20,14],[8,20],[17,-9],[2,12],[18,0],[-1,-8],[26,-7],[3,-7],[-21,-7],[21,-7],[13,8],[23,-15],[14,5],[12,-5],[7,-20],[6,6],[11,-10],[32,-6],[35,-21],[28,8],[2,8],[16,5],[-2,33],[-6,10],[10,17],[10,-7],[17,11],[-1,9],[13,9],[-2,10],[29,6],[4,10],[25,-1],[19,16],[10,-7],[26,9],[5,8],[17,5],[15,-8],[34,4],[26,16],[8,-9],[12,14],[21,2],[10,13],[17,-1],[14,6],[5,25],[20,1],[0,15],[39,6],[3,-6],[13,10],[6,12],[25,5],[15,-15],[18,27],[26,4],[24,17],[-17,3],[10,12],[-3,7],[23,12],[-11,15],[13,7],[18,-3],[29,13],[10,10],[-3,13],[18,6],[13,13],[8,19],[8,3],[25,27],[1,9],[14,11],[47,108],[21,18],[22,12],[14,15],[30,20],[2,23],[38,15],[10,10],[48,33],[115,78],[23,12],[11,11],[73,28],[61,19],[116,54],[103,75],[290,121],[235,114],[464,204],[181,75],[365,146],[199,112],[759,-583],[-319,-138],[-316,-154],[-576,-264],[-238,-110],[-597,-274],[156,-89],[352,-216],[316,-196],[533,-321],[430,-253],[-84,-88],[-175,-146],[-138,-71],[-138,-98],[-78,-16],[19,-173],[10,-111],[-5,-3],[-42,6],[-40,21],[-34,10],[1,8],[-18,10],[2,-14],[-35,0],[2,-11],[-14,-5],[-21,8],[-19,-5],[-3,-17],[-35,14],[-20,-12],[-8,8],[-7,-8],[5,-14],[-16,-11],[-6,14],[-23,-10],[-12,-19],[-8,1],[-3,15],[-18,-12],[-18,6],[-9,-15],[11,-9],[-24,-4],[-1,-12],[-13,24],[-10,-14],[-11,-2],[-3,17],[-15,-8],[-5,10],[-18,-11],[-2,13],[-24,-14],[-11,0],[3,-12],[-31,0],[-12,14],[-10,-8],[-28,7],[-19,11],[5,16],[-19,0],[-17,-19],[-24,22],[-15,-1],[-10,12],[-10,-6],[-5,-17],[-9,3],[-4,14],[-21,-12],[-13,11],[-9,-13],[-38,-2],[-14,-9],[-9,6],[3,-16],[-24,-10],[11,-3],[-12,-18],[-25,16],[-11,-2],[20,-22],[-25,-26],[-6,-14],[-11,10],[-11,-11],[-20,9],[-2,-10],[-25,2],[-9,-9],[-20,-6],[-16,-10],[-19,-3],[-16,-12],[-37,0],[-28,-5],[3,-5],[-52,-13],[4,11],[-31,1],[-26,-7],[-8,5],[-29,-12],[-5,-11],[-11,0],[-24,-21],[-10,4],[-3,-15],[-13,-2],[5,16],[-20,-7],[1,-9],[-46,-5],[-21,-25],[-6,16],[-30,4],[1,-12],[-12,-11],[-12,10],[-11,-4],[-16,10],[-16,-20],[-8,-1],[-3,14],[-19,-5],[-1,8],[-16,3],[-10,-17],[-20,12],[-16,3],[-1,-7],[-28,-9],[-2,-20],[-7,13],[-28,5],[-18,-11],[-29,6],[-11,-10],[-24,20],[-18,-2],[4,-9],[-19,-15],[-4,8],[-16,-1],[-1,16],[-12,-2],[-19,9],[-7,-17],[14,2],[5,-13],[-18,-4],[-9,-18],[-23,-8],[-14,9],[7,10],[-16,9],[-12,0],[-5,-15],[14,-1],[1,-11],[-11,4],[-7,-22],[2,-23],[-13,-13],[-10,-1],[-5,21],[-11,-3],[-6,-18],[6,-14],[-17,-4],[-7,-9],[-9,7],[-14,-18],[-12,-4],[11,-9],[-25,-20],[-14,11],[-12,-3],[-3,-31],[-17,-3],[4,-19],[13,-22],[10,-35],[-11,-18],[-35,-20],[-23,-8],[-7,7],[-13,-13],[-15,-2],[-51,-36],[-23,21],[-24,-17],[10,-6],[-13,-21],[-8,9],[-29,-17],[2,-16],[-10,-9],[-23,5],[-33,-16],[-14,-3],[-49,5],[-12,-4],[-13,-25],[-36,-11],[-32,1],[-16,-12],[-21,-6],[-29,-13],[1,-5],[-50,-23],[-46,-8],[-39,-1],[-12,-7],[-17,6],[-8,-9],[-23,10],[-13,-9],[-19,3],[-1,-12],[-10,7],[-5,-13],[-16,-16],[-34,8],[3,-12],[-28,-5],[-19,-12],[-4,-21],[-21,-7],[7,11],[-9,10],[-23,-12],[-4,5],[-19,-6],[-4,20],[-19,-3],[0,-11],[-25,-1],[0,-6],[-22,-2],[-4,-8],[-14,11],[-10,-7],[6,-13],[-15,5],[-16,-18],[4,-18],[-18,6],[-15,-20],[-51,-15],[-28,-14],[-62,-26],[-178,-1],[-18,7],[-11,15],[-15,-10],[-4,-27],[-16,-52],[-8,-41],[-12,-30],[-38,-52],[-7,-45],[-23,-40],[-11,-2],[-6,-54],[-31,-27],[-55,-22],[-16,-14],[19,-26],[46,-9],[14,-14],[7,-34],[-5,-18],[-19,-18],[-31,-15],[-60,7],[-102,-110],[99,-26],[26,-77],[-170,-51],[-14,11],[-32,68],[-81,72],[-13,-38],[-23,-41],[-8,-30],[7,-43],[13,-37],[-1,-65],[8,-23],[-237,-87],[-5,-19],[29,-66],[2,-14],[-13,-24],[-21,-13],[-64,-5],[-35,-12],[-19,-17],[-8,-2],[-3,-19],[-16,4],[-15,-10],[-20,0],[-24,-19],[-33,15],[-165,-9],[-239,-85],[-102,-67],[-122,-153],[-125,-222],[21,-22],[34,-13],[23,-51],[-48,-47],[-68,-76],[-86,-101],[-8,-12],[-397,-373],[-49,14],[-43,-16],[-27,-14],[-38,-50],[-94,-133],[-13,-13],[-36,-46],[-26,-27],[-50,-42],[-1,2],[-78,-53],[-66,-25],[-94,-31],[-92,-35],[-32,-4],[-70,-4],[-93,-21],[-44,-20],[-53,-42],[-70,-8],[-89,-31],[-97,77],[-54,49],[-91,-161],[-50,-31],[-33,-36],[-65,-34],[-33,0],[-52,17],[-35,-9],[-34,-16],[-34,-58],[-25,-31],[-24,-24],[-34,-26],[-39,-36],[-49,-57],[-73,-61],[-92,-56],[-102,-58],[-29,-29],[-71,-41],[-49,-51],[-30,-27],[-72,-80],[-97,-125],[-25,-34],[-18,-36],[-48,-106],[-14,-28],[-77,-143],[-26,-66],[-2,0],[-167,-74],[-35,-2],[-35,-13],[-25,-4],[-36,-14],[-17,5],[-27,-10],[-23,-38],[-19,-5],[-17,-19],[1,-15],[-14,-18],[-10,-26],[-7,-3],[105,-135],[-150,-128],[4,-59],[-13,-33],[-41,-58],[-54,-64],[-29,-15],[-45,-75],[-11,-25],[-35,-6],[-44,-12],[-63,-74],[-7,2],[-37,-20],[-11,-13],[-23,-37],[-14,-17],[0,-14],[30,-20],[9,-37],[5,-36],[0,-66],[-5,-21],[-20,-57],[-12,-23],[-30,-23],[-68,-75],[42,-35],[30,-10],[26,-24],[9,-30],[-4,-23],[-20,-30],[-8,-46],[-13,-39],[-18,-33],[-28,-32],[-11,-22],[-1,-16],[14,-59],[-1,-16],[9,-16],[31,-32],[-13,-38],[-23,-25],[-5,-25],[17,-54],[19,-30],[-31,-35],[-13,6],[-13,-35],[-9,-81],[-46,-45],[-18,-6],[-36,0],[-40,-34],[-23,16],[-32,-9],[-59,-61],[-8,-28],[-38,-35],[-58,3],[-71,-38],[-59,-36],[20,-74],[34,-74],[26,-50],[-25,-70],[-27,-46],[-14,-38],[-19,-81],[2,-19],[-7,-1],[-64,26],[-5,-11],[-25,8],[-31,63],[-28,27],[-24,18],[-88,9],[-45,14],[-72,9],[-75,-13],[-89,-12],[4,29],[-96,-25],[-34,-1],[-37,-6],[-5,-35],[-69,-35],[-36,-5],[0,8],[-133,-39],[-11,85],[-72,145],[-2,-1],[-86,213],[-152,207],[-167,205],[-43,41],[-43,53],[-91,303],[-139,433],[-93,291],[-47,109],[-270,212],[-300,-304],[-69,-60],[-144,-103],[-148,-115],[-120,-90],[-40,-32],[-199,-283],[-14,-7],[-71,-17],[-74,-28],[-90,-24],[-64,-6],[-147,-8],[-40,7],[-42,-4],[-90,-16],[-171,-18],[-32,-6],[-70,8],[-100,0],[-64,0],[-83,7],[-95,-8],[9,-24],[-30,-10],[19,-160],[19,-160],[10,-28],[9,-16],[229,-318],[115,-177],[25,-22],[84,-38],[33,-20],[12,-11],[17,-27],[4,-39],[-59,-391],[-7,-17],[-62,-92],[-41,-57],[-3,-9],[38,-173],[20,-46],[41,-104],[3,-26],[-1,-38],[6,-14],[96,-199],[9,-25],[3,-24],[-4,-39],[-13,-40],[-4,-48],[17,-46],[45,-58],[104,-127],[112,-137],[58,32],[141,-25],[213,-85],[148,-92],[-7,-243],[-6,-226],[162,-58],[328,-113],[-22,-165],[-35,-271],[-22,-469],[-8,-177],[-166,-176],[-25,-16],[-79,-88],[-32,-32],[-48,-64],[-43,-46],[-92,-19],[-45,-36],[0,-12],[-13,-8],[58,-55],[22,-48],[69,-115],[25,-14],[31,-45],[14,-117],[164,-9],[96,-12],[111,-2],[44,12],[87,33],[94,42],[118,48],[146,82],[43,20],[77,19],[67,-25],[217,130],[227,198],[304,222],[89,15],[704,119],[247,87],[107,-246],[171,-134],[-5,-7],[30,-19],[176,-134],[11,-12],[30,-50],[15,-16],[37,-24],[32,-10],[35,0],[22,6],[237,71],[33,15],[69,43],[40,27],[150,93],[13,5],[74,17],[11,0],[32,-11],[97,-69],[252,13],[707,39],[658,41],[-7,20],[72,10],[77,-9],[45,-7],[84,-24],[135,-4],[40,4],[0,-14],[11,-64],[3,-37],[5,-2],[-5,-24],[-203,-527],[-32,-104],[-40,-114],[-83,-149],[-33,-72],[-72,-193],[-66,-131],[-36,-79],[-56,-79],[-41,-46],[-11,-18],[-54,-11],[-59,-15],[-40,-18],[-38,-22],[-66,-48],[-54,-55],[-70,-92],[104,-61],[100,-52],[7,0],[98,-54],[13,-12],[68,-30],[161,-87],[18,-3],[-87,-344],[68,-422],[31,-193],[3,-22],[51,-315],[208,-59],[568,-158],[218,-61],[59,-1],[182,-83],[44,-26],[23,-20],[34,-71],[66,19],[12,6],[69,45],[27,24],[21,11],[63,27],[218,-171],[40,-28],[-28,-83],[-53,-193],[-23,-78],[236,-46],[142,-26],[9,16],[27,27],[21,16],[32,-22],[43,-23],[114,-50],[67,-8],[175,180],[155,-27],[30,-1],[92,-13],[228,-74],[83,-44],[76,-60],[70,-53],[28,-15],[100,-46],[35,75],[174,120],[21,-38],[1,-19],[-4,-19],[-27,-69],[-25,-51],[-34,-59],[-27,-34],[-23,-19],[-85,-45],[-31,-30],[-95,-122],[-7,-11],[-6,-26],[4,-37],[-3,-29],[-19,-40],[-26,-27],[-139,-104],[-39,-34],[-28,-36],[-22,-43],[-29,-78],[-22,-80],[-18,-85],[2,-37],[8,-17],[12,-65],[-13,-26],[4,-24],[-4,-19],[-34,-75],[-25,-42],[-46,-104],[-18,-55],[-2,-81],[-7,-82],[-25,-34],[0,-21],[-10,-49],[-3,-37],[5,-22],[-18,1],[3,-22],[-23,-20],[8,-22],[-36,-55],[1,-13],[24,-20],[21,-25],[9,-44],[-9,-9],[-36,-21],[-1,-42],[19,-36],[19,-18],[7,-17],[3,-37],[7,-22],[20,-26],[9,-38],[12,-18],[11,-7],[9,7],[-2,20],[9,10],[16,-4],[20,-18],[10,-19],[1,-40],[19,-8],[3,-11],[-11,-21],[13,-18],[-1,-12],[-25,-31],[-15,-6],[-13,-16],[3,-22],[22,-5],[6,-27],[38,-57],[4,-23],[-14,-30],[-1,-29],[13,-26],[18,9],[10,27],[22,1],[17,-29],[16,-10],[20,11],[17,15],[15,1],[18,-14],[7,-14],[-5,-11],[-20,-8],[-9,-17],[15,-5],[26,-22],[26,-17],[46,-19],[14,-13],[7,-29],[64,-22],[22,-43],[21,-59],[-9,-26],[-24,-40],[-10,-9],[-61,-77],[47,-60],[33,-71],[28,-82],[39,-72],[-1,-9],[-89,-53],[-5,-6],[22,-35],[7,-60],[-5,-41],[-20,-58],[-54,-108],[-84,-178],[-71,-14],[-45,-7],[-1,-127],[2,-16],[-158,-101],[-15,-14],[-12,-26],[-59,-374],[-10,-80],[-18,-124],[-60,-425],[-10,-13],[-79,51],[-66,31],[-58,29],[-114,49],[-29,16],[-92,38],[-40,22],[-30,13],[-12,15],[-17,6],[-13,-5],[-27,7],[-13,9],[-52,7],[-48,28],[-15,-4],[-19,10],[-22,4],[-100,-1],[5,13],[-14,9],[6,13],[16,3],[-9,21],[22,11],[-16,69],[9,84],[-4,19],[-21,-2],[4,42],[24,40],[-17,88],[-12,28],[-14,6],[-59,2],[-28,-11],[-16,-12],[-9,3],[-19,-21],[-21,-28],[-36,-25],[-8,-26],[-57,-15],[-15,5],[-6,-15],[-19,-14],[-5,-19],[8,-12],[-11,-26],[-32,-16],[-37,-6],[-25,-20],[-9,4],[-26,-19],[-38,-23],[-7,-19],[-12,-3],[-3,10],[-18,-13],[-23,-3],[-15,-26],[-10,2],[-8,16],[-15,4],[-10,-14],[-12,3],[0,-15],[-8,-6],[-2,-21],[-15,2],[-16,-6],[-51,-50],[-21,8],[-6,-9],[-22,-6],[-11,9],[-11,-13],[-30,-2],[-15,12],[-8,-10],[-20,-10],[-28,4],[-46,3],[-74,-41],[-15,6],[-33,2],[-19,-6],[-12,8],[-26,-9],[-40,-24],[-3,6],[-22,-13],[-47,-44],[5,-6],[-82,-54],[-53,-37],[-47,-29],[-56,-20],[-40,-12],[-19,35],[-119,-60],[-40,-29],[-20,-8],[-47,0],[-61,-7],[-40,-2],[-10,-34],[-79,-295],[-58,-210],[89,-74],[34,-32],[-104,-249],[119,-303],[13,-8],[305,-127],[-37,-29],[-87,-59],[59,-108],[16,-92],[11,-111],[10,-51],[21,-10],[60,-89],[-3,-20],[-32,-55],[-94,-57],[2,-10],[-31,-28],[-44,-60],[-7,-17],[64,-30],[53,-34],[-35,-62],[-11,-30],[73,-37],[-30,-32],[-47,-32],[-6,-7],[-51,-33],[-32,-26],[-29,-20],[-96,-72],[-52,-35],[-73,-58],[-54,-55],[-44,-51],[-31,-46],[-36,-72],[-20,-19],[-37,-48],[-68,-97],[-28,-30],[-103,-78],[-12,-12],[-71,-30],[-69,-33],[-52,-29],[-7,-1],[-152,136],[-74,56],[-4,7],[-82,51],[-105,69],[-58,44],[-37,31],[-14,15],[-36,31],[-32,36],[-94,64],[-129,70],[-63,49],[-31,-11],[-26,-15],[-73,-64],[-73,-53],[4,-6],[-15,-25],[-37,-51],[-10,-25],[-1,-28],[2,-68],[-39,-45],[-18,-16],[-16,-20],[-39,28],[-27,-56],[-23,-55],[-28,-37],[-27,-48],[-5,-31],[0,-55],[-8,-51],[0,-16],[-13,-77],[-3,-48],[-10,-29],[27,-21],[21,-10],[4,-10],[21,-13],[25,-23],[4,-15],[11,-10],[23,14],[15,-9],[8,-17],[46,-15],[-5,-21],[12,0],[13,-30],[12,1],[12,-23],[-5,-10],[19,-5],[16,5],[32,-11],[19,12],[7,-7],[9,10],[12,-5],[13,5],[17,-3],[12,-18],[20,-6],[32,-2],[2,11],[14,-12],[23,2],[13,-40],[8,9],[15,-24],[2,-17],[27,0],[4,6],[16,-10],[15,6],[11,14],[13,-5],[18,9],[17,-5],[61,-51],[30,-20],[20,-20],[82,-66],[50,-41],[15,-15],[70,-56],[13,-2],[32,-18],[1,-20],[-8,-77],[-1,-81],[5,-11],[19,-15],[40,-17],[2,-18],[19,-11],[48,28],[26,-19],[0,-13],[15,-7],[4,-20],[18,-22],[1,-19],[11,2],[12,-9],[-3,-10],[23,-5],[11,-9],[18,-29],[26,-6],[16,-35],[13,2],[21,-16],[11,6],[23,-6],[13,-10],[9,5],[14,-9],[1,-9],[13,5],[8,-16],[13,-7],[12,6],[14,-10],[4,-19],[10,-6],[19,-24],[7,-26],[13,-2],[-1,-30],[18,1],[21,-23],[18,-3],[18,-15],[45,-15],[5,-10],[20,-2],[9,-23],[18,-16],[10,6],[10,-4],[-2,-13],[15,-7],[28,8],[9,-10],[26,4],[44,-17],[16,-9],[5,-22],[8,-5],[44,7],[10,-21],[22,-20],[14,-4],[15,-12],[9,3],[34,-17],[27,7],[13,-9],[8,-13],[3,-27],[16,-12],[32,-11],[14,0],[4,-16],[39,-13],[22,-14],[-2,-10],[17,-7],[-14,-25],[11,-1],[26,-14],[23,4],[1,-10],[28,-3],[6,-11],[28,8],[42,-13],[22,6],[16,-21],[18,-9],[51,-10],[10,4],[11,-22],[18,-7],[5,-21],[13,-6],[-1,-15],[8,-24],[24,-5],[1,-15],[9,-11],[-2,-25],[-27,-21],[-25,-22],[-20,-27],[-57,-101],[-9,-8],[-27,-42],[-47,-79],[-10,-23],[0,-15],[-16,-25],[-9,4],[-51,-138],[-14,-24],[-26,-32],[-25,-36],[-57,-56],[-6,-9],[-35,-76],[1,-12],[15,-67],[3,-38],[10,-58],[29,-161],[18,-82],[15,-44],[39,-193],[17,-57],[20,-23],[57,-31],[77,-45],[96,-62],[40,-28],[84,-50],[-25,-35],[-46,-122],[29,-16],[39,83],[41,64],[175,-110],[55,-31],[85,-45],[113,-74],[91,-56],[-21,-88],[-24,-85],[-4,-49],[27,-44],[24,-55],[15,-41],[-39,-153],[-3,-41],[-17,-26],[-82,-68],[-37,-36],[-53,-72],[-57,-72],[-33,-36],[26,-42],[11,-32],[-3,-40],[-12,-17],[-29,-24],[-40,-21],[-4,-18],[6,-29],[17,-31],[35,-35],[-6,-27],[4,-30],[-3,-52],[-36,-44],[-13,-26],[4,-57],[4,-4],[24,19],[30,-32],[-9,-17],[-6,-30],[63,-36],[22,-9],[26,1],[64,8],[-28,-55],[-13,-60],[-8,-72],[-2,-35],[0,-77],[2,-49],[52,-56],[27,-24],[17,-20],[23,-17],[17,-4],[35,-1],[54,15],[9,70],[9,38],[5,66],[9,48],[18,40],[18,98],[33,141],[28,131],[21,90],[47,-18],[36,-28],[13,0],[18,-12],[15,-22],[150,-109],[75,-20],[164,-55],[136,-39],[77,-26],[107,-30],[84,-29],[80,-23],[122,-41],[59,-22],[62,-17],[157,-55],[168,8],[98,8],[168,20],[96,3],[90,-4],[104,3],[109,58],[71,43],[149,-185],[43,58],[69,98],[44,48],[111,13],[129,-3],[188,-11],[144,-11],[47,-7],[2,45],[106,-55],[88,-34],[60,-50],[17,-28],[21,-25],[75,-48],[24,-38],[9,12],[20,-18],[16,-29],[-7,0],[93,-119],[-27,-5],[47,-150],[4,-4],[-15,-30],[12,-42],[29,-50],[36,-65],[9,-1],[14,-15],[57,-102],[5,-53],[2,-60],[-82,-159],[0,-9],[17,-31],[92,-115],[201,-251],[55,-74],[60,-76],[44,-40],[16,-28],[-6,-68],[13,-107],[44,-49],[47,-50],[80,-40],[126,-58],[6,-9],[-10,-59],[-9,-28],[15,-7],[-4,-8],[81,-118],[10,8],[20,-7],[11,-10],[7,4],[23,-25],[15,-25],[-3,-12],[20,-26],[23,-25],[-14,-23],[-56,-110],[44,-126],[66,-172],[-18,-88],[49,-10],[16,0],[15,-8],[53,-87],[42,-14],[25,-37],[9,-88],[23,-34],[103,-57],[240,-131],[43,-25],[-10,-10],[-12,-32],[12,3],[14,-17],[7,-22],[-12,-6],[16,-16],[2,-17],[18,2],[4,-13],[14,-12],[-1,-9],[16,3],[-7,-15],[30,-9],[9,5],[9,-9],[1,-22],[15,12],[13,-13],[22,3],[29,-14],[-13,-8],[15,-7],[7,7],[8,-8],[15,0],[8,11],[27,-9],[5,-15],[16,-20],[24,-3],[0,-35],[-7,-13],[6,-10],[-22,-9],[1,-24],[-12,2],[-1,-11],[-22,-10],[-12,3],[24,-49],[19,-53],[51,-167],[71,-207],[45,-71],[34,8],[51,7],[187,24],[37,3],[124,-8],[26,3],[340,53],[38,9],[39,14],[74,35],[33,13],[35,9],[35,5],[30,8],[4,-13],[12,0],[-3,11],[68,-10],[102,-9],[32,-8],[31,-14],[47,-32],[20,-22],[29,-47],[10,-25],[27,-89],[34,-118],[7,-47],[-3,-2],[-4,-43],[-12,-41],[-4,1],[-20,-35],[-32,-35],[-228,-197],[-13,-13],[-50,-43],[-105,-112],[-22,-25],[-2,-21],[-7,-6],[-13,-29],[15,-11],[-33,-34],[-6,-23],[-25,-61],[-7,-11],[22,0],[-1,-31],[-33,-1],[-17,-36],[-9,8],[-16,-37],[-10,-40],[1,-50],[22,-89],[1,-10],[29,-132],[10,-34],[11,-26],[27,-45],[35,-38],[46,-34],[42,-20],[71,-20],[43,-2],[42,2],[24,5],[45,14],[88,44],[29,10],[54,11],[39,1],[65,-9],[33,-10],[66,-34],[41,-25],[60,-20],[27,-4],[49,1],[135,14],[31,8],[3,-3],[43,3],[136,16],[-6,7],[20,18],[13,-23],[73,6],[8,-2],[117,-1],[33,5],[61,6],[54,7],[0,3],[105,13],[56,18],[46,26],[21,17],[30,34],[45,61],[13,23],[17,48],[5,46],[-2,29],[-8,64],[1,57],[5,25],[22,52],[29,40],[43,39],[25,15],[52,22],[56,10],[59,-1],[55,-14],[50,-26],[25,-17],[21,-20],[34,-46],[12,-24],[37,-96],[12,-24],[31,-41],[41,-33],[80,-44],[45,-33],[21,-21],[46,-61],[39,-41],[40,-30],[44,-24],[55,-19],[50,-9],[29,-2],[50,2],[53,10],[228,55],[103,25],[53,20],[126,62],[27,9],[56,13],[60,1],[53,-9],[35,-15],[30,-16],[31,-24],[26,-28],[19,-35],[8,-23],[96,-249],[38,-88],[8,-3],[38,-65],[12,-16],[-6,-2],[55,-122],[13,-9],[5,-13],[12,0],[2,-11],[-14,-6],[10,-18],[7,1],[7,-77],[14,-23],[23,-13],[-8,-5],[23,-40],[11,-38],[4,-26],[-9,-49],[-8,-27],[-12,-27],[-33,-45],[-89,-77],[-34,-33],[-30,-49],[-12,-33],[6,-47],[2,-73],[-3,-54],[1,-59],[3,-41],[-1,-33],[-13,-79],[-12,-54],[-10,-27],[-11,-19],[-25,-54],[-146,-220],[-58,-82],[-72,-106],[-26,-25],[-19,-27],[-40,-67],[-42,-48],[-22,-21],[-137,-111],[-83,-59],[-63,-40],[-82,-30],[-57,-27],[-2,-13],[-47,-23],[-46,-31],[-19,-21],[-26,-45],[-7,-25],[-3,-26],[-16,-15],[8,-52],[23,-55],[11,-38],[55,-162],[-15,5],[0,-11],[17,-3],[8,-28],[-22,-3],[-2,-25],[-13,-50],[-33,-66],[3,-2],[-18,-32],[-8,-28],[-47,-82],[-38,-61],[-29,-33],[-56,-71],[-30,-47],[-42,-84],[-8,-5],[17,-8],[-28,-67],[-11,5],[-40,-92],[-24,-51],[-24,-56],[-26,-93],[-16,-112],[-10,-90],[-6,-111],[8,-63],[6,-67],[5,-74],[-9,-70],[-25,-83],[-26,-77],[-29,-50],[-41,-62],[-8,-19],[-11,-40],[-7,-55],[-7,-96],[23,-125],[-18,-76],[2,-48],[-7,-29],[-18,-41],[-45,-58],[-29,-26],[-31,-21],[22,-32],[-7,-7],[-28,-9],[-35,-6],[-8,14],[-22,-3],[-83,-49],[-59,-43],[-11,0],[-41,-32],[-34,-37],[-13,-22],[-17,-47],[-3,-22],[-1,-154],[2,-74],[-6,-37],[-13,-29],[-33,-46],[-2,-16],[-40,-34],[-24,-13],[-38,-12],[-59,-6],[-65,9],[-48,23],[-66,52],[-5,9],[-16,0],[-20,16],[-34,17],[-45,9],[-25,-2],[-42,-14],[-42,-18],[-14,0],[-7,-19],[-22,-12],[-25,-8],[-10,-16],[-76,-64],[-23,-25],[4,-40],[-26,-14],[0,-75],[-15,-62],[-32,-79],[-45,-52],[-9,-40],[-4,-53],[-1,-46],[-7,-63],[-39,-61],[-52,-50],[-70,-27],[-73,-23],[-50,-48],[-27,-42],[-43,-106],[-63,-72],[9,-33],[-35,-65],[-7,3],[-13,-58],[11,-77],[2,-100],[-2,-72],[-21,-44],[-21,-58],[-24,-59],[-11,-45],[-5,-50],[4,-51],[10,-47],[23,-57],[29,-59],[53,-82],[81,-47],[63,-21],[62,-25],[64,-59],[55,-65],[21,-30],[30,-62],[13,-63],[-7,-69],[-20,-75],[23,-14],[5,-27],[4,-63],[18,-45],[20,-39],[15,-34],[34,-30],[17,-6],[39,-26],[70,-19],[21,-17],[26,-29],[-165,-66],[51,-114],[52,9],[5,-9],[68,4],[22,-35],[11,-58],[47,-93],[38,-69],[5,-49],[8,-20],[39,-43],[6,-12],[11,-54],[15,-27],[46,-43],[79,-43],[17,-16],[7,-16],[2,-35],[7,-34],[18,-46],[46,-85],[45,-47],[10,-18],[4,-28],[-13,-80],[-14,-25],[-23,-14],[-13,13],[-56,-65],[62,-67],[12,6],[138,-205],[11,-8],[34,3],[41,-27],[16,-19],[19,63],[26,-19],[25,34],[-4,5],[44,53],[54,73],[-6,13],[19,11],[7,-8],[30,-3],[41,21],[-3,7],[29,8],[35,4],[13,-14],[31,23],[29,29],[50,3],[61,-5],[40,3],[85,46],[40,7],[38,-1],[21,-9],[19,30],[67,53],[63,43],[65,49],[68,38],[59,35],[59,44],[87,29],[21,-9],[36,-23],[26,-23],[42,-64],[13,-43],[-1,-35],[-4,-34],[5,-18],[12,-9],[-2,-34],[15,-16],[32,-10],[78,7],[72,5],[56,-7],[47,-24],[40,-11],[33,7],[37,36],[58,90],[36,40],[36,35],[17,34],[29,37],[57,36],[38,36],[56,75],[19,-10],[240,-148],[150,48],[86,9],[100,-1],[14,-62],[74,-151],[39,-66],[43,-36],[307,-43],[176,-27],[63,2],[20,-5],[27,-26],[16,2],[84,67],[100,37],[17,15],[22,38],[9,0],[3,-28],[13,-5],[303,163],[190,-145],[52,-22],[8,-29],[-8,-31],[18,-46],[109,-94],[22,-18],[79,-41],[122,-64],[76,-57],[70,-11],[100,-1],[58,-11],[49,-21],[62,-22],[61,-10],[22,-8],[50,-31],[19,-16],[6,-22],[1,-32],[22,-47],[44,-58],[17,-48],[26,-5],[34,8],[40,-11],[33,6],[45,22],[65,10],[60,-2],[62,-13],[33,-4],[67,-1],[27,-5],[31,-2],[34,-6],[44,1],[39,8],[23,-8],[107,-47],[-50,-96],[-27,-7],[-47,-17],[-46,-27],[-51,-42],[-97,-95],[-61,-42],[-38,-20],[-24,-52],[-19,-23],[3,-14],[-6,-19],[11,-60],[-12,-49],[10,-24],[1,-62],[7,-25],[3,-36],[6,-17],[-16,-33],[-7,-20],[2,-13],[-11,-16],[-22,-54],[-41,-42],[-45,-35],[-53,-64],[21,-41],[2,-23],[-19,-27],[11,-18],[4,-38],[22,-24],[34,-19],[77,6],[37,-14],[21,-39],[10,-28],[56,-79],[8,-34],[22,-50],[-13,-54],[-16,-46],[-20,-38],[-23,-82],[-15,-49],[-46,-71],[-23,-45],[-7,-24],[-3,-23],[5,-25],[10,-21],[14,-16],[19,-8],[26,-20],[29,-13],[31,-21],[27,-32],[26,-39],[32,-44],[29,-28],[18,-11],[30,-4],[42,-10],[41,-15],[45,-36],[26,-34],[3,-31],[21,-18],[55,-14],[62,-4],[29,-4],[7,-23],[61,-5],[4,29],[87,3],[40,-7],[74,-63],[67,-51],[47,-27],[36,-12],[31,-15],[24,-24],[56,11],[61,16],[322,93],[78,-129],[47,-102],[36,-141],[39,-217],[23,-137],[16,-92],[33,-205],[2,-73],[-52,-36],[43,-21],[9,0],[1,-54],[-32,-229],[-12,-84],[-7,-57],[-8,-46],[-8,-73],[-6,-40],[-13,-24],[-30,-31],[-40,-52],[-16,-48],[-4,-27],[6,-37],[-7,-25],[-21,-39],[-2,-11],[-43,-71],[-21,-72],[-64,-96],[-39,-70],[-80,-124],[-65,-103],[-10,-19],[-3,-30],[3,-22],[112,-471],[41,-168],[8,-60],[-6,-34],[-18,-53],[-68,-175],[-124,-317],[-17,-27],[-44,-45],[-153,-128],[-18,-18],[-39,-51],[-102,-136],[-9,-33],[-7,-195],[-8,-65],[-26,-67],[-37,-44],[-156,-123],[-293,-228],[-8,-9],[-38,-66],[-79,-142],[-69,-120],[7,-6],[-12,-21],[21,-49],[143,-53],[51,-22],[36,-31],[119,-119],[35,-42],[16,-35],[47,-82],[43,-48],[36,-8],[65,2],[35,-8],[43,-24],[161,-108],[25,-21],[9,-15],[79,-139],[11,-15],[79,-103],[-25,14],[-24,8],[149,-235],[13,-63],[14,-26],[4,-25],[65,-74],[23,-24],[22,-29],[15,-13],[-52,-52],[15,-12],[-77,-66],[12,-4],[-32,-31],[36,-29],[15,-20],[42,33],[50,26],[33,-55],[43,20],[27,-9],[17,-11],[6,10],[19,-18],[23,8],[12,-68],[27,-8],[15,23],[42,-59],[37,-44],[10,-60],[35,61],[26,-33],[60,-89],[11,-19],[21,-25],[13,11],[58,-35],[60,42],[45,24],[91,-74],[-1,-4],[-42,-16],[42,-44],[-13,-22],[2,-24],[70,-44],[55,61],[92,-75],[56,-49],[69,-56],[80,-63],[101,-87],[79,-62],[62,-53],[22,-21],[50,-63],[18,-40],[7,-30],[3,-89],[-4,-44],[2,-38],[-1,-67],[-3,-123],[5,-22],[17,-27],[27,-21],[45,-9],[123,-29],[82,-21],[28,-15],[24,-21],[27,-39],[6,-33],[-15,-104],[-26,-180],[-26,-174],[-9,-74],[-21,-139],[-28,-202],[-83,-11],[-251,-66],[-84,-23],[-154,-27],[-141,-31],[-70,-8],[-25,3],[-131,33],[-184,38],[-19,-1],[-33,-26],[-20,-32],[-7,-37],[8,-54],[15,-53],[-87,-15],[-28,12],[-70,-47],[12,-14],[-91,-54],[36,-76],[-20,-28],[-36,-14],[-37,-4],[75,-66],[-38,-68],[-13,-18],[-20,-16],[-100,-25],[-73,-27],[-55,-31],[-44,35],[-40,36],[-31,18],[-28,8],[-5,-30],[-48,12],[-66,26],[-58,31],[-58,24],[-46,16],[-8,-95],[-65,-25],[-33,-23],[-10,37],[-20,-5],[-4,-23],[7,-39],[27,-90],[10,-30],[-54,42],[-27,-24],[32,-30],[31,-35],[-30,-31],[68,-52],[15,-26],[14,-48],[22,-38],[41,-37],[46,-54],[15,-25],[17,-21],[20,-12],[-23,-17],[-74,50],[-28,27],[-31,9],[-48,18],[-46,37],[-8,17],[-7,29],[-45,55],[-28,24],[-77,54],[-51,28],[-107,32],[-47,20],[-22,29],[-19,57],[-46,54],[-20,63],[0,36],[-12,32],[-19,33],[-20,4],[-27,-5],[-35,-2],[-41,-17],[-9,1],[-114,34],[-133,31],[-12,17],[13,16],[24,10],[12,15],[8,-10],[3,-24],[17,3],[24,24],[7,34],[15,19],[18,11],[15,0],[14,10],[-33,21],[-31,-21],[-15,23],[-18,19],[53,32],[-69,15],[-34,-28],[-42,-16],[-44,-12],[-70,-32],[-72,-27],[-59,-29],[-13,-3],[2,38],[12,5],[29,22],[-3,15],[17,38],[-20,44],[-20,-7],[-28,0],[-27,10],[-20,22],[-18,31],[-10,42],[-3,40],[60,9],[-8,72],[-14,64],[-26,67],[-115,-53],[-73,48],[-19,31],[-30,19],[-31,23],[-33,-27],[-52,-67],[-27,-28],[-26,-21],[-68,-71],[-43,-35],[-41,-13],[-60,-30],[-66,-43],[-67,-52],[-14,23],[-9,28],[-1,27],[14,36],[22,32],[-48,21],[-59,-55],[-53,24],[-82,55],[-37,-9],[-51,-18],[-67,-28],[-43,-31],[-27,-16],[-19,-5],[-72,-10],[-33,-114],[-4,-27],[4,-38],[9,-18],[29,-41],[65,-67],[-1,-13],[-45,-121],[-3,-23],[42,-63],[2,-33],[61,-18],[6,-19],[15,-20],[-25,-5],[3,-22],[-10,-13],[8,-15],[-37,1],[-61,-6],[0,-13],[16,-2],[7,-15],[-8,-2],[-11,-55],[-23,0],[-2,-5],[-27,10],[-22,-2],[-57,6],[-43,30],[-28,9],[-19,-16],[-12,-3],[-55,19],[-24,5],[-52,-43],[-19,-11],[0,-9],[-50,4],[13,-36],[-27,-3],[-5,-10],[-49,-2],[-33,8],[-3,-44],[-22,-49],[72,-29],[-49,-62],[15,-32],[-31,-57],[133,-63],[-57,-117],[51,-26],[-78,-15],[-34,-27],[-77,-39],[55,-104],[-61,-55],[21,-32],[-32,-14],[-79,-25],[-67,-23],[31,-31],[41,-35],[-42,-85],[-84,6],[-1,-49],[-36,2],[-47,-5],[-46,-17],[-47,-23],[-27,-19],[1,-41],[12,-45],[23,-38],[34,-42],[33,-53],[20,-41],[-117,-51],[8,-22],[64,17],[30,-66],[-119,-78],[16,-25],[2,-25],[-20,-21],[-20,-61],[-5,-44],[-5,-23],[1,-36],[9,-34],[7,-13],[39,-49],[10,-41],[22,-18],[74,-13],[37,2],[19,-49],[21,-43],[76,-95],[16,-42],[22,-24],[-14,-32],[-13,1],[-1,-17],[9,-11],[-16,-24],[-17,-77],[-17,-20],[-22,-13],[-31,-26],[-2,-11],[-21,-22],[7,-10],[-23,-23],[-22,-8],[-5,5],[-41,-12],[-10,4],[-11,-14],[-32,2],[3,-5],[-15,-16],[-7,-16],[-34,-7],[-27,-16],[-3,-12],[18,-23],[-30,-24],[-14,-24],[-16,0],[-21,-41],[-15,-9],[-15,-3],[-7,-21],[-21,-13],[7,-40],[-31,-49],[-2,-18],[-20,-49],[-36,-44],[-42,-17],[5,-11],[-22,-19],[1,-7],[-28,-20],[4,-13],[-14,-9],[-2,-23],[4,-16],[-6,-16],[-31,-15],[-49,-14],[-13,7],[-14,34],[-13,13],[-22,12],[-23,6],[-19,11],[-46,18],[-25,-15],[-51,33],[-41,-50],[-18,-11],[-22,-2],[-45,1],[-14,5],[-55,-79],[-39,-39],[-34,-28],[-34,5],[-31,14],[-40,12],[-28,3],[5,-25],[-37,5],[-2,-5],[-24,1],[-3,8],[-53,-8],[-8,52],[-56,-10],[-35,76],[-30,82],[-92,-31],[-73,-56],[-15,-50],[-115,-85],[-30,-16],[-178,-87],[-60,-25],[-79,-23],[-12,-49],[-102,-7],[-102,-1],[-194,-18],[62,61],[-98,5],[-32,-1],[-115,-104],[-80,-71],[-62,-28],[-91,-27],[-71,-39],[-51,-9],[-59,1],[-81,7],[-38,-105],[-69,-65],[-17,6],[-23,-35],[-26,-24],[-74,-85],[-60,23],[78,110],[-94,26],[-57,18],[-42,-81],[-24,-51],[-13,-20],[-62,-61],[-48,-43],[-6,-31],[-136,45],[-5,3],[-21,-27],[-18,-18],[-27,-46],[-22,-28],[-30,-27],[-31,-15],[-21,-13],[-10,-18],[39,-40],[21,-41],[19,-26],[1,-10],[-52,-54],[-43,-34],[-15,-18],[3,-35],[24,-29],[0,-9],[-21,-44],[-36,-54],[-28,-46],[-11,-23],[-8,-26],[-23,-55],[-16,-20],[-28,-43],[-30,-65],[-5,-23],[-18,-51],[0,-48],[-49,-52],[-26,-23],[-28,-12],[-21,-17],[-46,-51],[-38,-26],[-32,-28],[-29,-10],[-66,-12],[-29,-12],[-71,-6],[-31,5],[-51,13],[-59,10],[-74,26],[-41,7],[-36,12],[-26,1],[-34,-10],[-23,0],[-47,-15],[-46,-21],[-26,-1],[-39,-19],[-30,-39],[-13,-8],[-28,-7],[-54,0],[-44,-9],[-42,-2],[-22,-15],[-18,-20],[-7,-15],[-2,-54],[-8,-14],[-65,-45],[-7,-11],[-7,-34],[-3,-40],[4,-42],[15,-23],[18,-10],[39,-36],[39,-54],[24,-43],[15,-11],[33,-35],[5,-28],[-14,-99],[-7,-27],[-14,-25],[-13,-37],[-19,-17],[-21,-9],[-24,-20],[-64,-24],[-61,-12],[-86,4],[-36,17],[-31,-6],[-25,-13],[-30,-10],[-18,-12],[-22,-24],[-10,-16],[-25,-75],[-15,-36],[-3,-16],[-8,-95],[3,-42],[6,-33],[13,-30],[11,-9],[20,-3],[26,10],[62,-6],[101,-6],[64,-25],[46,-34],[57,-56],[28,-21],[51,-30],[30,-13],[39,0],[7,-6],[21,-42],[21,-46],[-1,-45],[-6,-18],[24,-25],[0,-15],[38,-43],[30,-29],[52,-67],[21,-69],[6,-81],[11,-60],[19,-69],[11,-23],[40,-59],[40,-37],[41,-31],[25,-10],[113,-31],[30,-13],[-10,-45],[-38,-15],[-43,-7],[4,-15],[-38,-18],[-32,-32],[-18,-57],[11,-40],[34,-37],[14,-19],[-6,-46],[-20,-45],[-42,-63],[-1,-38],[19,-48],[32,-113],[23,-49],[-3,-38],[-41,-56],[-33,-46],[-13,-34],[-7,-33],[-32,-20],[9,-34],[14,-2],[37,-26],[37,-42],[40,-66],[15,-57],[65,-38],[27,-37],[60,-61],[7,-30],[-7,-72],[-6,-10],[-194,-152],[49,-33],[37,-16],[35,-10],[48,-19],[44,-30],[28,-13],[64,-22],[-190,-164],[-62,-39],[-71,-30],[-54,-29],[-19,-7],[-65,-5],[-115,-7],[-25,17],[-36,31],[-23,28],[-16,28],[-6,44],[-5,18],[-53,-113],[-60,26],[-46,11],[-44,-5],[-134,-40],[-36,-6],[-20,1],[-65,9],[-4,15],[-14,25],[-25,18],[-16,6],[-35,-44],[-39,-4],[-42,-9],[4,-22],[-43,-17],[-7,19],[-9,-4],[-101,-62],[-14,-19],[-7,-33],[1,-39],[5,-20],[16,-21],[-26,-45],[-21,-48],[-16,-57],[-18,-88],[-10,-57],[-12,-4],[-72,7],[-70,-3],[-46,1],[-12,4],[-12,21],[-41,87],[-38,60],[-56,114],[-11,25],[-11,13],[-46,25],[-19,14],[-44,39],[-14,7],[-25,4],[-71,-4],[-12,1],[-34,18],[-33,-41],[-19,-27],[-23,-60],[-33,-114],[-20,-47],[2,-59],[14,-31],[26,-24],[49,-30],[44,-32],[31,-32],[0,-30],[-24,-24],[-38,-18],[-90,-18],[-76,1],[-8,5],[-65,-6],[-56,0],[-24,-15],[-14,-25],[-6,-64],[3,-26],[48,-107],[53,-74],[85,-89],[60,-51],[25,-12],[31,-6],[18,-23],[4,-24],[8,-18],[-17,1],[-5,-24],[11,-18],[36,-43],[36,-38],[-34,-60],[-41,-56],[-38,-64],[-28,-73],[-37,-49],[-58,-39],[-49,-20],[-139,-34],[-82,3],[-77,5],[-97,17],[-54,5],[-25,-11],[-9,-13],[-5,-27],[1,-43],[8,-50],[28,-39],[59,-41],[15,-41],[21,-18],[35,-12],[35,-7],[23,-12],[66,-29],[68,-32],[67,-58],[10,-27],[-3,-82],[68,2],[40,71],[48,39],[95,68],[83,57],[45,36],[35,-23],[24,-25],[36,-15],[1,-19],[87,-27],[46,-11],[-32,-122],[-7,-51],[2,-32],[6,-18],[13,-59],[24,-93],[14,-70],[7,-62],[12,-41],[19,-39],[7,-26],[-21,-17],[-48,-33],[-46,-45],[-39,-52],[-26,-46],[-2,-50],[2,-40],[-3,-13],[-71,-52],[-47,-35],[-30,-30],[-26,-18],[-53,-16],[-52,-9],[-48,2],[-96,-31],[-63,-1],[-55,2],[-39,-11],[-18,-17],[-7,-34],[11,-32],[4,-62],[-2,-68],[-2,-25],[-10,-43],[-22,-43],[-6,-33],[-7,-13],[6,-19],[9,-50],[-1,-31],[-5,-23],[-18,-37],[-8,-37],[-5,-92],[-24,-72],[-9,-34],[-22,-32],[-52,-37],[-24,-9],[-53,-7],[-39,-12],[-53,-32],[-39,-22],[-14,-3],[-24,-18],[-38,-36],[-2,-58],[-14,-87],[-9,-36],[0,-24],[-13,-62],[-9,-20],[-10,-57],[-9,-22],[2,-12],[52,-101],[28,-32],[34,-20],[37,-13],[40,-5],[31,-1],[41,6],[57,-7],[16,-9],[7,-27],[-15,-52],[-22,-41],[-15,-20],[-5,-23],[-84,-106],[-26,-50],[-26,-34],[-14,-26],[8,-77],[10,-57],[27,-32],[29,-21],[53,-25],[29,-21],[18,-1],[31,-28],[23,-56],[12,-18],[-7,-29],[-40,-26],[-45,-19],[-38,-5],[-37,2],[-48,17],[-27,6],[-32,-1],[-59,-17],[-20,-10],[-54,-16],[-21,-10],[-48,-29],[-12,-21],[-10,-49],[3,-22],[-1,-46],[9,-66],[24,-57],[40,-81],[13,-31],[35,-57],[35,-49],[51,-17],[85,-3],[31,8],[18,-6],[18,-26],[8,-19],[7,-34],[-4,-33],[-14,-23],[-25,-22],[-24,-12],[-38,-9],[-26,-2],[-54,2],[-49,18],[-33,16],[-65,11],[-74,17],[-32,23],[-18,8],[-30,5],[-42,-8],[-29,-17],[-28,-27],[-4,-12],[-37,-54],[-12,-11],[-31,-150],[-3,-23],[5,-54],[-3,-56],[1,-27],[5,-5],[11,-40],[-7,-39],[-2,-48],[15,-41],[24,-37],[24,-32],[11,-9],[50,-57],[5,-20],[-9,-43],[-3,-28],[-2,-57],[-8,-39],[-20,-54],[-26,-59],[-11,-30],[-19,-33],[-48,-53],[-52,-77],[-7,-22],[0,-36],[-13,-20],[-55,-27],[-27,-23],[-10,-20],[21,-29],[19,-37],[31,-38],[19,-16],[36,-17],[26,-22],[45,-4],[45,8],[21,10],[19,16],[13,22],[10,39],[0,28],[4,27],[14,35],[37,73],[12,35],[22,21],[45,21],[11,-1],[24,-34],[35,-40],[61,-59],[26,-15],[29,-31],[4,-16],[22,-53],[-3,-18],[-55,-59],[-21,-18],[-22,-11],[-16,-13],[-16,-28],[-24,-32],[-41,-27],[-60,-30],[-72,-54],[-58,-36],[-7,-12],[-5,-27],[-1,-22],[-7,-68],[-1,-112],[-3,-29],[-10,-23],[-11,-10],[-22,-10],[-65,-13],[-18,2],[-37,15],[-42,42],[-29,24],[-36,18],[-26,2],[-50,-26],[-3,-24],[6,-59],[13,-58],[-11,-41],[-33,-73],[-27,-84],[-7,-33],[-4,-52],[9,-30],[29,-67],[10,-17],[29,-36],[17,-11],[175,-82],[32,9],[57,-3],[20,10],[24,31],[8,32],[-2,29],[3,17],[-3,63],[-14,33],[0,15],[15,34],[32,17],[31,6],[64,-14],[17,-11],[17,-17],[10,-34],[0,-51],[-7,-29],[-24,-48],[-8,-29],[-18,-40],[-28,-48],[-5,-16],[-20,-20],[-41,-61],[-8,-28],[6,-14],[8,-55],[11,-40],[19,-32],[57,-35],[64,-30],[28,-22],[21,-26],[19,-38],[32,-54],[12,-41],[27,-65],[45,-75],[22,-27],[29,-46],[39,-52],[25,-27],[51,-67],[38,-40],[30,-46],[7,-23],[21,-37],[18,-42],[1,-14],[26,-62],[5,-28],[-5,-18],[-2,-25],[-25,-52],[-18,-29],[-20,-45],[-27,-41],[-7,-30],[-3,-74],[-3,-32],[-10,-29],[-35,-42],[-21,-31],[-14,-33],[-11,-17],[-34,-86],[-3,-92],[13,-53],[16,-36],[52,-43],[48,-30],[58,-43],[52,-31],[21,-9],[94,-51],[15,-2],[28,-35],[30,-19],[19,-3],[51,-37],[44,-22],[57,-8],[17,-8],[57,-13],[22,-25],[8,-16],[42,-29],[51,-51],[7,-20],[-7,-19],[-20,-44],[-58,-84],[-16,-17],[-49,-44],[-48,-52],[-13,-24],[-37,-35],[-34,-13],[-1,3],[-27,-17],[-32,-40],[-11,-21],[-30,-42],[-45,-33],[-47,4],[-34,22],[-35,33],[-44,76],[-27,60],[-11,17],[-22,24],[-26,16],[-39,14],[-63,-23],[-18,-21],[-7,-14],[-4,-32],[21,-29],[34,-23],[60,-58],[12,-16],[44,-43],[57,-61],[16,-25],[38,-50],[25,-22],[13,-22],[10,-29],[36,-43],[21,-41],[22,-32],[32,-27],[25,-14],[40,-15],[49,-3],[50,-7],[67,-4],[94,-10],[31,-5],[63,13],[25,1],[24,-9],[28,-42],[33,-35],[16,-32],[-5,-19],[-11,-72],[-3,-74],[-18,-37],[-52,-89],[-12,-38],[-27,-54],[-19,-30],[-18,-42],[12,-32],[-2,-33],[2,-24],[-6,-34],[-10,-31],[-19,-39],[-9,-56],[-14,-30],[-15,-24],[-11,-11],[-26,-1],[-34,9],[-59,45],[-27,36],[-34,23],[-30,16],[-36,26],[-20,0],[-21,-16],[-29,-38],[-30,-43],[-5,-13],[6,-25],[27,-37],[34,-54],[27,-46],[17,-21],[42,-39],[30,-43],[34,-20],[16,-5],[34,-2],[40,2],[95,14],[34,2],[43,-6],[25,-6],[70,-27],[43,-5],[25,-14],[8,-33],[11,-28],[5,-1],[14,-40],[15,-28],[25,-100],[41,-87],[19,-27],[74,-63],[25,-23],[32,-46],[30,-25],[23,-11],[57,-12],[34,-3],[34,3],[36,12],[29,5],[54,-2],[74,-17],[26,0],[72,-22],[38,-22],[23,-8],[27,-18],[51,-18],[31,6],[40,-15],[27,-5],[33,-15],[43,-32],[10,-18],[4,-23],[-9,-16],[-13,5],[-22,-3],[-16,6],[-2,13],[-55,14],[-13,10],[-23,-17],[-27,-44],[-8,-46],[-8,-71],[8,-49],[-1,-30],[-13,-21],[-36,-29],[-24,-28],[-19,-51],[-5,-21],[-5,-99],[-6,-37],[-50,-115],[-15,-41],[-19,-75],[-9,-94],[2,-56],[5,-45],[3,-66],[8,-31],[24,-40],[18,-19],[35,-30],[14,-23],[14,-31],[10,-48],[25,-85],[37,-76],[27,-81],[25,-36],[14,-27],[20,-27],[12,-8],[75,-29],[14,-3],[79,-9],[39,-12],[23,-2],[15,-8],[5,-10],[4,-32],[15,-42],[4,-45],[19,-63],[3,-51],[8,-58],[2,-90],[14,-68],[3,-46],[7,-41],[11,-42],[25,-24],[29,-23],[5,-24],[41,-27],[13,8],[31,-3],[67,26],[99,53],[52,25],[14,11],[18,25],[17,12],[24,57],[17,26],[63,44],[25,26],[9,17],[-1,19],[-18,14],[-14,-4],[-55,17],[-26,11],[-90,26],[-47,26],[-17,14],[-12,18],[5,26],[12,40],[1,37],[8,61],[-1,25],[-9,21],[-50,69],[-59,95],[-7,19],[9,44],[29,47],[21,44],[55,72],[47,53],[44,17],[67,6],[42,11],[95,45],[48,8],[27,-33],[42,-35],[37,-45],[11,-22],[-2,-43],[-5,-7],[-7,-34],[-3,-33],[-13,-32],[-5,-54],[5,-32],[9,-33],[-2,-10],[15,-21],[21,-43],[21,-27],[12,-33],[8,-29],[2,-24],[-6,-9],[2,-47],[10,-37],[0,-30],[-6,-32],[-27,-51],[-31,-74],[0,-17],[8,-56],[21,-42],[13,-18],[30,-23],[6,-11],[17,-15],[24,-39],[23,-47],[6,-26],[21,-33],[39,-87],[37,-26],[15,-49],[2,-38],[-18,-53],[-8,-10],[1,-35],[39,25],[2,13],[14,9],[8,14],[24,22],[11,27],[-6,98],[3,15],[43,68],[0,15],[15,38],[20,21],[38,31],[30,21],[27,22],[12,18],[59,40],[29,9],[38,1],[30,-9],[55,-24],[38,-8],[1,-57],[16,-59],[46,-63],[65,-105],[31,-33],[406,-6],[93,-1],[94,-3],[-17,-78],[-27,-24],[-138,-109],[-40,-42],[-36,-43],[-5,-36],[-53,-10],[-26,2],[-10,-16],[-7,-47],[82,-50],[87,-35],[-10,-37],[48,-28],[7,-13],[11,-43],[40,-18],[44,-29],[13,-22],[0,-20],[36,-28],[16,-19],[17,-30],[0,-21],[-7,-22],[10,-8],[33,7],[13,-16],[42,-77],[16,-18],[28,-43],[-46,-44],[-56,-40],[-24,-24],[-52,-60],[-8,-21],[13,-27],[51,-10],[20,-10],[-3,-15],[-13,-30],[-22,5],[-2,-12],[-19,-41],[2,-9],[27,1],[4,-27],[16,-16],[7,-33],[33,-57],[5,-35],[11,-19],[-5,-32],[-39,-52],[-34,-33],[-15,-7],[-29,12],[-10,-18],[-28,-30],[-22,-17],[-56,-33],[-26,-8],[-45,-27],[-41,-32],[-22,-21],[-16,-33],[-11,-38],[-7,-38],[4,-32],[11,-30],[24,-21],[118,-44],[74,-21],[43,-8],[19,-7],[85,-20],[63,-4],[39,-3],[36,0],[23,-3],[16,-7],[20,-22],[61,-96],[7,-6],[30,-63],[27,-83],[14,-32],[7,-27],[13,-30],[0,-16],[7,-27],[29,-53],[14,-43],[4,-39],[-1,-28],[-7,-37],[-11,-13],[-47,-36],[-29,-26],[-26,-30],[-54,-6],[-11,1],[-31,15],[-61,16],[-39,5],[-23,-20],[-6,-23],[1,-37],[8,-17],[20,-20],[22,-12],[11,-17],[40,-40],[18,-12],[23,-21],[41,-46],[39,-53],[31,-60],[0,-31],[-7,-30],[4,-24],[1,-29],[6,-44],[8,-30],[22,-57],[0,-22],[8,-16],[-3,-20],[9,-14],[-1,-31],[3,-50],[9,-34],[10,-21],[48,-41],[41,-31],[20,-8],[31,-28],[60,-73],[20,-29],[19,-20],[49,-35],[50,-26],[51,-13],[39,-14],[85,-11],[95,-5],[17,-6],[33,-33],[18,-47],[36,-60],[48,-47],[20,-23],[9,-17],[22,-69],[10,-67],[13,-12],[85,-59],[30,-25],[42,-28],[54,-32],[49,-35],[20,-24],[25,-38],[33,-46],[10,-10],[17,-41],[16,-77],[9,-30],[2,-26],[12,-31],[9,-15],[31,-29],[53,-36],[29,-42],[2,-29],[7,-13],[23,-15],[21,-8],[22,3],[67,-34],[38,-12],[65,-35],[2,-6],[20,-2],[61,-13],[50,-19],[48,-24],[25,-18],[53,-47],[67,-52],[43,-11],[34,0],[54,-19],[12,1],[33,14],[70,43],[29,22],[16,25],[30,27],[42,14],[39,5],[53,-10],[13,-5],[17,-16],[19,-39],[39,-64],[19,-24],[38,-60],[22,-27],[34,-27],[29,-9],[19,9],[32,6],[42,1],[47,-8],[62,-28],[20,-27],[4,-28],[-7,-18],[-12,-64],[3,-69],[8,-47],[28,-67],[36,-71],[27,-46],[34,-42],[18,-27],[31,-37],[54,-47],[29,-18],[35,-9],[31,-1],[78,12],[56,22],[26,17],[65,50],[49,39],[70,51],[74,47],[29,14],[97,24],[33,0],[27,-6],[55,-48],[39,-49],[19,-29],[25,-41],[12,-29],[23,-92],[8,-52],[-1,-15],[-15,-76],[-25,-98],[-3,-27],[2,-53],[6,-27],[14,-51],[39,-86],[43,-68],[35,-69],[16,-46],[30,-62],[14,-23],[28,-33],[85,-69],[55,-53],[41,-46],[24,-41],[14,-38],[1,-55],[-12,-72],[-18,-85],[-9,-66],[-5,-17],[-6,-36],[-8,-21],[-24,-36],[-27,-47],[-12,-31],[-5,-28],[2,-20],[-6,-42],[-17,-44],[-2,-31],[5,-35],[7,-25],[-4,-10],[1,-83],[3,-20],[12,-37],[37,-65],[32,-38],[36,-19],[23,-25],[32,-24],[136,-92],[53,-22],[22,-3],[38,0],[74,11],[45,18],[35,18],[59,26],[61,29],[44,27],[49,41],[55,63],[18,30],[37,87],[8,27],[3,34],[9,61],[8,67],[6,28],[3,35],[8,42],[17,61],[21,129],[25,46],[34,30],[22,14],[64,29],[52,18],[88,19],[39,14],[50,14],[44,15],[75,15],[93,2],[162,12],[72,2],[23,4],[50,-3],[40,0],[83,-4],[71,8],[34,5],[53,-3],[33,-16],[10,-10],[70,-51],[17,-24],[27,-51],[7,-19],[28,-51],[21,-32],[63,-92],[49,-81],[17,-24],[28,-70],[29,-56],[23,-35],[37,-30],[15,-16],[26,-18],[52,-30],[43,-32],[30,-29],[8,-25],[17,-35],[51,-75],[32,-41],[30,-27],[22,-13],[27,-22],[27,-27],[50,-62],[14,-29],[35,-59],[10,-11],[26,-56],[14,-18],[12,-32],[13,-24],[43,-35],[15,-17],[94,-93],[14,-23],[14,-14],[21,-33],[91,-78],[63,-42],[19,-18],[31,-40],[52,-82],[48,-86],[89,-152],[23,-27],[47,-42],[13,-9],[96,-79],[58,-44],[42,-26],[73,-10],[38,-8],[79,-39],[54,-29],[30,-18],[31,-15],[49,-14],[96,-25],[123,-30],[13,1],[19,-8],[45,-12],[110,-22],[25,-3],[42,-10],[44,-6],[194,4],[38,-7],[21,-17],[8,-24],[-4,-28],[10,-117],[16,-51],[24,-43],[28,-34],[47,-39],[34,-20],[64,-28],[39,-10],[29,7],[39,24],[34,33],[42,46],[31,31],[71,52],[55,33],[32,12],[41,12],[86,29],[42,6],[18,-6],[9,-31],[2,-48],[8,-24],[17,-39],[34,-46],[12,-7],[26,-4],[27,2],[43,11],[52,6],[66,0],[154,-25],[35,1],[17,6],[79,-6],[34,6],[11,6],[51,49],[43,33],[26,30],[6,15],[30,49],[77,112],[11,13],[33,48],[34,57],[49,53],[43,45],[30,37],[27,28],[20,15],[42,23],[17,4],[52,31],[48,48],[34,29],[12,7],[25,24],[25,18],[37,15],[30,3],[35,-6],[42,-17],[303,-194],[36,-25],[31,-26],[28,-29],[28,-41],[103,-208],[31,-66],[23,-29],[73,-48],[65,-45],[63,-40],[86,-24],[45,-9],[33,-4],[50,2],[22,9],[35,38],[47,30],[17,4],[18,-3],[37,-23],[80,-58],[29,-22],[73,-36],[42,-23],[50,-16],[109,-20],[28,-11],[34,-30],[22,-34],[32,-66],[29,-73],[14,-30],[2,-12],[33,-99],[45,-144],[15,-28],[30,-41],[40,-16],[37,0],[46,18],[35,30],[29,33],[33,44],[7,19],[21,27],[48,79],[28,53],[32,81],[27,89],[5,4],[14,47],[2,33],[-4,13],[-4,46],[3,35],[9,47],[21,66],[22,38],[20,22],[45,23],[22,1],[15,-6],[37,-21],[59,-26],[18,-13],[108,-60],[22,-15],[29,-25],[26,-32],[61,-60],[19,-22],[9,-24],[-7,-10],[18,-82],[14,-47],[27,-45],[8,-27],[4,1],[-6,-47],[-6,-15],[-46,-67],[-2,-7],[-73,-68],[-62,-45],[-40,-37],[-57,-73],[-28,-47],[-39,-52],[-26,-30],[-39,-71],[-29,-57],[-18,-24],[-26,-28],[-29,-25],[-33,-22],[-63,-33],[-30,-9],[-68,-43],[-18,-17],[-57,-38],[-31,-17],[-70,-29],[-87,-25],[-72,-33],[-43,-32],[-50,-25],[-7,-7],[-49,-75],[-19,-40],[-9,-31],[-3,-28],[4,-52],[11,-35],[15,-29],[22,-29],[24,-23],[41,-34],[82,-51],[64,-34],[70,-23],[52,-21],[57,-33],[45,-32],[30,-27],[8,-21],[13,-13],[14,-39],[-13,-42],[-32,-52],[-31,-38],[-19,-28],[-46,-52],[-45,-48],[-33,-40],[-57,-58],[-23,-30],[-21,-37],[-30,-107],[-6,-38],[-2,-65],[12,-25],[35,-27],[60,-34],[3,-7],[35,-18],[20,-14],[97,-90],[37,-40],[33,-40],[36,-55],[16,-30],[13,-39],[3,-22],[9,-25],[-5,-32],[-10,-25],[-1,-28],[-6,-38],[2,-30],[9,-60],[22,-116],[-1,-49],[-9,-37],[-12,-28],[-42,-55],[-101,-116],[-99,-74],[-32,-13],[-28,-17],[-59,-22],[-27,-5],[-35,-12],[-107,-43],[-105,-49],[-41,-23],[-36,-24],[-35,-30],[-31,-33],[-12,-20],[-15,-16],[-16,-35],[-12,-16],[-22,-54],[-4,-49],[6,-55],[1,-51],[-3,-71],[2,-24],[9,-38],[34,-61],[10,-24],[16,-22],[30,-50],[4,-13],[-2,-20],[-28,-80],[-6,-36],[1,-37],[-5,-32],[20,-69],[-2,-53],[5,-32],[4,-90],[-3,-42],[-21,-111],[-7,-96],[-1,-60],[2,-33],[7,-48],[-2,-86],[12,-50],[14,-28],[28,-40],[100,-110],[80,-74],[68,-49],[68,-33],[69,-27],[46,-27],[52,-45],[35,-25],[38,-33],[35,-19],[34,-14],[20,-11],[35,-32],[20,-30],[6,-40],[-31,-49],[-47,-52],[-31,-25],[-30,-16],[-61,-5],[-76,-15],[-26,3],[-41,44],[-39,59],[-37,52],[-25,27],[-74,86],[-34,52],[-33,32],[-41,17],[-74,39],[-37,8],[-67,4],[-87,-6],[-86,-14],[-17,-8],[-63,-45],[-22,-31],[-15,-45],[-1,-33],[9,-37],[28,-56],[20,-32],[19,-23],[46,-42],[120,-129],[50,-51],[73,-67],[86,-71],[79,-62],[26,-27],[7,-14],[6,-29],[3,-46],[-8,-114],[-65,4],[-6,3],[-41,-3],[0,-5],[-49,-11],[-89,-29],[-50,-25],[-4,-9],[-30,-16],[-51,-37],[-37,-35],[-46,-48],[-45,-45],[-83,-87],[-51,-56],[-47,-56],[-30,-50],[-52,-70],[-60,-68],[-107,-108],[-55,-64],[-191,-257],[-65,-64],[-4,-7],[-60,-45],[-55,-29],[-84,-31],[-80,-34],[-66,-37],[-95,-62],[-47,-27],[-50,-24],[-47,-16],[-49,-14],[-211,-34],[-50,-10],[-37,-13],[-61,-38],[-95,-69],[-37,-35],[-20,-35],[-16,-41],[-32,-88],[-21,-54],[-46,-84],[-44,-67],[-34,-56],[-41,-65],[-59,-85],[-17,-10],[-58,-83],[2,-13],[-71,-103],[-59,-77],[-32,-38],[-116,-119],[-40,-39],[-27,-24],[-117,-81],[4,-6],[-40,-45],[-110,-75],[-57,-21],[-61,-41],[-20,-4],[-115,-79],[-46,-45],[-45,-60],[-13,-20],[-10,-28],[-29,-34],[-13,-4],[-50,-55],[-24,-34],[-15,-27],[-48,-106],[-22,-44],[-13,-68],[-4,-51],[1,-40],[9,-42],[12,-27],[22,-34],[40,-36],[31,-17],[45,-13],[34,-4],[51,-1],[70,11],[70,17],[45,4],[58,-2],[35,-6],[28,-8],[27,-12],[27,-17],[38,-33],[31,-31],[25,-32],[19,-44],[5,-21],[-2,-23],[2,-44],[-5,-44],[-24,-124],[-13,-57],[-1,-25],[-24,-56],[-45,-84],[-42,-83],[-24,-52],[-25,-47],[-24,-49],[-19,-52],[-16,-74],[-17,-33],[-33,-76],[-40,-88],[-34,-77],[-28,-75],[-27,-61],[-48,-86],[-27,-51],[-92,-212],[-29,-75],[-36,-114],[-10,-35],[-14,-63],[-11,-82],[-10,-40],[-31,-96],[-25,-60],[-40,-70],[-19,-42],[-15,-43],[-14,-51],[-6,-40],[-13,-125],[-7,-52],[-28,-77],[-52,-89],[-38,-87],[-20,-38],[-25,-33],[-25,-21],[-73,-41],[-88,-45],[-23,-13],[-56,-37],[-58,-47],[-37,-36],[-41,-45],[-7,-2],[-55,-65],[-21,-32],[-24,-44],[-31,-43],[-44,-40],[2,-2],[-47,-49],[-31,-55],[-47,-66],[-15,-30],[-32,-88],[-19,-51],[-23,-40],[-61,-78],[-36,-44],[-75,-76],[-41,-33],[-40,-27],[-40,-23],[-70,-29],[-49,-17],[-59,-15],[-44,-7],[-140,-5],[-96,-4],[-40,-5],[-24,-5],[-47,-17],[-11,-16],[-59,-42],[-43,-40],[-74,-74],[-39,-45],[-146,-194],[-30,-43],[-53,-82],[-35,-71],[-14,-45],[-9,-46],[-3,-32],[2,-57],[4,-46],[10,-51],[22,-65],[24,-49],[55,-94],[32,-42],[26,-26],[80,-71],[62,-44],[46,-48],[27,-45],[13,-34],[11,-54],[1,-41],[-4,-28],[-8,-32],[-11,-25],[-18,-29],[-21,-22],[-41,-22],[-26,-7],[-40,-3],[-56,5],[-47,14],[-49,21],[-29,16],[-44,32],[-24,21],[-74,52],[-22,13],[-39,11],[-41,5],[-46,0],[-58,-12],[-53,-23],[-93,-46],[-136,-71],[-42,-27],[-55,-43],[-51,-45],[-19,-20],[-40,-53],[-23,-38],[-29,-60],[-7,-30],[-1,-45],[4,-33],[14,-45],[34,-68],[17,-22],[24,-21],[206,-144],[11,1],[103,-73],[98,-69],[2,-11],[31,-21],[200,-158],[80,-56],[129,-104],[80,-67],[106,-86],[22,-20],[24,-29],[22,-43],[9,-36],[3,-29],[-2,-30],[-11,-84],[-12,-57],[-14,-46],[-23,-52],[-12,-21],[-43,-84],[-30,-71],[-24,-43],[-29,-41],[-33,-37],[-49,-47],[-78,-78],[-89,-85],[-94,-92],[-33,-34],[0,-6],[-31,-43],[-33,-52],[-47,-80],[-19,-29],[-43,-55],[-26,-29],[-38,-35],[-81,-66],[-38,-27],[-65,-59],[-40,-44],[-46,-66],[-37,-59],[-86,-153],[-42,-78],[-5,-13],[-11,-53],[-3,-42],[3,-52],[14,-59],[25,-63],[22,-69],[18,-62],[15,-59],[7,-36],[39,-151],[24,-77],[11,-40],[37,-110],[33,-106],[44,-133],[15,-52],[18,-54],[34,-88],[50,-145],[13,-43],[22,-64],[7,-16],[34,-93],[20,-72],[9,-46],[13,-96],[35,-129],[6,-81],[-5,-72],[-27,-193],[-5,-89],[-1,-64],[-6,-147],[6,-86],[4,-3],[19,-80],[29,-73],[3,-16],[26,-64],[7,-27],[7,-48],[5,-58],[-2,-40],[-7,-48],[-13,-60],[-24,-127],[-8,-69],[-7,-56],[-9,-94],[-3,-81],[-1,-135],[4,-107],[2,-147],[-3,-210],[-14,-106],[-14,-96],[50,-13]],[[636336,457346],[198,-65],[262,-98],[310,-196],[-12,-153],[-26,-107],[20,-3],[13,-8],[2,-56],[28,-38],[-22,-145],[221,22],[185,-1],[86,-12],[85,-23],[118,-58],[159,107],[76,58],[52,33],[70,57],[77,69],[297,325],[37,66],[77,116],[155,144],[50,30],[127,40],[-68,114],[-4,92],[62,62],[66,50],[62,88],[164,-53],[99,-36],[196,-24],[43,-16],[280,-106],[143,-75],[132,-52],[237,-3],[146,6],[16,76],[62,92],[63,75],[80,73],[46,60],[44,10],[71,84],[88,20],[108,-5],[47,-7],[65,17],[113,54],[82,96],[23,-10],[-37,-93],[-51,-59],[-89,-80],[-266,-67],[-52,-44],[-81,-128],[-117,-145],[-108,-64],[-209,-231],[-66,-65],[16,-147],[140,-72],[195,-70],[94,-42],[23,-123],[7,-53],[22,-184],[-1,-18],[32,-16],[63,-42],[-9,-199],[31,-8],[59,-51],[166,-48],[36,-74],[-37,-80],[-87,-138],[-58,-200],[-106,198],[-16,5],[14,153],[-10,52],[-121,-60],[-94,-67],[-32,-39],[-37,-83],[-46,-60],[-78,-113],[105,-35],[1,-86],[-83,-19],[-56,-2],[-98,20],[-7,92],[2,32],[-81,27],[-23,1],[-133,-38],[-95,-18],[-64,25],[-268,-67],[-97,-97],[-29,-62],[-79,7],[-93,-43],[-112,-64],[-101,-69],[-86,40],[-22,16],[-98,41],[-136,-1],[-57,53],[-86,89],[-108,50],[-105,-195],[73,-32],[61,-38],[29,-22],[64,-59],[66,-70],[60,-81],[69,-105],[48,-79],[53,-97],[24,-41],[31,-59],[56,-115],[25,-42],[51,-68],[23,-26],[80,-71],[52,-34],[38,-19],[22,-7],[40,-8],[136,-23],[73,-9],[63,-21],[62,-31],[35,-28],[18,-22],[31,-59],[17,-49],[11,-48],[12,-60],[18,-72],[16,-48],[49,-104],[30,-44],[61,-77],[62,-72],[83,-39],[200,-88],[44,-18],[116,-42],[106,-28],[95,-3],[74,-8],[134,-2],[37,-1],[81,0],[86,-4],[118,-2],[94,-2],[48,1],[117,30],[51,32],[32,25],[29,19],[46,36],[196,132],[99,65],[78,38],[61,34],[59,34],[71,36],[39,29],[48,31],[80,58],[82,40],[34,18],[40,13],[82,19],[47,7],[57,2],[63,5],[73,14],[186,19],[38,4],[117,5],[165,8],[261,34],[247,28],[220,36],[171,83],[19,22],[77,113],[80,66],[60,27],[269,91],[88,35],[139,56],[180,82],[39,10],[146,24],[106,8],[72,2],[91,12],[37,10],[42,17],[72,39],[43,19],[35,14],[66,10],[35,17],[17,20],[22,11],[27,34],[28,19],[106,45],[80,45],[51,16],[23,26],[35,79],[27,32],[37,97],[36,71],[38,57],[39,49],[123,130],[67,60],[46,36],[101,58],[97,67],[34,28],[50,87],[26,56],[35,126],[22,103],[11,123],[17,120],[24,125],[20,71],[28,109],[33,114],[39,82],[31,73],[41,82],[47,71],[13,14],[20,14],[124,44],[27,8],[37,1],[91,-10],[101,-16],[156,-36],[95,-31],[35,1],[24,-7],[19,-12],[22,-26],[10,-21],[32,-91],[29,-43],[26,-29],[43,-33],[61,-35],[81,-30],[41,-8],[53,5],[147,3],[63,8],[38,7],[79,19],[81,23],[62,24],[85,40],[68,46],[102,74],[36,30],[50,54],[54,40],[27,14],[77,26],[49,13],[163,28],[100,21],[49,6],[85,0],[69,-8],[162,-13],[40,-1],[204,19],[55,9],[55,6],[73,-1],[75,-17],[30,-3],[165,-49],[28,-14],[62,-24],[33,-19],[34,-25],[33,-29],[52,-47],[70,-62],[67,-65],[45,-51],[51,-63],[27,-27],[26,-23],[83,-64],[28,-28],[35,-42],[26,-36],[32,-50],[30,-55],[37,-71],[79,-155],[78,-167],[44,-103],[18,-66],[14,-83],[13,-91],[-5,-65],[-7,-42],[-28,-74],[-48,-86],[-47,-74],[-41,-62],[-27,-62],[-9,-62],[3,-93],[16,-86],[35,-157],[20,-72],[32,-90],[41,-89],[64,-97],[52,-63],[54,-54],[62,-55],[71,-50],[73,-34],[78,-28],[217,-26],[42,-2],[38,3],[74,11],[190,6],[36,3],[36,-3],[49,-10],[64,-25],[84,-36],[63,-37],[150,-80],[77,-21],[86,-19],[62,-1],[37,10],[26,11],[51,47],[34,43],[29,47],[53,117],[25,72],[23,94],[13,90],[10,99],[18,97],[17,51],[44,69],[48,52],[62,41],[52,26],[75,34],[61,23],[42,9],[39,-1],[95,-31],[83,-34],[30,-15],[95,-37],[117,-35],[130,-27],[112,-16],[169,-14],[119,-5],[119,8],[71,9],[125,19],[159,31],[93,13],[88,10],[128,11],[123,1],[61,-5],[25,-5],[90,-26],[157,-50],[70,-28],[35,-23],[86,-85],[51,-43],[52,-39],[62,-41],[85,-45],[34,-11],[94,-22],[152,-17],[37,2],[54,5],[42,13],[70,49],[23,11],[45,15],[63,17],[325,47],[119,22],[110,26],[65,19],[26,10],[86,47],[46,20],[87,34],[41,18],[37,21],[24,18],[47,47],[121,106],[30,14],[40,23],[37,29],[11,15],[73,79],[56,37],[23,11],[42,25],[40,47],[11,18],[15,44],[31,54],[25,16],[32,-1],[89,-35],[32,1],[65,29],[82,45],[66,21],[28,6],[86,-8],[53,-15],[23,-9],[32,-21],[21,-19],[52,-63],[65,-68],[31,-40],[57,-54],[94,-82],[62,-48],[34,-22],[49,-24],[94,-38],[29,-6],[38,-4],[75,0],[116,11],[42,7],[44,15],[51,24],[69,41],[49,37],[65,40],[43,32],[84,75],[34,36],[27,32],[20,30],[15,31],[59,134],[15,43],[20,79],[6,51],[19,117],[12,119],[4,53],[2,101],[-1,68],[5,65],[14,79],[13,44],[31,68],[51,97],[34,55],[36,52],[29,32],[122,129],[42,37],[27,14],[86,38],[75,18],[97,10],[78,3],[148,-18],[199,-28],[39,-2],[68,0],[43,3],[66,13],[72,4],[158,-9],[27,2],[26,5],[42,14],[25,12],[17,14],[21,25],[52,89],[1,12],[-2,69],[-17,47],[-13,61],[-2,34],[1,38],[8,39],[12,30],[16,28],[20,25],[30,24],[45,28],[56,25],[111,62],[18,13],[90,88],[24,19],[87,48],[32,12],[35,9],[27,1],[97,18],[49,-1],[42,-11],[54,-20],[42,-9],[22,-7],[102,-42],[33,-16],[66,-25],[33,-8],[31,-3],[67,3],[26,6],[35,13],[32,17],[41,29],[86,54],[26,21],[25,28],[36,52],[69,91],[34,65],[9,36],[11,25],[29,40],[43,54],[30,33],[25,21],[45,28],[55,30],[63,28],[78,24],[36,2],[53,6],[43,16],[49,22],[36,22],[33,26],[38,43],[51,74],[46,85],[137,305],[17,33],[29,44],[53,125],[30,53],[18,25],[123,136],[71,83],[23,22],[30,21],[93,55],[52,26],[65,24],[24,7],[116,20],[46,4],[50,0],[90,-8],[68,-12],[76,-20],[53,-18],[95,-43],[72,-39],[56,-37],[51,-42],[53,-50],[22,-28],[18,-31],[20,-47],[19,-50],[22,-69],[51,-202],[17,-123],[11,-118],[8,-52],[13,-46],[28,-54],[19,-23],[39,-32],[27,-12],[30,-7],[45,4],[60,28],[35,27],[32,35],[92,114],[120,144],[18,24],[70,118],[15,20],[25,23],[22,14],[48,13],[22,0],[206,-24],[58,4],[31,6],[71,23],[99,28],[48,20],[135,78],[81,21],[64,14],[64,10],[81,0],[27,-5],[50,-25],[28,-28],[25,-73],[39,-107],[51,-134],[10,-19],[15,-11],[42,-17],[46,-13],[131,26],[286,108],[157,36],[97,1],[257,-33],[163,-48],[58,-26],[145,-77],[133,-92],[129,-130],[27,-123],[-51,-248],[-48,-248],[-20,-178],[-6,-99],[12,-68],[33,-114],[68,-138],[72,-92],[85,-82],[75,-50],[80,-48],[168,-67],[108,-46],[140,-117],[85,-103],[105,-148],[184,-250],[100,-106],[135,-112],[153,-71],[62,-26],[74,-19],[77,-15],[235,-15],[111,-5],[390,39],[315,-37],[106,-19],[100,-2],[85,-19],[94,-32],[118,-25],[92,-16],[133,-13],[59,-2],[210,-45],[156,-45],[167,-89],[40,-19],[43,-10],[50,25],[52,45],[131,305],[67,135],[100,112],[56,57],[87,81],[72,52],[61,21],[62,3],[75,-9],[340,-155],[343,-244],[135,-64],[136,-51],[164,-69],[154,-78],[95,-50],[81,-31],[58,-12],[58,-7],[51,0],[50,4],[174,31],[59,15],[56,21],[350,160],[162,83],[49,17],[98,25],[155,68],[38,3],[184,-30],[42,-4],[63,2],[64,12],[52,17],[50,24],[67,37],[64,40],[105,78],[214,176],[35,24],[25,12],[58,12],[59,-2],[50,-13],[136,-46],[43,-7],[49,4],[44,12],[43,19],[35,27],[63,63],[68,59],[77,50],[75,36],[77,22],[-27,82],[-63,107],[-122,195],[-81,102],[-70,-30],[-195,-36],[-74,-66],[-35,-58],[-46,-3],[-27,13],[-71,-27],[-129,-32],[-84,-8],[-73,2],[-92,14],[-15,-12],[-20,-7],[-7,-14],[-14,-11],[-44,-8],[-38,6],[-23,17],[-9,1],[-100,272],[-103,0],[-4,31],[-102,-5],[-9,87],[11,3],[6,99],[26,121],[-31,48],[-28,122],[-37,77],[-55,66],[-28,19],[-25,9],[-24,182],[7,175],[124,-20],[101,2],[114,14],[137,49],[102,66],[-19,31],[-3,14],[7,20],[-4,46],[30,6],[63,-3],[45,76],[20,8],[3,29],[-40,41],[-23,53],[8,18],[27,6],[148,-14],[55,-52],[12,16],[40,71],[84,126],[15,24],[8,70],[16,15],[1,84],[-32,16],[59,121],[19,-14],[24,4],[69,-54],[89,-47],[40,23],[23,53],[121,-29],[68,51],[155,-28],[82,-17],[89,35],[89,37],[75,33],[114,44],[59,7],[54,50],[104,8],[32,-15],[114,26],[-52,53],[84,22],[-5,26],[-26,0],[-15,63],[12,163],[-40,129],[7,1],[128,-37],[35,-4],[110,0],[43,17],[19,3],[36,-13],[-6,84],[-35,4],[-73,24],[-3,47],[37,86],[25,-35],[61,58],[-11,29],[-9,12],[-3,26],[3,18],[49,17],[-17,41],[-21,20],[-14,55],[18,88],[26,6],[39,45],[-36,37],[8,31],[-14,46],[-1,12],[16,9],[33,10],[2,5],[28,9],[31,3],[92,-4],[26,1],[22,5],[38,-52],[15,-15],[128,-74],[56,-47],[82,2],[27,6],[67,-1],[39,-6],[24,14],[27,3],[32,-4],[45,-34],[44,-13],[53,2],[44,-23],[23,-3],[12,3],[26,-6],[30,6],[39,16],[36,-16],[7,-84],[10,-107],[-15,-52],[-15,-94],[137,35],[69,20],[49,-111],[20,-27],[20,-1],[44,5],[25,8],[72,11],[39,-27],[9,12],[47,-7],[27,2],[19,11],[58,-25],[32,-7],[13,-10],[21,3],[45,-1],[35,-14],[41,7],[115,-18],[21,-34],[10,-28],[8,-34],[26,-88],[32,-56],[9,1],[61,-24],[-13,-49],[46,-62],[4,-60],[42,-126],[143,22],[70,-2],[17,-4],[29,3],[53,17],[20,-28],[13,-48],[17,-27],[15,-37],[-12,-20],[-10,-7],[-3,-20],[6,-28],[13,-14],[49,-5],[2,-20],[-31,-12],[14,-75],[155,-14],[5,-23],[-10,-23],[-31,-27],[-44,-30],[-60,1],[-75,-4],[-132,-58],[-44,-11],[1,-89],[8,-42],[-8,-142],[-19,-64],[-48,-55],[-56,-114],[-31,-35],[-49,-41],[-29,-37],[27,-73],[42,-61],[40,-69],[87,-66],[47,-27],[42,30],[109,40],[62,-4],[51,-17],[77,-88],[48,-72],[29,5],[89,74],[29,5],[50,-16],[191,-35],[34,71],[49,194],[46,32],[38,52],[86,56],[62,-11],[51,-23],[18,35],[35,38],[-3,44],[22,60],[19,40],[31,135],[64,-14],[92,-25],[16,35],[23,29],[138,109],[198,214],[17,27],[31,68],[14,42],[11,43],[10,86],[1,63],[-5,51],[-14,58],[-23,58],[-144,251],[-85,182],[-33,87],[-40,137],[-23,123],[-23,96],[-7,40],[-14,175],[4,158],[-7,83],[-19,94],[-42,158],[-7,83],[1,44],[6,56],[13,56],[20,29],[55,46],[28,17],[90,42],[74,48],[12,11],[42,64],[17,39],[14,58],[16,105],[28,91],[10,20],[63,82],[22,20],[20,10],[23,5],[24,-1],[21,-6],[90,-44],[42,-27],[76,-75],[27,-39],[32,-63],[15,-36],[36,-138],[6,-40],[1,-39],[-4,-41],[-7,-38],[-11,-39],[-13,-26],[-53,-69],[-23,-19],[-61,-32],[-62,-18],[-96,-8],[-98,8],[-16,-3],[-42,-17],[-22,-15],[-33,-41],[-17,-38],[1,-24],[30,-72],[16,-25],[25,-28],[25,-23],[27,-18],[29,-13],[31,-10],[53,-6],[104,7],[284,44],[47,13],[117,45],[40,20],[106,81],[32,30],[29,33],[49,71],[33,61],[48,117],[80,227],[37,72],[18,45],[11,48],[4,151],[-9,42],[-40,82],[-110,127],[-189,196],[-44,42],[-76,66],[-150,96],[-84,59],[-83,-55],[-65,64],[-132,125],[-17,35],[-18,18],[-33,88],[-25,79],[-30,147],[-4,12],[4,15],[-9,-1],[-6,48],[2,25],[22,78],[12,84],[-22,2],[-123,23],[-119,13],[-131,1],[-29,4],[-69,-175],[-34,-78],[-28,10],[-17,-37],[-62,-119],[-9,1],[-18,-28],[-84,47],[-153,-67],[-24,-18],[-22,-11],[-56,-36],[-18,2],[-74,-51],[-2,-21],[-77,-58],[-23,2],[-38,-28],[-7,-25],[-74,-55],[-18,-1],[-60,-45],[-30,-17],[-34,39],[-28,19],[-21,10],[-35,10],[-70,8],[-44,53],[-53,53],[-11,-3],[-32,44],[-31,-2],[-55,-41],[-98,55],[-31,32],[-14,27],[-69,-35],[-65,209],[2,27],[14,111],[-145,27],[-53,-13],[-27,-14],[-32,-25],[-22,-14],[-45,-16],[-21,-2],[-67,6],[-41,2],[-66,-20],[-40,-16],[-81,-61],[-46,-43],[-24,-11],[-62,-15],[-29,-2],[-13,4],[-11,32],[-14,-12],[-76,-54],[-65,-50],[-56,-30],[-22,-9],[-69,-5],[-36,-17],[-6,-57],[-10,-25],[-30,-29],[-7,-14],[0,-45],[12,-24],[10,-39],[31,-36],[44,-178],[1,-16],[15,-26],[11,-34],[1,-35],[9,-15],[-1,-20],[-33,-2],[-30,37],[-16,10],[-31,10],[-159,66],[-45,30],[-35,27],[-29,42],[-3,19],[3,22],[13,35],[2,19],[-4,42],[-18,64],[-13,30],[-44,-22],[-14,-20],[-30,-36],[-28,-23],[-94,-52],[-81,-34],[-27,-4],[54,-181],[45,-17],[19,-17],[32,-39],[-18,-25],[-26,-63],[-4,-23],[3,-24],[16,-27],[36,-51],[14,-11],[19,-8],[34,-67],[6,-18],[2,-33],[11,-14],[50,-38],[18,-20],[5,-15],[5,-47],[13,-14],[45,-32],[-43,-38],[-10,-24],[-8,-30],[0,-33],[-13,-19],[-21,-52],[-22,-34],[-24,-51],[-95,14],[-59,-16],[-43,-15],[-60,-17],[-132,-28],[-44,0],[-51,13],[-46,16],[-46,19],[-46,25],[-46,22],[-104,55],[-64,24],[-49,15],[-59,-1],[-51,-8],[-16,-6],[-13,-24],[-29,16],[-57,-36],[-34,9],[-72,7],[-179,30],[-123,4],[-54,-8],[9,-30],[23,-47],[-24,11],[-28,4],[-167,7],[-70,13],[-12,-3],[-15,7],[-20,16],[17,-58],[7,-118],[0,-64],[10,-38],[-16,-6],[13,-37],[20,-32],[-97,1],[-34,62],[-56,-42],[-47,12],[10,24],[-14,26],[-36,83],[-37,31],[-29,20],[-61,-49],[-47,-35],[-41,5],[-52,0],[-24,7],[-17,32],[-9,24],[-20,33],[-20,22],[-3,43],[26,27],[13,35],[0,27],[-46,24],[-30,43],[-9,37],[-3,26],[-65,23],[-64,19],[-64,20],[-69,-14],[-62,-16],[-34,-41],[2,-60],[15,-68],[25,-26],[59,-20],[56,-10],[56,-42],[22,-78],[-7,-20],[-68,-43],[-59,-41],[-14,-14],[-59,-24],[-46,-15],[-55,-5],[-24,-22],[5,-33],[37,-54],[38,-20],[64,10],[56,-1],[34,-33],[67,-27],[41,-29],[-57,-20],[-58,-2],[-76,-12],[-32,-65],[-65,13],[-62,29],[-44,24],[-34,39],[-38,49],[-28,28],[-41,45],[-29,64],[-12,41],[-12,73],[-34,70],[-20,118],[-58,134],[34,122],[37,94],[39,105],[57,226],[-8,18],[-49,70],[-11,-29],[-11,-20],[-58,-61],[-34,43],[-60,-52],[-53,-64],[-67,-73],[-24,10],[-68,-45],[8,-16],[-46,-19],[-16,26],[-107,77],[-54,44],[-75,0],[-78,17],[-86,-25],[-178,-58],[-108,93],[-73,49],[-38,20],[-55,19],[-43,73],[-98,1],[-65,152],[-96,105],[-64,86],[-182,144],[-92,79],[-60,31],[-74,88],[-197,-18],[-118,-14],[-106,-19],[-85,9],[-52,3],[-127,204],[-87,179],[-39,59],[-39,41],[-31,85],[25,95],[12,53],[32,57],[50,87],[45,43],[26,14],[63,14],[113,13],[82,17],[57,30],[13,-18],[69,101],[36,115],[57,39],[62,40],[-88,151],[-9,51],[-30,110],[-67,102],[-72,104],[-118,179],[-46,64],[-76,29],[-52,38],[-80,18],[-64,-1],[-27,89],[-29,67],[-30,22],[46,72],[43,75],[80,147],[65,86],[67,73],[81,81],[89,97],[138,247],[39,-30],[62,30],[47,-48],[128,85],[77,44],[48,31],[36,-31],[60,61],[54,52],[55,49],[54,41],[21,19],[32,18],[11,20],[19,23],[9,21],[65,56],[40,63],[24,30],[63,45],[31,15],[48,10],[66,-21],[57,-14],[52,-11],[11,51],[-84,82],[69,98],[77,61],[106,81],[47,13],[63,-2],[224,-36],[77,-10],[57,-9],[20,44],[-53,33],[12,82],[12,92],[-7,86],[119,149],[0,40],[4,31],[-37,26],[-49,-9],[-83,7],[-50,25],[-2,43],[-36,69],[-23,58],[-15,74],[-20,69],[-15,62],[-1,36],[-8,30],[-13,41],[-6,44],[16,60],[25,53],[7,35],[57,55],[40,48],[89,38],[42,38],[20,11],[-26,102],[17,16],[25,41],[15,46],[1,20],[-5,38],[-9,23],[-15,59],[1,36],[5,28],[7,23],[29,57],[35,49],[24,15],[27,11],[136,40],[41,17],[38,22],[102,69],[43,34],[34,43],[25,48],[15,53],[19,101],[15,63],[20,63],[23,61],[27,60],[28,59],[31,57],[83,138],[33,45],[17,18],[37,29],[73,33],[42,27],[41,33],[34,32],[36,43],[33,29],[38,25],[32,19],[27,20],[18,27],[11,30],[30,58],[19,27],[45,47],[43,32],[83,41],[115,91],[20,-27],[4,-11],[38,-48],[34,-25],[57,-9],[44,-11],[62,-19],[26,-21],[25,-8],[54,12],[35,23],[47,64],[10,25],[193,86],[55,-34],[40,32],[50,27],[165,18],[46,28],[34,114],[70,-43],[57,-52],[90,-54],[80,-62],[51,-85],[32,-51],[66,-58],[36,-5],[15,84],[29,36],[39,120],[40,81],[37,52],[102,95],[45,73],[99,-10],[110,11],[83,0],[76,58],[79,69],[119,51],[116,57],[45,19],[101,9],[15,0],[92,65],[71,25],[163,49],[71,48],[50,27],[94,-34],[73,-21],[46,-29],[50,-53],[37,-32],[46,-29],[34,-31],[42,-53],[18,-14],[29,-5],[38,8],[5,-65],[-25,-129],[156,31],[15,-30],[115,80],[164,68],[92,29],[163,95],[-47,102],[-4,52],[-16,92],[-74,131],[-2,14],[11,82],[16,102],[-137,68],[-164,36],[-163,68],[-87,31],[-48,-39],[-34,51],[20,186],[5,100],[-8,98],[0,75],[4,89],[7,85],[-2,69],[26,106],[37,117],[102,85],[104,136],[41,-89],[72,-71],[88,5],[46,-18],[26,-89],[61,-79],[9,-48],[5,-63],[37,-35],[-24,-115],[-6,-39],[62,14],[162,24],[383,184],[61,-91],[58,-73],[78,-59],[52,-63],[197,199],[66,69],[128,44],[190,-37],[135,-5],[190,-39],[123,-49],[97,-116],[56,-35],[74,-59],[13,-54],[-16,-34],[-28,-41],[-2,-36],[48,-7],[63,-18],[96,-60],[-74,-296],[-7,-131],[-76,-86],[-43,-21],[-88,-28],[-24,5],[-21,-103],[-11,-57],[-1,-70],[14,-53],[16,-37],[53,-91],[23,-44],[19,-53],[38,7],[17,-68],[3,-44],[-3,-38],[154,-40],[70,-22],[-13,-67],[-38,-90],[-17,-84],[-25,-94],[-20,-59],[-50,-77],[-30,-69],[1,-155],[273,-273],[47,-150],[41,-75],[42,-100],[31,-15],[54,-9],[109,-63],[80,100],[31,49],[111,90],[39,37],[25,39],[148,130],[48,22],[41,40],[102,-65],[151,192],[-89,83],[-20,30],[195,134],[177,218],[-35,45],[-55,23],[-43,-3],[-30,5],[-74,-22],[8,154],[42,96],[46,277],[-13,141],[-31,72],[-87,81],[-49,70],[-45,60],[14,252],[42,131],[-1,82],[17,77],[97,20],[4,89],[-6,76],[11,41],[24,45],[62,41],[55,30],[31,9],[34,23],[51,15],[63,10],[58,15],[74,-159],[43,-69],[52,-70],[-3,-105],[-13,-63],[-78,-65],[-48,-98],[87,15],[58,6],[53,-6],[41,-14],[49,-52],[95,-49],[4,-44],[16,-27],[57,-56],[36,-66],[31,-4],[59,-15],[32,-4],[51,16],[79,-27],[86,-44],[64,-54],[50,-13],[13,2],[22,43],[41,35],[41,4],[88,-17],[-27,-59],[-21,-38],[70,-50],[43,-63],[-15,-13],[-15,-43],[8,-26],[37,-84],[31,-66],[-2,-67],[-21,-49],[3,-29],[15,-86],[11,-21],[39,-57],[50,-55],[57,-48],[31,-19],[41,-37],[35,-36],[-30,-16],[-51,-78],[-70,-51],[-95,-66],[30,-61],[32,-70],[57,-134],[38,-120],[7,-28],[25,-155],[10,-48],[37,-10],[7,-27],[-5,-28],[-29,-49],[-4,-16],[1,-25],[11,-47],[20,-49],[13,-17],[69,-54],[81,-65],[52,-36],[51,-18],[44,-16],[16,-3],[15,16],[25,64],[40,-21],[29,8],[20,32],[33,79],[7,5],[26,75],[0,24],[41,29],[37,23],[37,39],[5,-51],[85,68],[29,36],[38,28],[-5,12],[61,61],[56,51],[19,-8],[106,-33],[22,28],[90,93],[67,18],[42,24],[130,-54],[97,-24],[51,-33],[79,-55],[43,67],[67,-44],[-19,-36],[90,-18],[109,-29],[71,-104],[98,-88],[-51,-71],[-39,-48],[120,-78],[21,-6],[29,-20],[58,-43],[4,-10],[64,-45],[69,-80],[58,-34],[32,-1],[83,-43],[56,-72],[-9,-88],[-2,-35],[-7,-51],[33,-101],[-46,-40],[-47,-80],[-107,3],[-150,0],[-51,-19],[-66,-18],[-42,-15],[-41,-2],[-103,24],[-71,-80],[-145,44],[-98,-122],[-42,-105],[-25,-109],[-153,-103],[-64,-33],[-58,-38],[-1,-75],[-19,-89],[-57,-136],[-25,-162],[-36,-117],[-30,-32],[30,-79],[58,-45],[41,-50],[49,-105],[25,-66],[29,-62],[33,-88],[66,-121],[43,-5],[55,-1],[62,16],[16,-1],[75,-41],[41,2],[44,6],[-7,-82],[52,-8],[122,-63],[33,-6],[33,4],[62,-12],[53,-21],[50,-12],[47,-29],[78,-70],[37,-59],[-67,-71],[-29,-64],[-15,-43],[-71,-119],[-18,-33],[-14,-41],[-4,-37],[1,-45],[-19,-63],[-32,-66],[13,-51],[-11,-33],[-78,-223],[-39,-114],[-36,-145],[-60,-276],[20,-128],[57,-157],[134,10],[58,2],[78,-4],[15,2],[49,-12],[33,-3],[35,-10],[127,-45],[85,-33],[66,-16],[51,-8],[75,-4],[61,-8],[45,-9],[37,9],[30,2],[136,-8],[73,-17],[92,-25],[87,-33],[70,-18],[114,-54],[152,-86],[102,-50],[43,-25],[47,-31],[67,-58],[16,-8],[50,-49],[33,-28],[22,-36],[14,-32],[36,-49],[99,-96],[54,-42],[86,-55],[48,-14],[61,-42],[68,-44],[88,-54],[117,-67],[201,-94],[192,-40],[169,32],[-42,110],[-24,33],[-41,103],[-9,38],[-6,57],[10,38],[24,70],[12,43],[18,44],[4,39],[10,33],[41,45],[9,56],[-2,30],[5,26],[17,27],[13,54],[-7,33],[7,40],[26,43],[18,37],[20,30],[20,41],[27,28],[35,41],[-1,32],[15,19],[140,23],[60,-28],[58,-17],[37,4],[73,28],[44,33],[76,66],[-22,24],[-29,58],[-22,25],[-23,31],[-19,18],[-16,20],[-53,52],[-50,-11],[-60,-2],[-142,22],[-69,18],[-58,8],[-47,15],[24,40],[12,56],[11,30],[-1,24],[-5,46],[4,38],[-18,60],[-23,58],[-4,56],[-38,-8],[-24,9],[-23,19],[-10,29],[-24,-5],[-47,28],[-11,30],[-25,-2],[-36,10],[-20,12],[-17,27],[-18,4],[-41,23],[-34,-17],[-29,-11],[-100,-23],[-41,3],[-120,29],[-55,-2],[-94,18],[-61,31],[-136,14],[-72,-2],[-64,6],[-43,32],[-27,1],[-23,11],[-29,7],[-12,18],[-64,-9],[-39,7],[9,44],[11,27],[-1,39],[-5,57],[47,34],[42,32],[-16,34],[5,9],[8,95],[24,50],[45,40],[-36,33],[-58,75],[-31,22],[19,35],[15,6],[-1,31],[-49,0],[14,63],[-26,68],[3,45],[18,47],[99,-62],[26,7],[93,56],[9,-3],[49,78],[36,43],[39,7],[-55,101],[5,34],[96,-25],[56,-43],[8,21],[22,-11],[33,-23],[43,71],[32,49],[11,67],[46,17],[-10,34],[34,2],[-14,89],[51,46],[-17,16],[25,24],[86,-73],[67,81],[18,-12],[17,35],[98,-37],[54,111],[107,-39],[79,-27],[99,-35],[57,-17],[19,-3],[-3,42],[-1,85],[-36,86],[-93,324],[35,9],[126,45],[-16,60],[252,45],[-5,47],[42,11],[-6,53],[70,0],[44,-83],[-23,-178],[16,-91],[40,-83],[14,-76],[104,-21],[73,-36],[-62,-49],[31,-33],[0,-32],[-33,-46],[-52,-48],[-73,-43],[-131,-76],[-34,-41],[-5,-59],[178,7],[109,-19],[98,-42],[42,-68],[76,-97],[67,-90],[56,-104],[43,-84],[70,14],[123,35],[74,19],[67,9],[43,-61],[-34,-61],[-90,-68],[-42,-39],[-33,-53],[-49,-21],[-109,-88],[5,-38],[47,-9],[113,-17],[58,-18],[-24,-39],[36,-47],[86,2],[120,41],[103,22],[-8,35],[89,103],[90,56],[23,-55],[66,2],[112,-44],[145,-29],[16,-52],[106,5],[126,-73],[5,-187],[13,-100],[20,1],[16,-54],[12,-53],[44,-92],[16,-77],[65,24],[18,19],[44,2],[67,18],[23,21],[28,16],[65,8],[43,-9],[41,-17],[37,1],[30,7],[40,-26],[44,-5],[34,2],[40,-6],[27,7],[21,20],[24,6],[16,11],[34,10],[31,25],[46,5],[28,1],[18,8],[27,4],[20,-10],[25,-5],[21,1],[16,7],[17,-10],[28,-41],[52,-11],[22,5],[25,18],[20,-14],[32,-31],[22,-9],[10,-22],[-32,-48],[-23,-20],[-104,-71],[17,-24],[46,-4],[25,-104],[30,10],[40,-84],[40,-60],[116,-97],[4,-15],[-34,-46],[-39,-110],[-13,-13],[-52,-24],[-37,-10],[-41,-21],[-36,-8],[-26,12],[-36,33],[-31,-24],[-17,-1],[-23,5],[-33,12],[-46,1],[-32,-10],[-52,-45],[-31,-35],[-32,-16],[-21,-6],[-26,28],[4,29],[63,67],[-12,43],[67,4],[52,117],[-150,148],[-42,-89],[-33,-16],[-36,-6],[-16,-46],[-20,17],[1,49],[-3,71],[-33,-9],[-69,51],[-28,-40],[-33,-30],[-46,-35],[-52,-18],[-60,6],[-50,15],[-24,21],[-26,1],[15,-67],[-24,-28],[-19,-15],[-9,-67],[1,-38],[39,-18],[54,-17],[24,24],[38,2],[37,-2],[55,-45],[18,-28],[23,-8],[21,-18],[28,-35],[-5,-47],[-33,-53],[-17,-72],[-10,-32],[-27,4],[15,-42],[11,-15],[-17,-15],[-33,-14],[-27,-19],[-27,-7],[-39,-36],[-9,-13],[-8,-33],[-20,-51],[30,-19],[-26,-25],[-22,-13],[-16,-5],[-43,-3],[1,-42],[-10,-27],[-9,-69],[-2,-39],[-8,-37],[48,4],[7,-15],[-61,-53],[7,-42],[79,-15],[69,-7],[74,-22],[57,-21],[89,7],[75,11],[46,-15],[35,-29],[101,-78],[53,-42],[168,-170],[24,-83],[37,-77],[37,-74],[38,-69],[51,-52],[84,-56],[13,-31],[10,-51],[-2,-36],[55,-267],[57,-321],[-31,-6],[-2,-108],[-2,-158],[-2,-141],[41,14],[34,6],[22,0],[27,-7],[16,-14],[37,-16],[89,-15],[44,-4],[49,-11],[40,-17],[141,-88],[67,-49],[66,-54],[51,-53],[102,-89],[69,-37],[73,-32],[61,-22],[66,-9],[61,3],[152,55],[183,75],[255,119],[92,34],[114,29],[152,25],[132,32],[95,32],[116,53],[84,44],[80,26],[153,31],[67,5],[94,-6],[100,-2],[87,8],[85,21],[62,29],[63,64],[113,144],[47,50],[60,44],[147,76],[76,44],[137,54],[194,67],[83,25],[227,96],[75,51],[126,97],[75,53],[208,134],[228,236],[121,92],[94,52],[134,59],[312,147],[347,175],[145,67],[341,183],[280,116],[92,28],[65,15],[142,12],[47,2],[90,-5],[43,-8],[378,-90],[479,-138],[231,-60],[489,-108],[111,-17],[123,-25],[148,-16],[131,-26],[120,-13],[248,-22],[117,-15],[126,-2],[453,-17],[97,-23],[156,-25],[106,-25],[97,-24],[42,-21],[45,-17],[50,-27],[90,-75],[565,-454],[459,-137],[52,-8],[295,-93],[239,-103],[122,3],[422,215],[62,2],[46,-10],[77,-26],[173,-65],[62,-27],[78,-108],[30,-56],[-6,-25],[4,-22],[32,-42],[51,-47],[143,-152],[50,-52],[183,-185],[16,-14],[30,-74],[14,-11],[65,42],[21,3],[21,-6],[27,-1],[29,7],[74,22],[20,-128],[3,-2],[58,41],[8,27],[27,-6],[184,77],[265,114],[753,-146],[1558,94],[559,66],[95,114],[389,-9],[580,-209],[8658,-4438],[381,-334],[2432,-3106],[581,-744],[840,-87],[911,105],[794,-29],[775,-29],[1103,-38],[1066,-44],[1191,-42],[3613,-133],[135,55],[38,16],[55,19],[34,-1],[54,-23],[33,-5],[28,2],[70,19],[37,16],[38,29],[14,20],[9,41],[2,33],[-4,40],[-34,78],[1,50],[10,104],[1,27],[-5,46],[-17,53],[-7,36],[10,55],[3,30],[-3,43],[-40,139],[-4,24],[8,51],[17,35],[41,33],[31,19],[24,26],[12,28],[10,69],[14,50],[17,43],[31,18],[35,14],[34,39],[-3,46],[3,61],[14,59],[5,13],[31,52],[56,18],[40,-4],[32,-15],[12,-9],[25,-11],[17,1],[33,18],[34,27],[17,26],[10,37],[-7,34],[-20,27],[-19,19],[-46,16],[-73,16],[-20,10],[-8,22],[1,34],[7,16],[42,25],[25,12],[47,45],[40,28],[19,24],[8,27],[-1,32],[-7,51],[3,31],[1,55],[5,38],[6,23],[44,73],[37,39],[42,31],[35,14],[33,26],[32,32],[8,21],[-5,24],[-13,34],[-14,11],[-30,17],[-64,21],[-30,14],[-21,20],[-8,14],[-15,45],[7,21],[32,19],[25,9],[63,12],[13,5],[8,15],[7,25],[20,19],[97,31],[12,1],[30,-7],[37,-17],[28,2],[14,12],[19,29],[2,14],[-8,57],[-22,77],[-12,26],[-9,37],[-2,21],[3,31],[11,37],[5,73],[6,42],[20,81],[20,18],[44,-3],[58,4],[23,11],[40,34],[28,14],[55,15],[13,16],[-3,19],[-25,25],[-12,23],[-16,44],[-12,54],[2,12],[15,16],[22,13],[16,16],[28,37],[8,14],[13,77],[7,18],[14,11],[19,8],[23,-3],[23,-39],[12,-29],[11,-13],[11,-2],[31,3],[2,20],[-18,35],[-15,41],[-7,45],[0,58],[3,35],[16,39],[18,12],[18,2],[16,-7],[24,-30],[23,-17],[32,-39],[5,-18],[15,-22],[24,-8],[15,7],[7,49],[-7,30],[15,10],[61,4],[37,17],[23,25],[10,47],[8,21],[30,42],[33,53],[31,32],[61,94],[24,13],[7,29],[-8,44],[17,24],[10,37],[13,6],[36,-2],[44,3],[11,-14],[22,-55],[11,-10],[32,-22],[13,-3],[22,3],[13,27],[11,6],[19,-16],[31,-11],[24,4],[18,9],[33,30],[17,1],[12,-8],[15,-51],[16,-20],[9,0],[19,14],[18,18],[23,13],[11,1],[29,-17],[52,-3],[33,2],[25,8],[10,-3],[4,-28],[11,-12],[15,6],[13,-10],[23,2],[29,28],[24,7],[28,-9],[13,1],[38,32],[23,4],[18,-14],[4,-14],[28,-23],[17,-1],[17,31],[34,15],[32,5],[24,9],[28,18],[21,19],[25,36],[19,41],[14,-1],[0,-19],[13,-11],[22,8],[29,-2],[33,15],[13,-5],[30,-34],[16,-12],[22,-9],[23,-20],[1,-23],[8,-15],[15,-12],[31,6],[26,-11],[7,-16],[28,-18],[14,-23],[24,-12],[10,-25],[32,-22],[37,-9],[3,-4],[-2,-31],[3,-5],[27,-5],[22,-15],[4,-16],[28,-17],[-6,-40],[9,-30],[9,-11],[27,-7],[17,-12],[19,0],[36,-26],[13,-15],[5,-16],[21,-20],[6,-35],[20,-11],[37,7],[36,27],[22,21],[26,-7],[30,17],[45,-10],[25,-14],[32,-21],[4,-10],[28,-36],[29,-2],[17,-5],[29,0],[18,-6],[17,0],[26,-9],[18,-13],[17,-3],[13,-24],[5,-18],[10,-10],[9,-21],[0,-21],[-6,-17],[0,-17],[8,-32],[-9,-16],[5,-24],[-11,-18],[8,-9],[-12,-32],[19,-15],[14,-37],[-10,-9],[8,-68],[-3,-50],[-11,-7],[40,-26],[14,-14],[21,3],[34,-14],[4,-10],[19,-9],[5,-97],[-10,-12],[-10,2],[2,-27],[-4,-11],[12,-27],[-3,-17],[-18,-42],[-10,-6],[-16,-22],[2,-20],[-5,-5],[-14,-153],[-25,-48],[-17,-14],[-16,-25],[-17,-8],[-16,-1],[-15,-21],[-18,-10],[-22,-4],[1,-15],[-14,-24],[-13,-9],[-32,1],[-22,-22],[-20,-33],[30,-43],[5,-15],[15,1],[-2,-19],[10,-17],[0,-16],[-11,-31],[0,-20],[16,-38],[-2,-19],[6,-7],[14,-61],[9,-10],[2,-18],[20,-56],[3,-14],[10,-7],[6,-16],[15,-17],[16,-50],[18,-25],[40,-34],[15,-46],[11,-8],[-6,-8],[7,-48],[10,-30],[-6,-71],[-14,-45],[-3,-42],[-23,-14],[-13,-15],[-9,-22],[-16,-12],[-15,-2],[-20,-12],[5,-53],[-13,-28],[-15,-18],[-38,-19],[-29,-25],[-23,-56],[-18,-22],[6,-7],[-28,-17],[-51,-9],[-29,-11],[-25,-23],[-20,-26],[-41,-35],[-12,-21],[-6,-22],[-3,-42],[-10,-54],[15,-8],[-22,-24],[-15,-27],[4,-24],[-26,-33],[-24,-11],[12,-32],[8,-36],[13,-10],[-6,-24],[-1,-22],[7,-17],[12,-11],[30,-8],[18,9],[64,-5],[14,-6],[11,5],[33,-4],[21,3],[18,-4],[13,4],[41,-8],[23,-2],[37,12],[29,-7],[52,4],[33,-10],[21,-18],[7,-16],[10,-7],[18,1],[27,-7],[43,7],[32,-9],[54,-32],[-5,-25],[21,-39],[3,-19],[14,-25],[-10,-13],[13,-14],[49,7],[30,-5],[36,1],[20,-8],[34,1],[22,-6],[5,-7],[4,-27],[26,-23],[29,4],[28,-4],[7,-9],[16,-4],[19,-20],[18,-8],[12,1],[19,22],[11,0],[16,-11],[31,-3],[16,5],[6,-19],[17,-16],[29,-14],[7,-23],[8,-5],[31,10],[28,-5],[27,-23],[17,-2],[31,12],[28,-25],[18,-12],[22,1],[45,14],[8,16],[14,2],[42,23],[19,-4],[42,8],[16,0],[34,-14],[20,-17],[33,-8],[2,-10],[-7,-24],[25,-22],[19,1],[11,-6],[14,-18],[15,-10],[26,3],[7,-10],[33,-14],[12,-11],[27,-44],[4,-24],[15,-45],[13,-14],[22,-15],[11,-14],[0,-25],[17,-32],[2,-26],[-6,-33],[8,-9],[40,5],[27,-40],[31,-24],[12,-15],[6,-66],[7,-17],[20,-13],[32,-7],[41,-2],[26,17],[16,0],[32,-32],[11,-3],[27,13],[39,6],[14,-6],[28,-28],[34,-13],[51,-51],[35,-20],[23,-19],[14,-5],[27,8],[16,21],[12,-4],[10,-19],[42,-40],[24,2],[23,-13],[23,-28],[13,-10],[21,-8],[45,-11],[23,-14],[13,-23],[2,-50],[11,-11],[26,-12],[13,-11],[22,40],[7,28],[5,50],[18,54],[6,69],[-7,30],[-17,24],[-40,33],[-23,26],[-1,15],[15,16],[75,57],[18,18],[5,18],[-9,61],[10,26],[37,48],[24,38],[9,19],[18,68],[-4,69],[0,80],[-4,56],[-14,28],[-24,14],[-58,21],[-16,9],[-20,20],[-4,17],[3,24],[36,81],[25,32],[38,35],[24,26],[27,36],[40,38],[21,34],[37,42],[11,-3],[39,20],[14,-5],[15,-12],[19,3],[12,-13],[0,-22],[32,-8],[20,0],[8,-7],[-1,-14],[9,-5],[22,-1],[31,-9],[3,-27],[14,-8],[10,-15],[12,-6],[24,-2],[22,-8],[1,-16],[-13,-18],[0,-16],[8,-7],[23,-6],[10,-15],[21,-5],[17,-14],[9,-14],[26,6],[17,-37],[11,13],[35,4],[6,-6],[38,-12],[6,2],[11,18],[10,-2],[8,-12],[50,15],[17,21],[13,3],[18,-10],[13,8],[31,9],[5,-6],[29,7],[26,-1],[10,7],[25,1],[19,9],[17,2],[11,-18],[17,-10],[13,4],[5,11],[32,-20],[8,16],[16,1],[12,-12],[13,-4],[14,-20],[24,-8],[49,-4],[17,9],[7,-13],[13,-5],[11,-13],[16,-3],[31,-29],[20,-7],[13,-20],[35,-15],[6,-11],[18,-15],[14,0],[26,-9],[19,-10],[3,-19],[15,-22],[14,1],[14,-25],[14,-9],[11,-20],[15,-11],[4,-24],[-9,-37],[11,-46],[-6,-8],[4,-28],[-2,-19],[10,-17],[18,-3],[8,-17],[5,-24],[22,-18],[35,-35],[10,-2],[9,-20],[15,-16],[14,-7],[12,-31],[11,-14],[-1,-8],[24,-60],[11,-2],[-5,-11],[6,-10],[-1,-19],[9,-17],[19,-74],[34,-29],[16,-19],[59,-19],[19,-21],[10,-2],[17,-16],[18,-35],[21,-8],[11,-17],[11,0],[10,-13],[-10,-10],[6,-6],[39,7],[26,-14],[16,6],[41,-10],[18,-21],[43,3],[14,-5],[12,7],[24,-3],[4,20],[14,8],[3,-12],[22,4],[27,27],[23,-7],[-4,11],[10,6],[8,16],[13,3],[5,-10],[10,12],[15,-1],[8,14],[34,19],[12,-1],[32,-14],[22,9],[24,18],[47,28],[14,-1],[17,21],[24,22],[31,19],[56,17],[49,6],[14,-21],[16,23],[30,28],[65,50],[10,-11],[30,26],[60,79],[-5,4],[37,45],[71,77],[25,43],[29,39],[30,-12],[98,-69],[26,-13],[47,-12],[103,-11],[42,-10],[22,-2],[18,-8],[41,-8],[48,-27],[21,-6],[134,-6],[51,-12],[73,-23],[64,-17],[45,-26],[15,-1],[30,13],[19,-1],[42,8],[40,-3],[33,-26],[52,14],[14,9],[8,20],[-16,20],[-33,20],[-31,26],[-11,18],[-8,24],[-17,-6],[-30,40],[-24,18],[-14,26],[-30,41],[-5,14],[6,34],[8,18],[11,13],[12,23],[14,67],[3,28],[-1,39],[-7,9],[-19,-1],[-27,17],[-23,20],[-4,16],[1,42],[-5,17],[8,13],[16,2],[16,-10],[19,-2],[41,-34],[22,-2],[28,-9],[63,-18],[31,58],[6,-4],[23,41],[19,54],[24,-8],[20,9],[13,-8],[23,22],[25,39],[20,48],[21,31],[14,5],[14,-2],[38,-22],[38,0],[27,-5],[9,-7],[-6,-24],[1,-20],[17,-43],[16,-19],[-20,-21],[-4,-40],[-15,-12],[-65,-41],[-19,-31],[-12,-7],[-26,-33],[-40,-30],[15,-43],[-3,-37],[-13,-29],[1,-14],[18,-11],[1,-7],[-15,-27],[-5,-29],[-6,-11],[-21,-6],[-37,1],[-25,-6],[-18,-12],[-3,-10],[20,-69],[0,-18],[17,-27],[16,-39],[-5,-11],[-26,-14],[-25,-5],[-4,-10],[8,-21],[12,-19],[11,-35],[4,-23],[11,-26],[-1,-15],[-13,-50],[-24,-40],[2,-16],[24,-39],[2,-36],[-9,-56],[13,-22],[12,-3],[49,36],[19,7],[8,-8],[-7,-14],[23,-19],[-10,-25],[-2,-16],[13,-23],[11,-8],[17,-27],[7,-37],[-21,-27],[-8,-17],[-22,-21],[-1,-11],[17,-62],[10,-80],[-13,-28],[-47,-33],[-9,-8],[-17,-38],[-26,-23],[-27,-7],[3,-18],[13,-5],[1,-12],[-13,-20],[-1,-16],[11,-20],[-15,-20],[12,-42],[11,-6],[5,-14],[12,-9],[7,-15],[19,-5],[19,-18],[7,-23],[9,-2],[9,-14],[40,-20],[24,-25],[22,-4],[23,-27],[31,-15],[40,-49],[9,-18],[8,-42],[17,-15],[2,-27],[-11,-17],[10,-24],[7,-3],[52,5],[18,-4],[13,-14],[27,-16],[13,-2],[9,-20],[8,-4],[29,-2],[13,-17],[29,-13],[21,-21],[25,-15],[50,-18],[14,-14],[8,-15],[18,-17],[7,7],[16,-31],[8,-50],[8,-10],[15,-2],[8,-15],[1,-17],[19,-7],[-4,-15],[21,-15],[13,-19],[34,-4],[10,-12],[20,-4],[17,7],[48,29],[23,23],[11,-3],[90,-108],[49,-59],[10,-31],[11,-22],[27,-33],[20,-33],[13,-36],[2,-16],[26,-29],[-3,-10],[34,-21],[10,-11],[21,-9],[123,-79],[110,-95],[-30,-19],[-22,-20],[-11,-16],[-15,-7],[-33,-27],[-14,-19],[-33,-17],[-32,-33],[-19,-15],[-35,-38],[-96,-52],[-24,-8],[-43,-40],[65,-102],[311,-781],[279,-299],[13,8],[21,-6],[7,-7],[27,-12],[4,-7],[29,8],[16,-7],[5,7],[42,16],[30,7],[10,6],[51,6],[22,-4],[6,-9],[19,0],[43,6],[53,-1],[19,-20],[13,1],[11,-10],[19,-4],[24,10],[32,8],[39,16],[13,13],[16,7],[19,22],[18,7],[51,48],[6,17],[20,28],[62,43],[6,-2],[25,-31],[56,4],[6,-10],[39,-1],[32,-27],[4,-10],[21,-3],[42,12],[8,5],[31,-1],[55,11],[6,9],[15,0],[22,8],[15,11],[35,20],[46,22],[34,6],[78,17],[31,30],[29,12],[48,32],[37,19],[31,25],[11,6],[12,16],[45,30],[12,5],[67,52],[61,25],[69,22],[32,-17],[32,0],[24,-12],[6,-17],[16,-2],[0,-8],[15,1],[7,-13],[17,-15],[14,4],[7,-6],[19,2],[5,-8],[31,-9],[13,-13],[37,-1],[18,4],[28,-1],[8,5],[29,-7],[22,-20],[17,-10],[11,-23],[11,-13],[21,-11],[28,-7],[7,-14],[-8,-41],[-69,-14],[-15,-46],[302,-489],[58,-127],[20,-6],[24,10],[19,-22],[12,-34],[-2,-27],[11,-26],[8,-5],[-3,-14],[7,-16],[-11,-29],[-27,-11],[-20,-29],[-13,-12],[3,-20],[-3,-14],[-18,-28],[1,-9],[-13,-18],[-2,-22],[-29,-30],[-12,-24],[-1,-57],[16,-27],[26,-15],[20,-29],[2,-48],[6,-41],[22,-42],[-4,-40],[29,-29],[3,-9],[17,-11],[172,-64],[326,-120],[14,-35],[1,-21],[21,-15],[27,-1],[8,-7],[10,-26],[0,-29],[30,-3],[43,-22],[27,-40],[13,-45],[14,-37],[8,-36],[13,-37],[32,-60],[15,-40],[-6,-21],[7,-42],[-14,-24],[-3,-15],[25,-13],[16,-1],[13,7],[18,18],[18,12],[24,-3],[50,-44],[12,-1],[25,18],[21,27],[23,7],[28,2],[25,-4],[30,-1],[16,-6],[42,-29],[19,-22],[47,3],[33,-10],[31,-2],[17,5],[42,48],[44,40],[8,11],[5,40],[7,16],[16,23],[30,56],[37,29],[32,7],[58,-37],[14,-1],[42,10],[2,17],[-11,46],[6,15],[21,22],[20,9],[48,7],[11,-31],[17,-35],[7,-5],[19,5],[19,-5],[26,-29],[3,-21],[-17,-24],[-2,-15],[10,-17],[14,-10],[11,-21],[-12,-28],[-2,-25],[26,-72],[5,-24],[17,-43],[21,-15],[15,-27],[-8,-27],[1,-37],[11,-51],[16,-30],[36,-45],[5,-11],[-11,-55],[3,-22],[15,-16],[9,-30],[-21,-6],[-6,-11],[9,-40],[-28,-37],[-35,-19],[-12,-50],[0,-73],[10,-30],[1,-23],[-5,-36],[-1,-51],[-7,-16],[-4,-31],[4,-32],[5,-12],[2,-28],[8,-27],[-2,-28],[13,-27],[1,-26],[24,-30],[-13,-27],[2,-14],[37,-30],[20,-27],[10,-5],[505,-787],[-217,-174],[-10,-14],[-15,-9],[-19,-38],[-28,-26],[-16,-19],[-27,-15],[-8,-26],[-17,-20],[-18,-13],[-18,-5],[-13,-17],[-10,-21],[-15,-20],[-4,-13],[-24,-34],[-15,-8],[-7,-21],[7,-23],[-13,-23],[7,-22],[2,-30],[-16,-13],[-7,-19],[8,-31],[-11,-17],[7,-31],[-5,-12],[1,-27],[22,-22],[-4,-19],[-23,-13],[-18,0],[-14,-10],[-15,-30],[-25,-20],[-37,-2],[-30,-15],[-20,1],[-37,-27],[-23,-12],[-27,-9],[-16,-1],[-22,6],[-16,-7],[-5,-14],[-19,-11],[-15,-24],[-14,-11],[-22,-7],[-24,-15],[-18,-3],[-22,4],[-11,-14],[-26,-10],[-18,10],[-61,5],[-17,-4],[-32,28],[-82,-7],[-12,8],[-38,1],[-46,16],[-23,-26],[-19,-3],[-27,1],[-12,8],[-9,-16],[-9,-1],[-34,-27],[-17,15],[-26,4],[-11,7],[-32,6],[-26,-11],[-7,-10],[-17,-9],[-24,-37],[-21,-39],[-21,-6],[-11,-36],[-12,-26],[7,-26],[7,-10],[-5,-19],[7,-27],[-30,-34],[-9,-4],[-11,-23],[-23,-23],[-12,-2],[-8,10],[-30,8],[-25,-14],[8,-14],[-6,-14],[32,-10],[22,7],[19,-20],[9,-26],[4,-22],[-15,-47],[-9,-12],[-1,-17],[7,-11],[16,-7],[10,-11],[51,-14],[18,-16],[10,-18],[0,-14],[9,-25],[25,-7],[17,-10],[24,-28],[12,-7],[23,2],[21,-17],[4,-26],[31,-27],[36,-17],[12,-11],[15,-3],[15,-11],[32,5],[28,33],[28,-4],[18,-14],[9,-17],[28,-28],[11,-15],[4,-19],[-4,-17],[4,-33],[29,-33],[5,-39],[31,-9],[24,-38],[24,-7],[34,-4],[9,-7],[22,-38],[20,-19],[12,-3],[36,4],[11,-15],[5,-22],[-7,-21],[3,-45],[-21,-11],[-4,-30],[-16,-12],[-17,-5],[1,-28],[-21,-31],[-13,-6],[-7,-13],[-1,-17],[-15,-34],[-9,-38],[-25,-34],[-13,-29],[-6,-30],[467,-1591],[231,-789],[25,-81],[106,-366],[113,176],[839,1329],[907,-558],[184,-51],[398,-6],[689,106],[93,22],[126,114],[55,61],[-29,274],[3,94],[-1,319],[18,363],[146,-2],[203,-39],[102,63],[130,81],[69,59],[-9,13],[-14,8],[-23,1],[-10,47],[-9,60],[1,45],[4,69],[11,54],[7,18],[14,-6],[17,-17],[19,-1],[14,-18],[13,-4],[25,-31],[27,-12],[3,-7],[44,-35],[27,-7],[50,-28],[6,-9],[14,2],[61,-20],[23,-15],[46,-7],[23,6],[22,17],[25,-12],[25,-18],[26,9],[36,1],[35,-7],[5,5],[24,-9],[22,0],[5,-6],[-5,-19],[5,-24],[-2,-12],[13,-26],[13,-6],[19,-56],[10,-21],[28,-28],[17,-26],[-5,-30],[33,-25],[13,-22],[36,-8],[14,-17],[-10,-26],[2,-11],[14,-12],[15,0],[8,-15],[-1,-34],[20,-14],[23,19],[4,11],[19,-2],[13,-27],[3,-19],[9,-5],[39,8],[19,-25],[31,-9],[17,18],[23,11],[17,-16],[22,12],[14,1],[22,10],[36,0],[24,11],[53,-21],[17,-1],[12,-8],[12,-17],[18,1],[18,-40],[21,-21],[25,1],[23,-21],[23,-9],[13,-14],[26,-12],[9,-38],[7,-7],[70,65],[28,44],[15,8],[58,17],[18,1],[15,-7],[23,-2],[50,16],[37,25],[13,27],[4,26],[8,22],[10,12],[35,27],[26,9],[26,21],[50,77],[6,16],[15,18],[31,20],[37,40],[26,13],[31,0],[30,18],[14,22],[1,22],[24,54],[21,-19],[25,-4],[3,-4],[18,6],[42,-15],[14,-21],[17,-11],[1,-16],[8,-25],[-3,-15],[26,-35],[13,-33],[21,-25],[18,-26],[17,-18],[32,-20],[20,-8],[23,-25],[7,-21],[0,-21],[39,-55],[20,-14],[11,-21],[21,-15],[39,-45],[-11,-10],[-28,-13],[-24,-3],[-45,-32],[-30,-25],[-39,-40],[-19,-40],[-10,-26],[-17,-19],[11,-21],[45,-51],[67,-60],[39,-41],[24,-30],[75,-181],[7,-6],[-26,-51],[-12,-30],[-34,-42],[-30,-51],[-14,-37],[-46,-44],[-42,-36],[-12,-15],[-17,-29],[-14,-4],[-28,-16],[-27,-23],[-14,-18],[-5,-27],[-12,-25],[-2,-14],[-10,-13],[2,-9],[-30,-26],[-17,-33],[3,-40],[14,-5],[-2,-27],[-24,-120],[-20,-4],[-48,-30],[-48,-24],[-23,-14],[-14,-16],[-28,-44],[-26,-49],[1,-10],[-6,-39],[-16,-58],[15,-42],[-25,-22],[-40,-41],[-30,-40],[-85,-44],[-82,-50],[-22,-26],[-19,-12],[-21,-21],[-10,-17],[-39,-50],[-10,-20],[0,-30],[4,-41],[6,-28],[5,-62],[8,-20],[-1,-37],[9,-29],[8,-4],[-23,-52],[-20,-39],[-41,-71],[-23,-7],[-18,-14],[-11,-17],[-9,-25],[-14,-10],[-23,-25],[-27,-21],[-3,-41],[-13,-20],[-5,-19],[-14,-32],[-39,-69],[-97,-91],[-19,-57],[-74,-95],[-108,-141],[-70,-155],[46,-22],[76,-43],[6,-15],[10,-7],[12,-33],[14,-12],[6,-12],[-6,-7],[2,-36],[-5,-9],[-3,-56],[6,-14],[0,-29],[-9,-26],[-15,-24],[-6,-17],[-32,-40],[-24,-40],[-4,-14],[-13,-8],[-30,-28],[-5,-8],[-30,-11],[-24,-28],[-28,-21],[-54,-20],[-13,-16],[-9,0],[-26,-21],[-29,-54],[0,-13],[-20,-14],[-23,-46],[24,-16],[44,-33],[13,-36],[10,-14],[4,-15],[31,-36],[23,-10],[16,-1],[24,-17],[22,-9],[24,-3],[18,-26],[8,-3],[27,-27],[13,-7],[42,-43],[11,-17],[-2,-27],[9,-30],[28,-36],[3,-7],[23,-7],[15,2],[5,-11],[22,7],[17,-26],[8,1],[13,-17],[11,-22],[10,0],[6,-13],[30,-22],[15,-19],[-6,-43],[-12,-18],[-1,-20],[7,-29],[71,-138],[177,-325],[-10,-1],[-37,14],[-19,3],[-20,14],[-24,-8],[-59,-8],[-39,-39],[-11,-35],[4,-29],[-9,-19],[-4,-53],[-9,-8],[-15,-30],[1,-16],[-12,-20],[-4,-29],[-17,-18],[6,-13],[4,-24],[19,-24],[-12,-7],[-11,-18],[-26,-2],[-22,-32],[-20,-9],[-8,-14],[5,-22],[-15,-22],[-8,-2],[-6,-16],[-27,-18],[-11,-15],[-27,-16],[-21,-27],[-21,-13],[-6,-12],[-13,-3],[-39,-22],[-39,-11],[-12,-28],[-20,-16],[-13,-35],[-6,-29],[1,-20],[-16,-30],[-23,-23],[-26,-10],[3,-17],[-7,-13],[-29,-9],[-1,-11],[-20,-26],[-31,-13],[-14,-10],[-17,-50],[-13,-15],[-32,11],[-18,-1],[-45,-27],[-21,-9],[-39,0],[-14,6],[-37,-31],[-9,-12],[-24,-6],[-22,-38],[-16,-12],[-25,-1],[-8,-15],[-1,-16],[-7,-10],[-13,-1],[-22,-12],[-20,0],[-14,-11],[-10,2],[-7,-15],[-25,-9],[-8,-14],[-9,-2],[0,-14],[-13,-21],[-6,7],[-18,1],[-33,-10],[-14,19],[-29,-2],[-27,2],[-21,-4],[-6,11],[-16,-3],[-23,-12],[-6,-10],[-25,-3],[-12,3],[-36,22],[-10,-2],[-25,39],[-13,7],[-24,45],[-27,21],[-9,19],[-27,4],[-26,11],[-9,-7],[-37,0],[-10,-7],[-8,-23],[-13,-25],[-30,-30],[-14,-18],[-17,-99],[4,-16],[2,-34],[-12,-26],[1,-29],[-6,-24],[-28,-80],[-9,-8],[-26,2],[-38,-43],[-7,-15],[-28,-15],[-4,-41],[11,-8],[8,-21],[-9,-14],[5,-16],[8,-8],[30,-419],[-105,-154],[-83,-61],[56,-107],[9,-14],[87,-118],[-84,-50],[-47,-69],[58,-88],[17,-89],[0,-103],[210,-10],[58,55],[25,5],[53,17],[46,22],[139,40],[115,40],[258,1],[119,38],[33,93],[133,63],[130,81],[8,35],[311,-115],[387,12],[336,27],[425,-338],[59,-42],[-2,12],[15,12],[42,13],[16,13],[29,5],[18,19],[45,9],[24,20],[23,1],[28,-11],[14,4],[36,0],[-7,20],[-1,21],[19,10],[0,11],[15,33],[1,18],[20,52],[11,14],[12,2],[11,15],[19,2],[15,12],[6,28],[-2,12],[15,4],[11,19],[4,25],[-6,15],[18,19],[-3,25],[18,54],[21,38],[35,15],[37,11],[14,1],[-9,10],[16,7],[12,-2],[18,6],[11,12],[19,3],[-14,28],[12,20],[-3,29],[13,9],[0,13],[17,1],[24,-22],[9,-33],[26,-9],[4,-10],[21,-6],[6,-8],[23,2],[14,-7],[24,12],[36,0],[28,31],[16,26],[21,-16],[49,27],[21,3],[38,13],[23,12],[10,-1],[33,26],[11,-10],[14,5],[15,-3],[-1,11],[49,-4],[26,-6],[12,27],[17,6],[62,6],[13,-4],[19,6],[11,10],[13,24],[14,7],[6,12],[2,25],[8,21],[16,21],[-4,25],[27,56],[32,24],[33,8],[26,24],[20,4],[27,-3],[19,7],[34,5],[11,5],[18,-6],[10,3],[14,34],[0,22],[22,59],[-14,33],[-10,9],[-12,41],[-16,13],[35,-8],[39,3],[33,0],[5,9],[15,8],[17,-1],[29,-15],[6,-8],[34,-10],[21,-4],[17,7],[31,-6],[18,-9],[27,-1],[23,11],[17,24],[0,8],[32,-1],[33,-7],[11,8],[49,-11],[33,3],[21,-8],[38,-7],[21,-13],[10,-1],[37,20],[3,-6],[38,-18],[13,-13],[15,0],[39,12],[12,6],[8,28],[18,26],[21,13],[23,26],[16,43],[11,10],[7,26],[27,24],[13,36],[16,20],[13,4],[29,33],[15,11],[37,11],[12,1],[29,10],[15,10],[30,30],[25,15],[16,2],[6,19],[29,7],[19,13],[37,30],[27,28],[23,12],[-5,15],[5,39],[18,31],[25,29],[-1,34],[-8,26],[7,49],[18,33],[2,15],[36,26],[35,62],[3,14],[27,20],[17,-6],[8,4],[15,-8],[27,-3],[2,-6],[21,5],[9,-17],[6,-36],[12,-22],[14,10],[8,-5],[15,7],[87,-17],[12,-1],[30,7],[19,24],[0,11],[26,26],[45,18],[9,14],[30,18],[53,46],[37,45],[42,43],[39,4],[21,-4],[19,4],[18,15],[17,33],[17,18],[38,21],[25,22],[12,13],[12,7],[4,16],[20,15],[26,38],[13,10],[32,13],[9,10],[11,27],[17,9],[50,47],[59,9],[18,10],[23,-5],[8,-14],[18,-4],[5,-12],[32,-15],[14,-12],[19,10],[75,15],[10,11],[21,1],[38,-21],[17,-3],[33,-16],[9,-13],[29,-3],[6,-4],[14,-26],[9,-35],[-11,-47],[14,-15],[288,69],[148,159],[110,127],[183,127],[61,264],[18,14],[60,-2],[31,13],[43,7],[39,19],[25,15],[44,-4],[34,15],[6,20],[24,11],[-1,15],[10,18],[14,10],[18,43],[11,10],[-3,11],[15,1],[11,24],[-17,5],[-25,30],[-7,-5],[-22,19],[-8,1],[-22,34],[-14,33],[-24,21],[-13,20],[-14,13],[-2,10],[8,21],[1,27],[11,4],[5,14],[-5,18],[6,13],[-7,18],[5,31],[13,17],[11,-2],[-3,17],[10,8],[18,54],[32,34],[44,29],[33,30],[6,17],[16,30],[16,14],[15,22],[24,49],[49,77],[16,18],[17,25],[34,85],[11,9],[21,49],[5,24],[24,41],[10,27],[42,42],[10,22],[16,13],[15,28],[6,24],[19,22],[1,48],[-10,34],[-9,16],[-2,15],[7,39],[10,33],[2,23],[11,51],[40,22],[27,23],[18,21],[54,46],[15,25],[32,23],[9,20],[22,21],[36,27],[31,18],[27,21],[62,39],[31,31],[14,26],[11,12],[56,79],[5,10],[22,17],[27,45],[10,28],[31,4],[13,-3],[41,20],[14,18],[33,4],[3,6],[321,516],[51,-22],[48,14],[11,9],[24,5],[19,23],[12,5],[43,58],[3,27],[15,-1],[38,7],[17,-4],[17,13],[2,19],[21,7],[4,31],[15,39],[16,23],[27,-4],[21,19],[21,7],[13,19],[0,20],[11,14],[-16,19],[0,10],[14,41],[-1,21],[15,15],[1,14],[-8,29],[12,37],[10,11],[-16,74],[-20,16],[-4,15],[-7,-1],[-19,12],[2,10],[-13,19],[9,26],[4,33],[7,20],[-3,11],[28,40],[7,20],[6,0],[22,19],[16,26],[10,42],[2,19],[-4,18],[6,21],[12,-1],[8,10],[0,18],[25,27],[7,36],[11,9],[-5,9],[4,21],[-9,19],[-4,28],[-7,12],[0,51],[-3,31],[19,19],[8,15],[-11,11],[18,26],[31,0],[16,10],[-1,6],[22,14],[29,33],[7,24],[16,12],[34,58],[-4,25],[5,16],[15,23],[18,18],[3,51],[51,50],[16,22],[28,23],[53,39],[37,18],[17,12],[43,15],[19,9],[31,7],[7,6],[47,14],[34,1],[28,-5],[22,-11],[19,0],[29,-6],[32,-13],[29,9],[3,-5],[54,3],[16,5],[8,-10],[14,3],[31,18],[55,9],[15,7],[23,1],[31,17],[25,-5],[14,5],[16,-8],[31,8],[7,23],[45,5],[22,18],[27,4],[13,14],[27,17],[15,3],[3,17],[17,13],[41,2],[24,35],[18,5],[7,39],[25,31],[24,22],[16,37],[31,20],[6,19],[7,3],[5,26],[-16,30],[17,27],[11,43],[16,34],[25,2],[52,-5],[27,-13],[23,-2],[12,-10],[15,9],[38,-4],[12,4],[20,-7],[46,17],[29,-27],[46,-3],[34,-36],[24,-10],[23,9],[25,-10],[32,-4],[23,9],[10,16],[18,5],[12,10],[287,-259],[-368,772],[-1,13],[10,20],[-3,18],[4,18],[-6,5],[6,23],[-3,21],[12,31],[2,44],[8,8],[-9,16],[23,23],[10,15],[12,37],[4,31],[-12,18],[0,31],[12,38],[62,35],[-3,27],[11,21],[0,17],[14,10],[23,31],[24,42],[19,18],[8,22],[22,13],[-16,5],[5,7],[-19,19],[-28,9],[-8,9],[1,12],[-27,10],[-27,21],[-28,38],[-11,21],[1,15],[11,36],[26,19],[17,4],[27,17],[13,16],[25,20],[14,0],[21,21],[15,8],[8,19],[17,16],[19,6],[16,34],[31,45],[4,9],[24,26],[24,34],[-27,49],[-6,18],[-27,25],[-15,6],[-11,24],[7,29],[-10,15],[1,23],[-5,19],[14,37],[12,9],[2,48],[9,2],[24,27],[30,62],[-7,18],[10,18],[11,7],[18,24],[12,5],[8,19],[389,84],[284,219],[26,10],[41,28],[42,11],[12,0],[10,17],[16,14],[19,5],[8,15],[15,6],[-10,58],[-8,24],[21,16],[5,22],[-1,19],[-8,15],[-1,21],[23,16],[7,12],[-5,24],[4,9],[-7,24],[-7,8],[-5,25],[-13,18],[14,9],[4,13],[14,19],[26,16],[12,52],[-4,10],[22,44],[4,19],[10,13],[6,19],[-5,45],[14,35],[16,7],[18,33],[61,17],[66,38],[47,16],[6,13],[19,-2],[19,5],[8,14],[31,6],[78,76],[121,33],[34,16],[13,0],[7,9],[26,9],[32,16],[22,8],[6,-4],[28,4],[31,-11],[14,0],[2,-22],[29,3],[32,-5],[26,0],[12,7],[10,-5],[14,10],[0,24],[23,21],[-5,14],[8,27],[-26,74],[-17,12],[9,10],[-13,19],[-4,25],[-15,22],[-30,11],[-2,8],[13,22],[-16,29],[4,7],[-25,14],[-16,33],[2,34],[9,35],[-5,14],[-15,21],[2,9],[-7,31],[-6,10],[-4,21],[-11,27],[-15,55],[-6,33],[5,25],[12,20],[22,23],[-4,26],[12,26],[8,48],[-14,13],[-54,32],[-28,36],[-2,9],[-43,30],[-15,50],[-6,46],[21,148],[4,20],[-27,26],[-26,7],[-19,36],[-23,24],[-11,22],[-28,22],[-15,7],[-14,30],[-8,8],[-4,21],[-12,26],[-3,14],[13,33],[-16,30],[-24,21],[1,38],[-6,21],[16,22],[37,37],[6,38],[-1,37],[12,19],[10,27],[-3,19],[7,6],[5,40],[-4,29],[12,28],[11,13],[8,19],[4,36],[-9,23],[-32,31],[-3,23],[14,21],[1,17],[-7,11],[5,22],[-13,11],[-14,30],[-1,25],[-13,36],[-17,33],[-11,10],[-37,61],[24,57],[12,5],[16,16],[-13,37],[16,28],[19,19],[1,10],[24,23],[13,24],[5,30],[17,15],[17,23],[40,30],[16,23],[13,10],[3,13],[-19,32],[-12,5],[-15,35],[-13,5],[-1,35],[-21,36],[-20,9],[-13,18],[13,16],[-5,26],[-11,32],[-6,26],[-16,10],[-9,17],[-17,41],[5,34],[7,21],[-6,10],[-4,54],[18,38],[9,9],[2,23],[24,22],[10,48],[-23,5],[-17,11],[-28,33],[-10,18],[4,34],[-16,16],[-7,18],[-15,-13],[-7,5],[-12,30],[-20,15],[-15,3],[-18,32],[-16,25],[-10,4],[-6,17],[2,26],[-7,38],[8,19],[-2,19],[15,29],[-6,23],[-35,3],[-50,-13],[-29,-14],[-33,4],[-9,7],[-20,-2],[-53,9],[-36,-6],[-38,0],[-38,15],[-34,29],[-11,25],[-25,15],[-5,12],[-54,29],[-8,26],[-10,19],[-7,-2],[-16,15],[-25,-1],[0,9],[-10,11],[-44,17],[-9,11],[-11,-6],[-37,-8],[-8,-10],[-38,-29],[-19,0],[-29,-16],[-5,-8],[-22,-8],[-26,-15],[-19,1],[-53,-16],[-3,-5],[-42,-3],[-21,-8],[-17,12],[-5,12],[-41,17],[-37,8],[-3,18],[-15,20],[-3,19],[-15,25],[-12,7],[-13,22],[-15,2],[-37,24],[6,52],[0,31],[9,10],[-7,19],[-1,32],[-5,6],[-5,58],[-10,5],[-12,34],[-13,2],[-34,18],[-25,4],[-15,27],[-12,3],[-4,18],[-12,15],[2,18],[10,22],[-151,423],[-5,31],[-36,86],[-118,332],[19,11],[34,37],[1,7],[14,7],[25,38],[4,13],[24,12],[13,25],[13,3],[20,14],[21,36],[10,11],[2,27],[11,20],[-7,13],[9,33],[17,19],[-15,17],[-5,23],[14,5],[8,22],[1,22],[14,11],[13,28],[6,23],[14,5],[18,22],[26,21],[10,24],[13,14],[7,19],[10,7],[6,16],[35,45],[10,17],[25,17],[12,26],[77,375],[-167,343],[189,532],[384,1197],[53,166],[121,376],[20,61]],[[776155,454882],[-24,-15],[-12,-14],[-31,-4],[-27,-19],[-8,1],[-15,-15],[-39,-16],[-9,5],[-11,29],[-15,0],[-16,18],[4,15],[-4,23],[-18,18],[-1,13],[9,40],[-8,7],[3,23],[-5,7],[-5,31],[-11,18],[-13,38],[-2,43],[-19,30],[-13,48],[-12,30],[-9,34],[-17,28],[-12,29],[-7,36],[-14,49],[-17,47],[-22,42],[-12,32],[-8,75],[-8,27],[-17,34],[-5,40],[-9,-3],[-53,6],[-15,-7],[-21,17],[-15,7],[-63,-11],[-51,5],[-7,4],[-23,-6],[-42,1],[-19,-5],[-16,16],[-11,-3],[-29,11],[-12,8],[-24,-3],[-9,-6],[-17,1],[-13,12],[-12,-4],[-21,12],[-16,43],[-4,21],[3,40],[-13,13],[-20,2],[-34,-9],[-24,4],[2,15],[-9,18],[0,26],[-5,23],[-7,5],[-31,65],[-6,21],[-4,31],[14,11],[36,-9],[21,2],[11,9],[-5,27],[-19,24],[-5,16],[-52,78],[-15,16],[1,40],[-3,18],[-8,2],[-22,29],[-38,36],[-22,18],[-4,24],[-20,28],[-11,10],[20,14],[33,8],[15,-13],[15,5],[12,16],[50,15],[3,16],[34,34],[34,12],[20,0],[9,9],[24,-8],[17,1],[26,21],[-14,43],[-19,18],[-17,36],[-33,8],[-33,25],[-4,27],[27,27],[11,20],[22,8],[1,24],[16,26],[12,7],[-3,12],[10,21],[15,5],[9,-6],[14,4],[16,19],[32,5],[8,12],[16,6],[24,-4],[12,-7],[24,5],[17,7],[8,-10],[19,-7],[27,3],[28,-8],[12,-13],[2,-17],[21,3],[4,12],[14,10],[19,-7],[12,-11],[57,1],[35,14],[41,5],[22,6],[44,1],[48,5],[79,0],[17,2],[22,-11],[6,-18],[12,-15],[25,-13],[83,-11],[21,-10],[108,-21],[47,-3],[50,13],[54,22],[46,22],[25,16],[68,57],[24,43],[4,13],[22,20],[20,14],[33,1],[23,-5],[25,1],[64,18],[43,23],[9,0],[48,23],[29,11],[19,17],[17,1],[31,12],[22,1],[27,-12],[56,6],[1,-9],[30,-3],[19,4],[2,-14],[-5,-17],[-4,-40],[2,-14],[-6,-25],[16,-48],[12,-8],[51,11],[21,12],[27,-3],[31,-14],[23,6],[23,-10],[36,-10],[7,3],[24,-4],[50,1],[21,-11],[13,6],[125,2],[-26,-56],[-55,-98],[-34,-66],[-26,-55],[-61,-28],[-57,-19],[-62,-16],[-55,-20],[-56,-13],[-57,9],[-62,18],[-8,-45],[-6,-83],[5,-59],[9,-7],[6,-44],[12,-13],[2,-21],[10,-20],[-4,-26],[12,-19],[-2,-6],[26,-49],[-3,-11],[11,-40],[20,-16],[-1,-17],[7,-21],[-9,-34],[7,-7],[9,-32],[12,-8],[-3,-17],[6,-8],[12,-32],[-5,-31],[-13,-13],[7,-18],[-25,-7],[-17,4],[-29,14],[-26,-4],[-7,-7],[-13,2],[-18,-19],[-27,-13],[-30,-60],[-22,-33],[-20,-6],[-13,-23],[-39,-14],[-3,-13],[-27,-25],[-1,-13],[-10,-8],[-7,-35],[-27,-47],[-32,-50],[-25,-36],[-52,-71],[-26,-31],[-20,-16],[-29,-6],[-19,-17],[-51,-63],[-17,-17],[-19,-33],[-19,-26],[2,-19],[-10,-15],[-51,-34],[-10,-23],[-19,-20],[-11,2],[-18,-26],[-21,-37],[3,-23],[-4,-19],[-15,-40],[-8,-4],[-1,-26],[-23,-48],[-15,-19],[-21,-7],[-21,-1]],[[566899,679340],[135,-176],[87,-99],[75,-74],[54,-55],[210,-114],[91,-39],[85,-62],[82,-65],[36,-24],[-63,-58],[30,-27],[-82,-95],[68,-27],[-3,-6],[65,-27],[10,-6],[-14,-49],[9,0],[36,106],[9,-3],[40,93],[-2,7],[31,54],[44,49],[38,32],[99,88],[89,75],[149,130],[32,35],[-5,3],[22,39],[10,43],[3,30],[-7,43],[-60,206],[-9,25],[-26,41],[-18,19],[-43,29],[-28,12],[-52,10],[-82,7],[-1,-13],[-46,0],[-6,23],[-12,0],[6,-24],[-66,-4],[-7,17],[-41,-12],[-97,-44],[-40,-15],[-42,-10],[-332,-52],[-38,-4],[-32,1],[-65,6],[-61,-2],[-210,-27],[-55,-10]],[[566931,678022],[51,-51],[76,-86],[41,-43],[65,-77],[81,-86],[118,-131],[259,-287],[121,-68],[-7,-16],[-53,-89],[-46,-72],[-56,-84],[-27,-19],[-182,-64],[32,-118],[265,-142],[207,222],[15,-3],[101,44],[-68,194],[114,0],[120,210],[116,63],[20,-31],[47,-32],[60,-23],[18,17],[82,-44],[-4,-5],[12,-27],[14,-1],[14,-32],[60,0],[35,62],[67,10],[27,-7],[24,-14],[47,-18],[83,-24],[67,-23],[27,45],[111,-60],[109,62],[101,-52],[92,75],[2,3],[97,-49],[372,-190],[97,-50],[303,-154],[21,14],[62,-16],[497,34],[421,29],[34,10],[138,56],[5,0],[100,41],[53,-28],[228,-64],[10,-33],[30,-33],[37,-50],[43,-24],[2,19],[15,35],[13,19],[30,31],[18,14],[58,53],[0,8],[45,43],[23,50],[9,45],[9,21],[-8,2],[-11,47],[-14,32],[-8,26],[-18,28],[-29,58],[-25,42],[-24,59],[-40,87],[-57,130],[-41,119],[-20,48],[-24,50],[-30,69],[-17,28],[-33,49],[-33,28],[-34,21],[-28,11],[-49,14],[-28,0],[-51,-7],[-48,-14],[-93,-45],[-33,-17],[-29,-12],[-51,-15],[-309,-74],[-59,-10],[-53,-2],[-29,1],[-55,10],[-52,18],[-55,30],[-38,29],[-25,24],[-66,82],[-16,18],[-43,31],[-82,45],[-25,18],[-39,42],[-27,47],[-37,96],[-25,43],[-18,22],[-40,32],[-44,22],[-25,8],[-48,8],[-33,-1],[-50,-9],[-49,-21],[-38,-27],[-32,-34],[-26,-45],[-9,-25],[-7,-47],[0,-25],[11,-92],[-1,-30],[-11,-51],[-12,-28],[-16,-27],[-43,-59],[-36,-38],[-46,-34],[-56,-25],[-50,-11],[-82,-9],[-2,5],[-67,-8],[3,3],[-46,-5],[-55,-3],[-139,1],[-103,-12],[-153,-16],[-28,-2],[-100,-11],[1,-7],[-42,-6],[-21,0],[-16,7],[-17,1],[-1,-7],[-30,5],[-55,21],[-2,7],[-85,47],[-57,23],[-41,6],[-64,-2],[0,-6],[-42,-9],[-42,-17],[-15,-2],[7,-6],[-8,-10],[-19,-3],[-49,-23],[-65,-16],[-10,9],[-63,-2],[-39,5],[-68,25],[-33,13],[-53,36],[-27,25],[-29,46],[-25,70],[-25,135],[-4,13],[-13,84],[-1,24],[9,55],[-62,-3],[-47,-35],[-136,-153],[-24,32],[-23,-3],[-16,-8],[-18,-28],[-30,-14],[-15,4],[-19,19],[-11,26],[-13,12],[-18,-9],[-16,-16],[-42,-18],[-29,-18],[-25,-2],[-13,6],[-23,36],[-18,8],[-23,-4],[-39,5],[-17,-6],[-14,-13],[-52,-5],[-8,-7],[8,-14],[-28,-6],[-51,-28]],[[567292,671718],[96,-26],[53,-73],[56,-65],[11,-18],[0,-20],[-5,-199],[0,-32],[-6,-326],[-7,-294],[0,-18],[36,1],[32,-13],[6,-16],[32,-6],[18,2],[10,8],[16,-7],[62,12],[10,6],[26,-4],[17,3],[10,9],[22,2],[29,-2],[21,-9],[124,-62],[35,0],[43,-89],[20,-22],[54,-48],[27,-16],[45,-36],[92,-59],[56,-40],[16,-9],[63,-1],[50,4],[-2,98],[-12,67],[-3,33],[4,14],[-13,23],[11,9],[-2,35],[10,9],[-2,15],[57,58],[53,51],[21,68],[28,59],[37,41],[39,34],[75,24],[69,29],[45,45],[38,56],[7,54],[3,80],[3,26],[11,42],[41,57],[34,70],[16,58],[-3,43],[4,41],[-7,11],[2,23],[24,22],[-6,3],[10,22],[18,24],[38,32],[50,28],[3,-4],[20,24],[41,18],[0,9],[50,21],[50,7],[2,-6],[50,0],[48,-11],[11,0],[36,-31],[10,0],[66,-45],[42,-18],[29,-7],[30,-2],[43,4],[26,8],[37,16],[32,22],[10,-1],[28,31],[24,50],[5,26],[-1,224],[3,39],[20,47],[-9,20],[8,15],[-9,29],[-6,4],[18,9],[1,-17],[8,-8],[8,11],[36,32],[54,45],[11,16],[106,68],[12,9],[23,7],[19,15],[21,2],[29,17],[23,-11],[6,13],[-26,14],[-12,-5],[-17,-15],[-7,0],[25,25],[22,1],[19,-11],[40,55],[17,41],[6,40],[13,18],[-1,16],[-4,167],[2,98],[12,79],[11,46],[72,114],[28,68],[31,116],[5,80],[-4,70],[-13,101],[11,141],[11,94],[13,87],[13,65],[32,85],[-95,37],[-6,-1],[-98,39],[-157,61],[-142,59],[-56,21],[-44,11],[-106,5],[-39,3],[-18,-30],[-10,-45],[-10,-22],[-22,-32],[-9,-19],[-9,-34],[-47,-50],[-10,-17],[-6,-24],[-2,-25],[2,-70],[-15,-59],[-47,-71],[-38,-50],[-14,-23],[-16,-41],[-31,-41],[-38,-26],[-34,-19],[-28,-24],[-33,-40],[-24,-23],[-51,-37],[-29,-16],[-63,-45],[-130,-73],[-67,-41],[-41,-24],[-43,-14],[-47,8],[-10,-60],[3,-30],[18,-24],[-3,-19],[-36,-52],[-15,-14],[-14,-30],[-13,-15],[-44,-29],[-12,-18],[-1,-49],[41,-26],[-9,-28],[-29,-63],[-20,-35],[-8,-7],[-50,-22],[-63,-36],[-72,-35],[-22,-9],[-83,-46],[-20,-14],[-63,-29],[-85,-46],[-74,-34],[-3,-8],[-134,39],[-25,-59],[22,-54],[-19,-18],[-13,-2],[-45,14],[-38,1],[-29,-14],[-27,-64],[-21,-18],[-52,-11],[-15,-22],[-6,-26],[-9,-21],[-63,-23],[-17,-29],[-30,-38],[-70,-39],[-52,-51],[-60,-46],[-86,-51],[-63,-14],[-18,-31],[-1,-30],[-10,-51]],[[567930,669534],[1,-5],[54,-48],[42,-34],[38,-39],[20,-48],[9,-71],[23,-32],[1,-23],[8,-15],[53,-51],[39,-2],[92,13],[92,3],[77,-2],[104,-9],[55,-19],[59,-1],[144,10],[24,11],[12,23],[7,29],[4,43],[-10,52],[-30,62],[-76,93],[-62,56],[-119,45],[-87,49],[-55,85],[-32,59],[-25,62],[-12,58],[-93,-14],[-60,-2],[-17,10],[-43,-13],[-35,-43],[-60,-64],[-36,-42],[-98,-112],[-4,-9],[-4,-65]],[[570811,674679],[15,-8],[83,-31],[15,61],[-2,16],[-28,7],[-15,8],[-41,9],[-27,-62]],[[627543,930433],[0,-9314],[6885,1445],[-4947,8030],[-1938,-161]],[[688525,464677],[1,-54],[65,-2],[-12,-78],[75,-54],[61,-35],[77,-8],[4,-38],[-3,-49],[-32,-84],[85,-15],[62,-14],[70,-21],[44,-11],[58,-6],[34,1],[75,30],[124,78],[72,34],[51,20],[18,9],[49,35],[26,26],[83,84],[23,22],[34,27],[54,35],[38,30],[62,57],[26,30],[31,43],[36,69],[36,61],[21,24],[24,19],[53,26],[30,4],[30,-3],[43,-11],[47,-18],[84,-46],[37,-16],[194,-75],[56,-33],[106,-75],[40,-47],[49,-46],[162,-58],[60,-4],[86,6],[51,14],[108,-15],[44,13],[95,48],[45,24],[-28,64],[-16,65],[31,24],[-2,79],[3,75],[-43,1],[-261,100],[16,85],[3,77],[1,88],[7,97],[-19,37],[12,7],[-80,104],[-60,70],[-14,61],[-42,203],[-26,75],[-12,55],[-40,4],[-9,30],[29,11],[-8,62],[-20,36],[-23,18],[-44,116],[-38,40],[-23,21],[-20,25],[-83,41],[-35,-17],[-98,4],[-55,-91],[-56,-23],[-188,-65],[-38,-22],[-97,-37],[10,-68],[23,-34],[-1,-62],[-66,-20],[-82,-17],[-47,-26],[-85,5],[-36,6],[-17,23],[-117,57],[-12,17],[-45,35],[17,68],[39,10],[15,10],[6,28],[-9,18],[-98,26],[-74,11],[2,18],[-34,-6],[-32,-13],[-36,-8],[-75,-8],[-46,-29],[-19,-20],[-35,-45],[-25,-22],[-14,-6],[-53,11],[-56,27],[-88,65],[-79,45],[-51,23],[66,-398],[291,-170],[78,-45],[75,-266],[63,-225],[-5,-38],[-107,22],[0,-93],[-8,-69],[-19,-40],[-35,-24],[-20,16],[-134,-97],[-80,-30],[11,-37],[5,-43],[-50,-3],[-96,-2],[-96,-19],[-100,-17],[-72,-15],[-49,11],[-14,-10]]]}