Skip to content

Instantly share code, notes, and snippets.

@maggie-lee
Created October 1, 2014 21:03
Show Gist options
  • Save maggie-lee/61c03c3d646a09d5a012 to your computer and use it in GitHub Desktop.
Save maggie-lee/61c03c3d646a09d5a012 to your computer and use it in GitHub Desktop.
Dekalb cities draft
<!DOCTYPE html>
<meta charset="utf-8">
<style>
#south_dekalb1 { /*city comprising south dekalb*/
fill: gray ;
opacity: 0.5;
}
#lakeside_tucker1 {
fill: gainsboro;
opacity: 0.5;
}
#lakeside_tucker2 {
fill: dimGray;
opacity: 0.5;
}
#brookhaven1 {
fill: purple;
opacity: 0.5;
}
/* CSS goes here. */
</style>
<body>
Proposed cities are in gray shades
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>document.write('<script src="http://' + (location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1"></' + 'script>')</script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script>
var width = 1500,
height = 1500;
var scale = 100000;
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
var color = d3.scale.category20();
d3.json("topo_cities.json", function(error, dek) {
if (error) return console.error(error);
console.log("ok dek:", dek)
var projection = d3.geo.mercator()
.scale(scale)
.rotate([84.2, -33.9, 0]);
var path = d3.geo.path()
.projection(projection);
svg.selectAll("#cities")
.data(topojson.feature(dek, dek.objects['cities']).features)
.enter().append("path")
.attr("id", function (d, i) {return "cities" + i; })
.attr("d", path)
.attr("fill", function (d, i) {return color(i);});
});
d3.json("topo_brookhaven.json", function(error, bkh) {
if (error) return console.error(error);
console.log("ok dek:", bkh)
var projection = d3.geo.mercator()
.scale(scale)
.rotate([84.2, -33.9, 0]);
var path = d3.geo.path()
.projection(projection);
svg.selectAll("#brookhaven")
.data(topojson.feature(bkh, bkh.objects['brookhaven']).features)
.enter().append("path")
.attr("id", function (d, i) {return "brookhaven" + i; })
.attr("d", path)
.attr("opacity", 0);
});
d3.json("south_dekalb.json", function(error, south_dekalb) {
if (error) return console.error(error);
console.log("ok sdk", south_dekalb);
var projection = d3.geo.mercator()
.scale(scale)
.rotate([84.2, -33.9, 0]) // l/r, u/d, yawl
var path = d3.geo.path()
.projection(projection);
svg.selectAll("#south_dekalb")
.data(topojson.feature(south_dekalb, south_dekalb.objects['south_dekalb']).features)
.enter().append("path")
.attr("id", function (d, i) {return "south_dekalb" + i; })
.attr("d", path)
.attr("opacity", 0);
});
d3.json("lakeside-tucker.json", function(error, lakeside_tucker) {
if (error) return console.error(error);
console.log("ok lakeside:" , lakeside_tucker)
var projection2 = d3.geo.mercator()
.scale(scale)
.rotate([84.2, -33.9, 0]) // l/r, u/d, yawl
console.log("lakeside features:", lakeside_tucker.objects['lakeside-tucker']);
var path2 = d3.geo.path()
.projection(projection2);
svg.selectAll("#lakeside_tucker")
.data(topojson.feature(lakeside_tucker, lakeside_tucker.objects['lakeside-tucker']).features)
.enter().append("path")
.attr("id", function (d, i) {return "lakeside_tucker" + i; })
.attr("d", path2)
.attr("opacity", 0);
});
</script>
<!-- // var projection = d3.geo.mercator()
// .scale(scale)
// .rotate([84.2, -33.9, 0]) // l/r, u/d, yawl
// var path = d3.geo.path()
// .projection(projection);
// svg.selectAll("#south_dekalb")
// .data(topojson.feature(south_dekalb, south_dekalb.objects['south_dekalb']).features)
// .enter().append("path")
// .attr("id", function (d, i) {return "south_dekalb" + i; })
// .attr("d", path)
// .attr("opacity", 0);
// });
-->
<!-- // d3.json("lakeside-tucker.json", function(error, lakeside_tucker) {
// if (error) return console.error(error);
// console.log("ok lakeside:" , lakeside_tucker)
// var projection2 = d3.geo.mercator()
// .scale(scale)
// .rotate([84.2, -33.9, 0]) // l/r, u/d, yawl
// console.log("lakeside features:", lakeside_tucker.objects['lakeside-tucker']);
// var path2 = d3.geo.path()
// .projection(projection2);
// svg.selectAll("#lakeside_tucker")
// .data(topojson.feature(lakeside_tucker, lakeside_tucker.objects['lakeside-tucker']).features)
// .enter().append("path")
// .attr("id", function (d, i) {return "lakeside_tucker" + i; })
// .attr("d", path2)
// .attr("opacity", 0);
// }); -->
<!-- d3.json("050_002.json", function(error, counties) {
if (error) return console.error(error);
console.log("ok counties:", counties)
var projection = d3.geo.mercator()
.scale(scale)
.rotate([84.2, -33.9, 0]);
var path = d3.geo.path()
.projection(projection);
svg.append("path")
.datum(topojson.feature(counties, counties.objects['050_00']))
.attr("d", path)
// svg.selectAll("#counties")
// .data(topojson.feature(counties, counties.objects.geometry))
// .enter().append("path")
// .attr("id", "counties")
// .attr("d", path)
// .attr("opacity", 0.1)
// .attr("stroke", "black")
// .attr("fill", "null");
}); -->
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.
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.
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.
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"cities":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[0,1,2,3]]},{"type":"Polygon","arcs":[[-3,4,-1,5,6,7]]},{"type":"Polygon","arcs":[[-7,8]]},{"type":"Polygon","arcs":[[9]]},{"type":"Polygon","arcs":[[10],[11]]},{"type":"Polygon","arcs":[[12]]},{"type":"Polygon","arcs":[[13,14]]},{"type":"Polygon","arcs":[[15]]},{"type":"MultiPolygon","arcs":[[[-14,16]],[[17]]]},{"type":"Polygon","arcs":[[18]]}]}},"arcs":[[[6042,8639],[-49,0],[-56,1],[-81,1],[3,-13],[25,-2],[0,-12],[-20,-1],[6,-20],[16,-47]],[[5886,8546],[-2,-1],[-10,-8],[-5,-5],[-11,-15],[-2,-3],[-3,-6],[-4,-3],[-4,-3],[-2,-2],[-4,-2],[-5,-2],[-2,-1],[-5,-1],[-4,0],[-5,0],[-7,0],[-7,0],[-7,1],[-7,1],[-10,3],[-5,2],[-6,0],[-5,-1],[-6,-6],[-2,-32],[4,-5],[4,-10],[1,-9],[-1,-11],[-4,-10],[-2,-5],[21,0],[1,-20]],[[5780,8392],[-61,2],[0,-83],[0,-3],[0,-9]],[[5719,8299],[-25,33],[-47,42],[-7,5],[-12,7],[-17,6],[-16,5],[-15,4],[-11,4],[-14,3],[2,15],[-3,1],[-17,4],[-16,2],[-27,1],[-58,0],[-59,-1],[-211,0],[-6,-17],[-16,2],[-11,2],[-14,3],[-85,10],[-109,0],[-41,-2],[-16,0],[-22,-2],[-23,-2],[-19,-4],[-26,-8],[-11,-4],[-6,-4],[-24,-11],[-10,-5],[-3,-1],[-7,-4],[-16,-12],[-3,-1],[-16,-12],[-8,-5],[-3,-3],[-2,-2],[-1,-3],[-1,-3],[0,-4],[-1,-3],[-2,-3],[-2,-3],[-4,-4],[-5,-4],[-3,-1],[-3,-1],[-3,1],[-3,1],[-5,3],[-6,5],[-4,2],[-6,2],[-4,0],[-3,0],[-5,-1],[-7,-2],[-9,-3],[-17,-5],[-8,-3],[-10,-3],[-6,-1],[-8,-3],[-84,-37],[-3,-1],[-15,-5],[0,4],[-2,98],[5,18],[0,16],[-1,130],[-1,50],[0,55],[1,35],[0,19],[0,4],[0,4],[1,19],[0,2],[0,6],[1,92],[1,33],[0,7],[0,3],[0,12],[0,6],[0,2],[-1,2],[1,3],[-1,34],[-1,58],[0,26],[0,30],[0,13],[0,11],[0,19],[0,86],[0,11],[0,1],[4,100],[-4,62],[0,4],[0,10],[0,32],[0,236],[0,18],[2,24],[0,7],[0,24],[-2,26],[0,42],[6,69],[2,13],[1,5],[-1,7],[0,6],[0,2],[-1,17],[-1,21],[18,-3],[0,-19],[0,-15],[0,-3],[0,-5],[3,-3],[7,-9],[10,-5],[10,15],[43,42],[47,46],[12,13],[2,1],[4,3],[2,1],[8,3],[7,6],[7,1],[6,-25],[4,-12],[5,2],[-3,11],[0,3],[1,1],[25,36],[7,10],[10,1],[2,-1],[5,-3],[4,-2],[7,-5],[7,-4],[8,-6],[1,0],[6,-3],[5,-3],[17,-6],[14,-6],[4,-2],[3,-1],[5,-2],[1,-1],[15,-5],[7,-3],[2,-1],[15,-5],[24,-9],[11,-6],[20,-11],[22,-11],[6,-3],[4,-1],[11,-4],[17,-6],[13,-3],[7,-2],[3,0],[4,0],[2,0],[7,1],[4,0],[4,0],[3,0],[3,0],[3,0],[2,1],[7,0],[17,3],[16,2],[7,1],[6,0],[6,-1],[8,-2],[10,-3],[7,-2],[10,-4],[6,-2],[2,0],[3,-2],[2,-1],[1,-1],[3,-3],[5,-6],[3,-5],[3,-2],[3,-3],[4,-2],[4,-2],[11,-3],[4,0],[1,0],[13,1],[3,0],[2,0],[4,-1],[28,-12],[11,-5],[6,-2],[3,-2],[4,-3],[8,-9],[15,-15],[1,-1],[4,-3],[4,-2],[16,-4],[7,-2],[14,-5],[6,-3],[4,-3],[4,-3],[15,-16],[4,-4],[2,-1],[1,-1],[2,-2],[5,-4],[12,-8],[19,-14],[3,-2],[4,-3],[61,-44],[9,-6],[1,0],[8,-6],[32,-16],[4,-2],[5,-2],[6,-1],[6,-1],[5,0],[7,2],[9,4],[10,5],[1,1],[6,2],[8,1],[4,0],[17,-2],[4,0],[6,0],[6,-1],[26,2],[3,0],[9,-1],[9,-1],[13,-5],[3,-1],[9,-6],[9,-6],[13,-11],[4,-3],[16,-10],[4,-1],[5,-3],[1,0],[9,-2],[8,-1],[24,-5],[1,0],[5,0],[11,-3],[3,-1],[8,-3],[13,-8],[14,-10],[2,-1],[27,-17],[6,-4],[6,-2],[1,-1],[9,-2],[7,-1],[2,0],[16,-1],[11,-1],[38,-6],[32,31],[47,20],[1,1],[2,-6],[0,-3],[2,-8],[0,-1],[4,-21],[1,-3],[0,-3],[4,-23],[1,-2],[7,-27],[1,-4],[2,-5],[0,-2],[39,21],[1,1],[1,0],[1,1],[8,6],[5,3],[19,13],[0,1],[9,6],[27,-56],[6,-15],[2,-4],[59,-119],[1,-1],[13,-30],[5,-9],[8,-18],[2,-4],[0,-1],[-15,-10],[-64,-42],[-4,-2],[-3,-1],[-6,-3],[-37,-26],[25,-73],[25,-55],[34,-79],[8,-17],[6,-13],[10,-21],[1,-3],[2,-5],[5,-16],[4,-9],[1,-5],[2,-4],[5,-14],[2,-8],[1,-1],[7,-23],[1,-2],[3,-7],[8,-25],[1,-3],[8,-40],[-14,-9],[-36,-21],[-49,-30],[-48,-29],[-59,-38],[-8,-4]],[[5780,8392],[53,-3],[5,0],[5,0],[6,0],[78,-1],[27,-2],[11,-1],[0,22],[-10,1],[0,22],[-15,1],[-19,0],[0,1],[-9,30],[-4,14],[23,9],[5,-3],[5,-4],[1,40],[-3,3],[-2,3],[-7,13],[-4,8],[-3,7],[-1,2],[0,3],[0,-6],[0,-9],[1,-33],[-23,-3],[-3,8],[-3,7],[-1,4],[-2,6],[-5,15]],[[6042,8639],[8,0],[11,0],[12,0],[59,1],[6,0],[4,0],[5,-4],[3,-3],[6,-2],[5,0],[8,-4],[-1,-2],[-5,-6],[-3,-4],[-4,-8],[-2,-2],[0,-1],[-1,-3],[-3,-6],[-2,-7],[-1,-4],[-2,-5],[-1,-5],[-1,-5],[-1,-7],[-1,-5],[0,-11],[0,-7],[0,-5],[1,-43],[2,-49],[1,-9],[-1,-25],[0,-2],[21,0],[49,0],[40,1],[7,0],[100,1],[7,-18],[0,-1],[8,4],[5,3],[2,-4],[2,-5],[1,0],[1,-2],[1,-2],[0,-1],[1,0],[1,-2],[0,-1],[2,-2],[10,-19],[13,-28],[2,-3],[10,-21],[24,-56],[36,-40],[1,0],[0,-1],[5,-5],[2,-2],[35,-38],[2,-2],[35,-19],[7,-4],[5,-20],[0,-4],[0,-3],[-6,-7],[-6,-9],[0,-5],[4,-3],[3,-1],[2,-1],[2,-1],[3,0],[0,-3],[-5,-8],[-4,-6],[-5,-3],[0,-36],[-8,-1],[2,-15],[-2,-31],[-74,0],[-30,0],[1,-66],[-24,1],[-66,0],[-21,0],[0,68],[-10,0],[-54,1],[-5,24],[-11,44],[79,2],[0,77],[-4,134],[-22,-32],[-41,-62],[-4,-6],[-58,-85],[-56,-67],[9,-15],[-10,-19],[-1,-18],[-3,-14],[-10,-8],[-6,-4],[1,-70],[2,-38],[0,-11],[1,-9],[1,-5],[2,-4],[41,-48],[10,-12],[16,-18],[8,-9],[0,-1],[-3,-2],[-7,7],[-38,2],[-39,1],[1,-91],[0,-10],[1,-8],[2,-1],[1,-2],[0,-2],[1,-3],[0,-8],[0,-15],[0,-14],[0,-20],[1,-6],[1,-9],[0,-4],[1,-15],[-1,-26],[0,-16],[0,-9],[-1,-5],[4,-108],[-17,1],[-20,-28],[-1,2],[-4,8],[-7,13],[-5,9],[-9,0],[-126,-1],[-52,0],[-14,0],[-27,0],[3,-38],[24,0],[0,-5],[-1,-7],[-1,-4],[-2,-3],[-3,-5],[-5,6],[-18,20],[-27,32],[-2,2],[-6,7],[-4,4]],[[5820,7361],[-3,18],[-9,75],[-1,10],[-4,16],[-4,15],[-13,66],[-1,9],[0,8],[0,7],[1,8],[0,2],[-30,61],[-16,31],[-1,8],[-3,23],[0,1],[-1,1],[0,2],[-1,1],[0,1],[-1,1],[-3,0],[-2,0],[-4,0],[-3,0],[-2,0],[-8,-1]],[[5711,7724],[2,3],[2,6],[1,7],[3,122],[0,47],[-1,14],[-2,46],[-2,50],[-2,45],[-1,17],[1,34],[0,9],[-3,-4],[-4,6],[-7,15],[5,5],[12,0],[4,153]],[[5820,7361],[0,-16],[0,-13],[0,-32],[0,-4],[0,-4],[-1,-6],[-1,-5],[-2,-6],[-11,-24],[-8,-19],[-4,-8],[-13,-29],[-3,-8],[-3,-11],[-3,-16],[16,-43],[-15,-34],[-11,27],[-2,-5],[-7,-14],[-4,-6],[-7,-9],[-41,4],[-29,1],[-29,0],[-5,0],[-25,-1],[-26,2],[-70,1],[-53,-2],[-49,0],[-12,0],[-3,5],[-1,2],[-2,0],[-1,0],[-1,0],[-2,-1],[-7,-5],[-12,-4],[-14,0],[-12,0],[-26,0],[-26,0],[-12,0],[-25,-7],[-73,0],[-5,3],[-5,1],[-6,4],[-5,3],[-6,4],[-9,5],[-6,3],[-15,10],[-14,11],[-7,6],[-25,-4],[-15,-2],[-13,1],[-1,5],[1,39],[-3,0],[-3,0],[-3,1],[-16,-5],[-3,0],[-4,-2],[-2,0],[-16,4],[8,12],[2,3],[17,27],[8,13],[12,12],[7,7],[7,6],[-2,131],[-2,121],[2,88],[-7,64],[1,36],[0,6],[1,25],[2,91],[0,45],[-1,14],[4,1],[6,1],[5,3],[11,6],[4,3],[5,3],[17,8],[13,5],[16,5],[9,1],[6,1],[7,-1],[7,-2],[6,-4],[6,-5],[2,-3],[8,-9],[9,-16],[11,-19],[5,-8],[4,-3],[5,-3],[5,-3],[1,0],[5,-1],[6,-1],[6,1],[9,2],[9,4],[37,15],[8,4],[10,-9],[44,40],[17,12],[22,16],[10,1],[14,7],[27,5],[33,12],[7,-46],[4,-60],[9,15],[10,14],[4,5],[11,0],[0,-29],[0,-35],[52,0],[20,-32],[19,-32],[20,-31],[16,6],[37,11],[7,3],[4,3],[3,4]],[[6975,5141],[18,-39],[7,-21],[3,-24],[4,-16],[1,-24],[-1,-9],[1,-25],[-1,-6],[-2,-8],[-3,-10],[-5,-11],[-6,-10],[0,-75],[-1,-14],[-8,0],[-30,4],[-1,-5],[-4,-7],[-5,-8],[-6,-8],[-2,-3],[0,-37],[0,-3],[18,-1],[10,0],[0,-70],[-41,2],[-40,1],[-1,22],[0,4],[0,8],[0,25],[0,4],[0,8],[0,2],[0,3],[-21,-4],[-25,-5],[-65,4],[-49,21],[-15,5],[-1,0],[-3,-1],[-3,0],[-7,-2],[-2,0],[-2,16],[1,6],[-10,3],[-24,45],[-9,19],[-13,43],[-5,7],[-4,7],[-3,7],[-2,9],[-1,8],[0,8],[2,10],[-2,12],[-4,8],[1,6],[1,10],[4,11],[2,10],[2,5],[2,5],[1,2],[4,11],[-7,-5],[-6,-5],[-10,4],[-33,1],[3,-93],[7,-83],[-7,0],[-2,1],[-2,26],[0,1],[-5,52],[-3,31],[-2,29],[-1,30],[0,28],[0,10],[2,7],[4,30],[3,15],[4,17],[6,16],[6,14],[8,14],[9,13],[8,8],[10,10],[13,12],[4,5],[3,9],[10,6],[40,30],[67,50],[1,-7],[5,-35],[29,-7],[32,0],[13,0],[8,0],[8,0],[23,-19],[5,-5],[1,-4],[-1,-6],[-5,-5],[-33,4],[-9,3],[-2,-9],[0,-9],[-1,-2],[-12,-11],[16,4],[34,-2],[3,-1],[1,0],[4,-6],[1,-6],[23,-5],[11,-4],[-4,-7],[-1,-1],[5,-4],[5,-3],[1,3],[2,2],[39,-39],[2,4],[10,-9],[0,-6],[10,0],[0,-26],[-8,0]],[[8278,4592],[9,-13],[1,2],[11,-17],[1,1],[60,-1],[10,15],[9,5],[14,-75],[28,-59],[-16,4],[-11,0],[-4,-1],[-4,-3],[-11,-20],[-11,-19],[-6,19],[-2,9],[-12,-1],[-2,-4],[-1,-22],[-1,0],[-6,2],[-5,2],[-6,2],[-5,0],[-4,-16],[-3,2],[-6,3],[-6,3],[-8,4],[-5,1],[-12,2],[-11,2],[-11,1],[-7,-1],[-21,-1],[-20,-1],[-19,-2],[-8,-1],[-49,-7],[0,25],[-20,5],[-13,4],[7,22],[-44,3],[-1,23],[-1,14],[-3,38],[2,0],[9,4],[-2,1],[-17,15],[-7,5],[-7,6],[-10,9],[-3,3],[-3,3],[-4,4],[-3,4],[-4,7],[-25,-1],[-8,14],[22,7],[-1,2],[-2,8],[-3,7],[-2,8],[-1,9],[-4,13],[-1,2],[5,6],[4,5],[4,3],[3,1],[-3,16],[-22,-2],[0,3],[1,25],[0,64],[-1,21],[0,2],[44,-2],[9,-10],[2,2],[3,3],[3,5],[2,3],[4,-12],[5,-9],[2,-5],[4,-10],[5,-11],[9,-16],[6,-11],[-6,-22],[11,-6],[6,-7],[3,-18],[17,-8],[18,-6],[5,1],[2,1],[15,17],[1,-16],[-1,-36],[0,-3],[1,-3],[1,-1],[-47,-40],[-5,-24],[-9,1],[-4,-24],[1,0],[4,2],[4,1],[6,4],[2,1],[4,3],[5,3],[4,3],[4,3],[5,4],[3,3],[2,3],[3,4],[2,3],[5,9],[2,5],[10,21],[9,-7],[7,-5],[7,10],[5,10],[4,9],[7,-2],[-4,-11],[6,-1],[4,20],[2,11],[1,5],[4,26],[-6,11],[-20,-8],[-10,2],[-5,8],[1,10],[-4,8],[-3,26],[-1,5],[0,3],[-5,28],[-2,7],[-2,9],[-2,52],[-6,45],[-1,25],[-7,2],[-26,7],[-3,1],[-5,0],[-5,0],[-10,1],[-1,0],[2,24],[-4,-1],[-14,0],[-8,42],[-5,2],[-1,1],[-3,1],[1,1],[14,19],[7,8],[5,5],[4,5],[4,-2],[24,0],[1,-6],[3,-9],[19,-14],[4,6],[9,24],[8,1],[0,31],[24,42],[34,16],[3,4],[2,3],[16,10],[24,12],[28,13],[4,0],[3,-1],[6,-2],[3,0],[10,3],[2,0],[27,0],[28,1],[53,-13],[25,-13],[6,-1],[0,23],[0,84],[0,19],[-1,48],[31,0],[0,31],[9,4],[11,1],[13,-2],[16,-5],[1,-34],[10,0],[1,-35],[-3,-173],[-24,3],[-2,1],[-11,-1],[-16,-1],[-4,0],[24,-24],[1,-9],[8,-8],[11,-35],[1,-1],[14,-44],[1,-3],[11,-34],[4,-67],[-7,-12],[-2,-7],[-4,-15],[-6,-18],[-4,-12],[-4,-10],[-6,-12],[-9,-15],[-12,-16],[-16,-19],[-11,-16],[-24,-14],[-6,-3],[2,-17],[1,-6],[24,6],[21,-87],[-16,3],[-4,0],[-8,-3],[-8,-3],[-1,-5],[-6,-1],[-6,6],[-4,0],[-12,-3],[-10,0],[-10,54],[-15,0],[-2,0],[-1,1],[-1,3],[0,1],[0,4],[-18,-4],[-5,-2],[-1,-1],[-6,0],[-70,3],[0,-20],[-17,-1],[0,-16],[17,-1],[0,-27]],[[8278,4592],[-24,1],[-21,0],[1,-24],[43,-11],[0,4],[1,30]],[[7601,4481],[1,-143],[31,0],[-2,-49],[-5,0],[-28,-1],[0,-17],[-14,-3],[0,-22],[-27,11],[0,30],[-18,0],[0,-31],[-11,0],[-1,-83],[-3,4],[-4,2],[-7,5],[-6,2],[-19,1],[1,63],[0,33],[1,20],[-3,1],[0,19],[-1,3],[0,6],[2,84],[1,39],[-17,-1],[-1,12],[-4,3],[-7,5],[-7,1],[-5,0],[-4,-2],[-5,-3],[-4,-8],[0,-5],[-9,1],[1,43],[10,-2],[12,-4],[9,-8],[12,-6],[2,-1],[3,-1],[2,-1],[2,0],[3,1],[2,1],[3,2],[4,80],[-11,1],[0,32],[20,1],[0,9],[23,0],[0,-16],[0,-9],[84,1],[32,1],[-3,-10],[0,-3],[-2,-6],[-3,-12],[-10,-31],[-8,-19],[-2,-3],[-10,-17]],[[5695,3200],[-1,12],[-1,34],[0,14],[-3,1],[-24,5],[-28,3],[-8,1],[-18,1],[-3,0],[-24,2],[-5,1],[-3,1],[-7,9],[-10,9],[-7,4],[-4,1],[-5,0],[-14,1],[-12,2],[-35,4],[-24,2],[-24,3],[-1,-45],[-32,7],[-11,-30],[-4,-6],[-12,0],[-31,1],[-34,0],[-34,0],[-32,1],[0,-23],[-22,0],[22,34],[32,37],[0,2],[-1,1],[0,2],[-4,6],[-6,11],[-2,5],[-1,4],[-1,10],[-25,7],[-3,1],[-5,-14],[-8,55],[-2,130],[1,85],[-3,33],[-1,5],[0,1],[0,1],[-1,3],[-1,6],[-24,-2],[-19,-2],[-19,-5],[-6,-3]],[[5145,3628],[14,27],[55,0],[3,28],[-2,18],[1,20],[8,42],[0,9],[0,30],[0,34],[-3,1],[2,4],[1,1],[2,41],[0,6],[-1,1],[-4,2],[-3,1],[1,3],[8,16],[-1,37],[1,43],[-13,0],[-5,0],[-1,13],[-20,0],[0,5],[0,5],[1,6],[3,5],[2,11],[2,12],[1,18],[-10,-1],[0,18],[2,8],[5,17],[8,20],[7,21],[5,-4],[6,14],[58,133],[2,5],[16,34],[45,1],[123,-1],[9,1],[0,81],[1,3],[1,9],[0,2],[-2,4],[5,2],[16,10],[0,3],[24,17],[24,15],[-1,-7],[17,11],[-2,6],[30,20],[0,-16],[0,-19],[0,-17],[-4,-35],[0,-20],[-3,-26],[17,0],[1,-5],[-18,0],[-5,-49],[32,0],[21,1],[45,-3],[34,3],[9,-5],[51,-1],[23,1],[4,0],[40,-2],[10,1],[6,-20],[1,-6],[3,-10],[15,-60],[44,-4],[2,-1],[-1,20],[3,10],[25,-3],[0,-9],[0,-19],[25,0],[2,25],[35,-1],[6,-2],[-1,-15],[-1,-9],[-5,-15],[-2,-5],[-3,-12],[-4,-13],[-4,-15],[-9,-22],[-7,-17],[-6,-11],[-7,-13],[-8,-12],[-1,-3],[-3,2],[-11,-5],[-2,-8],[-5,-26],[0,-20],[2,-32],[1,-13],[0,-4],[0,-2],[0,-3],[0,-5],[-4,-2],[-17,-8],[-15,-9],[-31,-15],[-1,-6],[17,7],[14,2],[17,1],[0,-18],[0,-3],[0,-1],[2,-3],[-10,0],[0,-17],[0,-10],[-17,0],[-2,0],[0,-1],[0,-9],[0,-3],[-16,0],[4,-24],[17,0],[13,0],[0,-16],[12,0],[14,0],[0,-4],[0,-4],[-14,0],[-12,0],[0,-45],[-3,2],[-2,1],[-4,0],[-2,-1],[-2,-3],[-1,-4],[-1,-2],[0,-3],[6,-14],[2,-4],[-10,-8],[-2,4],[-7,15],[-4,-2],[-11,23],[-21,-16],[-22,31],[-8,-8],[-11,-10],[39,-40],[16,-15],[-4,-7],[69,-68],[45,-78],[1,-3],[15,10],[13,-21],[-5,-8],[-10,-7],[3,-6],[-6,-5],[-9,17],[-20,-9],[7,-20],[-2,-1],[-2,-2],[-9,19],[-16,-8],[0,-37],[-16,0],[0,-11],[-18,0],[0,-13],[-3,-1],[-9,1],[-4,1],[-4,1],[-7,5],[-2,1],[-1,46],[-21,-9],[-2,0],[0,-16],[-5,0],[0,-17],[-8,0],[0,28],[8,0],[0,6],[-50,11],[-2,-4],[-1,-21],[0,-12],[1,-6],[0,-1],[-1,-4],[-3,-5],[-4,-6],[-1,-6],[-2,-5],[7,-1],[0,-7],[17,1],[0,6],[7,0],[0,26],[7,0],[0,-16],[14,-1],[0,-5],[18,-1],[-1,-34],[-7,1],[-11,0],[-7,-1],[-16,-5],[-21,-1],[-1,-1],[-1,-1],[-7,-6],[-2,-2],[1,-10],[0,-2],[1,-6],[5,-13],[1,-7],[0,-3],[-1,-5],[-1,-3],[-3,-34],[1,-8],[1,-3],[3,-14],[2,-3],[5,-12],[3,-10],[3,-5],[5,-9],[5,-7],[5,-8],[5,-4],[3,-2],[3,-1],[2,-1],[2,0],[2,-1],[4,-2],[5,-5],[11,-12],[0,-14],[-47,2],[-98,4]],[[6185,4081],[2,1],[18,12],[9,8],[7,7],[10,12],[3,-4],[19,-41],[15,13],[10,1],[14,2],[12,0],[7,1],[0,-16],[-3,0],[0,-33],[3,0],[0,-35],[0,-3],[0,-4],[0,-25],[0,-42],[8,-2],[20,-7],[24,-7],[15,-6],[2,6],[0,2],[0,1],[-2,7],[11,3],[25,-3],[4,0],[-4,-26],[0,-2],[-1,-6],[2,-1],[9,-6],[13,-8],[46,-46],[13,-15],[73,-5],[-14,-55],[-13,-3],[2,-5],[2,-6],[2,-6],[-4,-7],[-7,-12],[-11,-16],[-7,9],[-9,-9],[-4,4],[-17,-13],[-27,-13],[-2,-34],[-30,-41],[-61,-85],[-18,-26],[-31,-42],[-17,0],[-1,0],[2,-26],[-2,-2],[-1,1],[-36,-45],[-2,1],[-25,28],[15,52],[1,7],[-21,7],[-1,1],[-11,7],[-15,5],[-22,8],[-1,-3],[-8,-48],[-4,-19],[-3,-10],[-2,-5],[-4,-7],[-10,-14],[-16,-22],[-2,2],[-1,39],[0,7],[0,6],[0,93],[4,71],[-3,18],[-18,2],[2,3],[2,4],[1,5],[0,4],[11,0],[7,174],[-15,3],[-1,4],[-1,5],[-1,3],[-2,2],[-7,0],[-17,0],[-8,103],[-47,0],[-3,21],[-6,0],[-18,-3],[-8,37],[-2,15],[-1,3],[0,2],[0,2],[18,8],[40,19],[14,6],[53,26],[5,3],[0,-3],[0,-20],[0,-17],[13,4],[-2,12],[5,1],[4,-11],[3,0],[20,-5],[35,10],[-21,47],[0,1],[-4,5]],[[5695,3200],[-5,-19],[0,-33],[0,-18],[13,-58],[19,-77],[-2,1],[-2,3],[-3,1],[-2,0],[-2,0],[-7,1],[-13,0],[-4,-1],[10,-28],[9,-26],[9,-26],[-5,-3],[-7,-44],[2,-8],[-7,-47],[-15,1],[-32,2],[-13,0],[-5,1],[-8,1],[-12,3],[-13,6],[0,-27],[-25,-4],[-38,3],[-33,1],[-25,0],[0,18],[-23,1],[-17,1],[1,24],[32,-1],[8,0],[23,-1],[35,-1],[25,-1],[11,-2],[11,-5],[6,5],[1,35],[1,49],[2,78],[-25,1],[-30,1],[-34,1],[-33,1],[-42,1],[-22,1],[-32,0],[-72,3],[-28,2],[1,-144],[101,6],[0,-27],[28,-1],[1,-23],[-30,11],[-13,0],[-20,-1],[-32,1],[-35,-9],[-37,-1],[-23,0],[-26,1],[-101,3],[-51,2],[0,19],[8,4],[6,3],[6,2],[6,1],[6,0],[19,0],[42,-3],[0,62],[1,47],[-13,-8],[-16,-7],[-13,27],[45,6],[9,0],[0,2],[4,61],[-8,0],[-20,1],[-39,2],[0,9],[0,2],[0,2],[0,14],[-22,0],[-19,0],[-8,0],[-21,0],[-23,1],[-10,0],[-22,0],[-21,0],[-22,1],[-21,0],[-29,1],[-3,-51],[0,-8],[-1,-19],[0,-5],[0,-1],[0,-2],[9,-34],[7,-41],[2,-10],[3,-11],[10,-26],[3,-9],[1,-5],[1,-2],[0,-2],[0,-10],[-12,-1],[-12,-1],[-8,1],[-12,0],[-3,-147],[5,-79],[3,-57],[1,0],[9,-5],[4,-2],[30,-17],[2,-2],[46,-42],[13,-12],[7,-5],[4,-3],[6,-2],[12,-6],[9,-7],[21,-18],[8,-7],[-26,-24],[-7,-5],[-30,-32],[-6,-4],[-1,-1],[-1,-1],[-48,-35],[-28,-40],[-34,-82],[-14,-20],[-35,62],[-18,31],[-14,43],[-2,20],[-8,53],[0,6],[-12,41],[-26,51],[-43,51],[-32,43],[-30,47],[1,-31],[-80,1],[-25,-2],[-25,1],[-11,-1],[-16,-1],[-19,-1],[-10,0],[4,-91],[0,-45],[1,-40],[-2,-21],[-4,-56],[0,-59],[-21,0],[0,-3],[0,-14],[0,-20],[0,-40],[0,-33],[0,-22],[-1,-46],[0,-4],[0,-2],[0,-2],[0,-6],[0,-5],[0,-42],[0,-152],[0,-29],[0,-112],[0,-9],[0,-9],[0,-20],[1,-68],[0,-14],[-1,-7],[1,-1],[-1,-23],[0,-25],[0,-9],[0,-7],[-1,-11],[-1,-30],[0,-52],[1,-6],[3,-85],[1,-11],[1,-21],[1,-13],[1,-28],[0,-9],[0,-19],[0,-29],[0,-137],[0,-21],[0,-5],[0,-4],[0,-2],[-1,-29],[-3,-50],[0,-4],[0,-56],[-2,-74],[2,-53],[-7,-265],[-1,-53],[-1,-6],[0,-6],[0,-1],[-1,-45],[-1,-14],[0,-3],[0,-2],[0,-4],[-2,-112],[-1,-76],[-1,-80],[-2,-117],[-1,-33],[-75,-3],[-2,0],[-1,0],[-5,0],[-40,0],[-7,0],[-1,0],[-4,0],[-46,2],[-19,0],[-4,1],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-6,0],[-2,0],[-14,0],[-93,-3],[-2,0],[-1,0],[-99,6],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-4,0],[-1,0],[-21,0],[-20,0],[-63,3],[-15,0],[-89,0],[-1,0],[-50,0],[-1,0],[-101,0],[-6,0],[-12,0],[-1,0],[-10,0],[-7,0],[-1,0],[-3,0],[-2,0],[-31,0],[-22,0],[-2,0],[-1,0],[-1,0],[-3,0],[-6,0],[-45,2],[-19,1],[-4,0],[-19,0],[-31,0],[-4,0],[-1,0],[0,1],[-1,0],[-4,2],[-1,1],[-3,0],[-26,0],[-9,0],[1,50],[0,10],[2,93],[0,5],[0,8],[45,-13],[5,-2],[2,-1],[2,-1],[2,0],[4,28],[1,5],[8,5],[2,2],[2,2],[10,20],[1,8],[3,22],[5,5],[6,5],[0,1],[1,10],[2,53],[0,33],[-1,6],[-2,29],[-2,14],[-4,28],[-1,6],[-11,44],[-10,37],[-10,34],[-8,31],[-8,28],[-2,12],[-1,4],[-2,13],[-1,3],[0,4],[0,3],[-1,21],[0,15],[0,11],[2,70],[-4,0],[-37,1],[-3,0],[-24,0],[-61,1],[-43,1],[-34,1],[-34,0],[-79,1],[-22,0],[-21,1],[-4,0],[-50,0],[-39,0],[3,118],[21,3],[0,4],[0,8],[13,1],[25,2],[1,5],[3,12],[3,14],[1,8],[2,20],[0,10],[0,3],[0,3],[-2,12],[-1,6],[1,26],[-18,0],[-16,1],[-5,0],[1,31],[0,13],[1,43],[0,26],[0,11],[0,35],[2,85],[-3,90],[29,1],[0,14],[1,31],[0,23],[0,2],[0,7],[2,77],[-3,1],[-8,1],[-3,0],[-22,0],[-4,-1],[-10,1],[-14,0],[-11,1],[-18,0],[-6,1],[-5,-1],[-66,2],[-50,-4],[-75,9],[1,12],[0,4],[1,12],[2,12],[3,20],[1,18],[-2,-1],[-2,-1],[-5,-2],[-7,-3],[-29,1],[-6,0],[-108,3],[-46,0],[0,34],[-112,3],[0,30],[2,86],[0,24],[0,2],[-20,-3],[-12,0],[-41,-1],[-2,1],[-36,2],[-31,-2],[-2,-102],[-2,-59],[-1,-52],[0,-9],[0,-5],[0,-5],[-80,29],[-3,0],[-16,6],[-43,3],[-17,-3],[-9,-2],[-13,-4],[-19,-9],[-4,-3],[-14,-11],[-20,-16],[-3,-4],[-4,0],[-7,0],[-8,0],[-14,0],[-64,0],[-15,0],[-8,3],[-8,1],[-39,1],[-6,-1],[-29,-3],[-58,5],[-15,-1],[-35,-2],[-34,0],[1,-18],[2,-83],[-1,-58],[-48,1],[-72,2],[-8,0],[0,-51],[-18,-7],[-12,-5],[-47,-19],[-5,-2],[-13,-1],[0,-13],[0,-89],[0,-25],[0,-7],[-1,-33],[1,-101],[-1,-40],[0,-32],[-1,-33],[0,-112],[-18,0],[-8,1],[0,-13],[-95,1],[0,-33],[0,-106],[0,-105],[-27,0],[-91,0],[-5,0],[-2,0],[-194,6],[1,-36],[6,-160],[5,-181],[-3,0],[-7,0],[-9,0],[-7,1],[-11,3],[-52,17],[-19,7],[-39,13],[-31,10],[-28,10],[0,-31],[-79,24],[-39,-10],[-6,4],[-6,0],[-5,-1],[0,4],[0,4],[-1,9],[0,5],[-2,12],[-2,0],[-28,1],[-57,0],[0,9],[0,46],[0,13],[-4,1],[-11,2],[-11,1],[-3,1],[-21,1],[-7,1],[-2,0],[1,33],[-16,3],[2,9],[2,26],[1,7],[3,11],[4,11],[2,4],[2,3],[10,14],[4,4],[8,7],[8,6],[13,9],[6,3],[5,2],[4,2],[-3,256],[0,23],[-83,0],[-36,1],[-88,0],[-7,0],[-2,126],[2,5],[1,4],[1,6],[0,5],[2,85],[-40,1],[-3,1],[-3,1],[-4,-4],[-6,1],[-9,1],[-20,1],[-23,0],[-19,0],[-9,0],[-10,0],[-24,1],[-27,0],[-22,1],[1,11],[2,40],[4,94],[0,12],[1,27],[2,58],[-1,20],[1,14],[0,125],[-58,1],[0,125],[59,0],[1,28],[0,55],[-4,31],[-7,-9],[-7,-9],[-4,-2],[-7,10],[-5,6],[-1,3],[33,30],[0,101],[-1,16],[6,-1],[7,-2],[-19,90],[-3,14],[3,0],[9,1],[4,-5],[0,-1],[3,-2],[2,1],[2,2],[3,5],[7,0],[7,-3],[9,4],[4,1],[4,1],[4,-2],[5,-4],[24,6],[3,0],[1,-7],[0,-4],[5,-1],[14,-5],[16,3],[6,-2],[4,0],[13,1],[9,1],[5,0],[4,-1],[26,-1],[15,0],[-1,-4],[-1,-5],[-2,-29],[-4,-38],[-1,-13],[-1,-4],[-1,-4],[22,1],[0,120],[0,15],[0,71],[0,23],[-7,1],[-2,7],[-6,17],[-4,7],[0,3],[-1,31],[19,4],[-11,41],[12,17],[-14,20],[-2,104],[0,12],[-2,82],[-8,47],[-6,4],[-9,5],[7,19],[-9,7],[-2,2],[-4,0],[-2,1],[-30,-2],[-8,0],[4,-10],[5,-16],[1,-15],[2,-11],[0,-11],[-3,-33],[-7,-52],[-88,0],[2,-36],[0,-19],[0,-11],[-96,3],[-69,-2],[-2,14],[3,224],[0,12],[47,0],[194,0],[-5,17],[-2,6],[-3,16],[-10,56],[-6,32],[-1,7],[0,7],[0,1],[0,7],[1,6],[14,1],[10,2],[8,2],[2,1],[16,5],[11,4],[12,5],[10,5],[12,7],[11,6],[2,1],[4,1],[6,0],[5,-1],[38,-13],[14,-4],[17,-5],[10,-3],[34,-9],[8,-2],[4,-2],[59,-35],[10,-7],[-15,-50],[-8,-1],[-1,-133],[12,0],[8,-1],[9,-1],[7,-2],[12,-5],[5,-1],[2,0],[24,0],[0,-45],[8,0],[20,0],[-1,45],[4,0],[1,-45],[0,-7],[2,-67],[10,1],[61,0],[7,-23],[16,9],[7,6],[2,3],[35,0],[11,0],[16,1],[25,0],[0,-3],[-1,-13],[-1,-19],[-1,-7],[-1,-10],[-3,-16],[-2,-11],[-1,-8],[-6,-35],[-6,-29],[-6,-30],[-5,-23],[-4,-13],[-3,-6],[-2,-6],[-10,-19],[-2,-3],[19,1],[48,6],[4,0],[17,1],[-3,-27],[9,0],[25,0],[10,-1],[94,2],[2,68],[98,0],[4,1],[5,1],[-1,5],[-10,28],[-6,21],[-6,31],[-2,10],[-1,4],[-1,12],[15,1],[-1,26],[27,0],[2,94],[6,-2],[20,-10],[31,-16],[29,-14],[1,59],[-1,117],[-115,0],[-1,12],[6,34],[-5,27],[0,40],[1,11],[1,9],[-11,1],[-5,0],[-5,0],[-71,-1],[0,240],[-26,-1],[-5,0],[-5,1],[-6,2],[-4,1],[-5,2],[-5,4],[-3,1],[-5,4],[-15,-76],[5,-150],[-19,-27],[-9,-13],[-16,-12],[-52,-41],[-2,-4],[-24,-58],[-59,84],[-2,2],[0,3],[-1,5],[-1,13],[0,7],[9,4],[-3,22],[-1,81],[0,26],[0,19],[-10,1],[-19,-10],[-4,2],[-3,3],[-6,0],[-3,3],[-8,1],[0,11],[0,5],[0,2],[-2,3],[-2,2],[-7,2],[-6,15],[-6,0],[-2,-20],[-38,17],[-4,7],[-14,18],[-11,14],[-45,-1],[-29,0],[-4,0],[-101,2],[-8,-2],[-10,0],[-12,2],[-8,2],[-1,1],[-37,2],[0,10],[3,93],[0,75],[-9,1],[-42,0],[0,58],[-5,1],[-3,2],[-1,1],[-3,3],[-7,10],[-5,7],[-14,9],[-4,4],[-7,13],[-6,11],[16,19],[-1,11],[21,-3],[14,-3],[12,16],[3,4],[7,10],[23,32],[2,2],[2,1],[6,1],[3,0],[11,-1],[0,56],[0,129],[0,23],[205,-2],[15,2],[-1,146],[162,-5],[47,6],[0,71],[0,5],[0,132],[-2,102],[2,19],[0,20],[23,0],[60,142],[5,-3],[10,24],[10,18],[11,19],[13,19],[17,23],[38,51],[-24,-2],[-23,0],[-38,0],[-31,1],[-7,0],[-8,-1],[-6,-2],[-1,0],[-8,-3],[-10,-6],[-2,-1],[-3,0],[-4,1],[-8,4],[-7,2],[-7,2],[0,22],[2,189],[73,52],[67,62],[36,44],[0,1],[-13,9],[1,2],[3,3],[111,114],[46,99],[17,35],[22,34],[25,38],[4,5],[46,68],[4,4],[6,-13],[3,4],[96,100],[31,32],[3,1],[-4,9],[75,24],[48,34],[68,77],[2,4],[46,77],[52,68],[94,121],[42,30],[1,0],[21,16],[112,-9],[4,0],[83,-65],[32,-14],[5,-2],[38,39],[1,1],[4,16],[3,11],[1,4],[1,6],[0,1],[0,2],[1,4],[0,5],[1,5],[4,32],[0,7],[-30,76],[-1,4],[-30,75],[-52,159],[-4,67],[7,33],[10,50],[4,14],[0,2],[12,40],[4,26],[4,47],[0,2],[1,8],[1,10],[-2,8],[-1,1],[-1,4],[-9,30],[-17,44],[-5,12],[7,43],[83,127],[16,18],[5,5],[4,6],[4,6],[1,1],[3,4],[3,5],[3,5],[0,25],[0,2],[0,8],[0,7],[0,3],[0,20],[-35,72],[-2,42],[8,23],[4,9],[11,29],[21,30],[5,8],[2,3],[0,1],[1,1],[4,7],[7,11],[11,18],[15,22],[3,6],[1,1],[12,19],[1,8],[23,36],[6,10],[39,43],[10,11],[9,11],[1,1],[4,4],[11,14],[6,5],[36,28],[20,20],[4,4],[2,4],[2,4],[2,5],[2,5],[3,8],[1,6],[1,5],[1,5],[1,4],[0,2],[1,17],[34,-3],[5,0],[14,0],[17,25],[2,1],[2,1],[8,-2],[3,-4],[-1,-10],[2,-2],[3,3],[8,-4],[4,-3],[2,4],[7,4],[10,-2],[-2,8],[3,8],[8,5],[8,2],[2,3],[-2,-41],[0,-14],[32,0],[30,0],[10,0],[41,0],[30,-1],[2,8],[16,77],[1,0],[4,0],[4,-1],[3,-2],[3,-3],[3,-3],[9,-13],[-4,-49],[-1,-14],[16,0],[21,0],[21,0],[8,0],[2,0],[4,14],[2,8],[29,-13],[1,-10],[53,0],[48,-1],[18,1],[3,-1],[2,-1],[24,0],[48,0],[13,0],[24,0],[19,0],[21,0],[24,0],[32,0],[1,0],[28,-2],[-4,124],[1,2],[26,-1],[7,0],[7,0],[1,25],[0,47],[0,18],[2,-1],[3,0],[2,0],[3,0],[2,1],[3,2],[2,1],[1,2],[3,3],[5,7],[6,8],[3,7],[5,6],[2,3],[3,4],[1,0],[2,1],[4,2],[3,1],[17,0],[0,-1],[7,-25],[8,0],[0,-14],[0,-42],[0,-26],[0,-3],[0,-19],[0,-8],[2,0],[0,-13],[12,-16],[2,-4],[23,5],[2,0],[0,-60],[45,-3],[0,-16],[-1,-14],[0,-3],[27,0],[146,0],[16,0],[0,13],[1,5],[0,4],[-4,1],[-3,-1],[-4,-1],[-3,-2],[-10,19],[-14,9],[-11,21],[-4,-3],[-1,2],[-5,12],[6,3],[14,8],[-9,17],[-7,13],[-3,6],[-1,2],[-4,4],[-9,9],[-9,9],[-8,9],[-4,7],[-11,17],[-6,9],[-7,11],[-16,15],[-4,8],[-6,10],[-8,13],[14,13],[2,2],[1,-2],[2,-3],[5,-7],[12,-10],[5,-5],[3,-4],[4,-3],[4,-2],[5,-1],[4,-1],[3,-1],[1,-18],[16,-9],[7,-4],[16,-11],[1,-8],[3,-3],[4,-3],[3,-3],[12,-10],[7,-11],[1,0],[2,-4],[17,-31],[15,-16],[8,-7],[2,-2],[0,-2],[-1,-65],[-1,-18],[47,-3],[23,-2],[33,-1],[5,-1],[8,1],[27,1],[23,0],[35,0],[22,0],[4,0],[5,0],[11,-1],[7,0],[7,0],[34,-1],[9,1],[3,1],[19,-2],[50,-4],[1,0],[3,0],[39,-1],[6,0],[8,0],[0,4],[0,10],[0,4],[0,17],[0,2],[1,0],[1,0],[1,0],[2,0],[2,1],[2,1],[2,2],[1,3],[1,2],[2,2],[5,2],[2,1],[2,5],[1,3],[2,2],[1,2],[2,3],[3,3],[2,0],[23,0],[5,0],[3,-1],[10,0],[1,0],[3,0],[28,-44],[-6,-10],[1,-1],[3,-3],[0,-2],[1,-3],[4,-3],[0,-3],[1,-3],[1,-2],[2,-4],[2,-7],[1,-1],[13,-12],[8,1],[14,1],[15,1],[5,0],[0,17],[0,14],[42,-1],[5,0],[53,-1],[-12,22],[-4,8],[15,0],[0,41],[0,6],[14,19],[14,18],[3,9],[46,1],[29,1],[3,0],[10,-1],[14,-1],[11,4],[5,7],[2,-1],[0,-12],[4,-56],[2,-22],[0,-2],[0,-3],[0,-4],[0,-37],[0,-2],[0,-49],[-1,-31],[0,-15],[-1,-36],[-1,-130],[11,-1],[-1,-17],[-11,-7],[0,-8],[0,-13],[0,-8],[0,-14],[0,-12],[0,-3],[0,-3],[2,-11],[2,-10],[0,-2],[0,-2],[0,-18],[0,-10],[-7,-76],[-1,-7],[0,-9],[2,-28],[0,-2],[3,-33],[0,-4],[1,-8],[2,-56],[0,-4],[0,-5],[-2,-94],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-6],[-1,-28],[-1,-8],[0,-3],[0,-1],[0,-62],[0,-13],[0,-24],[0,-11],[0,-31],[0,-12],[0,-26],[0,-22],[0,-4],[-1,-6],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-4],[0,-1],[0,-2],[0,-1],[0,-5],[-2,-7],[-3,-12],[2,-21],[1,-21],[0,-1],[1,-10],[0,-1],[1,-11],[0,-4],[1,-3],[1,-8],[0,-10],[0,-17],[0,-5],[0,-34],[0,-86],[0,-6],[0,-5],[0,-5],[0,-4],[0,-2],[0,-1],[0,-18],[-1,-119],[0,-9],[0,-11],[0,-7],[0,-1],[2,-41],[0,-1],[1,-10],[0,-14],[-1,-9],[-1,-2],[0,-3],[0,-1],[0,-21],[0,-2],[0,-14],[0,-19],[-2,-12],[-1,-10],[0,-1],[0,-6],[0,-4],[-1,0],[0,-1],[0,-9],[0,-6],[0,-1],[0,-15],[0,-11],[4,-113],[0,-9],[-2,-84],[0,-9],[2,-71],[0,-2],[0,-13],[2,-48],[0,-3],[0,-5],[-4,-22],[2,-27],[0,-3],[-1,-15],[-1,-13],[0,-7],[4,-21],[-2,-22],[0,-40],[0,-19],[0,-2],[0,-1],[2,-19],[1,-14],[3,0],[2,0],[0,-5],[-2,0],[-3,0],[0,-6],[1,-5],[2,-1],[20,0],[24,0],[34,-4],[1,0],[1,0],[38,2],[3,0],[22,-1],[8,0],[10,1],[4,1],[4,4],[2,3],[48,-11],[6,-1],[-3,-9],[-3,-10],[-1,-9],[-1,-13],[1,-11],[1,-8],[-8,-47],[-5,-35],[-1,-3],[-1,-1],[-1,-1],[-60,-114],[-30,-5],[-17,-3],[-19,0],[-23,0],[1,-12],[-4,-31],[5,-29],[5,-28],[-2,-14],[-63,-5],[0,-5],[-1,-6],[0,-1],[-1,-2],[-2,-31],[0,-48],[0,-43],[0,-32],[0,-22],[0,-61],[0,-14],[2,-24],[4,0],[11,3],[20,-1],[0,-86],[20,-25],[15,6],[5,1],[60,-6],[7,-1],[53,0],[21,1],[15,-24],[6,7],[-6,10],[13,1],[71,5],[-1,-2],[-4,-7],[-6,-13],[-3,-10],[16,-3],[8,-2],[1,9],[0,4],[0,2],[2,4],[6,12],[6,9],[1,3],[-2,7],[18,-1],[47,-4],[-3,-137],[2,-45],[-2,-31],[-2,1],[-7,7],[-5,5],[-18,-32],[20,1],[29,0],[2,-15],[11,11],[5,-122],[32,-9],[0,51],[30,1],[20,-3],[37,0],[1,-49],[48,-1],[15,0],[0,-12],[13,0],[7,-18],[2,-19],[44,0],[0,-9],[0,-30],[13,7],[7,3],[7,2]],[[2883,244],[0,-31],[-1,-66],[1,-74],[0,-46],[0,-2],[-3,0],[-89,3],[-112,0],[0,142],[1,11],[0,41],[2,44],[-3,6],[0,26],[0,2],[0,3],[34,0],[0,1],[0,41],[2,0],[24,0],[64,-2],[33,0],[7,-1],[10,0],[-3,-10],[-4,-20],[-1,-3],[-7,-26],[45,-39]],[[9758,2227],[3,0],[19,-3],[19,-5],[31,-11],[26,-17],[27,-29],[11,-20],[13,-41],[3,4],[7,15],[4,17],[9,31],[6,11],[60,-40],[3,-11],[-5,-7],[5,-14],[-2,-38],[-4,-3],[3,-15],[-7,-88],[5,-11],[-1,-26],[-4,2],[-4,2],[-5,1],[4,125],[-17,3],[5,41],[-9,2],[6,11],[-25,5],[-33,-37],[3,-10],[12,-106],[-20,-61],[-44,-68],[-11,-14],[-5,-3],[-23,-18],[-50,-17],[-27,-6],[-78,14],[-33,24],[-13,9],[-10,0],[-8,-1],[-5,6],[-15,33],[-4,23],[-3,9],[-24,96],[-28,10],[-14,5],[-39,11],[2,53],[4,112],[17,-28],[8,-11],[20,-34],[12,3],[10,2],[1,-9],[2,-22],[11,-5],[5,14],[0,2],[6,17],[1,62],[1,21],[15,0],[10,0],[15,0],[35,0],[3,9],[1,1],[8,5],[11,5],[6,2],[3,2],[1,1],[2,0],[4,2],[8,2],[8,2],[3,0],[8,1],[10,1],[4,0],[18,1],[13,-1]]],"transform":{"scale":[0.0000457359735973594,0.00003231353135313564],"translate":[-84.551068,33.647808]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment