Skip to content

Instantly share code, notes, and snippets.

@sdbernard
Last active November 12, 2015 10:48
Show Gist options
  • Select an option

  • Save sdbernard/3864ea6c1e27674edb14 to your computer and use it in GitHub Desktop.

Select an option

Save sdbernard/3864ea6c1e27674edb14 to your computer and use it in GitHub Desktop.
d3 module 3
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>How far does Isis’ influence extend?</title>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js" charset="utf-8"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Raleway:100normal,200normal,300normal,400normal,500normal,600normal,700normal,800normal,900normal|Open+Sans:400normal|Lato:400normal|Roboto:400normal|Oswald:400normal|Droid+Sans:400normal|Droid+Serif:400normal|Lobster:400normal|PT+Sans:400normal|Ubuntu:400normal|Playfair+Display:400normal&amp;subset=all" rel="stylesheet" type="text/css">
<style type="text/css">
body {
background-color: #fff1e0;
margin-top: 3em;
font-family: 'Raleway', sans-serif;
font-weight: 400;
}
svg {
background-color: #ecf8fe;
}
h1 {
font-weight: 300;
font-size: 36px;
color: #333333;
margin-top: 0;
margin-bottom: 0;
margin-left: -2px;
}
h6 {
font-size: 12px;
margin-bottom: 0.2em;
margin-top: 6px;
font-weight: 800;
text-transform: uppercase;
color: #af516c;
}
.mapholder {
background: #fff9f1;
padding: 20px 20px 14px;
width: 900px;
box-sizing: border-box;
margin: 0 auto;
box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
}
.boundary {
stroke: #7d827d;
fill: none;
stroke-width: 1px;
stroke-dasharray: 1, 2;
}
.support {
fill: #c59b95;
}
.control {
fill: #8a4954;
}
.disputed {
fill: #efedea;
}
.subjectCountry{
font-weight: 700;
font-size: 1.5em;
fill: #706F6F;
letter-spacing: 2px;
}
.place-label {
font-size: 12px;
text-transform: uppercase;
text-anchor: middle;
}
.legendLabel {
font-size: 14px;
}
</style>
</head>
<body>
<div class="mapholder">
<h6>Conflict in the Middle East</h6>
<h1>How far does Isis’ influence extend?</h1>
<p>Since The Islamic State of Iraq and the Levant proclaimed itself to be a worldwide caliphate in June 2014, it has steadily increased its presence over Syria and Iraq. But just how far does it's influence spread to?</p>
</div>
<script type="text/javascript">
//Width and height
var w = 860;
var h = 520;
//Define map projection
var projection = d3.geo.mercator()
.center([41, 34.9 ])
.translate([ w/2, h/2 ])
.scale([ w * 5.1 ]);
//Define path generator
var path = d3.geo.path()
.projection(projection);
//Create SVG
var svg = d3.select('.mapholder')
.append('svg')
.attr('width', w)
.attr('height', h)
.attr('opacity', 0)
//Load in GeoJSON data
d3.json('isis.json', function(isis) {
// //Bind data and create one path per GeoJSON feature
var disputedFills = svg.append('g');
var countryFills = svg.append('g');
var isisSupport = svg.append('g');
var isisControl = svg.append('g');
var boundaryLines = svg.append('g');
var countryNames = svg.append('g');
var subjectCountries = svg.append('g');
var legend = svg.append('g');
countryFills.selectAll('path')
.data(topojson.feature(isis, isis.objects.countries).features)
.enter()
.append('path')
.attr({
'd': path,
'id': function(d) { return d['ISO_A3']; },
'class': 'country',
'fill': function(d) { if(d.properties.name === 'Syria' || d.properties.name === 'Iraq') { return '#f8f7f4'} else { return '#efedea'; }},
'stroke': function(d) { if(d.properties.name === 'Syria' || d.properties.name === 'Iraq') { return '#7d827d'} else { return '#a7a592'; }},
'stroke-width': function(d) { if(d.properties.name === 'Syria' || d.properties.name === 'Iraq') { return 2} else { return 1; }}
});
console.log(isis);
disputedFills.selectAll('path')
.data(topojson.feature(isis, isis.objects.disputed).features)
.enter()
.append('path')
.attr('d', path)
.attr('class', 'disputed')
isisSupport.selectAll('path')
.data(topojson.feature(isis, isis.objects.support).features)
.enter()
.append('path')
.attr('d', path)
.attr('class', 'support')
.attr('opacity', 0)
.transition().delay(2000).duration(1000).attr('opacity', 0.8);
isisControl.selectAll('path')
.data(topojson.feature(isis, isis.objects.control).features)
.enter()
.append('path')
.attr('d', path)
.attr('class', 'control')
.attr('opacity', 0)
.transition().delay(1000).duration(1000).attr('opacity', 1);
boundaryLines.selectAll('path')
.data(topojson.feature(isis, isis.objects.boundaries).features)
.enter()
.append('path')
.attr('d', path)
.attr('class', 'boundary')
countryNames.selectAll('.place-label')
.data(topojson.feature(isis, isis.objects.countrynames).features)
.enter().append('text')
.attr('class', 'place-label')
.attr('transform', function(d) { return 'translate(' + projection(d.geometry.coordinates) + ')'; })
.text(function(d) { return d.properties.name; });
subjectCountries.append('text')
.attr('class', 'subjectCountry')
.attr('x', 230)
.attr('y', 220)
.text('SYRIA')
subjectCountries.append('text')
.attr('class', 'subjectCountry')
.attr('x', 560)
.attr('y', 300)
.text('IRAQ')
legend.attr('transform', 'translate(' + 10 + ',' + 10 + ')')
legend.append('rect')
.attr({
'width': 130,
'height': 50,
'fill': '#ffffff',
'opacity': 0
})
.transition().delay(1000).duration(500).attr('opacity', 1);
legend.append('rect')
.attr('transform', 'translate(' + 10 + ',' + 10 + ')')
.attr({
'width': 20,
'height': 10,
'class': 'legend control',
'opacity': 0
})
.transition().delay(1000).duration(1000).attr('opacity', 1);
legend.append('rect')
.attr('transform', 'translate(' + 10 + ',' + 30 + ')')
.attr({
'width': 20,
'height': 10,
'class': 'legend support',
'opacity': 0
})
.transition().delay(2000).duration(1000).attr('opacity', 0.8);
legend.append('text')
.attr('transform', 'translate(' + 35 + ',' + 20 + ')')
.attr('class', 'legendLabel')
.attr('opacity', 0)
.text('Isis control')
.transition().delay(1000).duration(1000).attr('opacity', 1);
legend.append('text')
.attr('transform', 'translate(' + 35 + ',' + 40 + ')')
.attr('class', 'legendLabel')
.attr('opacity', 0)
.text('Isis support')
.transition().delay(2000).duration(1000).attr('opacity', 1);
/* transitions*/
svg.transition().delay(200).duration(800).attr('opacity', 1);
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"countries":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"name":"Azerbaijan"},"id":"AZE","arcs":[[0,1]]},{"type":"MultiPolygon","properties":{"name":null},"id":"-99","arcs":[[[2,3,4,5]],[[6,7,8,9]],[[10,11,12,13]]]},{"type":"MultiPolygon","properties":{"name":null},"id":"-99","arcs":[[[14,-8]],[[-6,15,-14,16]]]},{"type":"MultiPolygon","properties":{"name":"Cyprus"},"id":"CYP","arcs":[[[17,18]],[[19]],[[20,21,-4]],[[22,23,24,25,-10,26,-12]]]},{"type":"MultiPolygon","properties":{"name":"Egypt"},"id":"EGY","arcs":[[[27]],[[28]],[[29]],[[30,31,32]]]},{"type":"Polygon","properties":{"name":null},"id":"-99","arcs":[[-5,-22,33,-19,34,-23,-11,-16],[-20]]},{"type":"MultiPolygon","properties":{"name":"Iran"},"id":"IRN","arcs":[[[35]],[[-1,36,37,38,39,40,41,42]]]},{"type":"Polygon","properties":{"name":"Iraq"},"id":"IRQ","arcs":[[-41,-40,-39,-38,43,44,45,46,47,48,49,50,51,52,53,54,55]]},{"type":"Polygon","properties":{"name":"Jordan"},"id":"JOR","arcs":[[56,57,58,59,60,61,62,63,64,65,66,-50]]},{"type":"MultiPolygon","properties":{"name":"Kuwait"},"id":"KWT","arcs":[[[67]],[[68]],[[69]],[[70,-46,-45,71]]]},{"type":"Polygon","properties":{"name":"Lebanon"},"id":"LBN","arcs":[[72,73,74,75,76,77,78,79,80]]},{"type":"Polygon","properties":{"name":"Saudi Arabia"},"id":"SAU","arcs":[[-48,-47,-71,81,-57,-49]]},{"type":"Polygon","properties":{"name":"Syria"},"id":"SYR","arcs":[[-55,-54,-53,-52,-51,-67,-66,-65,-64,-63,82,-74,-73,-81,-80,83,84,85,86,87,88]]},{"type":"Polygon","properties":{"name":"Turkey"},"id":"TUR","arcs":[[-42,-56,-89,-88,-87,-86,-85,89]]},{"type":"Polygon","properties":{"name":null},"id":"-99","arcs":[[90,-25]]},{"type":"Polygon","properties":{"name":"Israel"},"id":"ISR","arcs":[[-62,-61,91,-59,92,-32,93,94,-78,-77,-76,-75,-83]]}]},"boundaries":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","properties":{"iso":"SYR"},"arcs":[[95],[96],[97],[98]]},{"type":"MultiLineString","properties":{"iso":"SYR"},"arcs":[[99],[100],[101]]},{"type":"MultiLineString","properties":{"iso":"SYR"},"arcs":[[102],[103],[104]]},{"type":"MultiLineString","properties":{"iso":"SYR"},"arcs":[[105],[106],[107],[108]]},{"type":"MultiLineString","properties":{"iso":"SYR"},"arcs":[[109],[110],[111],[112],[113],[114],[115],[116],[117],[118],[119],[120],[121],[122],[123],[124],[125],[126]]},{"type":"LineString","properties":{"iso":"SYR"},"arcs":[127]},{"type":"LineString","properties":{"iso":"SYR"},"arcs":[128]},{"type":"MultiLineString","properties":{"iso":"SYR"},"arcs":[[129],[130],[131]]},{"type":"MultiLineString","properties":{"iso":"SYR"},"arcs":[[132],[133],[134],[135],[136]]},{"type":"MultiLineString","properties":{"iso":"SYR"},"arcs":[[137],[138]]},{"type":"MultiLineString","properties":{"iso":"SYR"},"arcs":[[139],[140],[141],[142],[143],[144],[145],[146],[147],[148],[149],[150],[151],[152],[153],[154],[155],[156],[157],[158],[159],[160],[161],[162],[163],[164],[165],[166],[167],[168],[169],[170]]},{"type":"LineString","properties":{"iso":"SYR"},"arcs":[171]},{"type":"LineString","properties":{"iso":"SYR"},"arcs":[172]},{"type":"LineString","properties":{"iso":"SYR"},"arcs":[173]},{"type":"MultiLineString","properties":{"iso":"SYR"},"arcs":[[174],[175],[176],[177],[178],[179]]},{"type":"MultiLineString","properties":{"iso":"SYR"},"arcs":[[180],[181],[182]]},{"type":"LineString","properties":{"iso":"SYR"},"arcs":[183]},{"type":"MultiLineString","properties":{"iso":"SYR"},"arcs":[[184],[185],[186],[187]]},{"type":"MultiLineString","properties":{"iso":"SYR"},"arcs":[[188],[189],[190],[191],[192]]},{"type":"MultiLineString","properties":{"iso":"SYR"},"arcs":[[193],[194],[195],[196],[197],[198],[199],[200],[201],[202],[203]]},{"type":"MultiLineString","properties":{"iso":"IRQ"},"arcs":[[204],[205]]},{"type":"LineString","properties":{"iso":"IRQ"},"arcs":[206]},{"type":"MultiLineString","properties":{"iso":"IRQ"},"arcs":[[207],[208],[209]]},{"type":"MultiLineString","properties":{"iso":"IRQ"},"arcs":[[210],[211],[212],[213],[214]]},{"type":"LineString","properties":{"iso":"IRQ"},"arcs":[215]},{"type":"MultiLineString","properties":{"iso":"IRQ"},"arcs":[[216],[217],[218]]},{"type":"MultiLineString","properties":{"iso":"IRQ"},"arcs":[[219],[220],[221]]},{"type":"LineString","properties":{"iso":"IRQ"},"arcs":[222]},{"type":"LineString","properties":{"iso":"IRQ"},"arcs":[223]},{"type":"MultiLineString","properties":{"iso":"IRQ"},"arcs":[[224],[225],[226]]},{"type":"MultiLineString","properties":{"iso":"IRQ"},"arcs":[[227],[228],[229],[230],[231],[232],[233],[234]]},{"type":"LineString","properties":{"iso":"IRQ"},"arcs":[235]},{"type":"LineString","properties":{"iso":"IRQ"},"arcs":[236]},{"type":"MultiLineString","properties":{"iso":"IRQ"},"arcs":[[237],[238],[239],[240]]},{"type":"MultiLineString","properties":{"iso":"IRQ"},"arcs":[[241],[242],[243],[244],[245],[246]]},{"type":"MultiLineString","properties":{"iso":"IRQ"},"arcs":[[247],[248],[249],[250],[251],[252],[253]]},{"type":"MultiLineString","properties":{"iso":"IRQ"},"arcs":[[254],[255],[256]]},{"type":"MultiLineString","properties":{"iso":"IRQ"},"arcs":[[257],[258],[259]]},{"type":"LineString","properties":{"iso":"IRQ"},"arcs":[260]},{"type":"LineString","properties":{"iso":"IRQ"},"arcs":[261]},{"type":"MultiLineString","properties":{"iso":"IRQ"},"arcs":[[262],[263],[264],[265],[266]]},{"type":"MultiLineString","properties":{"iso":"IRQ"},"arcs":[[267],[268]]},{"type":"LineString","properties":{"iso":"IRQ"},"arcs":[269]},{"type":"LineString","properties":{"iso":"IRQ"},"arcs":[270]},{"type":"MultiLineString","properties":{"iso":"IRQ"},"arcs":[[271],[272],[273],[274],[275],[276],[277],[278],[279],[280],[281],[282],[283],[284],[285]]},{"type":"MultiLineString","properties":{"iso":"IRQ"},"arcs":[[286],[287],[288],[289]]},{"type":"MultiLineString","properties":{"iso":"IRQ"},"arcs":[[290],[291]]},{"type":"MultiLineString","properties":{"iso":"IRQ"},"arcs":[[292],[293],[294]]},{"type":"LineString","properties":{"iso":"IRQ"},"arcs":[295]},{"type":"MultiLineString","properties":{"iso":"IRQ"},"arcs":[[296],[297],[298],[299],[300],[301],[302],[303],[304],[305],[306],[307],[308],[309],[310],[311],[312]]},{"type":"MultiLineString","properties":{"iso":"IRQ"},"arcs":[[313],[314],[315],[316],[317],[318],[319],[320],[321],[322]]},{"type":"MultiLineString","properties":{"iso":"IRQ"},"arcs":[[323],[324],[325],[326],[327],[328]]},{"type":"MultiLineString","properties":{"iso":"IRQ"},"arcs":[[329],[330]]},{"type":"LineString","properties":{"iso":"IRQ"},"arcs":[331]},{"type":"MultiLineString","properties":{"iso":"SYR"},"arcs":[[332],[333],[334]]},{"type":"MultiLineString","properties":{"iso":"SYR"},"arcs":[[335],[336],[337]]},{"type":"LineString","properties":{"iso":null},"arcs":[338]},{"type":"LineString","properties":{"iso":null},"arcs":[339,340]},{"type":"LineString","properties":{"iso":null},"arcs":[341,342]},{"type":"LineString","properties":{"iso":null},"arcs":[343]},{"type":"LineString","properties":{"iso":null},"arcs":[344]},{"type":"LineString","properties":{"iso":null},"arcs":[345]},{"type":"LineString","properties":{"iso":null},"arcs":[346]},{"type":"LineString","properties":{"iso":null},"arcs":[347]},{"type":"LineString","properties":{"iso":null},"arcs":[348,349,-340]}]},"support":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[350]]},{"type":"Polygon","arcs":[[351]]},{"type":"Polygon","arcs":[[352]]},{"type":"Polygon","arcs":[[353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446]]},{"type":"Polygon","arcs":[[353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446]]},{"type":"Polygon","arcs":[[-448]]},{"type":"Polygon","arcs":[[448,449,-444,450,-442,451,-440,452,-438,453,454,-435,455,-433,456,457,458,459,-428,460,461,-425,462,-423,463,464,465,-419,466,467,-416,468,469,-413,470,-411,471,-409,472,473,474,475,476,477,478,-401,479,-399,480,481,-396,482,-394,483,-392,484,485,486,-388,487,-386,488,489,-383,490,-381,491,-379,492,493,-376,494,-374,495,496,497,498,-369,499,500,-366,501,-364,502,-362,503,504,505,506,-357,507,-355,508,509],[510],[511],[512],[513],[514]]},{"type":"Polygon","arcs":[[515]]},{"type":"Polygon","arcs":[[516]]},{"type":"Polygon","arcs":[[517]]},{"type":"Polygon","arcs":[[518]]}]},"control":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[519]]},{"type":"Polygon","arcs":[[520]]},{"type":"Polygon","arcs":[[521]]},{"type":"Polygon","arcs":[[522]]},{"type":"Polygon","arcs":[[523]]},{"type":"Polygon","arcs":[[524]]},{"type":"Polygon","arcs":[[525]]},{"type":"Polygon","arcs":[[526]]},{"type":"Polygon","arcs":[[527]]},{"type":"Polygon","arcs":[[528]]},{"type":"Polygon","arcs":[[529]]},{"type":"Polygon","arcs":[[530]]},{"type":"Polygon","arcs":[[531]]},{"type":"Polygon","arcs":[[532]]},{"type":"Polygon","arcs":[[533]]},{"type":"Polygon","arcs":[[534]]},{"type":"Polygon","arcs":[[535]]},{"type":"Polygon","arcs":[[536]]},{"type":"Polygon","arcs":[[537]]},{"type":"Polygon","arcs":[[538]]},{"type":"Polygon","arcs":[[539]]},{"type":"Polygon","arcs":[[540,541,542,543,544,545,546,547,548]]},{"type":"Polygon","arcs":[[549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580]]},{"type":"Polygon","arcs":[[581],[582,-548,583,584,-558,585,-556,586,-554,587,-552,588,589,590,591,-579,592,-577,593,-575,594,595,-572,596,597,-569,598,-567,599,-565,600,-563,601,-561,602,603,604,-545,605,606,-542,607]]},{"type":"Polygon","arcs":[[608]]},{"type":"Polygon","arcs":[[609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679]]},{"type":"Polygon","arcs":[[680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741]]},{"type":"Polygon","arcs":[[742,743,-647,744,745,-644,746,747,748,-640,749,-638,750,-636,751,-634,752,753,754,755,756,-719,757,-717,758,759,-714,760,-712,761,-710,762,763,764,-706,765,-704,766,-702,767,768,-699,769,-697,770,771,772,-693,773,774,-690,775,776,-687,777,-685,778,-683,779,780,781,-741,782,-739,783,-737,784,-735,785,-733,786,787,788,789,790,791,-726,792,-724,793,794]]},{"type":"Polygon","arcs":[[795,-630,796,-628,797,-626,798,-624,799,-622,800,-620,801,-618,802,-616,803,-614,804,-612,805,-610,806,807,808,809,-676,810,811,-673,812,-671,813,814,815,816,-666,817,-664,818,819,820,821,-659,822,-657,823,-655,824,-653,825,-651,826,827,828]]},{"type":"Polygon","arcs":[[829]]},{"type":"Polygon","arcs":[[830]]},{"type":"Polygon","arcs":[[831]]},{"type":"Polygon","arcs":[[832]]},{"type":"Polygon","arcs":[[833]]}]},"disputed":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"name":"Golan Heights"},"arcs":[[-62,834,-77,835,-75,-83]]},{"type":"Polygon","properties":{"name":null},"arcs":[[-63,82,-74,836,837,838]]},{"type":"Polygon","properties":{"name":"Gaza"},"arcs":[[-31,839,-94]]},{"type":"Polygon","properties":{"name":"West Bank"},"arcs":[[-60,-92]]},{"type":"Polygon","properties":{"name":null},"arcs":[[-76,-836]]}]},"countrynames":{"type":"GeometryCollection","bbox":[36.148793562456895,32.56688770002014,45.57286687804833,37.153678395067836],"geometries":[{"type":"Point","properties":{"name":"Turkey"},"coordinates":[4205,8732]},{"type":"Point","properties":{"name":"Iran"},"coordinates":[7488,8360]},{"type":"Point","properties":{"name":"Jordan"},"coordinates":[3664,4342]},{"type":"Point","properties":{"name":"Lebanon"},"coordinates":[2577,5934]}]}},"arcs":[[[9209,9958],[-34,10],[-16,0],[-12,-9],[-10,-15],[-13,-12],[-15,-9],[-12,-5],[-24,3],[-3,1],[-17,23],[-14,34],[-7,13],[-4,7]],[[9028,9999],[180,0],[1,-41]],[[1463,6732],[5,-6]],[[1468,6726],[-2,-5],[-3,-3],[-5,-2],[-7,5],[-4,5],[-10,0],[-9,-6],[-7,0],[-5,2],[-6,4],[-6,4]],[[1404,6730],[4,7]],[[1408,6737],[4,-3],[6,-3],[8,-3],[12,8],[24,-8],[1,4]],[[719,6836],[9,6]],[[728,6842],[1,-4],[6,-11],[6,2],[4,7],[3,11],[1,3]],[[749,6850],[5,1],[5,-1]],[[759,6850],[-4,-12],[-3,-13],[-7,-7],[-6,-2],[-8,2],[-8,7],[-4,11]],[[1290,6703],[3,-4],[9,-7],[1,-6],[-4,-6],[1,-6],[9,-6],[-2,-11],[-5,2]],[[1302,6659],[-1,1],[-8,8],[-6,2],[-6,1],[-12,9],[-5,4],[-5,3],[-4,-3],[-5,-1],[-6,6],[-6,1],[-4,-5],[-4,-13],[-10,-6],[-6,5],[-3,12],[0,23],[-4,7],[-5,-7],[-4,-6],[-3,-4],[-2,-28],[-4,-15],[-8,-3],[-6,0],[-5,9],[-2,13],[4,17],[3,22],[0,19],[1,15],[-1,17],[-1,6],[-7,12],[-6,9],[-4,6],[-2,14],[0,12],[-2,3],[-9,-2],[-14,-2],[-8,1],[-5,-2],[-10,-17],[-7,-7],[-1,-8],[-2,-5],[-4,-2],[-12,4],[-9,8],[-5,10],[-7,12],[-5,4],[-7,0],[-7,4],[-6,5],[-9,0],[-12,-14],[-3,-8],[-4,-4],[-7,-5],[-13,0],[-14,4],[-13,3],[-5,-2],[-5,-8],[-13,-11],[-9,-7],[-9,-13],[-10,-15],[-7,-7],[-7,0],[-8,8],[-3,7],[-5,4],[-4,-4],[-3,-11],[-2,-4],[-7,-7],[-13,-6],[-5,0],[-5,4],[-3,8],[0,8],[-2,15],[-6,7],[-10,8],[-11,9],[-14,6],[-8,7],[-4,10],[-4,12],[-3,26]],[[775,6847],[10,-2]],[[785,6845],[0,-6],[1,-12],[4,-9],[6,-10],[6,-5],[9,-4],[18,-7],[10,-9],[8,-16],[5,-20],[8,0],[3,8],[5,10],[4,2],[6,2],[12,-2],[6,-2],[6,2],[6,2],[12,10],[10,18],[13,10],[9,7],[13,6],[12,9],[9,4],[7,-10],[5,1],[12,20],[8,4],[17,5],[18,-11],[8,-7],[16,-2],[15,-6],[8,-1],[6,4],[10,0],[15,8],[3,4],[4,9],[6,9],[7,2],[4,-5],[2,-12],[2,-13],[6,-19],[6,-15],[10,-27],[3,-9],[0,-18],[0,-18],[-3,-18],[-2,-23],[0,-9],[5,-2],[0,6],[1,9],[2,12],[2,7],[4,17],[3,5],[4,0],[5,-2],[6,-4],[4,1],[1,10],[2,6],[3,0],[4,-6],[4,-8],[2,-15],[7,-7],[6,-2],[6,8],[6,4],[12,-15],[8,0],[2,2],[8,-2],[4,3]],[[728,6842],[9,6],[12,2]],[[1408,6737],[1,2],[3,2],[4,7],[-4,10],[-4,0],[0,5],[-1,3],[-3,9],[-3,2],[-2,8],[-7,0],[-2,-18],[0,-14],[3,-9],[-3,-3],[-2,-6],[-7,-8],[-6,-2],[-4,7],[-6,3],[-13,-14],[-2,-12],[-4,-1],[-6,1],[-5,-8],[-14,15],[-11,-14],[-5,-3],[2,11],[4,21],[-3,4],[-5,0],[-5,-8],[-8,-3],[-3,-9],[1,-9],[2,-3]],[[785,6845],[18,-4],[16,-7],[13,-13],[14,-8],[20,8],[14,17],[11,25],[8,31],[3,36],[0,63],[-2,29],[-6,30],[13,-3],[21,-20],[11,-4],[33,-11],[37,4],[64,-13],[9,-6],[77,-13],[121,29],[43,37],[21,18],[27,-7],[28,14],[77,45],[21,22],[28,16],[27,41],[15,5],[30,13],[27,13],[21,21],[96,67],[17,11],[8,2],[-3,-3],[-2,-3],[-1,-4],[-1,-3],[-2,-27],[-2,-6],[-3,-2],[-12,-4],[-3,-3],[-50,-48],[-46,-61],[-112,-101],[-15,-20],[-12,-23],[-9,-31],[-5,-13],[-8,-8],[-13,-1],[-13,5],[-12,1],[-10,-9],[-15,-31],[-6,-18],[-2,-17],[-4,-75],[7,-8],[21,-32],[4,-9],[3,-12],[6,-12],[17,-23]],[[1343,6648],[0,0]],[[1343,6648],[-1,3],[-2,1],[-2,0],[-1,4],[-2,1],[-4,3],[2,2],[2,0],[4,-2],[2,-4],[3,0],[2,0],[2,-2],[2,-4],[-1,0],[-2,-1],[-2,-1],[-2,0]],[[1325,6674],[-2,-2],[-2,1],[0,3],[1,5],[0,3],[3,2],[3,-1],[0,-10],[-3,-1]],[[1468,6726],[8,-10],[8,-13],[5,-27],[6,-16],[7,-16],[7,-6],[-8,-1],[-13,2],[-13,6],[-6,9],[-6,5],[-28,-5],[-25,-12],[-5,-4],[-4,-7]],[[1401,6631],[-15,5],[-9,-4],[-4,4],[6,9],[5,2],[0,16],[-10,2],[-6,7],[0,21],[-4,7],[-12,8],[3,10],[5,6],[7,6],[4,-5],[3,-5],[7,2],[7,7],[4,7],[2,5],[10,-11]],[[1302,6659],[-1,-14]],[[1301,6645],[-11,-6],[-13,-21],[-4,-12],[-4,-16],[-2,-17],[-1,-17],[1,-18],[-2,-8],[-4,-4],[-4,-3],[-3,-17],[-3,-6],[-8,-3],[-17,0],[-7,-3],[-4,-7],[-6,-11],[-6,-10],[-7,-5],[-16,-6],[-16,-11],[-12,-4],[-8,14],[0,-27],[-15,-14],[-39,-12],[-7,-5],[-5,-5],[-7,-7],[-7,-2],[-38,7],[-37,-7],[-8,-3],[-8,-8],[-24,-34],[-5,-16]],[[944,6321],[-13,0],[-11,-2],[-4,-7],[-3,4],[-1,13],[6,8],[2,-5],[10,0],[-1,26],[-17,4],[-6,-10],[-4,-9],[-3,5],[-6,4],[-2,-6],[-15,6],[-10,11],[-3,9],[0,12],[-3,-1],[-4,0],[-3,0],[-3,1],[-2,1],[-2,-5],[-3,-5],[-1,-3],[-7,-2],[-4,-14],[-11,2],[-6,3],[-3,-7],[0,-15]],[[811,6339],[-6,-3],[-22,-4],[-21,6],[-21,14],[-27,25],[-9,6],[-11,4],[-22,4],[-9,5],[-9,9],[-21,25],[-3,5],[-3,28],[-2,4],[-1,9],[-12,50],[-6,8],[-11,11],[-4,8],[-5,9],[-3,12],[0,12],[4,12],[-10,25],[-1,10],[0,21],[-2,18],[-11,30],[-4,15],[-3,24],[2,17],[6,6],[11,-11],[15,-26],[9,-10],[10,-6],[21,1],[19,15],[16,23],[11,25],[8,30],[6,16],[8,9],[1,5],[1,4],[3,2],[3,-1],[4,-4],[1,-1],[3,-1],[5,2]],[[759,6850],[16,-3]],[[929,2922],[1,-10],[-5,8],[-2,5],[-3,0],[4,5],[3,-2],[2,-6]],[[1161,3007],[23,-29],[-11,12],[-82,56],[-15,4],[17,-1],[27,-20],[12,-5],[15,-5],[14,-12]],[[990,3072],[83,-16],[-4,-4],[-6,0],[-16,5],[-16,3],[-15,4],[-18,-8],[-9,3],[-13,-7],[-63,-54],[-11,-14],[6,14],[12,10],[10,8],[7,6],[7,8],[27,20],[6,10],[13,12]],[[1561,3143],[13,-37],[3,-16],[9,-45]],[[1586,3045],[6,-27],[20,-100],[17,-81],[20,-83],[26,-112],[32,-134],[12,-76],[1,-39],[3,-17],[8,-18],[5,-11],[0,-13],[-5,-29],[-1,-17],[2,-11],[3,-9],[29,-40],[5,-13],[18,-79],[30,-141],[21,-93],[1,-5],[1,-6],[0,-5],[0,-6],[3,-52],[23,-100],[21,-90],[13,-99],[-1,-66],[4,-23],[12,-39],[4,-14]],[[1919,1397],[-6,-5],[-4,-6],[-4,-6],[-4,-9],[-3,-11],[-1,-10],[-3,-8],[-7,-4],[2,-1],[1,0],[1,-1],[0,-5],[-4,-4],[-4,-5],[-1,-5],[2,-6],[-5,-1],[-2,-3],[0,-3],[3,-5],[-6,-9],[-12,-31],[-2,-4],[-6,-5],[-3,-3],[-2,-6],[-1,-6],[-3,-5],[-4,-4],[0,-6],[4,-13],[-1,-14],[-4,-13],[-3,-12],[0,-50],[-3,-12],[-6,-8],[-6,-7],[-3,-6],[0,-13],[-2,-15],[-4,-15],[-4,-12],[1,-11],[-1,-58],[1,-9],[5,-12],[1,-12],[-2,-11],[-4,-5],[-4,-3],[-12,-12],[-2,-5],[-1,-13],[0,-6],[3,-20],[0,-56],[-14,-17],[0,-6],[2,-8],[1,-13],[0,-14],[-3,-12],[2,-3],[2,-4],[3,-12],[-5,-5],[0,-5],[1,-6],[1,-7],[-2,-10],[-2,-6],[-2,-5],[-2,-5],[-2,-17],[-13,-28],[-7,-44],[-21,-51],[-6,-28],[-1,-2],[0,-2],[0,-2],[-3,1],[7,-30],[-6,-18],[-12,-15],[-11,-16],[2,-3],[2,-5],[-7,-5],[-4,-13],[-5,-42],[-2,-11],[-6,-16],[-1,-1],[-2,-10],[-7,-24],[-2,-12],[1,-16],[1,-12],[2,-11],[3,-10],[0,-6],[-4,-16],[4,-15],[7,-13],[5,-15],[5,-8],[1,-5],[0,-7],[-1,-4],[-2,-3],[0,-3],[-1,-12],[-4,-34],[-7,-26],[9,-27],[-1,-14],[-353,1],[0,9],[-25,25],[0,17],[-8,10],[-9,20],[-6,20],[1,14],[-2,3],[-2,2],[-2,3],[-1,6],[-3,0],[0,-7],[-4,0],[-2,5],[-4,8],[-1,3],[-8,47],[-3,7],[-4,-4],[-4,13],[-12,29],[-5,16],[-68,66],[-3,10],[-3,2],[-12,34],[-10,15],[-6,12],[0,5],[-33,40],[-6,10],[-2,7],[-2,8],[-4,12],[-6,10],[-6,5],[4,8],[0,-8],[3,0],[-3,32],[-9,2],[-4,-13],[9,-13],[-8,4],[-6,13],[-3,17],[-2,39],[-3,16],[-10,29],[6,19],[6,44],[6,22],[-7,13],[-3,7],[-2,19],[-4,5],[-5,3],[-4,5],[-3,18],[-2,42],[-2,13],[0,5],[5,9],[0,9],[-2,22],[-1,5],[-2,14],[-1,14],[3,7],[4,6],[-4,13],[-6,10],[-3,0],[-1,10],[-4,7],[-4,3],[-5,-3],[-6,11],[-14,12],[-5,9],[-7,24],[-1,6],[-1,5],[-8,10],[-2,4],[-1,2],[-9,21],[-2,2],[-4,3],[-1,2],[-1,3],[-2,7],[-1,3],[-23,39],[-8,5],[-12,10],[-11,13],[-7,11],[-3,16],[-2,19],[-4,18],[-7,7],[-4,3],[-4,8],[-10,41],[-1,0],[2,36],[-2,16],[-14,11],[-26,29],[4,0],[-2,7],[-2,4],[-3,1],[-4,1],[2,2],[1,2],[1,4],[0,6],[-4,0],[-2,-8],[-1,-8],[0,-6],[3,-5],[-7,0],[4,35],[1,45],[-6,39],[-17,19],[0,6],[4,12],[-1,13],[-2,14],[-1,14],[2,14],[4,20],[1,9],[0,16],[-1,10],[-2,8],[-4,8],[-12,26],[-2,10],[-2,6],[-12,20],[-11,9],[2,9],[6,9],[3,3],[0,27],[-7,18],[-21,34],[4,5],[2,4],[0,5],[-3,5],[3,2],[1,1],[-1,2],[-3,2],[-2,6],[-3,5],[-3,5],[-1,3],[1,3],[2,2],[2,1],[4,1],[0,6],[-1,7],[0,6],[1,8],[-3,0],[-7,-23],[-1,-11],[2,-7],[2,-5],[3,-7],[1,-13],[-4,0],[-2,12],[-4,7],[-6,0],[-6,-6],[-9,5],[-10,-10],[-9,-18],[-4,-16],[-1,-18],[3,-14],[7,-10],[12,-4],[-9,-13],[-44,-97],[-2,-8],[-6,-9],[-15,-44],[-3,-16],[0,-40],[-3,-16],[-7,-13],[0,-7],[5,-7],[6,-13],[5,-14],[4,-20],[6,-10],[26,-28],[7,-9],[24,-45],[16,-16],[15,-24],[13,-28],[5,-19],[2,-23],[5,-32],[7,-29],[7,-18],[0,-6],[-2,-17],[15,-94],[1,-9],[0,-21],[-2,-8],[-6,-7],[-2,-11],[-6,-5],[-2,-8],[4,-10],[-2,-29],[-1,-33],[3,-11],[16,-26],[6,-12],[1,-10],[1,-20],[1,-10],[12,-20],[2,-3],[22,-49],[18,-5],[12,-21],[7,-29],[24,-141],[1,-20],[6,-4],[25,-22],[12,-20],[7,-13],[5,-17],[5,-3],[6,-2],[4,-5],[2,-6],[4,-19],[15,-47],[4,-7],[0,-4],[0,-1],[-2,0],[-2,-1],[23,-31],[10,-20],[0,-21],[4,-5],[3,-11],[3,-12],[1,-8],[2,-3],[12,-27],[24,-43],[6,-21],[6,-5],[6,-4],[4,-5],[2,-13],[0,-10],[2,-8],[8,-2],[9,-8],[18,-34],[11,-11],[-1,-6],[1,-7],[0,-6],[-1,-8],[4,-6],[6,-2],[6,2],[3,-10],[-1130,1],[0,3392],[9,-5],[67,-48],[15,-11],[21,-26],[54,-39],[18,-6],[7,0],[14,1],[78,35],[47,42],[19,10],[20,-1],[17,-13],[7,-26],[3,-11],[16,-35],[7,-27],[9,-17],[16,-24],[6,-4],[13,-4],[0,-1],[6,-4],[13,-23],[3,-4],[8,-5],[20,-26],[6,-5],[-16,5],[-52,51],[3,0],[2,0],[2,-1],[4,-6],[-1,7],[-3,5],[-3,2],[-11,2],[-3,3],[-1,4],[-2,4],[-14,12],[-6,8],[-2,-1],[-4,0],[-2,13],[-3,12],[-4,9],[-5,6],[7,0],[6,1],[-26,52],[-6,15],[-7,16],[-6,5],[0,-4],[-9,6],[-3,-3],[-2,-10],[-8,7],[0,-3],[1,-7],[-1,-2],[-1,2],[-4,2],[-2,1],[0,-7],[-1,-5],[-2,-7],[10,0],[-2,-11],[7,-22],[-1,-13],[4,0],[0,-6],[-4,0],[1,-5],[2,-4],[1,-5],[-4,0],[-2,12],[-3,8],[-6,6],[-7,1],[2,7],[-2,1],[-4,-7],[-3,-14],[3,-1],[2,1],[2,6],[4,-5],[3,-2],[4,1],[0,-7],[-4,0],[0,-7],[2,-6],[3,-4],[4,-2],[6,-1],[-4,-6],[-5,-2],[-6,2],[-3,6],[-4,0],[0,-5],[0,-1],[-2,0],[-2,-1],[3,-2],[1,-4],[4,-7],[-8,-14],[-1,-11],[5,-6],[11,-1],[0,-7],[-7,2],[-6,4],[-5,0],[-4,-6],[-3,0],[-4,6],[-3,-1],[-3,-5],[-1,-10],[2,-5],[4,-3],[1,-4],[-7,-4],[0,-6],[3,-9],[-3,-4],[-6,-2],[-5,-6],[-1,-13],[3,-9],[6,-2],[6,4],[1,1],[-1,1],[-1,1],[-1,1],[-1,3],[8,-5],[3,-1],[5,0],[4,-4],[1,-9],[0,-9],[2,-4],[6,-2],[8,-7],[8,-8],[5,-10],[4,16],[3,6],[4,5],[-2,-9],[-1,-6],[1,-5],[2,-7],[-7,0],[0,-6],[7,0],[-2,-2],[-1,-2],[-1,-3],[0,-6],[3,0],[1,2],[1,2],[2,3],[1,-2],[0,-2],[0,-2],[3,-1],[0,7],[3,0],[-2,-14],[2,-9],[5,1],[3,15],[6,1],[8,14],[10,11],[11,-7],[-7,0],[0,-6],[7,-6],[2,4],[3,4],[3,4],[7,-6],[0,-6],[-2,-4],[-1,-4],[-1,-12],[6,4],[2,2],[-1,-8],[-1,-5],[-2,-4],[-4,-2],[0,-6],[4,-9],[0,-10],[-11,-15],[0,-6],[6,-1],[4,2],[3,5],[2,7],[3,0],[0,-10],[1,-3],[1,-5],[3,-5],[5,-3],[0,-7],[-5,-3],[-4,-3],[-3,-6],[-1,-8],[2,-2],[4,-5],[5,6],[5,1],[4,-2],[4,-5],[0,-6],[-4,0],[0,-7],[5,-7],[7,-5],[7,0],[6,6],[0,6],[-7,1],[-5,6],[-4,9],[-1,11],[8,-3],[10,-9],[5,-1],[2,-1],[-4,14],[8,0],[3,0],[0,7],[-3,1],[0,2],[-1,2],[1,1],[6,7],[1,-6],[1,-1],[2,0],[3,0],[-2,10],[4,7],[6,1],[6,-16],[7,-4],[8,0],[7,2],[13,11],[5,17],[-1,18],[-10,14],[13,0],[2,0],[2,28],[0,13],[-2,17],[-9,17],[-1,9],[6,7],[-8,7],[-11,6],[-10,3],[-7,-3],[-3,16],[6,-2],[7,0],[12,-4],[23,-7],[7,-9],[3,0],[6,-1],[2,-16],[5,-12],[8,-8],[16,-7],[6,-9],[10,-20],[22,-34],[9,-11],[15,-40],[14,-20],[15,-15],[18,-9],[1,0],[23,-2],[22,5],[39,16],[46,36],[9,11],[21,17],[6,7],[4,0],[0,-7],[-17,-10],[-29,-35],[-17,-7],[-28,-22],[-45,-18],[25,0],[0,-6],[-7,-7],[16,0],[6,4],[3,9],[3,0],[1,-5],[1,-1],[3,1],[3,-1],[32,32],[27,14],[5,7],[3,0],[3,-5],[7,-4],[-2,-4],[-4,-1],[0,-7],[6,3],[12,11],[0,7],[-14,0],[0,6],[7,4],[9,-4],[8,-9],[5,-11],[1,-5],[1,-10],[1,-5],[-7,0],[17,-10],[8,1],[7,9],[0,7],[-5,5],[-2,1],[0,7],[20,8],[5,6],[-3,7],[1,7],[3,8],[2,10],[-3,0],[-4,-6],[-10,-13],[-2,-4],[-2,-3],[0,-3],[4,-3],[-7,-3],[-12,0],[-13,3],[-8,6],[16,2],[9,15],[6,19],[9,16],[6,5],[13,4],[6,5],[10,15],[6,4],[9,0],[0,-6],[-15,0],[0,-6],[7,-8],[18,-39],[6,-16],[-2,-5],[-7,-3],[-7,-8],[-1,2],[0,3],[-1,1],[-2,0],[0,-6],[9,-10],[4,-12],[0,-15],[-6,-16],[19,12],[10,3],[7,-2],[3,2],[3,0],[4,-2],[0,6],[-7,7],[-3,0],[0,-7],[-4,0],[0,7],[28,18],[8,9],[3,0],[-3,-7],[3,-7],[4,5],[5,1],[3,-4],[2,-9],[4,0],[1,9],[0,9],[-1,2],[7,1],[-5,4],[-5,-1],[-5,1],[-6,2],[57,7],[-4,17],[6,4],[9,1],[0,17],[5,-4],[2,-3],[4,0],[7,3],[20,-17],[10,-5],[38,-6],[10,-7],[0,6],[12,-5],[17,1],[108,45],[100,63],[79,80],[1,1]],[[1401,6631],[-5,-9],[-4,-7],[-7,-4],[-8,5],[-14,21],[-8,8],[-12,3]],[[1343,6648],[-11,3],[-22,-1],[-9,-5]],[[9966,1128],[-5,-2],[-6,8],[-5,21],[-3,19],[-4,11],[6,6],[6,-4],[9,-6],[6,-6],[-2,-16],[1,-17],[-3,-14]],[[9209,9958],[1,-84],[-5,-28],[3,-21],[1,-50],[10,-35],[7,-118],[22,-111],[-4,-19],[-1,-21],[3,-21],[4,-15],[18,-43],[0,-10],[-1,-9],[-1,-7],[5,-37],[11,-36],[26,-58],[36,-53],[38,-40],[84,-64],[39,-19],[200,-40],[22,5],[17,11],[17,4],[19,-14],[-5,-1],[-6,3],[-3,0],[-4,-8],[43,-24],[68,-23],[25,-14],[16,-23],[-2,-34],[5,-14],[6,-34],[5,-14],[8,-17],[12,-52],[16,-38],[18,-26],[17,-19],[0,-7125],[-1,2],[-3,19],[-8,19],[-14,25],[-14,32],[-24,69],[-12,30],[-10,13],[-22,21],[-20,34],[-2,4],[-1,12],[-1,17],[-2,10],[9,2],[2,5],[-3,7],[-8,6],[6,32],[-12,55],[3,25],[-7,9],[-8,17],[-7,20],[-3,15],[-3,10],[-8,9],[-4,2],[-14,9],[-18,4],[-20,-5],[-19,-11],[-163,-166],[-19,-13],[-17,6],[-15,34],[-1,16],[0,43],[-4,17],[-4,8],[-1,5],[-2,4],[-6,6],[-5,3],[-5,2],[-11,1],[-6,-1],[-11,-4],[-6,-1],[-6,2],[-8,9],[-4,2],[-11,-3],[-19,-13],[-11,-4],[-14,2],[-5,8],[1,40],[-2,2],[-7,9],[-2,5],[0,5],[0,15],[1,7],[2,6],[0,6],[-7,7],[-3,-16],[-5,-16],[-7,-12],[-9,-2],[-10,10],[-4,12],[-6,9],[-9,2],[-12,7],[-34,32],[-8,10],[-3,31],[-9,19],[-14,12],[-17,6],[6,16],[9,4],[21,-6],[11,1],[17,9],[10,3],[10,-4],[22,-18],[7,-5],[12,-1],[8,-6],[7,-10],[7,-15],[3,13],[10,28],[16,31],[2,10],[1,16],[-11,-3],[-8,8],[-4,15],[-4,35],[-7,-5],[-8,-14],[-8,-9],[1,12],[1,3],[2,4],[-5,11],[-4,-2],[-5,-6],[-8,-3],[-3,4],[-6,13],[-3,3],[-3,-1],[-5,-5],[-3,-1],[-10,3],[-10,4],[-9,1],[-8,-8],[-19,5],[-15,-15],[-4,-20],[14,-10],[17,-5],[13,-13],[4,-17],[-10,-17],[-9,0],[-28,7],[-6,-3],[-29,-42],[-2,-5],[-5,-11],[-2,-12],[6,-9],[-2,-7],[-4,-7],[-2,-5],[4,-21],[9,-15],[11,-12],[8,-15],[5,-17],[3,-22],[3,-43],[-1,-12],[-5,-20],[-1,-10],[0,-11],[3,-18],[1,-11],[-4,-19],[-7,-17],[-9,-12],[-11,-5],[-35,7],[-9,-7],[-10,8],[-37,0],[-22,19],[-8,3],[-2,-17],[3,-11],[7,-18],[1,-13],[-1,-10],[-4,-8],[-5,-7],[-4,-4],[-12,-6],[-39,6],[0,6],[-2,-6],[-1,-2]],[[9030,1848],[-4,3],[-16,7],[-7,7],[-8,10],[-3,5],[-3,6],[-4,19],[-1,12],[-10,48],[-1,2],[-3,10],[-11,18],[-6,22],[-1,7],[1,11],[4,8],[5,7],[4,8],[1,10],[-1,11],[-2,9],[-4,9],[-20,29],[-17,30],[-10,28],[-5,7],[-7,3],[-6,1],[-19,-5],[-6,-1],[-7,2],[-5,4],[-5,7],[-2,9],[-4,42],[-5,21],[-7,19],[-8,15],[-6,5],[-5,4],[-56,12],[0,29],[1,461],[-1,13],[-6,5],[-171,0],[2,232]],[[8585,3069],[1,164],[79,338],[4,22],[-2,20],[-7,18],[-21,24],[-8,14],[-2,8],[-3,16],[-2,9],[-4,6],[-10,9],[-3,8],[-19,52],[-3,17],[-5,17],[-18,14],[-8,14],[-12,42],[-7,17],[-2,3],[-10,7],[-8,1],[-4,8],[-4,10],[-7,7],[-8,3],[-4,5],[0,7],[1,14],[2,10],[3,8],[3,10],[1,13],[-3,12],[-10,12],[-3,13],[-5,4],[-4,5],[-9,20],[-2,5],[-2,5],[-16,24],[-2,5],[-4,13],[1,5],[2,3],[4,18],[3,5],[2,7],[-1,11],[-3,7],[-14,16],[-8,18],[-6,14],[-7,12],[-11,10],[-30,15],[-7,1],[-24,-20],[-9,-6],[-18,-3],[-17,6],[-16,13],[-16,19],[-157,212],[-22,38],[-34,32],[-24,30],[-2,2]],[[8024,4587],[-49,43],[-14,23],[-52,38],[-56,27],[-61,-11],[-30,6],[-12,38],[7,12],[9,11],[7,12],[4,16],[-3,14],[-8,10],[-10,6],[-22,4],[-8,10],[1,12],[10,9],[12,1],[8,-1],[9,3],[11,13],[14,21],[7,14],[4,12],[0,9],[-7,6],[-2,8],[1,8],[3,19],[0,9],[-5,17],[-7,11],[-17,21],[-21,45],[-17,26],[-3,14],[0,16],[-2,19],[-4,18],[-6,17],[-17,33],[-2,2],[-2,2],[-2,1]],[[7692,5231],[0,1],[-3,1],[-2,-1],[-3,-2],[-10,-14],[-15,-4],[-16,6],[-9,12],[8,16],[25,23],[6,15],[-3,21],[-11,12],[-9,14],[2,29],[-12,-4],[-25,0],[-10,-7],[-15,-22],[-8,-9],[-9,-3],[-4,6],[0,34],[-2,8],[-1,7],[-25,27],[-8,12],[-7,16],[-5,15],[-4,17],[-2,19],[-4,16],[-7,12],[-8,10],[-7,12],[-46,129],[-1,1],[-1,1],[-1,0],[-16,-3],[-13,1],[-12,10],[-11,23],[11,8],[5,5],[5,7],[8,27],[4,24],[6,22],[13,17],[7,12],[21,26],[6,11],[0,11],[-3,8],[-4,8],[-3,11],[1,9],[8,18],[2,9],[7,46],[1,24],[-3,21],[-8,19],[-10,11],[-12,0],[-10,-13],[-10,11],[-7,20],[-16,79],[5,13],[28,9],[3,5],[4,6],[3,7],[2,8],[1,28],[-4,39],[2,26],[20,-9],[18,-14],[16,-6],[36,-4],[11,-7],[3,1],[3,7],[1,10],[0,10],[-1,6],[-6,13],[-2,16],[0,18],[-2,18],[-2,7],[-3,4],[-2,6],[-2,10],[-2,8],[-3,7],[-5,6],[-4,3],[-8,14],[4,15],[14,25],[2,11],[-1,20],[1,11],[5,11],[7,4],[15,3],[14,15],[3,23],[-1,24],[3,19],[12,1],[10,-8],[6,-5],[14,-7],[8,16],[4,23],[4,18],[2,18],[-5,24],[0,1],[-2,13],[0,12],[3,11],[6,9],[3,1],[7,1],[3,3],[1,4],[-1,12],[1,5],[7,18],[3,2],[8,-4],[11,-11],[5,-3],[7,0],[16,-10],[8,3],[8,11],[14,13],[5,1],[9,-4],[14,7],[6,2],[6,4],[4,12],[-11,19],[7,27],[11,29],[2,25],[-8,10],[-20,0],[-7,7],[-2,15],[5,12],[7,12],[2,10],[1,4],[-3,28],[-13,21],[-29,39],[-33,80],[-7,28],[0,9],[1,8],[3,6],[4,5],[2,3],[1,4],[-1,4],[-2,4],[-6,19],[-4,19],[2,1],[3,0],[16,-7],[1,13],[-5,37],[0,15],[2,17],[4,15],[7,11],[10,6],[37,-2],[10,4],[27,21],[20,-2],[11,2],[8,12],[7,15],[16,15],[8,11],[6,16],[1,15],[-3,13],[-9,9],[-11,2],[-10,-7],[-9,-9],[-9,-6],[-23,-7],[-11,-1],[-10,7],[-5,5],[-3,6],[-2,6],[-3,20],[-2,3],[-4,1],[-16,9],[-9,0],[-8,-4],[-10,-9],[-10,-5],[-34,2],[-16,-8],[-6,1],[-5,2],[-5,0],[-13,-16],[-10,-7],[-11,-1],[-8,8],[-6,2],[-20,-9],[-9,4],[-7,13],[-13,49],[-24,51],[-16,21],[-14,4],[-7,7],[-19,26],[-20,11],[-11,7],[-14,-1],[-17,-13],[-10,-3],[0,-1],[-10,-10],[-12,-6],[-11,2],[-9,14],[0,1],[-4,15],[3,20],[7,20],[6,15],[2,19],[-6,19],[-16,32],[-3,20],[1,44],[-2,18],[-8,11],[-9,12],[-3,11],[12,12],[-10,19],[-3,16],[-2,42],[-2,22],[-6,24],[-9,17],[-13,1],[-29,-17],[-15,-2],[-15,10],[-6,10],[-1,9],[-1,10],[-3,12],[-4,9],[-4,7],[-4,7],[0,14],[-7,11],[-8,10],[-2,3],[-8,14],[1,15],[3,3],[6,3],[2,2],[0,20],[6,33],[10,35],[1,18],[-6,20],[-12,35],[-8,15],[-9,7],[-7,0],[-6,3],[-5,6],[-5,8],[-6,9],[-8,2],[-16,-2],[-14,5],[-10,10],[-4,17],[5,23],[19,34],[7,17],[3,23],[-3,22],[-4,15],[-3,17],[3,26],[5,10],[1,11],[-3,8],[-12,9],[-6,9],[-3,4],[-5,-1],[-11,-5],[-4,2],[-3,5],[-2,14],[-2,7],[-4,4],[-4,1],[-4,3],[-3,6],[-4,17],[0,10],[7,27]],[[7068,8721],[3,19],[-3,16],[-5,16],[-2,19],[4,18],[6,8],[8,6],[6,11],[1,31],[-11,21],[-30,28],[-5,13],[-3,13],[-5,9],[-19,-4],[-4,8],[-8,27],[-8,9],[-19,3],[-7,6],[-3,15],[7,29],[-3,16],[-2,20],[1,23],[3,24],[5,19],[-2,17],[-12,13],[-10,17],[2,29],[4,8],[18,22],[6,12],[-2,9],[-19,34],[-13,17],[-14,9],[-15,-2],[-6,-6],[-9,-4],[-7,1],[-4,11],[1,6],[2,15],[-1,5],[-4,4],[-3,-1],[-4,-2],[-4,2],[-5,11],[-3,12],[-2,11],[-3,9],[-6,6],[-19,13],[-6,3],[-34,-6],[-18,4],[-9,21],[1,7],[1,4],[6,10],[4,10],[0,12],[-3,13],[1,13],[3,11],[5,13],[5,14],[12,20],[5,15],[4,20],[5,12],[7,8],[10,7],[3,6],[-5,18],[1,8],[4,6],[10,6],[4,7],[3,14],[3,19],[2,18],[-2,46],[14,24],[19,22],[12,24],[0,15],[-4,15],[-7,13],[-7,9],[-8,5],[-7,-2],[-17,-14],[-26,6],[-8,6],[-4,4],[-2,9],[2,15],[0,9],[-2,25],[0,11],[4,22]],[[6822,9999],[2206,0]],[[9030,1848],[0,-1],[0,-4],[13,0],[2,-9],[-7,-11],[-13,-6],[-57,9],[-40,22],[-19,22],[-18,9],[-29,29],[-22,13],[-25,7],[-22,1],[-20,-9],[-36,-31],[-4,25],[-1,29],[-4,27],[-9,18],[7,-32],[0,-11],[-1,-13],[-2,-11],[0,-11],[3,-8],[0,-23]],[[8726,1879],[-113,91],[-29,9],[-135,0],[-30,-6],[-84,-55],[-27,-30],[-18,-40],[-45,-181],[-19,-57],[-2,-14],[-2,-29],[-2,-9],[-10,-36],[-39,-104],[-15,-65],[-8,-18],[-33,-59],[-33,-88],[-78,-141]],[[8004,1047],[-16,-28]],[[7988,1019],[-22,-7],[-23,-8],[-9,-3],[-14,-5],[-23,-8],[-55,8],[-39,6],[-40,6],[-40,6],[-39,5],[-54,8],[-53,8],[-54,8],[-53,7],[-54,8],[-53,8],[-53,8],[-54,8],[-41,6],[-42,6],[-41,6],[-42,6],[-47,7],[-4,2],[-3,2],[-3,2],[-4,2],[-40,52],[-49,64],[-50,65],[-50,64],[-50,64],[-59,78],[-60,77],[-60,77],[-34,45]],[[6577,1707],[-25,33],[-60,77],[-60,77],[-60,78],[-59,77],[-46,60],[-46,59],[-46,59],[-46,60],[-55,71],[0,1],[-39,53]],[[6035,2412],[-11,14],[-49,68],[-49,68],[-50,68],[-44,61],[-44,60],[-44,60],[-44,60],[-34,48],[-47,43],[-46,43],[-45,43],[-46,42],[-46,43],[-45,43],[-46,43],[-46,43],[-46,42],[-45,43],[-46,43],[-46,43],[-45,43],[-46,42],[-46,43],[-46,43],[-45,43],[-54,50],[-29,26],[-28,17],[-178,54],[-42,11],[-103,28],[-103,27],[-103,28],[-103,28],[-1,-1],[-2,-1],[-1,-1],[-2,-1]],[[4139,3912],[0,8],[63,83],[13,30],[-11,65],[-8,29],[-10,10],[-99,-42],[-5,4],[-4,15],[-26,137],[0,2],[-1,1],[1,1],[41,20],[-35,200],[-25,140],[-24,136],[-18,102],[-21,123],[-25,136]],[[3945,5112],[58,53],[58,53],[57,53],[58,53],[57,54],[58,53],[58,53],[57,52],[58,54],[58,53],[57,53],[58,53],[37,34]],[[4674,5783],[20,19],[58,53],[58,53],[57,53],[77,70],[128,52],[15,15],[12,26],[19,63],[89,262],[5,24],[1,25],[-5,167],[-3,158]],[[5205,6823],[0,22],[5,59],[22,118],[4,93],[5,29],[25,56]],[[5266,7200],[17,39],[9,29],[3,30],[-3,132],[-2,31],[-6,31],[-40,131],[-13,46],[-3,17],[0,16],[17,240],[5,26],[46,133],[10,21],[15,11],[34,8],[162,51],[14,10],[14,18],[70,110],[104,165],[54,85],[34,46],[16,19]],[[5823,8645],[0,14],[-3,11],[-4,9],[-4,12]],[[5812,8691],[24,4],[30,14],[44,11],[9,6],[2,5],[6,26],[65,140],[2,7],[1,7],[1,7],[3,7],[4,4],[25,15],[5,1],[6,-1],[5,-5],[2,-17],[5,-5],[43,-21],[21,-4],[22,11],[13,15],[20,12],[21,8],[16,3],[9,-4],[69,-54],[3,-2],[5,-1],[4,1],[5,8],[5,3],[9,2],[7,-2],[13,-16],[7,-8],[22,-15],[24,-30],[8,-5],[7,2],[13,7],[6,1],[7,-1],[4,-4],[10,-10],[13,-8],[13,-2],[53,5],[14,-2],[12,-5],[5,-5],[11,-16],[4,-4],[7,3],[9,14],[28,8],[16,27],[16,32],[19,24],[23,6],[18,-4],[10,-3],[50,-30],[11,-12],[9,-12],[6,-17],[5,-22],[2,-21],[1,-12],[-1,-9],[-4,-11],[-5,-4],[-6,-2],[-7,-5],[-9,-17],[-4,-19],[-1,-21],[4,-20],[21,-69],[4,-10],[4,-6],[22,-8],[7,1],[4,7],[5,16],[8,20],[2,15],[4,11],[45,21],[13,11],[13,15],[13,24],[19,26],[20,22],[17,11],[9,1],[55,-12],[11,-7],[6,-17]],[[4139,3912],[-5,-2],[-10,-12],[-62,-92],[-18,-12],[-59,-27],[-118,-53],[-117,-53],[-117,-53],[-98,-45],[-19,-8],[-99,-46],[-30,-15],[-129,-61],[-130,-60],[-109,-51],[-20,-10],[68,-116],[68,-115],[1,-2],[67,-114],[68,-116],[1,-3],[2,-3],[2,-3],[1,-3],[57,-107],[58,-106],[57,-106],[57,-107],[26,-48],[0,-1],[-1,0],[-3,-4],[-38,-34],[-63,-56],[-57,-50],[-12,-16],[-7,-18],[-15,-59],[-19,-73],[-17,-66],[-23,-90],[-11,-16],[-62,-21],[-70,-23],[-74,-24],[-75,-25],[-46,-16],[-46,-15],[-14,-11],[-12,-22],[-29,-78],[-24,-65],[-33,-88],[-33,-91],[-40,-53],[-61,-81],[-55,-73],[-56,-75],[-14,-8],[-14,-1],[-54,15],[-60,16],[-30,9],[-62,17],[-77,21],[-72,20],[-82,23],[-61,17],[-58,16]],[[1952,1264],[7,8],[3,87],[4,25],[11,40],[-1,15],[-10,17],[-7,0],[-1,3],[0,3],[-1,1],[-2,0]],[[1955,1463],[2,26],[4,21],[7,18],[5,24],[3,54],[3,24],[25,104],[2,20],[0,58],[4,32],[2,8],[3,8],[2,8],[0,12],[6,38],[22,53],[9,32],[0,30],[-11,59],[0,27],[4,17],[5,50],[3,11],[4,10],[2,11],[2,13],[-2,14],[-7,19],[-3,10],[0,23],[9,39],[3,23],[22,117],[31,98],[4,23],[2,24],[2,11],[3,11],[4,8],[9,12],[3,10],[2,21],[0,21],[1,22],[7,22],[6,9],[14,22],[6,17],[0,30],[3,28],[25,76],[2,28],[-4,26],[-7,24],[-6,19],[-5,25],[-3,26],[7,23],[7,20],[1,21],[-4,7],[10,27],[9,39],[2,22],[0,9],[1,56]],[[2217,3313],[0,1],[0,1],[3,71],[8,70],[12,42],[13,48],[17,29],[-11,51],[0,8],[5,11],[-12,77],[1,8],[3,3],[4,1],[2,5],[1,7],[-3,11],[-1,8],[-1,13],[-1,10],[-5,23],[-1,44],[2,16],[9,11],[-5,12],[0,11],[9,24],[-3,6],[0,5],[2,4],[5,4],[0,7],[-3,11],[3,16],[7,45],[-7,0],[1,5],[1,4],[2,2],[3,3],[-5,11],[-2,18],[1,18],[2,11],[-5,15],[1,28],[-3,10],[0,6],[4,0],[0,-6],[3,0],[-1,8],[-2,8]],[[2270,4168],[-2,6],[-2,4],[-1,3],[-3,10],[5,2],[3,3],[-1,3],[-3,6],[0,5],[4,0],[-1,5],[-1,1],[-1,-1],[-1,2],[7,7],[-3,7],[3,2],[4,4],[0,7],[-3,0],[-1,2],[-1,2],[-2,2],[1,6],[2,7],[3,5],[4,2],[0,6],[-5,8],[-1,4],[-3,8],[-2,0],[-3,0],[0,6],[7,0],[-2,7],[-1,20],[3,-7],[2,10],[2,4],[0,-4],[0,-2],[1,1],[2,5],[-3,12],[-1,24],[-3,9],[0,7],[4,0],[0,6],[-5,4],[-2,7],[0,8],[1,3],[4,2],[5,7],[8,16],[9,11]],[[2297,4452],[13,-3],[8,7],[17,24],[29,28],[9,4]],[[2373,4512],[3,2],[3,1]],[[2379,4515],[3,0],[2,-3],[5,-10],[56,-20],[5,-4],[9,-15],[2,-1],[7,0],[2,-1],[1,-7],[-1,-6],[-1,-4],[-2,1],[4,-10],[5,-6],[5,-3],[8,2],[12,-2],[3,-10],[-2,-17],[0,-18],[5,-16],[24,-55],[3,-11],[0,-4],[2,-1],[6,0],[7,-1],[20,4],[3,0],[5,-4],[4,0],[2,1],[6,9],[3,1],[5,-5],[17,-26],[34,-36],[46,-68],[7,-7],[11,-4],[29,-5],[9,-8],[19,-4]],[[2769,4141],[71,-13],[19,-23],[9,9],[11,-1],[33,-14],[8,0],[6,4],[84,89],[80,81],[58,57],[89,89],[41,41]],[[3278,4460],[48,48],[90,88],[89,89],[66,66],[91,88],[44,43]],[[3706,4882],[112,108],[127,122]],[[8952,1343],[4,-9],[6,-26],[-2,-9],[-7,4],[-5,2],[-5,5],[-15,20],[-10,7],[-13,3],[-11,-1],[0,25],[6,15],[9,2],[21,-10],[8,-5],[4,-6],[6,-8],[4,-9]],[[8852,1869],[81,-184],[8,-35],[-4,-43],[-10,-29],[-16,-33],[-19,-28],[-19,-15],[-4,1],[-19,3],[-12,25],[-19,69],[-21,63],[-3,6],[-3,5],[-11,10],[-4,10],[10,11],[6,5],[12,13],[5,2],[2,6],[3,33],[-8,5],[-4,1],[-5,0],[5,14],[7,-1],[13,-13],[6,-1],[7,0],[4,7],[-3,15],[10,6],[7,8],[2,9],[-8,9],[-6,1],[-7,-5],[-5,4],[-2,6],[-2,10],[0,10],[0,7],[-9,0],[-1,2],[-2,2],[2,7],[7,8],[7,5],[8,1],[7,-4],[7,-8]],[[8770,1857],[-4,-1],[-4,4],[-3,6],[-1,6],[7,8],[11,23],[6,5],[20,5],[8,-1],[-1,-10],[-15,-13],[-3,-5],[-5,-11],[-2,-4],[-14,-12]],[[8979,488],[-93,-2],[-92,-1],[-93,-2],[-93,-1],[-28,-1],[-4,26],[-10,16],[-12,14],[-11,16],[-8,22],[-7,28],[-5,30],[-2,51],[-2,24],[-29,128],[-25,69],[-7,18],[-29,6],[-52,11],[-52,11],[-52,11],[-52,11],[-58,12],[-58,11],[-58,12],[-59,11]],[[8726,1879],[4,-16],[5,-14],[5,-19],[3,-20],[0,-36],[1,-22],[7,-32],[14,-46],[16,-35],[13,1],[9,-43],[12,-43],[22,-50],[11,-38],[-3,-19],[-11,-3],[-22,15],[-10,10],[-4,9],[-10,3],[-13,4],[-9,3],[-31,-9],[-15,-21],[-13,-21],[-32,-29],[-22,-33],[-12,-29],[-11,-23],[-23,-18],[-3,-15],[-5,-14],[12,-2],[19,6],[15,4],[11,8],[13,7],[7,-7],[-15,-16],[0,-12],[-3,-13],[12,-14],[9,0],[10,5],[12,7],[3,23],[8,5],[10,-5],[10,12],[6,14],[8,7],[4,-6],[8,-18],[1,-2],[7,-11],[6,-3],[14,-9],[20,7],[-4,-43],[-1,-17],[2,-28],[6,-43],[4,-19],[7,-19],[3,-19],[13,-131],[9,-32],[26,-62],[8,-12],[20,-11],[2,-15],[-3,-18],[0,-20],[4,-19],[14,-32],[3,-12],[6,-13],[12,-8],[21,-8],[-5,-15],[-2,-16],[1,-18],[3,-16],[-8,9],[-3,4],[0,-8],[0,-5],[2,-3],[5,-4],[-4,-8],[-2,-3],[-2,2],[-2,3],[-4,0],[0,-20],[4,-5],[8,6],[6,12],[1,-10],[2,-46],[2,-12],[5,-13],[8,-17],[6,-11]],[[2814,5905],[0,-1],[-15,-24],[-12,-31],[-23,-31],[-10,-19],[-3,-14],[-1,-11],[-3,-9],[-9,-7],[-7,0],[-11,6],[-6,1],[-11,-8],[-17,-34],[-21,-28],[-8,-15],[-7,-17],[-11,-35],[0,-3],[4,-10],[3,-5],[15,-19],[21,-5],[9,-9],[1,-19],[-6,-13],[-10,-2],[-20,7],[-27,20],[-9,3],[-8,-5],[-7,-9],[-8,-8],[-11,0],[-5,4],[-6,13],[-4,3],[-18,-18],[-9,-6],[-10,-4],[-8,-5],[-6,-10],[-7,-21],[-17,-22],[-7,-17],[-3,-11],[-10,-13],[-4,-9],[0,-8],[1,-17],[-1,-9],[-3,-4],[-6,-4],[-3,-3],[-2,-21],[7,-6],[12,-3],[12,-11],[7,-3],[10,-7],[9,-10],[4,-11],[-1,-18],[-8,-14],[-11,-11],[-10,-7],[-12,0],[-12,-6],[-6,-13],[7,-19],[-9,-31],[-16,-21],[-9,-9]],[[2432,5169],[-13,-12],[-13,-11]],[[2406,5146],[-8,-15],[-10,-32],[-9,-14],[-6,-7],[-7,-4],[-8,-4],[-7,-1]],[[2351,5069],[-9,-4],[-20,-32],[-10,-12],[-8,-3]],[[2304,5018],[-8,-3],[-4,-7],[1,-18],[0,-3],[0,-1]],[[2293,4986],[-3,4],[-7,8],[-9,23],[-3,6],[-6,-1],[-4,-10],[-3,-13],[-5,-13],[-4,-21],[-1,-47],[-3,-24],[-4,-16],[-10,-27],[-3,-15],[-16,-2],[-25,-16],[-29,-12],[-7,1],[-5,10],[-3,11],[-6,10],[-5,7],[-3,3],[-3,1],[-6,0],[-20,-9],[-3,0],[-8,3],[-3,0],[-3,-2],[-6,-7],[-2,-1],[-42,5]],[[2033,4842],[0,1],[1,5],[-3,-1],[-1,1],[0,3],[0,2],[3,11],[5,11],[6,8],[11,8],[4,9],[3,11],[4,8],[-4,7],[4,1],[1,-1],[2,-7],[16,53],[2,28],[-11,25],[11,12],[8,18],[10,42],[1,13],[1,25],[2,14],[9,22],[3,11],[-2,12],[27,32],[14,22],[6,29],[1,12],[20,83],[-3,7],[8,11],[6,39],[9,8],[-1,12],[21,77],[2,19],[1,40],[0,7],[-2,11],[-3,9],[-2,8],[3,8],[6,2],[7,-1],[6,-4],[3,-5],[3,0],[5,5],[8,-1],[5,-1],[7,5],[4,6],[5,19],[2,8],[0,4],[0,1],[-4,1],[5,8],[6,23],[4,9],[3,2],[9,0],[2,4],[0,9],[-3,4],[-2,3],[-2,4],[0,23],[8,42],[3,30],[-2,11],[-7,21],[-2,14],[0,32],[2,7],[7,8],[2,5],[0,31],[2,29],[7,26],[12,16],[9,-11],[9,20],[7,30],[7,20],[29,24],[9,19],[-9,23],[0,6],[10,-4],[41,16],[28,41],[8,9],[6,8],[2,14],[1,45],[-2,20],[-3,17],[-5,11]],[[2484,6336],[6,0],[5,-2],[4,-2],[9,-12],[11,-5],[12,0],[14,3],[13,-2]],[[2558,6316],[23,-2],[2,1],[6,6],[3,1],[3,-2],[6,-7],[3,-2],[32,3],[5,4],[5,8],[2,8],[0,19],[1,7],[11,12],[8,-8],[12,-34],[11,-14],[12,-6],[13,0],[13,6],[-2,-30],[-4,-4],[-6,6],[-7,4],[-8,-8],[-1,-11],[1,-14],[-3,-15],[-10,-12],[-14,-12],[-9,-14],[5,-15],[2,-4],[1,-1],[2,0],[1,0],[1,1],[11,4],[15,1],[14,-1],[7,-4],[4,-16],[5,-13],[7,-8],[9,-6],[7,-15],[4,-3],[4,2],[8,-9],[3,-9],[-1,-10],[-1,-16],[-2,-7],[-2,-4],[-1,-5],[-1,-8],[2,-8],[2,-7],[11,-24],[6,-9],[4,-3],[4,0],[3,-1],[3,-7],[-1,-13],[-5,-10],[-4,-13],[2,-18],[3,-13],[13,-19],[3,-10]],[[8979,488],[12,-21],[7,-8],[13,-10],[2,-7],[5,-41],[0,-32],[-5,-22],[-12,7],[-2,-6],[-1,-3],[0,-4],[10,-1],[8,4],[7,9],[3,14],[6,-6],[0,-9],[-6,-17],[-3,-25],[0,-12],[2,-22],[7,-19],[44,-78],[2,-12],[-7,-18],[-4,-18],[-1,-19],[3,-20],[6,-16],[16,-36],[4,-10],[-1,-12],[-1,-3],[8,-8],[9,-7],[-7014,8],[-5,15],[-3,2],[-15,5],[-4,3],[-3,0],[0,-7],[-4,0],[-2,6],[-3,7],[-3,5],[-4,2],[-10,-1],[-4,1],[-6,11],[-25,28],[-5,-6],[-6,0],[-6,0],[2,-5],[2,-5],[2,-4],[-5,5],[-6,6],[-6,4],[-6,-5],[-5,-5],[-16,-8],[-5,-4],[-3,-5],[-2,-7],[-3,0],[0,6],[-4,0],[-7,-3],[-10,4],[-11,-1],[-7,-13],[-1,5],[-1,0],[-2,2],[0,6],[4,0],[0,8],[-2,6],[3,6],[5,4],[4,3],[-5,3],[-5,1],[-5,-1],[-6,-3],[0,-7],[4,0],[0,-7],[-6,-3],[-4,-6],[-5,-17],[-1,4],[-2,1],[-2,1],[-1,1],[2,6],[3,5],[4,5],[5,3],[0,4],[-1,4],[1,6],[-8,0],[-5,-2],[-4,-6],[-1,-11],[-3,2],[-1,1],[-1,-1],[-2,-2],[-1,3],[1,6],[0,3],[-3,0],[0,-7],[-5,0],[-2,9],[-3,4],[-2,-1],[-3,-5],[-5,6],[-1,3],[-3,7],[-2,5],[-3,12],[-2,-3],[-2,-2],[-2,-3],[-2,-5],[-7,8],[-1,-4],[-1,-10],[-1,-7],[-4,-4],[-7,-5],[-4,-5],[0,-5],[11,-14],[0,-7],[-3,-1],[-2,-1],[0,-2],[-2,-2],[-4,6],[-2,-16],[-1,-12],[-1,-3],[-11,0],[-3,5],[-2,14],[-1,12],[0,24],[-4,6],[-13,-8],[3,11],[-4,7],[8,18],[5,7],[5,3],[0,5],[3,3],[5,6],[3,3],[-4,7],[2,5],[2,4],[3,2],[4,2],[0,-5],[-2,0],[-1,0],[-1,-1],[5,-4],[5,-3],[3,3],[1,10],[-3,0],[0,6],[-3,7],[1,6],[3,5],[6,3],[0,6],[-2,9],[6,43],[2,-1],[3,-3],[2,-2],[0,3],[0,10],[-3,-3],[-1,-2],[-3,5],[10,16],[11,32],[8,35],[5,45],[10,25],[4,28],[4,16],[15,42],[-4,43],[-2,46],[-7,43],[9,58],[7,31],[8,25],[0,6],[-3,0],[9,25],[1,12],[-3,10],[0,6],[6,30],[-1,12],[-9,5],[0,5],[8,22],[8,39],[4,41],[-6,24],[0,13],[6,18],[5,20],[11,86],[2,13],[6,21],[-1,6],[1,14],[5,8],[12,11],[-4,16],[-1,21],[2,14],[6,-6],[1,3],[0,3],[0,1],[3,0],[-4,14],[-1,16],[2,14]],[[2373,4512],[14,32],[26,48],[4,24],[-2,12],[6,29],[9,24],[4,1],[7,22],[-12,31],[-3,12],[-7,91],[2,13],[-20,13],[0,14],[6,14],[5,19],[-1,27],[-12,12],[-2,44],[-15,16],[-3,8],[17,38],[-20,21],[12,8],[4,7],[8,9],[1,13],[2,5],[1,16],[3,6],[-1,5]],[[2484,6336],[-3,18],[-9,29],[-3,26],[-6,14],[-1,8],[0,40],[-1,6],[-9,23],[-2,10],[-3,20],[-17,68],[3,3],[0,5],[4,6],[0,6],[0,7],[-4,6],[0,7],[3,4],[-1,2],[-2,7],[5,13],[3,7],[4,6],[2,15],[-1,14],[-3,13],[-2,11],[0,45],[3,12],[25,57],[11,16],[-5,26],[-20,61],[7,32],[-2,16],[-4,62],[1,14],[-5,7],[-25,52],[-11,7],[-5,6],[-2,10],[-4,5],[-9,-2],[-8,-4],[-3,-3],[-5,5],[0,10],[3,13],[1,12],[-4,5],[-18,15],[1,4],[1,10],[2,5],[-4,0],[-7,-6],[0,6],[11,6],[10,10],[8,13],[3,18],[-1,10],[-5,13],[-1,12],[3,7],[12,6],[20,58],[1,5],[0,23],[-2,18],[-6,23],[-7,21],[-7,13],[25,-2],[13,4],[5,15],[3,18],[13,30]],[[2453,7549],[5,-2],[10,3],[11,6],[10,2],[7,-11],[0,-12],[-2,-13],[1,-11],[6,-8],[8,-3],[17,-1],[15,-10],[30,-33],[9,2]],[[2580,7458],[1,0],[6,29],[3,67],[12,28],[17,9],[12,-5],[9,3],[4,33],[0,1],[10,6],[21,-12],[11,5],[-1,28],[1,138],[1,14],[3,7],[4,7],[1,8],[-7,13],[6,9],[6,-12],[7,-7],[7,-3],[14,-3],[3,-2],[3,0],[5,4],[2,5],[1,7],[2,6],[6,3],[9,2],[40,-9],[10,0],[36,10],[4,8],[-1,22],[-2,13],[-4,16],[-5,15]],[[2837,7921],[-6,10],[-8,5],[-17,3],[-6,8],[3,0],[3,9],[3,14],[0,8],[0,8],[-2,6],[-2,7],[-3,2],[-8,6],[-4,5],[-3,7],[-9,52],[-2,16],[2,14],[16,37],[2,41],[0,43],[7,40],[6,23],[2,18],[0,19],[3,21],[6,19],[9,17],[6,18],[-2,24],[5,0],[5,-1],[96,-49],[33,-3],[10,-4],[10,-6],[10,-8],[8,-11],[16,-22],[4,-12],[1,-20],[-5,-31],[2,-11],[10,-13],[10,-8],[5,2],[4,9],[8,12],[10,6],[9,-1],[8,-4],[10,-2],[33,13],[12,2],[84,-24],[22,0],[77,73],[31,21],[87,27],[83,57],[15,6],[9,8],[51,48],[35,20],[18,3],[34,-7],[99,-44],[26,-21],[55,-86]],[[3873,8340],[15,-23],[31,-25],[37,-7],[85,6],[11,5],[28,3],[80,-40],[28,2],[105,30]],[[4293,8291],[169,48],[111,62],[52,45],[19,10],[20,5],[19,14],[37,36],[69,69],[11,9],[11,6],[11,4],[12,1],[24,10],[70,57],[25,14],[98,22],[125,-37],[23,-14],[11,-4],[145,10],[217,75],[59,20],[23,21],[39,54],[26,51],[8,6],[9,11],[6,-10],[1,-11],[-1,-10],[1,-4],[7,-2],[16,-11],[3,2],[3,6],[3,4],[4,-2],[2,-5],[2,-9],[3,-5],[17,-21],[4,-3],[3,-12],[-9,-54],[6,-12],[4,-6],[1,-13],[0,-27]],[[2453,7549],[0,1],[6,13],[23,59],[5,7],[-1,17],[-14,66],[-36,90],[-7,15],[-7,16],[-6,29],[-7,13],[-8,11],[-7,12],[-6,21],[1,16],[14,31],[5,8],[5,5],[6,2],[6,1],[2,4],[6,23],[5,7],[9,7],[5,5],[2,9],[3,20],[6,6],[3,5],[3,5],[21,10],[4,4],[25,46],[4,10],[5,0],[56,53],[8,3],[6,7],[6,17],[5,20],[3,15],[0,12],[-2,9],[-3,8],[-2,11],[0,6],[0,60],[-2,15],[-5,17],[-31,64],[-18,27],[-19,20],[-20,8],[-18,-10],[-18,-24],[-30,-54],[-7,-8],[-9,-4],[-5,-6],[-17,-29],[-8,-10],[-20,-7],[-43,-3],[-19,-10],[-6,-9],[-6,-18],[-6,-6],[2,7],[0,4],[-1,4],[-5,5],[-5,-15],[-7,-12],[-5,-11],[3,-15],[8,16],[12,-5],[1,15],[3,-1],[2,-3],[1,-4],[2,-4],[2,6],[1,7],[-1,7],[-2,6],[7,6],[3,-6],[2,-9],[4,-5],[5,3],[5,5],[6,3],[7,-4],[-31,-21],[-14,-16],[-9,-22],[1,-11],[7,7],[24,40],[7,7],[8,3],[-20,-30],[-3,-8],[-4,-17],[-4,-7],[-2,-10],[0,-12],[-1,-11],[-4,-4],[-5,-2],[-8,-9],[-5,-2],[-17,-2],[-6,2],[-16,23],[-5,4],[-7,-3],[-5,-7],[-1,-8],[5,-1],[4,-3],[18,-11],[-22,9],[-23,4],[-4,-2],[-12,-10],[-3,-4],[-2,-7],[-5,-5],[-11,-5],[-14,-17],[-1,-3],[-5,4],[-8,19],[-6,4],[-7,3],[-132,118],[-14,7],[-17,17],[-10,6],[-9,1],[-7,-1],[-1,0],[-9,-2],[-7,-5],[1,5],[3,15],[-7,5],[-22,34],[-42,33],[-3,-7],[-16,13],[-22,-8],[-34,-24],[-16,-3],[-6,-4],[-16,-13],[-3,-4],[-5,-18],[-3,-4],[-16,-13],[-46,-61],[-56,-52],[-16,-21],[-45,-85],[-4,-14],[-2,-10],[-5,-6],[-11,-7],[-19,-29],[-18,-15],[-1,-25],[3,-31],[-1,-25],[-11,-12],[-16,-5],[-14,-8],[-6,-20],[3,1],[2,3],[-1,-6],[-10,-20],[-4,-12],[-2,-13],[-1,-12],[-2,-6],[-10,-1],[0,6],[5,18],[-2,26],[-8,24],[-11,11],[-8,4],[-6,6],[-6,3],[-8,-10],[-10,-23],[-5,-9],[-9,-4],[4,-1],[2,-2],[2,-4],[-6,-8],[-8,-20],[-6,-4],[-5,-1],[-18,-12],[-4,-4],[-16,-26],[-2,-10],[-4,-26],[-3,-7],[-1,6],[-13,31],[-2,13],[-5,3],[-7,-2],[-7,-4],[-12,-16],[-12,-23],[-11,-17],[-12,3],[7,6],[0,7],[-12,2],[-22,9],[-10,3],[-12,-4],[-18,-14],[-8,-3],[-20,11],[-11,2],[-9,-17],[-12,-2],[-23,0],[-15,-6],[-6,-1],[-7,3],[-11,8],[-5,2],[-12,-5],[-7,-12],[-5,-15],[-7,-13],[-5,-7],[-3,0],[-1,3],[-5,4],[-7,1],[-16,-1],[-35,12],[-10,1],[-33,-27],[-6,-3],[-5,-10],[-27,-33],[-23,2],[-47,17],[-20,14],[-31,31],[-2,2],[-19,3],[-10,4],[-39,34],[-6,8],[-4,12],[-9,6],[-11,4],[-8,7],[-24,49],[-5,1],[-2,5],[-10,9],[-2,6],[-2,27],[-1,9],[-13,26],[-31,41],[-7,28],[0,8],[-3,6],[-5,12],[-6,15],[-2,3],[-7,5],[-2,0],[-9,30],[-6,15],[-8,7],[-32,48],[-4,3],[-4,1],[-6,1],[-6,2],[-4,4],[-3,4],[-3,3],[-21,-2],[-10,3],[-5,9],[-6,8],[-13,8],[-15,3],[-9,-3],[-5,7],[-20,13],[-10,21],[-7,10],[-6,-1],[-11,2],[-39,26],[-9,11],[-8,13],[-98,65],[-15,4],[-1,23],[-19,16],[-71,16],[0,1581],[6822,0]],[[944,6321],[-3,-9],[0,-26],[11,-22],[0,-6],[-47,0],[0,6],[2,18],[-15,44],[-1,16],[-30,12],[-12,2],[-11,-2],[-27,-15]],[[2270,4168],[-42,17],[-12,5],[-12,0],[-14,6],[-3,25],[1,29],[-5,23],[-16,15],[-15,2],[-33,-2],[-9,5],[-15,19],[-7,6],[-1,1],[-9,-1],[-8,-9],[-13,-23],[-16,-16],[-16,-12],[-13,-15],[-11,-28],[-6,-50],[-2,-16],[-4,-20],[-2,-2],[-7,-4],[-2,-2],[-2,-12],[-1,-31],[-2,-12],[6,-3],[4,-7],[1,-11],[-2,-12],[-4,-12],[-20,-29],[-7,-14],[-1,-9],[9,-30],[2,-16],[7,-90],[0,-18],[-1,-21],[0,-1],[1,-1],[0,-3],[0,-4],[0,-3],[0,-3],[-2,-29],[10,-38],[6,-32],[-14,-12],[-14,-8],[-3,-13],[-1,-4],[5,-16],[17,-5],[8,0],[4,1],[5,5],[9,16],[4,4],[7,-2],[27,-21],[37,-13],[9,-9],[4,-12],[1,-15],[-1,-21],[-2,-6],[-3,-1],[-2,2],[-3,5],[-32,-11],[-10,-8],[-10,-12],[-18,-29],[-42,-49],[-9,-18],[-1,-4],[-9,-25],[-2,-26],[0,-26],[-3,-32],[-24,-61],[-7,-32],[6,-33],[12,-13],[13,-4],[15,4],[13,7],[31,7],[65,-1],[31,18],[56,74],[30,27],[36,5]],[[1955,1463],[-2,-13],[-4,-8],[-9,-18],[-4,-11],[-2,-6],[-1,-7],[-1,-3],[-4,0],[-5,0],[-4,0]],[[1586,3045],[9,12],[27,31],[18,31],[1,16],[-4,33],[0,17],[11,33],[59,89],[8,8],[17,25],[1,20],[-10,20],[-15,20]],[[1708,3400],[4,17],[13,25],[46,126],[4,7],[29,104],[14,50],[10,24],[16,85],[1,4],[-1,11],[0,4],[7,6],[43,205],[18,143],[16,125],[3,9],[3,43],[3,13],[-1,14],[12,78],[3,86],[4,19],[8,7],[6,-3],[11,-11],[8,-2],[5,2],[18,30],[2,8],[4,25],[3,12],[-1,12],[-7,5],[3,14],[4,58],[7,31],[2,19],[-2,16],[2,4],[3,6],[3,3],[-4,6],[2,1],[1,1]],[[2896,7947],[3,-1],[1,-2],[1,-3],[1,-3],[1,-3],[1,-15],[3,-8],[16,-22],[14,-26],[2,-7],[0,-5],[-1,-4],[-1,-3],[-2,-6],[-2,-5],[-11,-16],[-4,-7],[-1,-3],[-5,-4],[-1,-1],[-2,-2],[-2,-4],[-3,-6],[-2,-4],[-18,-22],[-6,-16],[11,-21],[3,-11],[5,-9],[5,-6],[5,-4],[43,-31],[5,-5],[3,-4],[2,-7],[0,-7],[1,-30],[0,-8],[1,-4],[0,-3],[28,-61],[27,-72],[4,-9],[3,-5],[2,-2],[3,-1],[8,-1],[6,-7],[11,-15],[15,-16],[3,-4],[1,-4],[0,-3],[0,-4],[0,-4],[0,-4],[-2,-5],[-2,-4],[-3,-4],[-3,-4],[-2,-2],[-6,-3],[-3,-4],[-3,-7],[8,-36],[5,-14],[3,-7],[2,-7],[2,-17],[2,-6],[17,-30],[3,-2],[4,-2],[3,-3],[3,-3],[8,-12],[2,-3],[22,-13]],[[2879,7932],[2,1],[11,12],[4,2]],[[2862,7932],[17,0]],[[2837,7921],[7,5],[18,6]],[[2591,7426],[-7,1],[-4,2],[-2,3],[-1,3],[0,3],[1,4],[0,3],[1,3],[1,5],[1,1],[-1,4]],[[2632,7395],[13,13],[4,8],[1,3],[0,4],[-1,4],[-2,4],[-2,2],[-3,1]],[[2642,7434],[-35,-3],[-4,-1],[-5,-3],[-3,-1],[-4,0]],[[3852,8214],[-2,0],[-2,1],[-2,2],[-1,6],[-2,7],[-3,17],[0,8],[0,6],[2,1],[2,1],[26,6],[3,2],[2,4],[3,8],[2,6],[0,5],[-1,3],[-6,43]],[[3664,7088],[-100,160],[-8,15],[-1,3],[-1,5],[-1,6],[-1,5],[0,4],[3,34],[14,87],[14,54],[5,11],[2,5],[2,2],[20,43],[10,16],[3,5],[1,3],[4,13],[2,12],[1,2],[1,4],[1,5],[1,10],[-1,6],[-2,4],[-21,26],[0,1],[-7,17],[-7,13],[-7,11],[-5,10],[-5,14],[-6,28],[-2,16],[-1,11],[1,7],[1,7],[2,7],[11,26],[7,22],[5,14],[5,12],[6,9],[3,3],[9,8],[21,16],[14,5],[20,1],[86,22],[43,35],[34,35],[6,9],[5,8],[20,44],[6,19],[3,16],[4,33],[0,1],[4,27],[3,27],[0,65],[0,3],[-1,4],[0,3],[-2,2],[-1,2],[-2,1],[-3,0]],[[3882,8242],[-2,-1],[-4,-3],[-12,-16],[-5,-5],[-5,-3],[-2,0]],[[3235,7151],[-30,1],[-4,1],[-5,4],[-18,19],[-45,23]],[[3442,7087],[-44,10],[-24,10],[-8,6],[-35,37],[-10,10]],[[3321,7160],[-86,-9]],[[3664,7088],[-222,-1]],[[2632,7395],[3,-7],[1,-2],[2,-3],[2,-2],[4,-2],[4,-1]],[[2669,7386],[2,-1],[2,-3],[3,-5],[1,-4],[2,-4],[0,-3],[1,-4],[1,-2],[7,-4],[22,-1],[4,-3],[1,-13],[-3,-42],[-8,-51],[-1,-17],[5,-65],[-1,-5],[-1,-4],[-1,-2],[-1,-3],[11,-39],[3,-16],[3,-6],[12,-5]],[[2648,7378],[7,1],[6,3],[2,2],[2,1],[2,1],[2,0]],[[3069,7038],[-3,0],[-2,2],[-2,2],[-1,2],[-1,3],[0,4],[1,4],[1,6],[10,33],[3,7],[3,5],[6,6],[11,7],[4,4],[3,6],[13,34],[5,20],[2,5],[1,3],[10,8]],[[2753,7098],[4,-2],[9,-7],[2,-2],[1,-2],[2,-6],[1,-6],[1,-3],[1,-3],[1,-2],[2,-2],[2,-1],[3,-1],[5,-1]],[[2733,7084],[18,13],[2,1]],[[3019,7079],[3,-1],[2,-2],[1,-3],[1,-2],[1,-3],[0,-3],[1,-4],[0,-7],[0,-4],[0,-4],[-1,-4],[-5,-16],[0,-3],[0,-4],[0,-4],[2,-13],[0,-4],[0,-12],[0,-3],[1,-3],[2,-2],[2,-2],[2,-1],[3,-1]],[[2970,7014],[4,0],[5,2],[4,0],[3,2],[3,3],[10,22],[11,16],[2,4],[4,12],[2,2],[1,2]],[[2929,7070],[2,0],[3,-1],[2,-1],[15,-22],[2,-5],[1,-3],[2,-6],[1,-2],[2,-2],[6,-5],[1,-2],[1,-3],[1,-3],[2,-1]],[[2864,7044],[63,26],[2,0]],[[3092,7002],[2,0],[1,3],[0,40],[-1,7],[0,3],[-1,3],[-2,2],[-2,2],[-2,0]],[[3087,7062],[-2,0],[-1,-2],[-2,-2],[-1,-3],[-3,-9],[-1,-3],[-2,-2],[-2,-2],[-2,-1],[-2,0]],[[2797,7061],[5,-1],[35,-14],[27,-2]],[[2787,7060],[10,1]],[[3085,7004],[3,0],[2,-1],[2,-1]],[[3061,6976],[3,0],[3,2],[2,2],[2,2],[4,11],[3,6],[2,2],[1,2],[2,1],[2,0]],[[3050,6976],[11,0]],[[3034,6974],[5,0],[11,2]],[[2631,6885],[-1,37],[-14,97],[-8,37],[-3,18],[-1,4],[10,105],[2,64],[-1,30],[-2,11],[-1,6],[-2,6],[-6,12],[-1,3],[0,4],[2,5],[5,8],[8,9],[2,4],[1,6],[0,24],[3,8],[8,12]],[[3699,7037],[-8,18],[-6,10],[-21,23]],[[2513,6881],[-4,1],[-15,20],[-8,8],[-22,11],[-1,0]],[[2631,6885],[-20,15],[-7,1]],[[2604,6901],[-7,-7],[-4,-3],[-2,-1],[-78,-9]],[[2631,6885],[0,-18],[6,-113],[1,-15],[-5,-22],[-1,-6],[-2,-3],[-4,-4],[-2,-2],[-3,-7],[-2,-1],[-8,-1],[-2,-1],[-3,-4],[-2,-1],[-5,-1],[-2,-1],[-2,-2],[-3,-4],[-2,-1],[-2,-1]],[[2588,6677],[-2,0],[-5,2]],[[2581,6679],[-5,-1],[-5,-5],[3,-26],[25,-7],[8,-1]],[[2627,6642],[5,-1],[3,-2],[3,-12],[2,-14],[2,-6],[1,-2],[2,-3],[13,-15],[3,-4],[2,-7]],[[2607,6639],[20,3]],[[3745,7045],[153,-18],[291,-117]],[[3699,7037],[46,8]],[[3536,6574],[1,0],[4,3],[1,1],[10,16],[1,1],[0,3],[1,4],[1,1],[0,3],[1,2],[1,1],[0,2],[0,1],[1,4],[0,5],[-1,8],[0,2],[1,1],[0,2],[3,7],[2,10],[1,1],[3,6],[1,2],[0,1],[0,2],[1,8],[0,2],[2,4],[15,20],[8,10],[69,46],[4,5],[1,5],[-2,32],[0,8],[1,8],[1,8],[2,10],[2,7],[13,28],[5,14],[6,20],[2,16],[2,106],[-1,17]],[[3407,6785],[1,-1],[1,-1],[4,-3],[3,-4],[6,-11],[1,-1],[1,-2],[2,-1],[3,-1],[2,-1],[11,0],[2,-1],[1,-1],[2,-2],[0,-1],[3,-5],[1,-4],[1,-3],[1,-1],[0,-3],[1,-2],[1,-1],[2,-5],[1,-1],[0,-1],[3,-14],[1,-5],[0,-10],[2,-13],[0,-2],[0,-1],[2,-4],[5,-6],[2,-2],[1,-1],[29,-36],[4,-6],[4,-10],[20,-40],[3,-4],[2,0]],[[3328,6754],[2,0],[7,2],[24,13],[43,16],[3,0]],[[3323,6754],[5,0]],[[3276,6635],[2,0],[2,1],[0,1],[1,1],[1,3],[1,1],[0,2],[0,2],[0,2],[-1,4],[-2,11],[0,4],[0,25],[1,13],[1,3],[1,7],[1,1],[0,1],[3,3],[3,4],[10,9],[17,17],[3,3],[3,1]],[[3246,6660],[4,-2]],[[3236,6658],[7,2],[3,0]],[[3256,6659],[2,-1],[2,-1],[1,-1],[1,-1],[5,-12],[1,-4],[2,-1],[2,-1],[4,-2]],[[3250,6658],[6,1]],[[3233,6658],[3,0]],[[3217,6647],[4,2],[3,2],[4,5],[3,1],[2,1]],[[3201,6656],[1,0],[1,-1],[5,-5],[4,-2],[5,-1]],[[3191,6637],[2,0],[1,2],[0,2],[0,2],[0,2],[1,4],[2,5],[2,2],[2,0]],[[2955,6650],[5,-1],[7,-3],[7,-10],[3,-5],[0,-2],[16,-48],[13,-43]],[[2899,6622],[17,2],[2,1],[7,10],[3,2],[3,1],[5,0],[2,0],[2,2],[8,7],[3,2],[4,1]],[[3183,6640],[8,-3]],[[3149,6584],[3,0],[1,0],[3,4],[3,5],[1,1],[0,1],[1,4],[2,12],[0,2],[1,1],[1,1],[3,6],[1,1],[1,1],[1,8],[1,2],[1,4],[1,2],[2,1],[1,0],[6,0]],[[2764,6628],[2,-1],[2,-1],[1,-2],[1,-1],[1,-1],[0,-1],[1,-2],[0,-2],[0,-2],[-1,-1],[-1,-3],[-2,-4],[0,-1],[-1,-2],[0,-2],[1,-2],[0,-1],[1,0],[4,-1],[1,0],[1,0],[1,-1],[1,-1],[1,-2],[0,-1],[0,-2],[0,-5],[1,-2],[2,-2],[5,-4],[3,-1],[2,0]],[[2718,6529],[2,0],[2,2],[1,2],[4,7],[1,2],[0,2],[0,9],[1,2],[1,3],[3,6],[1,3],[0,2],[0,6],[0,8],[13,21],[4,11],[4,8],[1,1],[0,1],[1,1],[5,1],[2,1]],[[2897,6623],[0,-1],[2,0]],[[2886,6621],[2,0],[4,1],[5,1]],[[2884,6622],[0,-1],[2,0]],[[2838,6587],[41,32],[5,3]],[[3118,6618],[3,0],[1,0],[3,-2],[2,-1],[1,-2],[2,-2],[0,-1],[1,-2],[2,-8],[2,-5],[1,-3],[1,-1],[2,-2],[4,-3],[6,-2]],[[3096,6589],[1,0],[1,2],[0,5],[2,3],[3,5],[13,12],[2,2]],[[3076,6602],[3,0],[1,-1],[1,0],[1,-1],[3,-2],[1,-2],[1,-1],[5,-3],[4,-3]],[[3006,6538],[11,6],[3,2],[26,32],[4,3],[4,2],[9,1],[2,2],[2,1],[6,11],[2,2],[1,2]],[[2812,6589],[26,-2]],[[2791,6577],[1,1],[2,1],[6,6],[12,4]],[[2663,6576],[3,-9],[0,-2],[-1,-2],[-1,-1],[-3,-7],[-1,-2],[1,-2],[1,-1],[1,0],[1,0],[1,-2],[3,-4],[4,-11],[3,-4],[2,-2]],[[2695,6547],[2,-2],[1,-1],[4,-10],[16,-5]],[[2677,6527],[1,1],[1,0],[1,2],[6,13],[2,2],[1,1],[2,1],[4,0]],[[2663,6576],[-10,-4],[-4,-3],[-2,-2],[-1,-1],[-1,-2],[-1,-3],[-1,-4],[-1,-8],[0,-4],[0,-4],[1,-9],[0,-6],[0,-2],[-1,-3],[-2,-3],[-13,-18],[-9,-16],[-2,-3],[-2,-2],[-3,-2],[-1,0],[-1,-1],[0,-2],[-12,-24],[-36,-98],[-1,-7],[-1,-19],[-1,-9],[0,-1]],[[4482,8072],[-34,-226],[-51,-348],[-5,-59],[0,-10],[3,-2],[15,-15],[5,-3],[-5,-13],[-221,-486]],[[4189,6910],[52,-65],[17,-31],[33,-106],[2,-9],[0,-9],[-3,-55],[0,-10],[2,-9],[2,-6],[86,-185],[294,-642]],[[3130,5665],[-6,0],[-2,1],[-5,3],[-51,45],[-1,0],[-3,3],[-6,6],[-18,25],[-2,6],[-1,4],[-1,1],[-2,3],[-1,1],[-2,4],[-1,2],[0,3],[-5,13],[-1,3],[-4,9],[-1,2],[-3,8],[-7,19],[-4,10],[-3,6],[-9,15],[-8,18],[-7,11],[-12,22],[-1,4],[-1,1],[-6,15],[-3,4],[-3,0]],[[2950,5932],[-4,-1],[-15,-7],[-19,-16],[-1,-1]],[[2911,5907],[-5,1],[-36,7],[-10,8],[-2,1]],[[2858,5924],[-12,0],[-9,-3],[-13,-11],[-10,-5]],[[3706,4882],[-212,262],[-16,15],[-13,16],[-3,3],[-5,4],[-1,0],[-1,1],[-9,2],[-5,3],[-20,8],[-8,5],[-5,6],[-14,13],[-36,42],[-35,73],[-3,13],[-2,6],[-3,13],[0,1],[-1,2],[0,6],[-5,19],[-4,8],[-50,72],[-5,6],[-9,8],[-42,64],[-8,8],[-3,5],[-28,68],[0,1],[-2,5],[-3,12],[0,2],[0,1],[-1,2],[0,1],[-3,3],[-11,6]],[[3140,5667],[-10,-2]],[[4359,8156],[-6,0],[-5,2],[-5,3],[-7,10],[-26,50],[-5,16],[-12,54]],[[4482,8072],[-1,12],[-1,4],[0,3],[-4,8],[-5,9],[-33,27],[-48,29],[-2,1],[-3,0]],[[4385,8165],[-2,0],[-2,-1],[-8,-5],[-5,-2],[-9,-1]],[[4482,8072],[11,-38],[39,-95],[65,-99],[391,-570],[17,-14],[9,-7],[32,-10],[19,-11],[40,-12],[102,-4],[59,-12]],[[3123,4704],[-7,5],[-26,23],[-1,6],[-1,3],[-2,1],[-1,2],[0,1],[-1,2],[0,1],[-1,1],[0,3],[-1,1],[-1,3],[-1,1],[-1,1],[-1,2],[-1,3],[-1,3],[0,1],[0,1],[0,5],[0,4],[0,2],[0,2],[0,2],[-1,1],[0,2],[-1,1],[0,1],[-2,2],[-6,5],[-3,4],[-1,2],[-1,1],[-3,2],[-34,12],[-3,0],[-9,2],[-1,1],[-11,12],[-1,3],[-1,1],[0,1],[-1,4],[0,4],[-1,8],[-1,8],[-1,4],[-1,2],[-1,2],[-18,29],[-1,2],[-1,3],[-1,11],[-1,4],[-2,6],[-6,10],[-1,2],[-15,13],[-5,5],[-4,7],[-3,3],[-4,8],[-1,1]],[[2929,4972],[-132,-30]],[[3278,4460],[-9,18],[-4,8],[-26,29],[-71,110],[-1,4],[-1,2],[0,3],[-2,44],[-2,10],[-1,3],[-1,3],[-2,5],[-3,6],[-9,4],[-15,1]],[[3131,4710],[-2,-1],[-2,-2],[0,-1],[-1,-1],[-2,-1],[-1,0]],[[2763,5039],[3,0],[1,-3],[1,-2],[1,-1],[1,-3],[1,-3],[2,-12],[1,-3],[1,-3],[18,-31],[0,-2],[1,-3],[1,-2],[0,-1],[0,-2],[1,-16],[1,-10]],[[2698,4946],[1,1],[1,1],[1,1],[0,1],[1,2],[0,2],[0,10],[1,2],[0,2],[2,4],[15,22],[2,2],[1,0],[25,25],[2,2],[3,6],[9,9],[1,1]],[[2622,5035],[1,-1],[1,0],[0,-1],[1,-2],[4,-11],[3,-5],[1,-2],[1,-1],[6,-4],[0,-1],[1,-1],[1,-1],[0,-2],[1,-2],[0,-10],[0,-1],[1,-2],[1,-1],[0,-1],[1,-1],[1,-1],[2,0],[9,-2],[2,-1],[1,-1],[2,-2],[1,-1],[0,-2],[2,-7],[1,-2],[1,-1],[5,-5],[1,-2],[2,-2],[2,-2],[13,-6],[4,-2],[3,0]],[[2513,4927],[2,0],[4,2],[2,1],[3,4],[7,11],[1,0],[42,6],[2,1],[8,6],[22,11],[5,4],[1,8],[3,8],[1,3],[1,4],[0,2],[0,2],[0,3],[-2,11],[0,3],[1,4],[3,9],[1,3],[2,2]],[[2479,4953],[12,-8],[1,-1],[2,-3],[3,-9],[2,-4],[4,-1],[10,0]],[[2797,4942],[-10,-8],[-4,-1]],[[2783,4933],[-15,3]],[[2768,4936],[-3,0],[-3,-1],[-9,-11],[-2,-4],[-3,-5],[-2,-4],[-1,-5],[0,-4],[0,-3],[0,-2],[0,-2],[1,-5],[1,-3],[0,-2],[-1,-6],[0,-6],[0,-3],[0,-2],[1,-7],[1,-6],[4,-12],[1,-4],[0,-3],[0,-4],[0,-15],[1,-2],[0,-2],[1,-2],[1,-1],[1,-1],[1,-1],[1,0],[1,0]],[[2772,4813],[1,0],[2,0],[0,-1],[1,-1],[1,-1],[0,-2],[1,-3],[1,-23],[0,-2],[0,-1],[1,-4],[2,-7],[1,-5],[0,-3],[0,-1],[-1,-1],[-3,0]],[[2760,4808],[9,5],[1,0],[2,0]],[[2779,4758],[-31,3]],[[2748,4761],[-21,-2],[-5,-2],[-4,-3],[-16,-19],[-7,-11],[-7,-6],[-8,-9],[-2,-3],[-1,-3],[0,-2],[0,-2],[1,-3],[1,-5],[1,-1],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[-4,-13],[-1,-3],[0,-2],[0,-2],[0,-6],[1,-6],[2,-10],[9,-35],[2,-10],[-1,-3],[0,-1],[-1,-2],[0,-15],[4,-64],[-5,-8],[-2,-5],[0,-6],[0,-4],[0,-6],[1,-2],[0,-3],[2,-4],[1,-2],[0,-1],[2,-1],[2,-1],[3,0],[1,0],[1,-1],[8,-5],[2,-1],[11,-2],[2,-1],[4,-3],[6,-7],[3,-4],[1,-3],[0,-5],[-1,-7],[-1,-1],[0,-1],[-1,-3],[-2,-2],[-4,-3],[-2,-1],[0,-1],[-3,-5],[-1,-1],[0,-1],[-2,-1],[-7,-4],[-1,-1],[-1,-2],[-1,-5],[1,-4],[3,-11],[0,-3],[0,-4],[-2,-7],[-1,-3],[0,-6],[0,-3],[1,-2],[9,-2],[8,0]],[[2737,4352],[1,-1],[1,-1],[2,-3],[2,-3],[2,-2],[1,-2],[2,0],[1,0]],[[2726,4349],[10,3],[1,0]],[[2757,4341],[6,-15],[1,-5],[0,-2],[-4,-7],[-2,-10],[-1,-3],[0,-2],[3,-6],[7,-13],[5,-13],[1,-4],[1,-3],[0,-8],[-1,-4],[-3,-19],[-1,-4],[2,-46],[-1,-3],[-2,-27],[1,-6]],[[2749,4340],[8,1]],[[6932,4925],[-87,7],[-13,6],[-7,1]],[[6825,4939],[-7,-1]],[[6818,4938],[-6,10],[-14,13],[-6,10],[-5,16],[-2,20],[-1,20],[3,18],[6,19],[16,27],[5,19],[0,5],[-1,4]],[[6782,4885],[-11,5],[-33,30],[-13,7],[-13,2],[-50,1],[-46,19],[-23,4]],[[6593,4953],[-18,-3]],[[6818,4938],[-15,-34],[-10,-14],[-11,-5]],[[7286,4178],[7,-1]],[[7114,4004],[4,3],[15,23],[23,27],[33,21],[45,47],[4,5],[6,12],[6,7],[24,22],[7,5],[5,2]],[[7099,4020],[3,0],[3,-4],[6,-10],[3,-2]],[[7048,3913],[6,0],[5,3],[5,3],[3,6],[10,19],[3,4],[8,7],[3,4],[2,5],[1,7],[-1,9],[-4,5],[-3,5],[0,4],[1,7],[3,8],[5,9],[4,2]],[[6997,3952],[16,-8],[28,-27],[7,-4]],[[7568,3749],[-3,-23],[-1,-14],[0,-20],[21,-99],[14,-127]],[[7876,3805],[12,-19],[6,-13],[1,-8],[-8,-3],[-9,-8],[-5,-16],[14,-46],[40,-104],[-1,-23],[-2,-13],[12,-48],[21,-36],[16,-15],[3,-5],[16,-41],[9,-14],[17,-22],[5,-10],[4,-16],[1,-14],[-2,-20],[-2,-11],[-6,-18],[0,-12],[0,-9],[8,-40],[47,-45],[6,-8],[6,-9],[7,-14],[3,-10],[1,-9],[1,-8],[0,-11],[-3,-34],[0,-10],[1,-9],[1,-8],[2,-7],[4,-7],[22,-29],[7,-11],[21,-17]],[[8207,2977],[91,-11]],[[8152,2975],[55,2]],[[6772,4536],[-3,0],[-18,8],[-15,3]],[[6835,4128],[-2,11],[-10,33],[-4,20],[2,16],[5,19],[-3,19],[-30,67],[-8,32],[-1,36],[18,104],[5,8],[-1,11],[0,5],[-2,8],[-12,20],[-4,4],[-3,2]],[[6785,4543],[-3,0],[-2,-2],[-6,-5],[-2,0]],[[7293,4177],[-1,20],[-1,30],[-7,0],[-31,2],[-9,4],[-8,9],[-10,16],[-9,18],[-21,71],[-22,115],[-3,10],[-7,12],[-8,9],[-13,12],[-17,11],[-3,7],[-4,3],[-19,3],[-27,12],[-33,30],[-3,1],[-74,8],[-3,2],[-3,3],[-3,5],[-4,15],[-3,24],[-2,97],[-4,29]],[[7293,4177],[30,-6],[4,-16],[13,-8],[37,-7],[6,-15],[11,-5],[2,-8],[-1,-9],[-7,-26],[-1,-13],[3,-15],[8,-14],[51,-76],[10,-20],[6,-18],[5,-12],[9,-8],[32,-19],[36,-17],[2,-11],[-4,-5],[-2,-5],[0,-6],[25,-89]],[[8001,3782],[11,2],[14,143],[-7,18],[-10,24],[-63,43],[-10,12],[-2,14],[3,17],[22,98],[1,9],[-2,7],[-3,6],[-8,11],[-5,7],[1,9],[3,11],[7,17],[2,6],[2,14],[1,10],[1,10],[-1,58],[4,46],[34,160],[3,9],[12,12],[5,10],[8,22]],[[7941,3808],[21,-4],[19,-15],[20,-7]],[[7876,3805],[65,3]],[[7876,3805],[-135,-1],[-17,-9],[-3,-4],[-2,-7],[-2,-2],[-4,-1]],[[7713,3781],[-8,3],[-5,2],[-5,1]],[[7695,3787],[-4,-2],[-18,-21],[-2,-1]],[[7671,3763],[-3,3],[-1,2],[-2,1]],[[7665,3769],[-1,-1],[-2,-4],[-3,-2],[-2,0]],[[7657,3762],[-2,3],[-3,0]],[[7652,3765],[-32,-21]],[[7620,3744],[-52,5]],[[6796,5171],[-38,4],[-18,19],[-19,9]],[[6950,4762],[-9,-7]],[[7561,3452],[-92,48],[-127,39],[-37,2]],[[7305,3541],[-6,-15],[-84,-32],[-12,-2],[6,-9],[5,-5],[9,-5],[4,-3],[3,-9],[2,-11],[4,-9],[11,-9],[-1,-14],[-8,-35],[-16,-50],[-33,-140],[-11,-99]],[[7599,3466],[-4,-7],[-11,-6],[-23,-1]],[[7178,3094],[-42,35],[-89,103]],[[7599,3466],[17,-30],[3,-14],[-1,-5],[0,-13],[1,-13],[-1,-7],[-1,-4],[-2,-2]],[[7615,3378],[-2,1],[-6,7],[-2,2],[-3,2]],[[7602,3390],[-3,-4],[-3,-7],[-3,-21],[0,-8],[2,-6],[3,-1],[3,-2],[3,-6],[2,-11],[4,-29],[0,-13],[-1,-11],[-36,-71],[-6,-17],[1,-14],[15,-4],[29,-2],[-30,-111],[-6,-31],[1,-10],[10,-6],[2,-4],[6,-8],[5,-3],[3,-2],[1,-10],[0,-17],[-3,-29],[-4,-10],[-6,-2]],[[7591,2920],[-11,6]],[[7580,2926],[-8,-1],[-4,-13],[-2,-25],[-3,-17],[-2,-29],[-3,-21],[7,-133],[256,-53],[84,-47],[47,-125],[22,-70],[6,-13],[6,-8],[7,0]],[[7993,2371],[17,6]],[[6863,3938],[-8,17],[-2,8],[-4,9],[-3,6],[-10,25],[-4,18],[-1,10],[4,10],[12,11],[2,16],[-3,5],[-3,10],[-8,45]],[[6997,3952],[-27,13],[-15,14],[-12,16],[-14,11]],[[6929,4006],[-26,-28]],[[6903,3978],[-4,0]],[[6899,3978],[-4,-1]],[[6895,3977],[-2,0]],[[6893,3977],[-11,-11],[-19,-28]],[[6997,3952],[-8,-38],[-1,-4],[-3,-4],[-2,0],[-3,-2],[-6,-5],[-1,-5],[0,-6],[2,-6],[2,-6],[4,-5],[4,-5],[3,-7],[0,-4],[-3,-3],[-15,-9],[-19,-20],[-10,-6],[-4,-10],[-4,-23],[-4,-30],[17,-135],[-2,-32],[0,-60],[7,-71],[-10,-23]],[[6941,3433],[-9,8],[-14,9]],[[6918,3450],[-11,-5],[-12,-20],[-3,-23],[12,-32],[34,-63],[9,-10],[100,-65]],[[6823,4083],[3,5],[2,11],[1,5],[6,24]],[[6813,4095],[6,-8],[4,-4]],[[6507,3961],[243,108],[49,24],[14,2]],[[7047,3232],[-39,-337],[-13,-46],[-24,-70],[-25,-34],[-20,-38],[-25,-63],[-4,-4],[-31,-21],[-26,-29],[-8,-14],[-22,-44],[-18,-58],[-94,-429],[-114,-320],[-7,-18]],[[6742,4638],[-6,-91]],[[5882,6645],[4,-14],[1,-209],[21,-138],[101,-127],[22,-19],[17,-4]],[[6110,6188],[10,-82],[3,-59],[4,-29],[13,-29],[8,-51],[5,-51],[27,-101],[36,-73],[84,-128],[71,-96],[28,-16],[56,-14],[64,-39],[47,-24]],[[6048,6134],[62,54]],[[6654,5399],[15,-7],[19,-26],[8,-13],[9,-28],[17,-62],[11,-31],[5,-8],[-17,-21]],[[6566,5396],[88,3]],[[6647,4590],[89,-43]],[[6507,3961],[-25,33],[-86,100],[-122,194],[-13,29],[-4,29],[28,23],[24,14],[64,14],[11,3],[6,2],[14,14],[98,134],[41,31],[44,9],[60,0]],[[6575,4950],[3,-21],[7,-13],[25,-10],[51,-39],[16,-25],[12,-57],[10,-71],[6,-26],[14,-25],[23,-25]],[[6507,3961],[55,-82],[0,-19],[-3,-28],[-9,-18],[-9,-13],[-49,-42],[-13,-17],[-7,-7],[-8,-4],[-34,-8],[-6,-5],[-15,-16],[-4,-1],[-11,-2],[-9,-6],[-9,-11],[-15,-26],[-81,-188],[-8,-21],[0,-31],[-3,-27],[-8,-35],[-55,-186],[-5,-24],[-2,-16],[0,-13],[1,-8],[2,-7],[1,-14],[-3,-20],[-20,-86],[-2,-12],[-3,-47],[-4,-20],[-4,-13],[-29,-65],[-18,-49],[-4,-14],[-2,-10],[-6,-84],[-7,-34],[-15,-59],[-34,-99],[-13,-52],[-4,-10]],[[6322,7363],[-5,-7],[-1,-7],[-2,-14],[-6,-4],[-7,-1],[-7,-3],[-4,-8],[-8,-21],[-7,-8],[-10,-5],[-10,-10],[-35,-21],[-63,-65],[-9,-1],[-4,-2],[-5,-5],[-12,-15],[-6,-7],[-15,-10],[-2,0]],[[6104,7149],[-1,0]],[[6103,7149],[-1,0],[-1,-1],[-1,-1]],[[6096,7148],[-2,0]],[[6094,7148],[-1,-1],[-2,-3],[-1,-4],[-2,-5],[-2,-2],[-1,-2],[0,-1],[4,-11],[6,-19],[1,-6],[-1,-6],[-3,-9],[-2,-5],[-1,-2],[-2,-13],[1,-6],[1,-8],[3,-6],[0,-13],[1,-6],[14,-27],[4,-6],[8,-10],[3,-5],[2,-6],[1,-8],[0,-7],[6,-25],[1,-2],[2,-1]],[[6100,7147],[-2,1]],[[6098,7148],[-2,0]],[[6136,6924],[1,0],[0,-2],[0,-5],[-2,-7],[-1,-6],[0,-7],[-2,-16],[0,-7],[1,-2],[0,-1],[1,-1]],[[6134,6923],[1,1],[1,0]],[[6135,6871],[1,0],[3,-2],[2,-7],[4,-11],[1,-5],[0,-2],[2,-1],[1,-1],[1,-1],[0,-3],[1,-2],[1,0]],[[6134,6870],[1,1]],[[6153,6836],[1,-2],[-1,-2],[-1,-2],[0,-2],[2,-1],[1,0],[3,0],[1,-1],[1,0]],[[6152,6836],[1,0]],[[6162,6826],[1,-1],[1,-9],[1,-2],[0,-3],[2,-6],[0,-3],[-1,-5],[-2,-10],[0,-3],[2,-4],[1,-5],[-1,-6],[-6,-5],[-19,-4],[-186,-2],[-60,-20],[-13,-93]],[[6160,6826],[2,0]],[[5652,6633],[-34,4],[-69,40],[-142,90],[-35,8],[-89,38],[-66,10],[-12,0]],[[5769,6622],[-16,10],[-18,13],[-10,3]],[[5725,6648],[-73,-15]],[[5882,6645],[-113,-23]],[[8438,3109],[74,-11],[73,-29]],[[8298,2966],[6,59],[9,24],[11,14],[18,14],[72,29],[24,3]],[[8298,2966],[4,-79],[-6,-199],[-13,-108],[-4,-28],[0,-21],[2,-70],[-3,-27],[-16,-4]],[[8262,2430],[-72,20],[-9,1]],[[8181,2451],[-171,-74]],[[8010,2377],[9,-59],[9,-89],[4,-27],[7,-24],[51,-118],[4,-18],[4,-20],[1,-24],[0,-28],[-43,-362],[-6,-97],[-1,-122],[-2,-25],[-19,-53],[-6,-22],[-4,-25],[-12,-193],[-2,-24]],[[7172,6544],[-25,-34],[-17,-14],[-13,-8],[-6,-7],[-4,-7],[0,-7],[0,-6],[1,-8],[-2,-10],[-7,-18],[-10,-16],[-8,-9],[-6,-4],[-15,-7],[-11,-9],[-5,-7],[-2,-6],[0,-6],[1,-5],[2,-7],[3,-5],[1,-11],[0,-15],[-9,-26],[-6,-14],[-8,-10],[-8,-9],[-9,-12],[-6,-10],[-3,-10],[-3,-11],[-1,-1]],[[6996,6215],[-3,3],[-19,26],[-6,6],[-4,3],[-8,3],[-11,6],[-4,4]],[[6941,6266],[-3,-1],[-6,-12],[-1,-6],[0,-3],[-1,-9],[8,-31],[0,-6],[-1,-7],[-6,-8],[-1,-3],[1,-1]],[[6932,6179],[2,-1],[2,-3],[2,-8],[0,-3],[-2,-3],[-5,-2],[-2,-1],[-3,0],[-2,-3],[-2,-7],[0,-3],[0,-2]],[[6931,6179],[1,0]],[[6925,6146],[2,-1],[0,-2],[-1,-3],[-3,-4],[0,-3],[1,-2],[2,0]],[[6922,6143],[1,1],[1,2],[1,0]],[[6933,6134],[1,-2],[0,-2],[-1,-3],[-2,-9],[-1,-3],[-4,-6],[1,-4],[1,-4],[2,-10],[0,-7],[-4,-18],[-5,-17],[-4,-10],[0,-4],[2,-6],[2,-6],[5,-8],[4,-5],[4,-3],[6,-12],[-7,-7],[1,-19],[0,-4],[-2,-2],[-3,-2],[-4,-4],[0,-5],[0,-17],[-1,-4],[-2,-1]],[[6926,6131],[2,0],[3,3],[2,0]],[[6922,5930],[-2,2],[-2,5],[-2,0]],[[6916,5937],[-2,-2],[-2,-2],[-2,-2],[-2,0],[-6,-1],[-4,-2],[-3,-2],[-10,-25],[-2,-7],[-2,-7],[-1,-3],[-1,-2]],[[6879,5882],[-2,0],[-1,1],[0,2],[1,4],[0,3],[-1,2]],[[6876,5894],[-3,-1],[-2,-3],[-2,-5],[-2,-6],[-2,-3],[-2,-2]],[[6863,5874],[-6,1]],[[6857,5875],[-5,-2],[-2,-2],[0,-2],[1,-3],[1,-3],[1,-23],[-1,-3],[-1,-1],[-6,0],[-4,-2],[-2,-2],[-1,-4],[0,-3],[4,-11],[1,-3],[0,-4],[-2,-6],[-2,-3],[-11,-12],[-1,-3],[3,-7],[1,-4],[-4,-16],[-1,-12],[-6,-13],[-1,-4],[1,-8],[1,-3],[3,-1]],[[6846,5720],[14,-3],[3,-2],[5,-3],[24,-33],[6,-12],[4,-15],[2,-18],[-1,-18],[-3,-17],[-18,-43],[-9,-41],[-1,-8],[0,-9],[1,-9],[3,-8],[3,-7],[10,-16],[2,-4],[0,-4],[-8,-18],[-2,-7],[-7,-51],[5,-22],[-1,-24],[-4,-25],[-21,-28],[-9,-10],[-12,-18],[-8,-14],[-28,-62]],[[6824,5715],[3,1],[5,2],[14,2]],[[7574,5062],[2,0],[8,6],[6,6],[5,6],[5,10],[25,28],[4,3],[3,2],[3,0],[4,2],[7,4],[12,11],[5,7],[4,7],[7,34],[1,6],[9,22],[8,15]],[[7568,5065],[2,-1],[2,-2],[2,0]],[[7442,4820],[4,2],[6,6],[7,13],[8,14],[20,26],[4,6],[12,27],[13,26],[7,16],[5,20],[2,13],[4,11],[5,11],[18,33],[6,14],[3,5],[2,2]],[[7104,4923],[15,-1],[60,-22],[19,-3]],[[7028,4769],[5,3],[6,8],[2,1],[-3,15],[-1,4],[-3,11],[5,11],[9,14],[22,27],[12,26],[11,22],[11,12]],[[7248,4906],[164,-73],[30,-13]],[[7198,4897],[50,9]],[[6988,4830],[3,-9],[4,-18],[3,-9],[3,-7],[5,-6],[4,-5],[6,-4],[6,-3],[6,0]],[[6962,4757],[1,1],[2,2],[2,6],[3,10],[5,13],[5,25],[4,14],[4,2]],[[6950,4762],[12,-5]],[[6926,5131],[-19,26],[-11,9],[-5,1],[-37,3],[-3,1]],[[6851,5171],[-4,-7],[-6,-34],[-28,-11]],[[6944,5010],[2,2],[2,6],[1,7],[0,29],[-1,29],[3,9],[0,11],[0,3],[1,1],[-1,3],[-2,13],[-2,9],[0,11],[-3,4],[-1,3]],[[6943,5150],[-17,-19]],[[6943,5024],[0,-9],[-1,-3],[0,-2],[2,0]],[[6932,4925],[1,41],[5,12],[1,2],[3,6],[1,4],[0,4],[-2,7],[-1,8],[3,15]],[[6812,5118],[-16,53]],[[6813,5119],[-1,-1]],[[6950,4762],[3,14],[0,37],[-2,20],[-4,24],[-9,36],[-6,21],[0,11]],[[2417,5066],[1,-1],[21,-17],[6,-6],[0,-1],[-1,-2],[-2,-5],[-3,-5],[0,-1],[-1,-3],[-1,-6],[0,-5],[-1,-4],[1,-4],[0,-2],[0,-3],[4,-12],[1,-2],[1,-1]],[[2452,5003],[12,-4],[6,0],[7,-2],[2,-1],[1,-2],[0,-2],[1,-2],[0,-4],[-1,-8],[0,-15],[0,-4],[-1,-6]],[[2443,4986],[1,1],[0,2],[1,3],[1,4],[0,1],[0,2],[1,1],[1,1],[2,1],[1,1],[1,0]],[[2479,4953],[-4,-37],[0,-10],[0,-1],[8,-9],[1,-2],[2,-3],[2,-7],[1,-4],[0,-3],[-7,-16],[-3,-12],[-1,-2],[-6,-60],[0,-7],[2,-9],[6,-14],[3,-10],[2,-5],[3,-3],[1,-4],[3,-17],[1,-5],[0,-4],[-1,-1],[0,-1],[-1,0]],[[2491,4707],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,2],[-1,1],[0,3],[0,2],[-1,1],[-1,1],[-1,1],[-2,1]],[[2480,4723],[-10,-1],[-1,-1],[-2,-1],[-2,-3],[-1,-3],[0,-2],[1,-1],[0,-2],[1,-2],[1,-4],[1,-5],[2,-19],[-1,-4],[0,-2],[-3,-6],[-15,-19],[-28,-40],[-4,-9]],[[6964,6795],[21,29],[40,19],[7,13],[0,3],[-3,13]],[[6964,6797],[-2,-3]],[[6962,6794],[-7,0],[-3,-2],[-4,-4],[-5,-9],[-4,-11],[-3,-17],[1,-13],[10,-37],[0,-15],[-5,-12],[-15,-16],[-8,-6],[-6,-6],[-4,-6],[-11,-25],[-11,-17],[-9,-18],[0,-8],[-1,-3],[0,-1],[0,-3],[0,-3],[-1,-5],[-2,-7],[-1,-2],[0,-2],[1,-3],[-1,-4],[-2,-5],[-1,-3],[0,-2],[-1,-3],[-2,-4],[-6,-5],[-8,-17],[-2,-10],[-2,-5],[-2,-6],[-7,-9],[-2,-4],[0,-3],[0,-10],[0,-5],[-2,-10],[0,-4],[2,-6],[0,-3],[-1,-4],[1,-2],[1,-2],[1,-1],[6,-1],[0,-2],[-2,-6],[-12,-21],[-8,0],[-5,2],[-40,46],[-43,67],[-32,29],[-44,30],[-37,21],[-34,30],[-104,94],[-40,29],[-12,12],[-5,11],[-9,10],[-14,10],[-7,15],[-34,56],[-4,5],[-6,10],[-4,12],[-2,9],[2,10],[5,5],[6,3],[5,5],[2,18],[-11,8],[-27,6],[3,7],[2,5],[2,15],[-1,3],[-1,4],[-1,3],[1,6],[2,2],[2,1],[1,1],[1,3],[-3,12],[-8,8],[-14,9],[-6,7],[-14,22],[-2,8],[-1,2],[-3,3],[-2,5],[-1,9],[1,10],[1,5],[0,6],[-2,8],[3,15],[8,-4],[2,-2],[2,-4],[0,-3],[1,-3],[2,-5],[0,-4],[0,-5],[3,-7],[3,-2],[5,1],[9,22],[9,8],[12,-12]],[[7049,7379],[-12,25],[-13,20],[-28,95]],[[6996,7519],[3,2]],[[6999,7521],[6,4],[2,0],[2,-2],[1,-3],[3,-3],[2,0],[5,5],[3,0],[1,-1],[1,-2],[0,-3],[0,-2],[0,-3],[2,-4],[3,0],[3,0],[12,6],[4,0],[3,-1],[2,-7],[4,-4],[2,0],[3,2],[3,3],[4,2],[4,0],[2,-2],[2,-4],[2,-4],[4,-5],[3,0],[2,2],[0,3],[0,6],[1,3],[2,3],[2,3],[2,1],[2,-1],[1,-2],[1,-3],[1,-14],[1,-5],[1,-2],[2,1],[5,7],[8,5],[2,6],[0,2],[-6,16],[1,2],[1,1],[4,2],[2,-1],[3,-2],[2,0],[6,1],[2,-1],[2,-1],[2,-4],[2,-1],[1,-1],[1,-2],[2,-3],[5,-2],[12,-1],[6,1],[4,2],[3,4],[1,3],[1,6],[1,2],[0,2],[0,3],[-1,3],[-3,6],[-36,26],[-12,14],[-17,23],[-38,68],[-5,6],[-6,6],[-12,8],[-52,55],[-3,9],[-2,12],[11,14],[4,6],[3,6],[2,8],[4,5],[13,8],[4,8],[-1,8],[-3,7],[-26,47],[-5,7],[-6,0],[-3,-4],[-5,-8],[-30,68],[-3,11],[0,20],[17,23],[6,12],[10,18],[16,18],[11,5],[8,-2],[15,-6],[24,5],[23,9],[27,20],[12,4],[10,1],[22,-9],[18,-2],[8,5],[6,6],[5,13],[6,18]],[[5823,8645],[3,-21],[8,-22],[8,-21],[20,-29],[10,-10],[9,0],[10,18],[0,-15],[-2,-19],[0,-16],[9,-3],[-4,-21],[1,-9],[4,-7],[6,-16],[-14,-1],[-2,-10],[6,-8],[10,6],[16,-12],[9,-10],[7,-29],[9,-6],[22,-1],[2,2],[2,4],[3,5],[5,2],[6,-3],[5,-5],[16,-26],[9,-12],[5,-4],[4,0],[4,-2],[4,-7],[-11,-7],[-5,-6],[-1,-7],[3,-8],[6,1],[18,13],[4,0],[8,-6],[4,-5],[2,-6],[5,-15],[4,12],[5,5],[6,2],[8,0],[6,-2],[43,35],[68,14],[21,3],[17,13],[8,8],[3,15],[4,17],[5,22],[15,37],[16,29],[4,9],[7,9],[9,4],[19,-4],[8,-6],[9,-10],[7,-11],[15,-16],[10,-13],[16,-12],[76,-30],[7,-2],[4,0],[1,5],[1,4],[0,6],[0,5],[2,3],[4,3],[5,1],[9,-4],[1,-2],[2,0],[2,3],[2,11],[1,6],[0,5],[0,3],[-1,3],[0,5],[0,2],[0,2],[0,3],[0,4],[-2,5],[1,2],[3,2],[2,3],[3,4],[4,13],[1,4],[0,5],[0,5],[-1,4],[-1,5],[-2,3],[-3,2],[-3,1],[-9,4],[-4,3],[-4,1],[-8,1],[-3,1],[-2,2],[-6,6],[-1,3],[-1,3],[0,2],[-1,5],[-1,3],[0,3],[1,4],[1,7],[2,7],[0,8],[0,4],[1,2],[2,8],[2,4],[2,3],[2,2],[2,1],[2,0],[2,-1],[10,-8],[6,-2],[36,-10],[15,-9],[16,-5]],[[6580,8596],[32,-26],[12,-4],[3,1],[3,-1],[3,-3],[11,-17],[11,-9],[7,-9],[7,-5],[3,-4],[3,-5],[0,-5],[2,-5],[2,-6],[0,-3],[-1,-1],[-2,-1],[-2,-1],[0,-2],[1,-2],[9,1],[2,1],[2,-1],[2,-3],[3,-8],[1,-4],[-1,-4],[-1,-3],[1,-2],[4,-11],[2,-1],[4,0],[2,1],[3,0],[5,-1],[15,-2],[2,-2],[2,-2],[2,-5],[3,-4],[3,-4],[49,-32],[9,-10],[5,-4],[2,-4],[1,-4],[1,-8],[0,-4],[6,-8],[1,-8],[4,-10],[1,-1],[1,0],[1,2],[2,1],[1,0],[1,-2],[1,-3],[0,-3],[0,-5],[-3,-8],[-18,-37],[-15,-19],[-8,-19],[-9,-5],[-4,-4],[-14,-19],[-9,-8],[-7,-9],[-5,-1],[-2,1],[-1,3],[0,3],[-1,1],[-1,2],[-3,1],[-3,1],[-3,-2],[-5,-3],[-2,0],[-2,0],[-2,-1],[-1,-3],[-1,-5],[0,-3],[-1,-4],[-2,-1],[-3,2],[-2,2],[0,4],[0,4],[1,3],[1,3],[0,3],[-1,1],[-3,0],[-2,-1],[-3,-1],[-2,-1],[-3,1],[-2,2],[-2,2],[0,3],[-1,3],[-1,3],[-1,0],[-1,-1],[0,-5],[0,-4],[2,-4],[0,-2],[-3,-1],[-1,1],[-2,2],[-3,-3],[-4,-5],[-13,-22],[-2,-8],[-2,-4],[-2,-5],[-5,-6],[-4,-7],[-7,-8],[-3,-2],[-3,1],[-1,4],[-2,2],[-1,2],[-2,0],[-1,-3],[-1,-7],[0,-11],[-1,-6],[-2,-5],[-5,-3],[-3,0],[-13,2],[-2,-2],[-2,-4],[1,-9],[1,-4],[1,-3],[1,-4],[0,-3],[0,-5],[-1,-5],[-1,-4],[-5,-6],[-4,-3],[-4,-2],[-4,0],[-6,1],[-2,0],[-1,-2],[0,-4],[2,-9],[1,-8],[0,-15],[-4,-19],[-9,-22],[-21,-39],[-9,-12],[-9,-9],[-5,-3],[-7,-13],[-12,-7],[-4,-6],[-4,-8],[-6,-16],[-5,-9],[-16,-23],[-3,-6],[-3,-11],[-6,-19],[-10,-11],[-4,-1],[-2,-3],[-3,-8],[-1,-7],[-1,-6],[-11,-31],[-1,-8],[-1,-7],[1,-19],[0,-4],[-2,-5],[-7,-16],[-6,-8],[-68,-43],[-4,-10],[3,-24],[6,-8],[8,-2],[7,0],[2,-7],[0,-18],[-5,-66],[-5,-19],[-4,-6],[-4,-1],[-4,0],[-3,-3],[-3,-6],[-11,-39],[-2,-11],[1,-13],[8,-30]],[[7049,7378],[25,-32],[4,-19],[0,-16],[-8,-24],[-2,-10],[-2,-24],[-2,-11],[-1,-35],[-2,-27],[1,-10],[4,-9],[11,-19],[10,-21],[0,-11],[-2,-13],[-6,-16],[-19,-39],[-4,-18],[2,-15],[3,-16],[2,-14],[-2,-15],[-6,-20],[-1,-13],[-2,-6],[-1,-4],[-4,-2],[-5,-4],[-6,-7],[-6,-12],[-2,-8],[0,-8],[1,-8]],[[6346,7098],[12,-11],[5,-3],[11,-5],[5,0],[5,1],[11,14],[8,4],[22,1],[10,3],[9,7],[4,11],[6,28],[5,10],[7,5],[12,0],[17,2],[17,15],[11,2],[6,3],[5,11],[5,28],[3,24],[4,11],[8,15],[7,9],[4,9],[0,11],[-2,8],[-3,9],[-12,19],[-3,5],[0,6],[3,8],[32,40],[37,61],[6,22],[8,2],[12,-7],[55,-59],[19,2],[11,3],[5,4],[5,14],[7,31],[12,7],[9,2],[28,-8],[12,-3],[10,-8],[3,-1],[4,1],[5,2],[8,6],[3,4],[2,6],[2,0],[7,-5],[3,-1],[8,-2],[2,-2],[2,-1],[1,1],[3,8],[2,2],[10,6],[3,3],[2,3],[3,3],[3,1],[7,-2],[4,0],[12,10],[11,-5],[1,-3],[2,-1],[2,0],[5,4],[3,2],[4,-3],[2,-3],[3,-7],[2,-2],[2,0],[1,5],[0,3],[-1,3],[0,3],[0,3],[2,3],[2,0],[6,-5],[2,-1],[2,5],[2,4],[3,5],[5,5],[2,5],[2,7],[1,3],[3,3],[5,4],[2,-1],[1,-3],[0,-9],[4,-8]],[[7601,6589],[-5,88],[1,6],[1,2],[2,-1],[4,1],[2,0],[2,-2],[2,0],[3,0],[2,1],[2,1],[2,1],[-6,14],[-35,57],[-3,7],[-3,4],[-4,5],[-3,3],[-4,0],[-3,-3],[-4,-7],[-1,-5],[0,-7],[-2,-5],[-3,-6],[-6,-10],[-2,-6],[-3,-8],[-1,-3],[-4,-3],[-2,-2],[-1,-2],[-1,-1],[-1,1],[0,2],[0,3],[-1,2],[-1,2],[-2,-2],[-2,-3],[-3,-8],[-1,-5],[0,-8],[2,-2],[1,-1],[2,1],[1,1],[1,-2],[-1,-3],[-2,-7],[-5,-4],[-2,-4],[-1,-14],[-6,-7],[2,-5],[1,-1],[5,-1],[2,0],[1,-1],[1,-2],[0,-2],[0,-3],[0,-2],[-1,-6],[-3,-9],[-12,-29],[-4,-9],[-13,-18],[-2,-1],[-2,1],[-1,0],[-2,-2],[0,-5],[-1,-5],[-2,-6],[-6,-9],[-3,-14],[-2,-11],[-5,-18],[0,-4],[-1,-3],[-4,-2],[-2,-3],[-2,-5],[-7,-27],[-6,-16],[-2,-7],[-1,-5],[0,-3],[-1,-4],[0,-3],[0,-3],[1,-3],[0,-3],[0,-2],[-1,-8],[-2,-4],[-6,-16],[-1,-9],[-1,-2],[0,-3],[-3,-5],[-3,-5],[-10,-8],[-5,-3],[-5,-2],[-3,0],[-5,-2],[-2,0],[-4,1],[-7,-10],[-57,-103],[-17,-15],[-1,14],[-1,5],[-2,3],[-2,0],[-1,0],[-2,1],[-4,2],[-2,2],[-1,4],[0,4],[4,10],[1,7],[1,5],[0,6],[0,4],[-4,15],[0,6],[0,5],[0,5],[2,4],[7,12],[2,5],[1,4],[0,4],[-6,24],[-3,22],[0,7],[0,4],[0,5],[0,6],[-2,21],[-2,34],[-1,9],[-5,10],[-4,8],[-7,9],[-5,4],[-7,3],[-11,2],[-6,-1],[-4,-2],[-12,-11],[-3,-1],[-4,1],[-3,4],[-5,10],[-11,17],[-28,27]],[[7172,6544],[-1,68],[2,13],[0,4],[-1,4],[-1,4],[-6,12],[-45,47],[-20,5],[-57,4],[-9,-5],[-11,5],[-9,6],[-52,83]],[[2355,4596],[6,2],[3,0],[3,0],[3,0],[3,0],[3,0],[2,-1],[3,-1],[3,0],[2,-1],[3,-2],[2,-1],[2,-1],[2,-2],[3,-1],[2,-2],[1,-2],[2,-2],[2,-2],[2,-2],[1,-2],[2,-3],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[0,-3],[1,-3],[0,-3],[1,-3],[0,-2],[0,-3],[0,-3],[-1,-3],[0,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-2],[-1,-3],[-2,-3],[-1,-3],[-2,-2],[-2,-3],[-2,-3],[-3,-2],[-2,-3],[-3,-2],[-8,-6],[-4,-2],[-3,-2],[-4,-1],[-3,-2],[-4,-1],[-3,0],[-3,-1],[-3,0],[-3,0],[-3,1],[-3,0],[-3,1],[-2,1],[-3,2],[-2,1],[-3,2],[-2,2],[-2,2],[-2,2],[-2,3],[-1,2],[-2,3],[-1,3],[-1,3],[-1,3],[-1,3],[-1,4],[-1,3],[0,3],[0,4],[0,3],[0,4],[0,4],[0,3],[1,4],[1,3],[1,4],[1,4],[2,3],[1,4],[2,3],[2,4],[2,3],[3,4],[2,3],[3,3],[3,3],[4,3],[7,1]],[[3528,7246],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[-19,-3],[-10,-2],[-9,-2],[-10,-2],[-10,-3],[-9,-2],[-10,-3],[-10,-2],[-10,-3],[-9,-3],[-10,-3],[-10,-3],[-10,-4],[-10,-3],[-10,-4],[-10,-3],[-10,-4],[-10,-4],[-9,-4],[-10,-4],[-10,-4],[-10,-5],[-10,-4],[-9,-5],[-10,-5],[-10,-5],[-10,-5],[-9,-5],[-10,-5],[-9,-5],[-10,-6],[-9,-5],[-10,-6],[-9,-6],[-9,-6],[-9,-6],[-9,-6],[-9,-6],[-9,-6],[-9,-7],[-9,-6],[-9,-7],[-8,-6],[-9,-7],[-8,-7],[-8,-7],[-9,-7],[-8,-8],[-8,-7],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-4,-5],[-2,-2],[-2,-2],[-2,-3],[-2,-2],[-2,-3],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-3,-3],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-1],[-3,-2],[-2,-2],[-2,-2],[-2,-1],[-2,-2],[-3,-2],[-2,-1],[-2,-2],[-3,-1],[-2,-2],[-2,-1],[-3,-1],[-2,-2],[-2,-1],[-3,-1],[-2,-1],[-3,-1],[-2,-1],[-3,-1],[-2,-1],[-3,-1],[-2,-1],[-3,0],[-2,-1],[-3,-1],[-2,0],[-3,-1],[-3,0],[-2,-1],[-3,0],[-3,0],[-4,-1],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,1],[-2,0],[-2,0],[-2,0],[-2,1],[-2,0],[-2,1],[-3,0],[-2,1],[-2,0],[-2,1],[-2,1],[-2,1],[-2,0],[-2,1],[-3,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,2],[-2,1],[-2,1],[-2,1],[-2,2],[-1,1],[-2,2],[-2,1],[-2,2],[-2,1],[-1,2],[-2,2],[-2,2],[-1,1],[-2,2],[-2,2],[-1,2],[-2,2],[-1,2],[-1,3],[-2,2],[-1,2],[-2,4],[-1,2],[-1,1],[-1,2],[-1,2],[0,2],[-1,2],[-1,2],[-1,3],[0,2],[-1,2],[-1,2],[0,2],[-1,2],[0,2],[-1,3],[0,2],[-1,2],[0,2],[-1,3],[0,2],[0,2],[-1,2],[0,3],[0,2],[0,2],[-1,3],[0,2],[0,2],[0,3],[0,2],[0,2],[0,3],[0,2],[0,2],[0,3],[0,2],[0,2],[0,3],[0,2],[0,2],[1,3],[0,2],[0,2],[0,2],[1,3],[0,2],[0,2],[1,2],[1,9],[1,4],[1,3],[1,4],[1,4],[2,3],[1,4],[1,3],[2,3],[1,3],[2,3],[1,3],[2,3],[2,3],[1,2],[2,3],[2,2],[2,2],[2,3],[2,2],[2,2],[2,1],[2,2],[3,2],[2,1],[2,1],[2,2],[3,1],[2,1],[3,1],[2,1],[3,0],[2,1],[3,0],[2,1],[3,0],[3,0],[2,0],[3,0],[3,0],[3,-1],[2,0],[3,-1],[3,-1],[3,0],[2,-1],[3,-1],[3,-2],[3,-1],[3,-1],[2,-1],[1,-1],[2,-1],[1,0],[2,-1],[1,-1],[2,-1],[1,0],[2,-1],[1,-1],[2,-1],[1,-1],[2,0],[1,-1],[2,-1],[2,-1],[1,0],[2,-1],[1,-1],[2,0],[1,-1],[2,-1],[1,0],[2,-1],[1,-1],[2,0],[2,-1],[1,-1],[2,0],[1,-1],[2,0],[1,-1],[2,-1],[1,0],[2,-1],[2,0],[1,0],[2,-1],[1,0],[2,-1],[2,0],[1,0],[2,-1],[2,0],[1,0],[2,-1],[1,0],[2,0],[4,0],[2,-1],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,-1],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,-1],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,1],[2,0],[4,0],[2,0],[2,0],[3,1],[2,0],[2,0],[2,1],[3,0],[2,1],[2,1],[2,0],[2,1],[3,1],[2,1],[2,0],[2,1],[3,1],[2,1],[2,1],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[2,1],[2,1],[3,1],[2,2],[2,1],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[2,1],[2,1],[3,1],[2,2],[2,1],[2,1],[2,1],[2,0],[2,1],[3,1],[2,1],[2,1],[2,1],[6,2],[3,1],[3,2],[3,1],[3,2],[3,1],[3,2],[3,1],[3,2],[3,2],[3,1],[3,2],[3,2],[3,1],[3,2],[3,2],[3,2],[3,2],[3,2],[3,1],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,1],[3,2],[3,2],[3,2],[3,1],[3,2],[3,2],[3,2],[3,1],[3,2],[3,1],[3,2],[3,1],[3,1],[3,2],[3,1],[3,1],[3,1],[3,1],[3,1],[4,1],[3,1],[3,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[2,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1]],[[3258,7124],[2,5],[2,2],[1,2],[1,3],[1,2],[2,2],[1,3],[1,2],[1,2],[1,3],[1,2],[1,3],[2,2],[1,2],[1,3],[1,2],[0,3],[1,2],[1,2],[1,3],[1,2],[1,3],[0,2],[1,3],[1,2],[0,3],[1,2],[0,3],[0,2],[1,3],[0,2],[0,3],[0,3],[0,2],[0,3],[0,3],[0,2],[0,3],[0,3],[-1,2],[0,3],[-1,3],[0,3],[-1,3],[-1,2],[-1,3],[-1,3],[-1,3],[-1,3],[-2,5],[-1,3],[-1,2],[-1,3],[-2,3],[-1,2],[-1,3],[-1,2],[-2,3],[-1,2],[-1,2],[-2,3],[-1,2],[-2,3],[-1,2],[-2,3],[-1,2],[-2,2],[-1,3],[-2,2],[-1,2],[-2,2],[-2,3],[-1,2],[-2,2],[-2,2],[-1,2],[-2,2],[-2,3],[-1,2],[-2,2],[-2,2],[-2,2],[-1,2],[-2,2],[-2,2],[-2,1],[-2,2],[-1,2],[-2,2],[-2,2],[-2,2],[-2,1],[-1,2],[-2,2],[-2,1],[-2,2],[-2,2],[-2,1],[-3,3],[-2,2],[-2,1],[-2,2],[-2,2],[-2,1],[-2,2],[-2,1],[-2,2],[-2,1],[-2,1],[-2,2],[-2,1],[-2,2],[-2,1],[-3,1],[-2,2],[-2,1],[-2,1],[-2,1],[-2,2],[-2,1],[-2,1],[-2,1],[-2,1],[-2,2],[-3,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-3,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-3,0],[-2,1],[-2,1],[-2,1],[-2,1],[-3,0],[-2,1],[-2,1],[-2,0],[-2,1],[-3,1],[-2,0],[-2,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-7,-2],[-3,-1],[-3,-1],[-4,-1],[-3,-1],[-3,-1],[-4,-2],[-3,-1],[-3,-1],[-3,-1],[-4,-1],[-3,-1],[-3,-2],[-3,-1],[-4,-1],[-3,-1],[-3,-1],[-3,-1],[-4,-1],[-3,-1],[-3,-1],[-3,-1],[-4,-1],[-3,-1],[-3,0],[-3,-1],[-4,-1],[-3,0],[-3,-1],[-4,0],[-3,0],[-3,-1],[-3,0],[-4,0],[-3,0],[-3,1],[-4,0],[-3,0],[-3,1],[-4,0],[-3,1],[-3,1],[-4,1],[-3,1],[-3,2],[-4,1],[-3,2],[-3,1],[-4,2],[-2,2],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[-2,1],[-1,0],[-1,1],[-1,1],[-2,1],[-1,0],[-1,1],[-2,1],[-1,1],[-1,0],[-2,1],[-1,1],[-1,1],[-2,1],[-1,0],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,2],[-1,1],[0,1],[-1,1],[-1,2],[0,1],[-2,5],[0,3],[-1,2],[0,3],[0,2],[0,2],[0,2],[1,2],[1,2],[0,2],[1,2],[1,1],[1,2],[2,1],[1,2],[1,1],[2,1],[2,2],[1,1],[2,1],[2,1],[2,1],[2,1],[2,0],[2,1],[2,1],[2,0],[3,1],[2,0],[2,1],[2,0],[3,1],[2,0],[2,0],[3,0],[2,1],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,-1],[2,0],[2,0],[1,0],[2,0],[1,-1],[2,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[2,-2],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[3,-1],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[1,1],[2,0],[2,0],[2,1],[2,0],[1,1],[2,0],[2,1],[2,0],[1,1],[2,0],[2,1],[2,0],[1,1],[2,0],[2,1],[2,0],[2,0],[1,1],[2,0],[2,1],[2,0],[2,1],[1,0],[2,0],[2,1],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[7,-1],[4,-1],[4,-1],[4,0],[4,-1],[4,-1],[5,-1],[4,-1],[4,-1],[4,-1],[4,-1],[4,-1],[4,-1],[5,-1],[4,-2],[4,-1],[4,-2],[4,-1],[5,-1],[4,-2],[4,-2],[4,-1],[4,-2],[4,-2],[5,-2],[4,-2],[4,-2],[4,-2],[4,-2],[4,-2],[4,-3],[4,-2],[3,-2],[4,-3],[4,-2],[4,-3],[3,-3],[4,-3],[4,-3],[3,-2],[4,-4],[3,-3],[3,-3],[4,-3],[3,-4],[3,-3],[3,-4],[3,-3],[3,-4],[2,-3],[2,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[2,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[2,-1],[1,-1],[1,-2],[1,-1],[1,-2],[1,-2],[2,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[2,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-2],[1,-1],[1,-2],[1,-2],[1,-2],[1,-1],[1,-2],[0,-2],[1,-2],[1,-1],[1,-2],[1,-2],[1,-2],[0,-2],[1,-2],[1,-2],[1,-2],[1,-3],[0,-1],[1,-2],[0,-2],[1,-1],[0,-2],[0,-1],[1,-2],[0,-2],[1,-1],[0,-2],[0,-2],[1,-2],[0,-1],[1,-2],[0,-2],[1,-2],[0,-2],[0,-1],[1,-2],[0,-2],[0,-2],[1,-1],[0,-2],[1,-2],[0,-2],[1,-2],[0,-1],[0,-2],[1,-2],[0,-2],[1,-1],[0,-2],[1,-2],[0,-1],[1,-2],[0,-2],[1,-1],[0,-2],[1,-1],[0,-2],[1,-1],[1,-2],[0,-1],[1,-2],[0,-1],[1,-1],[1,-2],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[-2,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-67,-27]],[[3545,7950],[0,1],[-1,0]],[[3544,7951],[-1,1],[-1,0],[0,1]],[[3542,7953],[-1,1]],[[3541,7954],[0,1]],[[3541,7955],[-1,0],[0,1]],[[3540,7956],[0,1],[-1,1]],[[3539,7958],[0,1]],[[3539,7959],[-1,1]],[[3538,7960],[0,1]],[[3538,7961],[0,1],[0,1],[-1,0],[0,1]],[[3537,7964],[0,1]],[[3537,7965],[-1,1],[0,1]],[[3536,7967],[0,1]],[[3536,7968],[-1,1]],[[3535,7969],[0,1],[0,1],[0,1]],[[3535,7972],[-1,1]],[[3534,7973],[-1,1]],[[3533,7974],[0,1],[0,1]],[[3533,7976],[-1,1],[0,1],[-1,1]],[[3531,7979],[0,1],[-1,1],[0,1],[-3,5],[-2,2],[-1,3]],[[3524,7992],[-2,3]],[[3522,7995],[-1,3],[-2,3],[-1,3]],[[3518,8004],[-2,3]],[[3516,8007],[-1,3],[-2,3]],[[3513,8013],[-1,3],[-1,4]],[[3511,8020],[-2,3],[-1,3]],[[3508,8026],[-2,4],[-1,3],[-1,4],[-2,4],[-1,3]],[[3501,8044],[-1,4],[-1,3]],[[3499,8051],[-2,4],[-1,4]],[[3496,8059],[-1,4]],[[3495,8063],[-1,3],[-1,4]],[[3493,8070],[-1,4],[-1,4]],[[3491,8078],[0,3],[-1,4],[-1,4],[0,4]],[[3489,8093],[-1,4],[0,3]],[[3488,8100],[-1,4],[0,4],[0,3],[0,4],[0,4],[0,3],[0,4]],[[3487,8126],[0,4],[0,3]],[[3487,8133],[1,4],[0,3]],[[3488,8140],[1,3],[1,4],[1,3],[1,3],[1,3],[0,2],[1,1]],[[3494,8159],[0,2],[1,1],[1,1]],[[3496,8163],[0,2],[1,1]],[[3497,8166],[0,1],[1,1]],[[3498,8168],[1,1],[0,1]],[[3499,8170],[1,1],[1,1],[1,1],[0,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[1,1]],[[3508,8179],[0,1],[1,1]],[[3509,8181],[1,0],[1,1]],[[3511,8182],[1,1]],[[3512,8183],[1,1],[1,1]],[[3514,8185],[1,0],[1,1]],[[3516,8186],[0,1],[1,0]],[[3517,8187],[1,1],[1,1]],[[3519,8189],[1,1],[1,0]],[[3521,8190],[0,1],[1,1]],[[3522,8192],[1,1],[1,1],[1,0]],[[3525,8194],[0,1],[1,1]],[[3526,8196],[1,1],[1,1],[1,1],[-1,0]],[[3528,8199],[1,0]],[[3529,8199],[0,1]],[[3529,8200],[1,0],[0,1],[1,0],[0,1],[1,0]],[[3532,8202],[1,1],[1,1]],[[3534,8204],[0,1]],[[3534,8205],[1,1],[1,1]],[[3536,8207],[1,1],[1,1]],[[3538,8209],[1,1],[1,1]],[[3540,8211],[1,1],[1,1]],[[3542,8213],[1,2],[1,1],[0,1]],[[3544,8217],[1,1]],[[3545,8218],[1,1],[1,1]],[[3547,8220],[1,1],[1,1]],[[3549,8222],[1,2],[0,1]],[[3550,8225],[1,1],[1,1]],[[3552,8227],[1,1],[0,1],[0,1]],[[3553,8230],[1,1]],[[3554,8231],[0,1]],[[3554,8232],[0,1]],[[3554,8233],[-1,0]],[[3553,8233],[-1,0]],[[3552,8233],[-1,0],[1,0],[1,1]],[[3553,8234],[1,0],[1,0]],[[3555,8234],[1,0],[1,0]],[[3557,8234],[1,0],[0,1]],[[3558,8235],[1,0],[1,0]],[[3560,8235],[1,0],[1,0]],[[3562,8235],[1,0],[1,0],[1,0]],[[3565,8235],[1,0],[1,0],[1,0]],[[3568,8235],[1,0]],[[3569,8235],[1,-1],[1,0]],[[3571,8234],[1,0],[1,0]],[[3573,8234],[1,0]],[[3574,8234],[1,-1],[1,0]],[[3576,8233],[1,0],[1,-1],[1,0],[1,0]],[[3580,8232],[1,-1],[1,0]],[[3582,8231],[1,-1],[1,0],[0,-1],[1,0]],[[3585,8229],[1,0],[1,-1],[1,-1],[1,0]],[[3589,8227],[-5,-1],[-3,0],[-2,0],[-2,-1],[-3,0],[-2,-1],[-3,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-2],[-2,-1],[-2,-2],[-2,-1],[-2,-2],[-2,-1],[-2,-2],[-1,-2],[-2,-2],[-2,-1],[-2,-2],[-2,-2],[-1,-2],[-2,-2],[-2,-2],[-1,-2],[-2,-2],[-2,-2],[-1,-2],[-2,-1],[-2,-2],[-1,-2],[-2,-2],[-2,-2],[-2,-2],[-1,-2],[-2,-2],[-2,-1],[-2,-2],[-2,-2],[-1,-1],[-2,-2],[-2,-2],[-2,-1],[-2,-1],[-2,-2],[0,-9],[0,-5],[1,-4],[0,-5],[1,-4],[0,-5],[1,-4],[0,-5],[1,-4],[1,-4],[1,-4],[1,-4],[1,-4],[1,-4],[2,-4],[1,-4],[1,-4],[2,-4],[1,-4],[1,-4],[2,-4],[1,-4],[2,-4],[1,-3],[2,-4],[1,-4],[2,-4],[1,-4],[2,-4],[1,-3],[2,-4],[1,-4],[2,-4],[1,-4],[2,-4],[1,-3],[1,-4],[2,-4],[1,-4],[1,-4],[1,-4],[1,-4],[2,-5],[0,-4],[1,-4],[1,-4],[1,-4],[1,-5],[0,-4],[-1,0]],[[6627,4768],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-3,4]],[[3589,8227],[-1,0],[-1,1],[-1,1],[-1,0]],[[3585,8229],[-1,0],[0,1],[-1,0],[-1,1]],[[3580,8232],[-1,0],[-1,0],[-1,1],[-1,0]],[[3574,8234],[-1,0]],[[3571,8234],[-1,0],[-1,1]],[[3568,8235],[-1,0],[-1,0],[-1,0]],[[3565,8235],[-1,0],[-1,0],[-1,0]],[[3560,8235],[-1,0],[-1,0]],[[3557,8234],[-1,0],[-1,0]],[[3555,8234],[-1,0],[-1,0]],[[3553,8234],[-1,-1],[-1,0],[1,0]],[[3552,8233],[1,0]],[[3554,8233],[0,-1]],[[3554,8232],[0,-1]],[[3553,8230],[0,-1],[0,-1],[-1,-1]],[[3550,8225],[0,-1],[-1,-2]],[[3549,8222],[-1,-1],[-1,-1]],[[3547,8220],[-1,-1],[-1,-1]],[[3544,8217],[0,-1],[-1,-1],[-1,-2]],[[3542,8213],[-1,-1],[-1,-1]],[[3538,8209],[-1,-1],[-1,-1]],[[3536,8207],[-1,-1],[-1,-1]],[[3534,8204],[-1,-1],[-1,-1]],[[3529,8200],[0,-1]],[[3528,8199],[1,0],[-2,-2],[-1,-1]],[[3526,8196],[-1,-1],[0,-1]],[[3525,8194],[-1,0],[-1,-1],[-1,-1]],[[3522,8192],[-1,-1],[0,-1]],[[3521,8190],[-1,0],[-1,-1]],[[3519,8189],[-1,-1],[-1,-1]],[[3517,8187],[-1,0],[0,-1]],[[3514,8185],[-1,-1],[-1,-1]],[[3511,8182],[-1,-1],[-1,0]],[[3509,8181],[-1,-1],[0,-1]],[[3499,8170],[0,-1],[-1,-1]],[[3497,8166],[-1,-2],[0,-1]],[[3494,8159],[-1,-1],[0,-2],[-1,-1],[0,-2],[-2,-6],[-1,-4],[-1,-3]],[[3488,8140],[0,-3],[-1,-4]],[[3487,8133],[0,-3],[0,-4]],[[3488,8100],[0,-3],[1,-4]],[[3491,8078],[1,-4],[1,-4]],[[3493,8070],[1,-4],[1,-3]],[[3496,8059],[1,-4],[2,-4]],[[3501,8044],[1,-3],[2,-4],[1,-4],[1,-3],[2,-4]],[[3511,8020],[1,-4],[1,-3]],[[3513,8013],[2,-3],[1,-3]],[[3518,8004],[1,-3],[2,-3],[1,-3]],[[3524,7992],[1,-3],[2,-2],[1,-3],[2,-2],[1,-2],[0,-1]],[[3531,7979],[1,-1],[0,-1],[1,-1]],[[3533,7976],[0,-1],[0,-1]],[[3533,7974],[1,-1]],[[3535,7972],[0,-1],[0,-1],[0,-1]],[[3535,7969],[1,-1]],[[3536,7967],[0,-1],[1,-1]],[[3537,7964],[0,-1],[1,0],[0,-1],[0,-1]],[[3538,7960],[1,-1]],[[3539,7959],[0,-1]],[[3539,7958],[1,-1],[0,-1]],[[3540,7956],[0,-1],[1,0]],[[3541,7954],[1,-1]],[[3544,7951],[1,0],[0,-1]],[[3545,7950],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[4,0],[2,0],[2,1],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,1],[1,0],[2,0],[2,0],[2,0],[2,1],[2,0],[2,0],[2,0],[2,1],[1,0],[2,0],[2,0],[2,1],[2,0],[2,1],[1,0],[2,1],[2,0],[2,1],[2,0],[1,1],[2,0],[2,1],[2,0],[2,1],[1,1],[2,1],[2,0],[1,1],[2,1],[2,1],[1,1],[2,1],[1,1],[2,1],[2,1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[10,0],[5,0],[6,1],[5,0],[5,1],[5,0],[5,1],[5,1],[5,1],[5,0],[5,1],[5,2],[5,1],[5,1],[6,1],[5,1],[5,1],[5,2],[5,1],[5,2],[5,1],[5,1],[5,2],[5,1],[5,2],[5,1],[5,2],[5,1],[5,2],[5,1],[5,2],[5,2],[5,1],[5,2],[5,1],[5,2],[5,1],[5,1],[5,2],[5,1],[5,1],[5,2],[5,1],[5,1],[5,1],[6,1],[5,1],[5,1],[5,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[55,7],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[2,-3],[0,-2],[1,-1],[1,-2],[1,-1],[0,-1],[1,-2],[1,-1],[1,-1],[0,-2],[1,-1],[1,-1],[1,-1],[0,-2],[1,-1],[1,-1],[1,-1],[0,-1],[1,-2],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-2],[0,-1],[1,-1],[1,-1],[1,-1],[0,-2],[1,-1],[1,-1],[0,-2],[1,-1],[1,-1],[0,-2],[1,-1],[1,-2],[0,-1],[1,-2],[0,-1],[1,-2],[1,-2],[0,-1],[1,-2],[0,-2],[1,-2],[0,-2],[1,-2],[1,-4],[0,-2],[1,-2],[0,-2],[1,-2],[0,-2],[0,-2],[1,-2],[0,-2],[1,-3],[0,-2],[0,-2],[1,-2],[0,-2],[1,-2],[0,-2],[0,-2],[1,-2],[0,-2],[0,-2],[1,-2],[0,-2],[0,-3],[1,-2],[0,-2],[0,-2],[0,-2],[1,-2],[0,-2],[0,-2],[1,-2],[0,-2],[0,-3],[0,-2],[0,-2],[1,-2],[0,-2],[0,-2],[0,-2],[1,-2],[0,-2],[0,-3],[0,-2],[0,-2],[1,-2],[0,-2],[0,-2],[0,-2],[0,-3],[0,-4],[1,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[1,-2],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[1,-2],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[-1,-3],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[-1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[-2,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[0,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[0,-1],[-1,-2],[-1,-2],[0,-1],[-1,-2],[0,-2],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-4,3],[-2,2],[-2,2],[-2,2],[-2,1],[-2,2],[-2,2],[-2,2],[-2,2],[-2,1],[-3,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,1],[-2,2],[-3,2],[-2,2],[-2,2],[-2,1],[-2,2],[-3,2],[-2,1],[-2,2],[-2,2],[-2,1],[-3,2],[-2,1],[-2,2],[-2,1],[-3,1],[-2,2],[-2,1],[-2,1],[-3,2],[-2,1],[-2,1],[-2,1],[-3,1],[-2,1],[-2,1],[-2,1],[-3,0],[-2,1],[-2,1],[-2,0],[-3,1],[-2,0],[-4,1],[-1,1],[-2,0],[-2,0],[-2,1],[-2,0],[-1,1],[-2,0],[-2,0],[-1,1],[-2,0],[-2,1],[-1,0],[-2,1],[-1,0],[-2,1],[-2,0],[-1,1],[-2,0],[-1,1],[-2,0],[-1,1],[-2,1],[-1,0],[-2,1],[-1,1],[-2,0],[-1,1],[-2,1],[-1,0],[-2,1],[-1,1],[-2,0],[-1,1],[-2,1],[-1,1],[-2,1],[-2,0],[-1,1],[-2,1],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,1],[-2,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[-1,1],[-2,4],[-1,2],[0,1],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-2,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,2],[-2,1],[-1,1],[-1,1],[-1,2],[-1,1],[-2,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,2],[-2,1],[-1,1],[-1,1],[-2,1],[-1,1],[-2,1],[-1,0],[-2,1],[-1,1],[-2,1],[-1,1],[-2,1],[-2,1],[-1,0],[-1,1],[-1,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-2,0],[-1,1],[-3,2],[-2,1],[-1,1],[-2,1],[-1,2],[-2,1],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-1,1],[-2,1],[-2,2],[-1,1],[-2,1],[-1,1],[-2,1],[-1,2],[-2,1],[-1,1],[-2,1],[-1,2],[-2,1],[-1,1],[-2,2],[-1,1],[-2,2],[-1,1],[-1,1],[-2,2],[-1,2],[-1,1],[-2,2],[-1,1],[-1,2],[-1,2],[-2,1],[-1,2],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,2],[-1,2],[-1,3],[-1,2],[-2,4],[-1,3],[0,2],[-1,3],[-1,2],[-1,2],[0,3],[-1,2],[-1,3],[0,2],[-1,3],[-1,2],[0,3],[-1,2],[0,3],[-1,2],[-1,3],[0,2],[-1,3],[0,3],[-1,2],[0,3],[-1,2],[0,3],[-1,2],[0,3],[-1,2],[0,3],[-1,3],[0,2],[0,3],[-1,2],[0,3],[-1,2],[0,3],[-1,3],[0,2],[-1,3],[0,2],[-1,3],[-1,2],[0,3],[-1,2],[0,3],[-1,2],[-1,3],[0,2],[-1,3],[-1,2],[0,3],[-1,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[-1,2],[0,1],[0,1],[-1,2],[0,1],[-1,2],[0,1],[-1,2],[0,1],[0,1],[-1,2],[0,1],[-1,2],[-1,1],[0,2],[-1,1],[0,2],[-1,1],[0,1],[-1,2],[-1,1],[0,1],[-1,2],[-1,1],[0,1],[-1,1],[-1,1],[0,2],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-4,1],[-2,0],[-2,0],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-2],[0,-2],[-1,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[1,-3],[0,-2],[0,-3],[1,-2],[0,-3],[1,-3],[0,-2],[1,-3],[0,-2],[0,-3],[1,-2],[0,-2],[1,-3],[0,-2],[1,-2],[0,-2],[0,-2],[1,-2],[0,-2],[0,-2],[0,-2],[0,-2],[1,-1],[0,-4],[0,-1],[0,-2],[0,-2],[0,-2],[-1,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[-1,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-2],[0,-2],[-1,-1],[0,-2],[0,-6],[-1,-3],[0,-3],[0,-3],[0,-3],[-1,-3],[0,-4],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[1,-3],[0,-4],[0,-3],[0,-3],[0,-3],[1,-3],[0,-3],[0,-3],[0,-3],[1,-3],[0,-3],[0,-3],[0,-3],[1,-3],[0,-3],[0,-3],[1,-4],[0,-3],[0,-3],[1,-3],[0,-3],[1,-3],[0,-3],[0,-3],[1,-3],[0,-3],[0,-3],[1,-3],[0,-3],[1,-3],[0,-3],[0,-5],[1,-2],[0,-3],[0,-2],[0,-3],[1,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[1,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[1,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[1,-2],[0,-3],[0,-2],[0,-3],[0,-2],[1,-3],[0,-2],[0,-2],[1,-3],[0,-2],[0,-3],[1,-2],[0,-2],[0,-3],[1,-2],[0,-2],[1,-3],[0,-2],[1,-2],[1,-3],[0,-2],[1,-2],[1,-3],[0,-2],[1,-4],[1,-1],[1,-2],[0,-2],[1,-2],[0,-2],[1,-2],[1,-2],[0,-1],[1,-2],[0,-2],[1,-2],[1,-2],[0,-2],[1,-2],[0,-2],[1,-2],[1,-2],[0,-2],[1,-2],[1,-2],[0,-2],[1,-1],[1,-2],[1,-2],[0,-2],[1,-2],[1,-2],[0,-2],[1,-2],[1,-2],[1,-1],[0,-2],[1,-2],[1,-2],[1,-2],[1,-1],[0,-2],[1,-2],[1,-2],[1,-1],[1,-2],[1,-2],[1,-1],[0,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[3,-4],[2,-3],[1,-2],[1,-2],[2,-2],[1,-3],[1,-2],[1,-2],[1,-3],[2,-2],[1,-3],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[1,-3],[1,-3],[1,-2],[1,-3],[1,-2],[1,-3],[1,-3],[1,-2],[2,-3],[1,-2],[1,-3],[1,-3],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[2,-3],[1,-2],[1,-2],[1,-3],[2,-2],[1,-2],[1,-2],[2,-2],[1,-2],[2,-2],[1,-2],[2,-2],[1,-2],[2,-2],[6,-6],[3,-3],[3,-2],[3,-3],[2,-2],[3,-2],[3,-2],[3,-2],[2,-1],[3,-2],[2,-1],[3,-1],[3,-1],[2,-1],[3,-1],[2,-1],[3,0],[2,-1],[3,0],[2,0],[3,-1],[2,0],[3,0],[2,1],[3,0],[2,0],[3,1],[3,0],[2,1],[3,0],[2,1],[3,1],[3,0],[2,1],[3,1],[3,1],[3,1],[3,1],[2,1],[3,1],[3,1],[3,1],[4,1],[3,1],[3,1],[3,1],[3,1],[4,1],[3,1],[6,2],[4,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,2],[3,1],[3,1],[4,1],[3,1],[3,1],[3,1],[3,1],[3,2],[3,1],[3,1],[3,1],[3,2],[3,1],[3,1],[3,2],[4,1],[3,1],[3,2],[3,1],[3,2],[3,1],[3,2],[3,1],[3,2],[3,1],[3,2],[3,1],[3,2],[3,2],[3,1],[2,2],[3,2],[3,2],[3,2],[3,1],[3,2],[3,2],[3,2],[3,2],[3,2],[2,2],[3,2],[2,1],[1,1],[1,1],[2,2],[1,1],[1,1],[2,1],[1,1],[1,1],[2,2],[1,1],[1,1],[1,1],[2,1],[1,2],[1,1],[1,1],[2,1],[1,2],[1,1],[1,1],[2,2],[1,1],[1,1],[1,1],[2,2],[1,1],[1,1],[1,2],[2,1],[1,1],[1,1],[1,2],[2,1],[1,1],[1,1],[1,2],[2,1],[1,1],[1,1],[1,2],[2,1],[1,1],[1,1],[2,1],[1,1],[1,2],[1,1],[2,1],[1,1],[1,1],[1,0],[1,1],[2,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[2,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[2,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,2],[0,1],[1,1],[1,1],[0,2],[1,1],[0,2],[1,1],[0,1],[1,2],[0,1],[1,2],[0,1],[0,2],[1,1],[0,1],[0,2],[1,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[2,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[7,-3],[3,0],[4,-1],[3,-1],[3,0],[4,0],[3,-1],[4,0],[3,0],[3,1],[4,0],[3,0],[4,1],[3,0],[4,1],[3,1],[3,1],[4,1],[3,1],[4,1],[3,1],[4,1],[3,1],[4,1],[3,2],[4,1],[3,1],[3,2],[4,1],[3,2],[4,1],[3,2],[3,1],[4,2],[3,1],[4,1],[3,2],[3,1],[4,2],[3,1],[3,1],[4,2],[3,1],[3,1],[3,1],[4,1],[3,1],[3,1],[3,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[1,2],[1,1],[1,1],[2,1],[1,2],[1,1],[1,1],[1,2],[1,1],[2,2],[1,1],[1,1],[1,2],[1,1],[2,2],[1,1],[1,1],[1,2],[1,1],[1,1],[1,1],[1,2],[1,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[3,3],[1,1],[2,1],[2,2],[1,1],[2,1],[2,2],[1,1],[2,1],[2,2],[1,1],[2,1],[2,1],[2,1],[1,2],[2,1],[2,1],[2,1],[1,1],[2,1],[2,2],[2,1],[1,1],[2,1],[2,1],[2,1],[2,1],[1,1],[2,1],[2,1],[2,1],[2,1],[1,1],[2,1],[2,1],[2,1],[2,1],[2,0],[1,1],[2,1],[2,1],[2,1],[2,1],[1,0],[2,1],[2,1],[2,1],[2,0],[1,1],[3,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[2,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[2,1],[1,1],[1,1],[1,1],[1,1],[1,1],[2,2],[1,1],[1,1],[1,1],[1,1],[2,1],[1,1],[1,1],[1,1],[1,1],[2,2],[1,1],[1,1],[1,1],[1,1],[2,1],[1,1],[1,1],[1,1],[1,1],[2,0],[1,1],[1,1],[1,1],[1,1],[2,0],[1,1],[1,1],[1,0],[4,2],[2,1],[3,1],[2,1],[2,0],[2,1],[2,1],[2,0],[2,1],[2,1],[3,0],[2,1],[2,0],[2,1],[2,0],[2,0],[2,1],[3,0],[2,1],[2,0],[2,0],[2,1],[2,0],[2,0],[3,1],[2,0],[2,0],[2,0],[2,1],[2,0],[2,0],[3,1],[2,0],[2,0],[2,1],[2,0],[2,0],[3,1],[2,0],[2,0],[2,1],[2,0],[2,1],[3,0],[2,1],[2,0],[2,1],[2,1],[2,0],[10,4],[5,1],[5,2],[5,1],[4,2],[5,1],[5,2],[4,1],[4,2],[5,1],[4,2],[4,1],[4,2],[4,1],[4,2],[4,2],[4,2],[4,1],[3,2],[4,2],[4,2],[4,2],[3,2],[4,2],[3,3],[4,2],[3,2],[4,3],[3,3],[4,2],[3,3],[3,3],[4,3],[3,3],[3,4],[4,3],[3,4],[3,4],[4,4],[3,4],[3,4],[4,4],[3,5],[3,4],[4,5],[3,5],[4,6],[3,5],[4,6],[1,2],[1,1],[2,2],[1,3],[2,3],[2,3],[3,3],[3,3],[2,4],[3,4],[4,5],[3,4],[4,5],[3,4],[4,5],[4,5],[4,5],[5,5],[4,5],[4,5],[4,5],[5,5],[4,5],[5,5],[4,5],[5,4],[4,5],[5,4],[4,4],[4,4],[5,4],[4,3],[4,3],[4,3],[3,3],[4,2],[4,2],[3,1],[3,2],[3,0],[3,0],[3,0],[2,-1],[2,-1],[2,-2],[1,-2],[2,-3],[1,-3],[0,-5],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,5],[1,3],[0,3],[1,3],[0,3],[1,3],[0,3],[0,3],[1,3],[0,3],[1,4],[0,3],[1,3],[0,4],[0,3],[1,3],[0,4],[1,3],[0,4],[1,3],[0,4],[1,3],[0,3],[1,4],[1,3],[0,4],[1,3],[0,3],[1,4],[1,3],[1,3],[0,3],[1,3],[1,3],[1,3],[1,3],[1,3],[0,3],[1,3],[1,2],[1,3],[2,2],[1,3],[1,2],[1,2],[1,2],[2,2],[1,2],[1,1],[3,3],[1,2],[1,1],[1,1],[2,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,0],[1,1],[0,1],[1,1],[1,0],[1,1],[0,1],[1,0],[1,1],[0,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,2],[1,1],[1,1],[0,2],[1,1],[1,2],[0,1],[1,2],[1,2],[1,2],[0,2],[1,1],[0,1],[1,1],[0,1],[1,2],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,2],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,2],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,2],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,2],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[2,4],[1,3],[0,2],[1,2],[1,3],[1,3],[1,2],[1,3],[1,2],[1,3],[1,3],[1,2],[1,3],[1,3],[1,2],[1,3],[1,3],[1,2],[1,3],[1,3],[1,2],[1,3],[1,2],[1,3],[1,2],[1,2],[1,3],[2,2],[1,2],[1,2],[1,2],[2,2],[1,2],[1,2],[2,1],[1,2],[2,1],[1,2],[2,1],[1,1],[2,1],[1,1],[2,1],[2,0],[2,1],[1,0],[2,0],[2,0],[2,0],[1,-4],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-3],[0,-2],[-1,-2],[0,-2],[-1,-2],[0,-2],[0,-2],[-1,-2],[0,-2],[-1,-2],[0,-1],[-1,-2],[-1,-2],[0,-2],[-1,-2],[0,-2],[-1,-2],[-1,-2],[0,-2],[-1,-2],[-1,-2],[-1,-1],[0,-2],[-1,-2],[-1,-2],[-1,-1],[0,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[-1,-1],[0,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-3],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[2,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[2,1],[1,0],[1,0],[1,1],[2,0],[1,1],[1,0],[1,1],[1,1],[1,0],[2,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[2,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,0],[1,1],[2,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1],[2,0],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0],[2,1],[2,1],[1,1],[2,0],[1,1],[1,1],[2,0],[1,1],[1,0],[2,1],[1,1],[1,0],[2,1],[1,0],[1,1],[2,0],[1,1],[1,0],[2,1],[1,1],[1,0],[2,1],[1,0],[1,1],[2,0],[1,1],[1,0],[2,1],[1,0],[2,1],[1,0],[1,1],[2,0],[1,1],[1,0],[2,1],[1,0],[1,1],[2,0],[1,1],[2,0],[1,1],[1,0],[2,1],[1,0],[1,1],[2,0],[1,1],[1,0],[1,1],[9,3],[4,2],[5,2],[4,1],[4,2],[4,1],[5,2],[4,1],[4,1],[4,2],[5,1],[4,1],[4,1],[4,1],[4,1],[5,1],[4,1],[4,1],[4,1],[4,1],[4,0],[5,1],[4,1],[4,0],[4,1],[4,0],[4,0],[4,1],[4,0],[5,0],[4,0],[4,0],[4,0],[4,0],[4,0],[4,-1],[4,0],[4,-1],[4,0],[4,-1],[4,0],[4,-1],[3,-1],[4,-1],[4,-1],[4,-1],[4,-1],[4,-1],[4,-2],[3,-1],[1,0],[2,-1],[1,0],[2,-1],[1,-1],[2,0],[1,-1],[2,0],[1,-1],[2,-1],[1,0],[2,-1],[2,-1],[1,0],[2,-1],[1,-1],[2,0],[2,-1],[1,-1],[2,0],[1,-1],[2,0],[2,-1],[1,-1],[2,0],[2,-1],[1,0],[2,-1],[2,0],[1,-1],[2,0],[2,-1],[1,0],[2,0],[2,-1],[1,0],[2,0],[1,0],[2,-1],[2,0],[1,0],[2,0],[2,0],[1,0],[2,0],[2,0],[1,0],[2,0],[3,1],[2,0],[2,0],[1,1],[2,0],[2,1],[1,0],[2,1],[1,0],[2,1],[1,1],[2,1],[1,0],[2,1],[1,1],[2,1],[1,1],[2,1],[1,1],[1,1],[2,1],[1,1],[2,1],[1,1],[1,1],[2,1],[1,1],[2,1],[1,1],[1,1],[2,1],[1,1],[2,1],[1,1],[2,1],[1,1],[1,1],[2,1],[1,0],[2,1],[1,1],[2,1],[1,1],[2,1],[2,0],[1,1],[2,1],[1,0],[2,1],[4,1],[1,0],[2,1],[2,0],[2,1],[2,0],[2,1],[1,0],[2,0],[2,1],[2,0],[2,0],[2,1],[2,0],[1,0],[2,1],[2,0],[2,0],[2,1],[2,0],[2,0],[1,0],[2,1],[2,0],[2,0],[2,0],[2,1],[2,0],[1,0],[2,1],[2,0],[2,0],[2,0],[2,1],[2,0],[1,0],[2,1],[2,0],[2,1],[2,0],[2,0],[1,1],[2,0],[2,1],[2,0],[2,1],[1,0],[2,1],[2,1],[4,1],[2,1],[2,0],[1,1],[2,1],[2,0],[2,1],[2,1],[2,1],[2,0],[2,1],[1,1],[2,1],[2,0],[2,1],[2,1],[2,1],[2,0],[2,1],[2,1],[2,1],[1,0],[2,1],[2,1],[2,1],[2,0],[2,1],[2,1],[2,1],[2,0],[2,1],[2,1],[2,0],[2,1],[2,0],[2,1],[1,1],[2,0],[2,1],[2,0],[2,1],[2,0],[2,1],[2,0],[2,1],[2,0],[2,1],[2,0],[2,0],[2,1],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[2,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[3,1],[1,1],[1,0],[2,1],[1,0],[2,1],[1,0],[1,1],[2,1],[1,0],[1,1],[2,0],[1,1],[2,0],[1,1],[1,1],[2,0],[1,1],[2,1],[1,0],[1,1],[2,1],[1,0],[2,1],[1,1],[1,1],[2,0],[1,1],[2,1],[1,1],[1,1],[2,0],[1,1],[1,1],[2,1],[1,1],[1,1],[1,1],[2,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,2],[1,1],[2,1],[1,1],[1,1],[1,3],[1,1],[1,1],[0,1],[1,2],[0,1],[1,1],[0,1],[1,2],[0,1],[0,1],[1,2],[0,1],[0,1],[1,2],[0,1],[0,2],[0,1],[0,1],[0,2],[1,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[3,4],[2,1],[1,1],[2,1],[1,1],[2,0],[2,0],[2,1],[1,0],[2,-1],[2,0],[2,-1],[2,0],[2,-1],[2,-1],[2,-1],[3,-1],[2,-1],[2,-2],[2,-1],[2,-2],[2,-1],[3,-2],[2,-2],[2,-2],[2,-1],[2,-2],[3,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-1],[2,-2],[1,-2],[2,-2],[2,-1],[2,-2],[1,-1],[2,-1],[1,-2],[1,-1],[2,-1],[1,0],[3,-2],[3,-1],[2,-1],[2,-1],[3,0],[3,-1],[3,0],[3,0],[3,-1],[3,0],[4,0],[3,-1],[4,0],[4,0],[4,0],[3,0],[4,0],[4,0],[4,0],[4,0],[5,0],[4,0],[4,0],[4,0],[4,-1],[4,0],[4,0],[4,0],[4,0],[4,-1],[4,0],[3,0],[4,-1],[4,0],[3,-1],[3,0],[4,-1],[3,-1],[3,-1],[2,-1],[3,-1],[2,-1],[3,-1],[2,-1],[2,-2],[1,-1],[2,-2],[1,-2],[1,-2],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[4,0],[2,0],[2,-1],[1,0],[2,0],[2,-1],[1,0],[2,0],[1,-1],[2,0],[1,-1],[1,-1],[2,0],[1,-1],[1,-1],[1,0],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-2],[1,-1],[1,-1],[0,-2],[1,-1],[1,-2],[0,-2],[1,-1],[1,-2],[0,-2],[1,-2],[0,-2],[1,-2],[0,-2],[1,-2],[0,-2],[1,-2],[0,-3],[1,-2],[0,-3],[0,-2],[1,-3],[3,-2],[2,-1],[1,0],[2,-1],[1,-1],[2,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[-1,-2],[0,-2],[0,-2],[-1,-2],[0,-2],[0,-2],[-1,-2],[0,-2],[-1,-3],[11,-18],[5,-10],[4,-9],[4,-10],[4,-11],[4,-10],[3,-11],[3,-11],[3,-11],[2,-11],[2,-11],[2,-12],[2,-12],[1,-11],[1,-12],[1,-12],[1,-12],[1,-13],[0,-12],[0,-12],[1,-13],[-1,-12],[0,-13],[0,-13],[-1,-12],[0,-13],[-1,-12],[-1,-13],[-1,-13],[-1,-12],[-1,-13],[-2,-12],[-1,-13],[-1,-12],[-2,-13],[-1,-12],[-2,-12],[-1,-12],[-2,-12],[-1,-12],[-2,-12],[-1,-11],[-2,-12],[-2,-11],[-1,-11],[-1,-11],[-2,-11],[-1,-10],[-2,-11],[-1,-13],[-1,-7],[-1,-8],[-1,-8],[-1,-8],[-1,-9],[-1,-9],[-1,-9],[-1,-10],[0,-10],[-1,-10],[-1,-10],[-1,-10],[0,-11],[-1,-10],[0,-11],[-1,-10],[0,-11],[0,-11],[0,-10],[0,-11],[0,-10],[1,-10],[0,-10],[1,-10],[1,-10],[2,-10],[1,-9],[2,-9],[2,-9],[2,-8],[2,-8],[3,-7],[3,-8],[3,-6],[3,-7],[4,-5],[4,-5],[5,-5],[4,-4],[5,-4],[6,-2],[6,-3],[6,-1],[6,-1],[7,0],[8,1],[8,1],[8,3],[6,2],[3,1],[3,1],[3,1],[3,2],[3,1],[3,1],[2,2],[3,1],[3,1],[3,2],[3,1],[3,2],[3,1],[3,2],[3,2],[3,1],[2,2],[3,1],[3,2],[3,2],[3,1],[3,2],[3,1],[3,2],[2,2],[3,1],[3,2],[3,2],[3,1],[3,2],[3,1],[3,2],[2,1],[3,2],[3,1],[3,2],[3,1],[3,1],[3,2],[3,1],[3,1],[3,1],[3,1],[3,2],[3,1],[3,1],[3,1],[3,0],[7,2],[3,1],[4,1],[3,1],[4,0],[3,1],[4,0],[3,1],[3,1],[4,0],[3,1],[4,0],[3,0],[4,1],[3,0],[3,1],[4,0],[3,0],[4,1],[3,0],[3,1],[4,0],[3,0],[4,1],[3,0],[3,1],[4,0],[3,1],[3,0],[4,1],[3,1],[4,0],[3,1],[3,1],[4,1],[3,1],[3,1],[4,1],[3,1],[3,1],[4,1],[3,1],[3,2],[4,1],[3,2],[3,1],[4,2],[3,2],[3,2],[0,-17],[0,-8],[1,-8],[1,-8],[1,-8],[1,-7],[2,-8],[2,-8],[2,-7],[2,-8],[3,-8],[2,-7],[3,-7],[3,-8],[4,-7],[3,-7],[4,-7],[4,-7],[3,-7],[4,-7],[4,-7],[5,-7],[4,-7],[4,-6],[5,-7],[4,-7],[5,-6],[5,-7],[4,-7],[5,-6],[5,-6],[5,-7],[4,-6],[5,-6],[5,-7],[4,-6],[5,-6],[5,-6],[4,-6],[5,-6],[4,-6],[5,-6],[4,-6],[4,-6],[4,-6],[4,-6],[4,-6],[3,-6],[4,-6],[10,-17],[5,-9],[4,-8],[5,-9],[4,-9],[4,-9],[4,-9],[4,-9],[4,-9],[4,-9],[4,-9],[3,-9],[3,-9],[4,-10],[3,-9],[3,-9],[3,-10],[3,-9],[3,-9],[3,-10],[3,-9],[2,-10],[3,-10],[2,-9],[3,-10],[2,-10],[3,-9],[2,-10],[2,-10],[3,-10],[2,-10],[2,-10],[2,-9],[2,-10],[2,-10],[3,-10],[2,-11],[2,-10],[2,-10],[2,-10],[2,-10],[2,-10],[2,-11],[2,-10],[2,-10],[2,-11],[3,-10],[2,-10],[2,-11],[0,-11],[0,-5],[0,-5],[0,-6],[-1,-5],[0,-5],[0,-6],[0,-5],[-1,-5],[0,-5],[0,-6],[-1,-5],[0,-5],[0,-5],[-1,-6],[0,-5],[0,-5],[-1,-5],[0,-6],[-1,-5],[0,-5],[0,-5],[-1,-6],[0,-5],[-1,-5],[0,-5],[0,-5],[-1,-6],[0,-5],[0,-5],[0,-5],[-1,-6],[0,-5],[0,-5],[0,-5],[0,-6],[-1,-5],[0,-5],[0,-5],[0,-6],[0,-5],[0,-5],[1,-6],[0,-5],[0,-5],[0,-6],[1,-5],[0,-5],[0,-6],[7,-4],[3,-3],[4,-2],[4,-2],[4,-3],[4,-3],[4,-2],[5,-3],[4,-2],[5,-3],[5,-2],[5,-3],[5,-2],[5,-3],[5,-2],[5,-3],[6,-2],[5,-2],[6,-2],[5,-2],[5,-1],[6,-2],[5,-1],[6,-1],[5,-1],[6,-1],[5,-1],[5,0],[5,0],[6,0],[5,0],[5,1],[4,1],[5,1],[5,1],[4,2],[5,2],[4,3],[4,3],[4,3],[4,4],[3,4],[3,4],[4,5],[3,5],[2,6],[3,6],[2,7],[2,7],[1,5],[0,2],[1,3],[0,3],[1,2],[0,3],[0,3],[0,3],[1,2],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[-1,3],[0,3],[0,3],[0,3],[-1,3],[0,3],[0,3],[-1,2],[0,3],[-1,3],[0,3],[-1,3],[0,3],[-1,3],[-1,3],[0,2],[-1,3],[-1,3],[-1,2],[-1,3],[0,3],[-1,2],[-1,3],[-1,2],[-1,2],[-1,3],[-1,2],[-1,2],[-2,2],[-1,2],[-1,2],[-3,5],[-1,2],[-2,2],[-1,2],[-2,1],[-2,2],[-1,2],[-2,1],[-2,2],[-2,1],[-1,2],[-2,1],[-2,1],[-2,1],[-2,2],[-2,1],[-2,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,1],[-2,2],[-1,1],[-2,1],[-2,2],[-1,1],[-2,1],[-1,2],[-2,2],[-1,1],[-2,2],[-1,2],[-1,2],[-1,2],[-3,4],[-2,3],[-1,2],[-2,2],[-1,2],[-2,2],[-1,1],[-2,2],[-2,2],[-1,2],[-2,1],[-2,2],[-2,1],[-1,2],[-2,1],[-2,2],[-2,1],[-2,1],[-2,1],[-2,1],[-2,2],[-2,1],[-3,0],[-2,1],[-2,1],[-2,1],[-2,1],[-3,0],[-2,1],[-2,1],[-3,0],[-2,0],[-2,1],[-3,0],[-2,0],[-3,1],[-2,0],[-2,0],[-3,0],[-2,0],[-3,0],[-3,0],[-2,-1],[-3,0],[-2,0],[-3,-1],[-3,0],[-2,0],[-3,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,4],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,3],[0,2],[0,2],[0,2],[0,2],[-1,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,3],[0,2],[0,2],[0,2],[0,2],[-1,2],[0,2],[0,2],[0,2],[0,3],[0,2],[0,2],[-1,2],[0,2],[0,2],[0,2],[0,3],[0,2],[-1,2],[0,2],[0,2],[0,2],[0,2],[0,3],[-1,2],[0,2],[0,2],[0,2],[-1,2],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-2],[1,-1],[0,-1],[1,-1],[0,-2],[1,-1],[0,-1],[1,-2],[1,-1],[0,-1],[1,-2],[0,-1],[1,-2],[1,-1],[0,-1],[1,-2],[0,-1],[1,-2],[1,-1],[0,-1],[1,-2],[0,-1],[1,-2],[1,-1],[0,-1],[1,-2],[0,-1],[1,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[9,-1],[5,-1],[5,-2],[4,-2],[5,-2],[5,-2],[5,-3],[6,-2],[5,-3],[5,-4],[5,-3],[6,-4],[5,-4],[5,-4],[6,-5],[5,-4],[6,-5],[5,-5],[5,-5],[6,-5],[5,-6],[5,-5],[6,-6],[5,-6],[5,-6],[5,-6],[5,-6],[5,-6],[5,-6],[4,-6],[5,-7],[4,-6],[5,-6],[4,-7],[4,-6],[4,-7],[4,-6],[3,-7],[4,-6],[3,-7],[3,-6],[3,-7],[3,-6],[2,-6],[3,-7],[2,-6],[2,-6],[1,-6],[2,-6],[2,-12],[1,-6],[2,-5],[1,-6],[1,-6],[1,-5],[1,-6],[1,-6],[1,-5],[1,-6],[1,-5],[1,-5],[1,-6],[1,-5],[0,-6],[1,-5],[1,-5],[0,-6],[1,-5],[1,-5],[0,-5],[1,-6],[0,-5],[1,-5],[0,-5],[0,-6],[1,-5],[0,-5],[0,-5],[0,-6],[0,-5],[0,-5],[0,-6],[0,-5],[0,-5],[0,-6],[0,-5],[0,-6],[-1,-5],[0,-6],[0,-5],[-1,-6],[0,-6],[-1,-5],[-1,-6],[0,-6],[-1,-6],[-1,-6],[-1,-6],[0,-4],[-1,-3],[0,-4],[-1,-4],[-1,-4],[-1,-5],[-1,-5],[-1,-6],[-1,-5],[-1,-7],[-1,-6],[-2,-7],[-1,-7],[-1,-7],[-1,-8],[-2,-7],[-1,-8],[-2,-8],[-1,-8],[-1,-9],[-2,-8],[-1,-8],[-1,-8],[-1,-9],[-2,-8],[-1,-8],[-1,-8],[-1,-9],[-1,-8],[-1,-7],[-1,-8],[0,-8],[-1,-7],[0,-7],[-1,-7],[0,-6],[0,-6],[0,-6],[0,-6],[0,-5],[0,-5],[1,-4],[0,-4],[1,-4],[1,-3],[1,-2],[2,-2],[1,-1],[2,-1],[-4,1],[-1,1],[-2,0],[-2,1],[-1,1],[-2,1],[-1,1],[-2,1],[-1,1],[-1,2],[-1,1],[-2,1],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[0,1],[-1,2],[-1,2],[-1,2],[0,1],[-1,2],[0,2],[-1,2],[0,2],[-1,2],[0,2],[0,2],[-1,2],[0,2],[0,2],[-1,3],[0,2],[0,2],[0,2],[0,3],[0,2],[0,2],[0,3],[0,2],[0,2],[0,3],[0,2],[0,2],[0,3],[1,2],[0,3],[0,1],[0,2],[1,1],[0,2],[0,1],[1,2],[0,2],[1,3],[0,2],[1,2],[0,3],[1,3],[1,3],[1,3],[0,3],[1,3],[1,3],[1,3],[1,4],[1,3],[0,3],[1,4],[1,3],[1,4],[1,3],[1,3],[1,4],[1,3],[1,3],[0,3],[1,3],[1,3],[1,3],[1,3],[0,3],[1,2],[1,3],[1,2],[0,2],[1,3],[0,1],[1,2],[0,2],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,4],[1,3],[0,3],[1,3],[0,3],[0,4],[1,3],[0,4],[1,4],[0,4],[0,5],[0,4],[1,4],[0,5],[0,5],[0,4],[0,5],[1,5],[0,5],[0,5],[0,5],[0,5],[0,5],[0,5],[-1,5],[0,5],[0,5],[0,5],[-1,4],[0,5],[0,5],[-1,4],[-1,5],[0,4],[-1,4],[-1,4],[0,4],[-1,4],[-1,4],[-1,3],[-1,3],[-1,3],[-2,3],[-1,3],[-1,2],[-2,2],[-1,2],[-2,2],[-1,1],[-3,2],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-2,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-2,-1],[-1,-2],[-2,-1],[-1,-1],[-2,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-2],[-2,-2],[-1,-1],[-2,-2],[-1,-2],[-2,-2],[-1,-2],[-2,-1],[-1,-2],[-2,-2],[-1,-2],[-2,-3],[-1,-2],[-1,-2],[-2,-2],[-1,-2],[-2,-2],[-1,-2],[-1,-3],[-2,-2],[-1,-2],[-1,-2],[-2,-3],[-1,-2],[-1,-2],[-2,-4],[-1,-1],[0,-2],[-1,-1],[-1,-2],[-1,-2],[0,-1],[-1,-2],[-1,-1],[-1,-2],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,-2],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-7,-3],[-4,-1],[-4,-2],[-3,-2],[-4,-1],[-3,-2],[-3,-2],[-3,-3],[-3,-2],[-3,-2],[-3,-3],[-3,-2],[-3,-3],[-3,-3],[-2,-2],[-3,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-4],[-1,-3],[-2,-3],[-1,-4],[-1,-3],[-1,-3],[-1,-4],[-1,-3],[0,-4],[0,-3],[-1,-4],[0,-3],[1,-4],[0,-3],[1,-4],[0,-4],[1,-3],[1,-4],[2,-3],[1,-4],[2,-3],[2,-4],[3,-3],[2,-3],[3,-4],[3,-3],[3,-3],[3,-3],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,-11],[-1,-4],[-1,-5],[-1,-4],[0,-5],[-1,-4],[0,-4],[0,-3],[1,-4],[0,-3],[0,-3],[1,-3],[1,-3],[1,-3],[1,-3],[1,-2],[2,-3],[1,-2],[2,-2],[1,-2],[2,-2],[2,-1],[2,-2],[2,-1],[2,-2],[2,-1],[3,-1],[2,-1],[3,-1],[2,-1],[3,-1],[2,-1],[3,-1],[3,0],[2,-1],[3,0],[3,-1],[3,0],[3,0],[3,-1],[2,0],[3,0],[3,0],[3,0],[3,0],[3,-1],[2,0],[3,0],[3,0],[13,0],[6,-1],[5,-1],[6,-1],[5,-2],[5,-1],[4,-2],[4,-2],[4,-2],[4,-3],[3,-3],[3,-3],[3,-3],[2,-3],[3,-3],[2,-4],[2,-4],[1,-4],[2,-4],[1,-4],[1,-5],[1,-4],[1,-5],[0,-5],[1,-5],[0,-5],[0,-6],[0,-5],[0,-6],[-1,-5],[0,-6],[0,-6],[-1,-6],[-1,-6],[0,-6],[-1,-6],[-1,-7],[-1,-6],[-1,-7],[-1,-6],[-1,-7],[-1,-7],[-1,-6],[-2,-7],[-1,-7],[-1,-7],[-1,-7],[-1,-7],[-1,-7],[-2,-14],[-1,-7],[-1,-7],[-1,-7],[-1,-7],[0,-7],[-1,-7],[-1,-8],[-1,-7],[-1,-7],[-1,-7],[-1,-8],[-1,-7],[-1,-7],[-1,-8],[-1,-7],[-1,-7],[-1,-7],[-2,-7],[-1,-7],[-1,-7],[-2,-7],[-2,-7],[-1,-7],[-2,-7],[-2,-6],[-2,-7],[-2,-6],[-2,-6],[-2,-6],[-2,-6],[-3,-6],[-2,-6],[-3,-6],[-3,-5],[-3,-5],[-3,-5],[-3,-5],[-4,-5],[-3,-4],[-4,-4],[-4,-4],[-4,-4],[-4,-4],[-5,-3],[-5,-3],[-4,-3],[-5,-3],[-6,-2],[0,-3],[-1,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[0,-2],[0,-2],[-1,-1],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-6,0],[-2,0],[-3,0],[-3,0],[-2,0],[-3,0],[-2,0],[-3,0],[-2,0],[-2,1],[-3,0],[-2,0],[-2,0],[-3,0],[-2,1],[-2,0],[-2,0],[-3,1],[-2,0],[-2,0],[-2,1],[-2,0],[-2,1],[-2,1],[-2,0],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,2],[-2,1],[-2,1],[-2,2],[-1,1],[-2,2],[-2,2],[-2,2],[-2,2],[-1,2],[-2,2],[-2,3],[-2,2],[-1,3],[-2,2],[-2,3],[-2,3],[-3,6],[-2,3],[-1,3],[-2,3],[-2,3],[-1,4],[-2,3],[-2,4],[-2,3],[-1,4],[-2,4],[-2,3],[-2,4],[-1,4],[-2,4],[-2,4],[-1,4],[-2,4],[-1,4],[-2,4],[-1,5],[-1,4],[-2,4],[-1,4],[-1,5],[-1,4],[-1,4],[-1,4],[-1,5],[-1,4],[0,4],[-1,4],[0,4],[-1,5],[0,4],[0,4],[0,4],[0,4],[1,4],[0,4],[1,4],[0,4],[1,3],[1,4],[2,4],[1,3],[1,4],[2,3],[2,4],[4,-10],[2,-5],[1,-5],[2,-5],[2,-5],[1,-5],[2,-6],[1,-5],[1,-5],[2,-6],[1,-5],[1,-6],[2,-6],[1,-5],[1,-6],[2,-5],[1,-6],[2,-5],[1,-6],[1,-5],[2,-6],[1,-5],[2,-5],[1,-6],[2,-5],[2,-5],[2,-5],[1,-5],[2,-5],[2,-4],[3,-5],[2,-4],[2,-4],[3,-4],[2,-4],[3,-4],[3,-3],[3,-4],[3,-3],[3,-3],[3,-3],[4,-2],[3,-3],[4,-2],[4,-1],[5,-2],[4,-1],[5,-1],[4,-1],[4,0],[1,1],[3,0],[2,1],[2,2],[3,1],[3,2],[3,2],[3,2],[3,3],[3,2],[4,3],[4,3],[3,3],[4,3],[4,4],[4,3],[4,4],[4,3],[4,4],[4,4],[4,4],[4,4],[5,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,5],[4,4],[4,4],[4,4],[3,4],[4,4],[3,4],[4,3],[3,4],[3,4],[3,3],[3,4],[3,3],[2,3],[2,3],[2,3],[2,2],[2,3],[2,2],[1,2],[8,15],[4,7],[3,7],[3,8],[3,8],[3,7],[3,8],[2,7],[3,8],[2,8],[2,8],[1,8],[2,7],[1,8],[2,8],[1,8],[1,8],[0,8],[1,8],[1,8],[0,8],[1,8],[0,9],[0,8],[0,8],[0,8],[0,8],[0,9],[0,8],[-1,8],[0,8],[0,9],[-1,8],[0,9],[-1,8],[0,8],[-1,9],[-1,8],[0,9],[-1,8],[0,8],[-1,9],[-1,8],[0,9],[-1,8],[0,9],[-1,8],[0,9],[0,8],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-2,0],[-2,0],[-3,-1],[-3,0],[-3,0],[-4,0],[-3,0],[-4,0],[-4,0],[-5,0],[-4,0],[-5,0],[-5,1],[-5,0],[-5,0],[-5,0],[-5,1],[-5,0],[-6,0],[-5,1],[-6,0],[-5,1],[-5,0],[-6,1],[-5,0],[-6,1],[-5,0],[-5,1],[-5,0],[-5,1],[-5,1],[-4,0],[-5,1],[-4,0],[-4,1],[-4,0],[-4,1],[-3,1],[-3,0],[-3,1],[-3,0],[-2,1],[-2,0],[-2,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[2,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,2],[-1,1],[0,1],[-1,2],[0,1],[-1,2],[-1,1],[0,2],[-1,2],[-1,1],[0,2],[-1,2],[-1,2],[0,1],[-1,2],[-1,2],[-1,2],[0,1],[-1,2],[-1,2],[-1,1],[0,2],[-1,2],[-1,1],[-1,2],[0,1],[-1,1],[-1,2],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-5,2],[-3,1],[-2,1],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-2,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[0,-2],[-1,-3],[-1,-2],[0,-3],[-1,-2],[-1,-3],[0,-3],[0,-2],[-1,-3],[0,-3],[-1,-3],[0,-3],[0,-3],[0,-2],[0,-3],[-1,-3],[0,-3],[0,-3],[0,-2],[0,-3],[0,-3],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-5],[0,-2],[-1,-3],[-1,-2],[-1,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-3],[-2,-3],[-1,-3],[-1,-3],[-2,-3],[-1,-3],[-2,-4],[-1,-3],[-2,-3],[-1,-3],[-2,-3],[-2,-3],[-2,-3],[-1,-4],[-2,-2],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-2],[-1,-3],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-1],[-2,-1],[-2,-2],[-2,-1],[-2,0],[-1,-1],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,1],[-2,1],[4,6],[1,3],[2,3],[2,3],[2,3],[1,2],[2,3],[2,3],[2,2],[1,3],[2,2],[2,3],[1,2],[2,3],[1,2],[2,3],[1,2],[2,3],[1,3],[2,2],[1,3],[2,2],[1,3],[1,2],[2,3],[1,3],[1,2],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[0,3],[1,3],[1,3],[0,4],[1,3],[0,3],[1,4],[0,4],[0,3],[0,4],[1,4],[0,4],[-1,5],[0,4],[0,4],[0,5],[-1,6],[0,4],[-1,3],[0,3],[-1,3],[0,4],[-1,3],[0,3],[-1,3],[-1,4],[-1,3],[0,3],[-1,3],[-1,3],[-1,4],[-1,3],[-1,3],[-1,3],[-1,3],[-1,3],[-1,4],[-1,3],[-1,3],[-1,3],[-1,3],[-1,3],[-2,3],[-1,3],[-1,3],[-1,3],[-2,3],[-1,2],[-1,3],[-1,3],[-2,3],[-1,3],[-2,2],[-1,3],[-1,3],[-2,2],[-1,3],[-2,3],[-1,2],[-2,3],[-1,2],[-1,2],[-2,3],[-1,2],[-2,2],[0,1],[-1,0],[0,1],[0,1],[-2,3],[-1,2],[-1,1],[-1,1],[-1,2],[-2,1],[-1,0],[-1,1],[-1,1],[-2,0],[-1,0],[-2,1],[-1,0],[-2,0],[-1,0],[-2,-1],[-2,0],[-1,0],[-2,-1],[-2,0],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-2],[-1,-1],[-2,-1],[-2,-2],[-2,-1],[-2,-1],[-2,-2],[-1,-1],[-2,-2],[-2,-1],[-2,-2],[-1,-1],[-2,-1],[-2,-2],[-1,-1],[-2,-1],[-1,-2],[-2,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-2,-4],[-2,-3],[-1,-3],[-2,-2],[-1,-3],[-1,-3],[-2,-3],[-1,-4],[-1,-3],[-1,-3],[-2,-3],[-1,-4],[-1,-3],[-1,-4],[-1,-3],[-1,-4],[-2,-4],[-1,-3],[-1,-4],[-1,-4],[0,-4],[-1,-4],[-1,-4],[-1,-3],[0,-4],[-1,-4],[-1,-4],[0,-4],[0,-4],[-1,-4],[0,-3],[0,-4],[0,-4],[0,-4],[0,-3],[0,-4],[0,-4],[0,-3],[1,-4],[0,-3],[1,-4],[1,-3],[0,-3],[1,-3],[1,-4],[2,-3],[1,-2],[1,-3],[2,-3],[3,-5],[2,-2],[1,-2],[2,-2],[2,-2],[2,-1],[2,-2],[2,-2],[2,-1],[2,-2],[2,-1],[2,-1],[2,-2],[2,-1],[2,-1],[3,-1],[2,-1],[2,-1],[2,-2],[3,-1],[2,-1],[2,-1],[3,-1],[2,-1],[3,-1],[2,-1],[2,-1],[3,-1],[2,-1],[2,-2],[2,-1],[3,-1],[2,-1],[2,-2],[2,-1],[2,-2],[3,-2],[2,-1],[2,-2],[2,-2],[2,-2],[1,-2],[2,-3],[2,-2],[2,-2],[2,-3],[1,-3],[2,-3],[1,-3],[2,-4],[1,-2],[1,-3],[1,-2],[1,-2],[1,-2],[1,-3],[0,-2],[1,-2],[1,-3],[1,-2],[1,-2],[0,-3],[1,-2],[1,-2],[0,-3],[1,-2],[1,-2],[0,-3],[1,-2],[1,-3],[0,-2],[1,-3],[0,-2],[1,-2],[0,-3],[1,-2],[0,-3],[1,-2],[0,-3],[1,-2],[0,-3],[0,-2],[1,-3],[0,-2],[1,-3],[0,-3],[0,-2],[1,-3],[0,-2],[0,-3],[0,-2],[1,-3],[0,-2],[0,-3],[0,-3],[1,-2],[0,-3],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[-3,-12],[-1,-5],[-2,-5],[-1,-4],[-2,-4],[-1,-4],[-2,-4],[-1,-3],[-2,-3],[-2,-3],[-1,-2],[-2,-2],[-2,-2],[-2,-2],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,0],[-3,0],[-2,1],[-2,0],[-2,1],[-3,1],[-2,1],[-3,1],[-2,1],[-3,2],[-2,1],[-3,2],[-3,2],[-2,2],[-3,2],[-3,2],[-3,2],[-3,2],[-3,3],[-3,2],[-3,2],[-3,3],[-3,2],[-4,3],[-3,2],[-4,2],[-3,3],[-4,2],[-3,3],[-5,3],[-3,2],[-3,2],[-3,2],[-3,2],[-3,2],[-3,1],[-3,2],[-3,2],[-3,2],[-4,2],[-3,2],[-3,1],[-4,2],[-3,2],[-3,1],[-4,2],[-3,1],[-4,1],[-3,2],[-4,1],[-3,1],[-4,1],[-3,1],[-4,0],[-3,1],[-3,0],[-4,0],[-3,0],[-3,0],[-4,0],[-3,-1],[-3,0],[-3,-1],[-3,-1],[-3,-1],[-3,-2],[-3,-2],[-3,-2],[-3,-2],[-2,-2],[-3,-3],[-2,-3],[-3,-3],[-2,-4],[-2,-3],[-2,-5],[-2,-4],[-2,-5],[-3,-9],[-2,-5],[-1,-4],[-1,-5],[-1,-4],[-1,-5],[-1,-4],[0,-4],[-1,-5],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[1,-4],[0,-3],[1,-4],[1,-4],[0,-3],[1,-4],[1,-3],[2,-4],[1,-3],[1,-3],[2,-4],[1,-3],[2,-3],[2,-3],[1,-3],[2,-3],[2,-3],[2,-2],[3,-3],[2,-3],[2,-2],[2,-3],[3,-2],[2,-3],[3,-2],[2,-2],[3,-3],[3,-2],[2,-2],[3,-2],[3,-2],[3,-2],[3,-1],[3,-2],[2,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[7,-3],[3,-1],[3,0],[3,-1],[3,0],[3,0],[2,0],[3,0],[2,1],[2,1],[3,1],[2,1],[2,1],[2,2],[2,1],[2,2],[2,2],[1,2],[2,3],[2,2],[1,2],[2,3],[1,2],[2,3],[1,3],[2,3],[1,3],[2,3],[1,3],[1,3],[2,3],[1,3],[1,3],[2,3],[1,3],[2,3],[1,3],[1,4],[2,3],[1,3],[2,3],[1,2],[2,3],[1,3],[2,3],[2,2],[1,3],[2,2],[2,2],[5,5],[2,2],[2,2],[3,1],[2,2],[2,0],[2,1],[3,0],[2,0],[2,0],[2,0],[3,-1],[2,0],[2,-1],[2,-2],[2,-1],[2,-2],[2,-1],[2,-2],[2,-2],[2,-2],[2,-3],[2,-2],[2,-3],[2,-2],[2,-3],[2,-3],[2,-3],[1,-3],[2,-3],[2,-3],[2,-3],[1,-3],[2,-3],[2,-3],[1,-3],[2,-4],[2,-3],[1,-3],[2,-3],[1,-3],[2,-3],[1,-3],[1,-3],[2,-2],[1,-3],[1,-3],[2,-2],[1,-2],[2,-4],[1,-2],[1,-2],[1,-2],[1,-2],[1,-2],[1,-2],[0,-2],[1,-2],[1,-2],[1,-2],[1,-2],[0,-2],[1,-2],[1,-2],[0,-2],[1,-3],[1,-2],[0,-2],[1,-2],[0,-2],[1,-2],[0,-2],[1,-2],[0,-2],[1,-2],[0,-3],[1,-2],[0,-2],[1,-2],[0,-2],[0,-3],[1,-2],[0,-2],[0,-2],[0,-3],[1,-2],[0,-2],[0,-3],[0,-2],[1,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[1,-3],[0,-2],[0,-3],[-2,4],[-1,1],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[0,1],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[0,2],[-1,2],[-1,2],[-1,2],[0,2],[-1,2],[-1,2],[-1,2],[-1,2],[0,2],[-1,2],[-1,2],[-1,2],[0,2],[-1,2],[-1,2],[-1,2],[-1,2],[0,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[0,2],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-2,3],[0,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-2,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,1],[-2,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-2,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[-1,2],[-1,1],[0,2],[-1,2],[-1,2],[0,1],[-1,2],[0,2],[0,2],[-1,1],[0,2],[0,2],[0,2],[0,2],[0,2],[-3,0],[-1,1],[-2,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-1,-2],[0,-1],[-1,-2],[-1,-1],[-1,-2],[0,-1],[-1,-2],[-1,-1],[-1,-2],[0,-1],[-1,-2],[-1,-1],[-1,-1],[0,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-2,-2],[-2,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-2],[-2,-1],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[-2,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[0,-2],[-1,-2],[-1,-1],[-1,-2],[0,-2],[-1,-2],[0,-2],[0,-2],[-1,-2],[0,-2],[0,-3],[0,-2],[1,-5],[0,-2],[0,-3],[1,-2],[0,-2],[1,-3],[1,-2],[1,-2],[0,-2],[1,-2],[1,-2],[1,-1],[1,-2],[1,-2],[1,-2],[2,-1],[1,-2],[1,-2],[1,-1],[2,-2],[1,-2],[1,-1],[1,-2],[2,-1],[1,-2],[1,-1],[2,-2],[1,-1],[1,-2],[2,-1],[1,-2],[1,-2],[1,-1],[2,-2],[1,-2],[1,-1],[1,-2],[1,-2],[1,-1],[1,-2],[1,-2],[1,-2],[1,-2],[1,-2],[0,-2],[1,-2],[0,-2],[1,-2],[0,-3],[37,-56],[0,-5],[1,-2],[0,-3],[1,-2],[0,-3],[1,-2],[1,-3],[1,-3],[1,-2],[1,-3],[1,-2],[1,-3],[1,-3],[1,-2],[1,-3],[1,-3],[1,-2],[1,-3],[1,-3],[1,-3],[1,-2],[1,-3],[1,-3],[1,-3],[1,-2],[1,-3],[1,-3],[1,-3],[1,-2],[1,-3],[1,-3],[0,-2],[1,-3],[1,-3],[0,-3],[1,-2],[0,-3],[0,-3],[1,-2],[0,-3],[0,-2],[-1,-3],[0,-3],[0,-2],[0,-3],[-1,-2],[-1,-3],[-1,-2],[0,-2],[-3,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,2],[0,1],[-1,2],[-1,2],[0,1],[-1,2],[-1,2],[0,2],[-1,2],[0,2],[-1,2],[0,2],[-1,2],[0,2],[-1,2],[0,2],[-1,2],[0,2],[0,2],[-1,2],[0,2],[-1,3],[0,2],[0,2],[-1,2],[0,2],[0,2],[-1,2],[0,2],[0,1],[0,2],[-1,2],[0,2],[0,1],[-1,2],[0,2],[0,1],[-1,1],[0,3],[-1,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-2,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[0,2],[-1,2],[-1,1],[-1,2],[-1,2],[0,2],[-1,1],[-1,2],[-1,2],[0,2],[-1,2],[-1,1],[0,2],[-1,2],[-1,2],[0,1],[-1,2],[-1,2],[0,1],[-1,2],[0,2],[-1,1],[0,2],[-1,1],[0,2],[-1,1],[0,2],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,2],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,2],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-4,2],[-2,1],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,0],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,0],[-2,1],[-1,1],[-2,1],[-2,1],[-1,0],[-2,1],[-2,1],[-1,1],[-2,1],[-2,0],[-2,1],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,0],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-1,2],[-2,1],[-2,1],[-1,1],[-2,2],[-1,1],[-2,1],[-3,3],[-1,1],[-2,2],[-1,2],[-2,2],[-2,3],[-2,2],[-1,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,4],[-2,3],[-2,4],[-2,4],[-2,4],[-2,3],[-2,4],[-2,4],[-2,4],[-2,4],[-2,4],[-2,5],[-2,4],[-3,4],[-2,4],[-2,4],[-2,4],[-2,4],[-2,4],[-1,4],[-2,4],[-2,4],[-2,4],[-2,4],[-2,4],[-1,4],[-2,3],[-1,4],[-2,3],[-2,4],[-1,3],[-1,3],[-2,3],[-1,3],[-1,2],[-3,6],[-1,3],[-1,4],[-2,3],[-1,3],[-1,3],[-1,3],[-2,3],[-1,3],[-1,3],[-2,3],[-1,3],[-1,3],[-2,3],[-1,3],[-1,3],[-2,3],[-1,3],[-1,4],[-1,3],[-2,3],[-1,3],[-1,3],[-1,3],[-2,3],[-1,3],[-1,3],[-1,4],[-1,3],[-2,3],[-1,3],[-1,3],[-1,3],[-1,4],[-1,3],[-1,3],[-2,3],[-1,4],[-1,3],[-1,3],[-1,3],[-1,4],[-1,3],[-1,3],[-1,3],[-1,4],[-1,3],[-1,3],[0,4],[-1,3],[-1,2],[0,1],[-1,2],[0,2],[0,1],[-1,2],[0,1],[-1,2],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,2],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[-1,1],[0,1],[-1,3],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,2],[1,1],[1,4],[1,2],[1,2],[1,2],[0,3],[1,2],[1,3],[1,2],[1,3],[1,3],[1,2],[1,3],[1,3],[1,3],[1,2],[0,3],[1,3],[1,3],[1,3],[1,3],[0,3],[1,3],[1,3],[0,3],[1,2],[1,3],[0,3],[0,3],[1,3],[0,3],[0,3],[0,2],[0,3],[0,3],[0,3],[0,2],[-1,3],[0,2],[-1,3],[0,2],[-1,2],[-1,3],[-1,2],[-1,2],[-2,2],[-1,2],[-2,2],[-1,1],[-2,2],[-3,2],[-1,1],[-2,0],[-1,1],[-2,1],[-2,0],[-1,1],[-2,0],[-2,0],[-2,0],[-2,1],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,1],[-2,0],[-1,0],[-2,1],[-2,0],[-2,1],[-1,1],[-2,1],[-1,0],[-1,1],[-2,2],[-1,1],[-1,1],[-1,1],[-2,2],[-1,2],[0,2],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,4],[-1,2],[0,1],[0,2],[0,2],[-1,1],[0,2],[0,2],[0,1],[-1,1],[0,2],[0,1],[-1,1],[0,2],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,1],[-2,0],[-1,0],[-2,1],[-1,0],[-1,0],[-2,1],[-1,0],[-2,1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-2,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,2],[-1,1],[-1,1],[0,1],[-1,2],[0,1],[-1,1],[-1,1],[-1,2],[0,1],[-1,1],[-1,1],[0,2],[-1,1],[-1,2],[-1,1],[0,1],[-1,2],[-1,1],[0,2],[-1,1],[-1,2],[-1,1],[0,2],[-1,1],[-1,2],[0,1],[-1,2],[-1,1],[-1,2],[0,1],[-1,2],[-1,1],[0,2],[-1,1],[0,2],[-1,1],[-1,2],[0,1],[-1,2],[0,1],[-1,1],[0,2],[-1,1],[0,1],[-1,1],[0,2],[-1,1],[0,1],[-4,0],[-2,0],[-1,0],[-2,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-2],[0,-2],[-1,-2],[0,-2],[0,-2],[-1,-3],[0,-2],[-1,-1],[0,-2],[0,-2],[-1,-1],[0,-2],[0,-2],[-1,-2],[0,-1],[-1,-2],[0,-2],[0,-2],[-1,-2],[0,-2],[-1,-2],[0,-1],[-1,-2],[-1,-2],[0,-2],[-1,-2],[0,-2],[-1,-1],[-1,-2],[0,-2],[-1,-2],[-1,-1],[-1,-2],[0,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-13,-2],[-6,-1],[-6,-1],[-6,-1],[-6,-2],[-5,-1],[-6,-1],[-6,-2],[-5,-1],[-6,-2],[-5,-1],[-5,-2],[-5,-2],[-5,-2],[-5,-2],[-5,-2],[-5,-2],[-5,-2],[-5,-3],[-4,-2],[-5,-3],[-5,-2],[-4,-3],[-5,-3],[-4,-3],[-4,-3],[-5,-3],[-4,-4],[-4,-3],[-5,-4],[-4,-3],[-4,-4],[-4,-4],[-4,-4],[-4,-5],[-4,-4],[-5,-5],[-4,-4],[-4,-5],[-4,-5],[-4,-5],[-4,-6],[-4,-5],[-4,-6],[-4,-6],[-4,-6],[-4,-6],[-4,-6],[-4,-7],[-3,-5],[-2,-3],[-2,-3],[-2,-2],[-1,-3],[-2,-3],[-2,-2],[-2,-3],[-2,-3],[-2,-2],[-2,-3],[-2,-2],[-2,-3],[-2,-3],[-2,-2],[-2,-3],[-2,-2],[-2,-3],[-2,-2],[-2,-3],[-2,-2],[-3,-3],[-2,-2],[-2,-3],[-2,-2],[-2,-2],[-2,-3],[-2,-2],[-3,-3],[-2,-2],[-2,-2],[-2,-2],[-2,-3],[-3,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-3,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-3,-2],[-2,-2],[-2,-1],[-5,-5],[-3,-2],[-3,-2],[-3,-2],[-2,-2],[-3,-2],[-3,-1],[-3,-2],[-3,-1],[-2,-2],[-3,-1],[-3,-2],[-3,-1],[-3,-2],[-2,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-2],[-3,-1],[-3,-1],[-2,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-2,-2],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-2,-1],[-3,-2],[-3,-1],[-3,-1],[-2,-2],[-3,-1],[-3,-2],[-3,-1],[-2,-2],[-3,-1],[-3,-2],[-3,-2],[-2,-2],[-3,-1],[-3,-2],[-2,-2],[-3,-3],[-5,-5],[-3,-2],[-3,-3],[-2,-2],[-3,-3],[-2,-3],[-3,-3],[-2,-3],[-2,-2],[-2,-3],[-3,-3],[-2,-3],[-2,-3],[-2,-4],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-1,-4],[-2,-3],[-2,-3],[-2,-4],[-1,-3],[-2,-4],[-2,-3],[-1,-4],[-2,-3],[-2,-4],[-1,-3],[-2,-4],[-2,-3],[-1,-4],[-2,-4],[-1,-3],[-2,-4],[-1,-4],[-2,-3],[-2,-4],[-1,-4],[-2,-4],[-2,-3],[-1,-4],[-2,-4],[-2,-4],[-1,-3],[-2,-4],[-2,-4],[-2,-4],[-1,-3],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-8,-6],[-4,-2],[-3,-3],[-4,-3],[-4,-3],[-3,-3],[-3,-3],[-4,-3],[-3,-3],[-3,-3],[-4,-4],[-3,-3],[-3,-3],[-3,-3],[-3,-4],[-3,-3],[-3,-3],[-3,-4],[-3,-3],[-3,-4],[-3,-3],[-2,-4],[-3,-3],[-3,-4],[-3,-3],[-3,-4],[-3,-3],[-2,-4],[-3,-4],[-3,-3],[-3,-4],[-3,-3],[-3,-4],[-3,-3],[-3,-4],[-3,-3],[-3,-4],[-3,-3],[-3,-4],[-3,-3],[-4,-4],[-3,-3],[-3,-3],[-4,-4],[-3,-3],[-4,-3],[-4,-3],[-3,-4],[-4,-3],[-7,-5],[-3,-3],[-3,-2],[-3,-3],[-3,-2],[-3,-2],[-3,-3],[-3,-2],[-3,-2],[-3,-2],[-3,-2],[-2,-2],[-3,-2],[-3,-2],[-3,-2],[-3,-2],[-2,-2],[-3,-2],[-3,-1],[-2,-2],[-3,-2],[-3,-1],[-2,-2],[-3,-1],[-3,-2],[-3,-1],[-2,-2],[-3,-1],[-3,-1],[-3,-2],[-2,-1],[-3,-1],[-3,-2],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-4,-1],[-3,-1],[-3,-1],[-4,-1],[-3,-1],[-4,-1],[-3,-1],[-4,-1],[-5,-1],[-3,-1],[-3,-1],[-3,0],[-4,-1],[-3,-1],[-4,-1],[-3,-1],[-4,-1],[-4,-1],[-4,-1],[-4,-1],[-4,-2],[-4,-1],[-5,-1],[-4,-2],[-4,-1],[-5,-2],[-4,-1],[-5,-2],[-4,-2],[-4,-2],[-5,-1],[-4,-2],[-5,-2],[-4,-2],[-4,-2],[-5,-3],[-4,-2],[-4,-2],[-4,-2],[-4,-3],[-4,-2],[-3,-3],[-4,-3],[-4,-2],[-3,-3],[-3,-3],[-3,-3],[-3,-3],[-3,-3],[-3,-3],[-2,-3],[-3,-4],[-2,-3],[-2,-3],[-1,-4],[-2,-4],[-1,-3],[-5,-20],[-2,-8],[-1,-8],[0,-7],[0,-7],[0,-5],[1,-5],[2,-5],[1,-4],[3,-3],[2,-3],[3,-3],[4,-1],[4,-2],[4,-1],[4,0],[5,0],[4,0],[5,1],[6,1],[5,1],[6,2],[6,2],[6,2],[6,2],[6,3],[6,2],[6,3],[6,3],[6,3],[7,4],[6,3],[6,3],[6,4],[6,3],[5,3],[6,3],[5,4],[6,3],[5,3],[5,3],[4,2],[4,3],[4,2],[4,2],[3,2],[3,2],[3,1],[2,1],[7,2],[4,2],[3,1],[4,1],[3,1],[4,1],[3,1],[3,0],[4,1],[3,1],[4,1],[3,0],[4,1],[3,0],[4,1],[3,0],[4,1],[3,0],[3,1],[4,0],[3,1],[4,0],[3,1],[3,0],[4,1],[3,0],[4,1],[3,0],[3,1],[4,0],[3,1],[4,1],[3,0],[3,1],[4,1],[3,1],[4,1],[3,1],[3,1],[4,1],[3,1],[4,1],[3,2],[3,1],[4,2],[3,1],[4,2],[3,2],[4,1],[5,4],[3,1],[2,2],[3,2],[3,2],[2,1],[3,2],[3,2],[2,2],[3,2],[2,2],[3,2],[2,1],[2,2],[3,2],[2,2],[3,2],[2,2],[3,2],[2,2],[2,2],[3,2],[2,2],[3,2],[2,1],[2,2],[3,2],[2,2],[3,2],[2,2],[3,1],[2,2],[3,2],[2,1],[3,2],[2,2],[3,1],[2,2],[3,1],[3,2],[2,1],[3,2],[3,1],[3,1],[2,2],[3,1],[3,1],[3,1],[3,1],[18,6],[9,3],[9,3],[9,2],[9,3],[9,3],[9,3],[9,2],[9,3],[9,2],[9,3],[9,2],[9,3],[9,2],[9,3],[9,2],[9,3],[9,2],[9,2],[9,3],[9,2],[9,3],[9,2],[9,2],[9,3],[10,2],[9,2],[9,3],[9,2],[9,2],[9,3],[9,2],[9,3],[9,2],[9,2],[9,3],[9,2],[9,3],[9,2],[9,3],[9,3],[9,2],[9,3],[9,3],[9,2],[9,3],[9,3],[9,3],[9,3],[7,2],[3,1],[3,1],[4,1],[3,1],[3,1],[4,1],[3,1],[3,1],[4,1],[3,1],[3,1],[4,1],[3,1],[4,1],[3,1],[3,1],[4,1],[3,1],[4,1],[3,1],[3,2],[4,1],[3,1],[3,1],[4,1],[3,2],[4,1],[3,1],[3,2],[4,1],[3,1],[3,2],[3,1],[4,2],[3,1],[3,2],[3,2],[4,1],[3,2],[3,2],[3,2],[3,1],[3,2],[3,2],[4,2],[3,2],[3,2],[3,3],[5,4],[3,2],[3,2],[3,3],[4,2],[3,3],[4,3],[4,3],[4,3],[4,3],[4,4],[5,3],[4,4],[5,4],[4,3],[5,4],[5,4],[5,4],[4,4],[5,4],[5,4],[5,5],[5,4],[5,4],[4,4],[5,5],[5,4],[5,4],[4,5],[5,4],[4,5],[5,4],[4,4],[4,5],[4,4],[4,4],[4,4],[4,5],[3,4],[4,4],[3,4],[3,4],[3,4],[2,4],[3,3],[2,4],[2,4],[2,3],[1,3],[2,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[-1,-1],[0,-1],[-1,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-3],[0,-3],[0,-3],[0,-4],[1,-3],[0,-4],[1,-4],[0,-4],[1,-4],[1,-4],[0,-5],[1,-4],[1,-5],[1,-4],[1,-5],[1,-5],[1,-4],[1,-5],[1,-5],[1,-5],[2,-4],[1,-5],[1,-4],[1,-5],[2,-4],[1,-5],[1,-4],[1,-4],[2,-4],[1,-3],[1,-4],[2,-3],[1,-4],[1,-3],[2,-2],[1,-3],[1,-2],[1,-2],[1,-2],[2,-2],[1,-1],[5,-4],[3,-2],[3,-1],[3,-2],[3,-1],[3,-1],[3,-1],[3,-1],[3,0],[3,-1],[3,0],[3,0],[3,0],[3,0],[4,0],[3,0],[3,1],[3,0],[4,1],[3,0],[3,1],[3,0],[4,1],[3,0],[3,1],[3,0],[4,1],[3,0],[3,0],[4,1],[3,0],[3,0],[3,0],[3,0],[4,0],[3,0],[3,-1],[3,0],[3,-1],[3,-1],[3,-1],[3,-1],[3,-2],[3,-1],[3,-2],[3,-2],[3,-2],[2,-3],[3,-3],[5,-6],[3,-4],[2,-3],[2,-4],[1,-3],[2,-4],[1,-4],[1,-3],[1,-4],[1,-4],[1,-4],[0,-4],[0,-4],[1,-4],[0,-4],[0,-4],[-1,-4],[0,-5],[0,-4],[-1,-4],[0,-4],[-1,-5],[-1,-4],[-1,-4],[0,-5],[-1,-4],[-1,-4],[-1,-5],[-1,-4],[-1,-5],[-1,-4],[-1,-4],[-1,-5],[-1,-4],[-1,-5],[0,-4],[-1,-4],[-1,-5],[-1,-4],[0,-4],[-1,-5],[0,-4],[-1,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[1,-7],[0,-4],[1,-4],[1,-3],[1,-3],[0,-4],[1,-3],[1,-3],[1,-4],[1,-3],[1,-3],[2,-3],[1,-3],[1,-4],[1,-3],[2,-3],[1,-3],[2,-3],[1,-3],[2,-3],[1,-3],[2,-3],[1,-3],[2,-3],[1,-3],[2,-3],[2,-2],[1,-3],[2,-3],[1,-3],[2,-3],[2,-3],[1,-3],[2,-3],[1,-3],[2,-3],[1,-3],[2,-3],[1,-3],[2,-3],[1,-4],[2,-3],[1,-3],[1,-3],[1,-3],[2,-4],[1,-3],[1,-3],[1,-4],[3,-9],[1,-5],[1,-4],[0,-5],[1,-4],[1,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-3],[0,-4],[0,-4],[0,-3],[-1,-4],[0,-4],[-1,-3],[0,-4],[-1,-3],[-1,-3],[-1,-4],[-1,-3],[0,-3],[-1,-4],[-1,-3],[-1,-3],[-2,-4],[-1,-3],[-1,-3],[-1,-3],[-1,-4],[-1,-3],[-1,-3],[-1,-4],[-1,-3],[-2,-4],[-1,-3],[-1,-4],[-1,-4],[-1,-3],[-1,-4],[-1,-4],[0,-4],[-1,-4],[-1,-4],[-1,-4],[0,-4],[-1,-4],[0,-5],[-1,-7],[0,-4],[0,-5],[0,-4],[0,-4],[1,-4],[0,-5],[0,-4],[0,-5],[1,-4],[0,-5],[0,-4],[1,-5],[0,-5],[1,-4],[0,-5],[0,-5],[1,-4],[0,-5],[0,-5],[1,-4],[0,-5],[0,-4],[0,-5],[0,-4],[0,-5],[0,-4],[0,-4],[0,-5],[-1,-4],[0,-4],[-1,-4],[0,-4],[-1,-4],[-1,-3],[-1,-4],[-2,-4],[-1,-3],[-1,-3],[-2,-4],[-2,-3],[-2,-2],[-2,-3],[-3,-3],[-2,-2],[-3,-3],[-3,-2],[-3,-2],[-4,-1],[-5,-2],[-2,0],[-3,0],[-2,0],[-3,1],[-3,0],[-3,2],[-3,1],[-3,1],[-3,2],[-3,2],[-3,2],[-3,3],[-3,2],[-3,3],[-3,3],[-4,3],[-3,3],[-3,3],[-3,4],[-4,3],[-3,4],[-3,4],[-3,4],[-3,4],[-4,4],[-3,4],[-3,4],[-3,4],[-3,4],[-3,4],[-3,4],[-3,4],[-3,4],[-2,4],[-3,5],[-3,3],[-2,4],[-3,4],[-2,4],[-2,4],[-3,3],[-2,4],[-2,3],[-2,3],[-1,4],[-2,3],[-2,2],[-1,3],[-3,6],[-2,3],[-1,3],[-2,3],[-1,3],[-1,3],[-2,3],[-1,4],[-1,3],[-2,3],[-1,3],[-1,4],[-1,3],[-2,3],[-1,4],[-1,3],[-1,3],[-1,4],[-2,3],[-1,4],[-1,3],[-1,3],[-1,4],[-2,3],[-1,3],[-1,3],[-1,4],[-1,3],[-2,3],[-1,3],[-1,3],[-2,4],[-1,3],[-1,3],[-2,3],[-1,2],[-2,3],[-1,3],[-2,3],[-1,2],[-2,3],[-1,3],[-2,2],[-2,3],[-1,2],[-2,2],[-2,2],[-2,2],[-2,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-2,8],[-1,4],[-2,4],[-2,4],[-3,3],[-3,4],[-4,4],[-3,3],[-4,4],[-5,4],[-5,3],[-5,4],[-5,3],[-5,4],[-6,3],[-6,4],[-6,3],[-7,3],[-6,3],[-7,4],[-6,3],[-7,3],[-7,3],[-7,3],[-7,3],[-7,3],[-7,3],[-7,2],[-7,3],[-7,3],[-7,2],[-7,3],[-6,2],[-7,3],[-6,2],[-7,3],[-6,2],[-6,2],[-5,2],[-6,2],[-5,2],[-5,2],[-5,2],[-4,2],[-5,1],[-3,2],[-4,2],[-3,1],[-3,1],[-14,8],[-7,3],[-6,4],[-7,3],[-7,3],[-6,3],[-7,3],[-6,2],[-6,3],[-6,2],[-7,2],[-6,2],[-6,2],[-6,2],[-6,1],[-6,2],[-6,1],[-6,1],[-6,1],[-6,1],[-5,1],[-6,1],[-6,0],[-6,1],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,-1],[-6,0],[-6,-1],[-6,-1],[-6,-1],[-7,-1],[-6,-1],[-7,-1],[-6,-2],[-7,-1],[-7,-2],[-6,-1],[-7,-2],[-7,-2],[-7,-2],[-8,-2],[-7,-2],[-7,-2],[-8,-3],[-10,-3],[-5,-1],[-5,-1],[-5,-1],[-5,-2],[-5,-1],[-5,-1],[-5,-1],[-5,-1],[-5,-1],[-6,-1],[-5,-1],[-5,-1],[-5,-1],[-5,-1],[-6,-1],[-5,-1],[-5,-1],[-5,0],[-6,-1],[-5,-1],[-5,-1],[-5,-1],[-6,-1],[-5,-1],[-5,0],[-5,-1],[-5,-1],[-6,-1],[-5,-1],[-5,-1],[-5,-1],[-6,-1],[-5,-1],[-5,-2],[-5,-1],[-5,-1],[-5,-1],[-5,-2],[-5,-1],[-5,-2],[-5,-1],[-5,-2],[-5,-1],[-5,-2],[-5,-2],[-5,-2],[-5,-2],[-5,-2],[-3,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-5,-3],[-3,-2],[-3,-1],[-2,-2],[-2,-1],[-3,-1],[-2,-2],[-3,-1],[-2,-1],[-2,-1],[-3,-1],[-2,-1],[-3,-1],[-2,-1],[-2,-1],[-3,-1],[-2,-1],[-2,-1],[-3,-1],[-2,-1],[-2,-1],[-3,0],[-2,-1],[-2,-1],[-3,0],[-2,-1],[-2,-1],[-3,0],[-2,-1],[-3,0],[-2,-1],[-3,0],[-2,-1],[-3,0],[-2,-1],[-3,0],[-2,-1],[-3,0],[-3,0],[-2,-1],[-3,0],[-3,-1],[-3,0],[-3,0],[-2,-1],[-3,0],[-3,0],[-3,-1],[-3,0],[-14,-2],[-6,-1],[-7,-1],[-6,-1],[-7,-1],[-6,-1],[-7,-2],[-6,-1],[-7,-1],[-6,-2],[-7,-2],[-6,-1],[-7,-2],[-6,-2],[-7,-1],[-6,-2],[-7,-2],[-6,-2],[-7,-2],[-6,-2],[-6,-2],[-7,-2],[-6,-2],[-7,-2],[-6,-2],[-7,-3],[-6,-2],[-7,-2],[-6,-2],[-6,-2],[-7,-3],[-6,-2],[-7,-2],[-6,-2],[-7,-2],[-6,-2],[-6,-3],[-7,-2],[-6,-2],[-7,-2],[-6,-2],[-7,-2],[-6,-2],[-6,-2],[-7,-2],[-6,-2],[-7,-2],[-6,-2],[-7,-2],[-5,-1],[-2,-1],[-3,-1],[-3,-1],[-3,0],[-2,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,0],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,0],[-3,-1],[-3,-1],[-3,-1],[-4,0],[-3,-1],[-3,-1],[-3,0],[-3,-1],[-3,0],[-3,-1],[-4,0],[-3,0],[-3,-1],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,1],[-3,0],[-3,0],[-3,1],[-3,1],[-2,0],[-3,1],[-3,1],[-2,1],[-3,2],[-2,1],[-3,1],[-7,5],[-4,2],[-3,3],[-3,2],[-3,3],[-3,2],[-2,3],[-3,2],[-2,3],[-2,2],[-2,3],[-3,2],[-1,3],[-2,2],[-2,3],[-2,2],[-2,3],[-1,2],[-2,3],[-2,2],[-1,2],[-2,2],[-1,2],[-2,2],[-1,2],[-2,2],[-2,2],[-1,1],[-2,2],[-2,1],[-2,2],[-2,1],[-2,1],[-2,1],[-2,0],[-3,1],[-2,1],[-3,0],[-2,0],[-3,0],[-3,0],[-4,-1],[-3,0],[-3,-1],[-4,-1],[-4,-1],[-4,-2],[-5,-1],[-4,-2],[-3,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-9,-4],[-5,-2],[-5,-2],[-4,-2],[-5,-3],[-4,-2],[-5,-2],[-4,-3],[-4,-2],[-4,-3],[-4,-2],[-4,-3],[-4,-3],[-4,-2],[-4,-3],[-3,-3],[-4,-3],[-4,-2],[-4,-3],[-3,-3],[-4,-3],[-3,-2],[-4,-3],[-3,-3],[-4,-3],[-4,-2],[-3,-3],[-4,-2],[-3,-3],[-4,-2],[-4,-3],[-3,-2],[-4,-3],[-4,-2],[-3,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-1],[-4,-2],[-4,-1],[-4,-2],[-5,-1],[-4,-1],[-5,-1],[-4,0],[-5,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[6,3],[2,1],[3,2],[3,1],[3,2],[2,1],[3,2],[3,2],[2,1],[3,2],[2,2],[3,2],[2,2],[2,1],[3,2],[2,2],[2,2],[3,2],[2,2],[2,2],[3,2],[2,2],[2,2],[2,2],[3,2],[2,2],[2,1],[2,2],[3,2],[2,2],[2,2],[3,2],[2,2],[2,2],[3,1],[2,2],[3,2],[2,1],[3,2],[2,2],[3,1],[2,2],[3,1],[3,2],[2,1],[3,1],[3,1],[3,2],[3,1],[5,2],[3,1],[2,1],[3,1],[2,1],[3,2],[2,1],[3,1],[2,2],[3,1],[2,2],[3,1],[2,2],[3,2],[2,1],[3,2],[2,2],[2,1],[3,2],[2,2],[3,2],[2,1],[2,2],[3,2],[2,2],[3,2],[2,1],[2,2],[3,2],[2,2],[3,2],[2,1],[2,2],[3,2],[2,2],[3,1],[2,2],[3,2],[2,1],[3,2],[2,2],[2,1],[3,2],[2,1],[3,2],[2,1],[3,2],[2,1],[3,1],[4,2],[1,1],[2,1],[2,1],[2,0],[1,1],[2,1],[2,1],[2,1],[1,1],[2,0],[2,1],[2,1],[1,1],[2,1],[2,0],[2,1],[1,1],[2,1],[2,0],[2,1],[1,1],[2,1],[2,0],[2,1],[1,1],[2,1],[2,0],[2,1],[1,1],[2,1],[2,0],[2,1],[2,1],[1,0],[2,1],[2,1],[2,0],[1,1],[2,1],[2,0],[2,1],[2,1],[1,0],[2,1],[2,1],[2,0],[1,1],[2,1],[3,0],[1,1],[1,1],[2,0],[1,1],[2,0],[1,1],[1,1],[2,0],[1,1],[2,1],[1,1],[1,0],[2,1],[1,1],[2,1],[1,1],[2,1],[1,1],[1,1],[2,1],[1,1],[1,1],[1,2],[2,1],[1,1],[1,1],[1,2],[1,1],[1,2],[2,1],[1,2],[0,1],[1,2],[1,1],[1,2],[1,2],[1,2],[0,1],[1,2],[0,2],[1,2],[0,2],[0,2],[1,2],[0,3],[0,2],[0,2],[0,2],[0,4],[0,1],[-1,2],[0,1],[0,2],[-1,1],[0,1],[-1,2],[0,1],[-1,1],[0,2],[-1,1],[-1,1],[0,1],[-1,2],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[-4,4],[-2,2],[-2,1],[-2,2],[-2,2],[-2,2],[-2,1],[-2,2],[-2,2],[-2,2],[-2,1],[-2,2],[-2,2],[-2,2],[-2,1],[-2,2],[-2,2],[-2,2],[-1,1],[-2,2],[-2,2],[-2,2],[-2,1],[-2,2],[-2,2],[-2,2],[-2,1],[-2,2],[-2,2],[-2,2],[-2,2],[-2,1],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,1],[-2,2],[-1,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-1,2],[-2,2],[-3,2],[-1,2],[-2,1],[-1,2],[-1,1],[-1,2],[-2,1],[-1,2],[-1,1],[-2,2],[-1,1],[-1,2],[-1,1],[-2,2],[-1,1],[-1,2],[-2,1],[-1,2],[-1,1],[-1,2],[-2,1],[-1,2],[-1,1],[-2,2],[-1,2],[-1,1],[-1,2],[-2,1],[-1,2],[-1,1],[-2,2],[-1,1],[-1,2],[-1,1],[-2,1],[-1,2],[-1,1],[-2,2],[-1,1],[-1,2],[-2,1],[-1,1],[-1,2],[-2,1],[-1,2],[-2,1],[-1,1],[-1,2],[-2,1],[-3,3],[-2,2],[-2,1],[-2,1],[-1,2],[-2,1],[-2,2],[-2,1],[-1,1],[-2,1],[-2,2],[-2,1],[-2,1],[-1,1],[-2,1],[-2,1],[-2,2],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,1],[-1,1],[-2,2],[-2,1],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,2],[-1,1],[-2,1],[-2,2],[-1,1],[-2,1],[-1,2],[-2,1],[-2,2],[-1,1],[-2,2],[-1,2],[-2,1],[-1,2],[-5,5],[-2,3],[-3,3],[-2,2],[-3,3],[-2,2],[-3,2],[-2,3],[-2,2],[-3,2],[-2,2],[-3,3],[-2,2],[-3,2],[-2,2],[-3,2],[-2,2],[-2,2],[-3,2],[-2,2],[-3,2],[-2,2],[-3,2],[-2,2],[-3,2],[-2,3],[-2,2],[-3,2],[-2,2],[-3,2],[-2,2],[-2,2],[-3,3],[-2,2],[-3,2],[-2,2],[-2,3],[-3,2],[-2,3],[-2,2],[-3,3],[-2,3],[-2,2],[-2,3],[-3,3],[-2,3],[-2,3],[-2,3],[-3,3],[5,4],[3,2],[2,2],[3,1],[3,1],[3,0],[3,1],[3,0],[3,0],[3,-1],[4,0],[3,-1],[3,-1],[4,-1],[3,-1],[4,-1],[3,-2],[4,-2],[3,-1],[4,-2],[3,-3],[4,-2],[3,-2],[4,-2],[4,-3],[3,-2],[4,-3],[3,-3],[4,-2],[3,-3],[4,-3],[3,-3],[4,-3],[3,-3],[3,-2],[3,-3],[4,-3],[3,-3],[3,-3],[3,-2],[3,-3],[2,-3],[3,-2],[3,-3],[2,-2],[3,-2],[2,-2],[3,-2],[2,-2],[2,-2],[1,-1],[1,-1],[2,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[4,-3],[2,-2],[2,-1],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-3],[2,-2],[2,-3],[2,-2],[2,-2],[2,-3],[3,-2],[2,-3],[2,-2],[2,-3],[2,-2],[2,-3],[2,-2],[3,-2],[2,-3],[2,-2],[2,-2],[2,-3],[2,-2],[3,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-1],[3,-2],[2,-2],[2,-1],[2,-1],[2,-1],[3,-1],[2,-1],[2,-1],[2,-1],[2,0],[2,0],[2,-1],[3,1],[1,-10],[1,-4],[1,-5],[1,-4],[1,-4],[1,-4],[1,-4],[1,-4],[2,-4],[1,-4],[2,-3],[2,-3],[2,-4],[1,-3],[2,-3],[2,-3],[2,-3],[3,-3],[2,-2],[2,-3],[2,-2],[3,-2],[2,-3],[3,-2],[2,-2],[3,-2],[3,-2],[2,-1],[3,-2],[3,-1],[3,-2],[3,-1],[3,-1],[3,-2],[2,-1],[4,-1],[3,0],[3,-1],[3,-1],[3,0],[3,-1],[3,0],[3,-1],[3,0],[4,0],[3,0],[3,0],[3,0],[3,0],[9,2],[4,0],[4,1],[3,1],[3,1],[3,1],[2,1],[2,2],[2,1],[2,2],[1,1],[1,2],[1,2],[1,2],[0,2],[0,2],[0,2],[0,2],[-1,3],[0,2],[-1,3],[-1,2],[-1,3],[-1,3],[-1,3],[-2,2],[-1,3],[-2,4],[-1,3],[-2,3],[-2,3],[-1,3],[-2,4],[-2,3],[-2,4],[-2,3],[-2,4],[-1,4],[-2,3],[-2,4],[-2,4],[-1,4],[-2,4],[-2,4],[-1,4],[-1,4],[-2,4],[-1,4],[-1,4],[-1,7],[-1,3],[0,4],[-1,3],[0,3],[-1,4],[0,3],[0,4],[-1,3],[0,4],[0,3],[0,4],[0,3],[0,4],[0,3],[0,4],[0,3],[0,4],[0,4],[0,3],[0,4],[0,3],[0,4],[1,4],[0,3],[0,4],[0,3],[1,4],[0,4],[0,3],[1,4],[0,3],[1,4],[0,3],[0,4],[1,4],[0,3],[1,4],[0,3],[1,3],[0,4],[1,3],[0,4],[1,3],[0,4],[1,3],[0,3],[0,3],[1,4],[2,13],[1,7],[1,6],[1,7],[1,7],[2,6],[1,7],[1,7],[1,6],[2,7],[1,6],[1,7],[2,6],[1,7],[2,6],[1,7],[2,6],[1,7],[2,6],[2,7],[1,6],[2,7],[2,6],[1,7],[2,6],[2,7],[1,6],[2,6],[2,7],[2,6],[1,7],[2,6],[2,6],[2,7],[1,6],[2,7],[2,6],[2,6],[1,7],[2,6],[2,6],[2,7],[2,6],[1,7],[2,6],[2,6],[2,7],[1,6],[2,6],[6,4],[3,2],[3,2],[3,1],[2,2],[3,3],[3,2],[3,2],[2,2],[3,3],[3,2],[2,3],[3,2],[3,3],[2,2],[3,3],[2,3],[3,2],[3,3],[2,3],[3,3],[2,2],[3,3],[2,3],[3,3],[2,3],[3,3],[2,3],[3,3],[2,3],[3,3],[2,2],[2,3],[3,3],[2,3],[3,3],[2,3],[3,3],[2,2],[3,3],[3,3],[2,2],[3,3],[2,3],[3,2],[2,3],[3,2],[3,3],[2,2],[5,4],[3,3],[2,2],[3,2],[2,2],[3,2],[2,2],[3,2],[2,2],[2,2],[3,2],[2,2],[3,2],[2,2],[3,1],[2,2],[2,2],[3,2],[2,2],[3,2],[2,2],[2,2],[3,2],[2,2],[2,2],[3,2],[2,2],[3,2],[2,2],[2,2],[3,2],[2,2],[2,2],[3,2],[2,3],[3,2],[2,2],[2,2],[3,3],[2,2],[3,2],[2,3],[3,2],[2,3],[2,3],[3,2],[2,3],[3,3],[2,3],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[3,5],[2,3],[2,3],[2,3],[2,3],[1,3],[2,4],[2,3],[2,3],[2,4],[2,3],[2,3],[3,4],[2,3],[2,4],[2,3],[2,4],[3,3],[2,4],[2,3],[3,3],[2,4],[2,3],[3,3],[2,3],[3,3],[3,3],[2,3],[3,3],[2,3],[3,3],[3,2],[3,3],[2,2],[3,2],[3,2],[3,2],[3,2],[3,1],[3,2],[3,1],[3,1],[3,1],[3,1],[4,1],[3,0],[3,0],[3,0],[4,0],[0,3],[1,1],[0,2],[1,1],[0,2],[0,1],[1,1],[0,2],[1,1],[0,1],[1,1],[0,2],[1,1],[0,1],[1,1],[0,2],[1,1],[0,1],[1,1],[0,1],[1,2],[0,1],[1,1],[0,1],[1,1],[0,1],[1,2],[1,1],[0,1],[1,1],[0,1],[1,1],[0,2],[1,1],[0,1],[1,1],[0,2],[0,1],[1,1],[0,1],[1,2],[0,1],[1,1],[0,2],[0,1],[1,1],[0,2],[0,1],[0,2],[11,6],[5,3],[6,3],[5,4],[6,3],[5,3],[6,4],[5,3],[6,4],[5,4],[6,3],[5,4],[6,3],[6,4],[5,4],[6,3],[6,4],[6,3],[5,4],[6,3],[6,4],[6,3],[5,4],[6,3],[6,4],[6,3],[6,3],[6,3],[5,3],[6,3],[6,3],[6,3],[6,3],[6,2],[6,3],[5,2],[6,3],[6,2],[6,2],[6,2],[6,2],[5,1],[6,2],[6,1],[6,2],[6,1],[5,1],[6,0],[6,1],[8,1],[3,0],[4,0],[4,0],[4,0],[4,0],[4,0],[4,0],[3,0],[4,-1],[4,0],[4,0],[4,0],[4,-1],[4,0],[4,0],[3,0],[4,-1],[4,0],[4,0],[4,-1],[4,0],[4,0],[4,-1],[4,0],[3,0],[4,0],[4,0],[4,-1],[4,0],[4,0],[4,0],[3,0],[4,0],[4,0],[4,1],[4,0],[4,0],[3,1],[4,0],[4,1],[4,0],[3,1],[4,1],[4,1],[4,1],[3,1],[4,1],[4,1],[6,3],[3,1],[4,2],[3,1],[3,2],[3,1],[3,2],[3,2],[3,2],[3,2],[3,1],[3,2],[3,2],[3,2],[3,2],[2,2],[3,2],[3,1],[3,2],[3,2],[3,2],[3,1],[3,2],[2,1],[3,2],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,0],[3,1],[3,0],[3,0],[4,0],[3,0],[3,-1],[3,0],[4,-1],[3,-1],[3,-1],[4,-2],[3,-1],[4,-2],[4,-2],[3,-2],[4,-3],[6,-5],[2,-2],[3,-3],[2,-2],[3,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-4],[2,-3],[1,-3],[2,-4],[2,-3],[1,-4],[2,-4],[1,-3],[1,-4],[2,-4],[1,-4],[1,-4],[1,-4],[1,-4],[2,-4],[1,-3],[1,-4],[1,-4],[1,-4],[1,-4],[1,-4],[1,-4],[1,-4],[1,-4],[2,-4],[1,-4],[1,-3],[1,-4],[1,-4],[2,-3],[1,-4],[1,-3],[2,-4],[1,-3],[2,-3],[2,-3],[1,-4],[2,-3],[2,-2],[2,-3],[2,-3],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[2,0],[1,-1],[1,-1],[1,0],[1,-1],[2,0],[1,-1],[1,0],[1,-1],[2,0],[1,-1],[1,0],[2,0],[1,-1],[1,0],[1,-1],[2,0],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,-1],[2,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[0,1],[1,1],[0,2],[1,1],[1,2],[0,3],[1,2],[1,3],[1,3],[1,3],[1,4],[1,3],[0,4],[1,4],[1,4],[1,4],[1,4],[1,4],[0,5],[1,4],[0,4],[1,5],[0,4],[0,5],[0,4],[0,4],[0,5],[0,4],[-1,4],[-1,4],[0,4],[-2,4],[-1,3],[-1,4],[-2,3],[-2,3],[-2,3],[-3,2],[-2,3],[-3,2],[-3,2],[-4,1],[-4,1],[-4,1],[-4,1],[-5,0],[-5,0],[-6,-1],[0,2],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[-1,2],[-1,2],[-1,2],[-1,2],[-2,3],[-2,2],[-2,2],[-2,2],[-3,3],[-2,2],[-3,3],[-3,2],[-3,3],[-3,2],[-4,3],[-3,3],[-4,2],[-4,3],[-4,2],[-3,3],[-4,3],[-4,2],[-4,3],[-4,2],[-4,2],[-5,3],[-4,2],[-4,3],[-4,2],[-4,2],[-4,2],[-3,2],[-4,2],[-4,2],[-3,2],[-4,1],[-3,2],[-3,1],[-4,2],[-2,1],[-3,1],[-3,1],[-2,1],[-2,1],[-2,1],[-2,0],[-2,0],[-1,1],[-7,0],[-4,0],[-3,0],[-3,-1],[-4,0],[-3,-1],[-3,-1],[-4,0],[-3,-1],[-3,-1],[-3,-2],[-4,-1],[-3,-1],[-3,-2],[-3,-1],[-3,-2],[-3,-1],[-3,-2],[-3,-2],[-3,-2],[-3,-1],[-3,-2],[-3,-2],[-3,-2],[-3,-2],[-3,-2],[-3,-2],[-3,-2],[-3,-2],[-3,-2],[-3,-2],[-3,-2],[-3,-2],[-3,-2],[-3,-2],[-3,-2],[-3,-2],[-3,-2],[-3,-2],[-3,-1],[-4,-2],[-3,-2],[-3,-1],[-3,-2],[-3,-1],[-4,-1],[-3,-1],[-4,-1],[-3,-1],[-6,-2],[-3,0],[-4,-1],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,1],[-3,0],[-4,0],[-3,1],[-3,0],[-3,1],[-3,1],[-3,1],[-3,1],[-3,0],[-3,1],[-3,1],[-3,1],[-3,1],[-3,1],[-3,1],[-4,1],[-3,2],[-3,1],[-3,1],[-3,1],[-3,1],[-3,1],[-3,1],[-3,1],[-3,1],[-3,0],[-3,1],[-3,1],[-3,1],[-4,0],[-3,1],[-3,0],[-3,1],[-3,0],[-3,0],[-3,1],[-3,0],[-3,0],[-4,-1],[-3,0],[-4,-1],[-2,0],[-3,-1],[-2,-1],[-3,0],[-2,-1],[-3,-1],[-2,-2],[-3,-1],[-3,-1],[-3,-1],[-2,-2],[-3,-1],[-3,-1],[-3,-2],[-3,-1],[-3,-2],[-3,-1],[-3,-1],[-2,-2],[-3,-1],[-3,-1],[-3,-2],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,0],[-3,-1],[-3,-1],[-2,0],[-3,0],[-3,0],[-3,0],[-2,0],[-3,0],[-3,1],[-2,0],[-3,1],[-2,1],[-2,2],[-3,1],[-2,2],[-2,2],[-2,2],[-2,3],[-2,3],[-2,3],[-2,3],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-4,2],[-2,0],[-2,1],[-2,1],[-1,0],[-2,1],[-2,1],[-2,0],[-1,1],[-2,0],[-2,1],[-1,1],[-2,0],[-1,1],[-2,0],[-1,0],[-2,1],[-1,0],[-2,1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-2,0],[-1,-1],[-2,0],[-1,-1],[-2,-1],[-1,0],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-21,-13],[-10,-6],[-11,-6],[-11,-4],[-10,-5],[-11,-4],[-11,-3],[-10,-3],[-11,-3],[-11,-2],[-11,-2],[-11,-2],[-10,-1],[-11,-1],[-11,0],[-11,-1],[-11,0],[-11,0],[-11,1],[-11,0],[-11,1],[-11,1],[-11,1],[-12,1],[-11,2],[-11,1],[-11,2],[-11,1],[-11,2],[-11,2],[-11,2],[-12,1],[-11,2],[-11,2],[-11,1],[-11,2],[-11,2],[-11,1],[-11,1],[-11,2],[-11,1],[-11,1],[-11,0],[-11,1],[-11,0],[-11,0],[-11,0],[-11,0],[-11,-1],[-18,-1],[-9,-1],[-8,0],[-9,-1],[-9,0],[-9,-1],[-9,0],[-9,-1],[-9,0],[-9,-1],[-9,0],[-8,-1],[-9,0],[-9,0],[-9,-1],[-9,0],[-9,-1],[-9,0],[-9,0],[-9,-1],[-8,0],[-9,-1],[-9,0],[-9,0],[-9,-1],[-9,0],[-9,-1],[-9,0],[-8,0],[-9,-1],[-9,0],[-9,-1],[-9,0],[-9,-1],[-9,0],[-9,-1],[-9,-1],[-8,0],[-9,-1],[-9,-1],[-9,0],[-9,-1],[-9,-1],[-9,-1],[-8,0],[-9,-1],[-9,-1],[-9,-1],[-9,-1],[-9,-1],[-4,-1],[-4,0],[-5,-1],[-4,0],[-5,-1],[-4,-1],[-4,0],[-5,-1],[-4,0],[-4,-1],[-5,-1],[-4,0],[-5,-1],[-4,-1],[-4,0],[-5,-1],[-4,-1],[-4,-1],[-5,0],[-4,-1],[-4,-1],[-5,-1],[-4,-1],[-4,0],[-5,-1],[-4,-1],[-4,-1],[-5,-1],[-4,-1],[-5,-1],[-4,-1],[-4,-1],[-5,-1],[-4,0],[-4,-1],[-5,-2],[-4,-1],[-4,-1],[-5,-1],[-4,-1],[-4,-1],[-4,-1],[-5,-1],[-4,-1],[-4,-1],[-5,-2],[-4,-1],[-4,-1],[-8,-2],[-3,-2],[-4,-1],[-3,-2],[-3,-1],[-4,-2],[-3,-2],[-3,-1],[-3,-2],[-3,-2],[-3,-2],[-3,-3],[-3,-2],[-3,-2],[-3,-2],[-3,-3],[-3,-2],[-3,-3],[-3,-2],[-2,-3],[-3,-3],[-3,-2],[-3,-3],[-2,-3],[-3,-3],[-3,-2],[-3,-3],[-2,-3],[-3,-3],[-3,-3],[-2,-3],[-3,-3],[-3,-3],[-3,-3],[-2,-3],[-3,-2],[-3,-3],[-3,-3],[-2,-3],[-3,-3],[-3,-3],[-3,-3],[-3,-3],[-3,-3],[-3,-2],[-3,-3],[-3,-3],[-3,-3],[-3,-2],[-5,-4],[-2,-2],[-2,-1],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-3,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-3],[-2,-2],[-1,-2],[-2,-2],[-2,-3],[-2,-2],[-2,-2],[-2,-3],[-1,-2],[-2,-3],[-2,-2],[-1,-3],[-2,-2],[-2,-3],[-1,-3],[-1,-2],[-2,-3],[-1,-3],[-2,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-4],[-1,-3],[-1,-3],[0,-4],[-1,-3],[0,-4],[-1,-3],[0,-4],[0,-4],[-1,-9],[0,-4],[0,-5],[0,-4],[0,-5],[1,-5],[0,-4],[0,-5],[1,-5],[0,-4],[1,-5],[1,-5],[1,-4],[0,-5],[1,-5],[1,-5],[1,-4],[2,-5],[1,-5],[1,-4],[1,-5],[1,-4],[2,-5],[1,-5],[2,-4],[1,-5],[2,-4],[1,-5],[2,-4],[1,-5],[2,-4],[1,-5],[2,-4],[2,-4],[1,-5],[2,-4],[2,-4],[2,-4],[1,-5],[2,-4],[2,-4],[2,-4],[1,-4],[2,-4],[2,-4],[1,-3],[2,-4],[2,-4],[1,-4],[4,-7],[1,-3],[2,-4],[2,-3],[2,-4],[1,-3],[2,-3],[2,-4],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-2],[3,-3],[2,-3],[2,-2],[2,-3],[3,-2],[2,-3],[2,-2],[2,-3],[3,-2],[2,-3],[3,-2],[2,-2],[2,-2],[3,-3],[2,-2],[3,-2],[2,-2],[3,-2],[2,-2],[3,-2],[2,-2],[3,-2],[3,-2],[2,-2],[3,-2],[3,-1],[2,-2],[3,-2],[3,-2],[2,-1],[1,-1],[2,-1],[1,-1],[2,-1],[1,-2],[2,-1],[1,-1],[1,-1],[2,-2],[1,-1],[2,-1],[1,-2],[1,-1],[2,-1],[1,-2],[2,-1],[1,-2],[1,-1],[2,-1],[1,-2],[1,-1],[2,-2],[1,-1],[1,-2],[2,-1],[1,-2],[1,-1],[1,-2],[2,-1],[1,-2],[1,-1],[2,-2],[1,-1],[1,-2],[2,-1],[1,-2],[1,-1],[2,-2],[1,-1],[1,-2],[2,-1],[1,-2],[1,-1],[2,-2],[1,-1],[1,-2],[2,-1],[3,-3],[1,-2],[2,-1],[1,-1],[2,-1],[1,-1],[2,-2],[1,-1],[1,-1],[2,0],[1,-1],[1,-1],[2,-1],[1,0],[1,-1],[2,-1],[1,0],[1,-1],[2,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[2,0],[1,-1],[2,0],[1,0],[1,0],[2,0],[1,-1],[2,0],[1,0],[2,0],[1,0],[2,-1],[1,0],[2,0],[1,0],[2,-1],[2,0],[1,0],[2,-1],[2,0],[2,0],[3,-1],[2,0],[1,-1],[2,0],[1,-1],[2,0],[2,-1],[1,0],[2,-1],[1,0],[2,-1],[1,0],[2,-1],[2,-1],[1,0],[2,-1],[1,0],[2,-1],[1,-1],[2,0],[2,-1],[1,0],[2,-1],[1,-1],[2,0],[1,-1],[2,-1],[1,0],[2,-1],[1,-1],[2,0],[2,-1],[1,-1],[2,-1],[1,0],[2,-1],[1,-1],[2,0],[1,-1],[2,-1],[1,0],[2,-1],[2,-1],[1,0],[2,-1],[1,-1],[2,0],[1,-1],[2,-1],[3,-1],[1,-1],[2,0],[1,-1],[2,0],[2,-1],[1,0],[2,0],[1,-1],[2,0],[1,0],[2,-1],[1,0],[2,0],[1,-1],[2,0],[2,0],[1,0],[2,-1],[1,0],[2,0],[1,0],[2,0],[1,0],[2,-1],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[2,-1],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[2,0],[1,0],[2,-1],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0],[2,-1],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,1],[2,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[2,-1],[1,0],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[4,-6],[1,-2],[1,-3],[1,-2],[1,-2],[0,-2],[1,-3],[0,-2],[0,-2],[0,-2],[-1,-2],[0,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[-2,-2],[-1,-1],[-1,-2],[-2,-1],[-2,-2],[-2,-1],[-2,-1],[-2,-1],[-2,-2],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-3,-1],[-2,-1],[-2,-1],[-2,0],[-3,-1],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,0],[-2,-1],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-6,0],[-3,0],[-3,0],[-4,-1],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-4,0],[-3,-1],[-3,0],[-3,0],[-4,0],[-3,0],[-3,0],[-3,-1],[-4,0],[-3,0],[-3,0],[-3,0],[-3,0],[-4,0],[-3,0],[-3,0],[-3,0],[-4,0],[-3,1],[-3,0],[-3,0],[-3,1],[-4,0],[-3,1],[-3,0],[-3,1],[-3,1],[-3,0],[-3,1],[-3,1],[-4,1],[-3,1],[-3,2],[-3,1],[-3,1],[-3,2],[-3,2],[-3,1],[-3,2],[-3,2],[-5,4],[-3,2],[-2,1],[-3,2],[-3,2],[-2,2],[-3,1],[-3,2],[-2,2],[-3,1],[-2,2],[-3,2],[-3,1],[-2,2],[-3,2],[-3,1],[-2,2],[-3,1],[-3,2],[-2,1],[-3,2],[-3,1],[-3,2],[-2,1],[-3,2],[-3,1],[-2,2],[-3,1],[-3,2],[-2,1],[-3,2],[-3,1],[-3,2],[-2,1],[-3,1],[-3,2],[-2,1],[-3,2],[-3,1],[-3,2],[-2,1],[-3,1],[-3,2],[-3,1],[-2,2],[-3,1],[-3,2],[-3,1],[-3,2],[-3,1],[-2,1],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,0],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,1],[-1,0],[-2,1],[-2,1],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,0],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,1],[-1,1],[-2,0],[-2,1],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-3,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,0],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,2],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,2],[-1,1],[0,1],[-1,1],[-1,1],[0,2],[-1,1],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-4,3],[-2,1],[-2,1],[-2,1],[-2,1],[-2,0],[-2,1],[-2,0],[-1,1],[-2,0],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-2,-1],[-2,-1],[-2,0],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-2],[-2,-1],[-1,-1],[-2,-2],[-2,-1],[-2,-2],[-2,-1],[-2,-2],[-2,-1],[-1,-2],[-2,-1],[-2,-2],[-2,-2],[-2,-1],[-2,-2],[-1,-2],[-2,-1],[-2,-2],[-2,-2],[-2,-1],[-1,-2],[-2,-1],[-2,-2],[-2,-1],[-1,-2],[-4,-3],[-2,-1],[-2,-2],[-2,-1],[-2,-2],[-2,-1],[-1,-2],[-2,-1],[-2,-2],[-2,-1],[-2,-2],[-2,-1],[-1,-2],[-2,-1],[-2,-1],[-2,-2],[-2,-1],[-1,-2],[-2,-1],[-2,-2],[-1,-1],[-2,-2],[-2,-1],[-2,-2],[-1,-1],[-2,-2],[-2,-1],[-1,-2],[-2,-1],[-2,-2],[-1,-2],[-2,-1],[-2,-2],[-1,-2],[-2,-1],[-1,-2],[-2,-2],[-2,-2],[-1,-2],[-2,-1],[-1,-2],[-2,-2],[-2,-2],[-1,-2],[-2,-2],[-1,-2],[-2,-2],[-1,-3],[-2,-2],[-4,-6],[-2,-3],[-2,-3],[-2,-3],[-3,-3],[-2,-3],[-2,-3],[-2,-2],[-3,-3],[-2,-3],[-2,-3],[-3,-2],[-2,-3],[-2,-2],[-3,-3],[-2,-3],[-3,-2],[-2,-3],[-3,-2],[-2,-2],[-3,-3],[-2,-2],[-3,-2],[-2,-3],[-3,-2],[-2,-2],[-3,-2],[-3,-3],[-2,-2],[-3,-2],[-2,-2],[-3,-2],[-3,-2],[-2,-2],[-3,-2],[-3,-2],[-3,-2],[-2,-2],[-3,-2],[-3,-2],[-3,-2],[-2,-1],[-3,-2],[-3,-2],[-3,-2],[-3,-1],[-3,-2],[-2,-2],[-3,-2],[-4,-2],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-3,0],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-1,-2],[-3,-2],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,1],[-2,1],[-1,0],[-1,1],[-2,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,2],[0,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,2],[0,1],[-1,2],[-1,2],[-1,1],[-1,2],[-1,1],[0,2],[-1,2],[-1,1],[-1,2],[0,2],[-1,2],[-1,1],[0,2],[-1,1],[0,2],[-1,2],[0,1],[-1,2],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,2],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[0,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[2,3],[1,2],[2,1],[1,2],[1,1],[1,2],[2,1],[1,2],[1,1],[2,1],[1,2],[1,1],[2,1],[1,2],[1,1],[2,1],[1,1],[1,2],[2,1],[1,1],[2,1],[1,2],[2,1],[1,1],[1,1],[2,1],[1,1],[2,1],[1,2],[2,1],[1,1],[2,1],[1,1],[2,1],[1,1],[2,1],[1,1],[2,1],[1,1],[2,1],[1,1],[1,1],[2,0],[1,1],[2,1],[1,1],[2,1],[1,1],[2,1],[4,2],[2,1],[3,1],[3,2],[3,1],[4,1],[4,2],[4,2],[4,1],[4,2],[5,2],[4,2],[5,2],[5,1],[5,2],[5,3],[6,2],[5,2],[5,2],[5,2],[6,2],[5,3],[6,2],[5,2],[5,3],[5,2],[6,3],[5,2],[5,2],[5,3],[4,2],[5,3],[4,3],[5,2],[4,3],[4,2],[3,3],[4,2],[3,3],[3,3],[2,2],[3,3],[2,2],[1,3],[2,3],[1,2],[0,3],[0,2],[0,3],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-2,0],[-1,0],[-2,0],[-1,1],[-2,0],[-1,1],[-2,0],[-2,1],[-1,0],[-2,1],[-2,1],[-2,0],[-1,1],[-2,1],[-2,1],[-1,1],[-2,0],[-2,1],[-2,1],[-1,1],[-2,1],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-1,1],[-2,2],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-2,5],[-1,3],[0,2],[-1,3],[0,2],[-1,2],[0,2],[0,2],[0,2],[0,2],[1,2],[0,1],[1,2],[0,2],[1,1],[1,2],[1,1],[0,1],[1,1],[2,1],[1,2],[1,1],[1,0],[2,1],[1,1],[1,1],[2,1],[1,0],[2,1],[1,0],[2,1],[2,0],[1,1],[2,0],[2,0],[1,0],[2,1],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0],[2,-1],[1,0],[2,0],[1,0],[2,0],[1,-1],[4,-1],[1,0],[2,-1],[2,-1],[2,0],[2,-1],[2,-1],[3,0],[2,-1],[2,-1],[2,0],[2,-1],[2,-1],[2,0],[2,-1],[3,-1],[2,0],[2,-1],[2,-1],[2,0],[3,-1],[2,0],[2,-1],[2,0],[3,-1],[2,0],[2,-1],[2,0],[3,0],[2,0],[2,0],[2,0],[2,0],[3,0],[2,0],[2,0],[2,0],[2,1],[2,0],[2,1],[3,0],[2,1],[2,1],[2,1],[2,1],[2,1],[2,1],[2,2],[1,1],[2,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[2,2],[1,1],[1,1],[2,1],[1,2],[1,1],[2,2],[1,1],[2,1],[1,2],[2,1],[1,2],[1,1],[2,2],[1,1],[2,2],[1,2],[2,1],[1,2],[1,1],[2,2],[1,1],[1,2],[1,1],[2,2],[1,1],[1,2],[1,1],[1,1],[1,2],[1,1],[0,1],[1,2],[1,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,4],[0,1],[0,2],[0,2],[0,1],[0,2],[0,2],[-1,1],[0,2],[0,2],[-1,1],[0,2],[-1,2],[-1,1],[0,2],[-1,2],[-1,1],[0,2],[-1,1],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[0,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-2,4],[-1,2],[-1,1],[-1,2],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,2],[-1,2],[-1,1],[-2,4],[-1,2],[-1,1],[-1,2],[0,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[0,3],[-1,2],[-1,2],[-1,2],[0,2],[-1,2],[-1,2],[-1,3],[0,2],[-1,2],[-1,2],[-1,2],[0,2],[-1,2],[-1,3],[-1,2],[0,2],[-1,2],[-1,2],[-1,2],[0,2],[-1,1],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[0,2],[-1,1],[-1,2],[-1,1],[-1,1],[-2,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,0],[-3,2],[-1,0],[-2,1],[-2,0],[-1,1],[-2,0],[-2,1],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-3,-1],[-2,0],[-2,0],[-3,0],[-2,-1],[-3,0],[-2,0],[-2,-1],[-3,0],[-2,-1],[-3,0],[-2,0],[-2,-1],[-3,0],[-2,-1],[-2,0],[-2,-1],[-3,0],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-1,0],[-2,-1],[-2,0],[-4,0],[-2,-1],[-2,0],[-2,0],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,1],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-3,0],[-2,0],[-2,0],[-1,1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-3],[0,-8],[0,-4],[0,-4],[0,-4],[0,-4],[1,-4],[0,-4],[0,-4],[1,-4],[0,-4],[0,-4],[0,-4],[1,-4],[0,-4],[1,-4],[0,-4],[0,-4],[1,-4],[0,-4],[0,-5],[1,-4],[0,-4],[0,-4],[1,-4],[0,-4],[0,-4],[1,-4],[0,-4],[0,-4],[1,-4],[0,-4],[0,-4],[0,-4],[1,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[-1,-4],[0,-4],[0,-4],[0,-4],[-1,-4],[0,-4],[-1,-9],[-1,-5],[-1,-4],[0,-5],[-1,-4],[-1,-5],[-1,-4],[-1,-5],[-1,-4],[-1,-5],[-1,-4],[-1,-5],[-2,-5],[-1,-4],[-1,-5],[-1,-4],[-2,-4],[-1,-5],[-1,-4],[-2,-5],[-1,-4],[-1,-5],[-1,-4],[-2,-5],[-1,-4],[-1,-5],[-1,-4],[-2,-5],[-1,-4],[-1,-5],[-1,-4],[-1,-5],[-1,-4],[-1,-5],[-1,-4],[-1,-4],[-1,-5],[-1,-4],[0,-5],[-1,-4],[-1,-5],[0,-4],[-1,-5],[0,-4],[0,-4],[0,-5],[0,-4],[0,-5],[0,-4],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-5,-4],[-2,-2],[-2,-2],[-3,-2],[-2,-2],[-2,-2],[-3,-2],[-2,-2],[-3,-2],[-2,-2],[-3,-2],[-2,-2],[-3,-2],[-2,-2],[-3,-2],[-2,-2],[-3,-1],[-2,-2],[-3,-2],[-3,-2],[-2,-2],[-3,-1],[-3,-2],[-2,-2],[-3,-1],[-3,-2],[-2,-2],[-3,-1],[-3,-2],[-2,-1],[-3,-2],[-3,-2],[-2,-1],[-3,-1],[-3,-2],[-3,-1],[-2,-2],[-3,-1],[-3,-1],[-2,-1],[-3,-2],[-3,-1],[-3,-1],[-2,-1],[-3,-1],[-3,-1],[-2,-1],[-3,-1],[-3,-1],[1,-4],[0,-2],[0,-2],[0,-2],[0,-2],[1,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-2],[1,-1],[0,-2],[0,-1],[0,-2],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,3],[0,1],[-1,2],[-1,1],[0,2],[-1,2],[0,1],[-1,2],[0,2],[0,2],[-1,1],[0,2],[-1,2],[0,2],[0,2],[0,2],[-1,2],[0,2],[0,2],[0,2],[-1,2],[0,2],[0,2],[0,2],[0,2],[0,3],[0,2],[-1,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[1,2],[0,2],[0,2],[0,1],[0,2],[0,2],[0,2],[0,1],[0,2],[0,2],[4,-3],[2,-2],[1,-1],[2,-2],[2,-1],[1,-1],[2,-1],[2,-1],[2,-2],[1,-1],[2,-1],[1,-1],[2,-1],[2,-1],[1,-1],[2,0],[2,-1],[1,-1],[2,-1],[2,0],[1,-1],[2,0],[2,-1],[1,0],[2,-1],[2,0],[1,0],[2,-1],[2,0],[1,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[1,1],[2,0],[2,0],[2,1],[2,0],[2,1],[2,0],[1,1],[2,1],[2,0],[2,1],[2,1],[4,2],[2,1],[2,1],[2,1],[2,1],[2,1],[2,2],[2,1],[2,1],[3,2],[2,1],[2,2],[2,1],[2,2],[2,2],[2,1],[2,2],[2,2],[2,2],[3,2],[2,2],[2,2],[2,2],[2,2],[1,2],[2,2],[2,2],[2,3],[2,2],[2,2],[1,3],[2,2],[2,3],[1,2],[2,3],[1,2],[2,3],[1,2],[1,3],[2,3],[1,2],[1,3],[1,3],[1,3],[1,3],[0,2],[1,3],[1,3],[0,3],[10,7],[5,4],[5,5],[4,6],[5,6],[4,8],[5,7],[4,8],[4,9],[4,10],[4,9],[4,11],[3,10],[4,11],[3,12],[3,11],[3,12],[3,13],[3,12],[2,13],[3,13],[2,13],[2,13],[2,14],[2,13],[1,14],[1,13],[2,13],[1,14],[0,13],[1,13],[0,13],[1,13],[0,13],[-1,12],[0,12],[-1,12],[0,12],[-2,11],[-1,10],[-1,11],[-2,10],[-2,9],[-2,9],[-3,9],[-2,8],[-3,7],[-4,6],[-3,6],[-4,0],[-3,-1],[-2,-1],[-2,0],[-3,-1],[-3,-1],[-3,-1],[-2,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-4,-2],[-3,-1],[-3,-1],[-3,-1],[-4,-1],[-3,-1],[-3,-2],[-4,-1],[-3,-1],[-4,-1],[-3,-1],[-3,-1],[-4,-1],[-3,-1],[-4,0],[-3,-1],[-3,-1],[-4,0],[-3,-1],[-3,0],[-3,0],[-4,-1],[-3,0],[-3,0],[-3,1],[-3,0],[-3,0],[-2,1],[-3,1],[-3,1],[-2,1],[-3,1],[-2,2],[-2,1],[-2,2],[-2,2],[-2,2],[-2,3],[-1,2],[-1,1],[-1,2],[0,2],[-1,1],[-1,2],[-1,2],[0,3],[-1,2],[0,2],[-1,2],[-1,3],[0,2],[-1,2],[0,3],[0,2],[-1,3],[0,2],[0,3],[-1,3],[0,2],[0,3],[-1,3],[0,2],[0,3],[0,3],[0,3],[0,2],[0,3],[-1,3],[0,2],[0,3],[0,2],[0,3],[0,3],[0,2],[0,3],[1,2],[0,2],[0,3],[0,2],[0,2],[0,2],[0,2],[0,2],[1,2],[0,2],[0,2],[0,2],[1,2],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[1,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[1,1],[0,1],[0,6],[-1,3],[0,3],[0,4],[0,3],[-1,4],[0,3],[-1,4],[0,4],[-1,4],[-1,4],[0,4],[-1,4],[0,4],[-1,4],[-1,5],[0,4],[-1,4],[-1,5],[0,4],[-1,5],[-1,4],[0,4],[-1,5],[0,4],[0,5],[-1,4],[0,4],[0,5],[0,4],[0,4],[0,4],[0,4],[0,4],[1,4],[0,4],[1,4],[0,3],[1,4],[1,3],[1,3],[2,3],[1,4],[2,2],[1,3],[2,3],[2,2],[3,2],[2,3],[5,3],[2,1],[2,0],[3,1],[2,0],[2,0],[2,-1],[2,-1],[3,-1],[2,-1],[2,-1],[2,-2],[2,-2],[2,-2],[2,-2],[2,-3],[2,-2],[2,-3],[2,-3],[2,-3],[2,-3],[2,-4],[2,-3],[1,-3],[2,-4],[2,-4],[2,-3],[1,-4],[2,-4],[2,-4],[1,-3],[2,-4],[1,-4],[2,-4],[1,-4],[1,-3],[2,-4],[1,-3],[1,-4],[2,-3],[1,-4],[1,-3],[1,-3],[1,-3],[1,-3],[1,-2],[1,-3],[1,-2],[1,-2],[1,-3],[0,-2],[1,-2],[0,-1],[1,-2],[0,-2],[1,-2],[0,-2],[1,-1],[0,-2],[0,-2],[1,-2],[0,-2],[1,-2],[0,-2],[0,-2],[1,-2],[0,-3],[0,-2],[1,-2],[0,-2],[0,-2],[1,-2],[0,-2],[0,-2],[1,-2],[0,-2],[0,-2],[1,-2],[0,-2],[0,-2],[1,-2],[0,-2],[1,-2],[0,-2],[1,-2],[0,-2],[1,-1],[0,-2],[1,-2],[0,-2],[1,-1],[0,-2],[1,-1],[1,-2],[0,-1],[1,-2],[1,-1],[1,-1],[1,-2],[1,-2],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[2,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[5,-1],[3,-1],[3,0],[3,-1],[2,0],[3,-1],[3,0],[3,0],[3,0],[3,0],[2,-1],[3,0],[3,1],[3,0],[3,0],[3,0],[3,0],[2,1],[3,0],[3,0],[3,1],[3,0],[3,1],[3,0],[3,1],[2,0],[3,1],[3,0],[3,1],[3,0],[3,1],[3,1],[2,0],[3,1],[3,1],[3,0],[3,1],[3,1],[3,0],[2,1],[3,1],[3,0],[3,1],[3,1],[2,0],[3,1],[3,0],[3,1],[3,0],[9,2],[4,1],[4,1],[5,1],[4,1],[5,1],[4,0],[5,1],[4,1],[5,1],[4,1],[4,1],[5,1],[4,1],[5,1],[4,1],[5,2],[4,1],[5,1],[4,1],[4,1],[5,1],[4,1],[5,1],[4,1],[5,1],[4,1],[4,2],[5,1],[4,1],[5,1],[4,1],[5,1],[4,1],[4,1],[5,1],[4,2],[5,1],[4,1],[5,1],[4,1],[4,1],[5,1],[4,1],[5,1],[4,1],[5,2],[4,1],[5,1],[8,2],[4,1],[4,1],[4,1],[4,1],[4,1],[4,1],[4,1],[4,1],[4,1],[4,1],[4,1],[4,2],[4,1],[4,1],[4,1],[4,2],[4,1],[4,1],[4,1],[4,2],[4,1],[4,1],[4,2],[4,1],[4,1],[4,2],[4,1],[4,1],[4,2],[4,1],[4,2],[4,1],[4,1],[4,2],[4,1],[4,2],[4,1],[4,2],[4,1],[4,2],[4,1],[4,2],[4,1],[4,2],[4,1],[4,2],[4,1],[4,2],[3,1],[2,0],[1,1],[2,1],[2,0],[1,1],[2,0],[1,1],[2,0],[2,1],[1,0],[2,1],[1,1],[2,0],[2,1],[1,0],[2,1],[1,0],[2,1],[2,1],[1,0],[2,1],[1,0],[2,1],[1,1],[2,0],[2,1],[1,1],[2,1],[1,0],[2,1],[1,1],[2,1],[1,1],[2,0],[1,1],[2,1],[1,1],[2,1],[1,1],[2,1],[1,1],[2,1],[1,1],[1,2],[2,1],[1,1],[2,1],[1,2],[3,2],[1,1],[1,2],[1,1],[1,1],[2,2],[1,1],[1,2],[1,1],[1,2],[1,1],[2,1],[1,2],[1,1],[1,2],[1,1],[1,2],[1,2],[2,1],[1,2],[1,1],[1,2],[1,1],[1,2],[1,1],[1,2],[2,1],[1,2],[1,1],[1,2],[1,1],[1,1],[2,2],[1,1],[1,2],[1,1],[1,1],[2,2],[1,1],[1,1],[1,2],[2,1],[1,1],[1,1],[2,1],[1,1],[1,1],[2,2],[1,1],[5,3],[2,1],[3,2],[2,1],[3,1],[2,1],[3,2],[2,1],[3,1],[2,1],[3,1],[2,0],[3,1],[3,1],[2,1],[3,1],[2,0],[3,1],[2,0],[3,1],[3,1],[2,0],[3,1],[2,0],[3,1],[3,0],[2,0],[3,1],[2,0],[3,1],[3,0],[2,1],[3,0],[2,1],[3,0],[3,0],[2,1],[3,1],[3,0],[2,1],[3,0],[2,1],[3,0],[2,1],[3,1],[3,1],[2,0],[3,1],[2,1],[5,2],[2,1],[2,1],[3,1],[2,1],[2,1],[2,2],[3,1],[2,1],[2,1],[2,2],[2,1],[3,2],[2,1],[2,2],[2,1],[2,2],[2,1],[2,2],[2,2],[3,1],[2,2],[2,2],[2,1],[2,2],[2,2],[2,2],[2,1],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,1],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,1],[2,2],[2,2],[2,2],[2,2],[2,2],[2,1],[3,3],[1,1],[2,1],[1,1],[1,2],[2,1],[1,1],[1,1],[2,2],[1,1],[2,1],[1,2],[2,1],[1,1],[2,2],[1,1],[1,1],[2,2],[1,1],[2,1],[2,2],[1,1],[2,1],[1,2],[2,1],[1,1],[2,1],[1,2],[2,1],[1,1],[2,1],[1,2],[2,1],[1,1],[2,1],[1,1],[2,1],[1,1],[2,1],[1,1],[2,1],[1,1],[2,1],[1,1],[1,1],[2,0],[1,1],[2,1],[1,0],[4,2],[3,1],[2,1],[3,1],[2,0],[3,1],[3,1],[2,0],[3,1],[3,0],[3,1],[3,0],[3,0],[4,1],[3,0],[3,0],[3,0],[4,0],[3,0],[3,0],[4,0],[3,0],[3,0],[4,0],[3,0],[4,0],[3,-1],[3,0],[4,-1],[3,0],[3,-1],[3,0],[4,-1],[3,-1],[3,0],[3,-1],[3,-1],[3,-1],[3,-1],[3,-1],[2,-1],[3,-1],[2,-1],[3,-1],[2,-2],[3,-1],[2,-1],[2,-2],[2,-1],[3,-3],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[1,0],[2,0],[1,-1],[2,0],[1,0],[2,-1],[3,0],[1,-1],[2,0],[1,0],[2,-1],[2,0],[1,0],[2,-1],[1,0],[1,-1],[2,0],[1,0],[2,-1],[1,0],[2,-1],[1,0],[2,0],[1,-1],[2,0],[1,-1],[2,0],[1,-1],[2,0],[1,-1],[2,0],[1,-1],[1,0],[2,-1],[1,0],[2,-1],[1,0],[2,-1],[1,0],[2,-1],[1,-1],[2,0],[1,-1],[2,0],[1,-1],[1,0],[2,-1],[1,0],[2,-1],[1,-1],[2,0],[1,-1],[2,0],[1,-1],[2,0],[5,-2],[2,-1],[3,-1],[3,0],[2,-1],[3,-1],[2,0],[3,-1],[3,0],[2,-1],[3,0],[3,0],[2,-1],[3,0],[3,0],[2,0],[3,0],[3,-1],[2,0],[3,0],[3,0],[2,0],[3,0],[3,-1],[2,0],[3,0],[3,0],[2,0],[3,0],[3,-1],[3,0],[2,0],[3,-1],[3,0],[2,0],[3,-1],[3,0],[2,-1],[3,0],[3,-1],[2,-1],[3,0],[3,-1],[2,-1],[3,-1],[3,-1],[2,-1],[3,-1],[2,-2],[13,-5],[6,-3],[6,-3],[6,-2],[7,-3],[6,-2],[6,-2],[7,-3],[6,-2],[7,-2],[6,-2],[7,-1],[6,-2],[7,-2],[6,-1],[7,-2],[7,-1],[6,-1],[7,-2],[7,-1],[6,-1],[7,-1],[7,-1],[7,0],[6,-1],[7,-1],[7,-1],[7,0],[7,-1],[6,0],[7,-1],[7,0],[7,0],[6,0],[7,-1],[7,0],[7,0],[6,0],[7,0],[7,0],[6,0],[7,1],[7,0],[6,0],[7,0],[6,1],[7,0],[6,0],[7,1],[9,0],[4,1],[5,0],[5,1],[5,0],[5,1],[5,1],[4,1],[6,1],[5,0],[5,2],[5,1],[5,1],[5,1],[5,2],[5,1],[5,2],[5,2],[5,2],[5,2],[5,2],[4,3],[5,2],[5,3],[4,3],[4,3],[5,3],[4,3],[4,4],[4,3],[4,4],[3,4],[4,5],[3,4],[3,5],[3,5],[3,5],[2,5],[3,6],[2,5],[2,6],[1,7],[2,6],[1,7],[1,7],[1,7],[0,8],[0,7],[0,8],[0,6],[0,3],[0,3],[-1,2],[0,3],[0,3],[0,3],[-1,3],[0,2],[-1,3],[0,3],[0,3],[-1,2],[0,3],[-1,3],[0,3],[-1,2],[-1,3],[0,3],[-1,3],[0,2],[-1,3],[-1,3],[-1,2],[0,3],[-1,3],[-1,2],[0,3],[-1,3],[-1,2],[-1,3],[-1,2],[-1,3],[0,3],[-1,2],[-1,3],[-1,2],[-1,3],[-1,2],[-1,3],[-1,3],[-1,2],[0,3],[-1,2],[-1,2],[-1,3],[-1,2],[-1,3],[-1,2],[-3,7],[-1,4],[-1,3],[-1,4],[-1,3],[-2,4],[-1,3],[-1,4],[-1,3],[-1,4],[-1,4],[-1,3],[-1,4],[-1,4],[-1,3],[0,4],[-1,4],[-1,4],[-1,3],[-1,4],[-1,4],[-1,4],[-1,4],[0,3],[-1,4],[-1,4],[-1,4],[-1,4],[-1,3],[-1,4],[-1,4],[-1,4],[-1,4],[-1,3],[-1,4],[-1,4],[-1,4],[-1,3],[-1,4],[-1,4],[-1,3],[-1,4],[-2,4],[-1,3],[-1,4],[-2,3],[-1,4],[-1,4],[-2,3],[-6,14],[-3,6],[-3,7],[-3,6],[-3,6],[-3,7],[-3,6],[-3,6],[-4,6],[-3,5],[-3,6],[-3,6],[-4,5],[-3,6],[-3,5],[-3,6],[-4,5],[-3,5],[-4,5],[-3,6],[-4,5],[-3,5],[-3,5],[-4,5],[-4,5],[-3,5],[-4,5],[-3,4],[-4,5],[-4,5],[-3,5],[-4,5],[-4,5],[-3,4],[-4,5],[-4,5],[-4,5],[-3,5],[-4,5],[-4,5],[-4,5],[-4,5],[-4,5],[-4,5],[-4,5],[-3,5],[-4,5],[-4,5],[-4,5],[-13,17],[-6,9],[-6,9],[-6,9],[-6,9],[-6,10],[-6,9],[-6,10],[-7,10],[-6,10],[-6,10],[-6,10],[-6,10],[-6,10],[-7,10],[-6,11],[-6,10],[-7,10],[-6,10],[-6,10],[-7,10],[-6,10],[-7,10],[-7,10],[-6,10],[-7,10],[-7,9],[-7,9],[-7,9],[-7,9],[-7,9],[-7,9],[-8,8],[-7,8],[-8,8],[-7,7],[-8,7],[-8,7],[-8,7],[-8,6],[-8,6],[-8,6],[-8,5],[-9,5],[-8,4],[-9,4],[-9,4],[-9,3],[-9,2],[1,-4],[0,-2],[0,-2],[1,-2],[0,-2],[0,-3],[0,-2],[0,-3],[0,-3],[0,-2],[1,-3],[0,-3],[0,-2],[-1,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[-1,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[-1,-2],[0,-3],[0,-3],[0,-3],[-1,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[-1,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-2],[0,-1],[0,-2],[-1,-2],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[1,-2],[0,-1],[1,-2],[2,-5],[1,-2],[1,-2],[1,-3],[1,-2],[2,-2],[1,-2],[2,-1],[1,-2],[2,-2],[2,-1],[2,-2],[1,-1],[2,-1],[2,-2],[2,-1],[2,-1],[2,-1],[2,-1],[2,-1],[2,-1],[3,-1],[2,-1],[2,-1],[2,-1],[2,-1],[2,-1],[3,0],[2,-1],[2,-1],[2,-1],[3,-1],[2,-1],[2,0],[2,-1],[2,-1],[2,-1],[2,-1],[2,-1],[2,-1],[2,-1],[2,-1],[2,-1],[2,-1],[2,-2],[2,-1],[1,-1],[2,-2],[2,-1],[1,-2],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[2,-2],[1,-1],[1,-2],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-2],[1,-1],[1,-1],[0,-1],[1,-1],[1,-2],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-2],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[0,-2],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-8],[-2,-3],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[0,2],[-1,1],[-1,2],[-1,2],[0,1],[-1,2],[0,2],[-1,1],[0,2],[-1,2],[0,1],[-1,1],[0,2],[0,1],[-5,3],[-3,1],[-3,2],[-2,1],[-3,2],[-2,2],[-3,2],[-2,1],[-2,2],[-3,2],[-2,2],[-3,2],[-2,2],[-2,2],[-3,3],[-2,2],[-2,2],[-3,2],[-2,2],[-2,3],[-3,2],[-2,2],[-2,2],[-3,3],[-2,2],[-2,2],[-2,2],[-3,3],[-2,2],[-2,2],[-3,2],[-2,2],[-2,2],[-3,2],[-2,2],[-2,2],[-3,2],[-2,2],[-3,2],[-2,2],[-3,2],[-2,1],[-3,2],[-2,2],[-3,1],[-2,1],[-3,2],[-3,1],[-2,1],[-4,2],[-2,0],[-2,1],[-2,0],[-1,0],[-2,1],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-2],[0,-1],[0,-2],[-1,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[-1,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-2],[-1,-3],[0,-2],[0,-2],[-1,-3],[0,-5],[-1,-2],[0,-2],[0,-3],[-1,-2],[0,-3],[-1,-2],[0,-3],[0,-2],[-1,-3],[0,-2],[-1,-3],[0,-2],[-1,-3],[0,-2],[-1,-3],[0,-2],[-1,-2],[0,-3],[-1,-2],[-1,-3],[0,-2],[-1,-3],[-1,-2],[0,-2],[-1,-3],[-1,-2],[0,-3],[-1,-2],[-1,-2],[-1,-3],[0,-2],[-1,-2],[-1,-2],[-1,-3],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-3],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-2,-1],[-1,-2],[-2,-3],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-2,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-3,1],[-1,0],[-1,1],[-2,0],[-1,1],[-2,0],[-1,1],[-2,0],[-2,1],[-1,0],[-2,1],[-2,1],[-2,0],[-1,1],[-2,1],[-2,0],[-2,1],[-2,0],[-2,1],[-2,0],[-2,1],[-2,0],[-2,1],[-1,0],[-2,0],[-2,0],[-2,1],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,-1],[-1,0],[-2,0],[-1,-1],[-2,0],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-2],[0,-1],[1,-2],[0,-2],[0,-1],[1,-2],[0,-1],[0,-2],[1,-2],[0,-1],[1,-2],[0,-2],[1,-1],[0,-2],[1,-2],[0,-2],[1,-1],[0,-2],[1,-2],[0,-1],[1,-2],[1,-2],[0,-1],[1,-2],[0,-1],[1,-2],[0,-1],[1,-2],[0,-1],[1,-2],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[3,-9],[1,-5],[2,-5],[1,-4],[2,-5],[2,-5],[1,-5],[2,-4],[2,-5],[1,-5],[2,-5],[2,-4],[1,-5],[2,-5],[2,-5],[2,-4],[1,-5],[2,-5],[2,-5],[1,-5],[2,-5],[2,-4],[1,-5],[2,-5],[2,-5],[1,-5],[2,-5],[1,-5],[2,-5],[1,-4],[2,-5],[1,-5],[2,-5],[1,-5],[1,-5],[1,-5],[2,-5],[1,-5],[1,-5],[1,-5],[1,-5],[1,-5],[1,-5],[1,-6],[0,-5],[1,-5],[1,-5],[0,-5],[1,-5],[8,0],[5,0],[4,0],[4,0],[4,0],[5,0],[4,0],[4,0],[4,0],[5,0],[4,1],[4,0],[5,0],[4,0],[4,1],[4,0],[5,0],[4,1],[4,0],[5,0],[4,1],[4,0],[5,1],[4,0],[4,0],[4,1],[5,0],[4,1],[4,0],[5,1],[4,0],[4,1],[5,0],[4,0],[4,1],[5,0],[4,1],[4,0],[5,1],[4,0],[4,0],[5,1],[4,0],[4,0],[5,1],[4,0],[4,0],[5,1],[4,0],[0,-1],[0,-1],[-3,-13],[-2,-6],[-2,-6],[-3,-6],[-3,-6],[-3,-5],[-4,-6],[-4,-5],[-4,-5],[-5,-5],[-5,-5],[-5,-4],[-5,-4],[-6,-5],[-5,-4],[-6,-4],[-6,-3],[-6,-4],[-7,-3],[-6,-4],[-7,-3],[-6,-3],[-7,-3],[-7,-3],[-7,-2],[-7,-3],[-7,-2],[-7,-2],[-7,-2],[-7,-2],[-7,-2],[-6,-1],[-7,-2],[-7,-1],[-7,-1],[-6,-2],[-7,-1],[-6,0],[-6,-1],[-6,-1],[-6,0],[-6,-1],[-6,0],[-5,0],[-5,0],[-5,0],[-4,0],[-5,1],[-4,0],[-1,13],[-1,7],[-1,6],[0,7],[-1,6],[-1,7],[0,6],[-1,6],[-1,7],[0,6],[-1,7],[-1,6],[0,7],[-1,6],[-1,7],[0,6],[-1,7],[-1,6],[0,7],[-1,6],[0,7],[-1,6],[-1,7],[0,6],[-1,7],[-1,6],[0,7],[-1,6],[0,7],[-1,6],[-1,6],[0,7],[-1,6],[0,7],[-1,6],[-1,7],[0,6],[-1,7],[0,6],[-1,7],[-1,6],[0,7],[-1,6],[0,7],[-1,7],[-1,6],[0,7],[-1,6],[-1,7],[0,5],[0,2],[-1,3],[0,2],[0,3],[0,2],[-1,3],[0,3],[0,2],[0,3],[-1,2],[0,3],[0,3],[-1,2],[0,3],[0,3],[-1,2],[0,3],[0,3],[-1,2],[0,3],[0,3],[-1,2],[0,3],[-1,2],[0,3],[-1,3],[0,2],[-1,3],[0,2],[-1,3],[0,3],[-1,2],[0,3],[-1,2],[-1,3],[0,2],[-1,3],[-1,2],[-1,2],[0,3],[-1,2],[-1,3],[-1,2],[-1,2],[-1,2],[-1,3],[-1,2],[-1,2],[-1,2],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,3],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,2],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-2,1],[-1,1],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[-6,-3],[-3,-2],[-4,-1],[-3,-2],[-3,-1],[-3,-2],[-4,-1],[-3,-2],[-3,-1],[-3,-2],[-4,-1],[-3,-2],[-3,-1],[-3,-1],[-4,-2],[-3,-1],[-3,-2],[-3,-1],[-4,-1],[-3,-2],[-3,-1],[-3,-2],[-4,-1],[-3,-2],[-3,-1],[-3,-2],[-4,-1],[-3,-2],[-3,-1],[-3,-2],[-4,-1],[-3,-2],[-3,-2],[-3,-1],[-3,-2],[-3,-2],[-4,-2],[-3,-2],[-3,-1],[-3,-2],[-3,-2],[-3,-2],[-3,-3],[-3,-2],[-3,-2],[-3,-2],[-3,-3],[-3,-2],[-3,-2],[-3,-3],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-2],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-2],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-2],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-2],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-7,-7],[-3,-4],[-4,-3],[-3,-4],[-3,-3],[-4,-4],[-3,-4],[-3,-3],[-4,-4],[-3,-4],[-4,-3],[-3,-4],[-4,-3],[-3,-4],[-4,-4],[-3,-3],[-4,-4],[-3,-3],[-4,-4],[-3,-3],[-4,-4],[-4,-3],[-3,-4],[-4,-3],[-3,-4],[-4,-3],[-4,-3],[-4,-3],[-3,-3],[-4,-4],[-4,-3],[-3,-3],[-4,-3],[-4,-2],[-4,-3],[-4,-3],[-4,-3],[-3,-2],[-4,-3],[-4,-2],[-4,-3],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-1],[-4,-2],[-1,0],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-2],[-2,-1],[-2,-1],[-2,-1],[-1,-2],[-2,-1],[-2,-1],[-1,-1],[-2,-2],[-2,-1],[-1,-1],[-2,-2],[-2,-1],[-1,-1],[-2,-2],[-2,-1],[-1,-1],[-2,-2],[-2,-1],[-1,-1],[-2,-2],[-2,-1],[-1,-1],[-2,-2],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-2],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-2,-2],[-2,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-2,0],[-1,-1],[-2,-1],[-1,0],[-2,-1],[-1,-1],[-2,0],[-1,-1],[-2,-1],[-1,-1],[-2,0],[-1,-1],[-2,-1],[-1,-1],[-2,0],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-2,0],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[-5,-10],[-2,-5],[-2,-4],[-1,-4],[-1,-4],[-1,-4],[-1,-4],[0,-3],[0,-3],[0,-3],[0,-3],[1,-3],[0,-2],[1,-3],[2,-2],[1,-2],[2,-2],[1,-2],[2,-1],[2,-2],[2,-1],[3,-2],[2,-1],[3,-1],[2,-1],[3,-1],[3,-1],[3,0],[3,-1],[3,-1],[3,0],[3,-1],[3,0],[4,-1],[3,0],[3,-1],[3,0],[4,-1],[3,0],[3,0],[3,-1],[3,0],[3,-1],[3,0],[3,-1],[3,-1],[3,0],[3,-1],[2,-1],[4,-1],[2,-1],[2,-1],[2,-1],[2,-1],[2,-1],[2,-1],[2,-2],[3,-1],[2,-1],[2,-2],[2,-1],[2,-2],[2,-1],[2,-2],[2,-2],[2,-1],[2,-2],[2,-2],[2,-1],[2,-2],[3,-2],[2,-2],[2,-2],[2,-1],[2,-2],[2,-2],[2,-2],[3,-1],[2,-2],[2,-2],[2,-1],[2,-2],[2,-2],[3,-1],[2,-2],[2,-2],[2,-1],[3,-1],[2,-2],[2,-1],[2,-2],[3,-1],[2,-1],[2,-1],[2,-1],[3,-1],[2,-1],[2,-1],[11,-3],[6,-2],[6,-2],[5,-1],[6,-1],[6,-2],[5,-1],[6,-1],[6,-1],[5,-2],[6,-1],[6,-1],[6,0],[6,-1],[6,-1],[5,-1],[6,0],[6,-1],[6,-1],[6,0],[6,0],[6,-1],[6,0],[6,0],[6,-1],[6,0],[6,0],[6,0],[6,0],[6,0],[6,0],[6,0],[6,0],[6,0],[6,1],[6,0],[6,0],[6,1],[6,0],[6,0],[6,1],[6,0],[6,1],[6,1],[6,0],[6,1],[5,0],[6,1],[6,1],[6,1],[3,0],[3,1],[4,1],[4,1],[5,1],[4,1],[5,1],[5,1],[6,1],[5,2],[6,1],[6,1],[6,2],[6,1],[6,2],[6,1],[7,1],[6,2],[7,1],[6,1],[7,1],[7,1],[6,2],[7,1],[6,0],[6,1],[7,1],[6,1],[6,0],[6,0],[6,1],[5,0],[5,-1],[6,0],[5,0],[4,-1],[5,-1],[4,-1],[4,-1],[3,-1],[3,-2],[3,-2],[3,-2],[2,-2],[1,-3],[2,-3],[1,-3],[0,-3],[0,-10],[-1,-5],[-1,-5],[-1,-5],[-2,-5],[-2,-5],[-3,-5],[-2,-5],[-3,-5],[-3,-4],[-4,-5],[-3,-5],[-4,-5],[-4,-5],[-4,-5],[-5,-5],[-4,-4],[-5,-5],[-5,-5],[-5,-4],[-5,-5],[-5,-4],[-5,-5],[-5,-4],[-6,-5],[-5,-4],[-6,-4],[-5,-4],[-6,-4],[-5,-4],[-5,-4],[-6,-4],[-5,-3],[-5,-4],[-6,-3],[-5,-4],[-5,-3],[-5,-3],[-4,-3],[-5,-3],[-5,-3],[-4,-2],[-4,-3],[-4,-2],[-4,-2],[-3,-3],[-3,-1],[-3,-2],[-3,-2],[-11,-6],[-5,-2],[-5,-2],[-5,-2],[-5,-1],[-5,-2],[-5,-1],[-5,0],[-4,-1],[-5,0],[-4,0],[-4,1],[-5,0],[-4,1],[-4,1],[-4,1],[-4,2],[-4,1],[-4,2],[-4,2],[-4,2],[-4,2],[-4,3],[-4,3],[-4,2],[-4,3],[-4,3],[-3,3],[-4,3],[-4,4],[-4,3],[-4,4],[-4,3],[-4,4],[-4,3],[-4,4],[-4,4],[-4,4],[-5,3],[-4,4],[-4,4],[-5,4],[-4,4],[-5,3],[-4,4],[-5,4],[-5,4],[-5,3],[-5,4],[-8,6],[-4,2],[-5,3],[-4,2],[-4,3],[-5,2],[-4,2],[-4,3],[-5,2],[-4,2],[-5,2],[-4,2],[-5,2],[-4,2],[-5,1],[-4,2],[-5,2],[-4,1],[-5,2],[-4,1],[-5,2],[-5,1],[-4,2],[-5,1],[-5,2],[-4,1],[-5,1],[-5,1],[-4,2],[-5,1],[-5,1],[-5,1],[-4,1],[-5,1],[-5,1],[-4,1],[-5,2],[-5,1],[-4,1],[-5,1],[-5,1],[-4,1],[-5,1],[-5,1],[-4,1],[-5,1],[-5,1],[-4,2],[-5,1],[-7,2],[-4,1],[-3,2],[-4,2],[-4,2],[-4,2],[-4,2],[-4,2],[-5,3],[-4,2],[-4,3],[-5,3],[-4,2],[-5,3],[-4,3],[-5,3],[-4,3],[-5,3],[-5,3],[-4,3],[-5,3],[-5,3],[-5,3],[-4,3],[-5,3],[-5,2],[-5,3],[-4,2],[-5,3],[-5,2],[-4,2],[-5,2],[-5,2],[-4,2],[-5,2],[-4,1],[-5,1],[-4,1],[-5,1],[-4,0],[-4,1],[-4,0],[-5,-1],[-4,0],[-4,-1],[-3,-1],[-4,-1],[-4,-2],[-4,-2],[-4,-3],[-2,-2],[-2,-3],[-2,-3],[-3,-3],[-2,-3],[-2,-4],[-3,-4],[-2,-4],[-2,-5],[-3,-5],[-2,-5],[-3,-5],[-2,-5],[-3,-6],[-2,-5],[-3,-6],[-2,-6],[-3,-6],[-2,-7],[-3,-6],[-2,-6],[-2,-7],[-3,-6],[-2,-7],[-3,-6],[-2,-7],[-2,-6],[-2,-7],[-3,-7],[-2,-6],[-2,-6],[-2,-7],[-2,-6],[-2,-6],[-1,-6],[-2,-6],[-2,-6],[-1,-5],[-2,-6],[-1,-5],[-2,-5],[-1,-5],[-1,-5],[-1,-4],[-1,-4],[-1,-4],[-1,-4],[0,-3],[-1,-5],[-1,-3],[0,-2],[-1,-3],[0,-3],[0,-2],[0,-3],[-1,-2],[0,-3],[0,-2],[0,-2],[0,-3],[-1,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[1,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-3],[0,-3],[-1,-5],[0,-2],[0,-3],[-1,-2],[0,-3],[0,-2],[-1,-2],[0,-3],[-1,-2],[0,-3],[-1,-2],[-1,-2],[0,-3],[-1,-2],[0,-2],[-1,-3],[-1,-2],[-1,-2],[0,-3],[-1,-2],[-1,-2],[0,-3],[-1,-2],[-1,-2],[-1,-3],[-1,-2],[0,-2],[-1,-3],[-1,-2],[-1,-2],[0,-3],[-1,-2],[-1,-2],[-1,-3],[0,-2],[-1,-2],[-1,-3],[0,-2],[-1,-2],[0,-3],[-1,-2],[-1,-2],[0,-3],[-1,-2],[0,-3],[-1,-2],[0,-3],[0,-2],[-1,-3],[0,-4],[0,-3],[-1,-2],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-2],[-1,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-3],[-1,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-2],[-1,-3],[0,-2],[0,-3],[0,-2],[-1,-2],[0,-3],[0,-2],[-1,-2],[0,-3],[-1,-2],[0,-2],[-1,-2],[0,-3],[-1,-2],[0,-2],[-1,-2],[-1,-3],[-1,-2],[0,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-4,3],[-1,2],[-1,2],[-2,2],[-1,2],[0,3],[-1,2],[-1,3],[-1,3],[0,3],[0,3],[-1,3],[0,3],[0,3],[0,4],[0,3],[0,4],[1,3],[0,4],[0,3],[1,4],[0,4],[1,4],[0,3],[1,4],[1,4],[0,4],[1,3],[1,4],[1,4],[1,4],[0,3],[1,4],[1,4],[1,3],[1,4],[1,3],[0,4],[1,3],[1,3],[1,3],[1,3],[0,3],[1,3],[1,3],[0,2],[1,3],[0,2],[1,2],[0,3],[0,2],[1,1],[0,2],[0,2],[0,2],[0,2],[1,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[1,2],[0,2],[0,3],[0,2],[0,2],[0,2],[0,3],[1,2],[0,2],[0,3],[0,2],[0,2],[1,2],[0,2],[0,3],[0,2],[1,2],[0,2],[0,2],[0,2],[1,2],[0,2],[1,2],[0,2],[1,2],[0,1],[1,2],[0,1],[1,2],[0,1],[1,2],[1,1],[1,1],[0,1],[1,1],[1,7],[0,3],[1,3],[0,3],[0,3],[1,4],[0,3],[0,3],[1,3],[0,3],[0,4],[1,3],[0,3],[0,3],[1,3],[0,3],[0,4],[1,3],[0,3],[1,3],[0,3],[0,3],[1,4],[0,3],[1,3],[0,3],[0,3],[1,3],[0,3],[1,3],[0,3],[1,3],[0,4],[1,3],[0,3],[1,3],[0,3],[1,3],[0,3],[1,3],[0,3],[1,3],[1,3],[0,3],[1,3],[0,3],[1,3],[1,3],[0,3],[2,8],[1,4],[1,4],[1,4],[0,5],[1,4],[1,4],[0,4],[1,5],[0,4],[1,4],[0,5],[1,4],[0,5],[0,4],[1,4],[0,5],[0,4],[0,5],[0,4],[0,5],[0,4],[0,4],[0,5],[0,4],[-1,5],[0,4],[-1,4],[0,5],[0,4],[-1,4],[-1,5],[0,4],[-1,4],[-1,4],[-1,5],[-1,4],[-1,4],[-1,4],[-1,4],[-1,4],[-2,4],[-1,4],[-2,4],[-1,4],[-2,4],[-1,3],[-2,4],[-2,4],[-1,2],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,5],[0,2],[1,3],[0,2],[0,3],[1,2],[0,3],[1,2],[0,3],[0,2],[1,3],[0,2],[1,3],[0,2],[0,3],[0,3],[1,2],[0,3],[0,2],[0,3],[1,3],[0,2],[0,3],[0,2],[0,3],[0,3],[0,2],[0,3],[0,2],[0,3],[0,2],[0,3],[0,2],[-1,3],[0,2],[0,3],[0,2],[-1,3],[0,2],[-1,3],[0,2],[-1,2],[0,3],[-1,2],[-1,2],[0,2],[-1,3],[-1,2],[-1,2],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-3],[1,-2],[1,-2],[0,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,0],[1,-1],[1,-1],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[2,-1],[1,0],[1,-1],[1,-1],[1,0],[2,-1],[1,-1],[1,-1],[1,0],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-2],[1,-1],[1,-2],[1,-2],[1,-2],[0,-1],[1,-2],[1,-3],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[2,1],[2,0],[1,1],[2,1],[2,1],[2,1],[3,1],[2,1],[2,2],[3,1],[2,2],[2,2],[3,2],[2,1],[3,2],[2,2],[3,2],[3,2],[2,2],[3,2],[2,2],[3,2],[2,2],[3,2],[2,2],[3,2],[2,2],[2,2],[3,2],[2,1],[2,2],[2,2],[2,1],[2,1],[1,2],[2,1],[1,1],[2,1],[1,0],[1,1],[1,0],[1,1],[3,0],[2,1],[1,0],[2,0],[1,1],[2,0],[1,0],[2,1],[1,0],[1,0],[2,0],[1,1],[1,0],[2,0],[1,0],[1,1],[2,0],[1,0],[1,1],[1,0],[2,0],[1,1],[1,0],[1,0],[1,1],[2,0],[1,1],[1,0],[1,1],[1,0],[1,1],[2,0],[1,1],[1,1],[1,0],[1,1],[1,1],[2,1],[1,1],[1,0],[1,1],[2,1],[1,2],[1,1],[1,1],[2,1],[1,1],[1,2],[2,1],[3,3],[1,2],[1,1],[2,1],[1,2],[1,1],[2,2],[1,1],[2,2],[1,1],[2,2],[1,1],[1,1],[2,2],[1,1],[2,2],[1,1],[2,1],[1,2],[1,1],[2,1],[1,2],[2,1],[1,1],[2,2],[1,1],[2,1],[1,2],[2,1],[1,1],[1,1],[2,2],[1,1],[2,1],[1,1],[2,2],[1,1],[2,1],[2,1],[1,1],[2,1],[1,2],[2,1],[1,1],[2,1],[1,1],[2,1],[1,1],[2,1],[4,3],[1,1],[2,1],[2,1],[2,1],[2,1],[2,1],[1,1],[2,1],[2,1],[2,1],[2,1],[2,1],[2,1],[2,1],[1,0],[2,1],[2,1],[2,1],[2,1],[2,1],[2,1],[2,0],[2,1],[2,1],[1,1],[2,1],[2,1],[2,1],[2,0],[2,1],[2,1],[2,1],[2,1],[1,1],[2,1],[2,1],[2,1],[2,1],[2,1],[2,1],[1,1],[2,1],[2,1],[2,1],[2,1],[2,1],[1,1],[2,2],[2,1],[2,1],[1,1],[1,1],[1,0],[1,1],[2,1],[1,1],[1,0],[1,1],[2,1],[1,1],[1,1],[1,0],[1,1],[2,1],[1,1],[1,0],[1,1],[1,1],[2,1],[1,0],[1,1],[1,1],[1,1],[2,0],[1,1],[1,1],[1,1],[2,1],[1,0],[1,1],[1,1],[1,1],[2,0],[1,1],[1,1],[1,1],[1,0],[2,1],[1,1],[1,1],[1,1],[1,0],[2,1],[1,1],[1,1],[1,0],[1,1],[4,3],[2,1],[2,1],[1,1],[2,1],[2,0],[2,1],[1,1],[2,1],[2,1],[2,1],[2,0],[1,1],[2,1],[2,0],[2,1],[2,1],[1,0],[2,1],[2,1],[2,0],[2,1],[1,0],[2,1],[2,0],[2,1],[2,0],[1,1],[2,0],[2,1],[2,0],[2,1],[1,1],[2,0],[2,1],[2,0],[2,1],[1,0],[2,1],[2,0],[2,1],[2,1],[2,0],[1,1],[2,1],[2,0],[2,1],[2,1],[1,1],[5,1],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[3,1],[2,2],[2,1],[2,1],[2,1],[3,1],[2,1],[5,2],[2,1],[2,2],[2,1],[3,1],[2,2],[2,1],[2,1],[3,2],[2,1],[2,2],[2,1],[2,2],[3,1],[2,2],[2,2],[2,1],[2,2],[3,1],[2,2],[2,2],[2,1],[2,2],[2,2],[3,1],[2,2],[2,1],[2,2],[2,2],[3,1],[2,2],[2,1],[2,2],[2,1],[3,2],[2,1],[2,2],[2,1],[3,1],[2,2],[2,1],[3,1],[2,2],[2,1],[3,1],[2,1],[2,1],[3,1],[2,1],[4,1],[1,1],[2,1],[2,0],[1,1],[2,0],[2,1],[1,1],[2,0],[2,1],[2,1],[1,0],[2,1],[2,1],[1,1],[2,0],[2,1],[1,1],[2,0],[2,1],[1,1],[2,0],[2,1],[2,1],[1,1],[2,1],[2,0],[1,1],[2,1],[2,1],[1,1],[2,0],[1,1],[2,1],[2,1],[1,1],[2,1],[2,1],[1,1],[2,1],[2,1],[1,0],[2,1],[1,1],[2,2],[2,1],[1,1],[2,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1],[2,0],[1,1],[1,1],[1,1],[2,1],[1,1],[1,1],[2,2],[1,1],[1,1],[2,1],[1,1],[1,1],[2,1],[1,2],[2,1],[1,1],[1,1],[1,1],[2,1],[1,1],[1,2],[1,1],[1,1],[2,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[4,4],[1,2],[1,3],[2,2],[1,2],[1,2],[1,3],[0,2],[1,3],[0,3],[1,2],[0,3],[0,3],[0,3],[0,2],[0,3],[0,3],[-1,3],[0,3],[-1,3],[0,3],[-1,3],[0,3],[-1,3],[-1,3],[-1,3],[0,3],[-1,3],[-1,3],[-1,3],[-1,3],[-1,3],[-1,3],[-1,3],[0,3],[-1,3],[-1,3],[-1,3],[-1,3],[0,3],[-1,2],[-1,3],[0,3],[-1,2],[-1,3],[0,2],[0,3],[-1,2],[0,3],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[1,2],[0,1],[0,2],[0,1],[1,1],[0,1],[0,2],[1,1],[0,1],[0,1],[1,1],[1,1],[0,1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[2,-1],[1,-1],[2,-2],[1,-1],[0,-2],[1,-1],[1,-2],[0,-2],[1,-2],[1,-2],[0,-2],[1,-3],[0,-2],[0,-3],[1,-2],[0,-3],[0,-3],[1,-2],[0,-3],[0,-3],[0,-3],[1,-3],[0,-3],[0,-3],[0,-4],[0,-3],[0,-3],[0,-3],[0,-3],[1,-3],[0,-4],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-2],[1,-3],[0,-3],[0,-2],[0,-3],[0,-2],[1,-2],[0,-2],[0,-2],[0,-2],[1,-2],[0,-1],[1,-4],[0,-1],[1,-2],[0,-2],[0,-1],[1,-2],[0,-1],[0,-2],[1,-2],[0,-1],[0,-2],[1,-1],[0,-2],[0,-1],[0,-2],[1,-1],[0,-2],[0,-1],[0,-2],[1,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[1,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[1,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[1,-1],[0,-2],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-3],[1,-1],[1,-1],[2,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[2,-1],[1,-2],[1,-1],[1,-2],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-2],[1,-1],[1,-2],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-2],[1,-1],[1,-2],[1,-1],[2,-2],[1,-1],[1,-2],[1,-1],[1,-1],[1,-2],[2,-1],[1,-1],[1,-1],[1,-2],[2,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[2,-1],[3,-1],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[1,0],[2,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,1],[1,0],[1,0],[2,0],[1,-1],[1,0],[2,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[3,-1],[2,-1],[2,-1],[1,0],[2,-1],[1,0],[2,0],[1,-1],[2,0],[1,-1],[2,0],[1,0],[2,-1],[1,0],[2,0],[1,-1],[1,0],[2,0],[1,-1],[2,0],[1,0],[1,-1],[2,0],[1,0],[1,-1],[2,0],[1,0],[2,-1],[1,0],[1,0],[2,-1],[1,0],[1,-1],[2,0],[1,-1],[1,0],[2,-1],[1,-1],[2,0],[1,-1],[1,-1],[2,0],[1,-1],[2,-1],[1,-1],[2,-1],[1,-1],[2,-1],[1,-1],[3,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[2,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[2,0],[1,1],[2,0],[1,1],[4,2],[2,1],[2,1],[2,2],[1,1],[2,1],[2,2],[1,1],[2,2],[1,2],[2,1],[1,2],[1,2],[1,2],[2,1],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,3],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,3],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,1],[2,2],[1,2],[1,2],[1,2],[2,1],[1,2],[2,1],[0,6],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[1,3],[0,2],[0,3],[1,3],[0,3],[0,2],[1,3],[0,3],[1,2],[0,3],[1,3],[0,2],[1,3],[0,3],[1,2],[0,3],[1,2],[1,3],[0,3],[1,2],[0,3],[1,2],[0,3],[1,3],[0,2],[1,3],[0,2],[1,3],[0,3],[1,2],[0,3],[1,3],[0,2],[0,3],[0,3],[1,2],[0,3],[0,3],[0,3],[0,3],[0,2],[0,3],[0,3],[0,2],[0,2],[0,3],[-1,2],[0,3],[0,2],[0,3],[-1,3],[0,3],[0,3],[-1,3],[0,4],[-1,3],[0,4],[0,3],[-1,4],[0,4],[-1,3],[0,4],[0,4],[-1,4],[0,4],[-1,4],[0,4],[0,4],[0,4],[-1,4],[0,3],[0,4],[0,4],[0,4],[0,4],[0,3],[0,4],[0,4],[0,3],[0,3],[0,4],[0,3],[1,3],[0,3],[1,3],[0,3],[1,2],[1,3],[0,2],[1,2],[1,2],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-3,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-2,-1],[-2,0],[-1,0],[-2,-1],[-2,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-4,1],[-2,1],[-1,0],[-2,1],[-2,1],[-1,1],[-2,1],[-1,0],[-1,1],[-2,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-2,1],[-1,1],[-2,1],[-12,6],[-5,3],[-6,3],[-6,3],[-5,2],[-5,2],[-6,2],[-5,2],[-5,2],[-5,2],[-5,1],[-5,2],[-5,1],[-5,1],[-5,1],[-4,1],[-5,0],[-5,1],[-4,0],[-5,0],[-4,1],[-5,0],[-4,-1],[-5,0],[-4,0],[-5,-1],[-5,0],[-4,-1],[-5,-1],[-4,-1],[-5,-1],[-5,-1],[-4,-1],[-5,-2],[-5,-1],[-5,-1],[-5,-2],[-5,-2],[-5,-1],[-5,-2],[-5,-2],[-5,-2],[-6,-2],[-5,-3],[-6,-2],[-5,-2],[-6,-2],[-6,-3],[-6,-2],[-4,-2],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-3,0],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-2,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-5,2],[-2,1],[-2,1],[-2,2],[-2,1],[-2,1],[-3,1],[-2,2],[-2,1],[-2,1],[-2,2],[-2,1],[-2,2],[-3,1],[-2,2],[-2,1],[-2,2],[-2,1],[-2,2],[-2,2],[-2,2],[-2,1],[-2,2],[-2,2],[-2,2],[-2,2],[-2,1],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-1,2],[-2,3],[-2,2],[-2,2],[-1,2],[-2,2],[-2,3],[-1,2],[-2,2],[-1,3],[-2,2],[-1,2],[-2,3],[-1,2],[-3,5],[-1,2],[-1,2],[-2,3],[-1,2],[-1,2],[-1,3],[-1,2],[-2,2],[-1,3],[-1,2],[-1,2],[-1,3],[-2,2],[-1,3],[-1,2],[-1,3],[-1,2],[-1,2],[-2,3],[-1,2],[-1,3],[-1,2],[-1,3],[-1,2],[-1,3],[-1,2],[-2,3],[-1,2],[-1,2],[-1,3],[-1,2],[-1,3],[-1,2],[-2,3],[-1,2],[-1,3],[-1,2],[-1,3],[-1,2],[-1,2],[-2,3],[-1,2],[-1,3],[-1,2],[-1,3],[-2,2],[-1,2],[-1,3],[-2,3],[-1,2],[-1,2],[-1,1],[0,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[0,2],[-1,1],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[-1,2],[0,2],[-1,1],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[0,2],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[0,2],[-1,2],[-1,2],[-1,2],[-1,1],[0,2],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[494,-317],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-2],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-2,0],[-6,1],[-4,0],[-3,0],[-3,1],[-3,0],[-3,1],[-4,0],[-3,1],[-3,1],[-3,1],[-3,0],[-3,1],[-3,1],[-3,1],[-3,1],[-4,1],[-3,2],[-3,1],[-3,1],[-3,1],[-3,1],[-3,2],[-3,1],[-3,2],[-3,1],[-3,1],[-3,2],[-3,1],[-3,2],[-3,1],[-3,2],[-3,1],[-2,2],[-3,2],[-3,1],[-3,2],[-3,1],[-3,2],[-3,2],[-3,1],[-3,2],[-3,1],[-3,2],[-3,2],[-3,1],[-3,2],[-3,1],[-3,2],[-3,1],[-3,2],[-1,1],[-2,0],[-1,1],[-1,1],[-2,0],[-1,1],[-2,1],[-1,0],[-2,1],[-1,1],[-2,0],[-1,1],[-1,0],[-2,1],[-1,1],[-2,0],[-1,1],[-1,1],[-2,1],[-1,0],[-1,1],[-2,1],[-1,0],[-1,1],[-2,1],[-1,1],[-1,1],[-2,0],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,2],[-1,1],[-1,1],[-1,1],[-2,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-3,5],[-1,2],[-1,3],[-1,2],[-2,2],[-1,3],[-1,2],[-1,2],[-2,3],[-1,2],[-1,2],[-1,3],[-2,2],[-1,2],[-1,2],[-2,3],[-1,2],[-1,2],[-2,3],[-1,2],[-1,2],[-1,3],[-2,2],[-1,2],[-1,3],[-2,2],[-1,2],[-1,3],[-2,2],[-1,2],[-1,3],[-2,2],[-1,2],[-1,3],[-1,2],[-2,2],[-1,3],[-1,2],[-1,2],[-2,3],[-1,2],[-1,3],[-2,2],[-1,2],[-1,3],[-1,2],[-2,3],[-1,2],[-1,2],[-3,7],[-2,3],[-1,3],[-1,4],[-2,3],[-1,4],[-1,3],[-1,3],[-2,4],[-1,3],[-1,4],[-1,3],[-1,4],[-1,3],[-1,3],[-1,4],[-1,3],[-2,4],[-1,3],[-1,3],[-1,4],[-1,3],[-1,3],[-2,3],[-1,3],[-1,3],[-1,3],[-2,3],[-1,3],[-2,3],[-1,3],[-2,2],[-1,3],[-2,3],[-2,2],[-2,2],[-2,3],[-2,2],[-2,2],[-2,2],[-2,2],[-3,1],[-2,2],[-3,2],[-3,1],[-2,1],[-3,1],[-3,1],[-3,1],[-6,1],[-2,1],[-3,0],[-2,1],[-3,0],[-3,1],[-2,0],[-3,0],[-3,0],[-2,1],[-3,0],[-3,0],[-2,0],[-3,0],[-3,1],[-2,0],[-3,0],[-3,0],[-2,0],[-3,0],[-3,1],[-2,0],[-3,0],[-3,0],[-2,1],[-3,0],[-3,0],[-2,0],[-3,1],[-3,0],[-2,1],[-3,0],[-3,1],[-2,0],[-3,1],[-2,1],[-3,0],[-2,1],[-3,1],[-3,1],[-2,1],[-3,1],[-2,1],[-3,1],[-2,2],[-2,1],[-3,2],[-2,1],[-3,2],[-6,5],[-2,2],[-3,2],[-2,2],[-2,2],[-2,2],[-2,2],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[0,2],[-1,2],[0,1],[0,2],[0,1],[0,2],[0,2],[1,1],[0,2],[1,1],[1,2],[1,1],[1,2],[1,1],[1,2],[1,1],[1,2],[1,1],[2,2],[1,1],[2,2],[1,2],[2,1],[1,2],[2,2],[2,1],[1,2],[2,2],[2,1],[1,2],[2,2],[1,2],[2,2],[2,2],[1,2],[2,2],[1,2],[7,11],[2,5],[3,5],[2,6],[2,5],[2,4],[2,5],[1,5],[1,5],[1,4],[1,5],[0,4],[0,5],[0,4],[0,4],[0,5],[-1,4],[0,4],[-1,4],[-1,4],[-1,4],[-1,4],[-2,4],[-1,4],[-2,3],[-2,4],[-2,4],[-2,3],[-2,4],[-2,3],[-3,4],[-2,3],[-3,4],[-2,3],[-3,3],[-3,4],[-2,3],[-3,3],[-3,4],[-3,3],[-3,3],[-3,3],[-3,3],[-3,3],[-3,3],[-3,4],[-3,3],[-3,3],[-3,3],[-1,5],[0,2],[0,3],[-1,2],[0,2],[-1,3],[0,2],[-1,2],[-1,2],[0,2],[-1,2],[-1,2],[-1,2],[0,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,2],[-1,2],[0,2],[-1,1],[-1,2],[-1,2],[-1,2],[-1,2],[0,2],[-1,2],[-1,2],[-1,2],[0,2],[-1,3],[0,2],[-1,2],[0,2],[0,3],[-1,2],[0,3],[0,2],[0,3],[0,3],[0,2],[0,3],[0,3],[5,1],[2,1],[3,0],[2,0],[3,1],[2,0],[3,0],[2,1],[3,0],[2,0],[3,1],[2,0],[2,0],[3,0],[2,1],[3,0],[2,0],[2,1],[3,0],[2,0],[2,1],[3,0],[2,1],[2,0],[2,1],[3,0],[2,1],[2,1],[2,1],[2,1],[2,1],[2,1],[2,1],[2,1],[2,1],[2,2],[2,1],[2,2],[2,1],[2,2],[1,2],[2,2],[2,2],[1,3],[2,2],[1,2],[2,3],[1,3],[1,3],[1,3],[1,2],[0,3],[1,2],[0,2],[0,2],[1,3],[0,2],[0,3],[0,3],[0,2],[0,3],[0,3],[0,3],[0,2],[0,3],[0,3],[0,3],[-1,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,2],[0,3],[0,3],[1,3],[0,2],[0,3],[1,3],[0,2],[0,2],[1,3],[1,2],[0,2],[1,2],[1,2],[1,2],[1,2],[2,1],[1,2],[2,1],[1,1],[2,2],[2,0],[2,1],[3,1],[2,1],[1,0],[2,0],[2,1],[1,0],[2,0],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,1],[2,0],[1,1],[1,0],[2,1],[1,0],[2,1],[1,1],[2,1],[1,0],[2,1],[1,2],[2,1],[1,1],[2,2],[1,1],[2,2],[1,1],[2,3],[2,2],[1,1],[1,2],[1,1],[1,1],[1,2],[2,1],[1,2],[1,1],[1,1],[1,2],[1,1],[2,1],[1,2],[1,1],[1,1],[1,1],[1,2],[2,1],[1,1],[1,1],[1,1],[1,1],[1,2],[2,1],[1,1],[1,1],[1,1],[2,1],[1,1],[1,1],[2,1],[1,1],[1,1],[2,0],[1,1],[2,1],[1,1],[1,1],[2,0],[1,1],[2,1],[1,0],[2,1],[2,1],[1,0],[2,1],[2,0],[2,1],[1,0],[2,1],[1,0],[1,0],[2,0],[1,1],[1,0],[2,0],[1,0],[1,1],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[2,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[1,-1],[2,0],[1,-1],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[2,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[1,2],[0,1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-2],[1,-1],[0,-2],[1,-2],[0,-2],[0,-2],[1,-2],[0,-2],[1,-2],[0,-3],[0,-2],[1,-3],[0,-2],[0,-3],[1,-3],[0,-2],[0,-3],[1,-2],[0,-3],[0,-3],[1,-2],[0,-3],[0,-3],[0,-2],[1,-3],[0,-2],[0,-2],[0,-3],[1,-2],[0,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[1,-2],[0,-1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[5,1],[2,1],[3,1],[2,0],[3,1],[2,0],[3,1],[3,0],[2,0],[3,0],[3,1],[3,0],[3,-1],[3,0],[3,0],[3,0],[3,0],[3,-1],[3,0],[4,-1],[3,0],[3,-1],[3,-1],[4,-1],[3,0],[3,-1],[4,-1],[3,-1],[3,-1],[4,-2],[3,-1],[4,-1],[3,-1],[3,-2],[4,-1],[3,-1],[4,-2],[3,-1],[3,-2],[4,-1],[3,-2],[4,-2],[3,-2],[3,-1],[4,-2],[3,-2],[3,-2],[3,-2],[4,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,2],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0]],[[4605,7063],[17,5],[9,2],[8,3],[9,4],[8,3],[7,3],[8,4],[7,4],[8,4],[7,5],[7,4],[6,5],[7,5],[7,5],[6,5],[6,6],[6,5],[6,6],[6,6],[6,6],[5,6],[6,7],[5,7],[5,6],[6,7],[5,7],[5,8],[5,7],[5,8],[4,7],[5,8],[5,8],[5,8],[4,9],[5,8],[4,8],[5,9],[4,9],[5,9],[4,9],[5,9],[4,9],[5,10],[4,9],[5,10],[4,10],[5,10],[4,10],[5,10],[3,7],[2,4],[2,3],[1,3],[2,2],[2,3],[1,2],[2,3],[1,2],[1,2],[2,1],[1,2],[1,2],[2,1],[1,2],[1,1],[1,1],[1,1],[1,2],[1,1],[1,1],[1,1],[1,1],[1,1],[1,2],[1,1],[0,1],[1,1],[1,2],[0,1],[1,1],[0,2],[0,2],[1,2],[0,1],[0,3],[1,2],[0,2],[0,3],[0,2],[0,3],[0,3],[0,4],[-1,3],[0,4],[0,4],[-1,4],[0,5],[0,5],[-1,8],[-1,5],[-1,4],[-1,4],[0,5],[-1,4],[-1,4],[-1,4],[-1,5],[-1,4],[-1,4],[-1,4],[-1,5],[-1,4],[-1,4],[-2,4],[-1,4],[-1,5],[-1,4],[-1,4],[-2,4],[-1,5],[-1,4],[-1,4],[-1,4],[-2,4],[-1,5],[-1,4],[-1,4],[-1,4],[-1,4],[-1,5],[-1,4],[-1,4],[-1,5],[-1,4],[-1,4],[-1,4],[-1,5],[-1,4],[0,4],[-1,5],[0,4],[-1,4],[0,5],[-1,4],[0,4],[0,5],[0,4],[0,8],[0,4],[0,3],[1,4],[0,3],[1,3],[0,3],[1,3],[1,3],[0,3],[1,2],[1,3],[1,2],[1,3],[2,2],[1,2],[1,2],[1,2],[2,2],[1,2],[2,2],[1,2],[2,2],[1,2],[2,2],[1,1],[2,2],[2,2],[1,2],[2,1],[2,2],[1,2],[2,2],[2,2],[1,1],[2,2],[2,2],[2,2],[1,2],[2,2],[2,2],[1,3],[2,2],[2,2],[1,3],[2,2],[1,3],[2,2],[1,3],[2,3],[0,1],[1,2],[0,1],[1,2],[0,2],[1,1],[0,2],[1,1],[0,2],[1,2],[0,2],[0,2],[1,1],[0,2],[1,2],[0,2],[0,2],[0,2],[1,2],[0,2],[0,2],[0,1],[1,2],[0,2],[0,2],[0,2],[0,2],[1,2],[0,2],[0,2],[0,2],[0,2],[1,2],[0,2],[0,1],[0,2],[0,2],[0,2],[1,2],[0,1],[0,2],[0,2],[0,1],[0,2],[1,2],[0,1],[0,2],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-3,-1],[-2,0],[-2,-1],[-2,-2],[-2,-1],[-2,-1],[-3,-2],[-2,-2],[-3,-2],[-2,-2],[-3,-2],[-3,-3],[-3,-2],[-3,-3],[-3,-2],[-3,-3],[-3,-3],[-3,-3],[-3,-3],[-3,-3],[-3,-3],[-4,-3],[-3,-3],[-3,-3],[-3,-3],[-3,-3],[-3,-3],[-3,-4],[-3,-3],[-3,-3],[-3,-3],[-3,-3],[-3,-2],[-2,-3],[-3,-3],[-2,-3],[-3,-2],[-2,-2],[-2,-3],[-2,-2],[-2,-2],[-2,-2],[-1,-2],[-2,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-5,-6],[-3,-3],[-2,-3],[-3,-2],[-3,-3],[-2,-3],[-3,-3],[-3,-3],[-3,-3],[-2,-3],[-3,-2],[-3,-3],[-3,-3],[-3,-3],[-3,-2],[-3,-3],[-2,-3],[-3,-2],[-3,-3],[-3,-2],[-3,-3],[-3,-3],[-3,-2],[-3,-2],[-3,-3],[-3,-2],[-3,-3],[-3,-2],[-3,-2],[-3,-3],[-3,-2],[-3,-2],[-4,-2],[-3,-2],[-3,-3],[-3,-2],[-3,-2],[-3,-2],[-3,-2],[-3,-2],[-4,-2],[-3,-1],[-3,-2],[-3,-2],[-3,-2],[-3,-1],[-4,-2],[-3,-2],[-3,-1],[-8,-4],[-4,-2],[-4,-2],[-3,-2],[-4,-2],[-3,-1],[-3,-2],[-3,-2],[-3,-2],[-2,-1],[-3,-2],[-2,-2],[-3,-1],[-2,-2],[-2,-2],[-2,-2],[-2,-1],[-1,-2],[-2,-2],[-1,-2],[-2,-2],[-1,-2],[-1,-2],[-1,-3],[-1,-2],[-1,-2],[-1,-3],[-1,-3],[-1,-2],[-1,-3],[0,-3],[-1,-3],[0,-4],[-1,-3],[0,-4],[0,-3],[-1,-4],[0,-4],[0,-4],[0,-5],[-1,-4],[0,-5],[0,-5],[0,-5],[0,-5],[0,-6],[0,-6],[0,-6],[0,-6],[-1,-21],[0,-11],[0,-10],[0,-11],[0,-10],[-1,-11],[0,-11],[0,-10],[0,-11],[-1,-10],[0,-11],[0,-10],[-1,-11],[0,-10],[-1,-11],[0,-10],[-1,-11],[0,-10],[0,-11],[-1,-10],[0,-11],[-1,-10],[0,-11],[-1,-10],[0,-11],[-1,-10],[0,-10],[-1,-11],[0,-10],[-1,-11],[-1,-10],[0,-11],[-1,-10],[0,-11],[-1,-10],[0,-10],[-1,-11],[-1,-10],[0,-11],[-1,-10],[0,-11],[-1,-10],[0,-10],[-1,-11],[0,-10],[-1,-11],[-1,-10],[0,-10],[-1,-11],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0]],[[4562,7164],[0,9],[0,4],[0,4],[1,5],[0,5],[0,4],[0,5],[1,4],[0,5],[0,5],[1,4],[0,5],[1,5],[0,4],[1,5],[1,5],[0,4],[1,5],[0,5],[1,4],[1,5],[0,4],[1,5],[1,5],[0,4],[1,4],[1,5],[0,4],[1,4],[1,5],[0,4],[1,4],[1,4],[0,4],[1,4],[0,3],[1,4],[1,4],[0,3],[1,4],[0,3],[1,3],[0,3],[0,3],[1,3],[0,3],[0,3],[0,2],[1,3],[0,7],[0,3],[1,4],[0,3],[0,4],[1,3],[0,4],[0,3],[1,4],[0,3],[0,4],[1,3],[0,4],[1,3],[0,4],[0,3],[1,4],[0,3],[0,4],[1,3],[0,4],[1,3],[0,4],[0,3],[1,4],[0,3],[0,4],[1,4],[0,3],[0,4],[1,3],[0,4],[0,3],[1,4],[0,3],[0,4],[0,3],[0,4],[1,3],[0,4],[0,3],[0,4],[0,3],[0,4],[0,3],[0,4],[0,3],[0,4],[0,4],[-1,6],[0,4],[0,3],[0,4],[-1,3],[0,3],[-1,4],[0,3],[-1,3],[0,3],[-1,4],[0,3],[-1,3],[0,3],[-1,3],[-1,3],[0,4],[-1,3],[-1,3],[-1,3],[0,3],[-1,3],[-1,3],[-1,3],[0,3],[-1,3],[-1,3],[-1,3],[0,3],[-1,3],[-1,4],[0,3],[-1,3],[-1,3],[0,3],[-1,3],[0,3],[-1,4],[-1,3],[0,3],[-1,3],[0,4],[0,3],[-1,3],[0,4],[0,3],[-1,3],[0,4],[0,3],[-4,-6],[-2,-3],[-3,-3],[-3,-3],[-2,-3],[-3,-3],[-3,-3],[-4,-3],[-3,-3],[-3,-3],[-4,-3],[-3,-2],[-4,-3],[-4,-3],[-4,-2],[-4,-3],[-4,-2],[-4,-3],[-4,-3],[-4,-2],[-4,-2],[-4,-3],[-5,-2],[-4,-3],[-4,-2],[-4,-3],[-5,-2],[-4,-2],[-4,-3],[-5,-2],[-4,-2],[-4,-3],[-4,-2],[-4,-2],[-5,-2],[-4,-3],[-4,-2],[-4,-2],[-4,-3],[-3,-2],[-4,-2],[-4,-3],[-3,-2],[-4,-2],[-3,-3],[-3,-2],[-4,-2],[-3,-3],[-2,-2],[-7,-6],[-3,-2],[-4,-3],[-3,-3],[-3,-3],[-4,-3],[-3,-3],[-3,-3],[-4,-3],[-3,-2],[-4,-3],[-3,-3],[-4,-3],[-3,-3],[-4,-3],[-3,-3],[-4,-3],[-4,-2],[-3,-3],[-4,-3],[-4,-2],[-3,-3],[-4,-2],[-4,-3],[-3,-2],[-4,-3],[-4,-2],[-4,-2],[-3,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-1],[-3,-2],[-4,-2],[-4,-1],[-4,-1],[-4,-1],[-4,-1],[-4,-1],[-4,-1],[-3,-1],[-4,0],[-4,0],[-4,-1],[-4,0],[-4,0],[-4,1],[-4,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[5,-1],[3,0],[2,0],[3,-1],[3,0],[2,-1],[2,0],[3,0],[2,-1],[3,0],[2,0],[2,-1],[2,0],[3,0],[2,0],[2,-1],[2,0],[2,0],[2,-1],[2,0],[2,0],[3,-1],[2,0],[2,-1],[2,0],[2,0],[2,-1],[2,0],[2,-1],[2,0],[2,-1],[2,0],[2,-1],[2,-1],[2,0],[2,-1],[3,-1],[2,-1],[2,-1],[2,0],[2,-1],[3,-1],[2,-1],[2,-1],[2,-1],[3,-2],[2,-1],[3,-1],[2,-1],[4,-3],[2,-1],[2,-1],[2,-1],[2,-2],[2,-1],[2,-1],[2,-2],[2,-1],[2,-2],[2,-1],[2,-1],[2,-2],[2,-1],[2,-2],[2,-1],[2,-2],[1,-2],[2,-1],[2,-2],[2,-1],[2,-2],[2,-2],[2,-1],[2,-2],[2,-1],[2,-2],[2,-2],[2,-1],[2,-2],[2,-1],[2,-2],[2,-2],[2,-1],[2,-2],[2,-1],[2,-2],[2,-1],[2,-2],[2,-1],[2,-2],[2,-1],[2,-2],[2,-1],[2,-2],[2,-1],[2,-1],[2,-2],[3,-1],[0,-6],[1,-3],[0,-4],[1,-3],[1,-3],[0,-4],[1,-3],[1,-3],[1,-4],[1,-3],[1,-4],[1,-3],[1,-3],[1,-4],[2,-3],[1,-4],[1,-3],[1,-4],[2,-3],[1,-4],[2,-3],[1,-3],[2,-4],[1,-3],[2,-4],[1,-3],[2,-3],[2,-4],[1,-3],[2,-3],[1,-4],[2,-3],[2,-3],[1,-3],[2,-4],[2,-3],[2,-3],[1,-3],[2,-3],[2,-3],[1,-3],[2,-3],[2,-3],[1,-2],[2,-3],[2,-3],[1,-3],[2,-2],[1,-3],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[5492,5609],[4,3],[2,2],[2,2],[2,2],[1,3],[2,2],[2,2],[1,3],[2,2],[1,3],[2,2],[1,3],[1,3],[2,2],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,4],[1,3],[0,3],[1,3],[1,4],[0,3],[1,3],[1,4],[0,3],[0,4],[1,3],[0,4],[0,3],[1,4],[0,3],[0,4],[0,3],[0,4],[0,4],[0,3],[0,4],[0,3],[0,4],[-1,4],[0,3],[0,4],[0,3],[-1,4],[0,3],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-2,8],[-1,3],[-1,4],[-1,3],[-1,3],[-1,3],[-1,3],[-1,2],[-2,3],[-1,2],[-1,2],[-2,2],[-1,2],[-2,2],[-1,2],[-2,2],[-2,1],[-1,2],[-2,1],[-2,1],[-2,2],[-2,1],[-2,1],[-2,1],[-2,0],[-2,1],[-2,1],[-2,1],[-2,0],[-2,1],[-2,0],[-2,1],[-3,0],[-2,0],[-2,1],[-3,0],[-2,0],[-2,1],[-3,0],[-2,0],[-3,0],[-2,1],[-3,0],[-2,0],[-3,0],[-2,1],[-3,0],[-3,0],[-2,1],[-9,1],[-5,1],[-5,1],[-4,0],[-4,1],[-5,1],[-4,1],[-4,2],[-5,1],[-4,1],[-4,1],[-4,2],[-4,1],[-5,1],[-4,2],[-4,1],[-4,2],[-4,2],[-4,1],[-4,2],[-4,2],[-4,2],[-4,2],[-4,1],[-3,2],[-4,2],[-4,3],[-4,2],[-4,2],[-4,2],[-4,2],[-4,2],[-4,3],[-3,2],[-4,2],[-4,3],[-4,2],[-4,3],[-4,2],[-4,3],[-4,2],[-4,3],[-4,2],[-4,3],[-4,3],[-4,3],[-4,2],[-4,3],[-4,3],[-3,2],[-2,2],[-2,1],[-1,1],[-2,2],[-2,1],[-1,1],[-2,2],[-1,1],[-2,2],[-2,1],[-1,2],[-2,1],[-1,2],[-2,2],[-1,1],[-2,2],[-1,1],[-2,2],[-1,1],[-2,2],[-1,2],[-2,1],[-1,2],[-2,1],[-2,2],[-1,1],[-2,2],[-1,1],[-2,2],[-1,1],[-2,2],[-2,1],[-1,1],[-2,2],[-1,1],[-2,1],[-2,2],[-2,1],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,0],[-2,1],[-4,1],[-2,1],[-1,0],[-2,1],[-2,0],[-2,0],[-2,0],[-2,1],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-1,-1],[-2,0],[-8,-3],[-4,-1],[-4,-2],[-4,-1],[-4,-2],[-4,-1],[-3,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-3,-2],[-4,-2],[-4,-2],[-3,-2],[-4,-3],[-4,-2],[-3,-3],[-3,-2],[-4,-3],[-3,-3],[-4,-3],[-3,-3],[-3,-3],[-3,-3],[-3,-3],[-3,-3],[-3,-4],[-3,-3],[-3,-4],[-3,-4],[-3,-4],[-2,-4],[-3,-4],[-2,-4],[-3,-4],[-2,-5],[-2,-4],[-2,-5],[-2,-5],[-2,-4],[-2,-5],[-2,-5],[-2,-6],[-1,-5],[-2,-5],[-1,-6],[-1,-6],[-1,-6],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-3,-11],[-1,-5],[-2,-5],[-2,-5],[-3,-4],[-2,-5],[-3,-4],[-3,-5],[-3,-4],[-3,-4],[-4,-4],[-4,-3],[-4,-4],[-4,-4],[-4,-3],[-4,-4],[-4,-3],[-5,-4],[-5,-3],[-4,-3],[-5,-3],[-5,-3],[-5,-3],[-5,-3],[-5,-3],[-5,-3],[-5,-3],[-5,-3],[-5,-3],[-5,-2],[-5,-3],[-6,-3],[-5,-3],[-5,-3],[-4,-2],[-5,-3],[-5,-3],[-5,-3],[-4,-3],[-5,-3],[-4,-3],[-5,-3],[-4,-3],[-4,-3],[-4,-3],[-3,-3],[-4,-4],[-3,-3],[-3,-3],[-6,-7],[-3,-4],[-3,-3],[-2,-4],[-3,-4],[-3,-3],[-3,-4],[-3,-4],[-3,-4],[-3,-4],[-3,-5],[-2,-4],[-3,-4],[-3,-5],[-3,-4],[-3,-5],[-3,-4],[-3,-5],[-2,-5],[-3,-4],[-3,-5],[-3,-5],[-3,-4],[-2,-5],[-3,-5],[-3,-5],[-2,-5],[-3,-5],[-2,-4],[-3,-5],[-2,-5],[-3,-5],[-2,-5],[-3,-5],[-2,-5],[-2,-4],[-3,-5],[-2,-5],[-2,-5],[-2,-4],[-2,-5],[-2,-5],[-2,-4],[-2,-5],[-2,-4],[-2,-5],[-2,-4],[-1,-4],[-2,-4],[-5,-15],[-3,-7],[-2,-8],[-3,-7],[-2,-8],[-2,-8],[-2,-8],[-3,-8],[-2,-7],[-2,-8],[-2,-9],[-2,-8],[-1,-8],[-2,-8],[-2,-8],[-1,-9],[-2,-8],[-1,-8],[-2,-9],[-1,-8],[-1,-9],[-1,-8],[-1,-9],[-1,-8],[0,-9],[-1,-8],[-1,-9],[0,-9],[0,-8],[-1,-9],[0,-8],[0,-9],[0,-8],[1,-9],[0,-8],[0,-8],[1,-9],[1,-8],[1,-8],[1,-9],[1,-8],[1,-8],[1,-8],[2,-8],[1,-8],[2,-8],[2,-8],[2,-8],[2,-7],[3,-8],[1,-4],[1,-4],[2,-3],[1,-4],[1,-3],[2,-4],[1,-3],[1,-4],[2,-3],[1,-4],[2,-3],[1,-3],[2,-3],[2,-4],[1,-3],[2,-3],[2,-3],[1,-3],[2,-3],[2,-3],[2,-2],[2,-3],[2,-3],[1,-3],[2,-2],[2,-3],[2,-2],[2,-3],[3,-2],[2,-2],[2,-3],[2,-2],[2,-2],[2,-2],[3,-2],[2,-2],[2,-2],[3,-2],[2,-2],[3,-2],[2,-2],[3,-1],[2,-2],[3,-2],[2,-1],[3,-2],[3,-1],[3,-1],[6,-3],[3,-1],[3,-1],[3,-1],[2,-1],[3,-1],[3,-1],[3,0],[2,-1],[3,0],[3,0],[2,0],[3,0],[2,0],[3,0],[2,0],[3,1],[2,0],[2,0],[3,1],[2,1],[3,0],[2,1],[2,1],[3,0],[2,1],[2,1],[3,1],[2,1],[2,1],[3,1],[2,1],[3,2],[2,1],[2,1],[3,1],[2,1],[3,1],[2,2],[3,1],[2,1],[3,1],[3,1],[2,2],[3,1],[3,1],[3,1],[3,1],[3,1],[5,2],[2,1],[3,1],[2,1],[3,1],[2,1],[2,1],[3,0],[2,1],[3,1],[2,1],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[3,1],[2,0],[2,1],[2,1],[2,1],[2,1],[3,1],[2,1],[2,1],[2,2],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[2,2],[2,1],[3,1],[2,1],[2,2],[2,1],[3,2],[2,1],[2,1],[2,2],[3,1],[2,2],[2,2],[3,1],[2,2],[2,2],[9,6],[4,3],[4,3],[4,3],[4,3],[4,4],[4,3],[4,3],[5,4],[4,3],[4,4],[4,3],[4,4],[4,3],[4,4],[4,3],[4,4],[4,4],[4,3],[4,4],[4,4],[4,3],[4,4],[4,4],[4,4],[4,3],[4,4],[4,4],[4,4],[4,4],[4,3],[4,4],[4,4],[4,4],[4,4],[4,3],[4,4],[4,4],[4,4],[3,4],[4,3],[4,4],[4,4],[4,4],[4,3],[4,4],[3,4],[4,3],[4,4],[4,3],[1,2],[2,1],[2,2],[1,2],[2,2],[2,1],[1,2],[2,2],[2,1],[1,2],[2,2],[2,1],[1,2],[2,2],[1,1],[2,2],[1,2],[2,2],[2,1],[1,2],[2,2],[1,2],[2,2],[1,2],[2,1],[1,2],[2,2],[1,2],[2,2],[1,2],[2,2],[1,2],[2,2],[1,2],[2,2],[1,2],[2,2],[1,2],[2,2],[1,2],[2,2],[1,2],[2,3],[1,2],[2,2],[1,2],[2,3],[1,2],[5,7],[2,3],[3,4],[2,3],[2,3],[2,3],[2,3],[2,2],[2,3],[2,2],[2,3],[1,2],[2,3],[2,2],[2,2],[2,2],[1,2],[2,2],[2,2],[2,2],[1,1],[2,2],[2,2],[2,2],[2,1],[1,2],[2,1],[2,2],[2,1],[2,2],[2,1],[2,2],[2,1],[2,2],[2,1],[2,2],[3,1],[2,2],[2,1],[3,2],[2,1],[3,2],[2,1],[3,2],[3,2],[3,1],[2,2],[3,2],[4,2],[9,6],[5,3],[4,3],[5,4],[4,3],[5,4],[4,3],[5,4],[4,4],[4,4],[5,4],[4,4],[4,5],[4,4],[4,4],[4,5],[4,4],[4,5],[4,4],[4,5],[4,5],[4,4],[4,5],[3,5],[4,5],[4,5],[4,5],[4,5],[3,4],[4,5],[4,5],[4,5],[3,5],[4,5],[4,5],[4,5],[3,5],[4,5],[4,4],[4,5],[4,5],[3,5],[4,4],[4,5],[4,4],[4,5],[4,4],[4,5],[4,4],[1,2],[1,0],[1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,2],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,0],[1,1],[1,1],[0,1],[1,0],[1,1],[1,1],[1,1]],[[5857,6150],[13,2],[6,2],[5,1],[6,2],[5,3],[5,2],[5,3],[4,3],[5,3],[4,4],[4,3],[3,4],[4,4],[3,5],[3,4],[3,5],[3,5],[2,4],[3,6],[2,5],[2,5],[1,6],[2,6],[1,6],[2,6],[1,6],[1,6],[1,6],[0,7],[1,6],[0,7],[0,7],[0,7],[0,6],[0,7],[0,7],[-1,8],[0,7],[-1,7],[-1,7],[-1,7],[-1,8],[-1,7],[-1,7],[-1,8],[-2,7],[-1,8],[-2,7],[-1,7],[-2,8],[-1,4],[-1,4],[-1,3],[-2,4],[-1,3],[-1,4],[-1,3],[-2,4],[-1,3],[-1,3],[-2,4],[-1,3],[-2,3],[-1,3],[-2,3],[-1,3],[-2,3],[-1,3],[-2,3],[-2,3],[-1,3],[-2,3],[-2,3],[-1,3],[-2,3],[-1,3],[-2,3],[-2,3],[-1,3],[-2,3],[-1,4],[-2,3],[-1,3],[-2,3],[-1,3],[-2,3],[-1,3],[-2,4],[-1,3],[-1,4],[-2,3],[-1,3],[-1,4],[-1,4],[-2,3],[-1,4],[-1,4],[-1,4],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-6,12],[-4,6],[-3,5],[-4,5],[-3,5],[-4,5],[-4,4],[-4,4],[-3,4],[-4,4],[-4,3],[-4,4],[-5,3],[-4,3],[-4,2],[-4,3],[-4,2],[-5,3],[-4,2],[-5,2],[-4,2],[-5,2],[-4,2],[-5,1],[-4,2],[-5,2],[-4,1],[-5,2],[-5,1],[-4,2],[-5,1],[-5,1],[-4,2],[-5,1],[-5,2],[-5,1],[-4,2],[-5,1],[-5,2],[-5,1],[-4,2],[-5,2],[-5,2],[-4,2],[-5,2],[-5,3],[-4,2],[-5,3],[-4,3],[-6,3],[-3,2],[-3,2],[-2,2],[-3,2],[-3,2],[-2,2],[-3,2],[-2,2],[-3,2],[-2,2],[-3,2],[-2,2],[-3,2],[-2,2],[-2,2],[-3,2],[-2,2],[-2,2],[-3,2],[-2,2],[-2,2],[-3,2],[-2,2],[-2,2],[-3,2],[-2,2],[-3,1],[-2,2],[-2,2],[-3,2],[-2,2],[-3,2],[-2,2],[-3,1],[-2,2],[-3,2],[-2,2],[-3,1],[-3,2],[-2,2],[-3,1],[-3,2],[-3,1],[-3,2],[-3,1],[-3,2],[-3,1],[-3,1],[-3,2],[-2,0],[-1,1],[-2,0],[-2,1],[-1,0],[-2,1],[-2,0],[-2,1],[-2,0],[-2,1],[-1,0],[-2,0],[-2,1],[-2,0],[-2,1],[-2,0],[-2,0],[-2,1],[-2,0],[-2,1],[-2,0],[-2,0],[-2,1],[-2,0],[-2,1],[-2,0],[-2,1],[-2,0],[-2,1],[-2,0],[-2,1],[-2,0],[-1,1],[-2,1],[-2,0],[-2,1],[-2,1],[-1,0],[-2,1],[-2,1],[-1,1],[-2,0],[-1,1],[-2,1],[-1,1],[-2,1],[-1,1],[-2,1],[-3,3],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,2],[-1,1],[0,1],[-1,2],[0,1],[-1,2],[-1,2],[0,2],[-1,2],[-1,2],[-3,5],[-1,3],[-2,3],[-1,2],[-1,3],[-1,2],[-2,3],[-1,2],[-1,3],[-1,2],[-1,3],[-2,2],[-1,3],[-1,2],[-1,2],[-1,3],[-1,2],[-2,2],[-1,2],[-1,3],[-1,2],[-1,2],[-2,2],[-1,3],[-1,2],[-1,2],[-2,2],[-1,2],[-1,3],[-2,2],[-1,2],[-1,2],[-2,2],[-1,2],[-1,3],[-2,2],[-1,2],[-2,2],[-1,2],[-2,3],[-2,2],[-1,2],[-2,2],[-2,3],[-1,2],[-2,2],[-2,3],[-2,2],[-2,2],[-6,7],[-2,4],[-3,3],[-3,4],[-2,3],[-3,4],[-2,3],[-2,3],[-3,3],[-2,3],[-2,4],[-2,3],[-3,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,2],[-2,3],[-2,3],[-2,3],[-2,3],[-3,2],[-2,3],[-2,3],[-2,2],[-2,3],[-2,2],[-3,3],[-2,3],[-2,2],[-3,3],[-2,2],[-3,2],[-2,3],[-3,2],[-3,2],[-2,3],[-3,2],[-3,2],[-3,3],[-3,2],[-3,2],[-4,2],[-3,2],[-4,3],[-3,2],[-4,2],[-6,3],[-3,2],[-3,2],[-3,1],[-3,2],[-3,2],[-3,2],[-4,1],[-3,2],[-3,2],[-3,1],[-3,2],[-3,2],[-3,1],[-3,2],[-3,2],[-3,1],[-3,2],[-3,2],[-3,1],[-4,2],[-3,2],[-3,1],[-3,2],[-3,1],[-3,2],[-3,1],[-3,2],[-4,1],[-3,2],[-3,1],[-3,1],[-3,2],[-3,1],[-4,1],[-3,2],[-3,1],[-3,1],[-3,1],[-3,1],[-4,2],[-3,1],[-3,1],[-3,1],[-4,1],[-3,1],[-3,0],[-3,1],[-4,1],[-2,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-2,1],[-1,0],[-2,0],[-1,1],[-1,0],[-2,0],[-1,1],[-2,0],[-1,0],[-2,1],[-1,0],[-2,0],[-1,0],[-2,1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-3,-9],[-2,-4],[-1,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[-1,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-3],[-2,-4],[-3,-4],[-2,-3],[-2,-4],[-2,-3],[-2,-4],[-2,-3],[-2,-4],[-2,-4],[-3,-3],[-2,-4],[-2,-3],[-2,-4],[-2,-3],[-2,-4],[-2,-4],[-2,-3],[-2,-4],[-2,-4],[-2,-3],[-1,-4],[-2,-4],[-2,-4],[-2,-4],[-1,-4],[-2,-4],[-1,-4],[-2,-4],[-1,-4],[-2,-4],[-1,-5],[-1,-4],[-1,-5],[-1,-4],[-1,-5],[-1,-5],[-1,-5],[0,-3],[-1,-2],[0,-3],[0,-3],[-1,-2],[0,-3],[-1,-3],[0,-3],[0,-2],[-1,-3],[0,-3],[0,-3],[-1,-3],[0,-3],[0,-2],[0,-3],[-1,-3],[0,-3],[0,-3],[0,-3],[0,-3],[-1,-2],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-2],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-2],[0,-3],[0,-3],[1,-3],[0,-2],[0,-3],[0,-3],[1,-3],[0,-2],[0,-3],[1,-3],[0,-2],[2,-7],[0,-3],[1,-3],[1,-3],[1,-3],[0,-2],[1,-3],[1,-2],[1,-2],[1,-3],[1,-2],[1,-2],[1,-2],[1,-2],[1,-1],[1,-2],[1,-2],[2,-1],[1,-2],[1,-1],[1,-1],[2,-2],[1,-1],[1,-1],[2,-1],[1,-2],[2,-1],[1,-1],[2,-1],[1,-1],[2,-1],[1,-1],[2,-1],[1,-1],[2,-1],[2,-1],[2,-1],[1,-1],[2,-2],[2,-1],[2,-1],[2,-1],[2,-1],[2,-2],[1,-1],[2,-1],[2,-2],[2,-1],[3,-2],[6,-5],[3,-2],[2,-2],[3,-3],[3,-2],[3,-3],[3,-2],[2,-3],[3,-3],[2,-2],[3,-3],[2,-3],[3,-2],[2,-3],[2,-3],[3,-3],[2,-2],[2,-3],[2,-3],[3,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-4],[2,-3],[2,-3],[2,-3],[2,-4],[2,-3],[2,-3],[2,-4],[2,-3],[2,-4],[2,-3],[2,-4],[2,-3],[2,-4],[2,-3],[2,-4],[4,-6],[2,-3],[3,-3],[2,-3],[2,-3],[2,-3],[3,-2],[2,-2],[3,-3],[2,-2],[3,-2],[2,-2],[3,-2],[2,-2],[3,-1],[3,-2],[2,-2],[3,-1],[3,-2],[3,-1],[2,-1],[3,-1],[3,-2],[3,-1],[3,-1],[3,-1],[3,-1],[3,-1],[3,-1],[3,-1],[3,-1],[3,0],[3,-1],[3,-1],[3,-1],[3,-1],[3,0],[3,-1],[3,-1],[3,-1],[3,-1],[3,-1],[4,0],[3,-1],[3,-1],[3,-1],[3,-1],[3,-1],[3,-1],[16,-6],[8,-2],[8,-3],[8,-3],[7,-3],[8,-3],[8,-2],[8,-3],[8,-3],[8,-3],[7,-3],[8,-3],[8,-3],[8,-3],[7,-3],[8,-3],[8,-3],[7,-3],[8,-3],[8,-3],[7,-3],[8,-3],[8,-3],[7,-4],[8,-3],[8,-3],[7,-3],[8,-4],[7,-3],[8,-3],[8,-4],[7,-3],[8,-3],[8,-4],[7,-3],[8,-4],[7,-4],[8,-3],[8,-4],[7,-3],[8,-4],[7,-4],[8,-4],[8,-4],[7,-3],[8,-4],[7,-4],[8,-4],[8,-4],[6,-3],[3,-2],[3,-1],[3,-2],[3,-1],[3,-2],[3,-1],[3,-2],[3,-1],[4,-2],[3,-1],[3,-2],[3,-1],[3,-2],[3,-1],[3,-2],[3,-1],[3,-2],[3,-1],[3,-2],[3,-2],[3,-1],[3,-2],[3,-2],[3,-1],[3,-2],[3,-2],[3,-2],[3,-2],[3,-2],[2,-2],[3,-2],[3,-2],[3,-2],[3,-2],[2,-2],[3,-3],[3,-2],[2,-3],[3,-2],[3,-3],[2,-3],[3,-3],[2,-2],[3,-3],[2,-3],[3,-4],[2,-3],[3,-3],[5,-8],[3,-4],[3,-4],[3,-4],[3,-4],[4,-4],[3,-3],[3,-4],[3,-3],[4,-4],[3,-3],[4,-3],[3,-3],[3,-4],[4,-3],[4,-3],[3,-2],[4,-3],[4,-3],[3,-2],[4,-3],[4,-2],[4,-3],[3,-2],[4,-2],[4,-2],[4,-2],[4,-2],[4,-2],[4,-1],[4,-2],[4,-1],[4,-2],[5,-1],[4,-1],[4,-1],[4,-1],[4,-1],[5,0],[4,-1],[4,0],[4,-1],[5,0],[4,0],[5,0],[4,0],[4,1],[5,0],[4,1]],[[7047,5748],[4,6],[2,2],[2,3],[3,2],[2,3],[2,3],[2,2],[2,3],[2,3],[2,2],[3,3],[2,2],[2,3],[1,3],[2,2],[2,3],[2,2],[2,3],[1,3],[2,2],[1,3],[1,2],[2,3],[1,2],[1,3],[1,2],[0,2],[1,3],[1,2],[0,2],[0,3],[0,2],[0,2],[0,3],[-1,2],[-1,2],[0,2],[-1,2],[-2,2],[-1,2],[-2,2],[-2,2],[-2,2],[-2,2],[-3,2],[-3,2],[-3,1],[-3,2],[-3,2],[-4,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-3,1],[-2,1],[-3,1],[-2,1],[-3,1],[-3,1],[-2,1],[-3,1],[-3,1],[-3,1],[-3,1],[-3,1],[-3,1],[-3,1],[-3,1],[-3,1],[-3,1],[-3,1],[-3,1],[-3,0],[-3,1],[-3,1],[-3,0],[-3,1],[-3,1],[-2,0],[-3,0],[-3,1],[-3,0],[-2,0],[-3,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-2],[-1,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,1],[-2,1],[-2,2],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[1,2],[0,1],[0,2],[0,1],[0,1],[0,2],[1,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[-1,1],[0,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-3,-1],[-2,0],[-1,0],[-2,-1],[-2,0],[-2,0],[-1,-1],[-2,0],[-2,0],[-1,-1],[-2,0],[-2,0],[-1,0],[-2,-1],[-2,0],[-1,-1],[-2,0],[-2,0],[-1,-1],[-2,0],[-2,-1],[-1,0],[-2,-1],[-1,-1],[-2,0],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,0],[-1,-2],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[-2,-2],[0,-2],[-1,-2],[-1,-2],[-1,-3],[-1,-2],[-1,-3],[0,-3],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-3,-1],[-2,0],[-3,-1],[-3,-1],[-3,0],[-2,-1],[-3,0],[-3,0],[-3,-1],[-3,0],[-3,-1],[-3,0],[-4,-1],[-3,0],[-3,-1],[-3,0],[-3,0],[-3,-1],[-2,0],[-3,0],[-3,-1],[-3,0],[-2,0],[-3,-1],[-2,0],[-3,0],[-2,0],[-2,-1],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-6,-1],[-3,1],[-3,0],[-3,0],[-3,0],[-3,1],[-2,1],[-3,0],[-2,1],[-3,1],[-2,1],[-2,1],[-3,1],[-2,1],[-2,1],[-2,1],[-2,2],[-2,1],[-2,2],[-2,2],[-1,1],[-2,2],[-2,2],[-2,2],[-1,2],[-2,2],[-1,2],[-2,2],[-2,3],[-1,2],[-2,2],[-1,3],[-2,2],[-1,3],[-2,2],[-1,3],[-2,3],[-1,3],[-2,3],[-1,3],[-2,3],[-1,3],[-2,3],[-1,3],[-2,3],[-1,3],[-2,4],[-2,3],[-1,3],[-3,5],[-1,2],[-1,3],[-1,2],[-1,3],[-1,2],[-1,3],[-1,3],[-1,2],[-1,3],[-1,2],[-1,3],[-1,3],[-1,2],[-1,3],[-1,3],[-1,2],[-1,3],[-1,3],[0,3],[-1,2],[-1,3],[-1,3],[0,3],[-1,3],[-1,2],[-1,3],[0,3],[-1,3],[-1,3],[0,3],[-1,2],[-1,3],[0,3],[-1,3],[0,3],[-1,3],[-1,2],[0,3],[-1,3],[0,3],[-1,3],[0,3],[-1,3],[0,2],[-1,3],[0,3],[-1,3],[0,3],[-1,2],[0,2],[0,2],[0,1],[0,2],[-1,3],[0,2],[0,3],[0,2],[0,3],[-1,3],[0,3],[0,3],[0,3],[-1,3],[0,4],[0,3],[0,3],[0,4],[-1,3],[0,4],[0,4],[0,3],[-1,4],[0,3],[0,4],[-1,3],[0,4],[0,3],[-1,3],[0,4],[0,3],[-1,3],[0,3],[0,3],[-1,3],[0,2],[0,3],[-1,2],[0,3],[0,2],[-1,2],[0,1],[-1,2],[0,1],[-1,2],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[7,2],[3,1],[3,1],[2,0],[3,0],[2,0],[3,-1],[2,0],[2,-1],[2,-1],[1,-1],[2,-1],[2,-1],[1,-2],[1,-2],[2,-1],[1,-2],[1,-3],[1,-2],[0,-2],[1,-3],[1,-2],[1,-3],[0,-3],[0,-2],[1,-3],[0,-3],[0,-3],[1,-4],[0,-3],[0,-3],[0,-3],[0,-4],[0,-3],[0,-3],[0,-4],[0,-3],[-1,-4],[0,-3],[0,-3],[0,-4],[0,-3],[-1,-4],[0,-3],[0,-3],[0,-4],[0,-3],[-1,-3],[0,-3],[0,-12],[0,-5],[0,-5],[0,-5],[0,-5],[0,-4],[0,-5],[0,-4],[0,-4],[1,-3],[0,-4],[1,-3],[0,-4],[1,-3],[1,-2],[1,-3],[0,-3],[1,-2],[1,-2],[2,-2],[1,-2],[1,-2],[2,-2],[1,-1],[2,-2],[1,-1],[2,-2],[2,-1],[2,-1],[2,-1],[2,-1],[2,-1],[2,0],[3,-1],[2,-1],[3,0],[3,-1],[2,0],[3,-1],[3,0],[3,-1],[4,0],[3,0],[3,-1],[4,0],[4,-1],[3,0],[4,0],[4,-1],[3,0],[2,0],[1,0],[2,-1],[1,0],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-2],[2,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-2],[0,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-2],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[8,-3],[4,-1],[4,-1],[5,-1],[4,0],[5,0],[4,0],[5,0],[4,0],[5,1],[5,1],[5,1],[4,1],[5,2],[5,2],[4,2],[5,2],[5,2],[5,2],[4,3],[5,3],[4,3],[5,3],[4,3],[5,3],[4,4],[4,3],[5,4],[4,4],[4,4],[4,4],[4,5],[3,4],[4,5],[3,4],[4,5],[3,5],[3,5],[3,5],[3,5],[2,5],[3,5],[2,5],[2,6],[2,5],[2,6],[1,5],[2,6],[1,5],[2,13],[1,6],[1,7],[1,6],[1,7],[1,6],[0,7],[1,6],[1,7],[0,6],[1,7],[0,7],[1,6],[0,7],[1,7],[0,6],[0,7],[0,7],[0,6],[1,7],[0,7],[-1,6],[0,7],[0,6],[0,7],[0,7],[-1,6],[0,7],[-1,7],[0,6],[-1,7],[0,6],[-1,7],[-1,7],[-1,6],[-1,7],[-1,6],[-1,6],[-1,7],[-1,6],[-1,7],[-2,6],[-1,6],[-2,6],[-1,7],[-2,6],[-1,6],[-2,6],[-2,6],[-4,14],[-2,7],[-3,7],[-2,7],[-2,7],[-3,6],[-2,7],[-2,7],[-3,7],[-2,7],[-2,6],[-3,7],[-2,7],[-3,7],[-2,6],[-3,7],[-2,7],[-3,6],[-3,7],[-2,7],[-3,6],[-3,7],[-2,6],[-3,7],[-3,6],[-3,7],[-3,6],[-2,7],[-3,6],[-3,7],[-3,6],[-3,6],[-3,7],[-3,6],[-3,6],[-3,7],[-3,6],[-3,6],[-4,6],[-3,6],[-3,6],[-3,6],[-3,6],[-4,6],[-3,6],[-3,6],[-4,6],[-3,6],[-4,6],[-7,12],[-4,7],[-3,6],[-4,6],[-4,6],[-4,7],[-4,6],[-4,6],[-4,6],[-5,7],[-4,6],[-4,6],[-4,6],[-5,5],[-4,6],[-5,6],[-4,5],[-5,5],[-5,6],[-4,5],[-5,4],[-5,5],[-5,4],[-4,4],[-5,4],[-5,4],[-5,3],[-5,4],[-5,2],[-5,3],[-6,2],[-5,2],[-5,2],[-5,1],[-5,1],[-6,0],[-5,0],[-5,0],[-6,-1],[-5,-1],[-5,-1],[-6,-2],[-5,-3],[-6,-3],[-5,-3],[-6,-4],[-5,-5],[-6,-5],[-6,-5],[-2,-2],[-2,-2],[-1,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-2,0],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-1,0],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-2],[-1,-1],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[-2,-2],[-1,-1],[-1,-2],[0,-1],[-1,-2],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-8],[0,-4],[0,-4],[0,-4],[0,-3],[0,-4],[0,-4],[0,-4],[0,-3],[0,-4],[0,-4],[1,-4],[0,-3],[0,-4],[1,-3],[0,-4],[1,-3],[0,-4],[1,-3],[1,-4],[0,-3],[1,-4],[1,-3],[1,-3],[1,-4],[0,-3],[1,-3],[1,-3],[2,-4],[1,-3],[1,-3],[1,-3],[1,-3],[2,-3],[1,-3],[1,-3],[2,-3],[1,-3],[2,-3],[1,-3],[2,-3],[2,-3],[2,-3],[1,-3],[2,-3],[2,-2],[2,-3],[2,-3],[2,-2],[2,-4],[2,-1],[1,-2],[1,-2],[1,-2],[2,-2],[1,-2],[1,-2],[2,-2],[1,-3],[1,-2],[2,-2],[1,-2],[1,-3],[1,-2],[2,-3],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[1,-3],[0,-3],[1,-2],[1,-3],[0,-3],[1,-2],[0,-3],[1,-3],[0,-2],[0,-3],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-3],[-1,-2],[-1,-3],[0,-2],[-1,-3],[-1,-2],[-1,-2],[-1,-3],[-2,-2],[-1,-2],[-2,-3],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[2,-5],[1,-3],[1,-3],[0,-3],[1,-4],[1,-3],[1,-4],[1,-4],[1,-4],[1,-4],[2,-4],[1,-5],[1,-4],[1,-5],[1,-4],[0,-5],[1,-5],[1,-4],[1,-5],[1,-5],[0,-5],[1,-5],[1,-4],[0,-5],[1,-5],[0,-4],[0,-5],[0,-4],[0,-5],[0,-4],[0,-4],[-1,-4],[0,-4],[-1,-4],[-1,-4],[-1,-3],[-1,-3],[-1,-4],[-1,-2],[-2,-3],[-2,-3],[-2,-2],[-2,-2],[-2,-2],[-3,-1],[-2,-1],[-3,-1],[-4,-1],[-3,0],[1,5],[0,3],[0,3],[1,3],[0,4],[1,3],[0,3],[1,3],[0,3],[0,4],[1,3],[0,3],[1,4],[0,3],[1,4],[0,3],[0,3],[1,4],[0,3],[0,3],[0,4],[0,3],[0,4],[1,3],[0,3],[-1,3],[0,4],[0,3],[0,3],[-1,3],[0,3],[-1,3],[0,3],[-1,3],[-1,3],[-1,2],[-1,3],[-1,2],[-1,3],[-1,2],[-2,3],[-1,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,1],[-3,2],[-2,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,2],[-1,2],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-3,3],[-1,1],[-1,1],[-2,1],[-1,1],[-1,2],[-2,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,2],[-1,1],[-1,1],[-2,1],[-1,1],[-1,2],[-1,1],[-1,1],[-2,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-2,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,2],[0,2],[-1,2],[-1,2],[-1,2],[-1,2],[0,2],[-1,3],[-1,2],[-1,4],[0,2],[-1,2],[0,2],[-1,3],[0,2],[0,2],[-1,2],[0,3],[0,2],[0,3],[0,2],[-1,2],[0,3],[0,2],[0,3],[0,2],[0,3],[0,2],[0,3],[0,2],[0,3],[0,2],[1,3],[0,2],[0,3],[0,2],[0,3],[0,3],[0,2],[1,3],[0,2],[0,3],[0,2],[0,3],[0,2],[1,3],[0,2],[0,2],[0,3],[0,2],[0,2],[0,3],[0,2],[1,2],[0,3],[0,2],[0,2],[0,2],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[3,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,2],[0,1],[0,1],[1,2],[0,1],[0,2],[0,1],[0,2],[1,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,2],[-1,2],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,2],[-1,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[-1,1],[0,1],[0,3],[0,2],[0,1],[0,2],[0,1],[0,2],[1,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[1,2],[0,1],[0,2],[0,1],[0,2],[0,1],[1,1],[0,2],[0,1],[0,2],[0,1],[0,1],[1,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[1,1],[-1,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[-1,2],[0,1],[-4,-1],[-3,0],[-2,0],[-2,0],[-2,0],[-3,1],[-2,0],[-2,1],[-3,0],[-2,1],[-2,1],[-3,1],[-2,1],[-3,1],[-2,1],[-2,1],[-3,1],[-2,1],[-3,1],[-2,1],[-2,2],[-3,1],[-2,1],[-3,1],[-2,2],[-2,1],[-3,1],[-2,1],[-3,1],[-2,1],[-2,1],[-3,1],[-2,1],[-3,1],[-2,1],[-2,1],[-3,0],[-2,1],[-2,0],[-3,0],[-2,1],[-2,0],[-2,0],[-3,-1],[-2,0],[-2,0],[-3,-1],[-2,-1],[-2,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,-86],[2,-6],[2,-3],[1,-3],[1,-3],[1,-4],[1,-3],[1,-3],[1,-3],[1,-3],[1,-4],[1,-3],[1,-3],[1,-4],[0,-3],[1,-3],[1,-4],[0,-3],[1,-4],[1,-3],[0,-4],[1,-3],[0,-4],[1,-3],[0,-4],[1,-3],[0,-4],[1,-3],[0,-4],[0,-4],[1,-3],[0,-4],[0,-3],[0,-4],[1,-4],[0,-3],[0,-4],[0,-3],[0,-4],[0,-4],[0,-3],[1,-4],[0,-3],[0,-4],[0,-3],[0,-4],[0,-4],[0,-3],[0,-4],[0,-3],[0,-7],[0,-4],[0,-3],[0,-3],[1,-3],[0,-4],[0,-3],[1,-3],[0,-3],[1,-3],[0,-3],[1,-2],[1,-3],[0,-3],[1,-3],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[1,-2],[1,-3],[1,-2],[2,-2],[1,-2],[1,-2],[2,-3],[1,-2],[2,-2],[1,-2],[1,-2],[2,-2],[2,-2],[1,-2],[2,-2],[1,-2],[2,-2],[2,-3],[2,-2],[1,-2],[2,-2],[2,-2],[2,-2],[1,-2],[2,-2],[4,-5],[2,-2],[2,-3],[1,-2],[2,-3],[1,-2],[1,-3],[1,-3],[1,-2],[1,-3],[1,-3],[0,-2],[1,-3],[1,-3],[0,-3],[0,-3],[1,-3],[0,-2],[0,-3],[1,-3],[0,-3],[0,-3],[0,-3],[0,-3],[1,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[1,-3],[0,-3],[0,-3],[1,-3],[0,-3],[0,-3],[1,-3],[0,-3],[1,-3],[1,-3],[1,-3],[1,-3],[1,-3],[1,-3],[1,-3],[1,-2],[1,-3],[2,-3],[2,-3],[1,-2],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,3],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[-1,2],[0,1],[0,2],[0,1],[-1,2],[0,1],[0,2],[0,1],[-1,2],[0,1],[0,2],[0,2],[-1,1],[0,2],[0,1],[-1,2],[0,1],[0,2],[-1,1],[0,2],[-1,1],[0,2],[0,1],[-1,2],[0,1],[0,2],[-1,1],[0,2],[0,1],[-1,2],[0,1],[0,2],[-1,1],[0,2],[-1,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-3],[0,-2],[0,-2],[1,-3],[0,-2],[0,-2],[0,-3],[1,-2],[0,-3],[0,-2],[1,-2],[0,-3],[0,-2],[1,-3],[0,-2],[1,-3],[0,-2],[1,-3],[0,-2],[0,-3],[1,-2],[0,-3],[1,-2],[0,-3],[0,-2],[1,-3],[0,-2],[0,-3],[0,-2],[1,-3],[0,-2],[0,-3],[0,-2],[0,-3],[1,-2],[0,-2],[0,-3],[0,-2],[-1,-3],[0,-2],[0,-2],[0,-3],[0,-2],[-1,-2],[0,-2],[-1,-3],[0,-2],[-1,-2],[-3,-9],[-2,-4],[-3,-4],[-2,-3],[-3,-3],[-3,-2],[-3,-2],[-4,-2],[-3,-1],[-4,-1],[-4,-1],[-4,-1],[-4,0],[-4,0],[-5,0],[-4,0],[-5,0],[-4,1],[-5,0],[-4,1],[-5,0],[-5,1],[-5,1],[-5,0],[-4,1],[-5,0],[-5,0],[-5,1],[-4,0],[-5,0],[-4,-1],[-5,0],[-4,-1],[-5,-1],[-4,-1],[-4,-2],[-4,-1],[-4,-3],[-3,-2],[-4,-3],[-3,-4],[-3,-3],[-3,-5],[-3,-4],[-3,-6],[-2,-5],[-2,-7],[-2,-6],[-1,-8],[-1,-8],[-1,-4],[0,-5],[0,-4],[1,-5],[0,-4],[1,-5],[1,-5],[0,-5],[1,-5],[2,-5],[1,-5],[1,-5],[2,-5],[1,-5],[2,-5],[2,-5],[2,-6],[2,-5],[2,-5],[2,-6],[2,-5],[2,-5],[2,-6],[3,-5],[2,-5],[2,-5],[3,-6],[2,-5],[2,-5],[3,-5],[2,-5],[2,-5],[3,-5],[2,-5],[2,-5],[3,-5],[2,-5],[2,-4],[2,-5],[2,-4],[2,-5],[1,-4],[2,-4],[2,-4],[1,-4],[2,-4],[1,-3],[1,-4],[3,-12],[2,-6],[2,-6],[2,-6],[2,-7],[2,-7],[1,-7],[2,-6],[2,-7],[2,-8],[2,-7],[2,-7],[3,-7],[2,-7],[2,-7],[2,-8],[3,-7],[2,-7],[3,-7],[2,-7],[3,-7],[3,-6],[3,-7],[3,-6],[3,-7],[3,-6],[3,-6],[3,-5],[4,-6],[3,-5],[4,-5],[4,-5],[3,-5],[4,-4],[5,-4],[4,-3],[4,-3],[5,-3],[4,-3],[5,-2],[5,-2],[5,-1],[5,-1],[6,0],[5,0],[6,0],[6,2],[6,1],[6,2],[4,2],[1,1],[1,1],[1,2],[1,1],[0,2],[1,2],[0,2],[0,2],[0,3],[0,2],[0,3],[-1,2],[0,3],[-1,3],[-1,3],[0,3],[-1,3],[-1,3],[-1,3],[-1,3],[-2,3],[-1,3],[-1,3],[-2,3],[-1,4],[-1,3],[-2,3],[-1,3],[-2,3],[-1,3],[-2,3],[-1,2],[-2,3],[-1,3],[-2,2],[-1,3],[-1,2],[-1,3],[-2,2],[-1,2],[-1,2],[-1,1],[-1,2],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-3,4],[-2,2],[-1,2],[-1,2],[-2,2],[-1,2],[-2,2],[-1,2],[-2,2],[-1,2],[-2,2],[-1,2],[-2,2],[-1,2],[-2,3],[-1,2],[-2,2],[-1,2],[-2,2],[-1,3],[-2,2],[-1,2],[-1,3],[-2,2],[-1,2],[-1,3],[-2,2],[-1,3],[-1,2],[-1,2],[-1,3],[-1,2],[-1,3],[-1,3],[-1,2],[-1,3],[-1,3],[-1,2],[-1,3],[0,3],[-1,2],[-1,3],[0,3],[-1,3],[0,3],[0,3],[-1,3],[0,3],[0,3],[0,2],[0,2],[0,1],[0,2],[0,1],[0,2],[1,1],[0,2],[0,2],[0,1],[0,2],[1,2],[0,2],[0,2],[1,1],[0,2],[1,2],[0,2],[0,1],[1,2],[0,2],[1,2],[0,1],[1,2],[1,2],[0,1],[1,2],[1,1],[1,1],[0,2],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,-1],[2,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-2],[1,-1],[0,-2],[1,-2],[1,-2],[0,-2],[1,-3],[1,-2],[1,-3],[0,-2],[1,-3],[1,-3],[1,-3],[0,-3],[1,-3],[1,-3],[1,-3],[1,-3],[1,-3],[0,-3],[1,-4],[1,-3],[1,-3],[1,-3],[0,-3],[1,-3],[1,-3],[1,-3],[1,-3],[1,-3],[0,-3],[1,-3],[1,-2],[1,-3],[0,-3],[1,-2],[1,-2],[1,-2],[1,-2],[0,-2],[1,-2],[1,-1],[0,-2],[1,-1],[2,-4],[2,-1],[1,-2],[1,-2],[1,-1],[1,-2],[2,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[2,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[0,-2],[1,-1],[1,-2],[1,-1],[0,-2],[1,-2],[1,-2],[1,-1],[0,-2],[1,-3],[0,-2],[2,-7],[1,-4],[1,-4],[1,-4],[1,-4],[0,-4],[1,-4],[1,-4],[1,-5],[1,-4],[1,-5],[1,-4],[0,-5],[1,-4],[1,-5],[1,-4],[1,-5],[1,-4],[1,-5],[2,-4],[1,-5],[1,-4],[1,-5],[1,-4],[2,-4],[1,-5],[1,-4],[2,-4],[1,-4],[2,-4],[2,-4],[2,-3],[1,-4],[2,-4],[2,-3],[2,-3],[2,-3],[2,-3],[3,-3],[2,-3],[3,-2],[2,-2],[3,-2],[3,-2],[2,-2],[3,-2],[3,-1],[4,-1],[3,-1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[4,3],[2,2],[2,2],[1,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[1,2],[2,2],[2,2],[2,2],[2,2],[2,1],[2,2],[2,2],[2,1],[1,1],[2,2],[2,1],[2,1],[2,1],[1,1],[2,1],[2,0],[2,1],[1,0],[2,0],[2,1],[1,-1],[2,0],[1,0],[2,-1],[1,0],[2,-1],[1,-1],[2,-2],[1,-1],[2,-2],[1,-2],[0,2],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-2],[1,-1],[0,-2],[1,-2],[1,-2],[1,-2],[1,-2],[1,-2],[1,-2],[1,-2],[1,-3],[1,-2],[1,-3],[2,-2],[1,-2],[1,-3],[1,-2],[1,-3],[2,-2],[1,-3],[1,-2],[1,-3],[2,-2],[1,-3],[1,-2],[1,-2],[1,-2],[1,-3],[1,-2],[1,-2],[1,-2],[1,-1],[1,-2],[1,-2],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[4,1],[2,1],[2,1],[1,1],[2,1],[2,1],[2,1],[2,2],[2,1],[1,1],[2,1],[2,1],[2,1],[1,2],[2,1],[2,1],[2,1],[1,2],[2,1],[2,1],[1,2],[2,1],[2,2],[2,1],[1,1],[2,2],[2,1],[1,2],[2,1],[1,2],[2,2],[2,1],[1,2],[2,1],[1,2],[2,2],[2,1],[1,2],[2,2],[1,1],[2,2],[1,2],[2,2],[1,1],[2,2],[1,2],[2,2],[1,2],[2,1]],[[3130,7907],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[3976,7969],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0]],[[6180,4324],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[3768,7957],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1]],[[4808,8055],[1,0],[0,-1],[1,0],[0,-1],[1,0],[4,-3],[2,-2],[1,-2],[1,-2],[1,-1],[1,-2],[1,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-2,-1],[-1,-2],[-2,-2],[-2,-2],[-2,-1],[-2,-2],[-2,-2],[-2,-1],[-3,-2],[-2,-1],[-2,-2],[-3,-1],[-2,-2],[-3,-1],[-3,-1],[-2,-2],[-3,-1],[-3,-1],[-3,-1],[-2,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-2,-1],[-3,0],[-3,-1],[-3,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-3,1],[-1,1],[-1,0],[-2,1],[-1,1],[-1,1],[-1,0],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,2],[-1,1],[0,1],[-1,1],[-1,1],[-1,2],[0,1],[-1,1],[-1,1],[0,2],[-1,1],[-1,1],[0,2],[-1,1],[0,2],[-1,1],[0,1],[-1,2],[0,1],[0,2],[-1,1],[0,1],[-1,2],[0,1],[0,2],[0,1],[-1,2],[0,1],[0,2],[-1,1],[0,2],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[4,0],[2,0],[2,0],[2,0],[2,0],[2,0],[3,0],[2,0],[2,0],[3,0],[2,0],[3,0],[2,0],[3,0],[2,0],[3,1],[3,0],[2,0],[3,0],[3,0],[2,-1],[3,0],[3,0],[2,0],[3,0],[3,0],[3,0],[2,0],[3,0],[2,-1],[3,0],[3,0],[2,0],[3,-1],[2,0],[2,0],[3,-1],[2,0],[2,0],[3,-1],[2,0],[2,-1],[2,-1],[2,0],[2,-1],[1,-1],[2,0],[2,-1],[1,-1]],[[3321,5856],[-6,-2],[-3,-1],[-3,0],[-3,-1],[-2,-1],[-3,0],[-3,-1],[-3,-1],[-3,-1],[-3,0],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-2,0],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-2,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-2,-1],[-3,-1],[-3,-2],[-3,-1],[-3,-1],[-2,-2],[-3,-1],[-3,-1],[-3,-2],[-3,-1],[-2,-2],[-3,-1],[-3,-2],[-3,-1],[-2,-2],[-3,-2],[-3,-2],[-2,-1],[-3,-2],[-3,-2],[-2,-2],[-3,-2],[-1,-1],[-2,-1],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-2,2],[-1,2],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[1,2],[0,1],[0,2],[0,1],[0,2],[0,1],[1,1],[0,2],[0,1],[0,2],[0,1],[1,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[1,1],[0,2],[0,1],[0,2],[0,1],[-1,7],[0,4],[0,3],[-1,4],[0,3],[0,4],[-1,3],[0,4],[0,4],[-1,3],[0,4],[-1,3],[0,4],[-1,4],[0,3],[0,4],[-1,3],[0,4],[0,4],[0,3],[-1,4],[0,3],[0,4],[0,3],[0,3],[0,4],[1,3],[0,3],[0,3],[1,4],[0,3],[1,3],[1,3],[1,3],[1,3],[1,2],[1,3],[1,3],[2,2],[2,3],[1,2],[2,2],[2,3],[3,2],[2,2],[3,2],[2,1],[3,2],[4,2],[4,2],[3,1],[2,0],[2,1],[2,0],[2,0],[2,0],[2,0],[2,0],[2,-1],[2,0],[1,-1],[2,0],[2,-1],[1,-1],[2,-1],[1,-1],[2,-2],[1,-1],[1,-1],[2,-2],[1,-1],[1,-2],[2,-2],[1,-2],[1,-1],[1,-2],[2,-2],[1,-2],[1,-2],[1,-2],[1,-2],[2,-2],[1,-2],[1,-2],[1,-2],[1,-2],[2,-3],[1,-2],[1,-2],[1,-2],[2,-2],[1,-2],[1,-2],[2,-2],[1,-2],[2,-2],[1,-1],[2,-2],[4,-5],[3,-2],[2,-2],[3,-2],[2,-1],[3,-1],[3,-1],[2,-1],[3,-1],[3,0],[3,-1],[3,0],[2,0],[3,0],[3,0],[3,1],[3,0],[3,1],[3,0],[3,1],[3,1],[3,1],[3,1],[3,2],[3,1],[3,1],[3,1],[3,2],[3,1],[3,2],[3,2],[3,1],[3,2],[3,1],[3,2],[3,2],[3,1],[3,2],[3,2],[2,1],[3,2],[3,1],[3,2],[2,2],[3,1],[3,1],[2,2],[3,1],[2,1],[3,1],[2,1],[2,1],[1,0],[2,1],[2,0],[1,1],[2,0],[2,1],[1,0],[2,0],[2,1],[1,0],[2,0],[2,1],[1,0],[2,0],[2,0],[1,1],[2,0],[2,0],[2,0],[1,0],[2,1],[2,0],[1,0],[2,0],[2,0],[1,1],[2,0],[2,0],[1,0],[2,1],[2,0],[1,0],[2,0],[2,1],[2,0],[1,1],[2,0],[2,0],[1,1],[2,0],[1,1],[2,1],[2,0],[1,1],[2,1],[2,0],[3,2],[2,1],[1,1],[2,1],[2,1],[1,1],[2,1],[2,1],[1,1],[2,1],[1,1],[2,1],[2,1],[1,1],[2,1],[2,2],[1,1],[2,1],[1,1],[2,2],[1,1],[2,1],[2,2],[1,1],[2,1],[1,1],[2,2],[2,1],[1,2],[2,1],[1,1],[2,2],[1,1],[2,1],[1,2],[2,1],[2,1],[1,2],[2,1],[1,1],[2,2],[1,1],[2,1],[1,2],[2,1],[1,1],[2,2],[1,1],[2,1],[4,3],[2,2],[2,3],[3,2],[2,3],[3,3],[3,3],[3,4],[3,4],[4,4],[3,4],[4,4],[3,4],[4,5],[4,5],[3,5],[4,5],[4,5],[4,5],[3,5],[4,6],[4,5],[3,6],[4,5],[4,6],[3,5],[4,6],[3,6],[3,6],[3,5],[3,6],[3,6],[3,5],[2,6],[3,5],[2,6],[2,5],[2,5],[1,6],[1,5],[1,5],[1,4],[1,5],[0,5],[0,4],[0,4],[-1,4],[-1,4],[-1,4],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,2],[1,1],[1,2],[1,2],[1,2],[2,2],[1,2],[5,6],[2,2],[3,2],[2,2],[2,2],[3,2],[3,2],[2,1],[3,1],[3,1],[2,1],[3,1],[3,1],[3,1],[3,0],[3,1],[3,0],[3,0],[3,0],[3,0],[3,0],[3,0],[3,0],[3,0],[3,-1],[3,0],[3,0],[3,-1],[3,0],[3,0],[3,-1],[3,0],[3,-1],[3,0],[3,-1],[3,0],[3,0],[3,-1],[3,0],[3,0],[2,0],[3,0],[3,0],[3,0],[3,0],[2,0],[3,0],[3,0],[2,1],[7,2],[3,1],[3,1],[3,1],[4,1],[3,2],[3,1],[3,2],[3,2],[3,1],[3,2],[3,2],[3,2],[3,2],[3,3],[3,2],[3,2],[3,3],[3,2],[3,3],[3,2],[3,3],[2,3],[3,3],[3,2],[3,3],[2,3],[3,3],[3,3],[3,3],[2,3],[3,3],[3,3],[2,3],[3,3],[2,4],[3,3],[3,3],[2,3],[3,3],[2,3],[3,3],[2,3],[3,3],[2,4],[3,3],[2,3],[3,3],[2,3],[4,5],[2,3],[2,2],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[1,4],[2,3],[2,3],[2,3],[2,3],[2,4],[2,3],[1,3],[2,3],[2,3],[2,3],[2,4],[2,3],[2,3],[2,3],[2,3],[2,3],[1,3],[2,3],[2,3],[2,3],[2,3],[3,3],[2,3],[2,2],[2,3],[2,3],[2,2],[2,3],[2,2],[3,3],[2,2],[2,2],[3,2],[6,6],[3,2],[3,2],[3,2],[3,1],[3,2],[3,1],[2,1],[3,0],[3,1],[2,0],[3,0],[2,0],[3,-1],[2,-1],[2,0],[3,-1],[2,-2],[2,-1],[2,-1],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[1,-3],[2,-2],[2,-3],[1,-3],[2,-2],[1,-3],[2,-4],[1,-3],[1,-3],[1,-3],[2,-4],[1,-3],[1,-4],[1,-4],[1,-3],[1,-4],[0,-4],[1,-4],[1,-4],[1,-4],[0,-4],[1,-4],[0,-4],[1,-4],[0,-6],[1,-3],[0,-4],[0,-3],[0,-3],[0,-3],[0,-4],[0,-3],[0,-3],[-1,-4],[0,-3],[0,-4],[0,-3],[-1,-3],[0,-4],[0,-3],[-1,-4],[0,-3],[-1,-4],[0,-3],[-1,-4],[0,-3],[-1,-3],[-1,-4],[0,-3],[-1,-4],[-1,-3],[0,-4],[-1,-3],[-1,-3],[-1,-4],[0,-3],[-1,-3],[-1,-4],[-1,-3],[-1,-3],[0,-3],[-1,-3],[-1,-4],[-1,-3],[-1,-3],[-1,-3],[-1,-3],[0,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-2],[-1,-3],[-2,-6],[-1,-3],[-1,-3],[-1,-2],[-1,-3],[-1,-2],[-1,-3],[-2,-2],[-1,-2],[-1,-2],[-1,-2],[-2,-2],[-1,-2],[-1,-2],[-2,-2],[-1,-2],[-2,-1],[-1,-2],[-2,-1],[-1,-2],[-2,-1],[-1,-2],[-2,-1],[-2,-1],[-1,-1],[-2,-2],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-1,0],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,0],[-3,-1],[-10,-3],[-5,-2],[-5,-2],[-5,-2],[-5,-2],[-5,-3],[-5,-2],[-5,-3],[-5,-2],[-5,-3],[-5,-3],[-5,-3],[-5,-3],[-5,-3],[-4,-3],[-5,-3],[-5,-3],[-5,-4],[-4,-3],[-5,-3],[-5,-4],[-4,-3],[-5,-3],[-5,-4],[-4,-3],[-5,-4],[-5,-3],[-4,-4],[-5,-3],[-5,-4],[-4,-3],[-5,-3],[-5,-4],[-5,-3],[-4,-3],[-5,-4],[-5,-3],[-4,-3],[-5,-3],[-5,-3],[-5,-3],[-5,-3],[-5,-3],[-4,-2],[-5,-3],[-5,-3],[-5,-2],[-5,-2],[-5,-3],[-11,-5],[-5,-3],[-4,-3],[-5,-3],[-4,-4],[-4,-4],[-4,-4],[-4,-4],[-3,-4],[-4,-4],[-3,-5],[-3,-5],[-3,-5],[-3,-5],[-3,-5],[-3,-5],[-3,-6],[-2,-5],[-3,-6],[-2,-5],[-3,-6],[-2,-6],[-3,-5],[-2,-6],[-2,-6],[-3,-6],[-2,-5],[-2,-6],[-3,-6],[-2,-6],[-2,-6],[-3,-5],[-2,-6],[-3,-6],[-3,-5],[-2,-5],[-3,-6],[-3,-5],[-3,-5],[-3,-5],[-4,-5],[-3,-5],[-3,-5],[-4,-4],[-4,-4],[-4,-5],[-4,-4],[-4,-3],[-5,-4],[-3,-2],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-2,0],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-1,0],[-2,-1],[-2,-1],[-1,-1],[-2,0],[-2,-1],[-2,-1],[-1,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-1,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-1,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-1,-1],[-2,0],[-2,0],[-2,0],[-2,-1],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-4,0],[-2,0],[-2,0],[-2,1],[-1,0],[-2,0],[-2,1],[-2,0],[-2,1],[-1,0],[-2,0],[-2,1],[-2,0],[-2,1],[-1,1],[-2,0],[-2,1],[-2,0],[-2,1],[-1,0],[-2,1],[-2,1],[-2,0],[-1,1],[-2,0],[-2,1],[-2,1],[-2,0],[-1,1],[-2,0],[-2,0],[-2,1],[-1,0],[-2,1],[-2,0],[-2,0],[-2,1],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,-1],[-2,0],[-2,0]],[[4026,5313],[2,0],[1,0],[1,-1],[2,0],[1,0],[2,-1],[1,-1],[2,-1],[2,0],[2,-1],[1,-1],[2,-2],[2,-1],[2,-1],[2,-2],[2,-1],[2,-1],[2,-2],[2,-2],[3,-1],[2,-2],[2,-2],[2,-1],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[1,-2],[2,-2],[2,-2],[1,-1],[2,-2],[1,-2],[2,-2],[1,-2],[1,-2],[2,-2],[1,-2],[1,-1],[0,-2],[1,-2],[1,-1],[0,-2],[1,-1],[0,-2],[1,-9],[0,-4],[-1,-5],[0,-3],[-1,-4],[-2,-4],[-1,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-2],[-3,-2],[-3,-2],[-3,-2],[-3,-2],[-3,-1],[-3,-2],[-4,-1],[-3,-1],[-4,0],[-3,-1],[-4,0],[-4,-1],[-4,0],[-3,0],[-4,1],[-4,0],[-4,1],[-3,1],[-4,1],[-4,1],[-3,1],[-4,2],[-3,1],[-4,2],[-3,2],[-3,2],[-3,3],[-3,2],[-3,3],[-2,3],[-2,3],[-3,3],[-2,3],[-1,4],[-2,3],[-1,4],[-1,4],[49,83]],[[3204,8216],[-1,-4],[-1,-2],[0,-2],[-1,-2],[-1,-2],[0,-2],[-1,-2],[0,-2],[0,-2],[-1,-2],[0,-2],[0,-2],[-1,-2],[0,-2],[0,-2],[0,-3],[0,-2],[-1,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[1,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-2],[1,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-2],[0,-3],[1,-2],[0,-2],[0,-2],[0,-2],[0,-3],[0,-4],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-3],[0,-2],[1,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-3],[1,-2],[0,-2],[0,-2],[0,-3],[1,-2],[0,-2],[1,-5],[0,-2],[0,-2],[0,-2],[1,-2],[0,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-2,-1],[-1,-2],[-1,-1],[-2,-2],[-1,-1],[-2,-2],[-2,-3],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,1],[-2,0],[-2,0],[-1,4],[-1,2],[-1,1],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,3],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,2],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,2],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,2],[-1,1],[-1,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[-1,2],[0,1],[-1,2],[0,1],[-1,1],[-1,6],[-1,3],[0,2],[-1,3],[0,2],[0,3],[0,2],[0,2],[0,2],[0,1],[0,2],[0,2],[1,1],[0,2],[1,1],[0,1],[1,2],[0,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,0],[1,1],[1,1],[2,0],[1,1],[1,1],[2,0],[1,1],[1,0],[2,1],[1,0],[2,1],[1,0],[2,1],[2,0],[1,0],[2,1],[1,0],[2,1],[2,0],[1,1],[2,1],[2,0],[1,1],[2,1],[3,1],[2,1],[1,0],[2,1],[1,1],[2,0],[1,1],[2,1],[1,0],[2,1],[1,1],[2,1],[1,1],[2,0],[1,1],[1,1],[2,1],[1,1],[2,1],[1,1],[2,1],[1,1],[2,1],[1,0],[1,1],[2,1],[1,1],[1,2],[2,1],[1,1],[2,1],[1,1],[1,1],[2,1],[1,1],[1,1],[2,2],[1,1],[1,1],[2,1],[1,2],[1,1],[1,1],[2,2],[1,1],[1,1],[1,2],[2,1],[1,1],[2,3],[1,2],[2,1],[1,1],[1,2],[1,1],[1,2],[2,1],[1,2],[1,1],[1,2],[2,1],[1,2],[1,1],[1,2],[2,1],[1,2],[1,1],[1,2],[2,1],[1,2],[1,1],[2,1],[1,2],[1,1],[2,2],[1,1],[1,2],[1,1],[2,1],[1,2],[1,1],[2,1],[1,2],[1,1],[2,1],[1,2],[2,1],[1,1],[1,1],[2,1],[1,1],[1,2],[2,1],[1,1],[1,1],[2,1],[1,1],[2,1],[0,-11]],[[6552,5268],[1,1],[0,1],[1,1],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[-6,-6]],[[5419,7679],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-2],[0,-5],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[0,1],[0,2],[-1,3],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[-7,5]],[[2691,6070],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-2],[0,-2],[0,-2],[1,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-3],[-1,-2],[0,-2],[0,-2],[-1,-2],[0,-3],[-1,-2],[0,-2],[-1,-2],[-1,-2],[0,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,1],[-1,0],[-2,1],[-3,2],[-2,1],[-1,1],[-2,1],[-1,2],[-1,1],[-1,1],[-2,2],[-1,1],[-1,2],[-1,2],[-1,1],[0,2],[-1,2],[-1,1],[-1,2],[0,2],[-1,2],[0,1],[0,2],[-1,2],[0,2],[0,2],[0,1],[0,2],[0,2],[0,2],[0,2],[1,1],[0,2],[1,1],[0,2],[1,2],[0,1],[1,2],[1,1],[1,1],[1,2],[1,1],[1,1],[1,1],[2,1],[1,1],[2,1],[1,0],[2,1],[1,0],[2,1],[2,0],[4,0],[-11,6]],[[3716,7891],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-1,0],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-3,-1],[-2,-1],[-2,0],[-2,-1],[-3,-1],[-2,0],[-3,-1],[-2,0],[-3,-1],[-2,-1],[-3,0],[-2,0],[-3,-1],[-2,0],[-3,-1],[-2,0],[-3,0],[-2,0],[-3,-1],[-2,0],[-3,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,1],[-3,0],[-2,0],[-2,1],[-2,0],[-2,1],[-1,0],[-2,1],[-2,0],[-1,1],[-2,1],[-2,2],[-3,2],[-2,2],[-2,2],[-1,2],[-2,3],[-1,1],[-1,2],[-1,2],[-1,2],[0,2],[-1,2],[0,1],[0,2],[1,2],[0,1],[0,2],[1,2],[1,1],[1,1],[1,2],[1,1],[1,2],[1,1],[2,1],[1,1],[2,2],[2,1],[1,1],[2,1],[2,1],[2,1],[2,1],[2,1],[2,1],[2,1],[2,1],[2,0],[2,1],[2,1],[2,1],[2,0],[2,1],[2,1],[2,0],[2,1],[2,0],[2,1],[2,0],[3,1],[59,-51]],[[2827,5128],[3,3],[1,2],[1,2],[2,2],[2,3],[2,2],[2,3],[2,2],[2,3],[3,3],[2,3],[3,2],[3,3],[2,3],[3,3],[3,3],[3,3],[3,2],[3,3],[3,3],[4,2],[3,3],[3,2],[3,3],[3,2],[3,2],[3,2],[4,1],[3,2],[3,1],[3,1],[3,1],[2,1],[3,1],[3,0],[3,0],[2,0],[3,-1],[2,-1],[2,-1],[2,-2],[2,-1],[2,-3],[2,-2],[1,-3],[2,-3],[1,-4],[1,-4],[1,-5],[0,-5],[0,-3],[0,-3],[0,-2],[0,-3],[0,-2],[-1,-3],[0,-2],[-1,-2],[-1,-3],[-1,-2],[0,-2],[-1,-2],[-1,-2],[-2,-3],[-1,-2],[-1,-2],[-1,-1],[-2,-2],[-1,-2],[-2,-2],[-1,-2],[-2,-2],[-1,-1],[-2,-2],[-2,-1],[-1,-2],[-2,-2],[-2,-1],[-2,-2],[-2,-1],[-1,-1],[-2,-2],[-2,-1],[-2,-1],[-2,-2],[-1,-1],[-2,-1],[-2,-1],[-2,-2],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-5,-3],[-2,-2],[-3,-2],[-2,-1],[-2,-2],[-3,-2],[-2,-1],[-2,-2],[-2,-2],[-2,-1],[-2,-2],[-2,-2],[-2,-1],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-1],[-2,-2],[-1,-2],[-2,-2],[-2,-2],[-1,-2],[-2,-3],[-1,-2],[-2,-2],[-1,-2],[-2,-3],[-1,-2],[-1,-3],[-1,-2],[-2,-3],[-1,-2],[-1,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-4],[0,-3],[-1,-4],[-1,-3],[0,-4],[-1,-4],[-1,-4],[0,-4],[-1,-4],[0,-4],[0,-5],[0,-3],[-1,-2],[0,-3],[0,-2],[0,-3],[0,-3],[0,-2],[0,-3],[0,-3],[0,-2],[0,-3],[0,-3],[0,-2],[0,-3],[-1,-2],[0,-3],[0,-3],[0,-2],[0,-3],[0,-2],[-1,-3],[0,-2],[0,-3],[-1,-2],[0,-2],[-1,-3],[0,-2],[-1,-2],[0,-2],[-1,-2],[-1,-2],[0,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[-2,-2],[-1,-2],[-1,-1],[-2,-1],[-1,-2],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-2,0],[-3,-1],[-4,-1],[-2,0],[-1,0],[-2,0],[-2,1],[-2,0],[-1,1],[-2,1],[-1,0],[-1,1],[-2,2],[-1,1],[-1,1],[-1,1],[-2,2],[-1,2],[-1,1],[-1,2],[0,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[0,2],[-1,3],[-1,2],[0,2],[-1,3],[0,2],[-1,3],[0,2],[-1,2],[0,3],[-1,3],[0,2],[-1,3],[0,2],[-1,3],[0,2],[0,2],[-1,3],[0,2],[-1,3],[0,2],[-1,2],[0,3],[0,2],[-1,2],[-1,4],[0,2],[-1,3],[0,2],[0,2],[-1,2],[0,2],[0,2],[0,2],[-1,2],[0,3],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[1,2],[0,2],[0,2],[0,2],[1,2],[0,2],[0,2],[1,2],[0,2],[1,2],[0,2],[1,2],[0,2],[1,2],[0,2],[1,2],[0,2],[1,2],[1,2],[0,1],[1,2],[1,2],[1,2],[1,2],[1,2],[3,8],[2,3],[2,4],[2,3],[2,4],[2,3],[2,4],[2,3],[3,3],[2,3],[2,3],[3,4],[2,3],[3,3],[2,2],[3,3],[2,3],[3,3],[3,3],[2,2],[3,3],[3,3],[2,2],[3,3],[3,2],[3,2],[3,3],[3,2],[3,2],[3,3],[3,2],[2,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,1],[3,2],[3,2],[3,1],[3,2],[3,2],[2,1],[3,2],[-45,-48]],[[3948,5226],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-5,2],[-2,2],[-2,1],[-3,2],[-2,1],[-1,2],[-2,1],[-2,2],[-1,2],[-2,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[0,2],[-1,2],[0,2],[0,3],[0,2],[0,2],[0,2],[0,3],[0,2],[0,2],[1,2],[0,3],[1,2],[1,2],[1,2],[1,2],[1,3],[1,2],[1,2],[1,2],[2,2],[1,2],[2,2],[2,1],[1,2],[2,2],[2,2],[2,1],[2,2],[2,1],[2,2],[3,1],[2,1],[3,2],[2,0],[2,1],[3,1],[2,1],[2,0],[3,1],[2,0],[3,1],[3,1],[2,0],[3,0],[3,1],[3,0],[3,0],[3,1],[3,0],[3,0],[3,0],[3,0],[4,0],[3,-1],[3,0],[3,0],[3,-1],[3,-1],[2,0],[3,-1],[3,-1],[3,-1],[2,-1],[3,-2],[2,-1],[3,-2],[2,-1],[2,-2],[2,-2],[2,-2],[2,-2],[1,-3],[2,-2],[1,-3],[1,-3],[1,-2],[1,-4],[1,-3],[0,-3],[1,-4],[0,-4],[-1,-5],[0,-2],[0,-2],[-1,-3],[0,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[-2,-1],[-1,-2],[-2,-2],[-1,-1],[-2,-1],[-1,-2],[-2,-1],[-2,-1],[-2,-2],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-3,-1],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-3,-1],[-2,0],[-2,-1],[-2,0],[-3,-1],[-2,0],[-2,-1],[-2,0],[-3,0],[-2,0],[-2,-1],[-3,0],[-2,0],[-2,0],[-2,0]],[[6197,5208],[2,-4],[1,-3],[0,-2],[1,-2],[0,-2],[1,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-2],[-1,-2],[0,-2],[0,-2],[-1,-2],[0,-2],[-1,-2],[-1,-2],[0,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-2,0],[-1,-1],[-2,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-2,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[0,1],[1,1],[0,2],[1,1],[0,2],[1,1],[0,1],[2,3],[0,1],[1,1],[1,1],[1,1],[1,2],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,2],[1,1],[1,1],[2,1],[1,1],[1,1],[1,1],[2,1],[1,0],[1,1],[2,1],[1,1],[1,1],[2,0],[1,1],[1,1],[2,0],[1,1],[1,0],[2,1],[1,0],[1,0],[2,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1]],[[6774,7004],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-3,0]],[[2685,5862],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-3],[0,-2],[1,-2],[0,-3],[0,-2],[0,-2],[1,-2],[0,-3],[0,-2],[0,-2],[0,-3],[-1,-2],[0,-2],[0,-3],[0,-2],[-1,-2],[0,-2],[0,-2],[-1,-2],[-1,-3],[0,-2],[-1,-2],[0,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[0,-2],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,1],[-2,0],[-1,1],[-4,2],[-1,1],[-2,1],[-1,1],[-2,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[0,1],[-1,2],[-1,2],[0,2],[-1,2],[0,1],[0,2],[0,2],[-1,2],[0,2],[0,1],[0,2],[1,2],[0,2],[0,1],[1,2],[0,2],[1,1],[0,2],[1,1],[1,2],[0,1],[1,1],[1,2],[1,1],[1,1],[2,1],[1,1],[1,1],[2,1],[1,0],[2,1],[2,0],[2,1],[1,0],[4,0],[-10,6]],[[3175,8220],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,2],[1,1],[0,2],[1,2],[2,3],[10,4]],[[3483,8377],[0,-2],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-3],[1,-2],[1,-1],[1,-2],[0,-2],[1,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[-1,-2],[0,-3],[-1,-2],[0,-2],[-1,-3],[-1,-2],[-1,-2],[0,-3],[-1,-2],[-1,-3],[-1,-3],[-1,-2],[-1,-3],[-2,-2],[-1,-3],[-1,-3],[-1,-2],[-1,-3],[-1,-3],[-1,-2],[-1,-3],[-1,-3],[-1,-3],[-1,-2],[0,-3],[-1,-3],[-1,-3],[0,-3],[-1,-2],[0,-3],[0,-3],[-1,-3],[0,-3],[1,-2],[0,-3],[0,-3],[1,-3],[0,-3],[2,-5],[1,-3],[2,-2],[1,-2],[1,-2],[1,-2],[1,-1],[2,-1],[1,-1],[1,0],[2,-1],[1,0],[1,0],[2,0],[1,0],[2,1],[1,0],[2,1],[1,1],[2,1],[1,1],[2,1],[1,2],[2,1],[2,1],[1,2],[2,1],[2,2],[1,2],[2,1],[2,2],[1,1],[2,2],[2,2],[1,1],[2,2],[2,1],[2,2],[1,1],[2,1],[2,1],[1,2],[2,1],[2,0],[2,1],[1,1],[2,0],[2,1],[2,0],[3,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-2],[0,-1],[1,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[1,-1],[0,-2],[1,-1],[1,-2],[0,-1],[1,-1],[1,-2],[0,-1],[1,-2],[1,-1],[0,-2],[1,-1],[1,-2],[1,-1],[1,-2],[0,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[0,-1],[1,-2],[1,-1],[1,-2],[0,-1],[1,-2],[1,-1],[1,-2],[0,-1],[1,-2],[1,-1],[0,-2],[1,-1],[0,-2],[1,-1],[0,-2],[1,-1],[0,-2],[1,-3],[0,-2],[1,-2],[0,-2],[0,-3],[1,-2],[0,-2],[0,-2],[1,-2],[0,-3],[0,-2],[0,-2],[1,-2],[0,-3],[0,-2],[0,-2],[0,-3],[1,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-2],[1,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[1,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[1,-2],[0,-3],[0,-4],[0,-6],[1,-6],[1,-6],[1,-4],[1,-5],[1,-4],[2,-3],[1,-3],[1,-3],[2,-2],[2,-2],[2,-2],[2,-1],[2,-1],[2,0],[2,-1],[2,0],[2,0],[3,0],[2,1],[3,1],[2,0],[3,1],[2,1],[3,2],[3,1],[2,1],[3,1],[3,2],[3,1],[3,2],[2,1],[3,1],[3,2],[3,1],[2,1],[3,1],[3,0],[2,1],[3,1],[3,0],[2,0],[3,0],[2,-1],[3,-1],[2,-1],[2,-1],[3,-2],[4,-4],[2,-3],[2,-4],[2,-3],[1,-3],[1,-2],[0,-3],[1,-3],[-1,-2],[0,-2],[-1,-3],[-1,-2],[-2,-2],[-1,-2],[-2,-1],[-3,-2],[-2,-2],[-3,-1],[-2,-1],[-3,-2],[-4,-1],[-3,-1],[-3,-1],[-4,-1],[-4,-1],[-3,-1],[-4,-1],[-4,0],[-4,-1],[-4,-1],[-4,0],[-4,-1],[-4,0],[-4,0],[-4,-1],[-4,0],[-3,0],[-4,0],[-4,0],[-3,0],[-3,0],[-4,0],[-3,0],[-3,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,3],[0,3],[0,2],[-1,3],[0,3],[0,3],[-1,2],[0,3],[0,2],[0,3],[-1,3],[0,2],[0,3],[0,3],[-1,2],[0,3],[0,2],[-1,3],[0,2],[0,3],[-1,2],[0,3],[0,2],[-1,3],[0,2],[0,3],[-1,2],[0,3],[-1,2],[0,2],[-1,3],[0,2],[-1,3],[0,2],[-1,3],[0,2],[-1,2],[-1,3],[0,2],[-1,3],[-1,2],[0,2],[-1,3],[-1,2],[-1,3],[-1,2],[0,2],[-1,3],[-2,5],[-1,3],[-2,2],[-1,3],[-2,2],[-1,2],[-1,2],[-2,2],[-1,1],[-2,2],[-2,1],[-1,1],[-2,1],[-2,1],[-2,0],[-1,1],[-2,0],[-2,1],[-2,0],[-2,0],[-2,0],[-1,0],[-2,-1],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,0],[-3,-1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[1,2],[1,1],[0,1],[1,1],[0,2],[1,1],[0,1],[1,2],[0,1],[0,1],[1,2],[0,1],[0,2],[1,1],[0,1],[0,2],[0,1],[1,2],[0,1],[0,2],[0,1],[0,2],[0,1],[1,2],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[1,2],[0,1],[0,2],[0,1],[0,2],[0,1],[1,2],[0,1],[0,2],[0,1],[1,3],[0,2],[1,2],[0,2],[1,2],[0,2],[1,2],[0,2],[0,2],[1,2],[0,2],[1,2],[0,2],[1,1],[0,2],[1,2],[0,2],[0,2],[1,1],[0,2],[1,2],[0,2],[0,2],[1,1],[0,2],[0,2],[1,2],[0,1],[0,2],[0,2],[0,2],[1,2],[0,1],[0,2],[0,2],[0,2],[0,2],[0,2],[0,1],[-1,2],[0,2],[0,2],[0,2],[-1,2],[0,2],[0,2],[-1,2],[0,2],[-1,2],[-1,4],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[0,2],[-1,1],[0,1],[0,2],[0,1],[0,2],[-1,2],[0,1],[0,4],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[2,0],[1,1],[1,0],[1,0],[1,1],[1,0],[2,1],[1,0],[1,1],[1,0],[1,1],[1,0],[2,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[2,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,2],[2,1],[1,1],[1,1],[1,1],[1,1],[1,2],[1,1],[1,1],[1,1],[1,1],[1,1],[1,2],[0,1],[1,1],[1,1],[1,1],[1,1],[1,2],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,0],[2,1],[1,1],[1,0],[1,1],[2,0],[1,1],[2,0],[1,0],[3,1],[-2,0]],[[4547,4800],[-3,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,1],[-2,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-2,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-2,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,2],[0,1],[-1,1],[-1,1],[-1,2],[-1,1],[0,1],[-1,2],[-1,1],[-1,1],[-1,2],[0,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,2],[-2,3],[-1,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1],[-1,2],[-1,1],[-2,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,0],[-2,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-2,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,2],[0,1],[-1,2],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-3,3],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-2,1],[-1,0],[-2,1],[-1,1],[-1,1],[-2,1],[-1,0],[-2,1],[-1,1],[-2,1],[-1,0],[-1,1],[-2,1],[-1,0],[-2,1],[-1,1],[-2,0],[-1,1],[-2,1],[-1,1],[-1,0],[-2,1],[-1,1],[-2,0],[-1,1],[-2,1],[-1,0],[-1,1],[-2,1],[-1,0],[-2,1],[-1,1],[-1,1],[-2,0],[-1,1],[-3,2],[-1,1],[-2,1],[-1,1],[-2,1],[-2,2],[-1,1],[-2,1],[-2,2],[-2,1],[-2,2],[-1,1],[-2,2],[-2,2],[-2,2],[-2,1],[-2,2],[-2,2],[-2,2],[-2,2],[-3,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,3],[-1,2],[-2,2],[-2,2],[-2,2],[-2,2],[-1,2],[-2,2],[-2,2],[-1,2],[-2,2],[-1,2],[-2,2],[-1,2],[-1,2],[-2,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,2],[-1,4],[-1,2],[-1,2],[0,2],[-1,3],[0,2],[-1,3],[0,2],[0,3],[0,3],[0,2],[-1,3],[0,3],[1,3],[0,2],[0,3],[0,3],[0,2],[1,3],[0,3],[1,2],[0,3],[1,2],[0,2],[1,3],[1,2],[1,2],[1,2],[1,2],[1,2],[1,1],[1,2],[1,1],[1,1],[1,1],[2,1],[1,1],[2,0],[1,1],[2,0],[1,0],[2,-1],[1,0],[2,-1],[2,-1],[2,-1],[2,-2],[2,-1],[2,-2],[1,-2],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[3,-6],[1,-2],[2,-3],[1,-3],[2,-2],[2,-3],[1,-2],[2,-3],[1,-2],[2,-3],[2,-2],[1,-2],[2,-2],[2,-3],[2,-2],[1,-2],[2,-2],[2,-2],[2,-2],[2,-2],[1,-2],[2,-2],[2,-1],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-1],[2,-2],[2,-2],[2,-2],[2,-1],[1,-2],[2,-2],[2,-1],[2,-2],[2,-2],[2,-2],[2,-1],[2,-2],[2,-2],[2,-2],[2,-1],[2,-2],[2,-2],[2,-2],[2,-2],[2,-1],[2,-3],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[0,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-2],[2,-2],[1,-2],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[2,-1],[1,-1],[5,-5],[3,-2],[3,-3],[3,-2],[3,-2],[3,-3],[3,-2],[3,-2],[3,-2],[3,-2],[3,-3],[2,-2],[3,-2],[4,-2],[3,-2],[3,-2],[3,-2],[3,-2],[3,-2],[3,-2],[3,-2],[3,-1],[3,-2],[3,-2],[3,-2],[3,-2],[4,-1],[3,-2],[3,-2],[3,-1],[3,-2],[3,-2],[3,-1],[4,-2],[3,-2],[3,-1],[3,-2],[3,-2],[4,-1],[3,-2],[3,-1],[3,-2],[3,-1],[3,-2],[4,-1],[3,-2],[3,-2],[3,-1],[3,-2],[5,-2],[3,-1],[3,0],[2,-1],[3,0],[2,0],[3,-1],[2,0],[3,0],[2,1],[3,0],[2,0],[3,1],[2,0],[3,1],[2,0],[2,1],[3,1],[2,0],[3,1],[2,1],[3,1],[2,0],[3,1],[2,1],[2,1],[3,0],[2,1],[3,1],[2,0],[3,1],[2,0],[3,1],[2,0],[2,0],[3,1],[2,0],[3,0],[2,0],[3,-1],[2,0],[2,-1],[3,0],[2,-1],[3,-1],[2,-1],[3,-1],[2,-2],[3,-1],[2,-2],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,0]],[[6168,7573],[0,-4],[1,-5],[0,-4],[0,-5],[0,-4],[0,-5],[0,-4],[0,-5],[0,-5],[0,-4],[0,-5],[0,-5],[0,-4],[0,-5],[0,-5],[-1,-4],[0,-5],[0,-4],[-1,-5],[0,-4],[-1,-4],[0,-5],[-1,-4],[-1,-4],[-1,-4],[-1,-4],[-1,-4],[-1,-3],[-1,-4],[-1,-4],[-2,-3],[-1,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-2],[-2,-3],[-3,-2],[-2,-2],[-3,-2],[-3,-1],[-3,-2],[-3,-1],[-3,-1],[-4,-1],[-3,-1],[-4,0],[-8,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,2],[0,2],[-1,1],[0,2],[0,2],[0,1],[-1,2],[0,2],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,2],[1,1],[0,2],[0,1],[0,2],[1,1],[0,2],[0,1],[1,2],[0,1],[1,1],[0,2],[1,1],[0,1],[1,2],[0,1],[1,1],[1,1],[1,2],[0,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,0],[1,1],[1,1],[2,1],[0,2],[1,1],[0,1],[0,2],[0,1],[0,1],[1,2],[0,1],[0,2],[0,1],[1,1],[0,2],[0,1],[1,1],[0,2],[0,1],[1,1],[0,2],[1,1],[0,1],[0,2],[1,1],[0,1],[1,2],[0,1],[1,1],[0,2],[0,1],[1,1],[0,2],[1,1],[0,1],[1,1],[0,2],[1,1],[0,1],[0,1],[1,2],[0,1],[1,1],[0,1],[1,2],[0,1],[0,1],[1,1],[0,2],[0,1],[1,1],[0,2],[1,2],[0,2],[1,2],[0,1],[0,2],[0,2],[1,1],[0,2],[0,2],[0,2],[0,1],[1,2],[0,2],[0,2],[0,1],[0,2],[0,2],[1,1],[0,2],[0,1],[0,2],[0,2],[1,1],[0,2],[0,1],[0,2],[1,1],[0,1],[1,2],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[0,1],[2,1],[1,0],[1,1],[1,0],[1,1],[2,0],[1,1],[2,0],[1,0],[4,0],[0,-11]],[[6026,5292],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,2],[0,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[2,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,1],[1,2],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,2],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[3,-1],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-2],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[4,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-2],[1,-3],[1,-2],[0,-2],[1,-3],[1,-2],[0,-2],[1,-2],[1,-2],[0,-3],[0,-2],[1,-2],[0,-2],[0,-2],[1,-1],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,-1]],[[3044,6679],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[5,-27],[1,-12],[1,-11],[1,-10],[0,-9],[0,-8],[0,-8],[-1,-6],[-2,-6],[-1,-5],[-2,-5],[-2,-4],[-3,-3],[-2,-2],[-3,-2],[-3,-1],[-3,-1],[-3,0],[-3,0],[-4,1],[-3,1],[-3,2],[-4,2],[-3,3],[-3,2],[-3,3],[-3,4],[-3,3],[-3,4],[-3,4],[-2,4],[-2,4],[-2,4],[-1,5],[-1,4],[-1,5],[-1,4],[0,5],[0,4],[1,4],[2,5],[1,4],[3,4],[2,3],[4,4],[4,3],[4,3],[6,2],[5,2],[-2,28]],[[3185,8145],[2,-2],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-4]],[[3397,8048],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[3137,7872],[0,0]],[[3137,7872],[0,-1]],[[3137,7871],[0,0]],[[3137,7871],[0,0]],[[3137,7871],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[3137,7877],[0,0]],[[3137,7877],[0,0]],[[3137,7877],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[3137,7872],[0,0]],[[3137,7885],[0,0]],[[3137,7885],[0,0]],[[3137,7885],[0,0]],[[3137,7885],[0,-1],[0,-1],[0,-1]],[[3137,7882],[0,0]],[[3137,7882],[0,-1]],[[3137,7881],[0,-1],[0,-1]],[[3137,7879],[0,0]],[[3137,7879],[0,-1]],[[3137,7878],[0,-1]],[[3137,7877],[0,1]],[[3137,7878],[0,0]],[[3137,7878],[0,0]],[[3137,7878],[0,0]],[[3137,7878],[0,1]],[[3137,7879],[0,0]],[[3137,7879],[0,0]],[[3137,7879],[0,0]],[[3137,7879],[0,1]],[[3137,7880],[0,1]],[[3137,7881],[0,0]],[[3137,7881],[0,1]],[[3137,7882],[0,0]],[[3137,7882],[0,0]],[[3137,7882],[0,1]],[[3137,7883],[0,0]],[[3137,7883],[0,0]],[[3137,7883],[0,1]],[[3137,7884],[0,0]],[[3137,7884],[0,0]],[[3137,7884],[0,1]],[[3137,7885],[-1,0],[0,1],[1,0],[0,-1]],[[3421,7571],[3,-7],[1,-4],[1,-3],[1,-3],[2,-4],[1,-3],[2,-3],[1,-3],[1,-4],[2,-3],[2,-3],[1,-3],[2,-3],[2,-4],[1,-3],[2,-3],[2,-3],[2,-3],[1,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-2],[2,-3],[2,-3],[2,-3],[2,-2],[2,-3],[3,-3],[2,-2],[2,-3],[2,-3],[2,-2],[2,-3],[2,-2],[2,-3],[2,-2],[2,-3],[2,-2],[2,-3],[2,-2],[4,-4],[2,-2],[2,-1],[2,-2],[2,-2],[2,-1],[2,-2],[2,-1],[2,-1],[3,-2],[2,-1],[2,-1],[2,-1],[3,-2],[2,-1],[2,-1],[3,-1],[2,-1],[2,-1],[2,-2],[3,-1],[2,-1],[2,-1],[3,-2],[2,-1],[2,-1],[2,-2],[2,-1],[2,-2],[2,-1],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[1,-2],[2,-2],[2,-2],[1,-3],[2,-2],[1,-3],[1,-3],[1,-3],[2,-3],[1,-4],[0,-3],[1,-4],[1,-4],[1,-4],[5,-2],[3,-1],[3,-1],[3,-1],[3,-1],[4,0],[3,0],[4,0],[4,0],[4,0],[4,0],[4,0],[4,1],[5,1],[4,0],[5,1],[4,1],[5,1],[4,1],[5,2],[5,1],[4,1],[5,2],[5,1],[5,1],[5,2],[5,1],[4,2],[5,2],[5,1],[5,2],[4,1],[5,2],[5,2],[4,1],[5,2],[4,1],[5,2],[4,1],[5,2],[4,1],[4,1],[4,2],[4,1],[3,1],[4,1],[4,1],[3,1],[3,0],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[2,1],[1,1],[2,0],[1,1],[2,1],[2,2],[2,1],[1,1],[2,1],[2,1],[2,2],[2,1],[2,1],[2,2],[2,1],[2,2],[2,1],[2,2],[2,1],[2,2],[2,1],[2,1],[2,2],[2,1],[1,1],[2,2],[2,1],[1,1],[2,1],[1,1],[1,1],[2,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,0],[6,5],[3,3],[3,3],[4,2],[3,3],[3,3],[4,3],[3,3],[3,3],[4,3],[3,3],[4,3],[3,3],[3,3],[4,4],[3,3],[4,4],[3,3],[3,4],[3,3],[4,4],[3,3],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[2,4],[3,4],[3,5],[2,4],[2,4],[3,5],[2,4],[2,5],[2,4],[2,5],[1,5],[2,5],[1,5],[2,5],[1,5],[1,5],[1,5],[0,5],[1,5],[0,6],[0,5],[1,10],[0,4],[0,4],[-1,4],[0,4],[0,4],[0,4],[0,3],[0,4],[-1,3],[0,3],[-1,3],[0,3],[0,3],[-1,2],[-1,3],[0,2],[-1,3],[-1,2],[0,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[-2,2],[-1,1],[-1,2],[-2,1],[-1,2],[-2,1],[-1,1],[-2,2],[-2,1],[-1,1],[-2,1],[-2,2],[-2,1],[-2,1],[-2,1],[-3,2],[-2,1],[-2,1],[-3,1],[-2,2],[-3,1],[-3,1],[-3,2],[-4,2],[-2,1],[-3,2],[-2,1],[-2,2],[-2,1],[-2,2],[-2,1],[-2,2],[-2,2],[-2,1],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-1,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-1,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-1,2],[-2,2],[-2,2],[-2,2],[-2,1],[-2,2],[-2,2],[-2,2],[-2,1],[-2,2],[-2,2],[-1,1],[-2,2],[-3,1],[-2,1],[-2,2],[-2,1],[-4,2],[-2,1],[-3,1],[-2,1],[-2,1],[-2,0],[-3,1],[-2,0],[-2,1],[-3,0],[-2,1],[-3,0],[-2,0],[-2,0],[-3,0],[-2,0],[-3,0],[-2,0],[-3,0],[-2,0],[-2,0],[-3,0],[-2,0],[-3,0],[-2,-1],[-3,0],[-2,0],[-3,0],[-2,0],[-3,-1],[-2,0],[-3,0],[-2,0],[-3,-1],[-2,0],[-3,0],[-2,0],[-2,0],[-3,0],[-2,0],[-3,0],[-2,0],[-3,0],[-2,0],[-2,0],[-3,0],[-2,1],[-2,0],[-2,0],[-5,1],[-3,1],[-2,1],[-3,0],[-2,1],[-3,0],[-2,1],[-2,1],[-3,1],[-2,0],[-3,1],[-2,1],[-3,1],[-2,1],[-3,1],[-2,1],[-3,1],[-2,1],[-3,1],[-2,1],[-3,1],[-2,2],[-3,1],[-2,1],[-2,1],[-3,2],[-2,1],[-3,2],[-2,1],[-2,2],[-2,1],[-3,2],[-2,2],[-2,1],[-2,2],[-3,2],[-2,2],[-2,2],[-2,2],[-2,1],[-2,2],[-2,3],[-2,2],[-2,2],[-2,2],[-1,2],[-2,3],[-2,2],[-2,2],[6,2],[3,1],[3,1],[3,1],[2,0],[3,0],[4,1],[3,0],[3,0],[3,0],[3,0],[3,0],[3,0],[3,0],[4,0],[3,-1],[3,0],[3,0],[4,-1],[3,0],[3,-1],[4,0],[3,-1],[3,-1],[4,0],[3,-1],[3,0],[4,-1],[3,-1],[3,0],[4,-1],[3,0],[3,-1],[4,0],[3,-1],[3,0],[4,-1],[3,0],[3,-1],[3,0],[4,0],[3,0],[3,-1],[3,0],[3,0],[3,0],[3,1],[3,0],[3,0],[6,1],[3,0],[3,0],[3,1],[2,0],[3,0],[2,0],[3,0],[2,0],[3,0],[2,0],[3,0],[2,0],[2,0],[3,0],[2,0],[2,0],[2,-1],[2,0],[2,0],[3,-1],[2,0],[2,-1],[2,0],[2,-1],[2,0],[2,-1],[2,0],[2,-1],[2,-1],[2,-1],[2,-1],[2,0],[2,-1],[3,-1],[2,-1],[2,-1],[2,-2],[2,-1],[2,-1],[3,-1],[2,-2],[2,-1],[3,-1],[2,-2],[3,-1],[2,-2],[3,-1],[2,-2],[6,-4],[3,-2],[3,-2],[4,-2],[3,-2],[3,-2],[3,-2],[3,-2],[4,-2],[3,-2],[3,-2],[4,-3],[3,-2],[3,-2],[3,-2],[4,-3],[3,-2],[3,-3],[3,-2],[4,-3],[3,-2],[3,-3],[3,-3],[3,-3],[3,-3],[3,-2],[3,-3],[2,-4],[3,-3],[3,-3],[2,-3],[3,-4],[2,-3],[3,-4],[2,-3],[2,-4],[2,-4],[2,-4],[2,-4],[2,-4],[1,-4],[2,-5],[1,-4],[2,-5],[1,-4],[1,-5],[1,-5],[0,-5],[1,-5],[1,-5],[0,-2],[0,-2],[1,-2],[0,-2],[0,-3],[1,-2],[0,-2],[1,-2],[0,-2],[0,-2],[1,-2],[0,-2],[1,-3],[0,-2],[1,-2],[0,-2],[1,-2],[0,-2],[1,-2],[1,-2],[0,-2],[1,-3],[0,-2],[1,-2],[0,-2],[1,-2],[0,-2],[1,-2],[0,-2],[1,-2],[0,-3],[1,-2],[0,-2],[1,-2],[0,-2],[0,-2],[1,-2],[0,-2],[1,-3],[0,-2],[0,-2],[0,-2],[1,-2],[0,-2],[0,-3],[0,-2],[0,-2],[1,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-2],[1,-1],[0,-2],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[2,-4],[1,-2],[1,-3],[1,-2],[0,-2],[1,-2],[1,-2],[0,-2],[1,-3],[0,-2],[1,-2],[0,-3],[1,-2],[0,-2],[1,-3],[0,-2],[1,-2],[0,-3],[0,-2],[1,-3],[0,-2],[1,-2],[0,-3],[0,-2],[1,-2],[0,-3],[1,-2],[0,-3],[1,-2],[0,-2],[0,-3],[1,-2],[1,-2],[0,-2],[1,-3],[0,-2],[1,-2],[1,-2],[0,-2],[1,-3],[1,-2],[1,-2],[1,-2],[1,-2],[1,-2],[1,-2],[1,-1],[1,-2],[1,-2],[2,-3],[2,-2],[1,-2],[2,-2],[1,-2],[2,-2],[1,-2],[2,-2],[1,-1],[2,-2],[2,-2],[2,-2],[1,-3],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[2,-1],[2,-2],[2,-2],[2,-2],[2,-2],[2,-1],[2,-2],[2,-2],[2,-1],[2,-2],[2,-1],[2,-2],[2,-1],[2,-1],[2,-1],[2,-2],[2,-1],[1,-1],[2,-1],[2,-1],[1,0],[4,-2],[2,-1],[2,0],[2,-1],[2,0],[1,-1],[2,0],[2,0],[2,0],[2,-1],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,1],[2,0],[1,0],[2,0],[2,0],[2,1],[2,0],[2,0],[2,0],[2,1],[2,0],[1,0],[2,0],[2,0],[2,1],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,-1],[2,0],[2,-1],[6,-1],[3,-1],[2,-1],[3,-2],[2,-1],[3,-1],[2,-2],[2,-1],[2,-2],[2,-2],[2,-2],[2,-1],[2,-2],[2,-2],[2,-3],[2,-2],[1,-2],[2,-2],[2,-2],[1,-3],[2,-2],[1,-3],[2,-2],[1,-2],[2,-3],[1,-3],[2,-2],[1,-3],[1,-2],[2,-3],[1,-3],[2,-2],[1,-3],[1,-3],[2,-2],[1,-3],[2,-3],[1,-2],[2,-3],[1,-2],[2,-3],[1,-3],[2,-2],[2,-3],[2,-2],[1,-2],[2,-3],[2,-2],[2,-2],[2,-3],[1,-1],[2,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[3,-3],[1,-2],[1,-2],[1,-2],[2,-2],[1,-1],[1,-2],[1,-2],[1,-2],[2,-1],[1,-2],[1,-2],[1,-2],[2,-1],[1,-2],[1,-2],[1,-2],[1,-1],[2,-2],[1,-2],[1,-2],[1,-1],[1,-2],[2,-2],[1,-2],[1,-1],[1,-2],[1,-2],[2,-2],[1,-2],[1,-1],[1,-2],[1,-2],[2,-2],[1,-2],[1,-2],[1,-2],[1,-1],[1,-2],[1,-2],[1,-2],[1,-2],[2,-2],[1,-2],[1,-2],[1,-2],[1,-2],[1,-2],[1,-2],[1,-2],[0,-2],[1,-1],[1,-1],[0,-2],[1,-2],[0,-1],[1,-2],[0,-2],[1,-1],[1,-2],[0,-2],[1,-2],[0,-2],[1,-2],[1,-2],[0,-1],[1,-2],[0,-2],[1,-2],[1,-2],[0,-2],[1,-2],[1,-2],[0,-1],[1,-2],[1,-2],[1,-2],[0,-1],[1,-2],[1,-2],[1,-1],[1,-2],[0,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-2,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-2,5],[-1,3],[-1,2],[-1,3],[-1,2],[-1,3],[-1,2],[-1,2],[-1,3],[-1,2],[-2,2],[-1,3],[-1,2],[-1,2],[-1,2],[-2,2],[-1,2],[-1,2],[-1,2],[-2,2],[-1,2],[-1,2],[-2,2],[-1,2],[-2,2],[-1,2],[-1,2],[-2,2],[-1,1],[-2,2],[-1,2],[-2,2],[-1,2],[-2,1],[-1,2],[-2,2],[-1,2],[-2,1],[-1,2],[-2,2],[-1,1],[-2,2],[-1,2],[-2,2],[-1,1],[-2,2],[-1,2],[-2,1],[-1,2],[-7,8],[-4,4],[-3,3],[-3,4],[-4,4],[-3,3],[-4,4],[-3,4],[-3,3],[-4,4],[-3,3],[-4,4],[-3,3],[-3,3],[-4,4],[-3,3],[-4,3],[-3,4],[-3,3],[-4,3],[-3,3],[-4,4],[-3,3],[-4,3],[-3,3],[-4,3],[-3,3],[-4,3],[-3,3],[-4,2],[-4,3],[-3,3],[-4,3],[-4,3],[-3,2],[-4,3],[-4,3],[-4,2],[-3,3],[-4,2],[-4,3],[-4,2],[-4,3],[-4,2],[-4,2],[-4,3],[-4,2],[-4,2],[-4,3],[-5,2],[-3,1],[-2,2],[-2,1],[-3,1],[-2,1],[-3,2],[-2,1],[-3,1],[-2,1],[-2,1],[-3,1],[-2,2],[-3,1],[-2,1],[-3,1],[-2,1],[-3,1],[-2,1],[-2,1],[-3,1],[-2,1],[-3,1],[-2,1],[-3,1],[-2,1],[-3,1],[-2,1],[-3,1],[-2,1],[-3,1],[-2,1],[-3,1],[-2,0],[-3,1],[-2,1],[-3,1],[-2,0],[-3,1],[-2,1],[-3,0],[-3,1],[-2,1],[-3,0],[-2,1],[-3,0],[-2,1],[-3,0],[-3,1],[-9,2],[-5,1],[-5,1],[-4,1],[-5,2],[-4,1],[-5,1],[-4,2],[-4,2],[-4,1],[-4,2],[-4,2],[-4,2],[-4,1],[-4,2],[-4,2],[-4,1],[-3,2],[-4,2],[-4,2],[-4,1],[-3,2],[-4,1],[-3,2],[-4,1],[-4,1],[-3,1],[-4,1],[-3,1],[-4,1],[-4,1],[-3,0],[-4,0],[-4,1],[-3,0],[-4,0],[-4,-1],[-4,0],[-4,-1],[-3,-1],[-4,-1],[-4,-1],[-4,-2],[-5,-1],[-4,-3],[-4,-2],[-4,-2],[-5,-3],[-4,-3],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-7,-6],[-5,-3],[-4,-3],[-5,-3],[-4,-3],[-5,-2],[-5,-3],[-5,-3],[-6,-2],[-5,-3],[-6,-2],[-5,-2],[-6,-2],[-6,-2],[-6,-3],[-6,-2],[-6,-1],[-6,-2],[-7,-2],[-6,-2],[-6,-2],[-7,-1],[-6,-2],[-6,-1],[-7,-2],[-6,-1],[-7,-2],[-6,-1],[-7,-1],[-6,-2],[-6,-1],[-7,-1],[-6,-1],[-6,-1],[-7,-1],[-6,-2],[-6,-1],[-6,-1],[-6,-1],[-5,0],[-6,-1],[-6,-1],[-5,-1],[-6,-1],[-5,-1],[-5,-1],[-5,-1],[-5,0],[-4,-1],[-1,6],[0,3],[-1,4],[0,2],[-1,3],[-1,3],[-1,3],[-1,3],[-1,2],[-1,3],[-1,2],[-1,3],[-1,2],[-1,3],[-2,2],[-1,2],[-2,2],[-1,2],[-2,2],[-1,2],[-2,2],[-1,2],[-2,2],[-2,2],[-2,2],[-2,2],[-1,1],[-2,2],[-2,2],[-2,1],[-2,2],[-2,1],[-2,2],[-2,1],[-2,1],[-2,2],[-2,1],[-2,2],[-2,1],[-2,1],[-2,1],[-2,2],[-2,1],[-2,1],[-3,1],[-2,1],[-2,2],[-2,1],[-2,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-3,3],[-1,1],[-1,1],[-1,1],[-2,2],[-1,1],[-1,1],[-1,1],[-2,2],[-1,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,2],[-1,1],[-1,1],[-2,0],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-2,1],[-1,0],[-1,1],[-1,1],[-2,1],[-1,1],[-1,0],[-2,1],[-1,1],[-1,0],[-2,1],[-1,1],[-2,1],[-1,0],[-1,1],[-2,1],[-1,0],[-1,1],[-2,4],[-1,2],[-1,2],[-1,2],[-1,2],[-1,3],[-1,2],[-1,2],[-1,2],[-1,2],[-1,3],[-1,2],[-1,2],[-1,2],[-1,2],[-1,3],[-1,2],[-1,2],[-1,3],[-1,2],[-1,2],[-1,3],[-1,2],[-1,2],[-1,3],[-2,2],[-1,2],[-1,3],[-1,2],[-1,3],[-1,2],[-1,3],[-1,2],[-1,3],[-1,2],[-1,3],[-1,2],[-1,3],[-1,2],[-1,3],[-1,2],[-1,3],[-1,3],[-1,2],[-1,3],[-1,3],[-1,2],[-1,3],[-1,3],[-6,1],[-2,1],[-3,1],[-3,1],[-3,2],[-3,1],[-3,2],[-3,2],[-3,1],[-3,3],[-3,2],[-3,2],[-3,2],[-3,3],[-3,2],[-4,3],[-3,2],[-3,3],[-3,3],[-4,3],[-3,3],[-3,3],[-3,3],[-4,3],[-3,3],[-3,3],[-3,3],[-4,3],[-3,3],[-3,3],[-4,3],[-3,3],[-3,3],[-4,3],[-3,3],[-3,3],[-3,3],[-4,2],[-3,3],[-3,3],[-3,2],[-4,2],[-3,3],[-3,2],[-3,2],[-3,2],[-4,2],[-3,2],[-3,2],[-3,2],[-2,1],[-2,0],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-1,2],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,2],[-1,1],[-2,1],[-2,1],[-2,2],[-1,1],[-2,2],[-2,1],[-2,1],[-1,2],[-2,1],[-1,2],[-2,2],[-2,1],[-1,2],[-2,2],[-1,1],[-2,2],[-1,2],[-2,2],[-1,2],[-1,2],[-2,2],[-1,2],[-1,2],[-1,2],[-3,5],[-1,2],[-1,2],[-1,3],[-1,2],[-1,2],[-1,3],[-1,2],[0,2],[-1,3],[-1,2],[-1,2],[-1,2],[-1,2],[-1,3],[-1,2],[-1,2],[0,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,0],[-2,1],[-1,1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-2],[-2,-2],[-2,-1],[-2,-3],[-2,-2],[-2,-3],[-3,-3],[0,6],[0,3],[0,3],[1,2],[0,3],[0,2],[0,2],[0,2],[0,3],[0,2],[0,2],[1,1],[0,2],[0,2],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-2,1],[-1,1],[-1,1],[-1,0],[-2,1],[-1,1],[-2,1],[-1,1],[-2,0],[-2,1],[-2,1],[-2,1],[-2,1],[-3,1],[-2,0],[-2,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[1,2],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[2,5],[1,2],[1,2],[0,2],[1,2],[0,2],[1,3],[0,2],[1,2],[0,2],[0,2],[0,3],[0,2],[0,2],[0,2],[0,3],[-1,2],[0,2],[0,2],[0,2],[-1,3],[0,2],[-1,2],[0,2],[-1,3],[0,2],[-1,2],[0,3],[-1,2],[-1,2],[0,2],[-1,3],[0,2],[-1,2],[0,3],[-1,2],[-1,2],[0,3],[-1,2],[0,3],[-1,2],[0,2],[0,3],[-1,2],[0,3],[0,2],[-1,2],[0,3],[0,2],[1,1],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[3,-4],[1,-2],[1,-1],[1,-3],[1,-2],[1,-2],[1,-2],[1,-2],[1,-3],[1,-2],[1,-2],[1,-3],[1,-2],[0,-3],[1,-2],[1,-3],[1,-3],[1,-2],[0,-3],[1,-3],[1,-2],[1,-3],[0,-2],[1,-3],[1,-3],[1,-2],[0,-3],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[1,-2],[1,-3],[1,-2],[1,-2],[1,-2],[1,-2],[1,-2],[2,-2],[1,-2],[2,-2],[1,-1],[2,-2],[1,-1],[2,-1],[2,-2],[2,-1],[2,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[7,1],[3,1],[4,2],[4,2],[5,3],[4,4],[5,4],[5,5],[5,5],[5,6],[6,6],[5,6],[6,7],[6,6],[6,8],[6,7],[6,7],[6,8],[6,7],[6,8],[7,8],[6,8],[6,7],[7,8],[6,7],[7,7],[6,7],[6,7],[6,7],[7,6],[6,6],[6,5],[6,5],[5,5],[6,4],[6,3],[5,3],[5,3],[5,2],[5,1],[5,0],[5,0],[4,-1],[4,-2],[4,-3],[4,-4],[3,-5],[3,-5],[3,-7],[1,-4],[1,-1],[0,-2],[1,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-7,-6],[-3,-4],[-4,-3],[-3,-3],[-4,-3],[-3,-3],[-4,-3],[-3,-4],[-4,-3],[-3,-3],[-4,-3],[-3,-3],[-4,-3],[-3,-3],[-4,-3],[-3,-2],[-4,-3],[-3,-3],[-4,-3],[-3,-3],[-4,-3],[-3,-3],[-4,-2],[-3,-3],[-4,-3],[-3,-3],[-4,-2],[-4,-3],[-3,-3],[-4,-2],[-4,-3],[-3,-3],[-4,-2],[-3,-3],[-4,-2],[-4,-3],[-4,-2],[-3,-3],[-4,-3],[-4,-2],[-4,-3],[-3,-2],[-4,-3],[-4,-2],[-4,-3],[-4,-2],[-4,-2],[-3,-3],[-4,-2],[3,-2],[1,-1],[1,-2],[2,-1],[1,-1],[2,-1],[1,-2],[1,-1],[2,-1],[1,-2],[1,-1],[1,-2],[2,-2],[1,-1],[1,-2],[1,-2],[1,-1],[1,-2],[1,-2],[2,-2],[1,-2],[1,-1],[1,-2],[1,-2],[1,-2],[0,-2],[1,-3],[1,-2],[1,-2],[1,-2],[1,-2],[1,-2],[0,-3],[1,-2],[1,-2],[1,-2],[0,-3],[1,-2],[1,-2],[0,-3],[1,-2],[0,-3],[1,-2],[0,-3],[1,-2],[0,-3],[1,-2],[0,-3],[0,-2],[12,4],[6,1],[6,1],[5,1],[6,0],[5,0],[6,0],[5,-1],[6,-1],[5,-1],[5,-2],[6,-2],[5,-2],[5,-2],[5,-3],[5,-3],[5,-3],[5,-4],[5,-3],[5,-4],[4,-4],[5,-4],[5,-5],[4,-4],[5,-5],[4,-5],[5,-5],[4,-5],[5,-5],[4,-5],[4,-6],[4,-5],[4,-6],[5,-5],[4,-6],[4,-6],[3,-5],[4,-6],[4,-6],[4,-6],[4,-5],[3,-6],[4,-6],[4,-5],[3,-6],[4,-5],[3,-6],[3,-5],[4,-5],[-1,1],[0,1],[-1,0],[0,1],[1,1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[0,-1],[1,-1],[1,-2],[1,-1],[1,-1],[0,-2],[1,-2],[1,-1],[1,-2],[1,-2],[1,-2],[0,-2],[1,-2],[1,-2],[1,-2],[1,-2],[1,-3],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-27,59]],[[3137,7872],[0,0]],[[3137,7877],[0,0]],[[3137,7877],[0,1]],[[3137,7879],[0,0]],[[3137,7881],[0,1]],[[3137,7882],[0,1],[0,1],[0,1]],[[3137,7885],[0,0]],[[3137,7885],[0,0]],[[3137,7885],[0,1],[-1,0],[0,-1],[1,0]],[[3137,7885],[0,-1]],[[3137,7884],[0,0]],[[3137,7883],[0,0]],[[3137,7883],[0,-1]],[[3137,7882],[0,0]],[[3137,7882],[0,-1]],[[3137,7881],[0,0]],[[3137,7880],[0,-1]],[[3137,7879],[0,0]],[[3137,7879],[0,-1]],[[3137,7878],[0,0]],[[3137,7878],[0,-1]],[[3137,7877],[0,0]],[[3137,7877],[0,0]],[[3137,7871],[0,0]],[[3137,7871],[0,0]],[[3137,7872],[0,0]],[[5210,6045],[-6,-2],[-2,-1],[-3,-1],[-2,-1],[-3,-1],[-3,-1],[-2,-1],[-3,-1],[-3,-1],[-3,-1],[-2,-1],[-3,-1],[-3,-2],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-2,-1],[-3,-1],[-3,-1],[-3,-2],[-3,-1],[-3,-1],[-3,-1],[-3,0],[-3,-1],[-2,-1],[-3,-1],[-3,-1],[-3,0],[-3,-1],[-3,0],[-3,-1],[-3,0],[-3,0],[-2,-1],[-3,0],[-3,0],[-3,0],[-3,1],[-2,0],[-3,0],[-3,1],[-3,0],[-2,1],[-3,1],[-3,1],[-2,1],[-3,1],[-2,2],[-2,1],[-1,1],[-2,1],[-1,1],[-2,2],[-1,1],[-2,2],[-2,1],[-2,2],[-2,2],[-1,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,3],[-1,2],[-2,2],[-2,3],[-2,2],[-1,3],[-2,2],[-1,3],[-2,2],[-1,3],[-1,2],[-1,3],[-1,2],[-1,3],[-1,3],[-1,2],[0,2],[-1,3],[0,2],[0,3],[0,2],[0,2],[0,3],[1,2],[1,2],[1,2],[1,2],[1,2],[2,1],[1,2],[2,2],[3,1],[3,2],[2,1],[2,1],[2,0],[2,0],[2,0],[2,0],[2,0],[2,-1],[1,-1],[2,0],[2,-1],[2,-1],[1,-2],[2,-1],[2,-1],[2,-2],[1,-1],[2,-2],[2,-2],[1,-1],[2,-2],[2,-2],[1,-2],[2,-2],[2,-2],[1,-2],[2,-2],[2,-2],[1,-2],[2,-2],[2,-2],[1,-2],[2,-2],[2,-2],[1,-2],[2,-2],[2,-2],[1,-1],[2,-2],[2,-2],[1,-1],[2,-1],[2,-2],[1,-1],[2,-1],[2,0],[1,-1],[2,-1],[5,-1],[3,0],[3,0],[2,0],[3,0],[3,0],[2,0],[3,0],[3,1],[3,0],[2,1],[3,1],[3,1],[3,0],[3,1],[3,1],[3,1],[2,2],[3,1],[3,1],[3,1],[3,1],[3,2],[3,1],[3,1],[3,1],[3,2],[3,1],[3,1],[3,1],[3,2],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[2,1],[3,1],[3,0],[3,1],[3,1],[3,0],[3,0],[3,1],[3,0],[2,0],[3,0],[3,-1],[8,0],[5,-1],[4,0],[4,0],[4,0],[4,0],[5,0],[4,0],[4,0],[4,0],[4,0],[5,0],[4,0],[4,1],[4,0],[4,0],[4,1],[5,0],[4,0],[4,1],[4,0],[4,0],[5,1],[4,0],[4,0],[4,1],[4,0],[5,0],[4,1],[4,0],[4,0],[4,0],[5,1],[4,0],[4,0],[4,0],[4,0],[5,0],[4,0],[4,0],[4,0],[4,0],[5,0],[4,-1],[4,0],[4,0],[4,-1],[4,0],[5,-1],[4,0],[1,-1],[2,0],[2,0],[2,-1],[2,0],[1,0],[2,-1],[1,0],[2,-1],[1,0],[2,0],[1,-1],[2,0],[1,-1],[2,0],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[1,-1],[1,-1],[2,0],[1,-1],[1,-1],[1,-1],[1,0],[2,-1],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[1,-2],[1,-1],[2,-1],[1,-1],[1,-2],[2,-1],[1,-1],[2,-2],[3,-3],[1,-1],[1,-2],[2,-2],[1,-1],[1,-2],[2,-2],[1,-2],[1,-1],[1,-2],[2,-2],[1,-2],[1,-2],[1,-2],[1,-2],[2,-2],[1,-1],[1,-2],[1,-2],[1,-2],[2,-2],[1,-2],[1,-1],[1,-2],[2,-2],[1,-1],[1,-2],[1,-1],[2,-2],[1,-1],[2,-1],[1,-2],[1,-1],[2,-1],[1,-1],[2,-1],[2,-1],[1,-1],[2,0],[2,-1],[2,0],[1,-1],[2,0],[2,0],[2,0],[2,0],[2,0],[3,1],[2,0],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,2],[2,1],[1,1],[1,2],[2,1],[1,2],[2,2],[1,1],[2,2],[2,2],[1,1],[2,2],[2,2],[1,1],[2,2],[2,2],[1,1],[2,2],[1,2],[2,1],[2,2],[1,1],[2,1],[1,2],[1,1],[2,1],[1,1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,-1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,-6],[0,-3],[0,-3],[-1,-3],[0,-3],[0,-3],[-1,-4],[0,-3],[0,-3],[-1,-3],[0,-3],[0,-3],[-1,-4],[0,-3],[-1,-3],[0,-3],[-1,-4],[0,-3],[-1,-3],[0,-3],[-1,-4],[0,-3],[-1,-3],[-1,-3],[0,-4],[-1,-3],[0,-3],[-1,-3],[-1,-4],[-1,-3],[0,-3],[-1,-3],[-1,-3],[0,-4],[-1,-3],[-1,-3],[-1,-3],[-1,-3],[0,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-2],[-1,-3],[0,-3],[-1,-2],[1,-5],[1,-2],[0,-3],[1,-2],[1,-2],[1,-3],[1,-2],[1,-3],[0,-2],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[2,-2],[1,-3],[1,-2],[1,-3],[1,-2],[1,-2],[1,-3],[2,-2],[1,-2],[1,-3],[1,-2],[2,-2],[1,-3],[1,-2],[1,-2],[2,-2],[1,-3],[1,-2],[2,-2],[1,-2],[1,-2],[2,-2],[1,-2],[2,-2],[1,-2],[1,-2],[2,-2],[1,-2],[1,-1],[2,-2],[1,-2],[2,-1],[1,-2],[1,-2],[2,-1],[1,-2],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,2],[-1,1],[0,1],[-1,1],[-1,2],[-1,1],[-1,2],[-1,2],[-1,2],[-2,2],[-1,2],[-1,3],[-2,2],[-1,3],[-2,2],[-1,3],[-2,3],[-1,3],[-2,3],[-1,3],[-2,2],[-1,3],[-2,3],[-1,3],[-2,3],[-2,3],[-1,3],[-1,3],[-2,3],[-1,3],[-1,3],[-2,2],[-1,3],[-1,3],[-1,2],[-1,2],[-1,3],[-1,2],[-1,2],[0,2],[-1,1],[0,2],[0,1],[-1,1],[0,2],[1,1],[0,1],[-6,-1],[-3,-1],[-3,0],[-2,0],[-3,0],[-3,0],[-3,0],[-2,0],[-3,1],[-2,0],[-3,1],[-2,1],[-3,0],[-2,1],[-2,1],[-3,1],[-2,1],[-2,1],[-3,2],[-2,1],[-2,1],[-3,2],[-2,1],[-2,1],[-2,2],[-2,1],[-3,2],[-2,1],[-2,2],[-2,1],[-2,2],[-3,1],[-2,2],[-2,1],[-3,2],[-2,1],[-2,1],[-2,2],[-3,1],[-2,1],[-3,1],[-2,2],[-3,1],[-2,1],[-3,1],[-2,1],[-3,0],[-3,1],[-3,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-2,2],[-1,1],[-1,1],[-2,2],[-1,1],[-1,2],[-2,1],[-1,2],[-2,1],[-1,2],[-2,1],[-1,2],[-2,1],[-1,1],[-2,2],[-1,1],[-2,2],[-1,1],[-2,1],[-1,2],[-2,1],[-1,1],[-2,1],[-1,2],[-2,1],[-1,1],[-2,1],[-1,1],[-2,0],[-1,1],[-2,1],[-1,1],[-2,0],[-1,1],[-9,2],[-5,1],[-5,1],[-4,1],[-5,1],[-5,1],[-5,1],[-4,1],[-5,0],[-5,1],[-4,0],[-5,1],[-5,0],[-5,1],[-4,0],[-5,0],[-5,0],[-5,0],[-4,0],[-5,0],[-5,0],[-4,0],[-5,0],[-5,0],[-5,-1],[-4,0],[-5,0],[-5,-1],[-5,0],[-4,-1],[-5,-1],[-5,0],[-4,-1],[-5,-1],[-5,-1],[-5,-1],[-4,-1],[-5,-1],[-5,-1],[-4,-1],[-5,-1],[-5,-1],[-4,-1],[-5,-1],[-5,-2],[-5,-1],[-4,-1],[-5,-2],[-4,-1]],[[4999,6126],[0,0]],[[4999,6126],[1,0]],[[5000,6126],[0,0]],[[5000,6126],[0,0]],[[5000,6126],[0,0]],[[5000,6126],[0,0]],[[5000,6126],[0,0]],[[5000,6126],[0,0]],[[5000,6126],[0,0]],[[5000,6126],[0,0]],[[5000,6126],[0,0]],[[5000,6126],[1,0]],[[5001,6126],[0,0]],[[5001,6126],[0,0]],[[5001,6126],[0,0]],[[5001,6126],[0,0]],[[5001,6126],[0,0]],[[5001,6126],[1,0]],[[5002,6126],[0,0]],[[5002,6126],[0,0]],[[5002,6126],[0,0]],[[5002,6126],[0,1]],[[5002,6127],[0,-1]],[[5002,6126],[0,0]],[[5002,6126],[0,-1],[0,-1]],[[5002,6124],[0,0]],[[5002,6124],[0,0]],[[5002,6124],[0,-1]],[[5002,6123],[0,0]],[[5002,6123],[1,0]],[[5003,6123],[0,-1]],[[5003,6122],[0,0]],[[5003,6122],[0,-1]],[[5003,6121],[0,-1]],[[5003,6120],[0,0]],[[5003,6120],[0,-1]],[[5003,6119],[0,-1]],[[5003,6118],[0,0]],[[5003,6118],[0,-1]],[[5003,6117],[0,-1]],[[5003,6116],[-1,0]],[[5002,6116],[0,-1]],[[5002,6115],[0,0]],[[5002,6115],[-1,0]],[[5001,6115],[0,0]],[[5001,6115],[0,-1]],[[5001,6114],[-1,0]],[[5000,6114],[0,0]],[[5000,6114],[0,-1]],[[5000,6113],[-1,0]],[[4999,6113],[0,-1]],[[4999,6112],[0,0]],[[4999,6112],[0,1]],[[4999,6113],[0,0]],[[4999,6113],[0,0]],[[4999,6113],[0,1]],[[4999,6114],[0,1]],[[4999,6115],[0,1]],[[4999,6116],[0,0]],[[4999,6116],[0,1],[0,1]],[[4999,6118],[0,1]],[[4999,6119],[0,1]],[[4999,6120],[0,1],[0,1]],[[4999,6122],[0,0]],[[4999,6122],[0,1]],[[4999,6123],[0,0]],[[4999,6123],[0,1]],[[4999,6124],[0,0]],[[4999,6124],[0,1]],[[4999,6125],[0,1]],[[4999,6126],[0,0]],[[5034,6183],[0,0]],[[5034,6183],[0,0]],[[5034,6183],[0,-1],[1,0]],[[5035,6182],[0,0]],[[5035,6182],[0,-1]],[[5035,6181],[0,-1]],[[5035,6180],[0,-1]],[[5035,6179],[0,-1]],[[5035,6178],[0,0]],[[5035,6178],[0,-1],[1,0],[0,-1]],[[5036,6176],[-1,0]],[[5035,6176],[0,0]],[[5035,6176],[0,1]],[[5035,6177],[0,0]],[[5035,6177],[0,1]],[[5035,6178],[0,0]],[[5035,6178],[0,1]],[[5035,6179],[0,0]],[[5035,6179],[0,0]],[[5035,6179],[0,0]],[[5035,6179],[0,0]],[[5035,6179],[0,0]],[[5035,6179],[0,0]],[[5035,6179],[0,0]],[[5035,6179],[0,0]],[[5035,6179],[0,0]],[[5035,6179],[0,0]],[[5035,6179],[-1,0],[0,1]],[[5034,6180],[0,0]],[[5034,6180],[0,0]],[[5034,6180],[0,0]],[[5034,6180],[0,0]],[[5034,6180],[0,0]],[[5034,6180],[0,0]],[[5034,6180],[0,0]],[[5034,6180],[0,0]],[[5034,6180],[0,0]],[[5034,6180],[0,0]],[[5034,6180],[0,0]],[[5034,6180],[0,0]],[[5034,6180],[0,0]],[[5034,6180],[0,1]],[[5034,6181],[0,0]],[[5034,6181],[0,0]],[[5034,6181],[0,0]],[[5034,6181],[0,0]],[[5034,6181],[0,0]],[[5034,6181],[0,0]],[[5034,6181],[0,0]],[[5034,6181],[0,0]],[[5034,6181],[0,1]],[[5034,6182],[0,0]],[[5034,6182],[0,0]],[[5034,6182],[0,0]],[[5034,6182],[0,0]],[[5034,6182],[0,0]],[[5034,6182],[0,0]],[[5034,6182],[0,0]],[[5034,6182],[0,0]],[[5034,6182],[0,0]],[[5034,6182],[0,1]],[[5034,6183],[0,0]],[[4737,6748],[6,1],[3,0],[3,0],[3,0],[3,0],[3,-1],[3,0],[3,-1],[2,-1],[3,-1],[3,-1],[3,-1],[2,-1],[3,-2],[2,-2],[3,-1],[3,-2],[2,-2],[3,-2],[2,-2],[3,-2],[2,-3],[2,-2],[3,-3],[2,-2],[2,-3],[3,-3],[2,-2],[2,-3],[2,-3],[2,-3],[3,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-4],[2,-3],[2,-3],[1,-3],[2,-3],[2,-3],[2,-3],[2,-3],[1,-3],[2,-3],[1,-2],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[2,-3],[1,-2],[0,-2],[1,-2],[1,-1],[0,-2],[1,-2],[1,-1],[1,-2],[1,-1],[0,-2],[1,-1],[1,-2],[1,-1],[0,-2],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[0,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[2,-1],[1,-2],[4,-4],[2,-3],[2,-2],[2,-2],[2,-3],[2,-2],[2,-3],[3,-2],[2,-2],[2,-3],[3,-2],[2,-3],[3,-3],[2,-2],[3,-3],[2,-2],[2,-3],[3,-2],[2,-3],[3,-3],[2,-2],[3,-3],[2,-3],[3,-3],[2,-2],[2,-3],[3,-3],[2,-3],[2,-3],[2,-2],[3,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[1,-3],[2,-3],[2,-3],[1,-3],[2,-3],[1,-3],[2,-3],[1,-3],[1,-4],[1,-3],[1,-3],[1,-3],[1,-4],[0,-2],[1,-2],[0,-3],[0,-2],[1,-2],[0,-2],[0,-2],[0,-2],[0,-3],[1,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[1,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-3],[0,-2],[1,-2],[0,-2],[0,-4],[1,-2],[0,-3],[0,-2],[1,-2],[0,-2],[0,-2],[1,-2],[0,-2],[1,-2],[0,-3],[0,-2],[1,-2],[0,-2],[1,-2],[0,-2],[0,-2],[1,-2],[0,-2],[1,-2],[0,-2],[0,-2],[1,-2],[0,-2],[0,-2],[1,-2],[0,-3],[0,-2],[0,-2],[1,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-3],[-1,-2],[0,-2],[0,-2],[-1,-3],[0,-2],[-1,-2],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1]],[[5003,6117],[0,1]],[[5003,6118],[0,1]],[[5003,6119],[0,1]],[[5003,6120],[0,1]],[[5003,6121],[0,1]],[[5003,6122],[0,0]],[[5003,6123],[-1,0]],[[5002,6123],[0,1]],[[5002,6124],[0,0]],[[5002,6126],[0,0]],[[5002,6126],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[5034,6181],[0,-1]],[[5034,6180],[0,0]],[[5034,6180],[0,0]],[[5034,6180],[0,0]],[[5034,6180],[0,0]],[[5034,6180],[0,0]],[[5034,6180],[0,0]],[[5034,6180],[0,0]],[[5034,6180],[0,0]],[[5034,6180],[0,-1],[1,0]],[[5035,6179],[0,0]],[[5035,6179],[0,0]],[[5035,6179],[0,0]],[[5035,6179],[0,0]],[[5035,6179],[0,0]],[[5035,6179],[0,0]],[[5035,6178],[0,0]],[[5035,6178],[0,-1]],[[5035,6177],[0,0]],[[5035,6176],[0,0]],[[5035,6176],[1,0]],[[5035,6178],[0,0]],[[5035,6178],[0,1]],[[5035,6180],[0,1]],[[5035,6182],[0,0]],[[5034,6183],[0,0]],[[5034,6183],[0,0]],[[5034,6183],[0,0]],[[5034,6182],[0,0]],[[5034,6182],[0,0]],[[5034,6182],[0,0]],[[5034,6182],[0,0]],[[5034,6182],[0,0]],[[5034,6182],[0,-1]],[[5034,6181],[0,0]],[[5034,6181],[0,0]],[[5034,6181],[0,0]],[[5034,6181],[0,0]],[[5034,6181],[0,0]],[[5034,6181],[0,0]],[[5034,6181],[0,7],[-1,3],[0,4],[0,4],[0,3],[-1,4],[0,3],[0,4],[0,4],[0,3],[0,4],[0,3],[0,4],[0,4],[-1,3],[0,4],[0,3],[0,4],[0,3],[0,4],[0,4],[0,3],[0,4],[0,3],[0,4],[0,3],[0,4],[0,4],[-1,3],[0,4],[0,3],[0,4],[-1,4],[0,3],[0,4],[-1,3],[0,4],[-1,4],[0,3],[-1,4],[-1,3],[-1,4],[0,4],[-1,3],[-1,4],[-1,4],[-1,3],[-1,4],[-2,3],[-2,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,2],[-1,1],[-2,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[-1,2],[-2,2],[-1,1],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-2,3],[-1,2],[-2,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-2,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-2,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-2,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-5,1],[-2,1],[-2,1],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,3],[-1,2],[-2,3],[-1,3],[-2,3],[-1,4],[-1,3],[-2,4],[-1,3],[-1,4],[-1,4],[-1,4],[-2,3],[-1,4],[-1,4],[-1,5],[-1,4],[-1,4],[-1,4],[-1,4],[-2,4],[-1,4],[-1,4],[-1,4],[-1,4],[-2,4],[-1,4],[-2,4],[-1,4],[-2,3],[-1,4],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,2],[-2,3],[-3,2],[-2,2],[-1,2],[0,2],[0,1],[-1,1],[0,2],[0,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[-1,1],[0,2],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,2],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-3,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,1],[-2,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[-2,1],[-1,0],[-1,1],[-2,1],[-1,0],[-1,1],[-1,1],[-2,1],[-1,1],[-1,0],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,7]],[[5002,6127],[0,-1]],[[5002,6126],[0,0]],[[5002,6126],[-1,0]],[[5001,6126],[0,0]],[[5001,6126],[0,0]],[[5001,6126],[-1,0]],[[5000,6126],[0,0]],[[5000,6126],[0,0]],[[5000,6126],[0,0]],[[5000,6126],[0,0]],[[5000,6126],[-1,0]],[[4999,6126],[0,0]],[[4999,6126],[0,-1]],[[4999,6125],[0,-1]],[[4999,6124],[0,0]],[[4999,6123],[0,0]],[[4999,6123],[0,-1]],[[4999,6122],[0,-1],[0,-1]],[[4999,6119],[0,-1]],[[4999,6118],[0,-1],[0,-1]],[[4999,6116],[0,0]],[[4999,6116],[0,-1]],[[4999,6114],[0,-1]],[[4999,6113],[0,0]],[[4999,6113],[0,-1]],[[4999,6112],[0,0]],[[4999,6112],[0,1]],[[5000,6113],[0,1]],[[5000,6114],[1,0]],[[5001,6115],[0,0]],[[5002,6115],[0,0]],[[5002,6116],[1,0]],[[5003,6116],[0,1]],[[5003,6117],[1,-3],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-3,5],[-1,2],[-2,3],[-1,3],[-1,2],[-2,3],[-1,3],[-1,4],[-1,3],[-1,3],[-1,3],[-1,4],[-1,3],[-1,4],[-1,4],[-1,3],[-1,4],[-1,4],[-1,4],[-1,4],[-1,4],[-1,4],[-1,4],[-1,4],[-1,4],[-1,4],[-1,4],[-1,4],[-1,4],[-1,4],[-1,4],[-1,4],[-1,4],[-1,4],[-1,4],[-2,4],[-1,3],[-1,4],[-1,4],[-2,4],[-1,3],[-1,4],[-2,3],[-1,4],[-2,3],[-1,3],[-2,4],[-1,3],[-2,3],[-4,7],[-2,3],[-3,4],[-2,3],[-2,4],[-2,4],[-2,3],[-2,4],[-2,3],[-2,4],[-2,3],[-3,4],[-2,3],[-2,4],[-2,4],[-2,3],[-2,4],[-2,3],[-2,4],[-2,3],[-2,4],[-2,4],[-2,3],[-2,4],[-2,4],[-2,3],[-2,4],[-2,3],[-2,4],[-2,4],[-2,4],[-2,3],[-2,4],[-2,4],[-2,3],[-2,4],[-2,4],[-2,4],[-2,3],[-2,4],[-2,4],[-1,4],[-2,4],[-2,4],[-2,3],[-2,4],[-1,4],[-2,4],[-2,4],[-2,5],[-1,2],[-1,2],[0,2],[-1,3],[-1,2],[-1,2],[-1,2],[-1,3],[-1,2],[-1,2],[-1,2],[0,3],[-1,2],[-1,2],[-1,2],[-1,3],[-1,2],[-1,2],[0,2],[-1,2],[-1,3],[-1,2],[-1,2],[-1,2],[-1,2],[0,3],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,3],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,2],[-4,5],[-1,3],[-2,3],[-1,3],[-2,3],[-1,3],[-1,4],[-2,3],[-1,3],[-1,3],[-1,4],[-1,3],[-1,4],[-2,3],[-1,4],[-1,3],[-1,4],[-1,3],[-1,4],[-1,3],[-1,4],[-1,4],[-1,3],[-1,4],[-1,4],[-1,3],[-1,4],[-1,4],[-1,3],[-1,4],[-1,4],[-1,3],[-1,4],[-1,4],[-1,3],[-1,4],[-1,3],[-2,4],[-1,3],[-1,4],[-2,3],[-1,4],[-1,3],[-2,3],[-1,4],[-2,3],[-2,3],[-1,3],[-2,3],[-4,7],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-3,3],[-2,3],[-2,3],[-2,3],[-3,3],[-2,3],[-2,3],[-3,3],[-2,3],[-3,3],[-2,2],[-2,3],[-3,3],[-2,3],[-2,3],[-3,3],[-2,3],[-2,3],[-3,3],[-2,3],[-2,3],[-2,3],[-3,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,4],[-2,3],[-2,3],[-2,4],[-1,3],[-2,4],[-2,4],[-1,3],[-2,4],[-1,4],[-2,4],[-1,4],[-1,4],[-1,4],[-1,4],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,4],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,0],[1,1],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[2,0],[1,1],[1,0],[1,1],[2,0],[1,1],[2,0],[1,1],[3,1],[1,0],[1,1],[1,0],[2,1],[1,0],[1,1],[2,0],[1,0],[1,1],[2,0],[1,1],[1,0],[1,1],[2,0],[1,0],[1,1],[2,0],[1,1],[1,0],[2,1],[1,0],[1,0],[1,1],[2,0],[1,1],[1,0],[2,1],[1,0],[1,1],[2,0],[1,1],[1,0],[1,1],[2,0],[1,1],[1,0],[2,1],[1,0],[1,1],[1,1],[2,0],[1,1],[1,0],[1,1],[2,1],[1,0],[1,1],[1,1],[5,2],[2,1],[2,2],[3,1],[2,1],[2,1],[2,1],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[2,2],[2,1],[3,1],[2,0],[2,1],[2,1],[2,1],[2,1],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[2,1],[2,1],[2,1],[3,1],[2,1],[2,0],[2,1],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[2,1],[3,1],[2,0],[2,1],[3,1],[6,3],[3,2],[4,2],[3,1],[3,2],[4,2],[3,2],[3,2],[3,2],[4,2],[3,2],[3,2],[4,3],[3,2],[3,2],[3,3],[4,2],[3,3],[3,3],[3,2],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,4],[3,3],[2,3],[3,4],[3,3],[2,4],[3,3],[2,4],[3,4],[2,3],[2,4],[3,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[1,4],[3,8],[2,4],[1,4],[2,4],[1,4],[1,4],[2,4],[1,4],[2,4],[1,4],[1,4],[2,4],[1,4],[1,4],[2,4],[1,4],[1,4],[1,4],[2,4],[1,4],[1,4],[1,5],[1,4],[2,4],[1,4],[1,4],[1,4],[1,4],[1,4],[2,5],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[2,5],[1,4],[1,4],[1,4],[1,4],[1,4],[1,5],[1,4],[1,4],[1,4],[2,4],[1,4],[1,4],[3,12],[1,6],[1,6],[1,5],[1,6],[1,5],[1,5],[0,5],[1,4],[0,5],[1,5],[0,4],[0,4],[0,5],[0,4],[-1,4],[0,4],[0,4],[-1,4],[0,4],[-1,4],[-1,3],[0,4],[-1,4],[-1,4],[-1,3],[-1,4],[-1,4],[-2,4],[-1,3],[-1,4],[-2,4],[-1,4],[-1,4],[-2,4],[-1,4],[-2,4],[-2,4],[-1,4],[-2,4],[-2,5],[-1,4],[-2,5],[-2,4],[-2,5],[-1,5],[-2,5],[-2,5],[-2,5],[0,-1],[-1,0],[-1,0],[-1,2],[-1,2],[-1,2],[-1,2],[-1,3],[0,4],[-1,3],[-1,4],[0,5],[-1,4],[0,5],[-1,5],[0,6],[0,6],[0,5],[-1,6],[0,7],[0,6],[0,6],[0,7],[0,6],[0,7],[1,7],[0,6],[0,7],[1,7],[0,6],[1,7],[1,6],[0,6],[1,7],[1,6],[1,5],[1,6],[1,5],[1,6],[2,5],[1,4],[1,4],[2,4],[2,4],[1,3],[2,3],[2,3],[2,2],[2,1],[2,1],[3,1],[2,0],[-1,-1],[0,-1],[-1,-2],[0,-2],[0,-3],[0,-3],[0,-4],[1,-4],[0,-4],[0,-5],[0,-5],[1,-5],[0,-5],[1,-6],[1,-6],[0,-7],[1,-6],[1,-7],[0,-7],[1,-7],[1,-7],[1,-7],[1,-7],[1,-7],[1,-8],[1,-7],[1,-7],[0,-7],[1,-8],[1,-7],[1,-7],[1,-7],[1,-6],[1,-7],[1,-6],[1,-7],[1,-5],[1,-6],[1,-6],[1,-5],[1,-5],[0,-4],[1,-4],[1,-4],[0,-3],[1,-3],[1,-3],[0,-2],[1,-1],[2,-8],[1,-3],[2,-4],[1,-4],[1,-3],[2,-4],[1,-4],[2,-4],[1,-3],[2,-4],[1,-4],[2,-4],[1,-3],[2,-4],[1,-4],[2,-4],[1,-4],[2,-3],[1,-4],[1,-4],[2,-4],[1,-4],[1,-4],[1,-4],[2,-3],[1,-4],[1,-4],[1,-4],[1,-4],[0,-4],[1,-4],[1,-4],[0,-4],[1,-4],[0,-5],[0,-4],[1,-4],[0,-4],[0,-4],[0,-4],[-1,-5],[0,-4],[-1,-4],[0,-5],[-1,-4],[-1,-4],[-1,-5],[-1,-4],[-2,-5],[-1,-4],[-1,-2],[-1,-2],[-1,-2],[0,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[0,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[0,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[0,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[0,-3],[-1,-2],[-1,-2],[-1,-2],[-1,-3],[0,-2],[-1,-2],[-1,-3],[0,-2],[-1,-3],[-1,-2],[-1,-4],[0,-2],[-1,-2],[0,-2],[-1,-2],[0,-2],[-1,-2],[0,-2],[-1,-2],[-1,-2],[0,-2],[-1,-2],[0,-2],[-1,-2],[-1,-2],[0,-2],[-1,-2],[-1,-1],[-1,-2],[0,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[0,-2],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-2,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-2],[0,-2],[-1,-1],[0,-2],[0,-1],[-1,-2],[0,-2],[-1,-1],[0,-2],[0,-2],[-1,-1],[0,-2],[0,-2],[-1,-2],[0,-1],[-1,-2],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-2,21],[0,-4],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-2],[-1,-1],[0,-2],[-1,-1],[0,-2],[-1,-1],[0,-2],[-1,-2],[0,-1],[-3,-6],[-2,-4],[-1,-2],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-1,-2],[-2,-3],[-3,-2],[-2,-2],[-2,-3],[-2,-2],[-2,-2],[-3,-2],[-2,-3],[-2,-2],[-3,-2],[-2,-1],[-3,-2],[-2,-2],[-3,-2],[-2,-2],[-3,-2],[-3,-1],[-2,-2],[-3,-2],[-3,-1],[-2,-2],[-3,-1],[-3,-2],[-2,-1],[-3,-2],[-3,-1],[-2,-2],[-3,-1],[-3,-2],[-2,-1],[-3,-2],[-3,-1],[-2,-1],[-3,-2],[-2,-1],[-3,-2],[-2,-1],[-3,-2],[-2,-1],[-3,-2],[-2,-1],[-5,-4],[-2,-1],[-3,-2],[-3,-2],[-2,-1],[-3,-2],[-2,-2],[-3,-2],[-3,-1],[-2,-2],[-3,-2],[-3,-2],[-3,-1],[-2,-2],[-3,-2],[-3,-2],[-2,-1],[-3,-2],[-3,-1],[-3,-2],[-3,-2],[-2,-1],[-3,-2],[-3,-1],[-3,-1],[-3,-2],[-3,-1],[-2,-1],[-3,-2],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-2,-1],[-3,0],[-3,-1],[-3,-1],[-3,0],[-3,-1],[-3,0],[-3,0],[-2,-1],[-3,0],[-3,0],[-3,0],[-3,1],[-3,0],[-3,0],[2,-4],[1,-2],[1,-2],[0,-2],[1,-1],[1,-2],[1,-2],[1,-2],[1,-2],[1,-2],[1,-2],[1,-2],[1,-2],[1,-2],[2,-2],[1,-2],[1,-2],[1,-2],[1,-2],[1,-2],[2,-2],[1,-2],[1,-1],[1,-2],[2,-2],[1,-2],[1,-2],[2,-2],[1,-2],[1,-1],[2,-2],[1,-2],[1,-2],[2,-1],[1,-2],[1,-2],[1,-1],[2,-2],[1,-1],[1,-2],[2,-2],[1,-1],[1,-2],[1,-1],[2,-1],[1,-2],[1,-1],[1,-2],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[3,-4],[1,-3],[2,-2],[1,-2],[1,-2],[1,-3],[1,-2],[1,-2],[2,-2],[1,-3],[1,-2],[1,-2],[1,-2],[1,-3],[1,-2],[1,-2],[1,-3],[1,-2],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[0,-3],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[0,-3],[1,-2],[1,-3],[1,-2],[1,-3],[0,-3],[1,-2],[1,-3],[1,-2],[1,-3],[0,-3],[1,-2],[1,-3],[5,6],[2,4],[1,3],[2,4],[2,3],[1,4],[2,3],[1,4],[1,4],[1,3],[1,4],[1,4],[1,4],[0,4],[1,4],[1,4],[0,4],[0,4],[1,4],[0,4],[0,4],[1,4],[0,4],[0,4],[0,4],[0,5],[0,4],[0,4],[0,4],[0,5],[1,4],[0,4],[0,4],[0,4],[0,5],[0,4],[1,4],[0,4],[0,4],[1,4],[0,5],[1,4],[0,4],[1,4],[1,4],[0,4],[1,4],[1,4],[2,4],[2,6],[1,4],[1,3],[1,3],[1,4],[2,3],[1,3],[1,4],[2,3],[1,3],[2,4],[1,3],[2,3],[1,3],[2,4],[1,3],[2,3],[2,3],[1,4],[2,3],[2,3],[1,3],[2,3],[2,3],[2,3],[2,3],[1,4],[2,3],[2,2],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,2],[2,3],[2,3],[2,3],[2,2],[2,3],[1,2],[2,3],[2,2],[2,3],[2,2],[2,2],[2,3],[2,2],[0,-10],[-1,-5],[-1,-4],[0,-5],[-1,-5],[-1,-4],[-2,-5],[-1,-5],[-1,-4],[-2,-5],[-2,-4],[-1,-5],[-2,-4],[-2,-5],[-2,-5],[-2,-4],[-2,-5],[-3,-4],[-2,-5],[-2,-4],[-3,-5],[-2,-4],[-2,-5],[-3,-4],[-2,-5],[-3,-4],[-2,-5],[-2,-4],[-3,-5],[-2,-4],[-2,-5],[-3,-5],[-2,-4],[-2,-5],[-2,-5],[-3,-5],[-2,-4],[-2,-5],[-2,-5],[-1,-5],[-2,-5],[-2,-5],[-1,-5],[-2,-5],[-1,-5],[-1,-5],[-1,-6],[-1,-5],[-1,-5],[-1,-5],[0,-2],[0,-2],[-1,-2],[0,-3],[0,-2],[-1,-2],[0,-2],[0,-3],[0,-2],[0,-2],[-1,-3],[0,-2],[0,-2],[0,-2],[-1,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[-1,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[1,-2],[0,-2],[0,-2],[0,-3],[0,-2],[1,0],[1,-9],[0,-4],[1,-4],[1,-5],[0,-4],[1,-4],[1,-5],[1,-4],[0,-4],[1,-4],[1,-4],[1,-4],[1,-4],[2,-4],[1,-4],[1,-4],[1,-4],[2,-4],[1,-3],[2,-4],[1,-4],[2,-3],[1,-4],[2,-4],[2,-3],[2,-3],[1,-4],[2,-3],[2,-3],[2,-4],[2,-3],[3,-3],[2,-3],[2,-3],[2,-3],[3,-3],[2,-3],[3,-2],[2,-3],[3,-3],[3,-2],[2,-3],[3,-2],[3,-3],[3,-2],[3,-2],[3,-3],[3,-2],[3,-2],[2,-15],[1,-7],[2,-8],[1,-7],[2,-7],[2,-7],[3,-8],[2,-7],[3,-7],[3,-7],[3,-7],[3,-7],[3,-7],[3,-7],[4,-7],[3,-7],[4,-7],[4,-7],[4,-6],[4,-7],[4,-7],[4,-7],[4,-7],[4,-7],[4,-6],[5,-7],[4,-7],[4,-7],[4,-6],[4,-7],[5,-7],[4,-7],[4,-7],[4,-6],[4,-7],[4,-7],[3,-7],[4,-7],[3,-6],[4,-7],[3,-7],[3,-7],[3,-7],[3,-7],[3,-7],[3,-7],[2,-7],[2,-7],[2,-7],[1,-5],[1,-2],[0,-2],[1,-2],[0,-3],[1,-2],[0,-2],[1,-2],[0,-2],[1,-2],[0,-3],[1,-2],[0,-2],[1,-2],[0,-2],[0,-2],[1,-2],[0,-2],[1,-2],[0,-2],[0,-3],[1,-2],[0,-2],[0,-2],[1,-2],[0,-2],[0,-2],[1,-2],[0,-2],[0,-2],[1,-2],[0,-2],[0,-1],[1,-2],[0,-2],[0,-2],[1,-2],[0,-2],[0,-2],[0,-2],[1,-2],[0,-2],[0,-1],[1,-2],[0,-2],[0,-2],[0,-2],[1,-2],[0,-1]],[[4737,6748],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[2,-15]],[[6485,5117],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-2,3],[0,2],[-1,1],[0,1],[-1,2],[0,1],[-1,2],[0,1],[-1,1],[0,2],[0,1],[-1,1],[0,2],[0,1],[-1,1],[0,2],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,2],[0,1],[0,2],[-1,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[-1,2],[0,2],[0,1],[0,2],[0,2],[0,1],[0,2],[0,2],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1]],[[5492,7696],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[0,6],[0,6],[0,6],[0,5],[1,5],[1,5],[1,4],[1,5],[1,4],[1,4],[2,3],[1,4],[2,3],[2,3],[2,3],[2,3],[2,2],[3,2],[2,3],[3,2],[2,2],[3,1],[3,2],[3,1],[3,2],[3,1],[3,1],[3,2],[3,1],[3,1],[4,1],[3,0],[3,1],[4,1],[3,1],[4,1],[3,0],[3,1],[4,1],[3,1],[4,0],[3,1],[3,1],[4,1],[3,1],[3,1],[3,1],[4,1],[6,3],[1,0],[2,1],[1,1],[2,0],[1,1],[2,1],[1,1],[2,1],[1,0],[2,1],[1,1],[2,1],[1,1],[2,0],[1,1],[2,1],[1,1],[1,1],[2,1],[1,1],[2,1],[1,1],[2,1],[1,1],[1,1],[2,1],[1,1],[2,1],[1,1],[1,1],[2,1],[1,1],[2,1],[1,1],[1,1],[2,2],[1,1],[1,1],[2,1],[1,1],[1,2],[2,1],[1,1],[1,1],[1,2],[2,1],[1,1],[1,2],[3,2],[1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,0],[1,2],[1,1],[1,2],[1,1],[1,1],[2,1],[1,1],[1,2],[1,1],[1,1],[1,1],[1,1],[1,2],[1,1],[1,1],[1,1],[1,1],[2,2],[1,1],[1,1],[1,1],[1,2],[1,1],[1,1],[1,1],[1,2],[1,1],[1,1],[2,1],[1,1],[1,2],[1,1],[1,1],[1,1],[1,1],[1,2],[1,1],[1,1],[2,1],[1,1],[1,1],[1,2],[1,1],[1,1],[1,1],[1,1],[2,1],[1,1],[1,2],[2,2],[1,0],[1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[1,2],[1,1],[0,1],[1,1],[1,2],[1,1],[1,1],[1,1],[1,2],[1,1],[1,1],[0,2],[1,1],[1,1],[1,2],[1,1],[1,1],[1,1],[1,2],[1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-1,-2],[-2,-2],[-2,-2],[-2,-2],[-1,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-1,-1],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-1,-2],[-2,-2],[-2,-1],[-2,-2],[-2,-2],[-1,-2],[-2,-2],[-2,-2],[-2,-1],[-2,-2],[-1,-2],[-2,-2],[-2,-2],[-2,-1],[-2,-2],[-2,-2],[-2,-2],[-1,-1],[-2,-2],[-2,-2],[-2,-1],[-2,-2],[-2,-2],[-2,-1],[-2,-2],[-2,-2],[-1,-1],[-2,-2],[-2,-1],[-2,-2],[-2,-2],[-4,-3],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-2],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-1,-2],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-2],[-2,-1],[-1,-1],[-2,-1],[-2,-2],[-2,-1],[-2,-1],[-2,-2],[-2,-1],[-1,-1],[-2,-2],[-2,-1],[-2,-2],[-2,-1],[-1,-1],[-2,-2],[-2,-1],[-1,-2],[-2,-2],[-2,-1],[-1,-2],[-2,-2],[-1,-1],[-2,-2],[-1,-2],[-1,-2],[-2,-1],[-1,-2],[-1,-2],[-2,-2],[-1,-2],[-1,-2],[-1,-2],[-2,-5]],[[5873,8025],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-2,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,-1],[-2,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-4,0],[-1,0],[-2,1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,-1],[-2,0],[-1,-1],[-2,0],[-2,-1],[-3,-1],[-2,-1],[-2,-1],[-2,0],[-1,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-1,0],[-2,-1],[-2,0],[-2,-1],[-1,-1],[-2,0],[-2,-1],[-2,-1],[-1,0],[-2,-1],[-2,-1],[-2,0],[-1,-1],[-2,-1],[-2,0],[-2,-1],[-1,0],[-2,-1],[-2,-1],[-1,0],[-2,-1],[-2,0],[-2,-1],[-1,-1],[-2,0],[-2,-1],[-1,0],[-2,-1],[-2,-1],[-1,0],[-2,-1],[-2,0],[-2,-1],[-1,-1],[-2,0],[-2,-1],[-1,0],[-2,-1],[-2,0],[-1,-1],[-5,-1],[-3,-1],[-2,-1],[-3,0],[-3,-1],[-3,0],[-3,-1],[-3,0],[-3,-1],[-3,0],[-3,0],[-3,-1],[-3,0],[-4,-1],[-3,0],[-3,0],[-3,-1],[-4,0],[-3,0],[-3,-1],[-4,0],[-3,-1],[-4,0],[-3,-1],[-3,0],[-4,-1],[-3,0],[-3,-1],[-4,0],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,0],[-3,-1],[-3,-1],[-3,-1],[-3,-2],[-3,-1],[-3,-1],[-2,-1],[-3,-2],[-2,-1],[-3,-2],[-2,-2],[-2,-1],[-2,-2],[-2,-2],[-2,-2],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-3,-4],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-4,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-4,3],[-1,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,1],[-2,1],[-1,1],[-2,1],[-2,0],[-1,1],[-2,0],[-2,1],[-2,0],[-1,1],[-2,0],[-2,0],[-2,1],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,-1],[-2,0],[-2,0],[-2,0],[-2,-1],[-1,0],[-2,-1],[-2,0],[-2,0],[-2,-1],[-1,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-1,0],[-2,-1],[-5,-1],[-2,-1],[-2,-1],[-3,-1],[-2,-1],[-2,-1],[-3,0],[-2,-1],[-2,-2],[-3,-1],[-2,-1],[-2,-1],[-3,-1],[-2,-1],[-2,-1],[-2,-1],[-3,-2],[-2,-1],[-2,-1],[-3,-1],[-2,-2],[-2,-1],[-3,-1],[-2,-1],[-2,-2],[-3,-1],[-2,-1],[-2,-1],[-3,-2],[-2,-1],[-2,-1],[-3,-1],[-2,-2],[-2,-1],[-3,-1],[-2,-1],[-2,-2],[-3,-1],[-2,-1],[-2,-1],[-3,-1],[-2,-1],[-2,-1],[-3,-1],[-2,-1],[-2,-1],[-3,-1],[-2,-1],[-2,-1],[-5,-2],[-2,-1],[-2,0],[-2,-1],[-3,-1],[-2,-1],[-2,0],[-2,-1],[-3,-1],[-2,-1],[-2,0],[-2,-1],[-3,-1],[-2,-1],[-2,0],[-2,-1],[-3,-1],[-2,-1],[-2,0],[-2,-1],[-3,-1],[-2,-1],[-2,-1],[-2,0],[-3,-1],[-2,-1],[-2,-1],[-2,-1],[-3,-1],[-2,0],[-2,-1],[-2,-1],[-3,-1],[-2,-1],[-2,-1],[-2,-1],[-3,-1],[-2,-1],[-2,-1],[-2,-1],[-3,-1],[-2,-2],[-2,-1],[-2,-1],[-3,-1],[-2,-1],[-2,-2],[-2,-1],[-3,-1],[-5,-3],[-3,-2],[-3,-1],[-3,-1],[-2,-1],[-3,-1],[-3,-1],[-3,0],[-2,-1],[-3,-1],[-2,0],[-3,-1],[-3,0],[-2,0],[-3,-1],[-2,0],[-3,0],[-2,-1],[-3,0],[-2,0],[-2,-1],[-3,0],[-2,0],[-2,-1],[-3,0],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-3,-1],[-2,-1],[-2,-2],[-2,-1],[-2,-1],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-3],[-2,-3],[-1,-3],[-2,-3],[-2,-4],[-2,-3],[-2,-4],[-1,-5],[-2,-4],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,3],[0,2],[0,2],[1,1],[1,2],[1,2],[0,1],[1,2],[2,1],[1,2],[1,1],[1,2],[2,1],[1,2],[2,1],[1,1],[2,2],[1,1],[2,1],[2,2],[2,1],[1,1],[2,1],[2,2],[2,1],[2,1],[2,1],[2,1],[1,1],[2,1],[2,1],[2,1],[2,1],[2,1],[2,1],[1,0],[2,1],[2,1],[1,1],[2,0],[2,1],[1,1],[2,0],[1,1],[1,0],[1,1],[2,0],[1,0],[1,1],[3,1],[2,0],[2,1],[2,0],[2,1],[2,0],[1,1],[2,0],[2,0],[2,1],[2,0],[2,0],[2,1],[1,0],[2,1],[2,0],[2,0],[2,1],[2,0],[2,1],[1,0],[2,1],[2,0],[2,1],[2,0],[1,1],[2,1],[2,1],[1,0],[2,1],[2,1],[1,1],[2,1],[2,1],[1,2],[2,1],[1,1],[2,2],[1,1],[1,2],[2,1],[1,2],[1,2],[2,2],[1,2],[1,3],[1,2],[1,2],[1,3],[4,0],[2,0],[1,1],[2,0],[2,0],[2,1],[2,0],[2,1],[2,0],[2,1],[2,0],[3,1],[2,0],[2,1],[2,1],[2,1],[2,1],[2,0],[3,1],[2,1],[2,1],[2,2],[2,1],[2,1],[2,1],[2,1],[2,2],[2,1],[2,2],[1,1],[2,2],[2,1],[1,2],[2,1],[2,2],[1,2],[2,2],[1,2],[1,2],[1,2],[1,2],[2,2],[0,2],[1,2],[1,3],[1,2],[0,3],[1,2],[0,3],[5,0],[2,1],[2,0],[2,1],[3,0],[2,0],[2,1],[3,0],[2,0],[2,1],[3,0],[2,1],[3,0],[2,0],[2,1],[3,0],[2,1],[3,0],[2,0],[3,1],[2,0],[3,0],[2,1],[3,0],[2,0],[3,1],[2,0],[3,0],[2,1],[3,0],[2,0],[3,0],[2,0],[2,1],[3,0],[2,0],[2,0],[3,0],[2,0],[2,0],[3,0],[2,1],[2,0],[2,0],[3,0],[2,-1],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[1,-1],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,-1],[1,0],[2,0],[2,0],[1,0],[2,-1],[2,0],[1,0],[2,0],[2,-1],[2,0],[1,0],[2,-1],[2,0],[1,0],[2,-1],[2,0],[1,-1],[2,0],[2,0],[1,-1],[2,0],[1,-1],[2,0],[2,-1],[1,0],[2,-1],[1,0],[2,-1],[1,0],[1,-1],[2,-1],[1,0],[1,-1],[2,-1],[1,0],[1,-1],[1,-1],[2,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[4,-1],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0],[2,0],[2,1],[1,1],[2,0],[1,1],[2,1],[1,1],[1,1],[2,1],[1,1],[2,1],[1,1],[1,1],[2,1],[1,2],[1,1],[2,1],[1,2],[1,1],[2,2],[1,1],[1,2],[1,1],[2,2],[1,1],[1,2],[1,1],[2,1],[1,2],[1,1],[2,2],[1,1],[1,2],[2,1],[1,1],[1,1],[1,2],[2,1],[1,1],[2,1],[1,1],[1,1],[3,1],[1,1],[2,1],[1,1],[2,1],[1,1],[2,0],[1,1],[2,1],[1,1],[2,1],[1,1],[2,0],[2,1],[1,1],[2,1],[2,1],[2,1],[1,0],[2,1],[2,1],[2,1],[1,1],[2,0],[2,1],[2,1],[2,1],[1,0],[2,1],[2,1],[2,1],[2,0],[1,1],[2,1],[2,0],[2,1],[1,1],[2,0],[2,1],[1,0],[2,1],[2,1],[1,0],[2,1],[1,0],[2,1],[1,0],[2,1],[1,0],[7,2],[4,1],[4,1],[3,1],[4,2],[3,1],[4,1],[3,1],[4,1],[4,1],[3,2],[4,1],[3,1],[4,1],[3,1],[4,1],[3,2],[4,1],[3,1],[4,1],[3,1],[3,1],[4,1],[3,2],[4,1],[3,1],[4,1],[3,1],[4,1],[3,1],[4,1],[3,1],[4,1],[4,1],[3,1],[4,1],[3,1],[4,1],[3,1],[4,0],[4,1],[3,1],[4,1],[3,0],[4,1],[4,1],[3,0],[4,1],[4,0],[3,1],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,1],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[2,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1]],[[6677,6899],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-2,-5],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-3],[-1,-2],[-1,-2],[-2,-3],[-1,-2],[-1,-2],[-1,-2],[-1,-3],[-2,-2],[-1,-2],[-1,-3],[-2,-2],[-1,-2],[-1,-2],[-2,-2],[-1,-3],[-2,-2],[-1,-2],[-2,-2],[-1,-2],[-2,-2],[-1,-2],[-2,-2],[-2,-2],[-1,-2],[-2,-1],[-2,-2],[-1,-2],[-2,-1],[-2,-2],[-1,-2],[-2,-1],[-2,-1],[-1,-2],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-1,0],[-5,-1],[-2,0],[-2,-1],[-3,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,1],[-2,0],[-3,0],[-2,1],[-2,0],[-2,0],[-3,1],[-2,0],[-2,0],[-2,1],[-3,0],[-2,0],[-2,1],[-3,0],[-2,1],[-2,0],[-3,0],[-2,1],[-2,0],[-3,0],[-2,0],[-2,1],[-3,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-3,0],[-2,-1],[-2,0],[-3,0],[-2,-1],[-2,0],[-3,-1],[-2,0],[-3,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,1],[-1,1],[-1,0],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-2,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,2],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-4,4],[-2,2],[-2,2],[-2,1],[-3,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-3,2],[-2,2],[-2,2],[-2,3],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,3],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,3],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-3,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-3,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[-1,2],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[-1,1],[0,2],[0,1],[-1,1],[0,1],[-1,1],[-1,2],[0,1],[-1,1],[-1,1],[-1,2],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,3],[-1,1],[0,2],[-1,1],[-1,1],[0,2],[-1,1],[0,2],[-1,1],[0,2],[-1,1],[0,2],[-1,1],[0,2],[-1,1],[0,2],[-1,1],[0,2],[-1,1],[0,2],[0,1],[-1,2],[0,1],[-1,2],[0,1],[-1,2],[0,2],[0,1],[-1,2],[0,1],[-1,2],[0,1],[-1,2],[0,1],[-1,2],[0,1],[0,2],[-1,1],[0,2],[-1,2],[0,1],[-1,2],[0,1],[-1,1],[0,2],[-1,1],[0,2],[-1,1],[0,2],[-2,3],[0,2],[-1,1],[-1,2],[0,1],[-1,2],[-1,2],[0,1],[-1,2],[-1,1],[0,2],[-1,1],[-1,2],[-1,2],[0,1],[-1,2],[-1,1],[0,2],[-1,2],[-1,1],[0,2],[-1,1],[-1,2],[0,1],[-1,2],[0,2],[-1,1],[-1,2],[0,1],[-1,2],[-1,2],[0,1],[-1,2],[0,2],[-1,1],[-1,2],[0,1],[-1,2],[0,2],[-1,1],[0,2],[-1,2],[0,2],[-1,1],[0,2],[-1,2],[0,2],[-1,1],[0,2],[-1,6],[-1,3],[-1,3],[0,3],[-1,4],[0,3],[0,3],[-1,3],[0,3],[-1,4],[0,3],[0,3],[0,3],[0,4],[-1,3],[0,3],[0,3],[0,4],[0,3],[0,3],[0,4],[0,3],[0,3],[0,4],[0,3],[0,3],[0,4],[0,3],[0,3],[0,4],[1,3],[0,3],[0,4],[0,3],[0,3],[0,3],[1,4],[0,3],[0,3],[0,3],[0,4],[0,3],[1,3],[0,3],[0,3],[0,4],[0,3],[0,3],[0,3],[1,6],[0,3],[0,4],[0,3],[0,3],[0,3],[1,4],[0,3],[0,3],[0,3],[0,4],[1,3],[0,3],[0,3],[0,3],[1,4],[0,3],[0,3],[0,3],[1,4],[0,3],[0,3],[0,3],[1,3],[0,4],[0,3],[1,3],[0,3],[0,3],[0,4],[1,3],[0,3],[0,3],[1,3],[0,4],[0,3],[1,3],[0,3],[0,3],[0,3],[1,4],[0,3],[0,3],[1,3],[0,3],[0,3],[0,3],[1,3],[0,3],[0,4],[0,1],[1,2],[0,1],[0,2],[0,2],[0,1],[1,2],[0,1],[0,2],[0,2],[1,1],[0,2],[0,1],[0,2],[1,2],[0,1],[0,2],[1,1],[0,2],[0,2],[0,1],[1,2],[0,1],[0,2],[1,2],[0,1],[0,2],[1,1],[0,2],[0,2],[1,1],[0,2],[0,2],[0,1],[1,2],[0,1],[0,2],[1,2],[0,1],[0,2],[0,2],[1,1],[0,2],[0,1],[0,2],[1,2],[0,1],[0,2],[0,5],[1,2],[0,2],[0,2],[0,3],[0,2],[0,2],[1,2],[0,2],[0,3],[0,2],[0,2],[0,2],[0,2],[0,3],[0,2],[0,2],[0,2],[0,2],[-1,3],[0,2],[0,2],[0,2],[0,2],[0,2],[0,3],[0,2],[0,2],[0,2],[-1,2],[0,3],[0,2],[0,2],[0,2],[0,2],[0,2],[-1,3],[0,2],[0,2],[0,2],[0,2],[0,3],[0,2],[0,2],[0,2],[0,2],[0,3],[0,2],[0,2],[0,5],[0,3],[0,2],[0,3],[0,2],[0,3],[0,3],[0,2],[0,3],[0,2],[0,3],[0,3],[0,2],[1,3],[0,2],[0,3],[0,3],[0,2],[0,3],[0,2],[0,3],[1,3],[0,2],[0,3],[0,3],[0,2],[0,3],[1,2],[0,3],[0,3],[0,2],[0,3],[1,2],[0,3],[0,3],[0,2],[0,3],[0,3],[1,2],[0,3],[0,2],[0,3],[0,2],[0,3],[0,3],[1,2],[0,3],[0,2],[0,3],[0,3],[0,2],[0,1],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,3],[0,2],[0,2],[0,2],[0,3],[0,2],[0,2],[0,3],[0,2],[0,2],[-1,3],[0,2],[0,2],[0,3],[0,2],[-1,2],[0,3],[0,2],[0,2],[-1,2],[0,3],[-1,2],[0,2],[0,2],[-1,2],[0,2],[-1,2],[0,2],[-1,1],[0,2],[-1,2],[-1,2],[0,1],[-1,2],[-1,1],[0,1],[-1,2],[-2,2],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,2],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,2],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[3,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,2],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[4,-1],[3,0],[2,0],[3,0],[3,1],[3,0],[3,1],[3,1],[3,0],[3,1],[3,1],[3,1],[3,1],[4,1],[3,1],[3,1],[3,2],[4,1],[3,1],[3,1],[4,1],[3,1],[3,0],[4,1],[3,1],[3,0],[3,1],[3,0],[3,0],[3,0],[3,0],[3,0],[3,0],[3,-1],[2,-1],[3,-1],[2,-1],[3,-2],[2,-1],[2,-3],[2,-2],[2,-2],[1,-3],[2,-3],[1,-4],[2,-4],[1,-4],[1,-4],[0,-5],[1,-3],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-4],[0,-2],[-1,-2],[0,-1],[0,-2],[0,-2],[-1,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[-1,-1],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[-1,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-5],[0,-3],[0,-3],[0,-3],[-1,-3],[0,-3],[0,-3],[0,-3],[-1,-3],[0,-3],[0,-3],[0,-3],[0,-3],[-1,-3],[0,-3],[0,-3],[0,-3],[0,-3],[-1,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[-1,-3],[0,-3],[0,-3],[0,-3],[0,-4],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-2],[0,-3],[0,-3],[1,-3],[0,-3],[0,-3],[0,-4],[1,-3],[0,-2],[0,-2],[0,-3],[1,-2],[0,-2],[0,-3],[0,-2],[1,-2],[0,-3],[0,-2],[1,-2],[0,-3],[0,-2],[0,-2],[1,-2],[0,-3],[0,-2],[0,-2],[1,-3],[0,-2],[0,-2],[1,-2],[0,-3],[0,-2],[0,-2],[1,-3],[0,-2],[0,-2],[0,-2],[0,-3],[1,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[1,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-5],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-2],[1,-3],[0,-2],[0,-2],[0,-3],[1,-2],[0,-2],[0,-2],[0,-3],[1,-2],[0,-2],[0,-2],[0,-2],[1,-3],[0,-2],[0,-2],[1,-2],[0,-2],[0,-3],[0,-2],[1,-2],[0,-2],[0,-2],[0,-2],[0,-3],[1,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-3],[0,-2],[-1,-2],[0,-2],[0,-3],[0,-2],[-1,-2],[0,-5],[-1,-3],[0,-3],[0,-2],[-1,-3],[0,-2],[0,-3],[0,-2],[-1,-3],[0,-2],[0,-3],[0,-2],[0,-3],[-1,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[1,-2],[0,-3],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[1,-3],[0,-3],[0,-2],[0,-3],[1,-6],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-4],[1,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-4],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-4],[0,-3],[1,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-4],[0,-3],[1,-3],[0,-3],[0,-3],[0,-3],[0,-3],[1,-3],[0,-3],[0,-3],[1,-3],[0,-3],[0,-3],[1,-3],[0,-3],[1,-3],[0,-3],[1,-3],[0,-3],[1,-4],[1,-1],[0,-2],[1,-2],[0,-2],[1,-2],[0,-2],[1,-2],[0,-2],[1,-2],[0,-2],[1,-2],[0,-2],[1,-2],[1,-2],[0,-2],[1,-2],[1,-2],[0,-2],[1,-2],[0,-3],[1,-2],[1,-2],[0,-2],[1,-2],[1,-2],[0,-2],[1,-2],[1,-2],[1,-1],[0,-2],[1,-2],[1,-2],[0,-2],[1,-2],[1,-2],[0,-2],[1,-2],[1,-2],[0,-2],[1,-1],[1,-2],[0,-2],[1,-2],[1,-2],[0,-1],[1,-2],[0,-2],[1,-2],[1,-4],[1,-2],[1,-1],[1,-2],[1,-2],[0,-2],[1,-2],[1,-1],[1,-2],[1,-2],[1,-1],[1,-2],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[2,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-1],[1,-2],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-2],[2,-3],[1,-1],[1,-2],[1,-1],[0,-1],[1,-2],[1,-1],[0,-1],[1,-2],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[5,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,-1],[2,0],[2,0],[2,0],[2,0],[2,0],[2,-1],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,1],[2,0],[2,0],[1,1],[2,0],[2,1],[2,0],[1,1],[2,1],[2,1],[1,1],[2,1],[1,1],[2,1],[2,2],[1,1],[2,2],[1,2],[2,1],[1,2],[1,3],[2,2],[1,2],[3,5],[1,2],[1,3],[1,2],[1,2],[1,3],[1,2],[1,2],[1,2],[1,3],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,1],[1,2],[1,2],[1,2],[1,1],[2,2],[1,1],[1,2],[1,2],[2,1],[1,1],[1,2],[2,1],[2,1],[1,2],[2,1],[1,1],[2,1],[2,1],[2,1],[2,1],[2,1],[2,1],[2,1],[3,0],[2,1],[5,1],[3,1],[3,0],[2,1],[3,0],[3,0],[3,0],[2,0],[3,0],[3,0],[3,0],[3,0],[2,-1],[3,0],[3,-1],[3,0],[3,-1],[3,0],[3,-1],[2,-1],[3,-1],[3,-1],[3,0],[3,-1],[3,-1],[3,-1],[2,-1],[3,-1],[3,-2],[3,-1],[3,-1],[2,-1],[3,-1],[3,-1],[3,-2],[2,-1],[3,-1],[3,-1],[3,-2],[2,-1],[3,-1],[3,-2],[2,-1],[3,-1],[2,-1],[3,-2],[2,-1],[3,-1],[2,-2],[4,-1],[2,-1],[1,-1],[2,-1],[2,-1],[2,0],[1,-1],[2,-1],[2,-1],[1,-1],[2,0],[1,-1],[2,-1],[1,-1],[2,-1],[1,-1],[2,0],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-2],[0,-1],[1,-2],[1,-2],[0,-2],[1,-1],[0,-2],[1,-2],[0,-2],[0,-3],[1,-2],[0,-2],[0,-3],[0,-2],[0,-3],[0,-3],[0,-2],[0,-3],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2297,4452],[-13,19],[-3,6],[-2,12],[12,-3],[18,33],[0,7],[0,6],[0,4],[3,2],[-2,10],[-1,11],[3,26],[-2,11],[1,8],[1,9],[0,14],[-1,10],[-4,7],[-9,13],[-7,1],[-1,26],[-7,68],[0,1],[-5,10],[-2,5],[21,31],[5,11],[3,14],[4,48],[6,27],[1,12],[0,18],[-3,33],[1,17],[3,13],[-4,2],[-4,1],[-4,-2],[-4,-3],[-2,-2],[-2,-2],[-2,-1],[-2,1]],[[2304,5018],[3,-5],[6,-2],[6,-3],[11,12],[11,17],[8,13],[4,10],[-2,9]],[[2432,5169],[1,-14],[-1,-9],[-5,-7],[-8,-10],[-6,-11],[-2,-12],[0,-13],[2,-12],[4,-15]],[[2417,5066],[1,-1],[1,-9],[0,-9],[-3,-8],[-4,-4],[-3,-2],[-3,-3],[-1,-1],[1,-4],[3,-1],[5,0],[5,0],[3,-3],[1,-3],[0,-4],[4,-30],[3,-11],[4,-10],[6,-11],[1,-5],[0,-4],[-3,-5],[0,-5],[1,-5],[2,-2],[1,0],[3,3],[2,0],[3,-3],[1,-5],[2,-6],[0,-15],[0,-10],[0,-4],[-3,-2],[-3,-2],[-2,-3],[-2,-3],[1,-4],[2,-4],[3,0],[0,-7],[-7,0],[-11,-2],[-2,-24],[6,-85],[11,-7],[14,-17],[-6,-20],[-12,-18],[-15,-46],[-8,-42],[0,-1]],[[2419,4599],[1,-5],[-3,-8],[-11,-25],[-3,-9],[-4,-3],[-9,-9],[-11,-25]],[[1561,3143],[12,12],[7,15],[24,33],[10,29],[25,29],[10,29],[39,64],[18,42],[2,4]]],"transform":{"scale":[0.0019187659733843356,0.0010447258680701922],"translate":[31.2044321969833,28.03069417489524]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment