Skip to content

Instantly share code, notes, and snippets.

@shawnbot
Last active August 29, 2015 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shawnbot/69a713cc4ef753c574db to your computer and use it in GitHub Desktop.
Save shawnbot/69a713cc4ef753c574db to your computer and use it in GitHub Desktop.
Weird topology artifacts
<!DOCTYPE html>
<html lang="en">
<head>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<style>
body {
margin: 0;
padding: 1em;
}
p {
margin: 0 0 1em 0;
}
svg {
max-width: 960px;
}
path.feature {
fill: yellow;
fill-opacity: .05;
stroke: red;
}
path.mesh {
fill: none;
stroke: #69c;
}
</style>
</head>
<body>
<p>
These maps demonstrate a peculiar rendering artifact of
<a target="_top" href="https://github.com/18F/eiti-data/blob/fa02b34b9f67d72474abda8d0cc319ef7d6a09d4/output/geo/offshore.json">this
offshore US areas topology</a>. The <b style="color: red">red</b> lines
are the GeoJSON geometries extracted with <tt>topojson.feature()</tt>,
and the <b style="color: #69c">bluish</b> ones are the topological meshes
courtesy of <tt>topojson.mesh()</tt>, with a slight offset to make them
more visible. The features are also drawn with a very transparent yellow
fill to make overlaps more obvious.
</p>
<p>
As you can see, the state boundaries from
<a target="_top" href="https://github.com/18F/eiti-data/blob/gh-pages/output/geo/us-states-simple.json">this
topology</a> look great in the first map:
</p>
<svg id="onshore"></svg>
<p>
In this map, however, you can see two things: First, that all of the
features are being drawn on top of each other across the outer clip
extent of the projection. Second, you can see that the
<tt>topojson.feature()</tt> is producing polygons with rings that
coincide with <i>each</i> of the <a target="_top" href="https://github.com/mbostock/d3/wiki/Geo-Projections#albersUsa">Albers USA</a>
clip extents for the lower 48, Alaska and Hawaii:
</p>
<svg id="offshore"></svg>
</body>
<script>
var proj = d3.geo.albersUsa();
var path = d3.geo.path()
.projection(proj);
d3.json('us-states.json', function(error, onshore) {
if (error) return alert(error.responseText);
var states = render('#onshore', onshore);
d3.json('offshore.json', function(error, offshore) {
if (error) return alert(error.responseText);
var regions = render('#offshore', offshore);
var height = document.body.getBoundingClientRect().height;
d3.select(self.frameElement).style('height', ~~height + 'px');
});
});
function render(selector, collection) {
var meshes = [];
var features = [];
if (collection.type === 'Topology') {
features = Object.keys(collection.objects)
.reduce(function(features, key) {
var obj = collection.objects[key];
var feature = topojson.feature(collection, obj);
var mesh = topojson.mesh(collection, obj);
mesh.id = key;
meshes.push(mesh);
return features.concat(feature.features);
}, []);
} else {
features = collection.features;
}
var svg = d3.select(selector)
.attr('viewBox', '0 0 960 510');
svg.selectAll('path.feature')
.data(features)
.enter()
.append('path')
.attr('class', 'feature')
.attr('id', function(d) { return d.id; })
.attr('d', path);
svg.selectAll('path.mesh')
.data(meshes)
.enter()
.append('path')
.attr('class', 'mesh')
.attr('transform', 'translate(4,4)')
.attr('id', function(d) { return d.id; })
.attr('d', path);
return features;
}
</script>
</html>
Display the source blob
Display the rendered blob
Raw
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":{"states":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","id":1,"properties":{"abbr":"AL","FIPS":"01"},"arcs":[[[0,1,2,3,4]],[[5]]]},{"type":"MultiPolygon","id":2,"properties":{"abbr":"AK","FIPS":"02"},"arcs":[[[6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]]]},{"type":"Polygon","id":4,"properties":{"abbr":"AZ","FIPS":"04"},"arcs":[[66,67,68,69,70]]},{"type":"Polygon","id":5,"properties":{"abbr":"AR","FIPS":"05"},"arcs":[[71,72,73,74,75,76]]},{"type":"MultiPolygon","id":6,"properties":{"abbr":"CA","FIPS":"06"},"arcs":[[[77,-69,78,79]],[[80]],[[81]],[[82]],[[83]]]},{"type":"Polygon","id":8,"properties":{"abbr":"CO","FIPS":"08"},"arcs":[[84,85,86,87,88,89]]},{"type":"Polygon","id":9,"properties":{"abbr":"CT","FIPS":"09"},"arcs":[[90,91,92,93]]},{"type":"MultiPolygon","id":10,"properties":{"abbr":"DE","FIPS":"10"},"arcs":[[[94,-95,95]],[[96,-97,97]],[[98,99,100,101,102]]]},{"type":"Polygon","id":11,"properties":{"abbr":"DC","FIPS":"11"},"arcs":[[103,104,105]]},{"type":"MultiPolygon","id":12,"properties":{"abbr":"FL","FIPS":"12"},"arcs":[[[106,-3,107]],[[5]],[[108]]]},{"type":"MultiPolygon","id":13,"properties":{"abbr":"GA","FIPS":"13"},"arcs":[[[109,-108,-2,110,111,112]],[[113]],[[114]]]},{"type":"MultiPolygon","id":15,"properties":{"abbr":"HI","FIPS":"15"},"arcs":[[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]]]},{"type":"Polygon","id":16,"properties":{"abbr":"ID","FIPS":"16"},"arcs":[[122,123,124,125,126,127,128]]},{"type":"Polygon","id":17,"properties":{"abbr":"IL","FIPS":"17"},"arcs":[[129,130,131,132,133,134]]},{"type":"Polygon","id":18,"properties":{"abbr":"IN","FIPS":"18"},"arcs":[[135,136,-131,137,138]]},{"type":"Polygon","id":19,"properties":{"abbr":"IA","FIPS":"19"},"arcs":[[139,-134,140,141,142,143]]},{"type":"Polygon","id":20,"properties":{"abbr":"KS","FIPS":"20"},"arcs":[[144,145,-86,146]]},{"type":"MultiPolygon","id":21,"properties":{"abbr":"KY","FIPS":"21"},"arcs":[[[147,148,149,150,-132,-137,151]]]},{"type":"MultiPolygon","id":22,"properties":{"abbr":"LA","FIPS":"22"},"arcs":[[[-74,152,153,154]],[[155]]]},{"type":"MultiPolygon","id":23,"properties":{"abbr":"ME","FIPS":"23"},"arcs":[[[156,157]],[[158]]]},{"type":"MultiPolygon","id":24,"properties":{"abbr":"MD","FIPS":"24"},"arcs":[[[-103,159,160,161,-106,162,163,164]]]},{"type":"MultiPolygon","id":25,"properties":{"abbr":"MA","FIPS":"25"},"arcs":[[[165,166,167,-94,168,169,170,171]],[[172]]]},{"type":"MultiPolygon","id":26,"properties":{"abbr":"MI","FIPS":"26"},"arcs":[[[173,174]],[[175,-139,176]],[[177]],[[178]],[[179]],[[180,-181,181]],[[182,-183,183]]]},{"type":"Polygon","id":27,"properties":{"abbr":"MN","FIPS":"27"},"arcs":[[184,-144,185,186,187]]},{"type":"Polygon","id":28,"properties":{"abbr":"MS","FIPS":"28"},"arcs":[[-5,188,-153,-73,189]]},{"type":"Polygon","id":29,"properties":{"abbr":"MO","FIPS":"29"},"arcs":[[-151,190,191,192,-77,193,-145,194,-141,-133]]},{"type":"Polygon","id":30,"properties":{"abbr":"MT","FIPS":"30"},"arcs":[[195,196,197,-129,198]]},{"type":"Polygon","id":31,"properties":{"abbr":"NE","FIPS":"31"},"arcs":[[199,-142,-195,-147,-85,200]]},{"type":"Polygon","id":32,"properties":{"abbr":"NV","FIPS":"32"},"arcs":[[-125,201,-70,-78,202]]},{"type":"Polygon","id":33,"properties":{"abbr":"NH","FIPS":"33"},"arcs":[[203,-171,204,205,-157]]},{"type":"Polygon","id":34,"properties":{"abbr":"NJ","FIPS":"34"},"arcs":[[206,94,207,96,208,209,210]]},{"type":"Polygon","id":35,"properties":{"abbr":"NM","FIPS":"35"},"arcs":[[211,212,213,-67,-88]]},{"type":"MultiPolygon","id":36,"properties":{"abbr":"NY","FIPS":"36"},"arcs":[[[-169,-93,214,-211,215,216,217]],[[218]]]},{"type":"MultiPolygon","id":37,"properties":{"abbr":"NC","FIPS":"37"},"arcs":[[[219,220,221,222,-112,223,224]],[[225,226]],[[227,228,229,230]]]},{"type":"Polygon","id":38,"properties":{"abbr":"ND","FIPS":"38"},"arcs":[[-187,231,-196,232]]},{"type":"Polygon","id":39,"properties":{"abbr":"OH","FIPS":"39"},"arcs":[[233,-152,-136,-176,234,182,235,-181,236,237]]},{"type":"Polygon","id":40,"properties":{"abbr":"OK","FIPS":"40"},"arcs":[[-194,-76,238,-212,-87,-146]]},{"type":"Polygon","id":41,"properties":{"abbr":"OR","FIPS":"41"},"arcs":[[-126,-203,-80,239,240]]},{"type":"Polygon","id":42,"properties":{"abbr":"PA","FIPS":"42"},"arcs":[[-210,241,-99,-165,242,-238,243,-216]]},{"type":"MultiPolygon","id":44,"properties":{"abbr":"RI","FIPS":"44"},"arcs":[[[244,-91,-168]],[[245,-166]]]},{"type":"MultiPolygon","id":45,"properties":{"abbr":"SC","FIPS":"45"},"arcs":[[[246,-113,-223]],[[247]],[[248]]]},{"type":"Polygon","id":46,"properties":{"abbr":"SD","FIPS":"46"},"arcs":[[-186,-143,-200,249,-197,-232]]},{"type":"Polygon","id":47,"properties":{"abbr":"TN","FIPS":"47"},"arcs":[[250,-224,-111,-1,-190,-72,-193,-192,-191,-150]]},{"type":"MultiPolygon","id":48,"properties":{"abbr":"TX","FIPS":"48"},"arcs":[[[-239,-75,-155,251,-213]],[[252]]]},{"type":"Polygon","id":49,"properties":{"abbr":"UT","FIPS":"49"},"arcs":[[253,-89,-71,-202,-124]]},{"type":"Polygon","id":50,"properties":{"abbr":"VT","FIPS":"50"},"arcs":[[-205,-170,-218,254]]},{"type":"MultiPolygon","id":51,"properties":{"abbr":"VA","FIPS":"51"},"arcs":[[[-163,-105,255,-226,256,230,257,-225,-251,-149,258]],[[-161,259]],[[228,260]]]},{"type":"MultiPolygon","id":53,"properties":{"abbr":"WA","FIPS":"53"},"arcs":[[[-127,-241,261]],[[262]],[[263]]]},{"type":"Polygon","id":54,"properties":{"abbr":"WV","FIPS":"54"},"arcs":[[-164,-259,-148,-234,-243]]},{"type":"MultiPolygon","id":55,"properties":{"abbr":"WI","FIPS":"55"},"arcs":[[[264,-135,-140,-185,265,-175]]]},{"type":"Polygon","id":56,"properties":{"abbr":"WY","FIPS":"56"},"arcs":[[-250,-201,-90,-254,-123,-198]]}]}},"arcs":[[[2528,3065],[38,0],[34,-1]],[[2600,3064],[3,-89],[3,-118],[2,-47],[5,-173],[4,-45],[0,-35],[3,-12],[-5,-26],[-2,-52],[3,-65],[-2,-67],[3,-31]],[[2617,2304],[-13,-1],[-59,0],[-1,-26],[6,-36],[-1,-36]],[[2549,2205],[2,-7],[-5,-33],[-5,3],[-5,23],[-1,57],[-2,15],[-2,-78],[-8,2]],[[2523,2187],[-1,139],[-2,148],[2,63],[3,203],[2,87],[4,218],[-3,20]],[[2547,2165],[0,0]],[[9969,6241],[8,-12],[8,-36],[-16,48]],[[22,6294],[12,-20],[-8,-10],[-9,17],[5,13]],[[46,6253],[-14,2],[12,12],[2,28],[5,-6],[-5,-36]],[[64,6309],[-1,-32],[3,-19],[-12,-27],[0,42],[5,-4],[-3,26],[8,14]],[[9996,6313],[0,-29],[-5,22],[5,7]],[[9939,6335],[-2,-43],[-10,-4],[8,18],[4,29]],[[149,6338],[5,-13],[-14,-8],[-5,11],[14,10]],[[179,6382],[3,-11],[-8,-14],[5,25]],[[132,6389],[3,-19],[-5,-24],[3,-11],[-18,-25],[-14,0],[17,21],[10,29],[4,29]],[[9831,6407],[0,-29],[-11,8],[11,21]],[[229,6443],[2,-20],[-7,-11],[5,31]],[[253,6479],[2,-21],[-7,14],[5,7]],[[9806,6500],[7,-2],[5,-25],[-10,-22],[-3,26],[-10,7],[11,16]],[[273,6468],[8,47],[4,37],[8,1],[-1,27],[11,27],[5,-9],[-1,-25],[-12,-26],[-5,-36],[-17,-43]],[[340,6693],[2,-33],[5,28],[5,-21],[-1,-35],[-7,-8],[-4,-29],[-3,3],[-20,-36],[-3,-14],[-7,11],[10,25],[12,14],[-4,18],[5,19],[-3,30],[3,17],[10,11]],[[361,6732],[6,-17],[-10,-16],[4,33]],[[372,6747],[-1,-36],[-4,24],[5,12]],[[421,6891],[7,0],[5,-58],[-7,-25],[-15,0],[-7,-29],[-8,-14],[-5,6],[-2,34],[5,11],[7,53],[7,-6],[13,28]],[[529,6931],[0,-32],[-7,-21],[0,34],[5,-7],[2,26]],[[506,6959],[6,-53],[-10,14],[4,39]],[[556,7238],[8,-22],[-1,41],[10,61],[17,53],[3,98],[5,18],[-5,29],[3,29],[12,47],[0,44],[-3,-18],[-27,-47],[-12,36],[2,36],[-12,-44],[5,-54],[-8,-7],[-10,61],[-9,29],[-5,-27],[-10,23],[-3,30],[-14,-35],[-13,-26],[-12,-33],[-12,18],[12,29],[-2,33],[7,25],[-9,-8],[-3,30],[2,29],[7,24],[-6,25],[-15,128],[-2,-52],[-20,-36],[-15,-10],[-10,8],[0,27],[-7,19],[-8,44],[17,86],[8,0],[0,-33],[10,27],[-20,29],[-12,-5],[-1,15],[-16,-1],[6,19],[-12,33],[-5,-20],[-2,34],[-5,7],[2,33],[-10,3],[-2,26],[12,9],[-10,26],[13,5],[-3,32],[1,25],[17,76],[7,0],[8,40],[9,-10],[10,-41],[-7,79],[8,5],[9,36],[12,-8],[13,40],[9,51],[3,-22],[30,14],[10,51],[-6,89],[-14,52],[10,-3],[9,22],[-4,41],[-6,18],[-7,-27],[-8,0],[-24,-47],[-7,-40],[-2,33],[-10,29],[-3,-12],[7,-33],[-14,30],[-20,-1],[-22,-24],[-32,28],[-8,29],[3,29],[-13,48],[5,-5],[10,32],[8,-9],[7,-30],[10,11],[-13,4],[-7,25],[-34,22],[-20,33],[22,61],[3,-11],[14,46],[12,16],[6,-9],[15,8],[-10,17],[12,30],[12,-1],[8,29],[24,8],[0,-90],[7,-11],[25,8],[8,-15],[10,10],[7,-21],[10,57],[14,-4],[-5,19],[-15,11],[-7,-14],[1,33],[-8,36],[-9,7],[-3,25],[7,17],[10,-31],[-2,-26],[14,-39],[10,18],[12,-33],[15,4],[-2,40],[-23,9],[-9,-23],[-12,36],[2,32],[10,15],[-10,18],[-22,-12],[-32,26],[-3,56],[-7,37],[-35,80],[-17,21],[-17,43],[10,40],[0,58],[24,-4],[30,12],[22,42],[10,45],[7,60],[-4,7],[15,59],[16,48],[5,-16],[28,32],[14,36],[10,5],[-3,-39],[8,20],[-12,25],[14,33],[13,-7],[32,15],[15,22],[24,75],[30,-35],[-5,-34],[-12,-14],[2,-17],[12,-1],[13,55],[17,-22],[-2,-19],[14,-22],[7,20],[22,9],[25,-18],[-7,-42],[20,-11],[-5,-23],[34,4],[0,-25],[24,36],[18,-4],[20,-32],[10,4],[10,-22],[19,-17],[35,5],[16,-34],[21,6],[34,19],[15,-14],[14,-37],[13,-11],[10,-30],[12,1],[0,-1781],[13,-16],[2,16],[13,-23],[7,29],[19,4],[-4,-51],[14,-35],[2,-26],[28,-101],[3,-64],[19,49],[7,0],[6,83],[12,12],[12,26],[13,-45],[-3,-25],[5,-29],[7,-6],[7,-22],[6,-51],[10,-26],[14,-57],[-2,-8],[17,-105],[7,-65],[10,-54],[-3,-22],[8,-10],[-2,-33],[7,-13],[0,-38],[8,1],[14,-40],[18,-29],[1,-21],[8,-3],[3,-41],[-5,-26],[5,-93],[-10,-69],[-8,-29],[-2,21],[-5,-14],[-5,74],[5,23],[0,77],[-9,51],[-6,4],[-8,-25],[-6,-71],[-7,16],[-1,29],[8,43],[0,51],[-1,24],[-10,33],[1,28],[-13,30],[-4,36],[-17,29],[2,76],[-6,11],[3,48],[-5,-16],[-9,58],[0,33],[-5,-14],[-8,29],[-5,3],[-7,55],[0,47],[-2,-33],[-3,21],[-6,95],[-1,-70],[7,-68],[2,-73],[-7,0],[-8,37],[-9,-8],[2,21],[-7,62],[10,12],[-8,6],[-5,-31],[-19,40],[7,-36],[12,-30],[5,-44],[-14,-15],[-1,-17],[-7,29],[-7,3],[-15,41],[-17,83],[-8,14],[-37,83],[10,32],[-5,36],[-18,-39],[-16,7],[-17,29],[7,21],[-10,-6],[-27,24],[-27,-7],[-10,-11],[-10,29],[-20,27],[5,60],[-16,-51],[-11,26],[-5,-4],[8,40],[-10,-8],[2,18],[-14,-5],[-8,9],[5,15],[-5,18],[4,40],[-11,-35],[-25,-22],[-8,49],[-7,-86],[3,25],[10,-65],[-10,-29],[5,-11],[-10,-50],[-5,-4],[-20,14],[-10,-62],[-5,9],[-4,-26],[-20,-29],[-7,-42],[-10,9],[-10,-18],[-7,18],[2,27],[12,13],[15,62],[-15,-29],[-10,25],[3,50],[9,34],[5,64],[-4,33],[9,14],[18,47],[10,-25],[7,11],[20,-17],[-18,27],[-9,26],[7,30],[12,28],[-7,6],[-10,-47],[-17,8],[-10,-18],[-5,-26],[-10,-9],[-10,-52],[-12,-43],[-7,-54],[-12,3],[11,-32],[-7,-37],[-12,-3],[7,-11],[-7,-32],[-5,10],[-5,-27],[-7,-1],[4,-21],[-12,-18],[-2,-33],[2,-29],[13,11],[9,-29],[-2,-40],[-13,-19],[-5,-24],[1,-25],[-8,-37],[-5,3],[-7,-32],[-7,4],[-1,-23],[-10,-32],[-7,8],[-2,-44],[-8,4],[-14,-47],[5,-3],[0,-29],[-7,-33],[-4,11],[-14,-54],[-5,19],[-7,-48],[-3,13],[-10,-28],[8,5],[0,-16],[-13,3],[-10,-43],[6,15],[7,-11],[-8,-58],[-11,8],[-1,-18],[-17,-8],[-2,-47],[-1,36],[-9,-3],[-1,-18],[-10,-19],[-6,-28],[-10,11],[-3,-17],[-14,-15],[4,45],[-5,5],[-10,-94],[-7,4],[-2,-25],[-7,6],[-1,39],[-2,-16],[2,-41],[-10,0],[-9,33],[0,-19],[5,-16],[-8,-26],[3,68],[9,4],[3,24],[7,12],[0,18],[8,43],[12,37],[27,21],[-5,-19],[10,-39],[-2,36],[14,-22],[0,12],[-10,32],[7,54],[15,50],[13,23],[12,39]],[[1312,6961],[3,-19],[-1,-36],[-4,36],[2,19]],[[1327,7062],[5,-23],[3,-39],[-3,-69],[-4,-14],[-16,50],[5,29],[-3,25],[4,32],[9,9]],[[507,7607],[-5,-44],[-7,-6],[2,29],[10,21]],[[714,7301],[10,-15],[-15,-3],[5,18]],[[709,7447],[7,-32],[-8,15],[1,17]],[[714,7452],[25,-33],[-3,-43],[9,4],[-6,-37],[-11,17],[3,-20],[-2,-25],[-15,-9],[-18,-88],[-7,-4],[8,42],[-3,29],[-15,1],[3,-15],[9,14],[-6,-40],[-6,16],[-2,39],[-5,18],[0,25],[10,41],[10,2],[7,-65],[-5,81],[7,31],[15,-21],[-2,40]],[[716,7473],[6,-24],[-13,16],[7,8]],[[741,7534],[5,-50],[-20,-18],[-10,8],[5,17],[-2,21],[7,-5],[0,24],[15,3]],[[731,7563],[8,11],[-3,-31],[-5,20]],[[1231,7496],[0,-12],[13,-7],[10,-61],[-3,-22],[-7,72],[-3,-14],[12,-73],[1,-43],[-3,-15],[-5,16],[0,-34],[-12,-36],[0,47],[4,25],[-7,62],[0,21],[-7,109],[7,-35]],[[1236,7520],[8,-26],[-11,7],[3,19]],[[1222,7212],[-9,15],[-1,25],[5,16],[-5,13],[1,29],[-9,20],[3,30],[7,5],[12,-51],[8,-120],[-3,-90],[-12,83],[3,25]],[[1295,7137],[0,-22],[9,-24],[-1,-27],[-6,-9],[-2,21],[-7,7],[-1,30],[8,24]],[[1287,7159],[1,-35],[-7,-8],[-4,20],[1,19],[9,4]],[[1301,7106],[-4,20],[-2,40],[13,-55],[-7,-5]],[[1281,7227],[10,-43],[-11,-15],[1,58]],[[1254,7214],[4,6],[-7,-100],[-2,11],[-3,-59],[-3,50],[5,52],[-7,3],[-1,58],[4,14],[10,-35]],[[1254,7281],[13,-17],[9,-1],[5,-65],[-3,-10],[-8,51],[1,-45],[5,-5],[-3,-31],[-12,-3],[-1,69],[-10,44],[4,13]],[[1204,7462],[0,-14],[10,29],[10,-15],[0,-46],[-11,-1],[4,-18],[7,11],[3,-54],[-6,-3],[-22,58],[8,-34],[0,-25],[-4,-18],[-19,90],[0,45],[15,40],[10,-22],[-5,-23]],[[1180,7472],[6,-17],[-4,-31],[-2,48]],[[1202,7328],[4,-22],[0,-41],[-7,-4],[0,67],[3,0]],[[393,8367],[8,-5],[-10,-28],[2,33]],[[401,8413],[10,-23],[5,-60],[-8,25],[-17,15],[5,43],[5,0]],[[413,8457],[15,-27],[-12,-42],[-5,0],[-12,32],[5,32],[9,5]],[[354,7917],[2,-21],[11,-6],[-1,-45],[5,-24],[-14,-12],[-5,-22],[-32,62],[2,32],[13,-7],[0,14],[19,29]],[[165,7950],[2,-18],[17,-37],[-10,1],[-12,35],[3,19]],[[389,8011],[7,-20],[12,-8],[0,-19],[-9,-25],[-5,-47],[-20,48],[14,31],[1,40]],[[884,7900],[2,-15],[-12,-61],[2,-14],[-14,-15],[2,14],[13,44],[7,47]],[[901,7928],[12,-20],[-17,-19],[5,39]],[[862,7885],[4,33],[6,-3],[-5,-51],[-5,21]],[[921,7947],[-10,-26],[-3,12],[13,14]],[[201,8557],[1,-21],[17,-22],[15,26],[9,-18],[3,-22],[14,-25],[23,-11],[-5,-29],[-12,7],[-10,-28],[-6,21],[-11,7],[2,18],[-18,35],[-17,-29],[-10,34],[5,57]],[[1327,6881],[-2,-28],[-5,16],[7,12]],[[1283,6917],[5,-30],[-7,1],[2,29]],[[1276,6927],[2,-38],[9,-54],[-4,-12],[-12,77],[5,27]],[[1320,6928],[4,-44],[-7,4],[3,40]],[[1268,6947],[5,-15],[-6,-11],[1,26]],[[1267,7104],[1,-25],[-12,-18],[5,32],[6,11]],[[1261,7141],[12,-7],[3,-43],[7,-15],[10,-46],[8,-63],[-8,22],[4,-33],[8,-21],[3,-86],[-3,-25],[-5,7],[-5,45],[-5,0],[1,26],[-11,29],[-7,4],[4,65],[-9,0],[7,36],[-4,14],[0,54],[-8,2],[-2,35]],[[1947,3448],[0,-1081]],[[1947,2367],[-57,0],[-63,134],[-41,87],[3,43]],[[1789,2631],[5,8],[1,29],[-1,21],[-5,13],[1,34],[-2,27],[6,27],[0,72],[3,31],[8,40],[-6,29],[-9,80],[0,25]],[[1790,3067],[3,31],[-3,66],[-2,110],[10,11],[6,-23],[2,31],[0,155]],[[1806,3448],[42,0],[72,0],[27,0]],[[2486,3257],[2,-19],[-5,-28],[-4,-4],[3,-19],[-8,-37],[2,-57],[-7,-28]],[[2469,3065],[0,-25],[-5,0],[1,-35],[-3,-7],[0,-43],[-5,-9],[-6,-47],[2,-18],[-6,-12],[2,-39],[-5,-18],[-1,-43],[3,7],[1,-80],[-2,-10]],[[2445,2686],[-43,1],[-37,2]],[[2365,2689],[0,101],[-10,-1],[-2,18]],[[2353,2807],[0,166],[1,41],[0,129],[-1,68],[-4,142]],[[2349,3353],[29,0],[68,-2],[27,2],[3,-39],[-9,-57],[19,0]],[[1640,4401],[0,-571],[62,-293],[17,-94],[44,-221],[27,-155]],[[1789,2631],[-67,-36],[0,27],[-4,9],[-2,76],[-5,44],[-8,38],[-12,43],[-5,-5],[-4,56],[-7,-8],[-13,29],[-1,23],[-8,28],[-13,9],[-12,-2],[-5,25],[2,24],[-2,36],[0,47],[-7,21],[1,35],[-4,5],[-7,39],[-9,68],[-4,32],[-5,22],[-2,52],[5,18],[0,35],[-5,23],[-3,-4],[-9,46],[0,31],[-3,30],[3,56],[2,-43],[5,-23],[0,38],[-5,25],[-1,32],[3,17],[15,-6],[-9,22],[-3,-18],[-7,21],[-3,-9],[0,-55],[-10,39],[-5,-3],[3,29],[2,-15],[-7,71],[-6,22],[-5,39],[-6,27],[2,22],[-5,61],[2,58],[-2,35],[-7,51],[-7,30],[-3,35],[5,48],[2,-2],[3,65],[-3,9],[4,75],[-6,59],[2,43]],[[1524,4402],[10,-1],[44,3],[39,-3],[23,0]],[[1640,2883],[2,-19],[-4,-9],[-3,22],[5,6]],[[1644,2890],[10,-15],[-9,-5],[-1,20]],[[1681,2691],[6,-36],[-5,2],[-1,34]],[[1680,2776],[7,-13],[-3,-16],[-4,29]],[[2086,4211],[56,0],[0,-190]],[[2142,4021],[0,-574]],[[2142,3447],[-27,1]],[[2115,3448],[-60,-1],[-37,0],[-71,1]],[[1947,3448],[0,220],[-1,66],[1,166],[0,311]],[[1947,4211],[76,0],[38,0],[25,0]],[[2985,4404],[1,-79],[-2,-51]],[[2984,4274],[-9,-2],[-10,-12],[-11,1],[-14,-39],[-7,-12]],[[2933,4210],[-2,19],[7,23],[-1,29],[1,130]],[[2938,4411],[39,-3],[8,-4]],[[2881,3925],[0,0]],[[2881,3925],[0,0]],[[2880,3946],[0,4]],[[2880,3946],[0,0]],[[2874,3968],[5,22],[5,-7]],[[2884,3983],[-5,-36],[1,-29],[5,-40],[0,-37],[6,-50],[4,-66]],[[2895,3725],[-1,0]],[[2894,3725],[0,0]],[[2894,3725],[-17,1],[-1,20],[-2,222]],[[2840,3793],[-2,19]],[[2838,3812],[-1,5]],[[2837,3817],[6,-8],[-3,-16]],[[2712,2250],[5,-3],[-1,-55],[-5,-4],[-4,-52],[5,-30],[1,-37],[-4,-63],[4,-47],[1,20],[-4,25],[1,52],[3,11],[-1,40],[-3,17],[2,63],[4,-6],[6,-133],[4,-60],[9,-107],[6,-38],[-4,-39],[-1,61],[-3,18],[1,-47],[4,-68],[8,-102],[4,-75],[5,-62],[0,-118],[-2,-81],[-5,-51],[0,-50],[-3,-25],[-8,-15],[-11,-7],[-1,43],[5,-27],[-1,28],[-4,0],[-6,86],[-7,17],[-6,38],[-2,71],[-4,13],[-2,73],[-1,-22],[-5,10],[-4,40],[-3,62],[-3,18],[8,65],[-7,38],[0,-60],[-6,29],[2,60],[3,50],[1,49],[-1,42],[-4,47],[-7,4],[-9,70],[0,24],[-4,10],[-3,31],[-10,40],[-10,-6],[0,-30],[-5,1],[-10,-34],[-12,-9],[1,22],[-11,61],[-9,27],[-11,22],[8,3],[-9,22],[-4,-20],[-17,-10],[4,19],[-3,25],[0,-28],[-8,-24],[3,22],[-3,11]],[[2617,2304],[4,-56],[74,-27],[1,-39],[3,0],[2,39],[-2,17],[4,33],[9,-21]],[[2717,2161],[0,28],[3,-86],[-3,58]],[[2725,2516],[3,-6],[1,-42],[-4,13],[-2,-67],[-4,-7],[0,-34],[-3,-35],[1,-27],[-2,-59],[-3,-2]],[[2600,3064],[36,1]],[[2636,3065],[34,2]],[[2670,3067],[-7,-54],[9,-44],[5,-6],[3,-47],[5,-48],[6,-23],[3,-28],[9,-43],[-1,-18],[6,-45],[6,-18],[4,-85],[3,-7],[4,-42],[0,-43]],[[2719,2362],[2,-17],[-3,-16],[1,33]],[[2717,2291],[-2,-38],[-1,28],[3,10]],[[608,430],[10,-5],[-5,-21],[-5,12],[-7,0],[2,23],[5,-9]],[[642,257],[6,-30],[9,-19],[5,-31],[0,-22],[8,-42],[-5,-32],[-8,-16],[-7,-26],[-3,-39],[-7,21],[0,59],[-5,73],[8,58],[-1,46]],[[543,629],[1,-7],[0,-42],[-2,-19],[-6,10],[-4,28],[5,30],[6,0]],[[524,586],[-4,-42],[-1,20],[5,22]],[[610,383],[5,-23],[-4,-15],[-3,33],[2,5]],[[620,402],[3,-26],[5,9],[10,-29],[-3,-27],[-7,-12],[-3,3],[0,34],[-5,6],[-2,38],[2,4]],[[581,532],[10,-80],[-3,-7],[-4,14],[-6,-7],[-4,53],[4,2],[3,25]],[[1891,4874],[0,-472]],[[1891,4402],[-32,0],[-53,-1]],[[1806,4401],[-26,0],[-56,1]],[[1724,4402],[0,351],[4,60],[-9,28],[0,35],[5,50],[6,36],[6,109],[4,21],[-2,26],[-7,20],[-5,26]],[[1726,5164],[-2,82],[0,490]],[[1724,5736],[27,0]],[[1751,5736],[0,-194],[11,-74],[-1,-32],[10,-30],[6,-32],[5,-45],[8,-23],[2,-20],[7,5],[-4,-73],[2,-82],[-4,-15],[6,-59],[11,45],[4,-18],[2,-65],[8,-40],[0,-36],[8,-18],[4,-60],[6,-16],[1,22],[10,-7],[3,23],[13,-11],[9,5],[4,40],[9,-52]],[[2539,4496],[-1,-36],[9,-114]],[[2547,4346],[0,-450],[-3,-36],[4,-80],[-8,-54],[1,-8],[-7,-35],[2,-14],[-5,-51],[2,-18]],[[2533,3600],[-4,-25],[3,-30],[-12,-23],[-1,-24],[3,-21],[-2,-16],[-12,30],[-5,-12],[-1,-35]],[[2502,3444],[-7,11],[-3,40],[2,29],[-3,54],[-9,43],[-10,35],[-4,27],[0,29],[7,90],[-10,22],[-3,-19],[-3,12],[-1,56],[-17,86],[-5,69],[2,65]],[[2438,4093],[2,42],[7,18],[0,25],[4,18],[-1,45],[-3,16],[2,33],[10,9],[9,24],[1,27],[5,38],[-1,36],[-6,21],[-2,30],[-5,24]],[[2460,4499],[47,-3],[32,0]],[[2623,4344],[0,-264],[-1,-58],[0,-173]],[[2622,3849],[0,-61],[-10,-18],[-7,3],[0,-34],[-13,-67],[-1,-32],[-7,0],[-4,34],[-4,-13],[-1,-36],[-4,-16],[-4,30],[-5,-14],[-3,-25],[-14,34],[-9,-14],[-3,-20]],[[2547,4346],[8,-16],[11,25]],[[2566,4355],[56,0],[1,-11]],[[2444,4688],[0,-29],[4,-18],[-3,-33],[3,-62],[10,-24],[2,-23]],[[2438,4093],[-8,42],[-46,-4],[-31,-2],[-36,2]],[[2317,4131],[-3,32],[2,30],[-3,54],[1,25],[-3,36],[-3,4],[1,51],[-2,34],[-4,14],[-5,84]],[[2298,4495],[-5,41],[3,65],[-2,87],[4,0]],[[2298,4688],[30,0],[52,0],[64,0]],[[2330,4021],[6,-27],[6,-8],[-6,-54],[6,-32],[-1,-13],[8,-27],[0,-412]],[[2349,3448],[-53,0],[-44,0],[-40,0],[-70,-1]],[[2142,4021],[36,0],[56,0],[38,0],[58,0]],[[2684,3719],[-1,-54],[14,-112],[5,-2]],[[2702,3551],[-10,-46],[-11,-35],[-5,-42],[-5,-7],[-2,-23],[-15,-26]],[[2654,3372],[-16,-3],[-28,7],[-20,0],[-12,6],[-36,-3],[-10,8],[0,-36],[-38,2]],[[2494,3353],[3,25],[4,4],[1,62]],[[2622,3849],[2,9],[12,-24],[3,-37],[9,-11],[5,-25],[6,12],[10,-16],[7,26],[2,-35],[6,-29]],[[2445,2686],[3,-23],[-2,-46],[3,-13],[-2,-23],[5,-22],[-7,-40],[3,-21],[-8,-33],[-1,-43],[-3,-17],[0,-48],[-4,-6],[0,-47],[53,0],[-3,-65],[4,-38],[2,-45],[3,-9]],[[2491,2147],[-9,-33],[7,-25],[4,36],[1,-31],[3,-6],[-4,-22],[-6,0],[3,-19],[-5,-9],[2,-19],[12,-40],[4,-40],[-5,-5],[-1,30],[-4,-7],[-1,27],[-8,11],[-10,32],[-3,-6],[5,-17],[0,-42],[-4,-23],[-4,42],[-7,1],[-3,-36],[-7,8],[4,12],[-4,20],[-3,-29],[-5,49],[-4,22],[-4,-7],[-3,43],[-6,-2],[-3,18],[-6,-24],[2,-16],[-5,-16],[-9,9],[-16,36],[-16,-7],[-2,-9]],[[2371,2053],[-3,23],[6,47],[-1,67],[4,51],[3,68],[-1,30],[-4,21],[-3,78],[-6,52],[-1,42],[0,157]],[[2425,2042],[5,-14],[-4,-15],[-5,17],[4,12]],[[3012,4618],[1,18],[-5,29],[0,77],[-3,291]],[[3005,5033],[7,-6],[0,24],[6,-4],[-3,24],[10,43],[3,29],[-1,58],[7,43],[1,54],[22,145],[5,-7],[0,-33],[4,-14],[15,22],[4,13],[12,-55],[0,-266],[10,-18],[-2,-57],[4,-30],[5,7],[6,-68],[-6,-30],[-9,-2],[-6,-28],[-2,22],[-3,-40],[-3,20],[-16,-18],[2,-34],[-9,34],[-6,-30],[-1,-38],[-4,-23],[-4,28],[-4,-45],[-4,3],[-6,-29],[0,36],[-8,-18],[-5,-50],[-6,-40],[-3,-49],[-5,12]],[[3083,4867],[3,-13],[-4,-29],[-3,18],[4,24]],[[2894,3725],[-2,-39],[-7,-45]],[[2885,3641],[-6,-3]],[[2879,3638],[-8,-14],[0,59],[-8,17],[-4,30],[2,25],[6,-5],[-8,31],[4,2],[-1,57],[-2,18],[9,78],[-13,-67],[-3,0],[4,-38],[-4,-45],[1,-45],[3,-29],[-2,-12],[4,-35],[-11,28],[-6,1],[-3,29],[-5,-15],[-1,22],[7,63]],[[2837,3817],[-10,27],[0,27],[-7,20]],[[2820,3891],[-4,44],[-9,28],[-7,-16],[-1,-19],[-9,18],[-5,-34],[-2,9],[-12,-52],[0,98]],[[2771,3967],[56,0],[47,1]],[[3004,4305],[-2,35]],[[3002,4340],[-1,7]],[[3001,4347],[-4,52],[-12,5]],[[2938,4411],[6,132]],[[2944,4543],[23,-2]],[[2967,4541],[32,-6],[8,30],[6,3]],[[3013,4568],[1,-32],[5,-12],[-8,-19],[-5,-28],[0,-21],[8,-8],[4,-29],[-2,-17],[4,-36],[8,-16],[7,15],[-3,47],[4,-22],[-1,-51],[-11,-9],[-7,-18],[1,42],[-3,-2],[-5,-38],[-6,-9]],[[3019,4298],[3,-20],[-7,-3],[4,23]],[[2466,5273],[11,21],[7,26],[10,6],[8,29],[6,7],[8,37],[5,-55],[0,-36],[6,34],[12,-7],[13,-76],[9,7],[11,-22],[4,27],[9,22],[19,2],[14,17],[-2,-54],[13,-14],[7,17],[7,-78],[5,-22],[-9,0],[-12,14],[-3,-41],[-7,31],[-12,18],[-6,-24],[-18,-9],[-2,-26],[-9,-26],[4,38],[-6,2],[-3,-28],[-5,6],[-6,-38],[-10,-84]],[[2544,4994],[-3,18],[2,26],[-6,4],[3,61],[-10,28],[0,19],[-11,18],[-5,0],[-11,22],[-29,39],[-3,33],[-5,11]],[[2659,4351],[-36,-7]],[[2566,4355],[6,27],[10,100],[1,65],[-1,68],[-8,103],[3,31],[-2,42],[7,63],[1,64],[4,36],[8,11],[5,44],[1,-23],[-2,-56],[6,18],[2,79],[9,29],[-2,27],[5,30],[6,12],[7,-26],[7,-5],[3,-23],[17,-29],[5,-58],[-3,-23],[4,-42],[-2,-72],[-4,-11],[-2,-43],[-8,-11],[-1,-60],[5,-17],[7,26],[6,47],[9,18],[5,-14],[3,-30],[6,-164],[-3,-66],[-5,10],[-3,-12],[-2,-45],[-5,-13],[-4,-53],[-8,-58]],[[2519,5410],[8,31],[11,5],[4,-14],[-7,-11],[-8,-27],[-5,-42],[-1,22],[-5,6],[3,30]],[[2515,5572],[7,11],[-8,-36],[-13,-34],[-1,17],[15,42]],[[2657,5150],[-8,8],[8,24],[0,-32]],[[2660,4351],[0,0]],[[2660,4351],[0,0]],[[2660,4351],[0,0]],[[2660,4351],[0,0]],[[2416,5291],[-2,0],[0,-96],[-2,-27],[-10,-23],[-5,-49],[7,-38],[-3,-27],[-1,-105],[7,-34],[16,-40],[3,-32],[12,-39],[4,-28],[2,-65]],[[2298,4688],[0,338],[-7,27],[-4,45],[5,19],[3,36]],[[2295,5153],[-1,75],[-6,56],[1,58],[-2,14],[0,94],[-8,130],[-1,69],[2,29],[-4,58]],[[2276,5736],[58,0],[0,75],[9,-18],[4,-79],[3,-31],[20,-16],[2,-22],[9,6],[7,18],[14,-20],[6,-18],[4,-42],[3,24],[5,2],[14,-60],[9,7],[10,31],[4,-28],[17,3],[7,-24],[9,0],[-12,-30],[-21,-39],[-8,-30],[-12,-65],[-18,-65],[-3,-24]],[[2523,2187],[-10,-7],[-4,14],[-11,-23],[-7,-24]],[[2469,3065],[59,0]],[[2494,3353],[-2,0]],[[2492,3353],[-1,0]],[[2491,3353],[0,-47],[-5,0],[3,-24],[-3,-25]],[[2349,3353],[0,95]],[[2330,4021],[-9,59],[-4,51]],[[2086,5736],[0,-582]],[[2086,5154],[0,-181]],[[2086,4973],[-62,0],[-65,0],[-58,0],[-10,2],[0,-101]],[[1751,5736],[55,0],[53,0],[40,0],[70,0],[60,0],[57,0]],[[2086,4594],[35,-1],[44,-1],[55,0],[21,1],[13,-46],[4,18],[16,3],[17,-43],[2,-23],[5,-7]],[[2086,4211],[0,383]],[[1806,4401],[0,-953]],[[1640,4401],[52,0],[32,1]],[[3012,4618],[4,-17],[-3,-33]],[[2967,4541],[-3,24],[3,29],[2,108],[5,38],[5,73],[0,32],[5,5],[9,44],[-3,32],[4,51]],[[2994,4977],[3,47],[8,9]],[[2927,4211],[-5,-65],[-3,6],[-3,-39],[8,-14],[1,-20],[-4,-94],[-2,-21],[-7,-28],[0,-37],[-6,-14],[-4,-55],[-5,-13],[1,47],[-7,10],[-10,51]],[[2881,3925],[-1,21]],[[2880,3950],[4,29],[8,18],[2,22]],[[2894,4019],[10,29],[-10,53],[-3,32],[0,36],[4,18],[-2,18],[7,59],[4,15]],[[2904,4279],[23,-68]],[[2115,3448],[0,-95]],[[2115,3353],[-1,0],[0,-859],[-52,0],[-49,0],[4,-41]],[[2017,2453],[-47,0],[0,-86],[-23,0]],[[2933,4210],[-9,-57],[4,72],[-4,47],[3,-61]],[[2904,4279],[-8,24],[-1,52],[-9,47],[-45,0],[-54,-1],[-24,1],[0,51]],[[2763,4453],[18,58],[2,23],[6,18],[-1,45],[-5,11],[0,35],[16,21],[20,-6],[5,-19],[16,4],[8,15],[9,35],[5,1],[0,55],[3,15],[-8,41],[2,16],[13,39],[16,84],[9,27],[45,5]],[[2942,4976],[-1,-75],[3,-36],[-4,-73],[2,-57],[-2,-19],[5,-18],[-1,-155]],[[2930,4139],[-7,-2],[3,34],[12,25],[24,11],[9,31],[-8,-43],[12,25],[2,-10],[-15,-39],[-17,-14],[-14,-23],[-1,5]],[[2867,3363],[1,-27],[6,-65],[-12,57],[4,-43],[-12,-27],[-5,12],[0,-28],[17,14],[1,-58],[1,37],[7,0],[1,-49],[-5,-9],[-7,-47],[-7,18],[-2,-11],[-14,22],[0,-9],[13,-24],[-1,-32],[-7,-34],[-7,26],[4,-28],[17,0],[-6,-44],[-3,17],[-2,-18],[-12,-2],[-6,-36],[-11,-44],[-4,-27],[-4,-49],[-4,4],[-11,-8]],[[2797,2851],[-1,1]],[[2796,2852],[0,0]],[[2796,2852],[-24,143],[-7,34],[-31,3],[1,22],[-7,40],[-33,10],[-10,-10],[-15,-27]],[[2636,3065],[1,40],[7,18],[0,21],[7,29],[8,0],[12,44],[5,29],[7,24],[1,-19],[11,35],[4,-10],[4,35],[5,21],[2,37]],[[2710,3369],[45,-8],[35,0],[53,0],[24,2]],[[2871,3363],[1,0]],[[2872,3363],[2,-61],[6,-71],[-5,35],[-4,97]],[[2868,3363],[2,0]],[[2870,3363],[-1,0]],[[2869,3363],[0,0]],[[2869,3363],[-1,0]],[[2295,5153],[-60,0],[-50,1],[-42,0],[-57,0]],[[2086,5736],[71,0],[70,0],[49,0]],[[2742,4142],[-4,-11],[2,-49],[-3,-31],[-1,-47],[-3,-37],[-8,-50],[-7,-22],[-2,12],[-3,-26],[-5,-10],[-1,-56],[-6,20],[-6,-47],[1,-35],[-4,-28],[-8,-6]],[[2659,4351],[1,0]],[[2660,4351],[0,0]],[[2660,4351],[14,-41],[4,13],[9,-40],[13,27],[8,-6],[13,53],[21,41]],[[2742,4398],[0,-256]],[[2353,2807],[-11,20],[-3,23],[-7,19],[-2,-17],[-8,12],[-7,-18],[-7,2],[-2,-18],[-6,-7],[-7,23],[-4,-2],[-5,22],[-4,-29],[-3,20],[-5,-16],[-9,33],[-5,-28],[-2,28],[-11,32],[-4,-18],[-3,18],[-5,-4],[-5,15],[-6,0],[-1,23],[-14,8],[-6,38],[-2,-4],[0,371],[-30,0],[-54,0]],[[1524,4402],[-4,20],[-3,44],[2,45],[-5,52],[10,146],[4,154],[0,78],[1,16],[3,95],[-3,102],[3,46],[12,10],[8,-13]],[[1552,5197],[7,-16],[5,-45],[1,-38],[14,-20],[12,31],[7,4],[18,-17],[7,18],[12,-2],[5,17],[10,9],[3,12],[13,2],[4,13],[56,-1]],[[2894,4019],[-2,-20],[-8,-16]],[[2771,3967],[-29,0],[0,175]],[[2742,4398],[21,55]],[[3001,4347],[-4,10],[-1,-56],[-2,-19],[-10,-8]],[[3004,4305],[-2,35]],[[2796,2852],[-12,-58],[-4,-37],[-1,-39],[-6,-31],[-4,0],[-9,-47],[-2,28],[-1,-56],[-10,-24],[-11,11],[-3,-33],[2,-15],[-5,-42],[-5,7]],[[2738,2590],[6,-17],[-5,-29],[-1,46]],[[2736,2597],[2,-4],[0,-42],[-4,35],[2,11]],[[2086,4594],[0,379]],[[2654,3372],[56,-3]],[[2371,2053],[-5,-2],[-21,-54],[6,27],[-5,-2],[1,45],[-3,7],[-5,-23],[-1,-24],[4,-34],[-8,-36],[-2,-36],[-13,-50],[-7,-8],[-3,-20],[-8,11],[-3,-7],[-6,22],[1,-24],[6,-30],[-7,-22],[-5,18],[1,-38],[-4,-18],[-2,14],[-6,-25],[1,-18],[5,12],[-5,-41],[-5,4],[4,-27],[-5,-73],[-1,17],[-4,-17],[5,-10],[-4,-84],[2,-13],[5,-108],[3,-24],[-5,-42],[-9,37],[-14,2],[-7,34],[-6,2],[-4,25],[-8,11],[-5,80],[-5,33],[1,30],[-2,31],[1,27],[-4,31],[-8,30],[-1,35],[-4,31],[-6,27],[-3,57],[-3,13],[-8,112],[-13,56],[-6,47],[-2,-4],[-16,6],[-6,16],[-2,-21],[-7,-3],[-6,-75],[0,-28],[-3,-5],[-5,-40],[-8,13],[-3,23],[-15,35],[-5,32],[-7,24],[-4,53],[-1,50],[-5,41],[0,22],[-9,56],[-5,11],[-6,43],[-5,16],[-6,42],[-6,17],[-5,48],[-4,10]],[[2287,1751],[7,35],[5,12],[-12,-47]],[[1891,4402],[0,-191],[56,0]],[[2942,4976],[52,1]],[[2838,3812],[1,-36],[-6,-10],[-2,-63],[8,12],[0,-25],[6,-21],[6,-2],[10,-50],[-3,-50],[-5,7],[-2,28],[-5,16],[7,-54],[7,-9],[0,-47],[-4,26],[1,-35],[-3,-4],[7,-32],[-4,-18],[-7,45],[-12,16],[8,-18],[4,-33],[5,-15],[-2,-23],[8,-1],[-2,25],[9,-9],[4,-69]],[[2871,3363],[-2,0]],[[2868,3363],[-1,0]],[[2702,3551],[3,-49],[8,-14],[6,25],[3,-20],[11,20],[9,27],[6,5],[0,35],[10,70],[1,24],[6,47],[1,31],[5,-26],[5,-8],[9,82],[3,-16],[13,78],[2,56],[14,-63],[3,36]],[[2885,3641],[-1,-24],[-5,-35],[0,-26],[-5,-12],[-4,-38],[-1,-36],[-2,28],[3,58],[9,82]],[[2869,3363],[1,0]],[[1552,5197],[-8,18],[-16,0],[5,55],[-7,68],[8,10],[-8,12],[-5,64],[-4,75],[-5,25],[-3,55],[3,41],[17,-43],[18,-9],[7,8],[5,-17],[2,13],[7,-47],[-4,-35],[-1,25],[-7,-61],[9,29],[6,47],[-2,-66],[2,-11],[-2,-50],[-1,29],[-4,-44],[-5,21],[-1,-39],[5,19],[3,-15],[5,42],[5,5],[-3,61],[3,55],[-1,65],[-9,23],[5,8],[0,55],[-3,6],[-4,44],[27,-2],[49,0],[34,0],[50,0]],[[1561,5683],[4,-10],[-6,-13],[2,23]],[[1569,5622],[2,-18],[-2,-18],[6,-33],[0,-24],[-6,22],[-5,38],[5,33]],[[2544,4994],[-12,-104],[4,-4],[8,57],[6,12],[5,51],[7,25],[-14,-150],[-2,-67],[-5,-51],[1,-39],[-6,-83],[2,-78],[2,-11],[-1,-56]],[[2416,5291],[3,15],[8,-9],[20,32],[7,20],[3,-13],[-5,-59],[6,14],[8,-18]]],"transform":{"scale":[0.035867454651151036,0.005242585134216096],"translate":[-178.8716846945846,18.92197720210329]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment