Skip to content

Instantly share code, notes, and snippets.

@mattparrilla
Last active August 29, 2015 14:03
Show Gist options
  • Save mattparrilla/bcfeb1dbf17565c9d4e5 to your computer and use it in GitHub Desktop.
Save mattparrilla/bcfeb1dbf17565c9d4e5 to your computer and use it in GitHub Desktop.
Small Multiples Choropleth: Lyme Disease By County in Vermont
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
margin-top: 70px;
margin-left: 25px;
}
svg {
font: 10px sans-serif;
display: inline;
}
.county {
stroke-width: 1px;
stroke: #aaa;
}
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/queue.v1.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="http://d3js.org/colorbrewer.v1.min.js"></script>
<script>
var width = 133,
height = 175;
var projection = d3.geo.transverseMercator()
.rotate([72.57, -44.20])
.translate([50,60])
.scale([4000]);
var path = d3.geo.path()
.projection(projection);
var mapColor = colorbrewer.Blues[9];
var quantize = d3.scale.quantize()
.domain([0, 150])
.range(mapColor);
var years = ['2000', '2001', '2002', '2003', '2004', '2005', '2006',
'2007', '2008', '2009', '2010', '2011', '2012', '2013'];
queue()
.defer(d3.json, "vermont-counties.json")
.defer(d3.csv, "lyme-vt-counties.csv")
.await(ready);
// Load CSV
function ready(error, vt, data) {
var vermont = topojson.feature(vt, vt.objects.counties);
for (var j=0; j<years.length; j++) {
var svg = d3.select("body").append("svg")
.attr("x", 350*j)
.attr("width", width)
.attr("height", height);
svg.append("path")
.datum(vermont)
.attr("d", path)
.attr("x", j*400)
.style("stroke", "#777")
.style("stroke-width", "1");
svg.selectAll(".subunit")
.data(topojson.feature(vt, vt.objects.counties).features)
.enter().append("path")
.attr("d", path)
.attr("class", "county")
.style("fill", function(d) {
for (var i=0; i<data.length; i++) {
if (data[i].county.toUpperCase() === d.properties.county) {
var cases = data[i][years[j]];
if (cases > 0) {
return quantize(cases);
} else {
return "#ccc";
}
}
}
return "#aaa";
});
}
};
</script>
county 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008-confirmed 2008-probable 2008 2009-confirmed 2009-probable 2009 2010-confirmed 2010-probable 2010 2011-confirmed 2011-probable 2011 2012-confirmed 2012-probable 2012 2013-confirmed 2013-probable 2013
Addison 1 0 0 1 0 4 4 3 5 15 6 21 28 5 33 14 2 16 28 8 36 17 8 25 30 13 43
Bennington 0 7 0 3 6 9 16 33 36 84 27 111 66 21 87 56 14 70 107 48 155 67 34 101 101 32 133
Caledonia 1 0 0 0 0 0 1 0 0 1 1 2 0 1 1 0 0 0 2 1 3 3 0 3 4 1 5
Chittenden 0 0 0 1 0 1 0 6 5 17 1 18 18 3 21 13 3 16 34 6 40 34 9 43 66 12 78
Essex 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1
Franklin 2 0 0 0 0 1 0 0 2 3 0 3 1 0 1 4 1 5 6 0 6 5 1 6 9 1 10
Grand Isle 0 0 0 0 0 0 0 1 0 3 0 3 3 0 3 1 0 1 2 0 2 2 0 2 4 3 7
Lamoille 0 0 0 0 0 0 0 0 2 2 0 2 1 0 1 2 0 2 2 1 3 1 0 1 2 2 4
Orange 0 1 1 0 0 1 0 1 0 5 0 5 5 0 5 5 1 6 9 1 10 11 0 11 15 2 17
Orleans 0 0 0 0 1 0 0 0 1 1 0 1 0 0 0 1 0 1 2 0 2 0 1 1 1 0 1
Rutland 1 0 2 2 1 1 2 4 10 36 8 44 48 12 60 35 19 54 82 22 104 56 12 68 109 31 140
Washington 0 0 0 1 2 0 0 1 3 5 0 5 3 1 4 3 0 3 4 1 5 4 1 5 5 1 6
Windham 1 2 0 2 7 3 5 10 16 37 12 49 39 14 53 34 11 45 60 16 76 32 21 53 70 29 99
Windsor 1 1 0 1 0 2 1 3 3 21 4 25 35 4 39 25 7 32 55 15 70 35 13 48 106 38 144
Total 7 12 3 11 17 22 29 62 83 231 59 290 247 61 308 193 58 251 393 119 512 267 100 367 523 165 688
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"geometries":[{"type":"Polygon","properties":{"county":"ORLEANS"},"arcs":[[0,1,2,3,4]]},{"type":"Polygon","properties":{"county":"GRAND ISLE"},"arcs":[[5,6,7]]},{"type":"Polygon","properties":{"county":"CHITTENDEN"},"arcs":[[8,9,10,11,-8,12]]},{"type":"Polygon","properties":{"county":"WINDSOR"},"arcs":[[13,14,15,16,17,18]]},{"type":"Polygon","properties":{"county":"WINDHAM"},"arcs":[[19,20,-15]]},{"type":"Polygon","properties":{"county":"BENNINGTON"},"arcs":[[-16,-21,21,22]]},{"type":"Polygon","properties":{"county":"FRANKLIN"},"arcs":[[-4,23,-13,-7,24]]},{"type":"Polygon","properties":{"county":"ESSEX"},"arcs":[[25,-1,26]]},{"type":"Polygon","properties":{"county":"LAMOILLE"},"arcs":[[-3,27,28,-9,-24]]},{"type":"Polygon","properties":{"county":"CALEDONIA"},"arcs":[[29,30,31,-28,-2,-26]]},{"type":"Polygon","properties":{"county":"ORANGE"},"arcs":[[32,-19,33,34,-31]]},{"type":"Polygon","properties":{"county":"WASHINGTON"},"arcs":[[-35,35,-10,-29,-32]]},{"type":"Polygon","properties":{"county":"RUTLAND"},"arcs":[[-23,36,37,-17]]},{"type":"Polygon","properties":{"county":"ADDISON"},"arcs":[[-36,-34,-18,-38,38,-11]]}]}},"arcs":[[[7799,9961],[-7,-28],[-8,-37],[-9,-40],[-12,-52],[-8,-35],[-13,-55],[-7,-30],[-3,-13],[-8,-37],[-2,-9],[-9,-42],[-10,-42],[-7,-31],[-3,-14],[18,-8],[48,-22],[22,-10],[25,-12],[52,-24],[39,-18],[11,-5],[-7,-6],[-13,-10],[-41,-35],[-42,-36],[-35,-31],[-36,-31],[-40,-34],[-47,-32],[-38,-31],[-46,-36],[-15,-12],[-29,-23],[-41,-34],[-50,-40],[-12,-9],[47,-20],[52,-23],[52,-22],[29,-13]],[[7596,8919],[-22,-18],[-23,-19],[-16,-15],[-18,-15],[-17,-14],[-4,-3],[-37,-31],[-44,-37],[-39,-32],[-43,-37],[-32,-26],[-10,-7],[-18,-17],[-19,-17],[-23,-20],[-25,10],[-53,23],[-70,30],[-59,25],[-63,27],[-62,27],[-65,28],[-78,33],[-47,20],[12,-29],[16,-34],[16,-37],[19,-40],[19,-43],[19,-43],[23,-51],[3,-6],[-59,18],[-52,15],[-68,20],[-10,3],[-40,12],[-58,17],[-21,-29],[-25,-30],[-27,-33],[-26,-31],[-23,-28],[-26,-30],[-27,-33],[-23,-27],[-24,-31],[-23,-28],[-25,-33],[-13,-14],[-4,-4],[-23,-32],[-9,-11],[-19,-21],[-12,-14],[-6,-7],[-11,-11],[-12,-15],[-18,-20],[-9,-11],[-15,-16],[-24,-28],[-18,-22],[-16,-17],[-6,-8],[-23,-26],[-3,-4],[-31,-36],[-4,-5],[-4,-5],[-6,-6],[-11,-13],[-3,-4],[-6,-6],[-11,-13],[-6,-6],[-11,4],[-13,4],[-7,2],[-49,16],[-20,7],[-26,8],[-47,16],[-13,4],[-18,6],[-16,5],[-30,9],[-15,5],[-16,5],[-40,13],[-10,3],[-60,19],[-27,9],[-7,2],[-38,12],[-31,9],[-11,3],[-9,3],[-11,4],[-37,14]],[[5394,8110],[10,18],[17,20],[-14,2],[-17,6],[-23,7],[-58,18],[-70,22],[-77,24],[-76,24],[-74,24],[-46,14],[-22,7],[-30,10],[-37,11],[-36,11],[26,31],[4,4],[38,44],[34,41],[43,51],[38,43],[31,37],[29,34],[30,34],[27,33],[25,29],[5,6],[-24,8],[-57,18],[-58,18],[-70,22],[-65,20],[-65,20],[-46,14],[-17,5],[-13,4],[-6,2],[-27,8],[-40,13],[-31,10],[-47,14],[-51,16],[-55,17],[-55,17],[-49,15],[-42,13]],[[4353,8969],[19,19],[42,42],[43,43],[36,36],[38,38],[29,28],[25,27],[-1,11],[-4,42],[-4,45],[-5,50],[-4,30],[-2,14],[-3,37],[-4,31],[-3,34],[-3,33],[-3,29],[-3,25],[-2,20],[16,1],[9,0],[-3,12],[-7,28],[-8,34],[-9,35],[-9,38],[-10,42],[-9,38],[-11,45],[-9,35],[-6,28],[-7,23]],[[4481,9962],[76,-1],[27,-1],[13,0],[142,3],[74,1],[7,0],[15,0],[25,1],[145,-1],[43,-2],[33,-1],[11,0],[15,0],[28,-1],[6,0],[16,-1],[22,-1],[15,0],[13,-1],[22,0],[93,-3],[19,0],[26,0],[21,0],[8,0],[24,-1],[104,-3],[23,0],[49,-2],[24,0],[13,-1],[41,-3],[22,-1],[11,0],[38,1],[57,1],[51,0],[12,0],[32,0],[22,0],[23,0],[24,0],[12,0],[9,0],[6,1],[65,1],[57,1],[106,1],[4,0],[11,1],[13,0],[43,0],[60,1],[9,0],[8,0],[39,1],[4,0],[11,0],[12,0],[86,1],[2,0],[26,-1],[13,0],[6,0],[2,0],[36,0],[15,-1],[24,0],[7,0],[18,0],[29,0],[29,0],[1,0],[1,0],[9,0],[11,0],[32,0],[3,0],[17,0],[4,0],[12,1],[25,0],[2,0],[61,0],[36,1],[31,0],[9,0],[31,0],[16,1],[37,0],[20,1],[40,0],[36,1],[9,0],[32,1],[36,0],[14,1],[203,3],[60,1],[48,1],[83,-1],[43,-2],[35,0],[14,0],[32,0],[28,1]],[[385,8024],[-45,35],[-4,3],[-6,4],[-5,4],[-4,3],[-2,5],[-1,4],[1,5],[-1,4],[0,4],[-2,5],[-2,4],[-2,4],[-4,4],[-4,4],[-4,3],[-3,4],[-5,3],[-4,4],[-3,4],[1,5],[3,4],[5,3],[5,3],[4,3],[4,4],[3,4],[2,4],[0,5],[-1,4],[-1,4],[-2,5],[-4,4],[-4,3],[-4,5],[-4,4],[-2,5],[-2,4],[-2,5],[-2,4],[0,4],[-1,4],[-1,5],[-3,4],[-4,3],[-7,3],[-6,4],[-6,3],[-5,4],[-5,3],[-3,5],[-1,4],[1,5],[3,4],[4,4],[4,4],[2,4],[2,5],[1,4],[2,5],[0,4],[0,5],[2,4],[0,4],[0,5],[-2,4],[-1,5],[-2,4],[0,4],[3,4],[4,3],[6,2],[5,3],[7,3],[6,3],[5,2],[5,4],[-2,4],[-4,3],[-4,4],[-5,3],[-4,3],[-4,3],[-5,4],[2,4],[6,2],[6,3],[5,3],[4,4],[4,3],[3,4],[3,4],[-2,4],[-2,4],[-2,4],[1,6],[5,2],[5,4],[3,4],[2,4],[4,4],[4,4],[6,2],[7,0],[8,1],[2,4],[0,4],[-1,4],[-3,4],[-4,3],[-5,4],[-2,4],[3,4],[2,5],[2,3],[2,5],[-1,5],[-3,5],[-1,4],[0,4],[6,3],[10,1],[8,3],[1,4],[-1,6],[-4,5],[-3,4],[-5,4],[-2,5],[5,2],[7,3],[8,4],[4,3],[4,4],[1,6],[4,4],[3,4],[4,4],[3,4],[1,5],[-3,4],[-7,1],[-7,1],[-5,3],[-1,4],[1,5],[1,6],[0,6],[1,7],[-1,6],[-1,6],[-1,4],[1,6],[1,4],[1,6],[0,5],[-1,6],[0,6],[0,5],[1,5],[-1,7],[0,6],[0,4],[1,5],[1,4],[0,6],[0,6],[0,8],[0,7],[0,7],[0,6],[0,7],[0,7],[-1,7],[-1,6],[-1,6],[0,4],[0,6],[3,4],[3,5],[3,5],[4,4],[4,4],[4,4],[5,3],[5,3],[5,3],[4,4],[3,4],[4,4],[5,5],[3,3],[3,5],[2,4],[3,5],[2,5],[2,4],[2,6],[2,4],[1,5],[3,3],[4,4],[3,5],[2,4],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[4,4],[4,3],[6,5],[6,4],[7,3],[6,4],[5,3],[6,4],[6,3],[5,3],[5,5],[3,5],[3,4],[1,5],[1,4],[1,6],[0,5],[0,5],[-1,5],[0,4],[-1,6],[0,5],[-1,6],[1,7],[-4,8],[0,7],[-2,6],[-2,4],[-5,4],[-6,3],[-5,2],[-6,3],[-5,4],[-5,4],[-3,4],[-4,4],[-4,4],[-5,4],[-6,4],[-6,4],[-6,2],[-6,4],[-5,3],[-4,4],[-5,5],[-3,4],[-3,3],[-5,4],[-4,3],[-6,3],[-6,2],[-5,2],[-7,4],[-7,2],[-6,3],[-8,2],[-6,2],[-7,3],[-6,3],[-5,3],[-5,4],[-5,4],[-4,4],[-3,4],[-3,4],[-4,4],[-3,4],[-3,4],[-4,3],[-7,2],[-6,1],[-6,3],[-3,5],[-1,4],[0,4],[1,5],[1,4],[0,4],[-5,3],[-4,3],[2,4],[2,3],[0,5],[-3,3],[-3,4],[3,4],[5,3],[3,4],[1,5],[-1,4],[-1,4],[-1,4],[0,5],[5,3],[5,2],[4,3],[3,4],[3,4],[5,2],[6,2],[6,3],[5,2],[3,4],[3,4],[3,5],[2,3],[3,5],[2,4],[2,5],[1,4],[2,5],[1,4],[2,4],[1,4],[2,5],[1,6],[1,4],[1,4],[2,4],[1,7],[1,5],[2,6],[2,5],[2,7],[2,5],[2,7],[1,4],[3,8],[1,4],[2,7],[2,4],[2,6],[3,5],[4,6],[3,6],[4,4],[3,6],[5,5],[4,6],[4,4],[6,5],[6,4],[7,5],[6,4],[8,4],[9,3],[8,3],[8,3],[8,4],[6,4],[5,5],[3,5],[2,7],[1,6],[0,5],[0,7],[0,5],[-1,6],[-1,5],[0,7],[-1,5],[0,5],[-1,6],[0,7],[0,5],[-1,7],[0,5],[0,6],[-1,5],[0,7],[0,5],[0,9],[0,4],[1,7],[0,6],[2,7],[0,4],[1,7],[1,6],[1,6],[0,5],[1,6],[1,6],[0,6],[1,6],[-1,6],[-1,5],[-3,5],[-6,5],[-5,3],[-6,4],[-6,3],[-7,5],[-6,4],[-7,5],[-6,6],[-5,5],[-5,6],[-5,6],[-3,5],[-4,5],[-3,6],[-1,4],[-3,6],[-1,7],[-2,6],[1,5],[3,5],[4,6],[4,5],[4,4],[5,6],[1,6],[3,6],[2,5],[3,5],[3,5],[4,6],[2,5],[3,4],[2,5],[3,5],[4,5],[2,5],[3,4],[2,4],[2,3],[40,1],[33,0],[14,0],[28,1],[17,0],[45,1],[1,0],[15,0],[9,0],[35,1],[1,0],[13,0],[26,1],[31,0],[8,0],[3,0],[3,0],[36,1],[11,0],[103,1],[20,1],[10,0],[5,0],[6,0],[17,0],[61,1],[49,1],[16,0],[5,0],[2,0],[10,0],[87,2],[4,0]],[[1245,9985],[-4,-7],[-3,-5],[-2,-4],[-4,-5],[-5,-8],[-3,-5],[-3,-4],[-4,-5],[-4,-7],[-4,-5],[-3,-4],[-3,-4],[-2,-3],[-4,-4],[-6,-8],[-2,-3],[-6,-8],[-3,-4],[-6,-7],[-4,-4],[-5,-6],[-6,-6],[-4,-4],[-3,-4],[-3,-4],[-5,-5],[-3,-4],[-5,-6],[-8,-7],[-5,-6],[-3,-3],[-5,-6],[-4,-4],[-4,-5],[-3,-5],[-3,-5],[-4,-5],[-2,-5],[-3,-4],[-4,-5],[-4,-4],[-3,-5],[-5,-5],[-4,-4],[-5,-4],[-4,-4],[-4,-5],[-4,-3],[-7,-4],[-7,-4],[-6,-3],[-5,-2],[-6,-3],[-5,-2],[-7,-4],[-4,-4],[-4,-4],[-3,-4],[-1,-5],[-2,-6],[1,-5],[1,-5],[1,-6],[2,-5],[3,-6],[3,-5],[5,-4],[5,-4],[5,-4],[4,-3],[4,-5],[2,-5],[2,-4],[2,-7],[1,-6],[2,-6],[4,-5],[4,-7],[2,-4],[3,-4],[3,-5],[5,-6],[3,-6],[5,-6],[3,-5],[7,-5],[5,-3],[9,-2],[7,-2],[10,-2],[6,-2],[8,-3],[7,-3],[8,-3],[7,-3],[7,-3],[8,-3],[9,-2],[6,-1],[9,-1],[7,0],[10,-1],[9,0],[9,0],[8,0],[7,-3],[5,-3],[4,-4],[3,-6],[2,-6],[0,-6],[0,-5],[0,-7],[0,-5],[0,-4],[-1,-6],[0,-4],[-1,-5],[0,-4],[-1,-6],[-1,-5],[-1,-5],[-2,-4],[-2,-7],[-2,-5],[-2,-4],[-3,-4],[-3,-5],[-1,-4],[-2,-4],[-1,-5],[-2,-4],[0,-4],[-1,-4],[1,-5],[-1,-6],[0,-5],[-2,-6],[-4,-4],[-4,-5],[-4,-5],[-5,-3],[-4,-4],[-5,-5],[-4,-5],[-3,-4],[-1,-6],[0,-6],[0,-6],[-1,-5],[-2,-5],[-3,-5],[-3,-5],[-2,-4],[-2,-5],[-2,-4],[-1,-5],[-2,-5],[-1,-7],[-1,-7],[-1,-6],[1,-6],[2,-6],[2,-4],[4,-4],[4,-4],[4,-5],[4,-5],[2,-5],[2,-6],[1,-4],[-1,-6],[-2,-5],[-4,-4],[-5,-5],[-6,-6],[-5,-5],[-1,-6],[-1,-5],[0,-5],[-2,-4],[-4,-4],[-6,-4],[-5,-3],[-7,-2],[-8,-2],[-7,-1],[-9,-1],[-7,-2],[-7,-2],[-7,-3],[-8,-2],[-7,-2],[-6,-2],[-6,-3],[-5,-3],[-8,-4],[-5,-3],[-6,-3],[-6,-4],[-6,-3],[-7,-4],[-6,-5],[-5,-3],[-4,-4],[-4,-3],[-4,-4],[-5,-6],[-5,-4],[-3,-3],[-5,-4],[-4,-4],[-3,-4],[-4,-4],[-3,-4],[-3,-4],[-4,-5],[-4,-6],[-4,-5],[-4,-6],[-4,-4],[-2,-4],[-3,-4],[-4,-4],[-3,-4],[-3,-4],[-2,-4],[-3,-4],[-3,-4],[-2,-5],[-4,-5],[-6,-5],[1,-7],[-2,-4],[-1,-4],[-2,-5],[-2,-5],[-2,-5],[-1,-4],[0,-6],[0,-6],[0,-5],[0,-4],[1,-6],[1,-5],[1,-5],[1,-5],[1,-4],[2,-5],[3,-5],[3,-4],[2,-5],[4,-5],[2,-4],[4,-5],[4,-5],[4,-5],[3,-4],[3,-4],[3,-4],[3,-4],[108,-119]],[[1060,8716],[-2,-11],[-1,-8],[-1,-8],[1,-6],[-1,-9],[1,-7],[-1,-7],[1,-8],[2,-8],[1,-7],[1,-7],[0,-9],[1,-8],[0,-8],[0,-6],[0,-7],[0,-8],[0,-7],[0,-12],[-1,-5],[-2,-7],[-3,-7],[-3,-9],[-4,-7],[-3,-8],[-3,-7],[-3,-8],[-2,-6],[-2,-9],[0,-8],[0,-7],[1,-8],[-1,-8],[1,-8],[1,-8],[0,-7],[0,-9],[0,-9],[1,-8],[0,-8],[-1,-7],[-4,-6],[-8,-6],[-11,-5],[-11,-4],[-15,-4],[-10,-3],[-14,-2],[-10,-2],[-8,-4],[-6,-8],[-5,-6],[-4,-7],[-4,-8],[-3,-6],[-3,-9],[-1,-8],[0,-10],[1,-9],[1,-12],[2,-10],[1,-11],[2,-11],[1,-9],[1,-11],[-2,-8],[-2,-9],[-4,-8],[-7,-10],[-6,-6],[-9,-9],[-8,-7],[-9,-6],[-12,-6],[-8,-3],[-11,-6],[-16,-6],[-11,-4],[-12,-5],[-9,-3],[-13,-5],[-11,-3],[-12,-4],[-15,-6],[-11,-3],[-15,-5],[-14,-4],[-16,-4],[-14,-5],[-10,-2],[-11,-3],[-16,-4],[-24,-6],[-12,-3],[-15,-4],[-18,-4],[-18,-4],[-10,-2],[-19,-4],[-14,-2],[-14,-3],[-17,-4],[-11,-3],[-10,-2],[-11,-2],[-12,-3],[-14,-3],[-11,-2],[-11,-3],[-10,-2],[-10,-2]],[[2606,8325],[5,-1],[34,-5],[1,0],[28,-4],[2,1],[11,-10],[17,-15],[1,0],[8,-7],[8,-7],[3,-2],[14,-12],[36,-31],[35,-30],[23,-19],[8,-7],[53,-46],[0,-1],[2,-2],[17,-14],[1,-1],[15,-12],[9,-9],[1,0],[13,-11],[6,-5],[21,-17],[13,-9],[17,-14],[78,-63],[2,-2],[8,-6],[67,-13],[20,-4],[-9,-11],[-18,-22],[-22,-28],[0,-1],[-57,-71],[54,-17],[84,-27],[-170,-199],[-6,-6],[178,-34]],[[3217,7531],[-56,-64],[-22,-24],[-45,-52],[-18,-20],[-11,-13],[-14,-15],[-2,-3],[-17,-19],[47,-16],[142,-49],[-32,-34],[-22,-24],[-9,-10],[-17,-18],[-38,-42],[-1,-1],[-1,1],[-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,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],[0,-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,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-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],[-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,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],[0,1],[-1,0],[-1,0],[-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,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],[-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],[0,1],[-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,1],[-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,1],[-84,-140],[-13,-22],[-45,-75],[-35,-57],[-35,-59],[-12,-20],[-3,-5],[3,0],[53,-10],[-36,-64],[-9,-15],[-7,-13],[-63,-108],[-11,-21],[-12,-21],[-100,-176],[-38,-67],[-14,-25]],[[2462,6264],[-6,22],[-6,27],[-1,5],[-12,53],[-42,199],[-1,4],[0,2],[-26,133],[-26,139],[-107,18],[-45,8],[-74,12],[1,-2],[1,-4],[1,-5],[2,-8],[0,-1],[3,-12],[3,-13],[2,-6],[1,-4],[0,-1],[1,-3],[1,-5],[4,-17],[-4,0],[-11,-1],[-7,0],[-25,-3],[-18,-1],[-13,-1],[-31,-3],[-21,-2],[-31,-3],[-1,0],[-18,-1],[-3,-1],[-14,-1],[-2,0],[-2,0],[-3,0],[-20,-2],[-21,-2],[-10,-1],[-1,0],[-6,-1],[-2,0],[-2,0],[-5,0],[-2,8],[0,2],[-1,7],[-9,-1],[-2,-1],[-8,-1],[-7,-1],[-2,0],[-1,0],[-1,0],[-8,-1],[-12,-2],[-5,-1],[-5,0],[-5,-1],[-1,0],[-4,0],[-11,-2],[-18,-2],[-2,0],[-21,-3],[-6,-1],[-4,0],[-21,-3],[-2,0],[-1,0],[-11,-1],[-6,-1],[-6,-1],[-4,0],[-10,-1],[-2,-1],[-3,0],[-1,0],[-2,0],[-4,-1],[-5,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,-1],[-1,0],[-4,0],[-9,-1],[-1,0],[-1,0],[-1,0],[-10,-1],[-19,-3],[-2,0],[-18,-2],[-3,0],[-6,-1],[-15,-2],[-7,0],[-2,-1],[-12,-1],[-41,-5],[-8,-1],[-30,-3],[-5,-1],[-5,0],[-14,-1],[-16,-2],[-3,0],[-1,0],[-10,-1],[-8,-1],[-24,-3],[-1,0],[-16,-2],[-9,-1],[-9,-1],[-15,-2],[-20,-2],[-5,-1],[-1,0],[-13,-2],[-12,-1],[-44,-5],[-10,-1],[-3,0],[-16,-2],[-2,0],[-13,-1],[-52,-4],[-18,-2],[-10,0],[-1,0],[-5,-1],[-10,-1],[-17,-1],[-11,-1],[-4,0],[-1,0],[-1,0],[-53,-5],[-38,-3],[-33,-2],[-47,-3],[-28,-2],[-217,18]],[[632,6713],[3,10],[2,4],[3,6],[1,6],[1,4],[1,5],[0,8],[0,6],[0,5],[-1,6],[-3,5],[-4,8],[-4,6],[-3,4],[-5,7],[-4,6],[-4,6],[-4,7],[-3,5],[-3,5],[-4,6],[-3,7],[-2,5],[-2,5],[-2,5],[-1,4],[-3,7],[-1,7],[-2,4],[-1,4],[-1,6],[-2,9],[-2,7],[-2,7],[0,7],[0,6],[-1,6],[-1,5],[0,4],[-1,5],[0,6],[0,6],[0,9],[1,4],[0,5],[0,6],[0,6],[1,5],[0,6],[1,6],[0,7],[0,5],[-2,9],[-2,4],[-2,4],[-1,6],[-3,5],[-2,5],[-4,7],[-4,7],[-4,5],[-3,5],[-3,4],[-3,4],[-3,5],[-4,6],[-3,4],[-3,4],[-4,4],[-4,6],[-2,6],[-1,6],[-1,6],[0,6],[1,5],[0,6],[0,8],[1,7],[1,5],[0,5],[2,4],[1,5],[1,5],[4,4],[6,5],[5,4],[6,4],[8,4],[5,4],[5,3],[6,4],[4,3],[8,6],[6,5],[8,7],[4,5],[7,7],[5,9],[1,5],[1,8],[1,8],[3,7],[3,10],[2,6],[1,4],[4,7],[2,4],[3,6],[3,6],[3,4],[5,7],[3,4],[5,8],[4,5],[4,5],[5,8],[4,4],[4,5],[5,5],[6,6],[5,5],[6,6],[6,5],[6,7],[6,8],[2,3],[3,5],[2,6],[3,6],[2,5],[3,4],[-2,10],[5,7],[1,6],[0,7],[-2,7],[-2,7],[-2,5],[-4,8],[-3,4],[-2,5],[-7,8],[-4,7],[-5,6],[-1,5],[-1,6],[1,8],[1,4],[2,6],[2,8],[1,5],[0,5],[1,6],[0,5],[-1,5],[0,6],[-1,8],[-1,5],[-1,6],[-1,4],[-1,8],[-1,4],[-5,9],[-4,6],[-4,6],[-3,5],[-4,5],[-1,4],[-1,5],[-1,5],[0,4],[-1,5],[-2,8],[-2,6],[-3,4],[-4,8],[-1,5],[-3,7],[-3,5],[-11,17],[-6,7],[-8,7],[-8,7],[-8,6],[-6,5],[-7,6],[-4,6],[-3,7],[-2,9],[0,7],[3,8],[2,6],[-2,7],[-9,4],[-11,4],[-10,3],[-10,4],[-9,5],[-7,5],[-7,6],[-5,7],[-5,6],[-6,7],[-4,7],[-5,8],[-5,7],[-2,6],[-3,7],[-2,7],[2,7],[-2,8],[-11,6],[-12,6],[-7,5],[-11,5],[-8,4],[-11,4],[-7,4],[-8,5],[-9,7],[-7,4],[-11,7],[-12,13]],[[1060,8716],[108,-35],[39,-12],[40,-13],[118,-38],[34,-11],[6,-2],[293,-93],[329,-109],[1,0],[21,-3],[24,-3],[74,-11],[1,0],[18,-3],[7,0],[35,-5],[1,0],[17,-2],[19,-2],[3,-1],[1,0],[3,0],[23,-4],[6,0],[1,-1],[21,-3],[4,0],[10,-1],[8,-1],[3,-1],[1,0],[36,-5],[13,-2],[11,-1],[1,0],[23,-4],[48,-6],[50,-7],[27,-3],[7,-1],[36,-5],[1,0],[24,-3]],[[6248,4563],[-5,-6],[-5,-3],[-5,-3],[-6,-2],[-6,-3],[-6,-1],[-6,-2],[-8,-1],[-6,-1],[-6,-2],[-5,-2],[-4,-3],[-4,-3],[-3,-4],[-3,-3],[-2,-4],[-2,-4],[-4,-3],[-3,-4],[-3,-3],[-3,-4],[-4,-4],[-5,-3],[-3,-4],[-2,-4],[-4,-4],[-5,-3],[-3,-3],[-2,-4],[-2,-4],[-2,-4],[-3,-4],[-5,-3],[-5,-3],[-7,-3],[-4,-2],[-6,-3],[-6,-2],[-7,-2],[-7,-1],[-7,-1],[-6,-1],[-8,-1],[-6,-2],[-6,-1],[-5,-3],[-6,-4],[-5,-2],[-6,-3],[-6,-2],[-5,-3],[-6,-2],[-7,-2],[-7,-2],[-7,-3],[-7,-3],[-6,-2],[-5,-3],[-6,-2],[-5,-2],[-7,-1],[-7,1],[-7,1],[-7,0],[-6,-1],[-5,-3],[-3,-4],[-4,-5],[-3,-4],[-2,-4],[-2,-4],[-2,-4],[-4,-3],[-4,-3],[-6,-3],[-6,-2],[-6,-2],[-5,-2],[-4,-3],[-4,-4],[-3,-4],[-5,-3],[-3,-3],[-2,-5],[-3,-4],[-3,-3],[-4,-4],[-4,-3],[-5,-3],[-4,-3],[-4,-4],[-4,-4],[-2,-4],[-3,-4],[-5,-3],[-3,-3],[-5,-3],[-5,-3],[-6,-2],[-7,-2],[-5,-3],[-3,-4],[0,-4],[2,-4],[-2,-4],[-2,-4],[-3,-5],[-2,-5],[-2,-4],[-2,-4],[-5,-3],[-4,-3],[-3,-4],[-1,-4],[0,-4],[0,-7],[-2,-4],[0,-4],[-1,-10],[0,-4],[0,-4],[-1,-4],[-1,-4],[-1,-4],[3,-4],[3,-3],[4,-3],[4,-3],[3,-4],[1,-4],[-1,-4],[0,-4],[4,-4],[3,-3],[-3,-4],[-3,-3],[-1,-4],[-1,-5],[-1,-4],[1,-3],[0,-4],[-3,-4],[-7,-3],[-4,-4],[-1,-4],[-3,-4],[-4,-3],[-4,-3],[-3,-4],[-3,-4],[-4,-3],[-3,-3],[-4,-3],[-5,-3],[-4,-3],[-2,-4],[-2,-4],[-2,-4],[-1,-4],[0,-4],[0,-4],[-2,-6],[0,-4],[-1,-4],[1,-4],[2,-3],[2,-4],[0,-4],[1,-4],[0,-4],[0,-4],[-2,-4],[-4,-3],[-5,-4],[-5,-2],[-6,-1],[-8,-2],[-6,-1],[-6,-1],[-5,-2],[-6,-2],[-5,-3],[-5,-2],[-6,-2],[-5,-2],[-4,-3],[-1,-5],[-1,-5],[3,-4],[5,-3],[4,-3],[-2,-4],[-3,-4],[-5,-2],[1,-4],[-1,-4],[-6,-3],[-5,-2],[-5,-3],[-2,-4],[-1,-4],[-1,-5],[-2,-4],[-2,-4],[-2,-4],[-1,-4],[-2,-4],[0,-4],[0,-4],[1,-4],[1,-4],[3,-4],[2,-4],[1,-4],[3,-4],[5,-2],[6,-2],[5,-3],[5,-3],[2,-4],[-3,-4],[3,-5],[1,-6],[0,-5],[-2,-4],[-6,-5],[-7,1],[-6,-2],[-6,-3],[-6,-3],[-5,-4],[-5,-3],[-5,-4],[-7,-4],[-7,-4],[-5,-3],[-4,-3],[-6,-4],[-7,-3],[-6,-1],[-5,-3],[-5,-3],[-3,-3],[-6,-3],[-6,-3],[-6,-1],[-6,-1],[-7,-2],[-7,1],[-5,-1],[-4,-4],[-6,-3],[-7,-1],[-7,-1],[-6,-2],[-6,-2],[-7,-1],[-5,-2],[-6,-3],[-8,-2],[-6,-2],[-8,-3],[-5,-3],[-5,-2],[-5,-3],[-5,-4],[-6,-4],[-5,-3],[-4,-3],[-5,-4],[-3,-4],[-1,-4],[-1,-4],[1,-5],[0,-4],[1,-5],[1,-4],[1,-3],[-2,-4],[-7,-2],[-4,-3],[-3,-4],[0,-5],[1,-4],[0,-5],[1,-4],[2,-4],[1,-4],[1,-4],[2,-4],[0,-5],[0,-4],[0,-5],[1,-4],[1,-5],[1,-4],[-1,-4],[-1,-4],[-2,-4],[-1,-4],[2,-4],[2,-4],[1,-4],[1,-4],[0,-4],[0,-6],[-3,-6],[-4,-4],[-3,-4],[-2,-4],[-3,-4],[-3,-4],[-4,-4],[-3,-3],[-3,-4],[-5,-5],[-4,-4],[-6,-5],[-4,-3],[-6,-2],[-6,1],[-7,-1],[-5,-2],[-3,-4],[-2,-4],[-2,-3],[-2,-4],[0,-6],[0,-5],[-1,-5],[1,-6],[-2,-8],[-3,-6],[-4,-7],[-1,-5],[0,-7],[4,-6],[5,-5],[8,-5],[6,-3],[5,-2],[5,-3],[10,-6],[5,-3],[8,-4],[6,-4],[7,-5],[4,-5],[2,-4],[2,-4],[3,-5],[6,-6],[4,-7],[3,-5],[2,-6],[0,-6],[-2,-4],[-1,-6],[-1,-7],[-3,-7],[-1,-6],[0,-7],[0,-6],[-1,-5],[-2,-7],[-2,-5],[-5,-5],[-5,-4],[-7,-5],[-5,-3],[-6,-4],[-5,-4],[-4,-3],[-5,-4],[-4,-3],[-5,-4],[-2,-5],[2,-5],[1,-5],[3,-5],[1,-5],[0,-5],[0,-4],[1,-5],[1,-6],[1,-4],[2,-4],[1,-6],[0,-6],[0,-4],[-1,-5],[-2,-4],[-3,-6],[-5,-5],[-3,-3],[-2,-4],[-2,-7],[-2,-5],[-3,-6],[-2,-6],[-1,-6],[-2,-4],[0,-7],[0,-7],[1,-11],[0,-7],[-1,-4],[-2,-5],[-1,-4],[-2,-5],[-1,-4],[-2,-4],[-2,-4],[-2,-5],[-1,-4],[-2,-5],[0,-4],[-2,-4],[-2,-4],[-2,-5],[-1,-4],[1,-5],[0,-4],[0,-4],[-1,-5],[-1,-4],[0,-4],[0,-4],[-1,-5],[-2,-5],[0,-4],[-1,-5],[-1,-4],[-1,-4],[-1,-4],[-1,-5],[-1,-4],[-2,-4],[-3,-4],[-2,-4],[0,-4],[0,-5],[0,-4],[-1,-6],[-3,-3],[-3,-4],[-5,-3],[-5,-3],[-6,-3],[-5,-3],[-5,-3],[-5,-4],[-4,-3],[-5,-5],[-4,-4],[-3,-4],[-3,-4],[-2,-4],[-2,-4],[-1,-5],[-2,-4],[0,-4],[1,-4],[1,-4],[2,-5],[1,-4],[1,-5],[1,-4],[1,-7],[0,-3],[-2,-5],[0,-4],[0,-4],[2,-5],[6,-6],[5,-3],[6,-1],[7,-2],[5,-2],[5,-2],[6,-3],[5,-2],[5,-4],[5,-3],[6,-1],[7,-1],[7,0],[7,1],[7,0],[6,0],[9,0],[7,1],[6,-1],[5,-2],[3,-5],[-4,-4],[-6,-5],[-4,-4],[-4,-5],[-4,-3],[-5,-4],[-5,-3],[-6,-2],[-4,-3],[-5,-3],[-4,-4],[-4,-4],[-3,-4],[-2,-3],[-3,-4],[-4,-4],[-3,-4],[-4,-5],[-3,-4],[-3,-4],[-5,-5],[-3,-4],[-3,-4],[-4,-3],[-2,-4],[-3,-4],[-3,-4],[-1,-3],[1,-4],[2,-4],[3,-4],[17,-21],[4,-3],[5,-3],[3,-3],[2,-4],[4,-4],[4,-3],[7,-2],[6,-2],[4,-3],[5,-4],[3,-4],[3,-3],[2,-5],[1,-4],[-1,-4],[-3,-3],[-4,-4],[-4,-3],[-3,-4],[-3,-4],[-3,-3],[0,-5],[-3,-3],[-3,-4],[-3,-3],[-4,-4],[-4,-3],[1,-4],[-1,-4],[-1,-4],[-1,-4],[-1,-4],[-1,-4],[-1,-4],[-2,-5],[-3,-7],[2,-4],[-3,-4],[-4,-4],[-2,-3],[-1,-5],[-2,-4],[-2,-4],[-1,-4],[-1,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[-3,-4],[-3,-4],[-3,-4],[-3,-3],[-2,-4],[-2,-4],[-2,-4],[-4,-4],[-4,-4],[-3,-3],[-2,-5],[-2,-4],[-4,-4],[-4,-3],[-4,-3],[-5,-4],[-4,-3],[-3,-4],[-1,-4],[-2,-4],[-4,-3],[-5,-2],[-6,-2],[-7,-2],[-6,-2],[-5,-2],[-6,-2],[-7,-1],[-6,-2],[-6,-2],[-5,-2],[-6,-2],[-5,-3],[-4,-4],[-3,-3],[0,-5],[-2,-4],[-3,-3],[-3,-4],[-1,-6],[1,-4],[1,-4],[-1,-4],[-2,-4],[-2,-4],[-1,-5],[1,-4],[1,-4],[2,-4],[2,-4],[1,-5],[0,-4],[2,-5],[2,-4],[3,-4],[3,-3],[2,-4],[3,-4],[3,-3]],[[5085,2212],[-7,-1],[-10,0],[-17,0],[-16,1],[-12,0],[-9,0],[-16,1],[-15,0],[-8,0],[-12,0],[-7,0],[-14,1],[-7,0],[-9,0],[-11,0],[-9,1],[-7,0],[-13,0],[-7,0],[-11,1],[-8,0],[-10,0],[-9,0],[-10,1],[-13,0],[-15,0],[-11,1],[-12,0],[-11,0],[-8,0],[-10,0],[-7,0],[-8,0],[-22,1],[-10,0],[-12,0],[-14,1],[-9,0],[-8,0],[-10,0],[-7,0],[-17,0],[-9,1],[-12,0],[-8,0],[-10,0],[-8,0],[-7,0],[-7,1],[-13,0],[-7,0],[-8,0],[-10,0],[-8,0],[-8,0],[-7,1],[-32,-3],[-241,-20],[-62,-5],[-62,-5],[-63,-5],[-62,-5],[-63,-5],[-31,-2],[-28,-2],[-1,-6],[-46,-1],[-81,17],[-146,30],[-104,22],[-31,6],[-219,49],[-99,22]],[[3134,2310],[-2,157],[1,33],[-151,3],[-52,1],[-45,1]],[[2885,2505],[11,118],[8,92],[52,3],[6,63],[6,55],[154,-3],[0,21],[108,-40],[86,-32],[107,-39],[-2,16],[-2,19],[0,4],[-2,12],[-3,28],[14,25],[59,92],[49,74],[8,17],[9,19],[10,23],[8,18],[0,1],[2,3],[0,1],[1,2],[12,28],[9,23],[10,26],[6,15],[6,18],[1,3],[-8,1],[-10,2],[6,15],[4,10],[-13,3],[-94,18],[-27,5],[-9,2],[-36,6],[-70,14],[12,56],[-98,21],[4,16],[10,37],[4,20],[12,49],[16,69],[3,11],[2,10],[23,104],[10,45],[11,51],[77,-17],[29,41],[3,5],[59,79],[48,64],[9,14],[6,9],[46,70],[79,118],[15,24],[-609,140],[30,39],[13,18],[14,17],[13,17],[12,15],[-22,7],[-24,7],[-26,8],[-6,1],[89,119],[5,6],[6,9],[9,11],[4,6],[23,32],[12,18],[11,15],[25,36],[-5,3],[-7,1],[-6,2],[-5,2],[-4,3],[-2,4],[0,4],[4,3],[6,2],[6,1],[4,2],[2,4],[-1,4],[1,4],[0,4],[-5,3],[-5,3],[-5,3],[-6,1],[-7,0],[-6,0],[-6,2],[-2,5],[-3,4],[-3,4],[-2,4],[-1,4],[3,3],[6,1],[7,2],[4,3],[-3,3],[-7,1],[-6,0],[-5,3],[-4,3],[-3,4],[-3,3],[-2,4],[0,4],[-30,8],[-17,4],[-82,20],[-27,8],[-15,4],[-39,-43],[-72,19],[-45,11],[-63,15],[0,1],[-3,79],[-48,-15],[-13,-5],[-25,-8],[-48,-15],[-48,-16],[-85,-25],[-7,-3],[-46,-15],[-46,-15],[-18,-6],[-14,-5],[-34,-11]],[[2424,4800],[-23,61],[-6,20],[-19,46],[-6,15],[-13,35],[-37,-12],[0,35],[0,11],[0,8],[0,18],[0,11],[31,-6],[22,-8],[84,-21],[10,3],[29,9],[91,29],[17,5],[108,32],[133,44],[7,-75],[1,-9],[3,-49],[-4,-20],[5,-16],[46,-11],[20,27],[42,57],[15,20],[59,80],[51,68],[8,11],[53,70],[32,-8],[13,17],[20,25],[63,72]],[[3279,5394],[20,-6],[-10,-12],[-14,-18],[33,-7],[-24,-31],[96,-27],[-21,-23],[32,-9],[-23,-31],[310,-73],[15,15],[33,-8],[248,-60],[126,-30],[50,-11],[77,-18],[7,-2],[119,-31],[28,-7],[79,-21],[19,-5],[22,-6],[23,-6],[27,-7],[29,-8],[27,-7],[23,-6],[23,-6],[24,-6],[27,-7],[27,-7],[27,-8],[28,-7],[30,-8],[31,-8],[27,-7],[21,-6],[25,-6],[19,-5],[20,-6],[-10,-5],[23,-4],[11,-2],[70,-12],[14,-2],[14,-3],[1,0],[33,-6],[42,-7],[27,-5],[2,0],[28,-5],[1,0],[20,-4],[6,-1],[3,-1],[27,-5],[35,-7],[3,-1],[34,-7],[1,0],[7,-1],[17,-4],[33,-7],[20,-3],[1,-1],[3,0],[54,-11],[8,-2],[16,-3],[20,-4],[1,0],[10,-2],[34,-5],[1,0],[25,-7],[33,-8],[8,-2],[40,-10],[16,-4],[22,-6],[29,-7],[24,-6],[16,-4],[14,-4],[9,-2],[28,-7],[14,-4],[15,-4],[21,-5],[46,-11],[10,-3],[8,-2],[21,-5],[10,-3],[16,-4],[6,-1],[32,-8],[11,-3],[23,-6],[14,-3],[13,-4],[8,-2],[23,-5],[23,-6],[13,-3],[8,-3],[64,-16],[8,-2],[8,1]],[[5085,2212],[2,-5],[1,-4],[-3,-4],[-3,-3],[-5,-8],[-2,-4],[-3,-3],[-3,-4],[-3,-4],[-3,-3],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[-1,-4],[-1,-4],[-1,-4],[0,-4],[0,-5],[2,-4],[1,-4],[1,-4],[2,-4],[2,-4],[2,-4],[2,-4],[1,-4],[0,-4],[1,-4],[1,-5],[1,-4],[0,-4],[-2,-4],[-1,-4],[-4,-3],[-5,-3],[-5,-3],[-5,-3],[-4,-3],[-5,-3],[-4,-3],[-3,-4],[-5,-3],[-5,-3],[-6,-1],[-9,-5],[1,-5],[1,-4],[2,-4],[1,-4],[3,-3],[2,-4],[4,-4],[4,-4],[4,-3],[4,-3],[4,-3],[2,-4],[1,-4],[1,-5],[-1,-5],[-2,-4],[-4,-3],[-6,-3],[-4,-2],[-6,-3],[-7,-4],[-10,-6],[-5,-6],[-1,-6],[1,-5],[1,-4],[0,-4],[1,-5],[2,-3],[1,-5],[-1,-4],[-1,-4],[0,-4],[-1,-4],[0,-4],[0,-4],[0,-4],[0,-4],[1,-4],[1,-8],[0,-6],[-4,-5],[-4,-3],[-4,-4],[-7,-4],[-6,-4],[-2,-5],[1,-6],[2,-4],[2,-3],[3,-4],[2,-4],[3,-4],[3,-4],[2,-4],[3,-4],[4,-4],[6,-2],[7,-2],[6,-1],[6,-2],[7,2],[6,0],[7,1],[6,-2],[6,-2],[3,-3],[0,-4],[-1,-4],[-2,-4],[-4,-4],[-3,-3],[1,-4],[2,-4],[0,-4],[3,-3],[3,-4],[5,-6],[7,-4],[6,-3],[4,-3],[4,-4],[4,-3],[4,-3],[4,-4],[2,-4],[0,-5],[0,-4],[1,-4],[0,-4],[0,-5],[-1,-4],[-1,-4],[-3,-4],[-2,-5],[-3,-3],[-5,-3],[-5,-3],[-5,-2],[-6,-2],[-7,-2],[-5,-2],[-4,-3],[-2,-4],[-3,-4],[-3,-4],[-1,-4],[1,-4],[1,-4],[2,-4],[2,-4],[3,-3],[4,-3],[5,-3],[3,-4],[2,-4],[1,-4],[-1,-4],[0,-4],[2,-5],[2,-4],[4,-3],[4,-3],[4,-4],[4,-3],[8,-6],[-3,-5],[-1,-2],[-2,-4],[-3,-1],[0,-3],[-2,-4],[-2,-4],[-4,-3],[-3,-2],[-5,-4],[-3,-4],[-3,-3],[-5,-5],[-4,-3],[-4,-3],[-4,-3],[-4,-3],[-3,-4],[-5,-3],[-4,-3],[-5,-2],[-6,-2],[-6,-2],[-5,-3],[-5,-3],[-4,-4],[-3,-3],[-4,-4],[-2,-3],[-3,-4],[-4,-4],[-4,-3],[-5,-3],[-5,-3],[-5,-2],[-5,-2],[-6,-2],[-5,-3],[-4,-2],[-4,-4],[-4,-3],[-4,-3],[-4,-4],[-4,-3],[-3,-4],[-1,-4],[1,-7],[1,-4],[1,-3],[3,-4],[2,-4],[3,-4],[4,-3],[5,-2],[5,-3],[5,-3],[3,-3],[3,-4],[2,-4],[-1,-4],[-1,-4],[0,-4],[-1,-5],[0,-4],[-1,-4],[0,-4],[-1,-4],[-2,-4],[-2,-4],[-1,-4],[-2,-4],[-1,-4],[-1,-4],[0,-5],[1,-4],[2,-4],[3,-3],[3,-4],[2,-4],[3,-3],[3,-7],[5,-5],[3,-4],[4,-3],[4,-3],[6,-2],[10,-4],[6,-2],[5,-2],[4,-3],[5,-3],[5,-2],[5,-3],[5,-2],[5,-3],[5,-3],[4,-2],[3,-4],[0,-4],[-1,-4],[-2,-5],[-1,-4],[-3,-3],[-4,-4],[-4,-3],[-4,-3],[-5,-3],[-4,-3],[-6,-3],[-8,-1],[-6,2],[-5,2],[-7,1],[-6,1],[-6,0],[-7,-1],[-5,-3],[-3,-3],[-3,-4],[-5,-3],[-3,-3],[-4,-4],[-2,-4],[-3,-6],[-2,-4],[-1,-4],[-1,-4],[-2,-4],[0,-4],[1,-4],[2,-5],[2,-3],[6,-6],[4,-3],[3,-3],[1,-4],[-2,-4],[-4,-4],[-3,-3],[-4,-4],[-4,-3],[-4,-3],[-4,-3],[-5,-2],[-5,-2],[-5,-3],[-4,-3],[-4,-4],[-3,-3],[-4,-4],[-4,-3],[-5,-2],[-7,-1],[-6,2],[-4,3],[-8,4],[-6,1],[-7,0],[-5,-2],[-5,-2],[-5,-2],[-7,-1],[-5,-3],[-4,-3],[-4,-3],[-5,-2],[-5,-3],[-4,-3],[-4,-3],[-7,-1],[-6,-1],[-7,-1],[-6,0],[-6,-1],[-7,-1],[-6,0],[-7,-1],[-6,-1],[-6,-2],[-5,-2],[-6,-3],[-6,-1],[-7,0],[-6,-1],[-7,0],[-6,0],[-7,-1],[-6,-1],[-7,0],[-6,-2],[-10,-5],[-4,-3],[-5,-3],[-4,-3],[-5,-3],[-5,-2],[-5,-3],[-5,-2],[-6,-3],[-5,-2],[-6,-2],[-5,-2],[-4,-3],[-3,-4],[-3,-3],[-3,-4],[-2,-4],[-1,-4],[0,-5],[3,-4],[3,-3],[5,-3],[6,-2],[6,-1],[5,-2],[4,-3],[2,-5],[2,-4],[1,-4],[2,-4],[1,-4],[0,-4],[1,-4],[0,-5],[0,-4],[1,-4],[-1,-4],[0,-4],[0,-4],[-1,-4],[-1,-4],[0,-4],[-1,-4],[1,-7],[1,-4],[2,-4],[1,-4],[1,-4],[2,-4],[1,-4],[1,-4],[2,-4],[2,-4],[0,-5],[0,-4],[0,-4],[-1,-4],[-3,-4],[-5,-3],[-6,-2],[-6,-1],[-5,-3],[-3,-3],[-2,-4],[-1,-4],[-2,-4],[-2,-4],[0,-5],[0,-4],[1,-4],[0,-4],[0,-4],[0,-4],[0,-4],[-1,-4],[1,-4],[-1,-5],[-1,-4],[-3,-4],[-4,-3],[-4,-4],[-3,-3],[-4,-4],[-5,-3],[-4,-2],[-5,-3],[-6,-3],[-4,-3],[-3,-3],[-6,-3],[-6,-1],[-5,-2],[-6,-2],[-6,-2],[-6,-2],[-6,-1],[-7,-1],[-6,-1],[-5,-2],[-3,-4],[1,-4],[-1,-4],[-1,-4],[-1,-4],[-1,-4],[-2,-4],[-2,-4],[-3,-6],[-1,-4],[-2,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-4],[-1,-4],[0,-5],[1,-4],[1,-4],[2,-4],[1,-4],[1,-4],[1,-4],[0,-5],[-1,-3],[-2,-5],[-2,-3],[-3,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[1,-4],[2,-3],[5,-4],[4,-4],[2,-4],[5,-6],[3,-5],[4,-6],[4,-3],[5,-3],[4,-3],[4,-4],[2,-3],[1,-4],[2,-4],[1,-4],[2,-4],[0,-5],[0,-4],[0,-4],[0,-4],[1,-4],[1,-4],[0,-5],[1,-4],[0,-4],[0,-4],[0,-4],[-1,-6],[2,-9],[3,-5],[2,-4],[2,-4],[9,-15],[2,-4],[2,-4],[0,-4],[-1,-4],[0,-4],[0,-4],[1,-4],[0,-4],[1,-5],[1,-3],[2,-4],[4,-4],[11,-6],[18,-12],[18,-11],[19,-12],[18,-11],[15,-11],[18,-12],[14,-11],[14,-10],[10,-10],[7,-6],[2,-6],[1,-6],[-2,-9],[-3,-5],[-6,-4],[-6,-5],[-5,-2],[-6,-3],[-7,-3],[-2,-4],[-3,-4],[-1,-4],[2,-4],[1,-3],[3,-4],[3,-4],[5,-2],[6,-1],[7,-1],[6,1],[6,1],[6,1],[4,3],[5,3],[12,2],[5,2],[6,1],[4,3],[3,4],[4,4],[1,4],[0,4],[3,3],[3,3],[5,3],[7,-1],[6,-1],[6,-1],[8,-1],[6,-3],[3,-3],[4,-3],[4,-3],[3,-4],[3,-3],[1,-4],[3,-4],[4,-3],[5,-3],[5,-2],[5,-2],[6,-2],[6,-2],[5,-2],[4,-4],[3,-3],[3,-4],[3,-3],[2,-4],[2,-4],[1,-4],[1,-4],[1,-5],[0,-4],[1,-4],[0,-4],[1,-4],[1,-4],[0,-4],[1,-4],[1,-5],[4,-5],[3,-4],[3,-3],[6,-3],[5,-2],[5,-3],[3,-3],[4,-3],[2,-4],[2,-4],[4,-4],[4,-3],[4,-3],[4,-3],[2,-4],[3,-3],[3,-4],[4,-4],[2,-3],[3,-4],[3,-4],[3,-3],[1,-4],[2,-8],[0,-1],[-11,0],[-285,7],[-246,6],[-169,4],[-208,5],[-177,4],[-56,2],[-434,10],[-100,2],[-81,1],[-200,4],[-90,2],[-74,2],[-235,4],[-18,0],[-7,0]],[[2574,53],[1,53],[8,158],[9,157],[-4,28],[1,35],[2,37],[2,44],[2,13],[5,90],[5,68],[0,7],[3,79],[-2,53],[-110,4],[-31,1],[-11,0],[-20,1],[-62,2],[-62,2],[-62,3],[-31,1],[-31,1],[-8,-1],[3,42],[3,39],[2,39],[3,40],[1,19],[1,20],[2,20],[1,19],[1,20],[1,20],[2,19],[1,20],[4,80],[1,10],[13,-1],[0,68],[-6,157],[17,94],[-2,4],[7,78],[1,9],[6,6],[103,-3],[72,-1],[66,-2],[8,0],[8,0],[112,-6],[59,-3],[67,-3],[153,-3],[4,78],[1,7],[1,17],[4,45],[7,81],[7,76],[2,29],[3,45],[1,21],[54,-2],[5,65],[3,59],[1,15],[2,27],[2,22],[2,34],[3,31],[144,-30]],[[2574,53],[-449,8],[-22,1],[-129,2],[-477,8],[-107,2],[-511,8],[-2,1],[-6,-1],[-51,1],[-1,1],[-5,17],[-2,3],[-26,89],[-37,119],[-4,16],[23,26],[-1,5],[16,21],[-11,11],[-1,1],[-2,7],[-3,7],[-1,1],[8,61],[6,4],[28,-7],[2,17],[1,17],[2,49],[1,22],[1,41],[1,5],[0,14],[1,12],[0,14],[1,14],[0,15],[1,28],[0,15],[1,14],[0,5],[0,4],[1,4],[0,5],[0,5],[0,4],[0,5],[1,3],[0,4],[0,5],[0,5],[0,5],[1,4],[0,5],[0,4],[0,6],[1,11],[0,6],[0,6],[1,8],[1,15],[0,11],[1,13],[1,8],[1,13],[0,27],[16,260],[0,6],[1,19],[1,20],[1,24],[2,36],[2,24],[0,2],[0,8],[3,25],[1,22],[2,25],[0,4],[1,7],[0,7],[1,7],[2,25],[1,25],[3,35],[3,27],[2,32],[0,4],[1,18],[3,28],[0,4],[0,7],[1,12],[1,11],[0,10],[1,4],[1,26],[1,6],[0,11],[1,13],[3,20],[0,15],[1,17],[1,20],[1,24],[1,22],[1,15],[1,19],[1,20],[2,23],[2,21],[2,24],[3,37],[1,23],[2,20],[1,19],[1,16],[0,15],[1,27],[1,15],[1,12],[1,25],[1,24],[2,34],[1,19],[1,12],[2,9],[1,11],[1,11],[0,5],[2,17],[0,10],[2,35],[2,39],[2,57],[1,38],[2,38],[1,31]],[[929,2566],[53,-3],[63,-2],[62,-2],[63,-1],[62,-2],[63,-2],[62,-2],[10,0],[53,-3],[62,-3],[63,-3],[53,-3],[41,-1],[94,-5],[17,-1],[14,0],[31,0],[63,0],[62,0],[62,0],[63,-2],[62,-2],[63,-2],[66,-2],[28,0],[19,-1],[-8,-21],[-16,-41],[27,0],[56,-1],[3,60],[67,-3],[70,-2],[34,0],[216,-6],[153,-5]],[[4353,8969],[-23,13],[-37,19],[-17,9],[-18,-14],[-37,15],[-3,1],[-5,3],[-20,7],[-11,5],[-10,4],[-5,2],[-5,2],[3,3],[13,17],[-10,0],[-48,1],[-78,3],[-30,0],[-27,1],[-23,1],[-50,1],[-23,1],[-38,1],[-1,0],[-101,2],[-43,2],[-37,1],[-40,1],[-7,0],[-29,0],[-20,-13],[-55,-37],[-15,-10],[1,-15],[4,-42],[0,-5],[-23,2],[-24,3],[-3,-10],[-3,-11],[-3,-9],[-3,-10],[-3,-12],[-2,-7],[-15,2],[-23,2],[-13,2],[-7,-23],[-2,-6],[-3,-10],[-2,-6],[-8,-24],[-2,-9],[-2,-5],[-2,-6],[-2,-6],[-25,3],[-3,-10],[-3,-9],[-2,-5],[-2,-6],[-3,-9],[-2,-9],[-4,-12],[-3,-8],[-3,-11],[-2,-5],[-2,-8],[-2,-5],[-2,-7],[-1,-5],[-2,-5],[-1,-4],[-3,-10],[-4,-11],[-4,-13],[-1,-4],[-1,-4],[-2,-8],[-2,-6],[-1,-5],[-1,-5],[-2,-5],[-2,-7],[-1,-4],[-1,-5],[-4,-4],[0,-8],[-3,-11],[-1,-5],[-14,5],[-7,2],[-51,16],[-49,15],[-27,8],[-11,3],[-13,4],[-18,6],[-36,11],[-10,3],[-20,6],[-36,11],[-15,-17],[-8,-10],[-4,-4],[-5,-7],[-4,-4],[-6,-7],[-4,-4],[-12,-15],[-7,-9],[-14,-15],[-5,-6],[-17,-20],[-10,-12],[-4,-4],[-8,-9],[-14,-17],[-5,-6],[-6,-6],[-5,-6],[-6,-8],[-5,-4],[-4,-6],[-4,-4],[-13,-15],[-4,-4],[-5,-6],[-9,-12],[-5,-5],[-7,-2],[-6,-2],[-7,-4],[-9,-6],[-6,-3],[-7,-6],[-4,-3],[-3,-6],[-3,-5],[-4,-4],[-7,-2],[-7,0],[-8,1],[-7,1],[-7,1],[-11,-2],[-7,-1],[-8,-1],[-6,0],[-8,2],[-5,3],[-4,4],[-3,3],[-4,4],[-8,3],[-12,-4],[-4,-3],[-5,-4],[-2,-4],[-1,-4],[3,-4],[4,-4],[7,-5],[4,-3],[-2,-4],[-12,-3],[5,-5],[8,-8],[-12,-10],[13,-8]],[[1245,9985],[111,2],[406,6],[14,1],[11,0],[2,0],[1,0],[4,0],[23,0],[15,1],[27,0],[22,1],[7,0],[12,0],[17,0],[12,-1],[39,0],[10,0],[30,-1],[28,0],[52,-1],[25,0],[9,0],[15,-1],[35,0],[65,-1],[3,0],[14,0],[58,-2],[19,0],[1,0],[4,0],[17,0],[35,-1],[122,3],[28,0],[20,1],[32,1],[37,0],[10,0],[46,1],[11,1],[6,0],[68,0],[14,1],[101,1],[10,0],[62,1],[5,0],[11,1],[9,0],[15,0],[24,0],[38,-1],[13,0],[34,0],[2,0],[19,-1],[55,0],[44,0],[6,0],[9,-1],[109,0],[37,-1],[111,-1],[18,1],[54,0],[33,0],[48,0],[76,-1],[6,1],[9,-1],[28,0],[54,-1],[47,0],[6,0],[51,-1],[5,0],[40,0],[100,-2],[39,-1],[41,-2],[29,-1],[18,-1],[27,-2],[74,-5],[17,-1],[2,0],[7,0],[22,-3],[32,-3],[11,-1],[14,-2],[69,-7],[8,1]],[[8110,7079],[-14,11],[-13,12],[-18,15],[-18,15],[-21,17],[-12,11],[-18,15],[-18,14],[-9,8],[-9,9],[-18,15],[-17,15],[-20,17],[-25,20],[-35,29],[-38,32],[-23,20],[-19,16],[-27,23],[-31,25],[-28,24],[-31,26],[-21,18],[32,12],[39,16],[41,15],[40,16],[39,31],[37,27],[38,29],[31,25],[32,25],[27,20],[28,21],[4,3],[-10,9],[-11,11],[-18,16],[-25,21],[-27,24],[-8,6],[-27,23],[-40,34],[-39,32],[-38,32],[-22,18],[42,33],[12,11],[38,32],[53,43],[12,9],[8,7],[20,16],[23,18],[25,21],[4,3],[29,24],[10,8],[25,20],[37,30],[-36,17],[-10,4],[-50,24],[-13,6],[-41,18],[-108,49],[-8,4],[-5,2],[-19,9],[-12,5],[-28,13],[-9,4],[-5,2],[43,35],[36,29],[33,27],[33,27],[35,29],[23,18],[24,20],[33,27],[30,25],[34,28],[25,21],[21,18],[-26,12],[-65,28],[-12,6],[-41,18],[-46,21],[-25,11],[-61,27],[-54,24],[-17,8],[-41,18],[-50,23],[-58,26],[-22,9]],[[7799,9961],[58,1],[68,2],[139,3],[91,2],[4,0],[118,3],[18,0],[11,0],[3,0],[5,0],[14,1],[7,0],[5,0],[6,0],[5,0],[51,1],[133,2],[154,0],[36,0],[9,0],[25,0],[62,0],[4,0],[153,1],[29,1],[37,1],[46,1],[26,0],[136,2],[42,0],[34,-1],[52,0],[22,0],[53,0],[59,0],[4,1],[2,0],[13,0],[93,1],[60,0],[42,1],[15,0],[47,1],[1,0],[3,0],[1,0],[1,0],[1,0],[15,0],[6,0],[7,0],[35,0],[46,0],[45,0],[34,1],[14,0],[-3,-6],[-8,-3],[-10,-2],[-7,0],[-9,-1],[-7,-2],[-9,-2],[-8,-3],[-5,-3],[-2,-6],[-4,-6],[-1,-7],[-2,-5],[-6,-4],[-8,0],[-7,0],[-9,0],[-7,-4],[-7,-2],[-5,3],[-5,4],[-11,2],[-7,3],[-3,4],[-9,1],[-5,-4],[-6,3],[-4,4],[-5,4],[-4,3],[-7,2],[-5,3],[-8,0],[-8,-1],[-9,0],[-6,-2],[-6,-4],[-6,-3],[-6,-5],[-8,-2],[-11,-2],[-7,-2],[-6,-3],[-11,-2],[-10,0],[-8,-2],[-7,-3],[-8,-3],[-16,-8],[-2,-6],[-9,-3],[-6,-3],[-6,-5],[-5,-6],[1,-4],[9,-2],[7,-1],[2,-4],[-11,-3],[-11,-1],[-6,-4],[1,-6],[-4,-4],[-5,-4],[-5,-3],[0,-5],[8,-1],[7,3],[7,-1],[2,-4],[-1,-6],[-2,-5],[6,-1],[8,1],[6,-3],[4,-4],[2,-6],[1,-7],[3,-5],[8,-4],[6,-2],[7,-4],[3,-6],[2,-4],[4,-4],[7,2],[8,-1],[4,-3],[-5,-4],[-5,-4],[8,-5],[-2,-4],[-8,-2],[3,-4],[9,-1],[9,-1],[6,1],[8,3],[3,-9],[2,-5],[2,-5],[2,-6],[-1,-7],[-2,-5],[0,-7],[-1,-7],[-7,-5],[-8,-3],[-2,-5],[5,-3],[7,-1],[-1,-6],[-3,-4],[-1,-6],[9,-3],[6,-1],[-2,-7],[-2,-4],[-2,-7],[-5,-4],[-8,-2],[-7,0],[-5,7],[-4,-5],[2,-5],[8,-5],[8,-3],[7,-2],[5,-3],[-1,-6],[0,-5],[1,-4],[6,-3],[6,-4],[-1,-5],[-7,-1],[-4,-4],[3,-4],[6,-1],[6,-1],[4,-4],[7,-4],[8,-3],[2,-4],[5,-4],[8,-6],[6,-4],[7,-5],[7,-10],[7,-6],[2,-4],[-1,-5],[1,-4],[4,-4],[8,0],[10,2],[9,2],[6,-1],[1,-4],[-8,-1],[-7,-5],[-1,-6],[2,-4],[4,-3],[2,-6],[-3,-4],[-7,-1],[-5,4],[-7,1],[-8,0],[-3,-5],[-6,-6],[-5,-4],[-7,-2],[-13,-6],[-3,-4],[0,-5],[-2,-4],[-7,-2],[-7,-2],[-10,-3],[-5,-3],[0,-6],[4,-4],[7,-3],[5,-3],[-2,-4],[-8,-4],[-4,-3],[-7,-4],[-4,-6],[4,-3],[-8,-3],[-9,2],[-6,-3],[-5,-5],[-5,-5],[-3,-7],[-5,-4],[-6,-3],[-8,0],[-9,-2],[-5,-4],[-2,-4],[1,-5],[1,-5],[-3,-5],[-7,-2],[-4,-3],[-4,-4],[-6,-5],[-7,-3],[-7,-1],[-10,0],[-9,-1],[-9,-4],[-6,-2],[-5,-3],[-9,-2],[-4,-3],[-6,-6],[-6,-5],[-4,-5],[-3,-4],[0,-4],[2,-4],[4,-5],[5,-4],[3,-4],[-2,-5],[-7,-2],[-8,-2],[-4,-4],[-7,-4],[-6,-3],[-5,-5],[-3,-5],[-1,-5],[0,-5],[4,-3],[6,-4],[4,-5],[4,-4],[4,-8],[2,-5],[2,-7],[-2,-6],[-5,-5],[-6,-4],[-7,-2],[-9,-1],[-7,-7],[-3,-3],[-3,-6],[-2,-5],[-3,-5],[-3,-7],[-2,-6],[-2,-5],[-6,-5],[-6,-1],[-2,3],[-6,2],[-5,-2],[-8,-4],[-6,-2],[-9,-3],[-7,-2],[-6,-3],[-4,-5],[-5,-9],[-5,-5],[-4,-4],[-1,-5],[1,-4],[5,-4],[5,-3],[7,-3],[6,-2],[3,-3],[3,-4],[7,-3],[5,-4],[2,-5],[-4,-4],[-3,-4],[-3,-4],[-1,-4],[-4,-3],[-3,-5],[-3,-4],[-2,-6],[1,-5],[1,-5],[4,-4],[2,-6],[-4,-4],[-2,-3],[-2,-6],[-6,-2],[-6,-3],[-4,-3],[-4,-5],[-4,-3],[-3,-5],[-3,-4],[-7,-2],[-8,1],[-7,2],[-7,-3],[-9,-3],[-6,-1],[-9,-1],[-7,-3],[-7,0],[-5,-3],[-5,-4],[-5,-4],[-4,-4],[-1,-6],[3,-4],[3,-4],[-2,-4],[-9,-3],[-6,-2],[-6,-2],[-8,-3],[-2,-4],[-3,-4],[-2,-5],[-4,-5],[-7,-3],[-6,-4],[-5,-3],[-10,-3],[-7,-1],[-7,-2],[-2,-5],[-2,-5],[-2,-4],[-4,-4],[1,-5],[1,-4],[-6,-3],[-6,-4],[-4,-3],[-7,0],[-7,0],[-8,-3],[-7,-1],[-7,-3],[-4,-3],[-5,-2],[-8,0],[-7,0],[-8,-1],[-6,-2],[-3,-4],[-4,-3],[-5,-7],[6,-4],[5,-4],[7,-2],[8,-2],[7,-5],[3,-5],[2,-5],[1,-4],[-6,-3],[0,-5],[1,-5],[2,-4],[3,-5],[1,-4],[0,-5],[-2,-4],[-2,-9],[-2,-6],[1,-5],[0,-5],[2,-6],[6,-3],[6,-1],[6,1],[7,2],[5,3],[6,2],[7,0],[0,-6],[-3,-4],[-2,-6],[-1,-5],[-2,-4],[2,-6],[8,-3],[10,-3],[7,-3],[5,-3],[-1,-4],[2,-4],[4,-5],[6,-3],[7,-5],[4,-5],[5,-6],[4,-5],[4,-6],[5,-4],[5,-3],[9,-2],[6,-3],[5,-4],[4,-5],[1,-4],[-2,-5],[-6,-4],[-3,-3],[-2,-5],[3,-4],[7,-3],[6,-3],[11,0],[8,-2],[3,-4],[-7,-2],[-6,-3],[-3,-5],[-4,-3],[-3,-4],[4,-4],[3,-7],[1,-7],[3,-7],[4,-5],[5,-4],[2,-5],[-1,-4],[-2,-5],[-4,-4],[-6,-3],[-1,-5],[7,-5],[7,-1],[6,-3],[8,1],[7,-3],[4,-4],[10,-3],[9,0],[9,0],[7,0],[3,-4],[-2,-4],[-5,-3],[-11,-2],[-7,-1],[-6,-2],[0,-6],[3,-4],[3,-4],[5,-4],[1,-5],[1,-4],[0,-4],[-5,-4],[-9,-5],[3,-8],[6,-6],[5,-5],[5,-3],[9,-3],[9,-2],[7,1],[9,2],[9,0],[5,-3],[0,-3],[-3,-4],[-7,-2],[-8,-1],[-7,0],[-5,-2],[4,-4],[7,-1],[16,-5],[11,-2],[15,1],[8,1],[4,3],[4,4],[1,5],[4,3],[7,0],[6,-3],[3,-3],[2,-4],[2,-5],[-2,-7],[1,-4],[5,-6],[6,-4],[5,-3],[3,-4],[3,-8],[-2,-4],[-5,-5],[-7,-1],[-9,1],[-7,-2],[-1,-4],[1,-5],[4,-4],[6,-2],[7,-3],[8,-3],[6,-4],[5,-3],[6,-5],[5,-5],[3,-2],[2,-1],[2,-1],[3,0],[3,0],[2,0],[4,1],[2,1],[1,1],[1,1],[3,0],[3,0],[3,0],[1,0],[3,-1],[2,-1],[1,-1],[1,-2],[0,-1],[-1,-1],[-1,-2],[-2,0],[-3,-1],[-4,-1],[-4,0],[-3,-1],[-3,0],[-3,-1],[-1,-1],[-1,0],[-1,1],[0,1],[-2,2],[-3,2],[-2,1],[-1,1],[-2,1],[-2,1],[-3,1],[-4,0],[-3,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-2],[-1,-2],[1,-1],[2,-2],[1,-1],[3,0],[4,0],[3,0],[3,-1],[2,0],[2,0],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[2,0],[3,0],[2,0],[2,0],[2,1],[2,0],[2,0],[1,0],[0,-1],[2,0],[4,-3],[3,-3],[0,-2],[0,-2],[-2,-2],[-1,-1],[-3,0],[-4,1],[-5,2],[-4,1],[-3,1],[-3,2],[-2,3],[-2,2],[-2,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,-1],[0,-5],[-2,-5],[-3,-5],[-2,-8],[0,-10],[4,-10],[1,-6],[3,-8],[1,-5],[5,-7],[1,-7],[0,-5],[-1,-4],[-3,-4],[-7,-4],[-10,-2],[-6,0],[-9,0],[-6,-1],[-2,-4],[2,-6],[7,-5],[7,0],[13,-1],[11,2],[8,2],[5,3],[7,-2],[-1,-4],[-8,-2],[-8,-3],[-3,-5],[1,-4],[0,-6],[-6,-4],[3,-4],[9,0],[9,3],[6,3],[7,3],[5,4],[4,4],[7,-1],[1,-5],[0,-5],[-4,-5],[-5,-4],[-1,-5],[5,-4],[7,1],[6,2],[7,3],[6,3],[5,2],[4,4],[7,1],[1,-5],[-2,-6],[-6,-4],[-3,-4],[0,-6],[8,-4],[16,-2],[-9,-7],[-2,-4],[0,-5],[-4,-5],[-7,-4],[-7,-3],[-8,-4],[-11,-6],[-7,-2],[-9,0],[-7,1],[-5,4],[-4,5],[-5,4],[-6,2],[-7,-1],[-2,-5],[2,-5],[3,-5],[3,-4],[3,-4],[4,-4],[9,-4],[6,-3],[5,-4],[2,-5],[-3,-3],[-7,-5],[-6,-2],[-9,0],[-6,2],[-8,2],[-7,2],[-8,-4],[-4,-5],[1,-5],[3,-5],[-1,-6],[-6,-4],[-7,-2],[-7,-1],[-7,-1],[-16,-1],[-10,0],[-12,2],[-8,3],[-8,3],[-10,2],[-10,0],[-8,-1],[-7,0],[-7,0],[-7,1],[-7,1],[-11,2],[-7,0],[-9,-1],[-8,-4],[-6,-4],[-5,-5],[-6,-7],[-6,-7],[-3,-6],[-1,-5],[-1,-4],[-1,-5],[5,-4],[9,-5],[6,-4],[7,-3],[6,-3],[6,-4],[8,-4],[5,-3],[4,-3],[7,-3],[6,-1],[8,-2],[6,-3],[12,-5],[8,-4],[7,-3],[4,-4],[5,-3],[4,-3],[5,-3],[4,-5],[0,-8],[-3,-6],[-2,-4],[-3,-4],[-3,-4],[-5,-5],[-3,-4],[-4,-4],[-4,-3],[-3,-4],[-9,-10],[-6,-4],[-6,-3],[-5,-3],[-7,-2],[-11,-2],[-6,1],[-9,1],[-9,1],[-6,2],[-5,-4],[-1,-7],[2,-5],[11,-10],[9,-4],[10,-4],[7,-5],[4,-6],[2,-7],[2,-5],[4,-5],[4,-4],[10,-6],[11,-5],[8,-4],[3,-5],[-1,-6],[-5,-3],[-10,-1],[-13,3],[-8,2],[-3,4],[-2,5],[-2,5],[-4,3],[-7,1],[-4,-3],[0,-4],[5,-4],[6,-3],[-3,-5],[-1,-4],[4,-4],[2,-4],[-4,-4],[-9,-2],[-7,1],[1,4],[-3,4],[-5,4],[-6,1],[-6,-1],[-5,-4],[0,-5],[-1,-6],[-1,-6],[0,-5],[-1,-5],[-2,-6],[-5,-6],[-6,-6],[-2,-6],[-2,-7],[-8,-5],[-7,-1],[-8,-1],[-8,-1],[-8,-1],[-11,-3],[-8,0],[-13,3],[-10,3],[-9,2],[-7,-1],[-7,-4],[-5,-7],[-4,-5],[-7,-9],[-4,-6],[-4,-8],[-3,-6],[-8,-4],[-11,-2],[-16,-1],[-7,1],[-7,4],[-4,4],[-1,4],[1,5],[3,4],[9,-2],[10,3],[6,1],[9,2],[7,3],[7,5],[-1,5],[-5,4],[-11,2],[-9,1],[-10,-1],[-7,-2],[-3,-5],[0,-4],[-3,-4],[-7,0],[-7,-3],[-5,-5],[-3,-4],[-8,-3],[-8,-1],[-8,-3],[-8,-4],[-6,-4],[-5,-4],[-3,-5],[-2,-4],[1,-4],[3,-5],[6,-4],[10,-4],[8,-3],[9,-3],[4,-4],[3,-5],[-4,-4],[-7,-5],[-8,-5],[-7,-2],[-7,-1],[-8,0],[-12,3],[-9,1],[-7,-4],[-6,-5],[-3,-4],[-4,-3],[-5,-9],[-2,-6],[-2,-7],[0,-8],[0,-4],[-1,-8],[-1,-5],[-2,-4],[-6,-11],[-6,-9],[-5,-5],[-7,-5],[-4,-3],[-8,-4],[-8,-3],[-10,-2],[-8,0],[-10,-1],[-14,1],[-10,-1],[-7,-2],[-5,-4],[2,-4],[1,-5],[6,-6],[3,-6],[2,-5],[0,-4],[-5,-4],[-7,4],[-11,1],[-7,-1],[-5,-4],[-2,-5],[-2,-6],[-4,-3],[-6,-2],[-7,-3],[-8,-2],[-4,-3],[-7,-3],[-10,-3],[-6,-1],[-5,-5],[-5,-3],[-6,-4],[-8,-3],[-6,-4],[-6,-2],[-4,-4],[-8,0],[-5,-3],[-7,-3],[-6,-3],[-8,-2],[-8,-2],[-7,-2],[-7,-2],[-8,-1],[-7,1],[-6,0],[-8,2],[-11,3],[-10,0],[-12,0],[-8,0],[-6,-1],[-11,0],[-6,-2],[-7,-2],[-10,0],[-8,-3],[-11,-8],[-3,-5],[-3,-5],[-3,-4],[-4,-4],[-1,-5],[-4,-4],[-10,-2],[-8,-1],[-7,2],[-6,1],[-7,4],[-7,5],[-4,2],[-8,6],[-9,4],[-10,2],[-9,0],[-15,1],[-11,-2],[-11,-3],[-6,-3],[-10,-4],[-7,-3],[-7,-3],[-9,-6],[-7,-3],[-8,-3],[-6,-1],[-10,-1],[-6,0],[-7,0],[-7,1],[-7,0],[-10,1],[-11,0],[-12,-1],[-6,-2],[-8,-5],[-9,-6],[-5,-3],[-6,-3],[-5,-4],[-6,-3],[-6,-3],[-4,-5],[-2,-5],[3,-5],[8,-8],[4,-4],[3,-4],[1,-6],[-7,-4],[-9,-3],[-11,1],[-10,2],[-7,0],[-6,-1],[-8,-2],[-6,-1],[-7,-2],[-4,-6],[-1,-6],[0,-5],[-3,-6],[-1,-6],[1,-6],[6,-3],[7,-4],[3,-4],[-2,-5],[-6,-5],[-6,-2],[-5,-5],[-1,-5],[2,-5],[4,-11],[4,-6],[3,-5],[2,-4],[3,-7],[1,-7],[-5,-5],[-9,-6],[-7,-2],[-8,-3],[-7,-1],[-9,0],[-7,0],[-12,-1],[-7,-3],[-12,-3],[-11,-2],[-6,-1],[-9,-3],[-8,-3],[-12,-5]],[[5394,8110],[-39,-43],[-47,-53],[-40,-45],[-45,-50],[-33,-38],[-43,-48],[-27,-31],[-3,-4],[-7,-3],[-17,-20],[-8,-9]],[[5085,7766],[-14,-17],[-7,-10],[-7,-7],[-8,-10],[-4,-5],[-14,-16],[-4,-6],[-6,-6],[-5,-5],[-11,-13],[-4,-5],[-4,-5],[-4,-4],[-7,-9],[-16,-18],[-6,-7],[-14,-15],[-7,-8],[-8,-8],[-14,-17],[-6,-7],[-9,-10],[-14,-15],[-9,-9],[-7,-10],[-4,-4],[-3,-3],[-20,-20],[-9,-11],[-9,-9],[-1,-10],[-17,-19],[-25,-29],[-1,-8],[-11,5],[-45,20],[-32,15],[-8,3],[-39,18],[-11,5],[-21,10],[-24,11],[-36,16],[-19,9],[-16,7],[-7,4],[-16,7],[-34,16],[-16,7],[-8,4],[-12,5],[-33,16],[-40,18],[-11,6],[-31,14],[-47,21],[-9,5],[-8,-10],[-7,-14],[-11,-12],[-6,-8],[-8,-9],[-6,-6],[-9,-12],[-8,-10],[-8,-8],[-7,-10],[-8,-9],[-7,-9],[-8,-9],[-8,-9],[-7,-9],[-8,-10],[-7,-9],[-8,-9],[-7,-9],[-4,-5],[-4,-4],[-7,-8],[-8,-10],[-6,-8],[-9,-11],[-6,-7],[-8,-10],[-7,-9],[-8,-8],[-7,-10],[-8,-9],[-9,-11],[-9,-11],[-7,-9],[-10,-12],[-9,-10],[-9,-11],[-8,-10],[-54,19],[-49,17],[-31,11],[-42,15],[-45,16],[-40,14],[-9,3],[-44,15],[-47,16],[-45,16],[-52,17],[-23,8],[-83,27],[-55,11],[-49,9],[-87,18]],[[8110,7079],[-7,-4],[-9,-6],[-5,-2],[-9,-4],[-12,-4],[-7,-2],[-5,-2],[-11,-4],[-6,-2],[-8,-2],[-11,-1],[-15,0],[-9,-1],[-9,-1],[-11,-2],[-5,-2],[-11,-5],[-8,-3],[-9,-2],[-9,-1],[-8,2],[-6,3],[-6,2],[-6,1],[-6,3],[-9,3],[-7,3],[-9,4],[-8,3],[-10,3],[-9,1],[-10,1],[-9,2],[-7,3],[-9,4],[-6,2],[-11,5],[-11,2],[-11,3],[-7,1],[-13,0],[-9,-1],[-13,-2],[-12,-1],[-7,-1],[-8,-3],[-6,-4],[-10,-5],[-11,-5],[-5,-2],[-8,-4],[-7,-6],[-5,-6],[-5,-5],[-6,-3],[-12,-3],[-7,-2],[-9,-1],[-9,-1],[-7,1],[-8,1],[-9,3],[-8,2],[-6,2],[-10,0],[-9,0],[-12,0],[-6,0],[-9,0],[-6,0],[-14,-1],[-8,-1],[-7,-2],[-7,-1],[-7,0],[-9,0],[-7,0],[-11,1],[-10,0],[-12,0],[-6,0],[-6,1],[-10,2],[-8,0],[-9,0],[-7,-1],[-13,-5],[-3,-8],[-3,-6],[-3,-6],[-6,-5],[-5,-2],[-8,-2],[-9,-2],[-6,-4],[-7,-2],[-7,-2],[-10,-3],[-8,-3],[-11,-3],[-6,-3],[-10,-3],[-12,-3],[-7,-3],[-7,-2],[-14,-3],[-7,-1],[-9,-2],[-12,-1],[-7,0],[-6,2],[-7,2],[-11,2],[-9,2],[-6,0],[-10,1],[-6,-3],[-4,-4],[-8,-1],[-1,-5],[-2,-5],[-1,-4],[2,-4],[5,-3],[3,-4],[1,-5],[-3,-7],[-1,-4],[-1,-7],[1,-7],[0,-7],[0,-11],[-3,-6],[-3,-4],[-5,-4],[-5,-3],[-3,-4],[-4,-4],[-4,-4],[-5,-3],[-9,-4],[-11,0],[-6,-1],[-6,-3],[-1,-5],[-4,-5],[-11,-4],[-7,-2],[-8,-1],[-7,-1],[-7,-1],[-4,-4],[-7,-5],[-3,-3],[-7,-2],[-5,-3],[-4,-4],[-3,-5],[-4,-5],[-3,-4],[-5,-3],[-5,-5],[-3,-4],[-3,-5],[-4,-5],[-2,-5],[-5,-5],[-3,-5],[-3,-5],[-1,-6],[1,-5],[3,-6],[5,-3],[5,2],[6,-3],[5,4],[6,3],[8,1],[7,1],[5,-2],[-3,-4],[-3,-5],[3,-3],[1,-5],[-4,-3],[-6,-4],[-3,-4],[6,-7],[0,-6],[2,-5],[-1,-6],[0,-4],[8,-9],[4,-5],[3,-6],[3,-4],[4,-4],[1,-4],[2,-4],[4,-3],[4,-5],[7,-3],[7,-4],[4,-4],[4,-6],[2,-4],[3,-6],[2,-4],[-1,-5],[-4,-7],[-5,-6],[-3,-5],[-1,-4],[-2,-4],[-2,-6],[-3,-6],[-3,-6],[-3,-6],[-3,-8],[-1,-7],[1,-6],[3,-7],[2,-5],[0,-4],[-2,-6],[-1,-4],[-4,-5],[-5,-7],[-5,-5],[-8,-1],[-8,-4],[-3,-4],[3,-4],[3,-4],[-1,-5],[5,-5],[-1,-4],[-2,-6],[-2,-5],[-4,-7],[-4,-4],[-5,-3],[-5,-3],[-7,-2],[-4,-4],[0,-4],[0,-4],[-1,-4],[-2,-5],[-3,-5],[-1,-5],[-2,-5],[3,-4],[4,-4],[6,-5],[5,-3],[4,-3],[4,-3],[5,-5],[4,-5],[3,-4],[3,-5],[3,-4],[3,-6],[1,-5],[3,-7],[3,-4],[3,-5],[4,-6],[2,-7],[3,-7],[3,-6],[3,-4],[6,-3],[8,-2],[4,-4],[2,-5],[1,-5],[5,-3],[7,0],[14,1],[0,-6],[-2,-4],[-4,-6],[7,-6],[4,-1],[8,0],[4,-3]],[[7089,6240],[-6,2],[-1,0],[-2,0],[-3,1],[-1,0],[-3,1],[-3,1],[-2,0],[-1,0],[-7,2],[-1,0],[-5,1],[-1,1],[-5,1],[-6,1],[-12,3],[-2,1],[-5,1],[-2,0],[-1,0],[-9,3],[-10,2],[-9,2],[-5,1],[-16,4],[-24,6],[-19,4],[-1,0],[-1,1],[-1,0],[-51,12],[-4,1],[-7,2],[-17,3],[0,1],[-4,0],[-6,2],[-3,1],[-10,2],[-22,5],[-7,2],[-1,0],[-5,1],[-9,2],[-3,1],[-1,0],[-1,1],[-6,1],[-6,1],[-1,1],[-29,6],[-3,1],[-32,8],[-5,1],[-11,2],[-61,15],[-7,2],[-17,4],[-7,1],[-2,1],[-3,0],[0,1],[-2,0],[-1,0],[-4,1],[-31,7],[-5,2],[-33,8],[-7,1],[-34,8],[-22,5],[-22,6],[-18,3],[-53,-4],[-37,-2],[-40,-3],[-22,-1],[-65,-4],[-56,-4],[-44,-2],[-40,-3],[-49,-3],[-69,-4],[-84,-6],[-66,-4],[-38,-2],[-36,10],[-43,12],[-38,11],[-23,7],[-20,5],[-27,8],[-27,7],[-109,31]],[[5419,6450],[13,15],[15,17],[32,37],[13,15],[19,22],[22,24],[48,54],[9,6],[10,11],[18,21],[31,35],[34,41],[0,26],[0,31],[0,59],[84,65],[62,47],[56,43],[34,27],[23,25],[46,53],[36,41],[27,32],[14,15],[19,22],[27,32],[23,27],[27,31],[12,14],[15,17],[-2,2],[-2,1],[-1,0],[-2,1],[-1,1],[0,1],[-1,1],[-1,1],[-3,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-2,0],[-3,2],[-2,0],[-2,0],[0,1],[1,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[-2,1],[1,1],[1,0],[2,1],[1,0],[2,0],[0,-1],[2,-1],[1,0],[2,1],[1,1],[-1,1],[0,1],[-2,2],[-1,2],[-2,0],[0,2],[1,0],[1,1],[3,-1],[2,-1],[2,0],[1,1],[0,2],[-1,1],[-1,2],[-4,4],[-1,1],[1,1],[2,0],[0,1],[-1,1],[-2,1],[-1,2],[-1,0],[-2,0],[1,-1],[1,-1],[-2,1],[-1,1],[0,2],[-1,2],[-2,1],[-1,0],[1,-2],[-1,0],[-2,0],[-1,0],[0,-1],[1,0],[-1,-1],[-2,0],[-2,0],[-1,-1],[-2,0],[-2,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,-1],[-2,0],[-1,0],[0,-1],[0,-1],[-2,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-2,-1],[-2,0],[-2,1],[0,2],[-1,1],[-1,0],[0,4],[0,2],[0,1],[2,1],[2,1],[2,0],[4,0],[2,1],[1,0],[1,0],[2,0],[1,1],[2,1],[1,0],[1,1],[0,1],[1,0],[2,0],[1,0],[-1,-1],[1,-1],[1,0],[2,1],[1,2],[0,1],[0,1],[-1,1],[0,1],[-2,2],[-57,19],[-50,17],[-23,8],[-27,9],[-42,14],[-60,20],[-71,23],[-67,22],[-77,26],[-21,9],[-22,6],[-40,13],[-20,6],[-18,6],[-28,9],[-23,8],[-13,4],[-6,2],[-6,2],[-28,10],[-27,8],[-7,3],[-38,12],[-19,7],[-9,3],[-12,4],[-22,7],[-73,24],[-7,2],[-8,3],[-28,9],[-16,6],[-13,4],[-22,7],[-16,5],[-10,4],[-43,10]],[[7089,6240],[2,-2],[-5,-3],[-5,-2],[-3,-4],[-4,-4],[-1,-4],[-1,-6],[1,-4],[2,-4],[1,-4],[1,-5],[-2,-4],[1,-4],[0,-4],[0,-1],[1,-3],[0,-5],[1,-5],[0,-4],[-1,-5],[-1,-4],[4,-5],[5,-3],[5,-3],[5,-3],[6,-4],[7,-2],[7,-1],[5,-3],[-1,-4],[-4,-2],[-5,-4],[-4,-4],[-1,-5],[-1,-6],[-3,-3],[-5,-3],[-7,1],[-6,2],[-8,-1],[-10,-1],[-7,-2],[-5,-4],[-5,-3],[-6,-2],[-5,-3],[-3,-4],[-5,-4],[-6,-2],[-4,-4],[0,-4],[0,-4],[1,-5],[-1,-5],[-2,-4],[-5,-3],[-3,-4],[-1,-5],[2,-4],[2,-4],[1,-4],[2,-4],[3,-4],[2,-5],[1,-4],[0,-5],[0,-2],[0,-3],[1,-5],[3,-4],[4,-4],[4,-3],[5,-3],[5,-3],[6,-2],[7,0],[6,-1],[6,3],[3,4],[1,4],[1,4],[1,4],[3,5],[5,4],[6,3],[7,1],[7,-2],[6,-2],[6,-2],[6,-1],[6,-3],[4,-4],[3,-4],[1,-5],[-1,-4],[-2,-5],[-2,-4],[-1,-5],[-1,-5],[-2,-5],[-3,-4],[-5,-4],[-8,-3],[-7,-2],[-7,0],[-6,0],[-7,0],[-8,0],[-7,0],[-4,-3],[-3,-4],[3,-5],[5,-2],[6,-3],[6,-2],[5,-3],[6,-2],[6,-2],[7,-1],[7,-2],[6,-2],[6,-2],[4,-4],[2,-4],[-3,-4],[-4,-3],[-7,-3],[-6,-1],[-7,-1],[-6,1],[-7,2],[-5,3],[-2,3],[-6,3],[-8,0],[-6,-1],[-7,-3],[-5,-2],[-8,-1],[-6,-1],[-6,-1],[-6,-2],[-4,-3],[1,-4],[3,-4],[5,-3],[6,-2],[4,-4],[3,-4],[2,-4],[-1,-4],[-4,-4],[-4,-4],[-4,-3],[-5,-4],[-4,-3],[-4,-4],[-4,-4],[-2,-4],[-1,-4],[-4,-5],[-4,-4],[-4,-4],[-7,-3],[-7,-1],[-7,0],[-7,1],[-2,0],[-7,1],[-6,0],[-8,-1],[-4,-3],[-3,-4],[-2,-4],[-1,-5],[5,-4],[6,-2],[8,-2],[7,-1],[7,-2],[3,-4],[1,-5],[-8,-2],[-8,0],[-8,-2],[-7,-2],[-6,-2],[-5,-2],[-6,-3],[-6,-2],[-6,-2],[-6,-2],[-6,-2],[-5,-2],[-4,-4],[-4,-3],[-3,-7],[-1,-4],[1,-4],[2,-4],[3,-3],[3,-4],[3,-4],[4,-3],[3,-4],[3,-4],[2,-3],[-2,-5],[-4,-3],[-5,-3],[-6,-1],[-6,-1],[-4,0],[-6,-6],[-2,-4],[-2,-4],[1,-4],[0,-4],[1,-5],[-2,-4],[-2,-4],[-6,-2],[-6,-1],[-7,1],[-5,3],[-4,3],[-5,3],[-5,2],[-8,2],[-6,-2],[-6,-2],[-4,-4],[-3,-3],[-1,-4],[-1,-5],[-1,-4],[0,-4],[2,-4],[0,-1],[0,-1],[1,-1],[0,-1],[4,-1],[5,-3],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-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],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-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],[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],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-4,1],[-4,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],[-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,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-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,0],[-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,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,-4],[2,-4],[1,-4],[2,-4],[2,-4],[1,-4],[1,-4],[2,-4],[1,-5],[-2,-4],[-4,-3],[-6,-1],[-8,-2],[-6,-3],[-6,-3],[-5,-4],[-3,-3],[-4,-5],[-4,-3],[-6,-2],[-8,-3],[-4,-3],[-3,-3],[0,-5],[1,-4],[4,-4],[5,-3],[4,-3],[4,-3],[3,-4],[3,-4],[2,-4],[0,-4],[0,-4],[-1,-5],[-3,-4],[-2,-4],[0,-4],[1,-5],[0,-4],[1,-4],[0,-5],[0,-4],[-2,-5],[-1,-5],[-1,-4],[-2,-4],[-2,-4],[-2,-5],[0,-4],[4,-4],[6,-2],[7,0],[7,2],[3,4],[6,2],[4,3],[8,2],[6,-1],[7,-3],[7,-1],[8,0],[6,-1],[7,-1],[7,-2],[6,-2],[7,-1],[7,-1],[5,-3],[1,-4],[-7,-1],[-7,-1],[-7,-2],[-7,-1],[-6,-1],[-7,-2],[-6,-2],[-2,-5],[0,-4],[1,-4],[5,-2],[3,-4],[0,-6],[-5,-4],[-3,-4],[-4,-3],[-3,-4],[-3,-4],[-3,-3],[-4,-4],[-4,-4],[-6,-4],[-6,-2],[-6,-3],[-6,-2],[-6,-1],[-8,-1],[-7,-1],[-9,0],[-7,0],[-6,-2],[-3,-4],[-2,-5],[0,-4],[0,-4],[0,-4],[1,-5],[2,-5],[3,-5],[1,-4],[1,-4],[1,-4],[1,-5],[0,-4],[-1,-6],[-2,-4],[-2,-5],[-1,-4],[-1,-5],[1,-4],[2,-5],[-1,-3],[0,-5],[-1,-5],[-2,-5],[-4,-4],[-3,-5],[-5,-4],[-5,-3],[-7,-4],[-5,-3],[-6,-3],[-6,-2],[-6,-1],[-7,-3],[-7,-2],[-6,-3],[-7,-3],[-4,-3],[-3,-4],[-2,-4],[-3,-3],[-6,-3],[-6,-3],[-7,-2],[-9,-4],[-11,-4],[-6,-2],[-6,-3],[-6,-2],[-5,-3],[-7,-2],[-5,-3],[-4,-3],[-5,-3],[-4,-3],[-5,-3],[-4,-4],[-4,-3],[-3,-4],[-2,-4],[-4,-4],[-3,-3],[-2,-4],[-3,-4],[-2,-4],[0,-4],[0,-4],[-2,-4],[-1,-4],[-2,-4],[-5,-2],[-6,-2],[-7,-1],[-6,0],[-7,-1],[-7,0],[-6,0],[-8,1],[-6,-3],[-4,-3],[-4,-3],[-2,-4],[-1,-4],[-1,-4],[-1,-4],[1,-4],[1,-4],[2,-4],[3,-4],[3,-4],[3,-4],[3,-3],[2,-4],[5,-7],[1,-1],[3,-4],[3,-3],[0,-4],[-5,-3],[-6,-2],[-6,-1],[-6,-2],[-5,-2],[-6,-2],[-7,0],[-6,0],[-7,-1],[-7,0],[-7,-1],[-6,-2],[-6,-2],[-4,-3],[-2,-4],[-1,-4],[0,-4],[-1,-4],[-1,-4],[-4,-3],[-3,-4],[-3,-4],[-2,-4],[-1,-4],[1,-4],[2,-4],[2,-4],[2,-4],[2,-3],[2,-4],[3,-5],[3,-3],[3,-5],[2,-4],[2,-4],[2,-4],[0,-4],[0,-4],[-1,-4],[0,-4],[1,-4],[0,-5],[1,-4],[0,-4],[2,-4],[0,-4],[0,-4],[0,-4],[-2,-5],[-2,-3],[-2,-4],[-3,-4],[-4,-3],[-3,-4],[-2,-4],[-3,-3],[-3,-4],[-3,-4],[-3,-4],[-2,-4],[-1,-4],[0,-4],[2,-4],[2,-4],[2,-3],[2,-4],[2,-4],[3,-4],[3,-4],[3,-3],[2,-4],[3,-3],[2,-4],[2,-4],[0,-4],[-1,-4],[-1,-5],[-1,-4],[-2,-5],[-6,-6],[-5,-2],[-5,-3],[-6,-3],[-5,-3],[-5,-3],[-3,-3],[-3,-4],[-2,-4],[-2,-4],[-1,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[-4,-4],[-3,-4],[-4,-3],[-4,-3],[-5,-3],[-6,-2],[-6,-2],[-6,-2],[-5,-2],[-5,-3],[-4,-3],[-4,-4],[-2,-4],[0,-4],[0,-5],[2,-4],[5,-3],[2,-4],[-1,-4],[-2,-4],[-3,-4],[-1,-4],[0,-5],[0,-4],[0,-4],[1,-4]],[[3279,5394],[52,60],[136,159],[59,76]],[[3526,5689],[105,-26],[89,-21],[107,-27],[245,334],[28,-6],[15,24],[3,4],[10,14],[3,4],[4,6],[8,11],[3,5],[4,5],[13,20],[9,12],[7,10],[4,5],[6,9],[8,12],[15,24],[6,7],[6,10],[5,7],[4,6],[5,6],[3,5],[25,37],[3,4],[22,33],[13,19],[11,17],[81,-17],[18,-4],[16,-3],[4,7],[17,29],[27,-7],[14,-4],[10,-2],[6,-2],[7,-1],[14,-4],[7,-1],[14,-4],[6,-1],[12,-3],[24,-6],[17,-4],[8,-2],[6,-2],[9,-2],[11,-3],[7,-1],[18,-5],[12,-3],[13,-3],[8,-1],[9,-3],[8,-1],[7,-2],[6,-2],[9,-2],[15,-4],[14,-3],[8,-2],[8,-2],[7,-2],[70,-16],[6,-2],[16,-4],[24,-6],[11,-3],[23,-5],[8,-2],[14,-4],[15,-3],[10,-3],[46,-15],[6,-2],[7,24],[2,6],[9,28],[3,10],[6,19],[4,11],[1,6],[2,5],[3,11],[5,14],[2,9],[11,34],[3,12],[4,14],[8,25],[4,14],[3,9],[4,12],[3,11],[2,9],[2,6],[7,24],[3,10],[7,21],[5,15],[11,38],[2,4],[25,-7],[6,-2],[44,-12],[35,-11],[7,-2],[33,-9],[67,-20],[38,-10]],[[3526,5689],[-59,15],[-254,63],[-76,19],[-1,0],[-122,31],[-27,6],[-27,7],[-63,14],[-155,37],[-36,-3],[-18,-1],[-13,-1],[-33,-3],[-2,4],[-12,47],[-12,49],[-13,77],[-6,31],[-33,157],[-10,32],[-92,-6]],[[929,2566],[2,37],[2,39],[1,38],[1,40],[0,2],[3,39],[1,37],[2,32],[0,11],[1,18],[2,24],[1,22],[1,23],[2,29],[1,20],[0,3],[1,21],[1,22],[1,20],[1,20],[0,21],[1,18],[1,11],[0,6],[0,15],[1,15],[1,25],[0,7],[2,21],[-1,7],[0,6],[1,6],[0,6],[0,6],[1,6],[0,5],[1,5],[0,13],[1,14],[0,11],[1,10],[0,7],[1,13],[0,19],[1,9],[1,22],[0,4],[0,15],[1,18],[0,7],[0,3],[0,6],[0,5],[0,4],[0,6],[2,9],[-7,1],[3,4],[3,4],[1,4],[-4,4],[1,4],[3,4],[-3,4],[-1,4],[1,4],[2,3],[0,4],[5,3],[5,3],[5,2],[4,3],[5,3],[-1,4],[-5,3],[4,3],[4,3],[2,4],[-5,3],[-1,5],[-4,4],[-2,4],[-2,4],[0,4],[-3,4],[-9,4],[4,7],[-9,5],[-6,0],[-7,1],[-3,4],[4,3],[4,4],[-4,3],[2,4],[-3,3],[5,3],[-4,3],[-4,4],[5,3],[5,3],[-3,4],[1,4],[-2,3],[-4,3],[-6,3],[-7,1],[1,4],[-4,7],[-5,4],[-5,2],[0,4],[-3,4],[-3,4],[-4,3],[-6,2],[3,4],[-4,3],[-5,3],[-3,3],[-6,2],[-6,2],[-7,1],[-2,3],[-1,4],[-6,2],[-5,-3],[-7,1],[1,6],[2,4],[-2,3],[-6,0],[-7,0],[-5,3],[-6,0],[-7,0],[-6,1],[-7,3],[-2,4],[-7,-1],[-7,-1],[-6,-1],[-1,5],[1,5],[-1,4],[-3,4],[-7,0],[-5,3],[-5,3],[-5,-3],[-6,0],[-7,-2],[-5,-2],[-7,1],[-4,3],[-7,-1],[-7,-1],[-6,-2],[-2,4],[-5,2],[2,4],[3,4],[3,4],[6,2],[8,5],[2,4],[-2,4],[-7,2],[-4,3],[-6,1],[-4,3],[3,4],[4,3],[2,5],[4,3],[3,4],[3,4],[2,4],[2,4],[0,4],[-1,5],[0,4],[3,4],[6,3],[-5,3],[-3,4],[-2,4],[2,4],[0,4],[-5,3],[-2,4],[-3,3],[-4,4],[-4,4],[-4,4],[-5,2],[-2,4],[-5,3],[-5,2],[-5,-3],[-6,-1],[-2,4],[2,4],[4,3],[4,4],[-4,3],[0,4],[1,5],[3,4],[1,4],[-4,3],[-5,3],[-4,3],[0,5],[3,3],[2,5],[2,5],[-4,6],[-5,4],[-6,4],[-7,2],[-7,-1],[-4,-4],[-5,-4],[-3,-5],[-4,-4],[-8,2],[-4,3],[-4,4],[-8,2],[-7,1],[-5,4],[-2,4],[-5,-3],[-7,-2],[-7,1],[-9,1],[-7,-3],[-7,-4],[-7,-2],[-8,0],[-8,1],[-5,4],[-6,3],[-6,-1],[-4,-3],[-9,0],[-5,-3],[-3,-4],[-8,-1],[-7,-1],[-4,3],[-5,5],[-8,-2],[-5,-3],[-5,-3],[-3,-5],[-2,-5],[-8,-4],[-8,2],[-5,4],[-5,6],[-2,4],[-3,4],[-7,0],[-11,-1],[-6,-2],[-3,-3],[-7,-1],[-12,-1],[-8,-2],[-8,-1],[-7,1],[-9,5],[-6,0],[-7,-1],[-3,-4],[0,-7],[5,-7],[7,-5],[-5,-4],[-6,-6],[-6,-4],[-6,-5],[-6,-6],[-4,-5],[3,-4],[6,-4],[-3,-4],[-7,-2],[4,-3],[7,-2],[4,-3],[4,-5],[1,-6],[-3,-4],[-7,-6],[-5,-3],[-4,-4],[-6,-3],[-1,-4],[3,-4],[-9,-2],[-9,1],[-7,0],[-5,-3],[-3,-5],[4,-3],[2,-5],[3,-4],[2,-5],[-3,-4],[-6,-2],[-6,2],[-8,-1],[-5,-3],[-1,-4],[3,-5],[4,-3],[7,-3],[8,-1],[3,-4],[-3,-4],[-8,-5],[-5,-4],[3,-5],[4,-3],[5,-4],[2,-6],[-2,-6],[-2,-4],[-2,-5],[-5,-3],[-9,-1],[-12,0],[-9,-3],[-5,-5],[1,-4],[2,-5],[-2,-4],[-7,-1],[-7,-1],[-6,-1],[-3,-6],[-7,-1],[-8,3],[-11,4],[-10,4],[-8,3],[-9,3],[-7,6],[-8,3],[-9,5],[-5,2],[-7,3],[-6,3],[-8,4],[-5,3],[-5,4],[-5,6],[-7,6],[-9,2],[-9,1],[-12,2],[-6,2],[-7,6],[-7,7],[-3,7],[2,6],[3,4],[3,4],[3,4],[4,4],[4,4],[3,4],[2,4],[3,4],[4,7],[4,4],[3,4],[4,4],[6,8],[1,7],[-1,6],[-3,8],[-2,4],[-2,4],[-4,8],[1,5],[4,4],[5,6],[3,5],[4,3],[3,4],[4,4],[3,4],[5,7],[0,5],[-3,5],[-4,4],[-5,6],[-6,7],[-7,6],[-3,4],[-5,5],[-4,3],[-4,4],[-4,4],[-4,4],[-3,5],[-2,6],[1,4],[2,5],[3,4],[1,6],[1,5],[4,7],[5,5],[5,3],[7,3],[8,3],[10,4],[6,5],[5,6],[5,6],[3,5],[1,5],[0,6],[0,4],[3,6],[1,5],[4,5],[5,4],[5,8],[2,4],[3,4],[2,6],[4,5],[5,8],[2,6],[1,6],[1,4],[2,5],[2,4],[5,5],[3,8],[3,6],[2,4],[1,6],[2,7],[2,4],[0,4],[-3,7],[-4,4],[-3,6],[2,7],[5,5],[8,7],[5,2],[6,2],[6,2],[6,3],[8,5],[4,4],[7,6],[3,7],[4,9],[5,7],[6,6],[7,4],[3,5],[2,7],[5,6],[8,7],[6,5],[6,5],[5,3],[10,5],[5,3],[9,6],[8,8],[8,7],[7,4],[5,5],[4,4],[4,4],[2,4],[1,5],[1,8],[0,4],[-1,6],[0,5],[-1,4],[-2,8],[0,4],[1,9],[1,11],[1,6],[2,7],[5,6],[4,4],[5,4],[4,7],[3,7],[3,4],[4,4],[6,5]],[[381,4481],[41,3],[44,3],[49,4],[54,4],[45,3],[51,4],[51,4],[58,4],[35,3],[38,2],[31,3],[31,2],[32,3],[14,0],[22,2],[48,4],[25,2],[52,4],[72,6],[-9,41],[-8,39],[-8,39],[-8,39],[-8,40],[-9,39],[-8,39],[-6,32],[92,3],[229,7],[-1,2],[-3,10],[1,0],[8,0],[6,1],[12,0],[11,0],[3,0],[3,1],[16,0],[8,0],[2,1],[3,0],[19,0],[11,1],[5,0],[8,0],[7,0],[14,1],[12,0],[4,0],[1,0],[1,0],[8,1],[11,0],[13,0],[4,0],[9,1],[17,0],[5,0],[7,0],[2,0],[11,1],[2,0],[10,0],[1,0],[3,0],[11,0],[10,1],[1,0],[1,0],[15,2],[1,0],[13,0],[8,0],[12,0],[2,0],[9,1],[12,0],[8,0],[2,0],[2,1],[4,0],[3,0],[2,0],[3,0],[1,0],[2,0],[3,0],[8,0],[5,0],[11,0],[4,0],[6,0],[8,0],[8,1],[5,0],[4,0],[8,0],[5,0],[2,0],[8,1],[6,0],[10,0],[11,1],[8,0],[2,0],[1,0],[4,0],[2,0],[4,1],[5,0],[11,0],[8,1],[3,0],[3,0],[16,1],[16,1],[1,0],[2,0],[8,0],[10,1],[14,-1],[20,0],[11,1],[0,-2],[-1,-5],[0,-3],[-10,-1],[-5,-2],[6,-7],[4,-4],[2,-1],[3,1],[1,0],[2,1],[1,0],[2,0],[2,1],[2,0],[2,0],[3,0],[2,0],[4,-13],[3,-12],[3,-11],[3,-10],[2,-5],[0,-1],[1,-5],[1,-2],[1,-4],[1,-3],[2,-4],[0,-1],[1,-4],[1,-3],[1,-2],[1,-4],[0,-2],[1,-1],[1,-3],[1,-3],[0,-1],[0,-2],[1,-1],[1,-3],[0,-2],[1,-1],[0,-2],[1,-2],[1,-4],[1,-2],[1,-4],[1,-3],[1,-2],[1,-4],[0,-1],[1,-3],[1,-3],[1,-2],[0,-2],[2,-4],[0,-2],[0,-1],[1,-3],[1,-2],[1,-2],[1,-4],[0,-2],[1,-2],[1,-4],[108,33],[32,10],[7,2],[32,11],[33,11],[17,6],[22,7],[40,13]],[[381,4481],[5,7],[4,4],[4,5],[4,6],[6,8],[5,5],[4,5],[4,4],[5,6],[4,6],[3,5],[4,4],[6,8],[3,7],[-1,5],[-6,4],[-4,5],[-4,4],[-4,4],[-5,7],[-1,4],[-2,5],[-2,8],[-2,5],[-2,5],[-2,6],[-3,4],[-4,3],[-7,5],[-9,7],[-10,6],[-8,3],[-6,3],[-6,3],[-7,4],[-8,4],[-9,5],[-13,7],[-7,5],[-2,6],[-1,5],[-1,5],[-1,4],[-1,5],[-1,5],[-2,4],[-2,4],[-3,6],[-6,7],[-7,6],[-8,5],[-5,3],[-5,4],[-11,5],[-9,4],[-7,6],[-4,5],[-2,4],[-2,4],[-1,6],[1,5],[1,4],[4,8],[2,3],[3,5],[2,4],[4,8],[6,7],[4,3],[6,4],[6,4],[10,5],[9,4],[9,4],[9,2],[5,3],[6,5],[6,6],[3,5],[4,5],[2,5],[-1,6],[-4,3],[-6,4],[-5,3],[-5,3],[-6,3],[-7,4],[-5,3],[-5,5],[-4,4],[-1,9],[0,4],[2,5],[3,8],[3,4],[3,5],[2,5],[1,4],[2,5],[5,7],[3,4],[5,8],[3,5],[4,9],[4,6],[1,5],[0,4],[-3,5],[-3,4],[-4,7],[-5,6],[-5,7],[-4,6],[-6,7],[-6,7],[-3,4],[-4,5],[-3,5],[-5,6],[-4,5],[-7,9],[-6,7],[-5,6],[-7,5],[-7,3],[-8,4],[-8,5],[-7,4],[-4,4],[-1,4],[-1,4],[-4,8],[-3,9],[-4,6],[-3,5],[-2,7],[-3,9],[-2,4],[-3,6],[-1,5],[-3,4],[-3,5],[-5,7],[-4,5],[-4,7],[-3,4],[-4,7],[-5,10],[-2,6],[-1,6],[-1,5],[1,6],[1,7],[1,6],[2,8],[2,8],[2,5],[3,8],[2,6],[2,5],[1,8],[0,7],[0,7],[0,5],[-1,8],[-2,8],[-2,8],[0,8],[0,7],[-1,12],[-1,5],[-1,5],[-2,4],[-3,5],[-3,4],[-2,5],[-3,6],[-5,6],[-4,7],[-3,4],[-1,5],[-1,6],[0,4],[0,6],[0,4],[2,5],[3,4],[1,4],[1,5],[1,4],[1,5],[0,4],[1,7],[2,4],[2,5],[2,4],[1,5],[0,4],[1,6],[0,4],[0,6],[3,5],[2,6],[2,5],[1,6],[1,6],[2,6],[2,7],[2,6],[0,6],[1,6],[-1,5],[-1,5],[-2,4],[-2,5],[-4,11],[-3,6],[-4,6],[-4,6],[-3,6],[-5,4],[-5,4],[-8,4],[-7,3],[-6,2],[-9,2],[-7,2],[-9,2],[-7,3],[-4,3],[-7,5],[-3,4],[-6,7],[-9,5],[-8,3],[-6,2],[-6,4],[-7,4],[-9,4],[-5,3],[-4,4],[-2,7],[1,5],[1,5],[2,5],[5,10],[3,10],[4,10],[3,7],[4,10],[4,13],[1,8],[4,8],[2,8],[3,10],[2,8],[1,9],[0,10],[0,4],[1,6],[3,6],[4,5],[3,5],[6,6],[5,7],[7,9],[5,8],[9,13],[7,8],[8,12],[5,6],[5,6],[5,5],[2,4],[2,5],[0,5],[1,7],[2,7],[1,4],[6,7],[4,5],[3,6],[1,8],[-1,4],[-1,5],[-1,7],[-1,10],[-2,7],[-4,6],[-4,6],[0,6],[0,7],[-1,5],[-2,5],[-5,7],[-3,6],[3,5],[6,6],[6,7],[6,6],[6,3],[9,4],[5,2],[6,5],[9,8],[6,5],[5,4],[4,9],[0,5],[-1,4],[-2,6],[2,5],[7,5],[4,7],[1,5],[1,5],[1,4],[2,5],[1,4],[0,5],[1,5],[3,5],[3,4],[5,3],[2,3],[2,4],[0,5],[-1,4],[-3,4],[-2,4],[-2,4],[-1,4],[2,4],[0,4],[3,4],[3,5],[4,4],[3,3],[7,3],[7,1],[5,4],[4,5],[2,6],[-1,5],[0,4],[-2,5],[-1,4],[-1,5],[-1,5],[1,4],[0,4],[1,5],[3,3],[5,3],[7,1],[8,0],[7,2],[4,4],[1,4],[1,4],[3,4],[5,4],[6,3],[7,3],[7,2],[8,1],[8,2],[5,3],[4,4],[4,4],[2,4],[5,3],[5,3],[6,3],[6,2],[7,1],[7,3],[7,2],[5,4],[3,4],[-1,4],[-1,4],[0,5],[3,4],[4,3],[5,3],[4,3],[4,4],[2,4],[4,4],[4,3],[3,5],[0,4],[0,5],[1,5],[5,3],[6,3],[5,3],[5,3],[1,4],[2,5],[0,4],[1,4],[5,5],[6,2],[5,2],[5,3],[7,2],[5,3],[6,3],[1,4],[-2,4],[-3,4],[1,4],[6,2],[7,0],[9,2],[7,2],[7,1],[6,3],[5,4],[5,3],[4,4],[5,4],[5,2],[7,0],[7,-1],[8,-2],[7,0],[5,3],[3,3],[-1,4],[0,5],[1,4],[3,3],[6,3],[6,1],[5,3],[3,5],[3,4],[3,5],[2,4],[1,5],[0,4],[0,5],[0,5],[0,4],[-1,5],[-1,4],[0,6],[20,5]]],"transform":{"scale":[0.00019728178234817759,0.00022899339009647417],"translate":[-73.43790157676979,42.726960008328305]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment