Skip to content

Instantly share code, notes, and snippets.

@shawnbot
Last active August 29, 2015 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shawnbot/69a713cc4ef753c574db to your computer and use it in GitHub Desktop.
Save shawnbot/69a713cc4ef753c574db to your computer and use it in GitHub Desktop.
Weird topology artifacts
<!DOCTYPE html>
<html lang="en">
<head>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<style>
body {
margin: 0;
padding: 1em;
}
p {
margin: 0 0 1em 0;
}
svg {
max-width: 960px;
}
path.feature {
fill: yellow;
fill-opacity: .05;
stroke: red;
}
path.mesh {
fill: none;
stroke: #69c;
}
</style>
</head>
<body>
<p>
These maps demonstrate a peculiar rendering artifact of
<a target="_top" href="https://github.com/18F/eiti-data/blob/fa02b34b9f67d72474abda8d0cc319ef7d6a09d4/output/geo/offshore.json">this
offshore US areas topology</a>. The <b style="color: red">red</b> lines
are the GeoJSON geometries extracted with <tt>topojson.feature()</tt>,
and the <b style="color: #69c">bluish</b> ones are the topological meshes
courtesy of <tt>topojson.mesh()</tt>, with a slight offset to make them
more visible. The features are also drawn with a very transparent yellow
fill to make overlaps more obvious.
</p>
<p>
As you can see, the state boundaries from
<a target="_top" href="https://github.com/18F/eiti-data/blob/gh-pages/output/geo/us-states-simple.json">this
topology</a> look great in the first map:
</p>
<svg id="onshore"></svg>
<p>
In this map, however, you can see two things: First, that all of the
features are being drawn on top of each other across the outer clip
extent of the projection. Second, you can see that the
<tt>topojson.feature()</tt> is producing polygons with rings that
coincide with <i>each</i> of the <a target="_top" href="https://github.com/mbostock/d3/wiki/Geo-Projections#albersUsa">Albers USA</a>
clip extents for the lower 48, Alaska and Hawaii:
</p>
<svg id="offshore"></svg>
</body>
<script>
var proj = d3.geo.albersUsa();
var path = d3.geo.path()
.projection(proj);
d3.json('us-states.json', function(error, onshore) {
if (error) return alert(error.responseText);
var states = render('#onshore', onshore);
d3.json('offshore.json', function(error, offshore) {
if (error) return alert(error.responseText);
var regions = render('#offshore', offshore);
var height = document.body.getBoundingClientRect().height;
d3.select(self.frameElement).style('height', ~~height + 'px');
});
});
function render(selector, collection) {
var meshes = [];
var features = [];
if (collection.type === 'Topology') {
features = Object.keys(collection.objects)
.reduce(function(features, key) {
var obj = collection.objects[key];
var feature = topojson.feature(collection, obj);
var mesh = topojson.mesh(collection, obj);
mesh.id = key;
meshes.push(mesh);
return features.concat(feature.features);
}, []);
} else {
features = collection.features;
}
var svg = d3.select(selector)
.attr('viewBox', '0 0 960 510');
svg.selectAll('path.feature')
.data(features)
.enter()
.append('path')
.attr('class', 'feature')
.attr('id', function(d) { return d.id; })
.attr('d', path);
svg.selectAll('path.mesh')
.data(meshes)
.enter()
.append('path')
.attr('class', 'mesh')
.attr('transform', 'translate(4,4)')
.attr('id', function(d) { return d.id; })
.attr('d', path);
return features;
}
</script>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"alaska":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":"ALA","properties":{"name":"Aleutian Arc"},"arcs":[[0,1,2,3,4,5,6,7,8],[9],[10],[11],[12],[13],[14],[15],[16],[17],[18],[19],[20]]},{"type":"Polygon","id":"ALB","properties":{"name":"Aleutian Basin"},"arcs":[[21,22,23,24]]},{"type":"Polygon","id":"BFT","properties":{"name":"Beaufort Sea"},"arcs":[[25,26]]},{"type":"Polygon","id":"BOW","properties":{"name":"Bowers Basin"},"arcs":[[-25,27,-9,28]]},{"type":"Polygon","id":"CHU","properties":{"name":"Chukchi Sea"},"arcs":[[-27,29,30,31]]},{"type":"Polygon","id":"COK","properties":{"name":"Cook Inlet"},"arcs":[[32,33,34,35,36,37,38,-39,39]]},{"type":"Polygon","id":"GEO","properties":{"name":"St. George Basin"},"arcs":[[40,41,-22,-29,-8,42,-6,43,-4,44,45,46,47],[48,49],[-49,50],[51]]},{"type":"MultiPolygon","id":"GOA","properties":{"name":"Gulf of Alaska"},"arcs":[[[52]],[[53,-40,54],[55],[56]]]},{"type":"Polygon","id":"HOP","properties":{"name":"Hope Basin"},"arcs":[[57,-31,58,59,60,61]]},{"type":"Polygon","id":"KOD","properties":{"name":"Kodiak"},"arcs":[[-55,38,62,-37,63,-35,64,65],[66]]},{"type":"Polygon","id":"MAT","properties":{"name":"St. Matthew-Hall"},"arcs":[[67,68,69,70,-41,71,72],[73],[74]]},{"type":"Polygon","id":"NAL","properties":{"name":"North Aleutian Basin"},"arcs":[[-72,-48,75],[76]]},{"type":"Polygon","id":"NAV","properties":{"name":"Navarin Basin"},"arcs":[[-42,-71,77,78,-23]]},{"type":"Polygon","id":"NOR","properties":{"name":"Norton Basin"},"arcs":[[79,-60,80,-78,-70,81,-68,82,-62]]},{"type":"Polygon","id":"SHU","properties":{"name":"Shumagin"},"arcs":[[-65,-34,83,-46,84,-2,85],[86],[87]]}]},"atlantic":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":"FLS","arcs":[[88,89,90]]},{"type":"Polygon","id":"MDA","arcs":[[91,92,93,94]]},{"type":"Polygon","id":"NOA","arcs":[[95,-95]]},{"type":"Polygon","id":"SOA","arcs":[[-93,96,-91,97]]}]},"gulf":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":"WGM","properties":{"name":"Western Gulf of Mexico"},"arcs":[[98,99]]},{"type":"Polygon","id":"CGM","properties":{"name":"Central Gulf of Mexico"},"arcs":[[100,-99,101,102]]},{"type":"Polygon","id":"EGM","properties":{"name":"Eastern Gulf of Mexico"},"arcs":[[103,104,-103]]}]},"pacific":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":"CEC","arcs":[[-106,-107,-108,-109],[-110]]},{"type":"Polygon","id":"NOC","arcs":[[-111,-112,105,-113]]},{"type":"Polygon","id":"SOC","arcs":[[-114,107],[-115],[-116],[-117],[-118],[-119],[-120]]},{"type":"Polygon","id":"WAO","arcs":[[-121,110]]}]}},"arcs":[[[287,5893],[-24,-42],[-60,-129],[-97,-214],[-68,-160],[-14,4],[-22,-44],[-2,-194],[81,-4],[0,-195],[147,6],[172,0],[147,-6],[0,-203],[73,5],[114,3],[145,-2],[-2,-194],[138,-6],[98,5],[87,3],[143,-2],[2,194],[114,-5],[92,4],[203,3],[116,-3],[72,-5],[0,203],[146,6],[87,0],[0,195]],[[2175,5116],[0,786]],[[2175,5902],[-45,-1],[0,9],[-35,-10],[1,-51],[-33,-25],[-5,-26],[-17,-17],[-34,-1],[-5,-18],[-16,0],[0,-17],[-59,7],[-12,-25],[0,-35],[-22,3],[-6,-17],[-16,1],[-6,-17],[-27,-8]],[[1838,5654],[-21,0]],[[1817,5654],[-28,-3],[-6,-15],[-17,12]],[[1766,5648],[-15,-8]],[[1751,5640],[-6,-23],[-17,-14],[-12,12]],[[1716,5615],[-6,0],[0,84]],[[1710,5699],[-72,0],[-167,-8],[-155,8],[-143,0],[-166,-8],[-155,8],[-144,0],[-161,-8],[0,194],[-91,6],[-169,2]],[[437,5706],[49,-2],[21,-44],[-11,-7],[-49,1],[-10,26],[-13,1],[13,25]],[[536,5667],[22,-8],[6,-17],[-29,8],[1,17]],[[511,5608],[23,-1],[-6,-32],[-34,1],[17,32]],[[822,5539],[11,-9],[0,-25],[12,-18],[-39,0],[-15,-8],[9,26],[12,0],[10,34]],[[867,5496],[-6,25],[21,-17],[22,-1],[-12,-25],[-5,17],[-20,1]],[[974,5516],[17,-1],[4,-33],[-27,1],[6,33]],[[966,5374],[-15,1],[-15,34],[-33,18],[0,17],[22,-2],[16,-33],[31,-18],[-6,-17]],[[1458,5592],[23,-10],[-3,-42],[41,2],[34,-8],[11,-15],[-23,-9],[-37,-2],[0,7],[-54,9],[0,-16],[-47,2],[-55,-15],[-22,-33],[-23,0],[-5,-16],[-21,0],[-5,-16],[-21,0],[0,49],[10,26],[21,8],[0,-26],[22,0],[0,43],[17,0],[16,-26],[26,0],[11,16],[18,-1],[11,15],[22,0],[15,17],[1,25],[17,16]],[[1595,5588],[16,-26],[-31,-10],[15,36]],[[1074,5357],[16,35],[11,-16],[-15,-27],[-12,8]],[[1180,5437],[-4,-17],[-23,17],[6,34],[-7,25],[23,0],[5,-18],[21,1],[-4,-16],[25,8],[6,25],[17,0],[-5,-50],[-23,-8],[-37,-1]],[[1131,5419],[-31,-1],[11,18],[20,-17]],[[1478,6282],[0,388]],[[1478,6670],[-183,6],[-100,0],[-183,-6],[0,358]],[[1012,7028],[-111,-162],[-25,2],[-59,-88],[-119,-189],[-107,-171],[-80,-137]],[[511,6283],[59,0],[155,6],[108,0],[168,-7],[142,5],[155,2],[180,-7]],[[2873,9291],[17,-17],[51,-11],[32,-18],[21,-21],[42,-18],[46,6],[35,-1],[58,-19],[40,-54],[43,-17],[15,8],[38,4],[5,8],[50,3],[65,-18],[23,-11],[6,12],[44,1],[5,-19],[-16,-5],[27,-19],[2,24],[69,-30],[63,-9],[49,-29],[48,-15],[9,13],[74,23],[35,-1],[50,-28],[33,-27],[57,-33],[32,-9],[48,89],[10,55],[33,109],[64,154],[29,62],[72,135],[5,31],[-12,203],[-181,5],[-145,0],[-145,-5],[-247,5],[0,192],[-131,-1],[-103,-2],[-180,3],[-181,-1],[-104,-2]],[[2873,9996],[0,-705]],[[511,6283],[-53,-89],[-171,-301]],[[1710,5699],[0,590],[-137,-3],[-95,-4]],[[2873,9996],[-103,2],[-182,1],[-182,-3],[-179,3],[-180,-1],[-106,-2],[-74,1],[0,-1304]],[[1867,8693],[92,-2],[63,2]],[[2022,8693],[5,16],[33,12],[9,23],[8,70],[49,-5],[106,14],[36,25],[33,42],[7,18],[0,43],[11,41],[52,74],[41,32],[48,-8],[55,28],[68,70],[65,22],[52,-18],[25,8],[42,34],[31,45],[32,24],[43,-12]],[[3190,6894],[-12,27],[7,37],[1,73],[13,57],[-30,46],[-17,-21],[-7,-48],[-32,-38],[-4,-23],[-45,-29],[24,-25],[-9,-21],[-21,2],[4,-47],[17,3],[15,-36],[-1,-29],[-24,-19],[-15,-28],[-12,7],[-4,-33],[-18,-48],[-34,-29],[-28,-1],[-19,-44],[-18,-23],[-20,-3],[-7,-22],[-34,-28],[-16,-74]],[[2844,6477],[29,-1]],[[2873,6476],[107,4]],[[2980,6480],[1,36],[-25,21],[18,53],[39,35],[24,39],[31,18],[-3,12],[57,91],[4,17],[25,20]],[[3151,6822],[0,23]],[[3151,6845],[-1,27],[34,5],[5,-8]],[[3189,6869],[0,-1]],[[3189,6869],[1,25]],[[2175,6870],[-91,-1],[-136,-5],[-147,5],[-182,0],[-141,-5]],[[1478,6864],[0,-194]],[[1716,5615],[2,20],[16,19],[17,-14]],[[1766,5648],[13,50],[22,-9],[-4,28],[12,11],[12,-22],[-4,-52]],[[1838,5654],[12,18],[-5,18],[20,9],[9,37],[31,38],[14,40],[26,9],[17,-9],[0,-28],[40,28],[6,25],[-7,35],[14,25],[22,11],[49,-2],[-2,29],[13,13],[42,16],[18,-32],[18,5]],[[2175,5939],[0,51]],[[2175,5990],[0,30]],[[2175,6020],[0,850]],[[1786,6526],[0,-1],[-1,-1],[0,-1]],[[1785,6523],[-24,-39],[-12,5],[3,43],[33,8],[1,-14]],[[1786,6526],[-1,-3]],[[1805,6418],[24,-2],[4,-22],[-20,-10],[-16,21],[8,13]],[[4604,6526],[-24,-2],[8,-11],[35,-14],[-19,27]],[[3572,6096],[109,-2],[117,-6],[127,6],[112,2],[0,-390],[139,73],[128,60],[135,58],[108,42],[53,30],[38,30],[47,-21],[46,-9],[37,26],[37,53],[-17,-15],[-18,14],[-17,58],[-12,7],[3,-71],[-18,-25],[-26,18],[-15,-16],[-20,5],[-29,57],[-7,36],[-23,11],[-8,44],[-11,1],[7,47],[-3,27],[-14,18],[-21,-22],[-12,32],[14,13],[-8,17],[2,69],[-12,85],[28,28],[4,27],[-40,-45],[6,-36],[-3,-116],[-10,-6],[-17,23],[-29,79],[-28,37],[9,25],[-32,5],[-1,75],[-33,44],[1,19],[-22,38],[-3,53],[-83,87],[-21,36],[1,16],[-18,25],[-33,19],[-15,18],[-46,30],[-70,61],[-39,7],[-48,29],[-11,16],[-75,26],[-72,-8],[-24,-15],[-26,-2],[-36,-39],[-6,28],[17,25],[-2,25],[-30,12],[-20,-3],[-61,33],[-29,-9],[-35,-34],[-12,15],[-25,-32],[2,-32],[-51,-29],[-19,33],[-42,-4],[-35,9],[-27,-48],[-5,-34],[-30,21],[-36,-64],[-10,12],[-30,-35],[-32,2],[-8,-21],[-38,10]],[[3189,6869],[156,-5],[149,5],[2,-194],[76,1],[0,-580]],[[3616,6966],[9,13],[10,-19],[-19,-20],[0,26]],[[4618,6033],[-11,41],[16,-4],[-5,-37]],[[1923,8170],[3,15],[48,30],[79,64],[76,49],[45,21],[47,17],[47,1],[30,-19],[-21,-47],[65,-34],[61,44],[5,27],[-23,35],[-35,13],[0,27],[-17,18],[-63,19],[-27,89],[-92,85],[-52,22],[-29,35],[-48,12]],[[1867,8693],[0,-487],[16,-6],[-16,-28]],[[1867,8172],[9,0]],[[1876,8172],[20,-1]],[[1896,8171],[27,-1]],[[3189,6868],[5,-13],[-15,-15],[-28,5]],[[3151,6822],[16,-15],[12,-33],[-9,-7],[35,-14],[-1,-45],[-54,-18],[24,-47],[5,-48],[-13,-19],[5,-23],[-19,6],[-16,-27],[-16,-7],[-4,-26],[-30,-27],[-16,5],[-21,-51],[-19,-17],[17,-7],[-12,-25],[-46,-1],[-16,-20],[-15,19],[30,41],[12,-5],[11,18],[-13,33],[-18,18]],[[2873,6476],[0,-979]],[[2873,5497],[157,8],[152,0],[157,-8],[0,194],[116,7],[117,1],[0,397]],[[2892,6264],[21,15],[2,-35],[-13,-15],[-20,20],[10,15]],[[2183,7653],[-170,-2],[-66,-5],[-114,6]],[[1833,7652],[-14,-19],[-20,2],[-2,17]],[[1797,7652],[-168,1],[-151,-7]],[[1478,7646],[0,-782]],[[2175,6870],[90,-1],[151,-5]],[[2416,6864],[3,17],[-17,24],[5,51],[10,1],[-2,41],[-15,43],[-51,10],[-9,-25],[-31,10],[0,-9],[-48,-6],[-39,25],[7,17],[-26,60],[-22,0],[-26,41],[-13,0],[0,26],[26,9],[0,41],[-13,8],[-7,26],[-14,0],[-14,41],[-22,17],[-14,25],[-1,67],[14,17],[0,35],[22,0],[-1,17],[29,33],[0,34],[36,35],[0,58]],[[1539,7203],[15,9],[14,-24],[0,-26],[40,-16],[0,-17],[-25,-1],[-35,34],[-9,41]],[[2080,7163],[14,-25],[34,-8],[1,-59],[7,-25],[-34,-9],[-13,-24],[-20,23],[-26,0],[-14,24],[-21,0],[-19,25],[-8,32],[54,3],[19,25],[26,1],[0,17]],[[2175,6020],[18,13],[10,41],[26,10],[29,26],[26,1],[34,25],[12,27],[34,34],[22,43],[34,37],[58,25],[37,-6],[16,54],[40,53],[60,47],[27,30],[28,63],[41,51],[6,22],[9,81],[-1,30],[-33,55],[-38,-15],[-14,-21],[-28,12],[-30,73],[-32,-12],[-10,17],[-18,2],[-16,23],[-4,-26],[-19,-53],[-24,-6],[-6,28],[-31,-26],[-50,22],[6,19],[25,18],[-3,27]],[[2541,6784],[-19,26],[4,22],[26,-5],[3,-14],[-14,-29]],[[1478,7646],[-41,2]],[[1437,7648],[-169,-214],[-189,-255],[-50,-72],[8,-43],[-25,-36]],[[1896,8171],[-13,-14],[-7,15]],[[1867,8172],[0,-28],[-168,-187],[-57,-71],[-68,-76],[-137,-162]],[[1797,7652],[-15,23],[-29,1],[2,24],[-14,18],[-37,11],[-30,-25],[-26,14],[-10,19],[-1,34],[8,43],[17,5],[7,-24],[42,-18],[38,25],[21,-1],[16,-15],[7,-29],[40,-22],[46,0],[19,-17],[-24,-59],[-3,16],[-29,4],[-9,-27]],[[2183,7653],[31,50],[31,14],[31,-9],[34,-34],[9,0],[32,34],[23,44],[-16,-3],[-14,24],[15,16],[19,1],[12,-19],[26,-17],[49,5],[29,47],[-14,58],[-1,27],[-22,30],[-16,-5],[-56,41],[-34,-52],[-38,15],[-29,31],[-54,0],[-32,-20],[-27,-5],[-80,25],[-4,-16],[-35,54],[6,26],[-44,61],[10,32],[-45,10],[-51,36],[-5,16]],[[2844,6477],[-34,-48],[-29,9],[-7,-34],[23,-1],[0,-17],[-54,2],[-13,-16],[12,-34],[-30,18],[0,-43],[-17,0],[-7,-33],[-17,1],[-6,-35],[-19,-8],[0,17],[-23,-9],[-24,-24],[-6,-26],[-29,0],[-6,-34],[18,-8],[5,-27],[25,27],[0,-42],[12,0],[0,-25],[11,-17],[-17,-9],[-12,34],[-24,0],[-34,-35],[0,34],[11,26],[0,42],[-12,-1],[0,-26],[-11,-17],[-36,-10],[-1,60],[-22,-9],[-48,-4],[1,-24],[12,18],[35,-7],[-5,-26],[-18,-9],[1,-26],[-18,8],[-6,-16],[13,-25],[-38,-10],[-1,-17],[-28,-7],[-3,67],[-18,2],[-6,-17],[-24,10],[-6,-25],[16,-27],[-39,-6],[-42,1],[-16,-8],[-6,-34],[-40,-8],[-12,21]],[[2175,5939],[24,5],[-24,-42]],[[2175,5116],[83,0],[154,-6],[145,6],[83,0],[0,195],[79,0],[154,-8],[0,194]],[[2808,6319],[13,17],[5,-52],[-12,-8],[-6,43]],[[2336,5999],[46,-20],[0,-16],[-29,-15],[-18,18],[1,33]],[[8731,815],[11,-48],[27,-183],[-1,-56],[-9,-159],[0,-51],[-16,-63],[-18,-44],[-40,-51],[-30,-16],[-7,-14],[-32,-18],[-21,37],[-61,0],[0,-148]],[[8534,1],[46,6],[29,-7],[40,5],[24,16],[4,21],[34,61],[69,73],[11,86],[-2,127],[17,112],[-7,109],[8,183],[6,20]],[[8813,813],[-82,2]],[[9159,2936],[-6,-11],[2,-80],[-13,-69],[-12,-40],[-9,-2],[-8,-54],[-16,-70],[-15,-50],[16,-130],[25,-117],[-5,-91],[-30,-18],[-37,-65],[-12,-48],[-10,20],[-39,-7],[-25,-31],[-27,-60],[-12,-69],[-11,17],[-32,-9]],[[8883,1952],[11,-25],[7,-43],[0,-69],[44,-135],[4,-33],[20,-49],[4,-34],[9,-8],[4,-34],[16,-58],[8,-9],[16,-75],[24,-60],[15,-49],[4,-34],[12,-33]],[[9081,1204],[151,0],[0,193],[155,-5],[0,389],[153,6],[-1,322],[-3,431]],[[9536,2540],[-21,16],[-17,33],[-17,8],[-38,57],[-17,8],[-39,56],[-34,27],[-16,28],[-46,43],[-26,9],[-8,18],[-26,10],[-30,34],[-29,16],[-13,33]],[[9536,2540],[0,34],[167,0],[2,194],[147,-6],[0,193],[147,7],[-1,215],[-97,-5],[-98,296],[-50,143],[-36,115],[36,254],[19,35],[-10,19],[19,58],[-22,-38],[-18,-13],[-13,-23],[-41,-23],[-3,-28],[-41,-36],[-10,-40],[-15,21],[-25,-28],[-5,22],[-15,-25],[-20,-7],[-23,-23],[-17,-42],[-15,-78],[-11,4],[0,-40],[16,-6],[-8,-29],[-6,-58],[5,-22],[47,-11],[9,-30],[3,-53],[-13,-38],[-22,19],[-13,-17],[9,-20],[19,-3],[9,14],[8,-24],[-7,-24],[-27,18],[-27,4],[-6,-18],[-25,44],[-30,-23],[-25,-8],[0,-45],[-46,-46],[-66,-47],[-51,-11],[-1,-47],[-9,-103],[-19,-66],[-22,-35],[-13,-49],[-17,-25]],[[8883,1952],[-30,-37],[-16,-50],[1,-40],[-52,-81],[-1,-12],[-37,-46],[-11,-33],[-28,-38],[-4,-28],[-20,-45],[-10,-58],[-2,-43],[-15,-84],[1,-41],[14,-146],[23,-128],[31,-109],[3,-34],[-6,-33],[7,-51]],[[8813,813],[17,60],[249,0],[-1,288],[3,43]],[[7757,385],[0,69],[-4,53],[-8,33],[-3,69],[-12,75],[1,155],[2,71],[-3,0],[-7,70],[-26,136]],[[7697,1116],[-16,0],[-42,-41],[-11,-30],[-22,-32],[-18,-40],[-38,-49],[-38,-41],[-49,-88],[-17,-58],[-13,-76],[-1,-51],[14,-114],[4,-76],[13,7],[193,0],[68,-1],[33,-41]],[[8187,1234],[-3,17],[-40,-16],[-10,11],[-20,-9],[-34,7],[8,-49],[-8,-53],[-21,-41],[4,-31],[13,-12],[-2,-25],[-15,-37],[-11,12],[-17,-19],[2,42],[-12,20],[-32,-13],[-28,-28],[-27,0],[-22,9],[5,14],[-27,17],[-9,22],[-32,10],[-24,34],[-8,-9],[-29,8],[-50,39],[-39,-10],[-2,-28]],[[7757,385],[7,-23],[92,-12],[97,33],[175,-17],[93,-21]],[[8221,345],[16,58],[23,63],[-20,218],[-15,220],[-5,13],[-14,135],[-7,101],[-12,81]],[[8221,345],[2,-16],[43,-69],[48,-69],[92,-112],[49,-48],[36,-21],[43,-9]],[[8534,1],[0,136],[-6,35],[26,16],[4,-39],[29,0],[8,23],[22,2],[37,51],[18,0],[-7,42],[0,51],[-15,51],[-19,0],[-12,34],[-8,77],[-22,16],[-11,77],[-18,78],[-21,77],[-6,51],[0,90],[9,16],[4,48],[-8,71],[-20,8],[-11,56],[-17,33],[-16,66],[-22,28],[-11,-25],[-61,-72],[-37,20],[-10,59],[-23,40],[-35,34],[-28,4],[-60,-21]],[[4881,2921],[5,0],[4,0],[4,0],[5,0],[4,0],[4,0],[4,0],[5,0],[4,0],[4,0],[5,0],[4,0],[4,0],[4,0],[5,0],[4,0],[4,0],[5,0],[4,0],[4,0],[4,0],[5,0],[4,0],[4,0],[5,0],[4,0],[4,0],[4,0],[5,0],[4,0],[4,0],[5,0],[4,0],[4,0],[4,0],[5,0],[4,0],[4,0],[5,0],[4,0],[4,-1],[4,0],[5,0],[4,0],[4,0],[5,0],[4,0],[4,0],[4,-1],[5,0],[4,0],[4,0],[5,0],[4,-1],[4,0],[4,0],[5,0],[4,0],[4,0],[4,-1],[5,0],[4,0],[4,0],[5,0],[4,-1],[4,0],[4,0],[5,0],[4,-1],[4,0],[5,0],[4,-1],[4,0],[4,0],[2,0],[1,0],[5,0],[4,0],[4,1],[4,0],[5,0],[4,1],[4,0],[4,0],[5,0],[4,1],[4,0],[5,0],[4,0],[4,0],[4,1],[5,0],[4,0],[4,0],[5,0],[4,0],[4,1],[4,0],[5,0],[4,0],[4,0],[5,1],[4,0],[4,0],[4,0],[5,0],[4,0],[4,0],[4,0],[5,1],[4,0],[4,0],[5,0],[4,0],[4,0],[4,0],[4,0],[1,0],[4,0],[1,0]],[[5050,2337],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[1,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[1,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,9],[-4,0],[-4,0],[-5,0],[-4,0],[-4,0],[-5,0],[-4,0],[-4,0],[-4,0],[-4,0],[-5,0],[-4,0],[-4,0],[-4,0],[-5,0],[-4,0],[-4,0],[-4,0],[-5,0],[-4,0],[-4,0],[-4,0],[-5,0],[-4,0],[-4,0],[-4,0],[-4,0],[-5,0],[-4,0],[-4,0],[-4,0],[-5,0],[-4,0],[-4,0],[-4,0],[-5,0],[-4,0],[-4,0],[-4,0],[-5,0],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[-1,9]],[[5555,2336],[-3,0],[-3,0],[-1,0],[-4,0],[-4,1],[-5,0],[-3,0],[-1,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-5,0],[-4,0],[-4,0],[-4,1],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-5,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-5,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-5,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,-1],[-4,0],[-5,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-5,0],[-4,0],[-4,-1],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-5,0],[-4,-1],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,-1],[-4,0],[-5,0],[-4,0],[-4,-1],[-4,0],[-4,0],[-4,0],[-4,0],[-4,-1],[-5,0],[-4,0],[-4,0],[-4,-1],[-4,0],[-4,0],[-2,0],[-2,0],[-4,0],[-5,0],[-4,1],[-4,0],[-4,0],[-4,0],[-4,1],[-4,0],[-4,0],[-4,0],[-5,0],[-4,1],[-4,0],[-4,0],[-4,0],[-4,1],[-4,0],[-4,0],[-4,0],[-5,0],[-4,0],[-4,1],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-5,0],[-4,1],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0]],[[5382,2921],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-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,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-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],[0,-1],[0,-1],[1,0],[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],[1,0],[0,-1],[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,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[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,0],[0,-1],[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],[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],[1,0],[0,-1],[1,-1],[2,-6],[0,-1],[0,-1],[0,-1],[1,0],[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,-2],[0,-1],[0,-1],[-1,-1],[0,-4],[-1,-5],[0,-2],[-1,-2],[0,-3],[-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],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[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],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[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],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[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,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],[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],[0,-1],[0,-1],[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],[0,-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],[0,-1],[0,-1],[0,-1],[0,-2],[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,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],[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,0],[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],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[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],[1,0],[0,-1],[0,-1],[1,0],[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],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-7],[1,-9],[1,-8],[1,-5],[0,-4],[1,-8],[1,-8],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[-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],[1,0],[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],[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],[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],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[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],[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],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[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],[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],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[5425,2715],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[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],[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],[-1,0],[0,1],[-1,0],[0,1],[0,1],[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],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[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],[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,0],[0,-1],[1,0]],[[4877,3545],[5,1],[4,0],[5,0],[4,0],[5,0],[4,0],[5,0],[4,0],[5,1],[4,0],[5,0],[4,0],[5,0],[4,0],[5,0],[4,0],[5,0],[4,0],[5,0],[4,0],[5,0],[4,0],[5,0],[4,0],[5,0],[4,0],[5,0],[4,0],[5,0],[4,0],[5,0],[4,-1],[5,0],[4,0],[5,0],[4,0],[5,0],[4,0],[5,0],[4,-1],[5,0],[4,0],[4,0],[5,0],[4,0],[5,0],[4,0],[5,-1],[4,0],[5,0],[4,0],[5,0],[4,0],[5,-1],[4,0],[5,0],[4,0],[5,0],[4,0],[5,-1],[4,0],[5,0],[4,-1],[5,0],[4,0],[5,0],[4,-1],[5,0],[4,0],[5,0],[4,-1],[4,0],[4,0],[4,1],[4,0],[5,0],[4,0],[5,1],[4,0],[5,0],[4,0],[5,1],[4,0],[5,0],[4,1],[5,0],[4,0],[5,0],[4,0],[5,0],[4,1],[5,0],[4,0],[5,0],[4,0],[5,0],[4,1],[5,0],[4,0],[5,0],[1,0],[3,0],[4,0]],[[4881,2921],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[-1,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[-1,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[-1,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[-1,9],[0,8],[0,8]],[[5333,3545],[0,-1],[0,-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],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,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],[0,-1],[-1,0],[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,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,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-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],[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],[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],[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],[0,-1],[0,-1],[0,-3],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-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],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[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,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-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,0],[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],[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],[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],[-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,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[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],[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],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[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],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[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],[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],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[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],[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,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[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],[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,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[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],[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,0],[0,-1],[0,-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],[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],[0,-1],[1,0],[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,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[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],[-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],[-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],[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,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],[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],[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],[0,-1],[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],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[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],[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],[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,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1]],[[5555,2336],[0,-1],[0,-1],[1,0],[0,-1],[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],[1,0],[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],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[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],[0,-1],[1,0],[0,-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],[1,0],[0,-1],[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,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,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[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],[-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],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-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],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[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],[0,-1],[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],[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,0],[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],[1,0],[0,-1],[0,-1],[0,-1],[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,-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],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-3],[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,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],[1,0],[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,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,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],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[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],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[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],[1,0],[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],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-2],[1,0],[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],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[1,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[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],[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,-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],[0,-1],[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],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[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],[1,0],[1,0],[1,0],[0,1],[1,1],[1,0],[2,2],[1,0],[3,0],[1,0],[2,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-2],[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,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[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],[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,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-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],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[1,0],[0,-1],[1,-2],[0,-1],[0,-1],[1,-2],[0,-1],[1,-2],[0,-1],[0,-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],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-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,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],[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,0],[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,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],[1,0],[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,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[2,0],[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],[-1,-1],[-3,0],[-1,2],[0,1],[-1,2],[-3,1],[-4,2],[-1,1],[-3,1],[-4,2],[-4,1],[-4,1],[-4,1],[-4,1],[-4,1],[-4,1],[-4,1],[-1,-1],[-1,-8],[-2,-7],[0,-2],[-2,-8],[-2,-8],[0,-1],[-2,-8],[-1,-9],[0,-1],[-2,-7],[-2,-9],[0,-2],[-2,-6],[-1,-9],[-1,-4],[-1,-4],[-2,-9],[-1,-5],[-1,-3],[-2,-9],[-1,-7],[0,-1],[-2,-9],[-2,-8],[-2,-9],[-1,-8],[-1,-2],[-1,-7],[-2,-8],[0,-3],[-2,-6],[-1,-8],[-1,-5],[-1,-4],[-2,-8],[-1,-6],[-1,-3],[-1,-8],[-2,-8],[0,-1],[-2,-8],[-2,-9],[-1,-8],[-2,-9],[0,-2],[-2,-6],[-2,-9],[0,-2],[-4,-2],[-4,-1],[-4,-2],[-4,-2],[-1,0],[-3,-1],[-4,-2],[-3,-2],[-4,-1],[-4,-2],[-4,-1],[0,-1],[-4,-1],[-4,-2],[-4,-2],[-4,-1],[-4,-2],[-1,-1],[-2,-1],[-4,-1],[-4,-2],[-4,-2],[-4,-2],[-4,-1],[-4,-2],[-4,-2],[-3,-1],[-4,-2],[-4,-2],[-2,-1],[-2,-1],[-3,-1],[-3,-1],[-4,-2],[-4,-2],[-2,-1],[-2,-1],[-3,-1],[-4,-2],[-4,-2],[-4,-1],[0,-1],[-4,-2],[-4,-1],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-1],[-4,-2],[-1,-1],[-2,-1],[-4,-2],[-4,-2],[-4,-1],[-2,-1],[-2,-2],[-4,-1],[-4,-2],[-4,-2],[-3,-1],[-1,-1],[-3,-2],[-4,-2],[-4,-2],[-4,-1],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-1,-1],[-3,-1],[-4,-2],[-3,-2],[-4,-1],[-2,-1],[-2,-1],[-4,-2],[-4,-2],[-4,-2],[-3,-2],[-1,0],[-4,-2],[-4,-2],[-3,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-1,0],[-3,-1],[-4,-3],[-3,-1],[-4,-2],[-2,-2],[-2,0],[-4,-2],[-4,-2],[-4,-2],[-3,-2],[-1,0],[-4,-2],[-3,-3],[-4,-1],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-1,-1],[-2,-2],[-4,-1],[-4,-2],[-4,-3],[-2,0],[-2,-1],[-4,-3],[-4,-2],[-4,-2],[-2,-1],[-1,-1],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,8],[-1,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,-1],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-3,-1],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,-1],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,-1],[-4,0],[-4,0],[-3,0],[-4,0],[-4,0],[-4,-1],[-4,0],[-4,0],[-4,-1],[-4,0],[-4,0],[-4,0],[0,8],[0,9],[0,8],[0,1],[0,8],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,2],[0,6],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[-1,0],[-4,1],[-4,0],[-4,0],[-4,0],[-4,0],[-4,1],[-4,0],[-4,0],[-4,0],[-4,0],[-4,1],[-4,0],[-5,0],[-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],[-5,1],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,1],[0,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[1,8]],[[5633,2019],[-1,0],[0,-1],[-1,0],[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],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-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],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-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],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[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],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[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],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[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],[0,1],[1,0],[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],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[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],[-1,0],[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,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-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,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[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],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[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],[-1,0],[-1,0],[-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,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1]],[[5739,1875],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[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],[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],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0]],[[5772,1875],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[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],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[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],[1,0],[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],[-1,0],[0,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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-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],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[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,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1]],[[5713,1846],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[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],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-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],[1,0],[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,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[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]],[[5692,1858],[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],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[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],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1]],[[5774,1811],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-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],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[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],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[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],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[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],[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],[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,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[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],[-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],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0]],[[4877,3545],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[-1,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[-1,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[-1,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[-1,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[-1,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[-1,9],[0,8],[0,8],[0,9],[0,8],[0,9],[0,8],[0,9],[0,8],[0,8],[0,9],[0,8],[0,9],[-1,8],[0,9],[0,8],[0,9],[0,8],[0,4],[5,1],[5,0],[5,0],[5,0],[4,0],[5,0],[5,0],[5,0],[5,0],[5,0],[5,0],[4,0],[5,0],[5,1],[5,0],[5,0],[5,0],[4,0],[3,4],[2,4],[3,4],[2,4],[3,5],[2,3],[3,5],[2,3],[1,1],[2,5],[2,2],[4,6],[1,1],[5,7],[4,7],[2,2],[3,5],[3,3],[2,4],[3,5],[2,2],[4,6],[1,1],[5,7],[5,7],[1,2],[4,5],[2,3],[3,4],[3,4],[2,3],[4,6],[1,1],[5,7],[5,7],[0,1],[5,6],[1,2],[4,5],[2,4],[1,0],[2,3],[4,5],[1,1],[5,6],[0,1],[5,6],[2,2],[3,4],[3,5],[2,2],[5,6],[5,6],[1,2],[4,4],[4,4],[1,1],[5,5],[2,2],[3,3],[5,5],[5,5],[3,3],[2,2],[5,5],[1,1],[0,1],[4,4],[3,3],[2,3],[5,6],[6,6],[1,2],[4,4],[3,4],[2,2],[4,6],[1,0],[5,6],[1,2],[4,4],[3,4],[2,2],[3,3],[2,3],[5,5],[1,1],[4,3],[0,1],[5,3],[5,4],[1,1],[1,1],[3,2],[5,4],[3,2],[2,1],[1,2],[4,2],[5,3],[1,1],[0,1],[4,4],[3,4],[2,2],[4,5],[2,2],[2,3],[1,1],[4,4],[1,1],[1,0],[4,3],[1,1],[1,0],[3,1],[3,1],[2,0],[4,0],[1,0],[3,-1],[2,-1],[0,-3],[1,-4],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[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],[0,-1],[0,-1],[1,0],[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],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[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],[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],[0,-1],[1,0],[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],[0,-1],[1,0],[-1,0],[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],[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],[1,0],[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],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[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],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[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],[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],[1,0],[1,0],[1,0],[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,0],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-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],[1,0],[0,-1],[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,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],[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,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[1,-1],[0,-2],[0,-3],[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],[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,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,-1],[1,-3],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-2],[0,-3],[0,-1],[0,-2],[0,-2],[1,-1],[0,-2],[0,-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],[0,-1],[0,-1],[1,-1],[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,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-3],[0,-1],[0,-1],[-1,0],[1,-1],[0,-2],[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],[-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],[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],[1,-5],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[0,-2],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-2],[1,-3],[0,-2],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-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],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[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],[-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],[1,0],[0,-1],[1,0],[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],[-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],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[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],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[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],[1,0],[0,-1],[0,-1],[1,0],[0,-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,0],[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],[-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],[-1,0],[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],[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,-3],[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],[-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],[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],[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,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[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],[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],[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,0],[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,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[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,-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],[-1,0],[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],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,-2],[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,-1],[0,-1],[-1,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[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],[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,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[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,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-3],[-1,0],[0,-1],[0,-2],[0,-1],[-1,-3],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-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],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-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],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[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],[1,0],[0,-1],[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],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[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],[-1,0],[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],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[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],[-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],[1,0],[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],[1,0],[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],[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],[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],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]]],"transform":{"scale":[0.012896263708114832,0.005117842995919024],"translate":[-193.05806981087295,23.8179233998577]}}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment