Skip to content

Instantly share code, notes, and snippets.

@Andrew-Reid
Last active October 26, 2016 15:42
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 Andrew-Reid/01d67e23713e30fac4299f0e004ae98e to your computer and use it in GitHub Desktop.
Save Andrew-Reid/01d67e23713e30fac4299f0e004ae98e to your computer and use it in GitHub Desktop.
The Yukon Ditch - D3 Maps and Aqueduct Symbology

##The Ditch

The Yukon Ditch was a ditch, flume, and pipeline aqueduct system that brought water from what is now Tombstone Territorial Park to the gold fields of the Klondike. Construction commenced in 1906 and was completed in 1910.

It carried water by gravity alone over the course of over 110 km. This presented a number of challenges and explains the circuitous route. Perhaps the greatest challenge was crossing the Klondike River valley. To cross the valley a pipeline was required, one of several along the route. According to T.A. Rickard, writing in 1909, the intake of the intake of the pipeline across the valley was at 2440 feet above sea level, the lowest point of the pipeline was at 1282 feet, with the discharge point at 2240 feet. With a hydraulic head of over 1000 feet, the pressure at the bottom of the pipe would be about 500 psi.

The pipeline served to aid hydraulic mining in the gold fields. It also provided power for the dredges through a powerhouse located near the intakes. The transmission lines are represented through the dashed line.

The ditch was in operation until 1933, a few more indepth articles on it can be found here, (in addition to the work by T.A. Rickard, referenced above): *The Yukon Ditch was an engineering marvel, Yukon News, 2010 *The Yukon Ditch, Association of Professional Engineers of Yukon

There is a second ditch on the map, that is the one ending above Dawson in a reservoir. This is the Acklen ditch, and was used presumably for drinking water, at least when the Yukon ditch was first constructed.

The railway shown is the narrow gauge Klondike Mines Railway, which operated briefly between Dawson City and Sulphur Springs. It ran from 1905 to 1913 and was about 50 km long.

This type of structure was not unique to Dawson. Fairbanks had the Davidson Ditch, while Nome had the Miocene Ditch

##Code This map uses d3.js v4.

The original purpose in creating this map was to try and show an aqueduct style symbology, but it just felt plain without the other content. I have a bl.ock on both rail symbology and the scale bar with those two elements by themselves.

The aqueduct symbology is rather simple, compared to the rail and should be pretty clear.

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.
<!DOCTYPE html>
<meta charset="utf-8">
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<svg width="960" height="960"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/d3-geo-projection.v1.min.js"></script>
<script src="https://d3js.org/topojson.v1.min.js"></script>
<script>
d3.select(self.frameElement).style("height", "960px");
var svg = d3.select("svg"),
width = +svg.attr("width"),
height = +svg.attr("height");
var projection = d3.geoKavrayskiy7()
.scale(75000)
.rotate([139.10, 0])
.center([0,64.18])
.translate([width / 2, height / 2])
.precision(.1);
var path = d3.geoPath()
.projection(projection);
// Add a few groups for proper layering
var g = svg.append("g");
var g2 = svg.append("g");
var g3 = svg.append("g");
var g4 = svg.append("g");
////////////////////////////////////////////////////////////
// Add the contour map
d3.json("topo.json", function(error, contours) {
var paths = g.selectAll(".contour")
.data(topojson.feature(contours, contours.objects.contours).features)
.enter().append("path")
.attr("d", path)
.attr("class", function(d,i) { return "contour c" + d.properties.gridcode; });
});
////////////////////////////////////////////////////////////
// Add water and streams to the map
d3.json("water.json", function(error, water) {
var paths = g2.selectAll(".water")
.data(topojson.feature(water, water.objects.water).features)
.enter().append("path")
.attr("d", path)
.attr("class", "water");
});
d3.json("streams.json", function(error, water) {
var paths = g2.selectAll(".streams")
.data(topojson.feature(water, water.objects.water).features)
.enter().append("path")
.attr("d", path)
.attr("class", "streams");
});
////////////////////////////////////////////////////////////
// Add the Yukon Ditch and Acklen ditch
d3.json("aqueducts.json", function(error, aqueduct) {
var paths = g3.selectAll(".aqueduct")
.data(topojson.feature(aqueduct, aqueduct.objects.aqueduct).features)
.enter().append("path")
.attr("d", path)
.attr("class", "aqueduct")
.attr("id",function(d,i) { return "aqueduct" + i });
// Add circles along the aqueduct paths
paths.each(function(d,i) {
var currentPath = d3.select("#aqueduct" + i).node();
var totalLength = currentPath.getTotalLength();
var numberOfSymbols = Math.round(totalLength/25);
var spacingOfSymbols = totalLength/numberOfSymbols;
var intialSpacng = spacingOfSymbols/2;
var j = 0;
while (j < numberOfSymbols) {
var p = currentPath.getPointAtLength( (spacingOfSymbols/2) + (spacingOfSymbols * j) );
var point = g3.append("circle")
.attr("cx", p.x)
.attr("cy", p.y)
.attr("r", 3)
.attr("class","aqueduct-symbol");
j++;
}
});
});
////////////////////////////////////////////////////////////
// Add transmission lines
d3.json("power.json", function(error, power) {
var paths = g3.selectAll(".power")
.data(topojson.feature(power, power.objects.power).features)
.enter().append("path")
.attr("d", path)
.attr("class", "power");
});
////////////////////////////////////////////////////////////
// Add the railroad
d3.json("railroad.json", function(error, railroad) {
var paths = g3.selectAll(".railroad")
.data(topojson.feature(railroad, railroad.objects.railroad).features)
.enter().append("path")
.attr("d", path)
.attr("class", "rail")
.attr("id",function(d,i) { return "r" + i });
// Figure out how many cross hatches are needed for each track section
paths.each(function(d,i) {
var currentPath = d3.select("#r" + i).node();
var totalLength = currentPath.getTotalLength();
var numberOfSymbols = Math.round(totalLength/6);
var spacingOfSymbols = totalLength/numberOfSymbols;
var intialSpacng = spacingOfSymbols/2;
var j = 0;
// Add each cross hatch at the right angle
while (j < numberOfSymbols) {
var p1 = currentPath.getPointAtLength( (spacingOfSymbols/2 - 5) + (spacingOfSymbols * j) );
var p2 = currentPath.getPointAtLength( (spacingOfSymbols/2 + 5) + (spacingOfSymbols * j) );
var p3 = currentPath.getPointAtLength( (spacingOfSymbols/2) + (spacingOfSymbols * j) );
var r = 3; // length of cross hatch from line
var m = (p2.y - p1.y) / (p1.x - p2.x);
m = 1/m;
var k = r / Math.sqrt( 1 + (m*m) );
if (m == Infinity) {
p1.x = p3.x;
p1.y = p3.y + r;
p2.y = p3.y - r;
p2.x = p3.x;
}
else {
p1.x = p3.x + k;
p1.y = p3.y + (m * k);
p2.x = p3.x - k;
p2.y = p3.y - (m * k);
}
var line = g3.append("line")
.attr("x1",p1.x)
.attr("x2",p2.x)
.attr("y1",p1.y)
.attr("y2",p2.y)
.attr("class", "rail")
.attr("stroke-width",1);
j++;
}
});
});
////////////////////////////////////////////////////////////
// Add some labels
d3.csv("points.csv", function ( error, data ) {
var points = g4.selectAll(".point")
.data(data)
.enter()
.append("circle")
.attr("cx", function(d) { return projection([d.lon,d.lat])[0]; })
.attr("cy", function(d) { return projection([d.lon,d.lat])[1]; })
.attr("r",5)
.attr("class","point")
.attr("stroke", function(d) { return d.color });
var text = g4.selectAll(".label")
.data(data)
.enter()
.append("text")
.attr("x", function(d) { return projection([d.lon,d.lat])[0] - d.offset; })
.attr("y", function(d) { return projection([d.lon,d.lat])[1] - 2; })
.attr("text-anchor", function(d) { return d.anchor })
.text(function(d) { return " " + d.name })
.attr("class","text")
.attr("font-size",12);
});
////////////////////////////////////////////////////////////
// Regional Labels
g4.append("text")
.attr("x", projection([-139.228,63.97])[0] )
.attr("y", projection([-139.228,63.97])[1] )
.attr("text-anchor","middle")
.attr("class","region-label text")
.text("The Gold Fields");
g4.append("text")
.attr("x", projection([-138.799,64.3966])[0] )
.attr("y", projection([-138.799,64.3966])[1] )
.attr("text-anchor","middle")
.attr("class","region-label text")
.text("Tombstone Range");
////////////////////////////////////////////////////////////
// Add a title
g4.append("text")
.attr("x", 200 )
.attr("y", 100 )
.attr("class","text")
.attr("font-size",24)
.attr("text-decoration","underline")
.text("The Yukon Ditch");
////////////////////////////////////////////////////////////
// Add a scale
var baseWidth = width / 4;
var p1 = projection.invert([width/2 - baseWidth/2, height / 2]);
var p2 = projection.invert([width/2 + baseWidth/2, height / 2]);
var distance = getDistance(p1,p2);
var unit = "m";
var multiply = 1;
var bestFit = 1;
var increment = 0.1;
var scaleDistance = 0;
var scaleWidth = 0;
if ( distance > 1000 ) {
unit = "km"; multiply = 0.001;
}
// Adjust distance to a round(er) number
var i = 0;
while (i < 400) {
var temp = getDistance( projection.invert([ width/2 - (baseWidth / 2) + (increment * i), height / 2 ]), projection.invert([ width/2 + baseWidth/2 - (increment * i), height / 2 ]));
var ratio = temp / temp.toPrecision(1);
// If the second distance is moving away from a cleaner number, reverse direction.
if (i == 1) {
if (Math.abs(1 - ratio) > bestFit) { increment = - increment; }
}
// If we are moving away from a best fit after that, break
else if (i > 2) {
if (Math.abs(1 - ratio) > bestFit) { break }
}
// See if the current distance is the cleanest number
if (Math.abs(1-ratio) < bestFit) {
bestFit = Math.abs(1 - ratio);
scaleDistance = temp;
scaleWidth = (baseWidth) - (2 * increment * i);
}
i++;
}
// Now to build the scale
var margin = {
left: 600, // scale is this far from the left
bottom:200 // scale is this far off the bottom
}
var bars = [];
var smallBars = 10;
var bigBars = 4;
var odd = true;
var label = false;
// Populate an array to represent the bars on the scale
for (i = 0; i < smallBars; i++) {
if (smallBars - 1 > i ) { label = false; } else { label = true; }
bars.push( {width: 1 / (smallBars * (bigBars + 1)), offset: i / (smallBars * (bigBars + 1)), label: label, odd: odd } );
odd = !odd;
}
for (i = 0; i < bigBars; i++) {
bars.push( {width: 1 / (bigBars + 1), offset: (i + 1) / (bigBars + 1), label: true, odd: odd } );
odd = !odd;
}
// Append the scale
g.selectAll(".scaleBar")
.data(bars).enter()
.append("rect")
.attr("x", function(d) { return d.offset * scaleWidth + margin.left })
.attr("y", height - margin.bottom)
.attr("width", function(d) { return d.width * scaleWidth})
.attr("height", 10)
.attr("fill", function (d) { if (d.odd) { return "#ccc"; } else { return "#222"; } });
g.selectAll(".scaleText")
.data(bars).enter()
.filter( function (d) { return d.label == true })
.append("text")
.attr("class","scaleText")
.attr("x",0)
.attr("y",0)
.style("text-anchor","start")
.text(function(d) { return d3.format(",")(((d.offset + d.width) * scaleDistance).toPrecision(2) * multiply); })
.attr("transform", function(d) { return "translate("+ ((d.offset + d.width) * scaleWidth + margin.left )+","+ (height - margin.bottom -5) +") rotate(-45)" });
g.append("text")
.attr("x", scaleWidth/2 + margin.left)
.attr("y", height - margin.bottom + 25)
.text( function() { if(unit == "km") { return "kilometers"; } else { return "metres";} })
.style("text-anchor","middle")
.attr("class","scaleText");
// End Scale -----------------------------------------
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Latitude/longitude spherical geodesy tools (c) Chris Veness 2002-2016 */
/* MIT Licence */
/* www.movable-type.co.uk/scripts/latlong.html */
/* www.movable-type.co.uk/scripts/geodesy/docs/module-latlon-spherical.html */
function getDistance(p1,p2) {
var lat1 = p1[1];
var lat2 = p2[1];
var lon1 = p1[0];
var lon2 = p2[0];
var R = 6371e3; // metres
var φ1 = lat1* Math.PI / 180;
var φ2 = lat2* Math.PI / 180;
var Δφ = (lat2-lat1)* Math.PI / 180;
var Δλ = (lon2-lon1)* Math.PI / 180;
var a = Math.sin(Δφ/2) * Math.sin(Δφ/2) +
Math.cos(φ1) * Math.cos(φ2) *
Math.sin(Δλ/2) * Math.sin(Δλ/2);
var c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a));
var distance = R * c;
return distance;
}
</script>
name lat lon color anchor offset
Powerhouse 64.37777 -138.979517 steelblue end 8
Tombstone River Intake 64.42533 -138.7986 steelblue start -8
Little 12 Mile River Intake 64.3695 -138.835 steelblue start -8
Dawson 64.06 -139.4327 black end 8
Moosehide 64.0953 -139.4373 black end 8
Grand Forks 63.9216 -139.3173 black start -8
Reservoir 64.05877 -139.4152 steelblue start -8
Klondike River Crossing 64.0376 -139.237 steelblue start -8
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.
.rail {
fill:none;
stroke-width: 1;
stroke: #000;
}
.contour {
fill:none;
stroke-width: 0.5;
stroke: #bbb;
}
.structures {
stroke-width: 20px;
opacity: 0.4;
stroke: #000;
fill:none;
}
.water {
fill: #43a2ca;
}
.streams {
fill:none;
stroke: #43a2ca;
}
svg {
display: block;
margin-left: auto;
margin-right: auto;
}
.aqueduct {
stroke: steelblue;
fill: none;
stroke-width: 2px;
}
.aqueduct-symbol {
fill: steelblue;
}
.point {
stroke-width: 2px;
/*stroke: steelblue;*/
fill: white;
}
.rail {
fill:none;
stroke:black;
stroke-width: 1px;
}
.power {
stroke: #333;
stroke-width: 1px;
stroke-dasharray:7, 5, 1, 5;
fill:none;
}
.region-label {
letter-spacing: 10px;
stroke: #111;
fill: #444;
font-size: 25px;
opacity: 0.4;
}
.text {
font-family: Arial;
}
.c400 { fill: #94BF8B; }
.c500 { fill: #A8C68F; }
.c600 { fill: #BDCC96; }
.c700 { fill: #D1D7AB; }
.c800 { fill: #E1E4B5; }
.c900 { fill: #EFEBC0; }
.c1000 { fill: #E8E1B6; }
.c1100 { fill: #DED6A3; }
.c1200 { fill: #D3CA9D; }
.c1300 { fill: #CAB982; }
.c1400 { fill: #C3A76B; }
.c1500 { fill: #B9985A; }
.c1700 { fill: #AA8753; }
.c1900 { fill: #AC9A7C; }
.c2500 { fill: #BAAE9A; }
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","transform":{"scale":[0.000025804102466526253,0.000009990045507977994],"translate":[-139.60396718128473,63.8950518473799]},"arcs":[[[4029,13319],[0,-120]],[[4029,13199],[-26,45],[-75,-83],[-30,-78],[43,-43],[88,21]],[[4029,13061],[0,-576]],[[4029,12485],[-89,-26],[-221,-103],[-92,-32],[-158,-13],[-106,-57],[-187,-53],[-113,-42],[-228,-55],[-233,-48],[-141,-2],[-146,-62],[-140,-41],[-99,-18],[-130,-7],[-135,22],[-90,29],[-91,8],[-57,35],[-65,4],[-59,-17],[-102,-4],[-156,-41],[-104,-82],[-39,-19],[-176,-58],[-246,-59],[-96,-16],[-89,-57],[-59,111],[227,137],[101,30],[-34,154],[-37,18],[-88,-5],[-72,-29],[-199,-100],[-136,290],[-144,339],[90,-49],[63,-5],[105,-25],[157,16],[52,-5],[135,7],[171,1],[64,24],[44,-10],[121,31],[63,3],[183,47],[81,58],[49,69],[72,-48],[88,13],[170,70],[75,10],[135,-29],[139,45],[131,49],[131,37],[159,31],[248,33],[241,-17],[224,-32],[135,1],[218,17],[123,33],[108,78],[68,24],[28,42],[49,125],[68,58],[41,1]],[[2057,12635],[2,-93],[12,-36],[58,-37]],[[2129,12469],[151,-17],[161,-4],[84,35],[46,86],[82,130]],[[2653,12699],[-2,25],[-86,4],[-98,34]],[[2467,12762],[-37,10],[-80,-13],[-202,-65],[-91,-59]],[[2758,12477],[119,40],[95,10],[121,31],[62,4],[111,58],[122,42],[15,59],[-82,-22],[-76,23],[-114,-35],[-175,2],[-99,-23],[-38,17],[-76,-12]],[[2743,12671],[-35,-35],[-16,-45],[12,-79],[54,-35]],[[1261,12288],[-50,41],[-70,17],[-96,3],[-56,-9],[-198,-84],[-71,-17],[-46,-31],[6,-60],[69,-74],[71,-55],[72,0],[72,26],[153,93],[124,60],[23,36],[-3,54]],[[2129,12469],[-27,-25],[-68,16],[-113,44],[-20,42],[36,45],[120,44]],[[4029,25459],[0,-935]],[[4029,24524],[0,-259]],[[4029,24265],[0,-198]],[[4029,24067],[-68,-8],[-159,189],[-94,133],[-82,172],[-15,51],[-21,165],[-14,160],[-49,83],[-93,84],[-70,89],[-56,107],[-122,118],[-63,105],[-76,99],[-63,51]],[[2984,25665],[-98,110],[-150,234],[39,51]],[[2775,26060],[192,246],[78,-107],[284,-168],[150,-65],[128,-88],[100,-88],[186,-225],[20,-34],[116,-72]],[[2867,25911],[-70,101]],[[2797,26012],[8,-75],[45,-59],[17,33]],[[3124,25836],[78,-25],[9,39],[-40,58]],[[3171,25908],[-58,49],[-66,10],[14,-63],[63,-68]],[[3339,25470],[-130,85],[-24,-4],[167,-228]],[[3352,25323],[62,-4],[-29,103],[-46,48]],[[3789,25084],[-57,106],[-96,100],[-24,-61],[31,-113],[44,-65],[44,-147]],[[3731,24904],[77,-13],[31,81],[-50,112]],[[3942,24313],[42,4],[11,62],[-62,122],[-29,154],[-42,67],[-84,68],[-64,21],[-17,-53],[20,-58],[19,-176],[32,-88],[40,-47]],[[3808,24389],[66,-51],[68,-25]],[[13831,2131],[55,-29],[-52,-34],[-3,63]],[[14341,10953],[-59,28],[29,39],[30,-67]],[[11277,2549],[-86,18],[-78,85],[-10,42],[102,-72],[72,-73]],[[11491,2572],[-113,-36],[-20,32],[133,4]],[[11706,14714],[-64,-14],[-13,75],[77,-61]],[[11156,14174],[-36,-21],[1,91],[25,19],[43,-45],[-33,-44]],[[13438,13849],[79,-1],[12,-14],[152,-15],[8,-34],[-102,30],[-73,-1],[-76,35]],[[11903,14274],[36,29],[58,-65],[-63,6],[-31,30]],[[11207,14972],[-99,15],[-48,28],[-119,136],[-34,26],[-83,30]],[[10824,15207],[61,35],[86,8],[30,-14],[68,-138],[51,-38],[87,-88]],[[14126,13698],[-38,-21],[-7,50],[56,20],[-11,-49]],[[17213,14671],[-37,-13],[-170,-159],[-92,-64]],[[16914,14435],[32,85],[41,68],[53,44],[125,52],[48,-13]],[[11309,14524],[-10,-25],[-53,15],[-61,-23],[18,79],[106,-46]],[[17332,12312],[74,-13],[41,21],[36,-62],[-149,38],[-45,44],[-25,49],[20,32],[32,-102],[16,-7]],[[13765,14053],[-127,-1],[-47,-79],[-31,-28]],[[13560,13945],[-101,37],[-45,63],[-3,35],[138,1],[45,16],[79,6],[39,-10],[53,-40]],[[14996,14063],[-49,-20],[-95,-9],[-51,-25],[34,-61]],[[14835,13948],[-77,37],[13,31]],[[14771,14016],[-27,28],[-47,-44]],[[14697,14000],[-33,16],[85,70],[110,53],[39,2],[52,-26],[46,-52]],[[11368,14065],[-20,-69],[-25,13],[19,69],[26,-13]],[[14111,14184],[-51,-9],[20,73],[60,53],[30,-30],[-59,-87]],[[10935,14807],[-73,-96],[-67,56],[18,17],[71,1],[51,22]],[[12117,14582],[59,-49],[29,-125],[-41,25],[-17,90],[-42,42],[-62,-11],[-76,34],[36,32],[93,-13],[21,-25]],[[11922,15091],[6,-70],[-37,9],[-71,47],[102,14]],[[10363,14901],[-15,-37],[-77,20],[-34,-18],[42,-46],[-50,-38],[-29,79],[72,32],[91,8]],[[12672,14357],[-58,1],[56,61],[2,-62]],[[14380,14096],[-38,26],[-55,83],[-50,38],[-48,-14],[-44,-110],[-45,3]],[[14100,14122],[41,92],[73,72],[53,7],[50,-43],[28,-102],[35,-52]],[[12281,14561],[70,-33],[19,-42],[-77,18],[-45,24],[33,33]],[[13342,14244],[-80,145],[-14,62]],[[13248,14451],[68,-53],[27,-55],[-1,-99]],[[14960,13953],[54,30],[27,61]],[[15041,14044],[61,-24],[-90,-66],[-52,-1]],[[13814,13664],[28,-8],[45,-79],[50,-51],[7,-71],[-113,135],[-17,74]],[[12342,14929],[97,7],[66,-64],[-9,-31],[-67,-17],[-38,11],[-49,94]],[[16395,14275],[-119,-1],[-120,-73]],[[16156,14201],[-135,-5],[-23,19]],[[15998,14215],[72,4],[113,63],[-8,25]],[[16175,14307],[135,5],[85,-37]],[[12349,14968],[-67,8],[-66,49],[-49,76],[-2,68],[31,21]],[[12196,15190],[40,-33],[0,-66],[46,-66],[67,-57]],[[9769,14372],[-60,-17],[10,53],[50,-36]],[[12404,14648],[44,-45],[96,-68],[-28,-38],[-64,81],[-50,5],[-37,33],[39,32]],[[13065,14457],[-66,-7],[2,36],[64,-29]],[[11881,14921],[-2,-60],[-46,11],[-56,-15],[16,52],[88,12]],[[9996,14656],[200,-23],[-12,-38],[-102,34],[-81,11],[-119,-10],[-86,-34],[-11,20],[88,42],[123,-2]],[[11216,14267],[-81,39],[15,41],[66,-80]],[[12411,13982],[-8,12],[2,134],[16,5],[-10,-151]],[[14668,13572],[-12,-7],[-1,203],[21,-34],[2,-79],[-10,-83]],[[11332,14764],[32,-89],[-51,-12],[-24,26],[42,32],[1,43]],[[16641,14252],[-31,41]],[[16610,14293],[74,37],[27,-34],[-70,-44]],[[13474,14234],[52,-95],[-58,-20],[-104,69],[33,92],[77,-46]],[[11888,14611],[-25,-4],[-1,81],[23,4],[3,-81]],[[13473,13647],[19,-51],[177,-101],[78,-17],[-39,-55],[-32,50],[-111,51],[-94,58],[2,65]],[[10704,14748],[61,6],[76,-77],[34,-18],[-14,-40],[-50,62],[-107,67]],[[12207,14617],[-36,-33],[-40,25],[-99,19],[-107,0],[-22,84],[-2,87],[30,1],[5,-92],[37,-45],[148,-24],[86,-22]],[[10690,14870],[62,3],[-3,-54],[-35,-40],[-20,23],[-4,68]],[[10128,14839],[-47,-26],[44,-67],[-38,-6],[-36,31],[29,58],[48,10]],[[11552,14982],[-46,-53],[62,-8],[9,-57],[-44,-15],[-42,64],[-12,64],[73,5]],[[12123,15185],[-48,22],[-133,31]],[[11942,15238],[19,14],[76,-3],[75,-30],[11,-34]],[[11680,15058],[99,15],[-70,-102],[-47,58],[18,29]],[[16559,14315],[-88,-38],[-81,71]],[[16390,14348],[169,-33]],[[12734,13880],[73,-22],[83,-41],[34,17],[35,-46],[-56,-8],[-71,51],[-62,26],[-125,10],[1,-80],[53,-65],[-17,-28],[-48,89],[-27,91],[34,10],[93,-4]],[[12045,13947],[-34,0],[-44,40],[28,31],[50,-71]],[[11313,14142],[-83,32],[15,27],[68,-59]],[[13934,14091],[-72,53],[-24,-1],[-42,-50]],[[13796,14093],[-79,52],[156,79],[68,0],[61,-15],[-39,-85],[-29,-33]],[[12633,14726],[-17,3],[-118,201],[77,-52],[60,-96],[-2,-56]],[[11838,14208],[-28,-6],[-37,34],[14,32],[51,-60]],[[14459,13557],[27,-32],[-24,-61],[48,5],[73,-87],[-125,40],[-80,0],[-57,-46],[-5,54],[117,66],[26,61]],[[11629,15034],[45,-103],[-74,54],[-10,40],[39,9]],[[10967,15024],[-84,15],[-95,44],[-106,-19],[-20,-20]],[[10662,15044],[43,64],[84,50],[60,-4],[95,-76],[23,-54]],[[11008,14482],[-52,40],[57,15],[-5,-55]],[[11712,13889],[48,31],[33,-1],[130,-54],[-19,-15],[-67,38],[-102,-24],[-39,10],[-29,-32],[-30,17],[11,49],[64,-19]],[[13466,13347],[-1,-32],[-53,-7],[-53,68],[28,11],[35,-70],[44,30]],[[14930,13379],[-78,27],[20,27],[58,-54]],[[12456,14435],[-49,8],[-3,63],[22,15],[30,-86]],[[13158,14417],[-37,-30],[-65,19],[46,36],[56,-25]],[[12364,14708],[1,-31],[-40,-33],[-18,44],[57,20]],[[12264,14817],[60,-77],[-50,-18],[-10,95]],[[11174,14717],[-37,60],[29,17],[34,-48],[-26,-29]],[[12548,13973],[-55,33],[30,28],[25,-61]],[[11506,32026],[-19,-14],[-33,61],[21,14],[60,-33],[-29,-28]],[[12390,30767],[-11,-26],[-54,28],[9,78],[56,-80]],[[11619,31910],[3,-68],[-55,-20],[18,76],[34,12]],[[11385,32596],[-21,-26],[-44,30],[53,27],[12,-31]],[[11122,31293],[-1,-56],[-57,7],[7,49],[51,0]],[[14492,39916],[65,-36],[103,11],[33,24],[31,59],[26,-28],[5,-64],[-82,-68],[-72,-6],[-74,57],[-67,-10],[-102,20],[-81,-23],[6,32],[59,75],[150,-43]],[[11328,39580],[87,-35],[-69,-39],[-25,38],[-56,10],[3,38],[60,-12]],[[14235,39884],[-21,-46],[-58,12],[-73,53],[-77,40],[-28,41],[64,26],[37,-3],[82,-36],[74,-87]],[[11594,39558],[-53,-46],[-67,4],[132,149],[17,42],[45,-31],[-29,-76],[-45,-42]],[[9539,39986],[-72,-52],[12,84],[46,16],[14,-48]],[[12431,39751],[14,-53],[-40,1],[-50,34],[-17,66],[93,-48]],[[10076,39671],[-67,-13],[-40,36],[-96,27],[-23,29],[5,202],[75,-70],[26,-109],[86,-6],[76,-38],[28,-30],[-70,-28]],[[12213,39911],[-79,-67],[-15,49],[41,43],[53,-25]],[[11194,39523],[-1,-31],[-47,-53],[-82,-9],[-51,47],[51,19],[66,1],[64,26]],[[5061,13635],[-44,-125],[13,-22],[53,65],[66,-53]],[[5149,13500],[-135,-76],[-44,3],[17,100],[50,93],[24,15]],[[8214,14761],[-99,63],[59,8],[39,-25],[1,-46]],[[8759,14507],[-4,-59],[-52,49],[56,10]],[[9597,14562],[-21,-20],[-76,4],[-49,-49],[-50,6],[33,70],[163,-11]],[[11207,14972],[82,15],[95,77],[47,60],[109,91],[70,30],[98,-28],[89,62],[145,5],[50,10],[71,-13],[74,-43],[59,-48]],[[12349,14968],[146,3],[66,-50],[92,-109],[56,-146],[31,-35],[75,-22],[169,12],[51,27],[54,-8],[137,-90],[71,-34],[65,-71],[41,-131],[65,-59],[97,-105],[116,4],[75,41],[116,51],[88,5],[71,-12],[66,88],[95,43],[58,-2],[52,-29],[66,-60],[49,-68],[4,-69],[48,-59],[122,-44],[65,32],[75,98],[34,19],[132,6],[158,-84],[121,-32],[64,3],[103,24],[106,38],[134,32],[163,92],[72,22],[172,37],[35,13],[235,29],[64,0],[66,-20]],[[16559,14315],[51,2],[132,44],[58,34],[46,48],[102,220],[47,2],[121,66],[76,54],[57,89],[40,18],[33,63],[-4,54],[14,141],[57,75],[136,40],[227,-14],[40,17],[76,65],[74,-15],[29,27],[-38,82],[-5,105],[125,58],[51,55],[66,13],[51,-29],[35,26],[33,87],[16,94],[43,122],[171,178],[-34,61],[-2,48],[31,51]],[[18514,16296],[28,7]],[[18542,16303],[-43,-31],[6,-70],[38,-59],[84,12],[70,59],[53,124]],[[18750,16338],[45,167]],[[18795,16505],[70,122],[133,74],[51,12],[86,-6],[49,8]],[[19184,16715],[151,-48],[160,37]],[[19495,16704],[87,46],[92,12],[56,-31],[94,-27],[51,4],[53,30],[68,61],[75,49],[67,-14],[82,47],[52,57],[67,26],[109,1],[58,-10],[80,-116],[38,2],[63,-45],[89,-38],[72,-9],[134,-52],[95,-53],[24,-45],[42,-26],[101,-89],[92,-100],[82,-55],[50,-57],[69,-58],[104,-15],[79,45],[106,115],[186,92],[125,80],[83,93],[76,290],[54,22],[61,2],[109,28],[81,-1],[42,-17],[56,-56],[83,-56],[134,-40],[143,15],[160,75],[57,60],[30,75],[26,142],[29,80],[45,47]],[[23406,17290],[0,-62]],[[23406,17228],[-40,-53],[-9,-71]],[[23357,17104],[-7,-119],[56,66]],[[23406,17051],[0,-56]],[[23406,16995],[-136,-151],[-121,-78],[-96,-38],[-133,-10],[-91,20],[-91,46],[-130,101],[-43,-11],[-8,-69],[-81,-77],[-95,-116],[-30,-83],[-77,-126],[-72,-69],[-55,-29],[-190,1],[-54,-20],[-163,-118],[-65,-27],[-94,0],[-63,29],[-57,56],[-90,68],[-95,47],[-81,92],[-74,61],[-56,27],[-62,-19],[-44,-73],[-25,0],[-152,84],[-55,38],[-80,82],[-77,34],[-122,13],[-206,67],[-71,5],[-97,-7],[-108,-67],[-64,-75],[-70,-48],[-116,-61],[-72,21],[-69,72],[-48,29],[-87,3],[-103,-9],[-38,-29],[-46,13],[-86,-16]],[[19167,16578],[-57,44],[-67,13],[-130,-42],[-44,-49],[-9,-38]],[[18860,16506],[15,-32],[100,26],[70,-3]],[[19045,16497],[47,8]],[[19092,16505],[-81,-33],[-100,1],[-56,-40],[-35,-70],[-66,-208],[1,-72],[-18,-67],[-37,-71],[-27,-170],[-19,-61],[-69,-108],[-12,-65],[-40,-20],[-36,-72],[-30,-182],[20,-52],[-104,-44],[-93,-10],[-92,-63],[-33,-43],[-29,-94],[-10,-96],[-57,-147],[-85,-136],[-152,-74],[-31,-8],[-151,-4],[-189,3],[-63,-18],[-63,-66],[-24,-88],[-120,-153],[-154,31],[-170,-27],[-47,29],[-33,-43],[-50,-10],[-50,-40],[-23,-53],[-79,-16],[-41,34],[-49,97],[-66,84],[-34,15]],[[16175,14307],[-92,-7],[-52,-22],[-33,-63]],[[16156,14201],[-23,-15],[-96,-13],[-97,7],[-206,-11],[-118,-35],[-141,-23],[-111,-49],[-243,-66],[-67,-54],[-77,-24],[-111,-6],[-125,32],[-99,7],[-67,43],[-78,16],[-72,31],[-45,55]],[[14100,14122],[-16,-26],[-85,-50],[-49,-13],[-115,-8],[-70,28]],[[13560,13945],[-95,17],[-60,67],[-17,47],[-71,96],[25,72]],[[13248,14451],[-20,19],[-155,47],[-205,-7],[-32,42],[-93,17],[-56,35],[-155,51],[-37,-39],[-129,112],[-11,53],[-36,68],[-131,143],[-78,22],[-55,-5],[-52,-28],[-70,142],[-35,20],[-82,-29],[-80,21],[-36,37],[-95,7],[-79,-30],[-36,-32],[-66,-86],[-78,-72],[-62,-26],[-132,-14],[-43,8],[-138,81],[-44,-17],[-113,36],[-77,9],[-92,-46],[-97,-27],[-76,-5],[-94,15],[-120,-15],[-112,-5],[-82,-29],[-60,-3],[-68,16],[-62,-27],[-160,-4],[-216,-24],[-116,-2],[-215,35],[-106,90],[-36,-20],[-20,-41],[-126,161],[-78,15],[-101,40],[-82,-9],[-53,-36],[-99,-99],[-74,-36],[-48,-47],[3,-68],[72,-17],[149,-14],[106,-26],[66,10],[30,24],[21,-41],[-52,-6],[-124,4],[-117,24],[-117,15],[-97,0],[0,36],[-96,22],[-147,-3],[-1,51],[-36,38],[-52,21],[-92,-10],[-130,-82],[-73,-54],[-146,-130],[-71,-40],[-119,-12],[-75,5],[-139,40],[-46,-1],[-74,36],[-105,-6]],[[6882,14749],[-44,33],[-79,-13]],[[6759,14769],[-11,33],[2,253],[39,157],[1,51],[-44,137]],[[6746,15400],[-26,57],[-55,40]],[[6665,15497],[-119,54],[-107,83],[-36,41],[-76,20],[-57,35],[-21,-29],[-59,-204],[-68,-120],[-26,-94],[-9,-160],[6,-183],[35,-273],[80,-185],[19,-77],[42,-75],[37,-110],[1,-143],[-38,-255],[-50,-113],[-83,-135],[-90,-105],[-55,-89],[-54,-58],[-50,-81],[-104,-127],[-101,-54],[-171,-64],[-304,-38],[-99,-27],[-260,-116],[-76,-51],[-86,-41],[-118,-42],[-59,-12],[-160,-64],[-106,-31],[-77,-39],[-137,-50]],[[4029,13061],[188,18],[164,45],[67,42],[-73,61],[-67,86],[-74,32],[-67,-5],[-71,-52],[-67,-89]],[[4029,13319],[42,37],[115,43],[76,2],[87,-43],[80,-68],[58,-25],[44,5],[23,27],[-15,117],[10,68],[23,57],[78,109],[134,105],[87,49],[81,91],[44,79],[-28,15],[27,50],[-8,249],[30,134],[20,126],[19,65],[59,121],[28,80],[64,226],[31,173],[75,177],[34,50],[90,87],[130,85],[54,46],[95,137],[57,131],[12,50],[154,313],[94,151],[58,114],[42,50],[71,137],[45,62],[128,283],[84,254],[25,93],[45,98],[-32,10],[24,82],[-29,104],[-11,103],[-20,75],[-16,160],[-38,177],[-52,205],[-24,151],[-21,219],[-21,166],[-55,187],[-61,152],[-70,125],[-46,47],[-54,21],[-149,-5],[-132,26],[-68,71],[-43,68],[-101,82],[-45,57],[-35,143],[1,85],[19,118],[12,195],[23,71],[1,145],[-7,85],[-27,114],[-73,250],[-1,43],[-50,134],[-36,67],[-81,216],[-57,200],[-57,126],[-84,209],[-63,133],[-88,210],[-78,175],[-9,48],[-46,125],[-47,64],[-17,61],[-61,128],[-43,120],[-29,114],[-42,110],[-79,254],[-63,180],[-57,97],[-116,140],[-82,76],[-66,19]],[[4029,24265],[58,-24],[22,48],[-57,172]],[[4052,24461],[-23,63]],[[4029,25459],[67,-64],[102,-166],[16,-40],[94,-87],[45,-16],[123,-119],[17,-75],[-31,-109],[23,-82],[44,-86],[59,-23],[157,-2],[71,-60],[29,-66],[58,-75],[43,-38],[76,-39],[70,-53],[61,-66],[39,-72],[50,-121],[46,-88],[47,-142],[56,-242],[30,-168],[6,-129],[-4,-78],[13,-57],[4,-148],[19,-174],[6,-110],[-6,-69],[-45,-141],[7,-149],[11,-64],[49,-137],[82,-174],[137,-218],[134,-237],[59,-193],[89,-199],[60,-169],[71,-226],[34,-90],[20,-123],[40,-86],[31,-37],[98,-197],[23,-75],[55,-110],[24,-91],[76,-104],[23,-157],[-10,-51],[-5,-126],[2,-150],[15,-200],[29,-240],[28,-147],[60,-163],[73,-138],[32,-79],[23,-96],[71,-67],[38,-98],[13,-73],[23,-51],[3,-83],[18,-64],[-4,-61],[-19,-35],[-4,-96],[-36,-72],[-20,-158],[-38,-16],[-53,-87],[-1,-55],[-31,-37],[-35,-2],[-52,-129],[-76,-103],[-120,-238],[-29,-95],[-113,-318],[-20,-69],[0,-212],[19,-71],[106,-158],[95,-99],[34,-48],[103,-67],[94,-72],[72,-86],[-1,-86],[13,-45],[4,-109],[32,-63],[82,-101],[44,-113],[58,-45],[186,-83],[119,-24],[60,-1],[80,35],[55,49],[45,69],[165,93],[42,33],[99,47],[41,-1],[81,-35],[114,-9],[63,-19],[73,2],[76,47],[70,16],[76,79],[78,67],[72,8],[111,60],[81,0],[58,-27],[94,-63],[36,-76],[65,-41],[36,-41],[126,-76],[138,-30],[190,3],[156,28],[128,3],[39,18],[164,-1],[76,64],[62,6],[83,-12],[131,-3],[19,-11],[111,4],[28,10],[81,70],[42,65],[120,38]],[[10662,15044],[84,24],[98,-34],[71,-33],[52,23]],[[8968,15128],[-86,70],[-71,30],[-46,-2],[-45,-25],[39,-46],[140,-46],[44,-66],[41,-40],[53,30],[-69,95]],[[8151,14984],[-77,9],[46,-64],[129,-8],[14,40],[-100,-5],[-12,28]],[[6815,14862],[-43,17],[-9,-62],[155,-25],[43,-18],[46,33],[-98,61],[-94,-6]],[[6854,14885],[68,-10],[-78,158],[-53,60],[-16,-45],[-3,-140],[10,-23],[72,0]],[[6865,15037],[47,-82],[13,55],[-47,52]],[[6878,15062],[-78,103],[2,-59],[63,-69]],[[6323,15760],[-42,113],[-27,41],[-40,-89],[-1,-52],[89,-31],[21,18]],[[6454,19828],[-20,-8],[42,-206],[40,17],[-11,97],[-51,100]],[[5938,19760],[-54,152],[-29,50],[-175,148],[-45,53],[-81,121],[-41,-139],[-4,-108],[23,-119],[37,-80],[66,-91],[72,-65],[68,-26],[134,-1],[65,-11],[10,33],[-46,83]],[[5849,20442],[-38,238],[-72,212],[-55,123],[-94,161],[-43,-13],[32,-197],[15,-57],[25,-166],[49,-175],[37,-74]],[[5705,20494],[-1,-40],[73,-127],[76,-88],[36,7],[1,62],[-41,134]],[[5391,23140],[-20,-2],[3,-110],[16,-65],[1,-148],[14,-113],[33,-85],[15,84],[-20,109],[-42,330]],[[5283,22859],[-20,183],[-72,171],[-30,156],[-7,204],[-22,73],[-53,94],[-56,31],[-85,12],[-108,29],[-51,26],[-26,-77],[-20,-122],[5,-51],[84,-246],[81,-226],[119,-217],[78,-119]],[[5100,22780],[47,-98],[54,-43],[38,1],[30,41],[12,50],[2,128]],[[4610,24068],[-51,120],[-63,116],[-28,-44],[17,-88],[40,-124]],[[4525,24048],[17,-65],[63,-120],[34,-45],[41,-3],[-4,71],[-44,149],[-22,33]],[[4798,24358],[106,4],[-42,44],[-78,130],[-55,40],[-86,-12],[-109,19],[29,-75],[50,-72],[62,-46],[123,-32]],[[4910,23897],[87,-35],[57,-13],[77,-34],[40,-1],[-4,108],[-36,113],[-44,86],[-78,83],[-47,37],[-79,31],[-111,11],[-122,21],[46,-120],[56,-112],[60,-94],[98,-81]],[[5237,23824],[59,-162],[21,38],[-30,103]],[[5287,23803],[-50,21]],[[4319,25060],[18,-162],[54,-90],[50,25],[26,78],[-5,31],[-143,118]],[[5435,15199],[62,62],[33,75],[18,77],[-97,-124],[-16,-90]],[[5635,15353],[15,-6]],[[5650,15347],[43,39],[-18,73],[-30,-26],[-10,-80]],[[5723,14046],[29,40],[34,90],[35,124],[0,69],[-80,118],[-5,-107]],[[5736,14380],[-11,14],[-3,233],[11,144],[-13,161],[5,130],[-1,225],[-39,80],[-110,-156],[-39,-30],[-51,-65],[-71,-134],[-87,-257],[-49,-188],[-14,-154],[5,-154],[25,-89],[50,-97],[97,-100],[74,-63],[30,-4],[103,75],[75,95]],[[5149,13500],[105,79],[108,122],[7,97],[-28,76],[-87,178],[-33,90],[-14,66],[-96,-244],[-59,-189],[-91,-62],[-51,-57],[-36,-74],[-65,-201],[17,-44],[121,57],[28,127],[39,91],[47,23]],[[5842,13479],[-97,-91],[-88,-61],[-74,-86],[-47,-94],[2,-26],[80,-17],[58,29],[56,50],[164,209],[133,214],[91,169],[-13,37],[-265,-333]],[[4825,12989],[-20,20],[-60,-16],[-170,-107],[67,-26],[62,28],[73,50],[48,51]],[[5449,13178],[-21,123],[-37,-21],[-52,-74]],[[5339,13206],[-65,-73],[67,-8],[97,31],[11,22]],[[4821,13468],[79,212],[-62,-38],[-31,-45]],[[4807,13597],[-30,3],[-40,-70],[1,-85],[-21,-74],[13,-69],[74,23],[-7,26],[24,117]],[[5772,14637],[-6,-87],[74,-164],[31,0],[3,52]],[[5874,14438],[15,73],[0,215],[-9,117],[-22,116],[-29,95],[-26,27],[-11,-226],[-20,-218]],[[11942,15238],[-110,-38],[-82,-15],[37,-54],[52,1],[30,30],[60,-7],[52,-103],[33,-30],[91,27],[22,28],[-4,108]],[[12513,14805],[-41,3],[-100,-53],[53,-66],[188,-24],[-100,140]],[[13796,14093],[58,-29],[49,-3],[31,30]],[[14697,14000],[48,-4],[26,20]],[[14835,13948],[125,5]],[[15041,14044],[-45,19]],[[16610,14293],[-106,-27],[4,-37],[104,7],[29,16]],[[16914,14435],[-65,-77],[-184,-140],[-100,-61],[-25,-41],[30,-37],[43,-2],[79,94],[112,52],[198,-4],[35,25],[13,60],[-2,87],[42,73],[101,36],[136,-8],[71,32],[5,44],[-144,87],[-46,16]],[[17391,14685],[113,-79],[67,-19],[140,12],[64,17],[142,73],[45,48],[20,70],[-2,61],[47,128],[86,84],[47,60],[28,4],[42,64],[59,243],[25,122],[-19,80],[-40,-54],[-194,-44],[-89,-43],[-25,-23],[7,-44],[49,-71],[-8,-45],[-39,-30],[-82,-1],[-66,-64],[-111,-8],[-106,16],[-85,-7],[-82,-27],[-65,-74],[-14,-70],[2,-80],[22,-11],[-48,-77],[-72,-76],[-61,-82],[127,-40],[18,-22],[58,9]],[[18365,15677],[-11,-99],[52,-44],[27,1],[56,53],[37,0],[67,62],[14,75],[35,102],[22,104],[59,108],[-6,97],[-19,0],[-114,-65],[-70,-21],[-58,-75],[-13,-138],[-78,-160]],[[18377,15781],[43,15],[-14,106],[-42,-27],[-29,-107],[42,13]],[[18478,15556],[-58,-37]],[[18420,15519],[-69,32],[-14,-11],[-4,-102],[19,-62],[-38,-143]],[[18314,15233],[-11,-45],[83,6],[45,32],[2,30]],[[18433,15256],[31,60],[-11,90]],[[18453,15406],[57,130]],[[18510,15536],[-32,20]],[[18265,15209],[56,132],[-38,3],[-22,-76],[4,-59]],[[18033,14925],[-9,-166],[38,15],[29,38],[31,120],[8,88],[-44,-26],[-53,-69]],[[17773,14596],[26,-35]],[[17799,14561],[72,22],[22,25],[-15,50],[-105,-62]],[[17456,14620],[-56,45],[-2,-51],[58,6]],[[17052,14233],[75,-32],[74,7],[75,83],[46,138],[39,43],[-219,-6],[-67,-61],[-23,-172]],[[19257,16649],[-40,42],[-22,-46],[62,4]],[[19558,16646],[111,-109],[49,-3],[100,53],[17,46],[-93,20]],[[19742,16653],[-104,44],[-41,5],[-39,-56]],[[20451,16786],[123,-43],[-1,49],[-53,42]],[[20520,16834],[-69,51],[-56,57],[-51,5],[-41,-18],[-107,-100],[50,-19],[205,-24]],[[20540,16869],[-25,70],[-83,22],[39,-74],[69,-18]],[[20584,16748],[112,-96],[66,-29],[79,15],[82,3],[97,-11],[-75,63],[-111,20],[-224,82],[-26,-47]],[[20538,16704],[-91,37],[-30,-40],[110,-12],[11,15]],[[20823,16514],[78,-56],[51,-12],[56,100]],[[21008,16546],[-64,30],[-148,5],[27,-67]],[[22086,16334],[58,7],[65,34],[51,52],[21,96],[33,64],[6,63],[-33,0],[-63,-116],[-81,-77],[-168,-77],[22,-27],[89,-19]],[[22330,16658],[28,-46],[115,143],[71,64],[1,77],[-88,5]],[[22457,16901],[-94,-21],[-37,-21],[-19,-67],[-7,-126],[30,-8]],[[9418,10874],[-9,28],[23,90],[-9,103],[34,17],[46,-30],[-29,-41],[-8,-50],[-48,-117]],[[9261,14429],[69,14],[12,-71],[-96,20],[-82,-3],[73,64],[24,-24]],[[5723,14046],[2,183],[15,53],[-4,98]],[[5339,13206],[25,-42],[85,14]],[[6865,15037],[13,25]],[[8891,13993],[-33,-5],[-44,62],[51,2],[26,-59]],[[8707,14949],[-64,-40],[-19,99],[87,-40],[-4,-19]],[[2758,12477],[-36,-34],[-142,-18],[-30,42],[51,89],[67,89],[75,26]],[[6746,15400],[-30,-6],[-65,82],[14,21]],[[6913,15268],[36,7],[28,-45],[-18,-40],[-46,78]],[[8999,14815],[67,-30],[-7,-52],[-60,82]],[[9129,12200],[-24,99],[44,68],[29,-12],[-11,-71],[-38,-84]],[[4807,13597],[-9,-89],[23,-40]],[[5772,14637],[34,-44],[50,-140],[18,-15]],[[7940,14847],[100,-5],[11,-25],[-94,0],[-17,30]],[[6810,15568],[-9,-59],[-40,31],[49,28]],[[8302,14392],[-9,-13],[-103,114],[43,5],[11,-32],[58,-74]],[[8571,14429],[13,19],[78,3],[-8,-44],[10,-150],[-19,-7],[-17,119],[-38,9],[-19,51]],[[7119,15116],[-44,15],[-62,98],[33,10],[40,-84],[33,-39]],[[6882,14749],[-43,-27],[-48,-1],[-32,48]],[[4525,24048],[35,-31],[36,5],[14,46]],[[5705,20494],[41,-66],[57,-46],[38,12],[8,48]],[[3339,25470],[61,-18],[41,-50],[56,-93],[21,-115],[-21,-50],[-27,4],[-102,118],[-16,57]],[[2867,25911],[30,-6],[86,-180],[1,-60]],[[2775,26060],[22,-48]],[[4029,24265],[0,75],[32,55],[-9,66]],[[3942,24313],[-3,-84],[-56,42],[-66,78],[-9,40]],[[3171,25908],[24,0],[89,-48],[98,-75],[86,-103],[125,-135],[37,-64],[-7,-41],[-75,7],[-52,24],[-175,137],[-149,158],[-39,32],[-9,36]],[[4759,25321],[-37,24],[-47,82],[19,25],[48,9],[22,-92],[-5,-48]],[[3789,25084],[39,-20],[77,-114],[40,-102],[-3,-127],[-99,87],[-75,26],[-31,-10],[-28,58],[22,22]],[[5237,23824],[50,-21]],[[5100,22780],[69,-63],[65,3],[49,139]],[[7065,15391],[-57,12],[20,39],[37,-51]],[[8599,14515],[75,9],[4,-33],[-63,-5],[-94,11],[-33,16],[-21,70],[74,-59],[58,-9]],[[8374,14284],[-23,42],[17,59],[36,-32],[-30,-69]],[[8785,15026],[-76,-9],[-68,37],[-30,45],[70,5],[25,-63],[79,-15]],[[5650,15347],[-15,6]],[[8670,13832],[-34,-3],[10,70],[39,-2],[-15,-65]],[[9529,6723],[-32,37],[60,34],[42,-13],[-70,-58]],[[9401,10510],[-11,1]],[[9390,10511],[11,-1]],[[9401,10510],[-11,1]],[[8808,14243],[-31,-66],[-60,-19],[46,79],[45,6]],[[2467,12762],[5,26],[135,29],[234,-12],[64,-25],[-26,-39],[-100,-10],[-126,-32]],[[9333,14814],[109,-77],[50,-13],[65,19],[22,-24],[-26,-56],[-109,-6],[68,44],[-81,25],[-83,51],[-92,-31],[11,48],[66,20]],[[8471,14264],[-41,-9],[-40,-50],[-22,26],[103,33]],[[8312,14664],[19,-36],[-126,-37],[7,39],[51,4],[49,30]],[[34858,46844],[-65,-8],[2,33],[54,33],[9,-58]],[[33277,43941],[-38,23],[8,85],[63,-62],[-33,-46]],[[35676,46326],[-24,-4],[-59,57],[20,38],[93,3],[-30,-94]],[[33358,44384],[-6,-158],[-34,-21],[-62,50],[4,99],[71,60],[27,-30]],[[34146,57383],[-29,-62],[-1,-59],[-32,-127],[-49,-74],[-13,-152],[-42,-141],[12,-106],[-2,-91],[-26,-50],[-65,-64],[-75,-3],[-80,36],[-21,62],[7,188],[-19,79],[7,62],[-6,156],[38,27],[7,47],[-25,88],[32,153],[41,9],[57,-19],[50,18],[33,52],[46,39],[101,-31],[65,1],[-11,-38]],[[31972,48955],[-51,-27],[-54,107],[90,-47],[15,-33]],[[35399,55326],[-33,-54],[-73,-27],[11,-49],[47,-35],[21,-62],[64,-53],[-64,-27],[-18,14],[-42,117],[-73,58],[-45,18],[4,34],[48,36],[60,6],[58,43],[35,-19]],[[33883,50513],[67,-45],[-19,-135],[-41,-36],[-88,-2],[-15,31],[38,148],[2,61],[56,-22]],[[31776,52756],[46,-11],[77,20],[113,84],[39,18],[113,-1],[70,27],[103,-25],[55,16],[29,-10],[91,9],[47,-37],[7,-30],[-37,-35],[-40,-12],[-108,1],[-117,-18],[-83,-56],[-39,-14],[-104,-7],[-134,24],[-35,-18],[-109,6],[-113,62],[-71,29],[-52,84],[21,33],[112,-19],[48,-38],[71,-82]],[[36402,49947],[-33,-13],[-48,-55],[-52,-25],[-28,-35],[-33,71],[22,63],[56,32],[66,55],[32,-17],[31,-56],[-13,-20]],[[31352,52953],[-32,-10],[-146,131],[-67,47],[10,22],[158,-124],[21,-36],[56,-30]],[[33185,49297],[-97,9],[21,88],[38,44],[92,-18],[26,-56],[-31,-42],[-49,-25]],[[36380,49720],[-36,-5],[13,73],[55,45],[28,-26],[-60,-87]],[[36556,51323],[-45,-59],[-93,-10],[-1,41],[139,28]],[[35884,56429],[44,-14],[-6,-58],[-113,-32],[-42,21],[-28,84],[25,22],[73,0],[47,-23]],[[34159,56108],[3,-74],[-38,-30],[-37,-115],[-81,-47],[-107,52],[-25,70],[2,109],[40,7],[24,41],[-8,79],[26,20],[53,85],[63,14],[53,-4],[32,-25],[17,-47],[-17,-135]],[[30737,60559],[10,-41],[-18,-39],[-61,-17],[-46,35],[-34,62]],[[30588,60559],[149,0]],[[31562,57216],[-14,-19],[-119,14],[11,46],[35,45],[47,6],[25,-20],[15,-72]],[[33377,60556],[-31,-25],[-22,-80],[-27,-18],[-21,-58],[-70,-9],[-34,-50],[-29,9],[4,68],[72,137],[55,25]],[[33274,60555],[103,1]],[[33216,59831],[-37,-25],[-52,124],[-62,128],[-3,83],[45,10],[110,-161],[21,-88],[-22,-71]],[[30971,58251],[-19,-5],[-68,86],[62,106],[111,66],[38,49],[32,12],[99,74],[36,10],[34,-41],[-78,-61],[-18,-51],[-119,-112],[-38,-80],[-72,-53]],[[35754,59058],[-39,-84],[-65,-212],[-36,-95],[-54,-55],[-17,-69],[-107,-151],[-34,-17],[-35,60],[53,33],[64,91],[-30,74],[27,176],[-27,30],[8,93],[82,58],[82,20],[128,48]],[[30090,60755],[36,-39],[-114,-64],[-80,21],[16,57],[25,12],[117,13]],[[32395,59130],[44,-19],[10,-49],[46,-59],[-16,-73],[-63,31],[-53,0],[-31,82],[-97,62],[7,139],[20,24],[47,-8],[37,-46],[41,-26],[8,-58]],[[31152,57023],[-66,-93],[-37,-24],[-42,77],[73,17],[139,118],[10,-41],[-77,-54]],[[32555,61298],[43,-12],[-41,-98],[-28,-107],[-29,-73],[-53,-69],[-33,-2],[-107,62],[17,34],[-8,48],[47,52],[16,58],[84,23],[41,55],[51,29]],[[33274,60555],[3,19],[84,34],[16,-52]],[[32243,59789],[52,21],[38,-9],[19,-87],[25,-30],[15,-91],[-50,-31],[-43,41],[-36,-23],[-79,-25],[-42,73],[51,158],[50,3]],[[32188,59396],[-40,-101],[-55,11],[12,65],[83,25]],[[30588,60559],[-53,42],[13,41],[45,16],[100,-51],[44,-48]],[[21535,30625],[-15,-44],[-37,-34],[-9,62],[61,16]],[[17841,41331],[-50,9],[1,70],[115,39],[20,-44],[-29,-37],[-57,-37]],[[16880,41095],[62,-23],[-31,-47],[-72,-44],[-72,7],[-79,-57],[-92,-29],[-56,-36],[-37,2],[-7,38],[45,36],[153,82],[71,48],[73,30],[42,-7]],[[21039,45262],[-2,39],[49,56],[58,28],[-15,-88],[-90,-35]],[[21847,45892],[-24,48],[65,71],[19,-24],[-60,-95]],[[21196,45566],[-20,35],[57,113],[29,-8],[-7,-110],[-59,-30]],[[19583,43768],[-27,-27],[-97,19],[29,47],[48,-5],[47,-34]],[[20963,44791],[-16,-55],[-34,-27],[-37,31],[54,31],[-16,112],[6,132],[34,-14],[15,-44],[-6,-166]],[[18362,42238],[61,-146],[9,-110],[-16,-77],[-31,-39],[-79,5],[39,127],[-5,73],[-34,44],[12,75],[44,48]],[[19101,43114],[-34,-5],[-20,61],[4,90],[43,18],[-3,-70],[10,-94]],[[15689,40588],[-16,-62],[-61,-61],[-45,-6],[-51,29],[57,28],[78,61],[38,11]],[[20540,44454],[89,-18],[22,-55],[-25,-56],[-40,2],[-48,51],[-67,30],[19,46],[50,0]],[[26484,45721],[-22,-48],[-36,12],[42,75],[16,-39]],[[22113,46061],[11,64],[-41,54],[-12,57],[11,37],[43,-24],[26,-79],[2,-58],[-40,-51]],[[22221,46668],[22,89],[62,19],[-84,-108]],[[26394,45321],[-67,-15],[31,69],[36,-54]],[[23469,48187],[31,-61],[17,-96],[-16,-58],[-32,141],[-38,-1],[-25,78],[0,68],[24,42],[64,72],[38,26],[26,102],[-24,51],[28,84],[35,35],[15,-84],[-21,-43],[-20,-144],[-50,-59],[-53,-108],[1,-45]],[[24347,51285],[-39,14],[-1,44],[-65,84],[-3,43],[69,-24],[22,-23],[9,-66],[20,-35],[-12,-37]],[[24877,52874],[-21,-28],[-60,-2],[97,139],[-16,-109]],[[26333,55472],[-46,-5],[13,168],[26,79],[29,159],[11,192],[14,116],[-26,53],[16,48],[49,-81],[5,-158],[16,-39],[-15,-179],[-70,-95],[-29,-103],[-6,-64],[13,-91]],[[26386,55557],[-38,1],[-2,45],[36,97],[37,54],[40,121],[20,-24],[-42,-145],[-47,-68],[-4,-81]],[[24402,50769],[-71,-78],[-8,64],[30,89],[-16,78],[-64,42],[-12,83],[55,104],[12,-169],[49,-88],[25,-125]],[[23273,47599],[-52,-88],[-90,-64],[-76,21],[-34,-19],[-52,-73],[-99,-18],[-29,36],[-62,-85],[1,-35],[50,-57],[39,-102],[-64,51],[-72,41],[-23,47],[5,51],[24,42],[102,72],[59,-6],[71,32],[87,101],[134,40],[81,13]],[[24320,50137],[-60,-65],[-68,-58],[-19,-78],[-35,-5],[-38,73],[46,34],[35,76],[41,11],[31,43],[22,92],[8,135],[-17,48],[37,41],[6,-121],[38,-70],[-42,-63],[15,-93]],[[24699,52657],[-41,1],[13,102],[52,57],[-24,-160]],[[24149,49750],[-64,23],[-25,46],[2,39],[46,30],[17,-22],[24,-116]],[[23762,48913],[34,-51],[-9,-84],[-59,-33],[-68,-11],[-4,45],[69,-19],[17,44],[-18,72],[38,37]],[[21352,58864],[-41,-9],[-32,83],[36,-3],[37,-71]],[[25927,57794],[-12,49],[31,28],[-10,63],[-59,29],[-11,43],[14,49],[16,153],[52,-106],[-23,-59],[-3,-55],[50,-73],[-3,-57],[-42,-64]],[[25735,58593],[-35,-77],[-25,48],[9,125],[22,-13],[29,-83]],[[21448,56492],[-48,1],[-30,48],[-8,70],[-29,25],[16,63],[25,28],[35,-61],[-1,-66],[40,-108]],[[19558,16646],[131,-35],[44,5],[9,37]],[[24272,16793],[-207,-27],[-41,41],[118,8],[-6,62]],[[24136,16877],[109,-45],[27,-39]],[[19184,16715],[148,10],[163,-21]],[[19473,12123],[-24,-98],[5,-44],[-40,-43],[-45,-21],[-131,92],[-34,36],[43,36],[25,-8],[35,37],[70,128],[79,-63],[17,-52]],[[17858,15127],[-125,-20],[40,-47],[-71,-12],[-37,64],[85,21],[108,-6]],[[19167,16578],[-35,-59],[-40,-14]],[[19045,16497],[35,59],[-27,33],[-44,-9],[-114,-46],[-35,-28]],[[18314,15233],[89,4],[30,19]],[[17799,14561],[-26,35]],[[23812,17116],[-56,58],[-81,19],[-99,43],[-83,-31],[-32,3],[-20,-44],[-35,-14]],[[23406,17150],[0,78]],[[23406,17228],[120,55],[101,9],[17,27],[57,2],[68,-36],[92,-122],[16,-48],[-65,1]],[[17761,12273],[-50,-11],[-61,20],[8,38],[97,-25],[6,-22]],[[22400,16753],[-32,-94]],[[22368,16659],[11,80],[21,14]],[[19279,10374],[-44,-4],[-2,59],[47,15],[-1,-70]],[[24136,16877],[-23,3],[-126,67],[-57,93],[-43,-11],[14,-76],[60,-154],[-39,27],[-44,106],[-21,92],[-77,31],[-129,35],[-82,-6],[-111,-45],[-52,-44]],[[23406,17051],[70,73],[60,23],[68,0],[95,-24],[45,-25],[68,18]],[[23406,17290],[81,42],[96,1],[125,16],[62,-18],[58,-47],[43,-82],[51,-56],[17,-46],[45,-61],[68,-66],[54,-28],[112,-33],[97,-36],[150,7],[0,-25],[78,-6],[95,37],[116,61],[31,30],[72,31],[218,-40],[93,-33],[60,-38],[109,-23],[106,7],[-10,-121],[-94,8],[-194,-3],[-35,9],[-139,-5],[-138,36],[-229,-9],[-126,-29],[-49,-19],[-157,42]],[[25055,16819],[112,-26],[97,-1],[58,10],[7,24],[-95,21],[-117,38]],[[25117,16885],[-134,39],[-54,-13],[-106,5],[-57,-35],[94,-20],[76,-37],[119,-5]],[[20937,10441],[-35,-67],[-83,30],[38,34],[40,-31],[40,34]],[[25055,16819],[73,12],[-11,54]],[[21993,16235],[-75,-27],[-17,48],[49,25],[50,-8],[-7,-38]],[[18453,15406],[-21,28],[-12,85]],[[18478,15556],[32,-20]],[[23406,17150],[-49,-46]],[[18750,16338],[-10,54],[-151,-79],[-47,-10]],[[18514,16296],[20,30],[132,65],[129,114]],[[22368,16659],[-38,-1]],[[22457,16901],[15,-40],[-48,-92],[-24,-16]],[[20451,16786],[69,48]],[[21008,16546],[-75,-18],[-49,35],[-61,-49]],[[17746,22573],[35,-4],[-24,-71],[-38,52],[27,23]],[[18465,22206],[-12,-31],[-52,12],[-53,50],[21,42],[31,8],[47,-41],[18,-40]],[[24927,16962],[-140,-4],[40,32],[65,15],[35,-43]],[[38671,49632],[-28,6],[-26,48],[3,105],[50,-46],[23,-54],[-22,-59]],[[37412,57568],[-38,33],[-21,101],[-7,114],[2,145],[15,129],[24,49],[37,0],[19,-43],[28,-114],[0,-84],[-29,-144],[-6,-81],[-24,-35],[0,-70]],[[37801,48333],[-40,3],[-14,72],[63,-30],[-9,-45]],[[37475,48357],[22,109],[40,42],[33,6],[35,-26],[-21,-43],[-109,-88]],[[38388,50006],[-83,49],[50,18],[35,-19],[-2,-48]],[[38510,51896],[44,-108],[43,-60],[13,-60],[-17,-57],[-48,13],[-44,76],[-26,18],[-106,20],[-67,47],[3,46],[40,41],[98,0],[67,24]],[[38854,51230],[-38,2],[-33,73],[58,-26],[13,-49]]],"objects":{"water":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3],[4,5,6,7],[8,9],[10]],"type":"Polygon"},{"arcs":[[11,4]],"type":"Polygon"},{"arcs":[[12,13,14,15,16,17],[18,19],[20,21],[22,23],[24,25],[26,27]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"arcs":[[28]],"type":"Polygon"},{"arcs":[[29]],"type":"Polygon"},{"arcs":[[30]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[31]],"type":"Polygon"},{"type":null},{"arcs":[[32]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[33]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[34]],"type":"Polygon"},{"type":null},{"arcs":[[35]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[36,37]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"arcs":[[38]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[39,40]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[41]],"type":"Polygon"},{"arcs":[[42]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[43,44]],"type":"Polygon"},{"type":null},{"arcs":[[45,46,47,48]],"type":"Polygon"},{"type":null},{"arcs":[[49]],"type":"Polygon"},{"type":null},{"arcs":[[50]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[51]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[52]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[53]],"type":"Polygon"},{"arcs":[[54]],"type":"Polygon"},{"type":null},{"arcs":[[55]],"type":"Polygon"},{"type":null},{"arcs":[[56,57]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[58]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[59,60]],"type":"Polygon"},{"arcs":[[61,62]],"type":"Polygon"},{"type":null},{"arcs":[[63]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[64]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[65,66,67,68]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"arcs":[[69,70]],"type":"Polygon"},{"arcs":[[71]],"type":"Polygon"},{"arcs":[[72]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[73]],"type":"Polygon"},{"type":null},{"arcs":[[74]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[75]],"type":"Polygon"},{"type":null},{"arcs":[[76]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[77]],"type":"Polygon"},{"arcs":[[78]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[79]],"type":"Polygon"},{"arcs":[[80,81]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"arcs":[[82]],"type":"Polygon"},{"type":null},{"arcs":[[83]],"type":"Polygon"},{"type":null},{"arcs":[[84]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[85]],"type":"Polygon"},{"type":null},{"arcs":[[86]],"type":"Polygon"},{"type":null},{"arcs":[[87]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[88]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[89]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[90,91]],"type":"Polygon"},{"arcs":[[92]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"arcs":[[93,94]],"type":"Polygon"},{"type":null},{"arcs":[[95]],"type":"Polygon"},{"arcs":[[96]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[97]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[98,99]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[100]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[101]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[102]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[103]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"arcs":[[104,105]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[106]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[107]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[108]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[109]],"type":"Polygon"},{"arcs":[[110]],"type":"Polygon"},{"arcs":[[111]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[112]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"arcs":[[113]],"type":"Polygon"},{"arcs":[[114]],"type":"Polygon"},{"type":null},{"arcs":[[115]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[116]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[117]],"type":"Polygon"},{"arcs":[[118]],"type":"Polygon"},{"type":null},{"arcs":[[119]],"type":"Polygon"},{"arcs":[[120]],"type":"Polygon"},{"type":null},{"arcs":[[121]],"type":"Polygon"},{"arcs":[[122]],"type":"Polygon"},{"type":null},{"arcs":[[123]],"type":"Polygon"},{"arcs":[[124]],"type":"Polygon"},{"arcs":[[125]],"type":"Polygon"},{"arcs":[[126]],"type":"Polygon"},{"arcs":[[127]],"type":"Polygon"},{"arcs":[[128]],"type":"Polygon"},{"arcs":[[129]],"type":"Polygon"},{"arcs":[[130,131]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[132]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[133]],"type":"Polygon"},{"arcs":[[134]],"type":"Polygon"},{"arcs":[[-37,135,-70,136,-94,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,-69,153,-67,154,-58,155,-45,156,-61,157,158,159,160,161,-3,162,-1,163,-15,164,165,-13,166],[167,-106],[168],[169],[170],[171],[172,173],[174],[175],[176],[177,178],[179],[180,181],[182,183],[184],[185],[186,187],[188],[189],[190,191],[192,193],[-132,194],[195],[196],[197,198],[199,200],[201,202],[-92,203],[-65],[-101],[204],[-83],[205,-100],[-51],[206,-47,207,-63,208,-49],[-82,209],[-41,210],[211],[212],[213],[214,215,216,217,218,219],[220],[221],[222,223],[224],[225],[226],[227,228],[229,230],[231],[232],[233],[234,235],[236],[237,238]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[239]],"type":"Polygon"},{"type":null},{"arcs":[[240]],"type":"Polygon"},{"arcs":[[241,-193]],"type":"Polygon"},{"arcs":[[-199,242]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[-197]],"type":"Polygon"},{"type":null},{"arcs":[[243,-173]],"type":"Polygon"},{"type":null},{"arcs":[[244]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[-171]],"type":"Polygon"},{"type":null},{"arcs":[[245]],"type":"Polygon"},{"arcs":[[246,9]],"type":"Polygon"},{"arcs":[[247,-161]],"type":"Polygon"},{"type":null},{"arcs":[[248]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[249]],"type":"Polygon"},{"arcs":[[250]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[251,-201]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[-202,252]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[253]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[254]],"type":"Polygon"},{"type":null},{"arcs":[[255]],"type":"Polygon"},{"type":null},{"arcs":[[-175]],"type":"Polygon"},{"arcs":[[256]],"type":"Polygon"},{"type":null},{"arcs":[[257]],"type":"Polygon"},{"arcs":[[258,-159]],"type":"Polygon"},{"type":null},{"arcs":[[259,-184]],"type":"Polygon"},{"arcs":[[-179,260]],"type":"Polygon"},{"arcs":[[23,261]],"type":"Polygon"},{"arcs":[[19,262,16,263]],"type":"Polygon"},{"arcs":[[264,-165]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[265,27]],"type":"Polygon"},{"type":null},{"arcs":[[20,266]],"type":"Polygon"},{"arcs":[[267]],"type":"Polygon"},{"arcs":[[25,268]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[-187,269]],"type":"Polygon"},{"arcs":[[270,-182]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[271]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[272]],"type":"Polygon"},{"type":null},{"arcs":[[273]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[274]],"type":"Polygon"},{"arcs":[[275,-192]],"type":"Polygon"},{"type":null},{"arcs":[[276]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[277]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[278,279]],"type":"Polygon"},{"type":null},{"arcs":[[280,-279]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[281]],"type":"Polygon"},{"type":null},{"arcs":[[6,282]],"type":"Polygon"},{"type":null},{"arcs":[[283]],"type":"Polygon"},{"arcs":[[284]],"type":"Polygon"},{"arcs":[[285]],"type":"Polygon"},{"type":null},{"arcs":[[286]],"type":"Polygon"},{"arcs":[[287]],"type":"Polygon"},{"type":null},{"arcs":[[288]],"type":"Polygon"},{"type":null},{"arcs":[[289]],"type":"Polygon"},{"arcs":[[290]],"type":"Polygon"},{"type":null},{"arcs":[[291]],"type":"Polygon"},{"arcs":[[292]],"type":"Polygon"},{"arcs":[[293]],"type":"Polygon"},{"type":null},{"arcs":[[294]],"type":"Polygon"},{"arcs":[[295]],"type":"Polygon"},{"arcs":[[296]],"type":"Polygon"},{"arcs":[[297]],"type":"Polygon"},{"arcs":[[298]],"type":"Polygon"},{"arcs":[[299]],"type":"Polygon"},{"arcs":[[300]],"type":"Polygon"},{"arcs":[[301]],"type":"Polygon"},{"arcs":[[302,303]],"type":"Polygon"},{"arcs":[[304]],"type":"Polygon"},{"arcs":[[305,306]],"type":"Polygon"},{"arcs":[[307]],"type":"Polygon"},{"arcs":[[308]],"type":"Polygon"},{"arcs":[[309]],"type":"Polygon"},{"arcs":[[310]],"type":"Polygon"},{"arcs":[[311]],"type":"Polygon"},{"arcs":[[312]],"type":"Polygon"},{"arcs":[[313]],"type":"Polygon"},{"arcs":[[-307,314]],"type":"Polygon"},{"type":null},{"arcs":[[315]],"type":"Polygon"},{"arcs":[[316]],"type":"Polygon"},{"arcs":[[-304,317]],"type":"Polygon"},{"type":null},{"arcs":[[318]],"type":"Polygon"},{"type":null},{"arcs":[[319]],"type":"Polygon"},{"arcs":[[320]],"type":"Polygon"},{"arcs":[[321]],"type":"Polygon"},{"arcs":[[322]],"type":"Polygon"},{"arcs":[[323]],"type":"Polygon"},{"arcs":[[324]],"type":"Polygon"},{"arcs":[[325]],"type":"Polygon"},{"arcs":[[326]],"type":"Polygon"},{"arcs":[[327]],"type":"Polygon"},{"arcs":[[328]],"type":"Polygon"},{"arcs":[[329]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[330]],"type":"Polygon"},{"arcs":[[331]],"type":"Polygon"},{"arcs":[[332]],"type":"Polygon"},{"type":null},{"arcs":[[333]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[334]],"type":"Polygon"},{"arcs":[[335]],"type":"Polygon"},{"arcs":[[336]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[337]],"type":"Polygon"},{"type":null},{"arcs":[[338]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[339]],"type":"Polygon"},{"arcs":[[340]],"type":"Polygon"},{"arcs":[[341]],"type":"Polygon"},{"arcs":[[342]],"type":"Polygon"},{"type":null},{"arcs":[[343]],"type":"Polygon"},{"arcs":[[344]],"type":"Polygon"},{"arcs":[[345]],"type":"Polygon"},{"type":null},{"arcs":[[346]],"type":"Polygon"},{"arcs":[[347]],"type":"Polygon"},{"type":null},{"arcs":[[348]],"type":"Polygon"},{"type":null},{"arcs":[[-228,349]],"type":"Polygon"},{"type":null},{"arcs":[[350,351]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[-143,352]],"type":"Polygon"},{"arcs":[[353]],"type":"Polygon"},{"type":null},{"arcs":[[354]],"type":"Polygon"},{"type":null},{"arcs":[[-232]],"type":"Polygon"},{"arcs":[[355,-152,356,-150]],"type":"Polygon"},{"arcs":[[-227]],"type":"Polygon"},{"arcs":[[357,-217]],"type":"Polygon"},{"type":null},{"arcs":[[358,-224]],"type":"Polygon"},{"type":null},{"arcs":[[359,360,361]],"type":"Polygon"},{"type":null},{"arcs":[[362]],"type":"Polygon"},{"arcs":[[363,364]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[365]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"arcs":[[-352,366,-148,367,-362,-145,368],[369,370]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"arcs":[[371]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[372,-370]],"type":"Polygon"},{"type":null},{"type":null},{"arcs":[[373]],"type":"Polygon"},{"type":null},{"arcs":[[-219,374,-215,375]],"type":"Polygon"},{"arcs":[[376,-146,-361]],"type":"Polygon"},{"type":null},{"arcs":[[377,-139,378,-141]],"type":"Polygon"},{"arcs":[[-225]],"type":"Polygon"},{"arcs":[[-365,379,-239,380]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"arcs":[[-221]],"type":"Polygon"},{"arcs":[[381,-230]],"type":"Polygon"},{"type":null},{"arcs":[[382,-236]],"type":"Polygon"},{"arcs":[[-214]],"type":"Polygon"},{"type":null},{"arcs":[[383]],"type":"Polygon"},{"type":null},{"arcs":[[384]],"type":"Polygon"},{"type":null},{"type":null},{"type":null},{"type":null},{"arcs":[[385]],"type":"Polygon"},{"type":null},{"arcs":[[386]],"type":"Polygon"},{"arcs":[[387]],"type":"Polygon"},{"arcs":[[388]],"type":"Polygon"},{"arcs":[[389]],"type":"Polygon"},{"arcs":[[390]],"type":"Polygon"},{"arcs":[[391]],"type":"Polygon"},{"arcs":[[392]],"type":"Polygon"},{"type":null}]}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment